From a94d51d21560de68e250603a39d05babf653884a Mon Sep 17 00:00:00 2001 From: Laurentiu Mihalcea Date: Mon, 9 Dec 2024 17:09:03 +0200 Subject: [PATCH 1/2] .github/zephyr: switch to HWMv2 naming of imx93_evk As of Zephyr commit 93d60ecdb01("boards: Remove all deprecated HWMv1 board aliases") HWMv1 naming is no longer allowed. As such, change to HWMv2 naming for the imx93_evk board. Fixes #9716. Signed-off-by: Laurentiu Mihalcea --- .github/workflows/zephyr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/zephyr.yml b/.github/workflows/zephyr.yml index c98d0bcda859..e522df6a84f4 100644 --- a/.github/workflows/zephyr.yml +++ b/.github/workflows/zephyr.yml @@ -88,7 +88,7 @@ jobs: run: | cd workspace && ./sof/zephyr/docker-run.sh /bin/sh -c \ 'ln -s /opt/toolchains/zephyr-sdk-* ~/; - west build --board mimx93_evk_a55 sof/app \ + west build --board imx93_evk/mimx9352/a55 sof/app \ -- -DEXTRA_CFLAGS=-Werror -DEXTRA_CXXFLAGS=-Werror \ -DEXTRA_AFLAGS=-Werror' From b2c3a0054489cb58e6d1ec8233908da5f458f9a7 Mon Sep 17 00:00:00 2001 From: Laurentiu Mihalcea Date: Mon, 9 Dec 2024 17:21:09 +0200 Subject: [PATCH 2/2] app: boards: imx93_evk: change sram0 node name to dram Zephyr commit 06227ba8792 ("boards: nxp: imx8m/n/p, imx93/5, fix ram dts node name") changed the node name from `sram0` to `dram`. As such, make this change on SOF side as well. Signed-off-by: Laurentiu Mihalcea --- app/boards/imx93_evk_mimx9352_a55.overlay | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/boards/imx93_evk_mimx9352_a55.overlay b/app/boards/imx93_evk_mimx9352_a55.overlay index 64cdfc32ec8e..6db63b22bd69 100644 --- a/app/boards/imx93_evk_mimx9352_a55.overlay +++ b/app/boards/imx93_evk_mimx9352_a55.overlay @@ -9,7 +9,7 @@ /* Inmate memory, reserved through "mem=1248MB" boot argument, * starts at 0xce000000. */ - sram0: memory@ce000000 { + dram: memory@ce000000 { reg = <0xce000000 DT_SIZE_M(1)>; };