build: add support for building SOF on imx95

This means modifying 'xtensa-build-zephyr.py' to allow
building the new platform and adding a new toml file for
the platform.

Signed-off-by: Laurentiu Mihalcea <laurentiu.mihalcea@nxp.com>
This commit is contained in:
Laurentiu Mihalcea 2024-09-25 14:15:48 +03:00 committed by Daniel Baluta
parent beb1e68e79
commit b107e40976
2 changed files with 14 additions and 1 deletions

View File

@ -164,6 +164,10 @@ platform_configs_all = {
"hifi4_nxp2_s7_v2_1a_prod",
RIMAGE_KEY = "key param ignored by imx8ulp"
),
"imx95" : PlatformConfig(
"imx", "imx95_evk/mimx9596/m7/ddr",
"", "", "", ""
),
}
platform_configs = platform_configs_all.copy()
@ -1160,7 +1164,7 @@ def gzip_compress(fname, gzdst=None):
# Don't run sof_ri_info and ignore silently .ri files that don't have one.
RI_INFO_UNSUPPORTED = []
RI_INFO_UNSUPPORTED += ['imx8', 'imx8x', 'imx8m', 'imx8ulp']
RI_INFO_UNSUPPORTED += ['imx8', 'imx8x', 'imx8m', 'imx8ulp', 'imx95']
RI_INFO_UNSUPPORTED += ['rn']
RI_INFO_UNSUPPORTED += ['mt8186', 'mt8195']

View File

@ -0,0 +1,9 @@
version = [1, 0]
[adsp]
name = "imx95"
[[adsp.mem_zone]]
type = "DRAM"
base = "0x80000000"
size = "0x100000"