Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions config/imx8/10-platform.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version = [1, 0] # use simple file write

[adsp]
name = "imx8"

[[adsp.mem_zone]]
type = "IRAM"
base = "0x596F8000"
size = "0x800"
host_offset = "0x10000"
[[adsp.mem_zone]]
type = "DRAM"
base = "0x596E8000"
size = "0x8000"
host_offset = "0x0"
[[adsp.mem_zone]]
type = "SRAM"
base = "0x92400000"
size = "0x800000"
host_offset = "0x0"
20 changes: 20 additions & 0 deletions config/imx8m/10-platform.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version = [1, 0] # use simple file write

[adsp]
name = "imx8m"

[[adsp.mem_zone]]
type = "IRAM"
base = "0x3b6F8000"
size = "0x800"
host_offset = "0x10000"
[[adsp.mem_zone]]
type = "DRAM"
base = "0x3B6E8000"
size = "0x8000"
host_offset = "0x0"
[[adsp.mem_zone]]
type = "SRAM"
base = "0x92400000"
size = "0x800000"
host_offset = "0x0"
20 changes: 20 additions & 0 deletions config/imx8x/10-platform.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version = [1, 0] # use simple file write

[adsp]
name = "imx8x"

[[adsp.mem_zone]]
type = "IRAM"
base = "0x596F8000"
size = "0x800"
host_offset = "0x10000"
[[adsp.mem_zone]]
type = "DRAM"
base = "0x596e8000"
size = "0x8000"
host_offset = "0x0"
[[adsp.mem_zone]]
type = "SRAM"
base = "0x92400000"
size = "0x800000"
host_offset = "0x0"
57 changes: 57 additions & 0 deletions config/lnl/10-platform.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
version = [3, 0]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ehm, not following why we have a 10 prefix in our filenames. I want to #include these via the pre-processor.


[adsp]
name = "lnl"
image_size = "0x2C0000" # (22) bank * 128KB
alias_mask = "0xE0000000"

[[adsp.mem_zone]]
type = "ROM"
base = "0x1FF80000"
size = "0x400"
[[adsp.mem_zone]]
type = "IMR"
base = "0xA104A000"
size = "0x2000"
[[adsp.mem_zone]]
type = "SRAM"
base = "0xa00f0000"
size = "0x100000"

[[adsp.mem_alias]]
type = "uncached"
base = "0x40000000"
[[adsp.mem_alias]]
type = "cached"
base = "0xA0000000"

[cse]
partition_name = "ADSP"
[[cse.entry]]
name = "ADSP.man"
offset = "0x5c"
length = "0x4b8"
[[cse.entry]]
name = "ADSP.met"
offset = "0x4c0"
length = "0x70"
[[cse.entry]]
name = "ADSP"
offset = "0x540"
length = "0x0" # calculated by rimage

[css]

[signed_pkg]
name = "ADSP"
partition_usage = "0x23"
[[signed_pkg.module]]
name = "ADSP.met"

[adsp_file]
[[adsp_file.comp]]
base_offset = "0x2000"

[fw_desc.header]
name = "ADSPFW"
load_offset = "0x40000"
Loading