From 4e5d1b02edefbe7a92de6cc3404e70545d63f21b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Ku=C5=BAnia?= Date: Thu, 9 May 2024 08:37:29 +0200 Subject: [PATCH] [nrf fromlist] soc: nrf54h: use word accesses to SPI_DW peripheral MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The nRF54H20 EXMIF peripheral requires word accesses. Doing accesses of byte or half-word sizes results in bus fault. Upstream PR: https://github.com/zephyrproject-rtos/zephyr/pull/72497 Signed-off-by: Rafał Kuźnia --- soc/nordic/nrf54h/Kconfig.defconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/soc/nordic/nrf54h/Kconfig.defconfig b/soc/nordic/nrf54h/Kconfig.defconfig index ad06920c15c..b09b24e5e70 100644 --- a/soc/nordic/nrf54h/Kconfig.defconfig +++ b/soc/nordic/nrf54h/Kconfig.defconfig @@ -36,4 +36,7 @@ endif # RISCV config SPI_DW_HSSI default y if SPI_DW +config SPI_DW_ACCESS_WORD_ONLY + default y if SPI_DW + endif # SOC_SERIES_NRF54HX