Adam Ford | f1b1f77 | 2018-04-15 13:51:26 -0400 | [diff] [blame] | 1 | menuconfig SPI |
| 2 | bool "SPI Support" |
| 3 | |
| 4 | if SPI |
Jagan Teki | de82305 | 2015-06-27 22:35:14 +0530 | [diff] [blame] | 5 | |
Masahiro Yamada | da333ae | 2014-10-23 22:26:09 +0900 | [diff] [blame] | 6 | config DM_SPI |
| 7 | bool "Enable Driver Model for SPI drivers" |
| 8 | depends on DM |
| 9 | help |
Simon Glass | f94a1be | 2015-02-05 21:41:35 -0700 | [diff] [blame] | 10 | Enable driver model for SPI. The SPI slave interface |
| 11 | (spi_setup_slave(), spi_xfer(), etc.) is then implemented by |
| 12 | the SPI uclass. Drivers provide methods to access the SPI |
| 13 | buses that they control. The uclass interface is defined in |
| 14 | include/spi.h. The existing spi_slave structure is attached |
| 15 | as 'parent data' to every slave on each bus. Slaves |
| 16 | typically use driver-private data instead of extending the |
| 17 | spi_slave structure. |
Simon Glass | 892cac7 | 2015-03-06 13:19:05 -0700 | [diff] [blame] | 18 | |
Boris Brezillon | d13f5b2 | 2018-08-16 17:30:11 +0200 | [diff] [blame] | 19 | config SPI_MEM |
| 20 | bool "SPI memory extension" |
| 21 | help |
| 22 | Enable this option if you want to enable the SPI memory extension. |
| 23 | This extension is meant to simplify interaction with SPI memories |
| 24 | by providing an high-level interface to send memory-like commands. |
| 25 | |
Vignesh R | 6430eea | 2019-02-05 11:29:15 +0530 | [diff] [blame] | 26 | if DM_SPI |
| 27 | |
Thomas Chou | 15a56f9 | 2015-10-14 08:33:34 +0800 | [diff] [blame] | 28 | config ALTERA_SPI |
| 29 | bool "Altera SPI driver" |
| 30 | help |
| 31 | Enable the Altera SPI driver. This driver can be used to |
| 32 | access the SPI NOR flash on platforms embedding this Altera |
| 33 | IP core. Please find details on the "Embedded Peripherals IP |
| 34 | User Guide" of Altera. |
| 35 | |
Jagan Teki | 15927ae | 2018-03-07 10:33:33 +0530 | [diff] [blame] | 36 | config ATCSPI200_SPI |
| 37 | bool "Andestech ATCSPI200 SPI driver" |
| 38 | help |
| 39 | Enable the Andestech ATCSPI200 SPI driver. This driver can be |
| 40 | used to access the SPI flash on AE3XX and AE250 platforms embedding |
| 41 | this Andestech IP core. |
| 42 | |
Wills Wang | b85dc46 | 2016-03-16 16:59:58 +0800 | [diff] [blame] | 43 | config ATH79_SPI |
| 44 | bool "Atheros SPI driver" |
| 45 | depends on ARCH_ATH79 |
| 46 | help |
| 47 | Enable the Atheros ar7xxx/ar9xxx SoC SPI driver, it was used |
| 48 | to access SPI NOR flash and other SPI peripherals. This driver |
| 49 | uses driver model and requires a device tree binding to operate. |
| 50 | please refer to doc/device-tree-bindings/spi/spi-ath79.txt. |
| 51 | |
Wenyou Yang | 0eafd4b | 2016-10-28 14:17:49 +0800 | [diff] [blame] | 52 | config ATMEL_SPI |
| 53 | bool "Atmel SPI driver" |
Jagan Teki | 89d4fc1 | 2018-03-14 18:46:44 +0530 | [diff] [blame] | 54 | default y if ARCH_AT91 |
Wenyou Yang | 0eafd4b | 2016-10-28 14:17:49 +0800 | [diff] [blame] | 55 | help |
| 56 | This enables driver for the Atmel SPI Controller, present on |
Andy Shevchenko | daab59a | 2017-07-05 16:25:22 +0300 | [diff] [blame] | 57 | many AT91 (ARM) chips. This driver can be used to access |
| 58 | the SPI Flash, such as AT25DF321. |
Wenyou Yang | 0eafd4b | 2016-10-28 14:17:49 +0800 | [diff] [blame] | 59 | |
Álvaro Fernández Rojas | 29cc436 | 2018-01-20 02:13:38 +0100 | [diff] [blame] | 60 | config BCM63XX_HSSPI |
| 61 | bool "BCM63XX HSSPI driver" |
| 62 | depends on ARCH_BMIPS |
| 63 | help |
| 64 | Enable the BCM6328 HSSPI driver. This driver can be used to |
| 65 | access the SPI NOR flash on platforms embedding this Broadcom |
| 66 | SPI core. |
| 67 | |
Álvaro Fernández Rojas | 5ac07d2 | 2018-01-23 17:14:58 +0100 | [diff] [blame] | 68 | config BCM63XX_SPI |
| 69 | bool "BCM6348 SPI driver" |
| 70 | depends on ARCH_BMIPS |
| 71 | help |
| 72 | Enable the BCM6348/BCM6358 SPI driver. This driver can be used to |
| 73 | access the SPI NOR flash on platforms embedding these Broadcom |
| 74 | SPI cores. |
| 75 | |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 76 | config BCMSTB_SPI |
| 77 | bool "BCMSTB SPI driver" |
| 78 | help |
| 79 | Enable the Broadcom set-top box SPI driver. This driver can |
| 80 | be used to access the SPI flash on platforms embedding this |
| 81 | Broadcom SPI core. |
| 82 | |
Jagan Teki | e4976af | 2015-06-27 22:37:00 +0530 | [diff] [blame] | 83 | config CADENCE_QSPI |
| 84 | bool "Cadence QSPI driver" |
| 85 | help |
| 86 | Enable the Cadence Quad-SPI (QSPI) driver. This driver can be |
| 87 | used to access the SPI NOR flash on platforms embedding this |
| 88 | Cadence IP core. |
| 89 | |
Angelo Dureghello | 610e316 | 2019-03-13 21:46:46 +0100 | [diff] [blame] | 90 | config CF_SPI |
| 91 | bool "ColdFire SPI driver" |
| 92 | help |
| 93 | Enable the ColdFire SPI driver. This driver can be used on |
| 94 | some m68k SoCs. |
| 95 | |
Jagan Teki | e4976af | 2015-06-27 22:37:00 +0530 | [diff] [blame] | 96 | config DESIGNWARE_SPI |
| 97 | bool "Designware SPI driver" |
| 98 | help |
| 99 | Enable the Designware SPI driver. This driver can be used to |
| 100 | access the SPI NOR flash on platforms embedding this Designware |
| 101 | IP core. |
| 102 | |
Jagan Teki | c354eee | 2015-06-27 15:32:19 +0530 | [diff] [blame] | 103 | config EXYNOS_SPI |
| 104 | bool "Samsung Exynos SPI driver" |
| 105 | help |
| 106 | Enable the Samsung Exynos SPI driver. This driver can be used to |
| 107 | access the SPI NOR flash on platforms embedding this Samsung |
| 108 | Exynos IP core. |
| 109 | |
Jagan Teki | 94ea308 | 2015-06-27 14:17:06 +0530 | [diff] [blame] | 110 | config FSL_DSPI |
| 111 | bool "Freescale DSPI driver" |
| 112 | help |
| 113 | Enable the Freescale DSPI driver. This driver can be used to |
| 114 | access the SPI NOR flash and SPI Data flash on platforms embedding |
| 115 | this Freescale DSPI IP core. LS102xA and Colibri VF50/VF61 platforms |
| 116 | use this driver. |
| 117 | |
Jagan Teki | 4563601 | 2015-06-27 15:43:27 +0530 | [diff] [blame] | 118 | config ICH_SPI |
| 119 | bool "Intel ICH SPI driver" |
Vignesh R | 6d82517 | 2019-02-05 11:29:28 +0530 | [diff] [blame] | 120 | imply SPI_FLASH_BAR |
Jagan Teki | 4563601 | 2015-06-27 15:43:27 +0530 | [diff] [blame] | 121 | help |
| 122 | Enable the Intel ICH SPI driver. This driver can be used to |
| 123 | access the SPI NOR flash on platforms embedding this Intel |
| 124 | ICH IP core. |
| 125 | |
Neil Armstrong | 9d26506 | 2018-11-22 11:01:05 +0100 | [diff] [blame] | 126 | config MESON_SPIFC |
| 127 | bool "Amlogic Meson SPI Flash Controller driver" |
| 128 | depends on ARCH_MESON |
| 129 | help |
| 130 | Enable the Amlogic Meson SPI Flash Controller SPIFC) driver. |
| 131 | This driver can be used to access the SPI NOR flash chips on |
| 132 | Amlogic Meson SoCs. |
| 133 | |
Christophe Leroy | f34d031 | 2018-11-21 08:51:57 +0000 | [diff] [blame] | 134 | config MPC8XX_SPI |
| 135 | bool "MPC8XX SPI Driver" |
| 136 | depends on MPC8xx |
| 137 | help |
| 138 | Enable support for SPI on MPC8XX |
| 139 | |
Jagan Teki | c1a3f1e | 2019-04-29 01:58:53 +0530 | [diff] [blame] | 140 | config MPC8XXX_SPI |
| 141 | bool "MPC8XXX SPI Driver" |
| 142 | help |
| 143 | Enable support for SPI on the MPC8XXX PowerPC SoCs. |
| 144 | |
Stefan Roese | 5eee9de | 2018-08-16 10:48:48 +0200 | [diff] [blame] | 145 | config MT7621_SPI |
| 146 | bool "MediaTek MT7621 SPI driver" |
Weijie Gao | 16b9490 | 2019-04-30 11:13:58 +0800 | [diff] [blame] | 147 | depends on SOC_MT7628 |
Stefan Roese | 5eee9de | 2018-08-16 10:48:48 +0200 | [diff] [blame] | 148 | help |
| 149 | Enable the MT7621 SPI driver. This driver can be used to access |
| 150 | the SPI NOR flash on platforms embedding this Ralink / MediaTek |
| 151 | SPI core, like MT7621/7628/7688. |
| 152 | |
Guochun Mao | 052cafd | 2018-10-12 15:01:06 +0800 | [diff] [blame] | 153 | config MTK_QSPI |
| 154 | bool "Mediatek QSPI driver" |
Vignesh R | 6d82517 | 2019-02-05 11:29:28 +0530 | [diff] [blame] | 155 | imply SPI_FLASH_BAR |
Guochun Mao | 052cafd | 2018-10-12 15:01:06 +0800 | [diff] [blame] | 156 | help |
| 157 | Enable the Mediatek QSPI driver. This driver can be |
| 158 | used to access the SPI NOR flash on platforms embedding this |
| 159 | Mediatek QSPI IP core. |
| 160 | |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 161 | config MVEBU_A3700_SPI |
| 162 | bool "Marvell Armada 3700 SPI driver" |
Marek Behún | dbbd5bd | 2018-04-24 17:21:26 +0200 | [diff] [blame] | 163 | select CLK_ARMADA_3720 |
Stefan Roese | 3fda4ef | 2016-05-19 15:56:44 +0200 | [diff] [blame] | 164 | help |
| 165 | Enable the Marvell Armada 3700 SPI driver. This driver can be |
| 166 | used to access the SPI NOR flash on platforms embedding this |
| 167 | Marvell IP core. |
| 168 | |
Purna Chandra Mandal | e19b900 | 2016-06-02 14:26:08 +0530 | [diff] [blame] | 169 | config PIC32_SPI |
| 170 | bool "Microchip PIC32 SPI driver" |
| 171 | depends on MACH_PIC32 |
| 172 | help |
| 173 | Enable the Microchip PIC32 SPI driver. This driver can be used |
| 174 | to access the SPI NOR flash, MMC-over-SPI on platforms based on |
| 175 | Microchip PIC32 family devices. |
| 176 | |
Quentin Schulz | 8a4791f | 2018-08-31 16:28:29 +0200 | [diff] [blame] | 177 | config PL022_SPI |
| 178 | bool "ARM AMBA PL022 SSP controller driver" |
| 179 | depends on ARM |
| 180 | help |
| 181 | This selects the ARM(R) AMBA(R) PrimeCell PL022 SSP |
| 182 | controller. If you have an embedded system with an AMBA(R) |
| 183 | bus and a PL022 controller, say Y or M here. |
| 184 | |
Marek Vasut | fbebea2 | 2017-11-29 06:29:46 +0100 | [diff] [blame] | 185 | config RENESAS_RPC_SPI |
| 186 | bool "Renesas RPC SPI driver" |
Marek Vasut | b5b6656 | 2019-05-04 18:52:33 +0200 | [diff] [blame] | 187 | depends on RCAR_GEN3 || RZA1 |
Vignesh R | 6d82517 | 2019-02-05 11:29:28 +0530 | [diff] [blame] | 188 | imply SPI_FLASH_BAR |
Marek Vasut | fbebea2 | 2017-11-29 06:29:46 +0100 | [diff] [blame] | 189 | help |
| 190 | Enable the Renesas RPC SPI driver, used to access SPI NOR flash |
| 191 | on Renesas RCar Gen3 SoCs. This uses driver model and requires a |
| 192 | device tree binding to operate. |
| 193 | |
Simon Glass | 1b2fd5b | 2015-09-01 19:19:37 -0600 | [diff] [blame] | 194 | config ROCKCHIP_SPI |
| 195 | bool "Rockchip SPI driver" |
| 196 | help |
| 197 | Enable the Rockchip SPI driver, used to access SPI NOR flash and |
| 198 | other SPI peripherals (such as the Chrome OS EC) on Rockchip SoCs. |
| 199 | This uses driver model and requires a device tree binding to |
| 200 | operate. |
| 201 | |
Simon Glass | 892cac7 | 2015-03-06 13:19:05 -0700 | [diff] [blame] | 202 | config SANDBOX_SPI |
| 203 | bool "Sandbox SPI driver" |
| 204 | depends on SANDBOX && DM |
| 205 | help |
| 206 | Enable SPI support for sandbox. This is an emulation of a real SPI |
| 207 | bus. Devices can be attached to the bus using the device tree |
| 208 | which specifies the driver to use. As an example, see this device |
| 209 | tree fragment from sandbox.dts. It shows that the SPI bus has a |
| 210 | single flash device on chip select 0 which is emulated by the driver |
| 211 | for "sandbox,spi-flash", which is in drivers/mtd/spi/sandbox.c. |
| 212 | |
| 213 | spi@0 { |
| 214 | #address-cells = <1>; |
| 215 | #size-cells = <0>; |
| 216 | reg = <0>; |
| 217 | compatible = "sandbox,spi"; |
| 218 | cs-gpios = <0>, <&gpio_a 0>; |
| 219 | flash@0 { |
| 220 | reg = <0>; |
| 221 | compatible = "spansion,m25p16", "sandbox,spi-flash"; |
| 222 | spi-max-frequency = <40000000>; |
| 223 | sandbox,filename = "spi.bin"; |
| 224 | }; |
Jagan Teki | e4976af | 2015-06-27 22:37:00 +0530 | [diff] [blame] | 225 | }; |
Jagan Teki | f924a20 | 2015-06-27 04:41:11 +0530 | [diff] [blame] | 226 | |
Jagan Teki | a51cd54 | 2019-02-27 20:02:13 +0530 | [diff] [blame] | 227 | config SPI_SUNXI |
| 228 | bool "Allwinner SoC SPI controllers" |
| 229 | help |
| 230 | Enable the Allwinner SoC SPi controller driver. |
| 231 | |
| 232 | Same controller driver can reuse in all Allwinner SoC variants. |
| 233 | |
Michael Kurz | d4363ba | 2017-01-22 16:04:30 +0100 | [diff] [blame] | 234 | config STM32_QSPI |
| 235 | bool "STM32F7 QSPI driver" |
Patrice Chotard | 351d2fe | 2019-04-30 16:09:18 +0200 | [diff] [blame] | 236 | depends on STM32F4 || STM32F7 || ARCH_STM32MP |
Michael Kurz | d4363ba | 2017-01-22 16:04:30 +0100 | [diff] [blame] | 237 | help |
| 238 | Enable the STM32F7 Quad-SPI (QSPI) driver. This driver can be |
| 239 | used to access the SPI NOR flash chips on platforms embedding |
| 240 | this ST IP core. |
| 241 | |
Jagan Teki | 5bf9a2d | 2015-06-27 15:57:53 +0530 | [diff] [blame] | 242 | config TEGRA114_SPI |
| 243 | bool "nVidia Tegra114 SPI driver" |
| 244 | help |
| 245 | Enable the nVidia Tegra114 SPI driver. This driver can be used to |
| 246 | access the SPI NOR flash on platforms embedding this nVidia Tegra114 |
| 247 | IP core. |
| 248 | |
| 249 | This controller is different than the older SoCs SPI controller and |
| 250 | also register interface get changed with this controller. |
| 251 | |
Jagan Teki | 2f3e6f8 | 2015-06-27 16:04:05 +0530 | [diff] [blame] | 252 | config TEGRA20_SFLASH |
| 253 | bool "nVidia Tegra20 Serial Flash controller driver" |
| 254 | help |
| 255 | Enable the nVidia Tegra20 Serial Flash controller driver. This driver |
| 256 | can be used to access the SPI NOR flash on platforms embedding this |
| 257 | nVidia Tegra20 IP core. |
| 258 | |
Jagan Teki | 4495830 | 2015-06-27 16:07:54 +0530 | [diff] [blame] | 259 | config TEGRA20_SLINK |
| 260 | bool "nVidia Tegra20/Tegra30 SLINK driver" |
| 261 | help |
| 262 | Enable the nVidia Tegra20/Tegra30 SLINK driver. This driver can |
| 263 | be used to access the SPI NOR flash on platforms embedding this |
| 264 | nVidia Tegra20/Tegra30 IP cores. |
| 265 | |
Tom Warren | 4e675ff | 2015-10-12 14:50:54 -0700 | [diff] [blame] | 266 | config TEGRA210_QSPI |
| 267 | bool "nVidia Tegra210 QSPI driver" |
| 268 | help |
| 269 | Enable the Tegra Quad-SPI (QSPI) driver for T210. This driver |
| 270 | be used to access SPI chips on platforms embedding this |
| 271 | NVIDIA Tegra210 IP core. |
| 272 | |
Vignesh Raghavendra | 61ae978 | 2019-04-16 21:31:59 +0530 | [diff] [blame] | 273 | config TI_QSPI |
| 274 | bool "TI QSPI driver" |
| 275 | imply TI_EDMA3 |
| 276 | help |
| 277 | Enable the TI Quad-SPI (QSPI) driver for DRA7xx and AM43xx evms. |
| 278 | This driver support spi flash single, quad and memory reads. |
| 279 | |
Jagan Teki | 075143d | 2015-06-27 04:32:43 +0530 | [diff] [blame] | 280 | config XILINX_SPI |
| 281 | bool "Xilinx SPI driver" |
Jagan Teki | 075143d | 2015-06-27 04:32:43 +0530 | [diff] [blame] | 282 | help |
| 283 | Enable the Xilinx SPI driver from the Xilinx EDK. This SPI |
| 284 | controller support 8 bit SPI transfers only, with or w/o FIFO. |
| 285 | For more info on Xilinx SPI Register Definitions and Overview |
| 286 | see driver file - drivers/spi/xilinx_spi.c |
| 287 | |
Jagan Teki | df30a42 | 2015-06-27 00:51:38 +0530 | [diff] [blame] | 288 | config ZYNQ_SPI |
| 289 | bool "Zynq SPI driver" |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 290 | depends on ARCH_ZYNQ || ARCH_ZYNQMP || ARCH_VERSAL |
Jagan Teki | df30a42 | 2015-06-27 00:51:38 +0530 | [diff] [blame] | 291 | help |
| 292 | Enable the Zynq SPI driver. This driver can be used to |
| 293 | access the SPI NOR flash on platforms embedding this Zynq |
| 294 | SPI IP core. |
Jagan Teki | de82305 | 2015-06-27 22:35:14 +0530 | [diff] [blame] | 295 | |
Jagan Teki | 78a025a | 2015-08-16 00:19:38 +0530 | [diff] [blame] | 296 | config ZYNQ_QSPI |
| 297 | bool "Zynq QSPI driver" |
| 298 | depends on ARCH_ZYNQ |
Vignesh R | 6d82517 | 2019-02-05 11:29:28 +0530 | [diff] [blame] | 299 | imply SPI_FLASH_BAR |
Jagan Teki | 78a025a | 2015-08-16 00:19:38 +0530 | [diff] [blame] | 300 | help |
| 301 | Enable the Zynq Quad-SPI (QSPI) driver. This driver can be |
| 302 | used to access the SPI NOR flash on platforms embedding this |
| 303 | Zynq QSPI IP core. This IP is used to connect the flash in |
| 304 | 4-bit qspi, 8-bit dual stacked and shared 4-bit dual parallel. |
| 305 | |
Siva Durga Prasad Paladugu | 22cca17 | 2018-07-04 17:31:23 +0530 | [diff] [blame] | 306 | config ZYNQMP_GQSPI |
| 307 | bool "Configure ZynqMP Generic QSPI" |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 308 | depends on ARCH_ZYNQMP || ARCH_VERSAL |
Siva Durga Prasad Paladugu | 22cca17 | 2018-07-04 17:31:23 +0530 | [diff] [blame] | 309 | help |
| 310 | This option is used to enable ZynqMP QSPI controller driver which |
| 311 | is used to communicate with qspi flash devices. |
| 312 | |
Jagan Teki | e4976af | 2015-06-27 22:37:00 +0530 | [diff] [blame] | 313 | endif # if DM_SPI |
| 314 | |
Peng Fan | 41eb8ff | 2017-04-13 14:09:55 +0800 | [diff] [blame] | 315 | config SOFT_SPI |
| 316 | bool "Soft SPI driver" |
Jagan Teki | 32f70d6 | 2019-05-29 17:01:34 -0400 | [diff] [blame^] | 317 | depends on DM_SPI || (DEPRECATED && !DM_SPI) |
Peng Fan | 41eb8ff | 2017-04-13 14:09:55 +0800 | [diff] [blame] | 318 | help |
| 319 | Enable Soft SPI driver. This driver is to use GPIO simulate |
| 320 | the SPI protocol. |
| 321 | |
Lars Povlsen | fd6e0b0 | 2019-01-08 10:38:33 +0100 | [diff] [blame] | 322 | config MSCC_BB_SPI |
| 323 | bool "MSCC bitbang SPI driver" |
| 324 | depends on SOC_VCOREIII |
| 325 | help |
| 326 | Enable MSCC bitbang SPI driver. This driver can be used on |
| 327 | MSCC SOCs. |
| 328 | |
Tuomas Tynkkynen | fbca0e6 | 2018-02-07 02:42:23 +0200 | [diff] [blame] | 329 | config CF_SPI |
| 330 | bool "ColdFire SPI driver" |
| 331 | help |
| 332 | Enable the ColdFire SPI driver. This driver can be used on |
| 333 | some m68k SoCs. |
| 334 | |
Jagan Teki | 3debffa | 2015-06-27 15:21:36 +0530 | [diff] [blame] | 335 | config FSL_ESPI |
| 336 | bool "Freescale eSPI driver" |
| 337 | help |
| 338 | Enable the Freescale eSPI driver. This driver can be used to |
| 339 | access the SPI interface and SPI NOR flash on platforms embedding |
| 340 | this Freescale eSPI IP core. |
| 341 | |
Jagan Teki | 21b1dd1 | 2016-09-03 12:58:33 +0530 | [diff] [blame] | 342 | config FSL_QSPI |
| 343 | bool "Freescale QSPI driver" |
Vignesh R | 6d82517 | 2019-02-05 11:29:28 +0530 | [diff] [blame] | 344 | imply SPI_FLASH_BAR |
Jagan Teki | 21b1dd1 | 2016-09-03 12:58:33 +0530 | [diff] [blame] | 345 | help |
| 346 | Enable the Freescale Quad-SPI (QSPI) driver. This driver can be |
| 347 | used to access the SPI NOR flash on platforms embedding this |
| 348 | Freescale IP core. |
| 349 | |
Adam Ford | 26410c1 | 2017-12-30 07:33:42 -0600 | [diff] [blame] | 350 | config DAVINCI_SPI |
| 351 | bool "Davinci & Keystone SPI driver" |
| 352 | depends on ARCH_DAVINCI || ARCH_KEYSTONE |
| 353 | help |
| 354 | Enable the Davinci SPI driver |
| 355 | |
Tuomas Tynkkynen | 95d3877 | 2018-02-07 02:42:16 +0200 | [diff] [blame] | 356 | config SH_SPI |
| 357 | bool "SuperH SPI driver" |
Jagan Teki | e124759 | 2019-05-29 17:01:33 -0400 | [diff] [blame] | 358 | depends on DEPRECATED |
Tuomas Tynkkynen | 95d3877 | 2018-02-07 02:42:16 +0200 | [diff] [blame] | 359 | help |
| 360 | Enable the SuperH SPI controller driver. This driver can be used |
| 361 | on various SuperH SoCs, such as SH7757. |
| 362 | |
Tuomas Tynkkynen | a5dfabe | 2018-02-07 02:42:17 +0200 | [diff] [blame] | 363 | config SH_QSPI |
| 364 | bool "Renesas Quad SPI driver" |
| 365 | help |
| 366 | Enable the Renesas Quad SPI controller driver. This driver can be |
| 367 | used on Renesas SoCs. |
| 368 | |
Tuomas Tynkkynen | 4a942f4 | 2018-02-07 02:42:22 +0200 | [diff] [blame] | 369 | config KIRKWOOD_SPI |
| 370 | bool "Marvell Kirkwood SPI Driver" |
| 371 | help |
| 372 | Enable support for SPI on various Marvell SoCs, such as |
| 373 | Kirkwood and Armada 375. |
| 374 | |
Tuomas Tynkkynen | 2c4b096 | 2018-02-07 02:42:21 +0200 | [diff] [blame] | 375 | config LPC32XX_SSP |
| 376 | bool "LPC32XX SPI Driver" |
| 377 | help |
| 378 | Enable support for SPI on LPC32xx |
| 379 | |
Tuomas Tynkkynen | 60e5456 | 2018-02-07 02:42:19 +0200 | [diff] [blame] | 380 | config MXC_SPI |
| 381 | bool "MXC SPI Driver" |
| 382 | help |
| 383 | Enable the MXC SPI controller driver. This driver can be used |
| 384 | on various i.MX SoCs such as i.MX31/35/51/6/7. |
| 385 | |
Tuomas Tynkkynen | 7b819b5 | 2018-02-07 02:42:18 +0200 | [diff] [blame] | 386 | config MXS_SPI |
| 387 | bool "MXS SPI Driver" |
Jagan Teki | d5ded32 | 2019-05-29 17:01:32 -0400 | [diff] [blame] | 388 | depends on DEPRECATED |
Tuomas Tynkkynen | 7b819b5 | 2018-02-07 02:42:18 +0200 | [diff] [blame] | 389 | help |
| 390 | Enable the MXS SPI controller driver. This driver can be used |
| 391 | on the i.MX23 and i.MX28 SoCs. |
| 392 | |
Adam Ford | a41e3e1 | 2017-07-26 22:25:29 -0500 | [diff] [blame] | 393 | config OMAP3_SPI |
| 394 | bool "McSPI driver for OMAP" |
| 395 | help |
| 396 | SPI master controller for OMAP24XX and later Multichannel SPI |
| 397 | (McSPI). This driver be used to access SPI chips on platforms |
| 398 | embedding this OMAP3 McSPI IP core. |
| 399 | |
Adam Ford | f1b1f77 | 2018-04-15 13:51:26 -0400 | [diff] [blame] | 400 | endif # menu "SPI Support" |