File tree Expand file tree Collapse file tree 5 files changed +939
-0
lines changed Expand file tree Collapse file tree 5 files changed +939
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ zephyr_library_sources_ifdef(CONFIG_SPI_AMBIQ_SPID spi_ambiq_spid.c)
20
20
zephyr_library_sources_ifdef (CONFIG_SPI_ANDES_ATCSPI200 spi_andes_atcspi200.c )
21
21
zephyr_library_sources_ifdef (CONFIG_SPI_BITBANG spi_bitbang.c )
22
22
zephyr_library_sources_ifdef (CONFIG_SPI_CC13XX_CC26XX spi_cc13xx_cc26xx.c )
23
+ zephyr_library_sources_ifdef (CONFIG_SPI_CDNS spi_cdns.c )
23
24
zephyr_library_sources_ifdef (CONFIG_SPI_DW spi_dw.c )
24
25
zephyr_library_sources_ifdef (CONFIG_SPI_EMUL spi_emul.c )
25
26
zephyr_library_sources_ifdef (CONFIG_SPI_GD32 spi_gd32.c )
Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ source "drivers/spi/Kconfig.andes_atcspi200"
99
99
source "drivers/spi/Kconfig.b91"
100
100
source "drivers/spi/Kconfig.bitbang"
101
101
source "drivers/spi/Kconfig.cc13xx_cc26xx"
102
+ source "drivers/spi/Kconfig.cdns"
102
103
source "drivers/spi/Kconfig.dw"
103
104
source "drivers/spi/Kconfig.esp32"
104
105
source "drivers/spi/Kconfig.gd32"
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2024 Meta Platforms
2
+ # SPDX-License-Identifier: Apache-2.0
3
+
4
+ config SPI_CDNS
5
+ bool "Cadence SPI controller driver"
6
+ depends on DT_HAS_CDNS_SPI_ENABLED
7
+ help
8
+ Enable the SPI peripherals based on Cadence IP6524
You can’t perform that action at this time.
0 commit comments