Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion drivers/mspi/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ zephyr_library_sources_ifdef(CONFIG_MSPI_HPF mspi_hpf.c)
if(CONFIG_MSPI_NRF_SQSPI)
set(SP_DIR ${ZEPHYR_NRFXLIB_MODULE_DIR}/softperipheral)
set(SQSPI_DIR ${SP_DIR}/sQSPI)
if(CONFIG_SOC_SERIES_NRF54HX)
set(SQSPI_SOC_SERIES nrf54h)
endif()

if(CONFIG_SOC_SERIES_NRF54LX)
set(SQSPI_SOC_SERIES nrf54l)
endif()

dt_comp_path(sqspi_path COMPATIBLE "nordic,nrf-sqspi" IDX 0)
dt_reg_addr(sqspi_addr PATH ${sqspi_path})
Expand All @@ -23,7 +30,7 @@ if(CONFIG_MSPI_NRF_SQSPI)
zephyr_library_include_directories(
${SP_DIR}/include
${SQSPI_DIR}/include
${SQSPI_DIR}/include/${CONFIG_SOC}
${SQSPI_DIR}/include/${SQSPI_SOC_SERIES}
)
zephyr_library_sources(
${SQSPI_DIR}/src/nrf_sqspi.c
Expand Down
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ manifest:
- name: nrfxlib
repo-path: sdk-nrfxlib
path: nrfxlib
revision: 9c54be503b35c63dff28248421ce2ffb5fcc7571
revision: pull/1924/head
- name: trusted-firmware-m
repo-path: sdk-trusted-firmware-m
path: modules/tee/tf-m/trusted-firmware-m
Expand Down
Loading