On 8/14/26 8:38 PM, Ralph Siemsen wrote:
The Renesas RZ/N1 has a QSPI controller which offers memory-mapped
"Direct Access" mode, so enable SPI_DIRMAP for this platform.
Signed-off-by: Ralph Siemsen <[email protected]>
---
arch/arm/mach-renesas/Kconfig | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/arch/arm/mach-renesas/Kconfig b/arch/arm/mach-renesas/Kconfig
index f86acc31039..4d16d541443 100644
--- a/arch/arm/mach-renesas/Kconfig
+++ b/arch/arm/mach-renesas/Kconfig
@@ -70,9 +70,13 @@ config RZN1
select DM
select DM_ETH
select DM_SERIAL
+ select DM_SPI
select PINCTRL
select PINCONF
select REGMAP
+ select SPI
Shouldn't this be in board config ? Not all RZN1 boards likely require SPI ?
+ select SPI_MEM
+ select SPI_DIRMAP
Shouldn't this be selected by the SPI NOR driver instead ?