From 440a0fc0cacd679d087c5c81dac6a123aecfdbb5 Mon Sep 17 00:00:00 2001 From: Daniel Leung Date: Wed, 4 Feb 2026 10:31:43 -0800 Subject: [PATCH 1/2] west.yml: update zephyr to 05a3f62f445 Total of 1145 commits. Changes include: a5a9ff4c28c xtensa: handle instruction TLB multi-hit exception 9b9e9ebde77 xtensa: mmu: data TLB multi-hit only handle exception address 599df95875c xtensa: return back to interrupted thread for certain exceptions 27e48026215 xtensa: remove unnecessary setting of is_fatal_error during exc 8d072e85b1e ipc: intel_adsp: fix inverted sync wait condition ed4cec2d220 xtensa: ptables: doxygen doc 744a7f4daf1 xtensa: mmu: do doxygen for functions 50e980d9a83 xtensa: mmu: halt system if not enough L2 tables during boot 82b7d94d452 xtensa: mmu: add debug logs on page table allocations 0777dbea028 xtensa: mmu: assert when L2 table allocation fails during dup 71262d0e075 arch: xtensa: avoid the use of "sanity check" term Signed-off-by: Daniel Leung --- west.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/west.yml b/west.yml index eed08c27d52f..ea8048a027f9 100644 --- a/west.yml +++ b/west.yml @@ -43,7 +43,7 @@ manifest: - name: zephyr repo-path: zephyr - revision: c1a2b3be459d4f34d31ae54774fd57e96438d237 + revision: 05a3f62f4456b25f1830eeb1a09c39e4a2a8bc39 remote: zephyrproject # Import some projects listed in zephyr/west.yml@revision From 94bd48b38b1fcae602aeda21fc7720309ead3e00 Mon Sep 17 00:00:00 2001 From: Daniel Leung Date: Fri, 30 Jan 2026 10:08:02 -0800 Subject: [PATCH 2/2] app: kconfig: allow FLIX generation This sets the toolchain kconfig to allow generating FLIX instructions as it is disabled by default on Zephyr upstream. Signed-off-by: Daniel Leung --- app/Kconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/Kconfig b/app/Kconfig index e1f5bd67295d..49bde9cfc39e 100644 --- a/app/Kconfig +++ b/app/Kconfig @@ -4,6 +4,11 @@ config SCHED_CPU_MASK_PIN_ONLY config SMP_BOOT_DELAY default y if SMP +# Allow compiler to determine whether to generate FLIX instructions. +choice COMPILER_CODEGEN_VLIW + default COMPILER_CODEGEN_VLIW_AUTO if "$(ZEPHYR_TOOLCHAIN_VARIANT)" = "xt-clang" +endchoice + source "Kconfig.zephyr" if SOC_FAMILY_INTEL_ADSP