From ded019bd46b5884e26daf6802b1276f9bed9a697 Mon Sep 17 00:00:00 2001 From: Marc Herbert Date: Mon, 11 Dec 2023 02:34:00 +0000 Subject: [PATCH] xtensa-build-zephyr.py: remove IPC3/IPC4 "cavs" switch Rename: - tgl-cavs.toml to tgl.toml - tgl-h-cavs.toml to tgl-h.toml Remove the IPC3/IPC4 switch added by commit 6f71808e3ee7 ("xtensa-build-zephyr.py: add ipc4 build support for tgl") This brings back consistency which is required for the .toml split (#8490) Signed-off-by: Marc Herbert --- scripts/xtensa-build-zephyr.py | 8 +------- tools/rimage/config/{tgl-h-cavs.toml => tgl-h.toml} | 0 tools/rimage/config/{tgl-cavs.toml => tgl.toml} | 0 3 files changed, 1 insertion(+), 7 deletions(-) rename tools/rimage/config/{tgl-h-cavs.toml => tgl-h.toml} (100%) rename tools/rimage/config/{tgl-cavs.toml => tgl.toml} (100%) diff --git a/scripts/xtensa-build-zephyr.py b/scripts/xtensa-build-zephyr.py index 7215c51da7e5..eb64f1c44054 100755 --- a/scripts/xtensa-build-zephyr.py +++ b/scripts/xtensa-build-zephyr.py @@ -82,7 +82,6 @@ class PlatformConfig: XTENSA_CORE: str DEFAULT_TOOLCHAIN_VARIANT: str = "xt-clang" RIMAGE_KEY: pathlib.Path = pathlib.Path(SOF_TOP, "keys", "otc_private_key_3k.pem") - IPC4_RIMAGE_DESC: str = None IPC4_CONFIG_OVERLAY: str = "ipc4_overlay.conf" aliases: list = dataclasses.field(default_factory=list) @@ -95,7 +94,6 @@ class PlatformConfig: f"RG-2017.8{xtensa_tools_version_postfix}", "cavs2x_LX6HiFi3_2017_8", "xcc", - IPC4_RIMAGE_DESC = "tgl-cavs.toml", aliases = ['adl', 'ehl'] ), "tgl-h" : PlatformConfig( @@ -103,7 +101,6 @@ class PlatformConfig: f"RG-2017.8{xtensa_tools_version_postfix}", "cavs2x_LX6HiFi3_2017_8", "xcc", - IPC4_RIMAGE_DESC = "tgl-h-cavs.toml", aliases = ['adl-s'] ), "mtl" : PlatformConfig( @@ -629,10 +626,7 @@ def rimage_options(platform_dict): # test_00_01_load_fw_and_check_version opts.append(("-b", "1")) - if platform_dict.get("IPC4_RIMAGE_DESC", None) is not None: - rimage_desc = platform_dict["IPC4_RIMAGE_DESC"] - else: - rimage_desc = platform_dict["name"] + ".toml" + rimage_desc = platform_dict["name"] + ".toml" opts.append(("-c", str(RIMAGE_SOURCE_DIR / "config" / rimage_desc))) diff --git a/tools/rimage/config/tgl-h-cavs.toml b/tools/rimage/config/tgl-h.toml similarity index 100% rename from tools/rimage/config/tgl-h-cavs.toml rename to tools/rimage/config/tgl-h.toml diff --git a/tools/rimage/config/tgl-cavs.toml b/tools/rimage/config/tgl.toml similarity index 100% rename from tools/rimage/config/tgl-cavs.toml rename to tools/rimage/config/tgl.toml