From f3c80b7a6fbcf1b6548b8d2d0f564e310516eece Mon Sep 17 00:00:00 2001 From: TOKITA Hiroshi Date: Sat, 25 Jan 2025 12:30:42 +0900 Subject: [PATCH 1/2] manifest: update hal_rpi_pico Update hal_rpi_pico to fix CI failure Signed-off-by: TOKITA Hiroshi --- west.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/west.yml b/west.yml index ac5f33c5a20f..852df30d9675 100644 --- a/west.yml +++ b/west.yml @@ -224,7 +224,7 @@ manifest: - hal - name: hal_rpi_pico path: modules/hal/rpi_pico - revision: 7b57b24588797e6e7bf18b6bda168e6b96374264 + revision: pull/9/head groups: - hal - name: hal_silabs From 7710cb087aeb1ef3b090c8676c6e9e19be8322b5 Mon Sep 17 00:00:00 2001 From: TOKITA Hiroshi Date: Sat, 25 Jan 2025 11:33:56 +0900 Subject: [PATCH 2/2] modules: hal_rpi_pico: Add XIP-cache codes Add XIP-cache codes that are referenced from the flash driver. Signed-off-by: TOKITA Hiroshi --- modules/hal_rpi_pico/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/hal_rpi_pico/CMakeLists.txt b/modules/hal_rpi_pico/CMakeLists.txt index 0244a324f5e9..9d2afc01c9f0 100644 --- a/modules/hal_rpi_pico/CMakeLists.txt +++ b/modules/hal_rpi_pico/CMakeLists.txt @@ -63,6 +63,7 @@ if(CONFIG_HAS_RPI_PICO) ${rp2_common_dir}/hardware_watchdog/watchdog.c ${rp2_common_dir}/hardware_sync_spin_lock/sync_spin_lock.c ${rp2_common_dir}/hardware_ticks/ticks.c + ${rp2_common_dir}/hardware_xip_cache/xip_cache.c ${rp2_common_dir}/pico_bootrom/bootrom.c ${rp2xxx_dir}/pico_platform/platform.c ) @@ -82,6 +83,7 @@ if(CONFIG_HAS_RPI_PICO) ${rp2_common_dir}/hardware_boot_lock/include ${rp2_common_dir}/hardware_ticks/include ${rp2_common_dir}/hardware_sync_spin_lock/include + ${rp2_common_dir}/hardware_xip_cache/include ${rp2_common_dir}/pico_bootrom/include ${rp2_common_dir}/pico_flash/include ${rp2_common_dir}/pico_platform_compiler/include