blob: fa817ec4883008481a699a0e673a64c9f923d2d0 [file] [log] [blame]
Adam Ford4e96ff82018-04-15 13:51:26 -04001menuconfig SPI
2 bool "SPI Support"
Jagan Teki38d91fe2019-10-16 18:04:13 +05303 help
4 The "Serial Peripheral Interface" is a low level synchronous
5 protocol. Chips that support SPI can have data transfer rates
6 up to several tens of Mbit/sec. Chips are addressed with a
7 controller and a chipselect. Most SPI slaves don't support
8 dynamic device discovery; some are even write-only or read-only.
9
10 SPI is widely used by microcontrollers to talk with sensors,
11 eeprom and flash memory, codecs and various other controller
12 chips, analog to digital (and d-to-a) converters, and more.
13 MMC and SD cards can be accessed using SPI protocol; and for
14 DataFlash cards used in MMC sockets, SPI must always be used.
15
16 SPI is one of a family of similar protocols using a four wire
17 interface (select, clock, data in, data out) including Microwire
18 (half duplex), SSP, SSI, and PSP. This driver framework should
19 work with most such devices and controllers.
Adam Ford4e96ff82018-04-15 13:51:26 -040020
21if SPI
Jagan Tekibfd3f8b2015-06-27 22:35:14 +053022
Venkatesh Yadav Abbarapubc8c88b2024-09-26 10:25:02 +053023config SPI_ADVANCE
24 bool "Enable the advance feature"
25 help
26 Enable the SPI advance feature support. By default this is disabled.
27 If you intend to use the advance feature support you should enable.
28
Masahiro Yamada57ad8ee2014-10-23 22:26:09 +090029config DM_SPI
30 bool "Enable Driver Model for SPI drivers"
31 depends on DM
32 help
Simon Glassd8b771d2015-02-05 21:41:35 -070033 Enable driver model for SPI. The SPI slave interface
34 (spi_setup_slave(), spi_xfer(), etc.) is then implemented by
35 the SPI uclass. Drivers provide methods to access the SPI
36 buses that they control. The uclass interface is defined in
37 include/spi.h. The existing spi_slave structure is attached
38 as 'parent data' to every slave on each bus. Slaves
39 typically use driver-private data instead of extending the
40 spi_slave structure.
Simon Glass4b322d32015-03-06 13:19:05 -070041
Boris Brezillon32473fe2018-08-16 17:30:11 +020042config SPI_MEM
43 bool "SPI memory extension"
44 help
45 Enable this option if you want to enable the SPI memory extension.
46 This extension is meant to simplify interaction with SPI memories
47 by providing an high-level interface to send memory-like commands.
48
Chin-Ting Kuoa891be82022-08-19 17:01:08 +080049config SPI_DIRMAP
50 bool "SPI direct mapping"
51 depends on SPI_MEM
52 help
53 Enable the SPI direct mapping API. Most modern SPI controllers can
54 directly map a SPI memory (or a portion of the SPI memory) in the CPU
55 address space. Most of the time this brings significant performance
56 improvements as it automates the whole process of sending SPI memory
57 operations every time a new region is accessed.
58
Vignesh R4e341d32019-02-05 11:29:15 +053059if DM_SPI
60
Thomas Chouc5899542015-10-14 08:33:34 +080061config ALTERA_SPI
62 bool "Altera SPI driver"
63 help
64 Enable the Altera SPI driver. This driver can be used to
65 access the SPI NOR flash on platforms embedding this Altera
66 IP core. Please find details on the "Embedded Peripherals IP
67 User Guide" of Altera.
68
Mark Kettenis0c3e9242022-01-23 16:48:12 +010069config APPLE_SPI
70 bool "Apple SPI driver"
71 default y if ARCH_APPLE
72 help
73 Enable the Apple SPI driver. This driver can be used to
74 access the SPI flash and keyboard on machines based on Apple SoCs.
75
Jagan Teki353dffb2018-03-07 10:33:33 +053076config ATCSPI200_SPI
77 bool "Andestech ATCSPI200 SPI driver"
78 help
79 Enable the Andestech ATCSPI200 SPI driver. This driver can be
80 used to access the SPI flash on AE3XX and AE250 platforms embedding
81 this Andestech IP core.
82
Wills Wangf5021482016-03-16 16:59:58 +080083config ATH79_SPI
84 bool "Atheros SPI driver"
85 depends on ARCH_ATH79
86 help
87 Enable the Atheros ar7xxx/ar9xxx SoC SPI driver, it was used
88 to access SPI NOR flash and other SPI peripherals. This driver
89 uses driver model and requires a device tree binding to operate.
90 please refer to doc/device-tree-bindings/spi/spi-ath79.txt.
91
Tudor Ambarus88151bb2019-06-18 08:51:50 +000092config ATMEL_QSPI
93 bool "Atmel Quad SPI Controller"
94 depends on ARCH_AT91
95 help
96 Enable the Atmel Quad SPI controller in master mode. This driver
97 does not support generic SPI. The implementation supports only the
98 spi-mem interface.
99
Wenyou Yangda8ee982016-10-28 14:17:49 +0800100config ATMEL_SPI
101 bool "Atmel SPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000102 depends on ARCH_AT91
Jagan Teki1d831b62018-03-14 18:46:44 +0530103 default y if ARCH_AT91
Wenyou Yangda8ee982016-10-28 14:17:49 +0800104 help
105 This enables driver for the Atmel SPI Controller, present on
Andy Shevchenko8cb5cdd2017-07-05 16:25:22 +0300106 many AT91 (ARM) chips. This driver can be used to access
107 the SPI Flash, such as AT25DF321.
Wenyou Yangda8ee982016-10-28 14:17:49 +0800108
Álvaro Fernández Rojas55d96ec2018-01-20 02:13:38 +0100109config BCM63XX_HSSPI
110 bool "BCM63XX HSSPI driver"
William Zhang96c65fa2023-06-07 16:37:01 -0700111 depends on (ARCH_BMIPS || ARCH_BCMBCA)
Álvaro Fernández Rojas55d96ec2018-01-20 02:13:38 +0100112 help
William Zhang96c65fa2023-06-07 16:37:01 -0700113 Enable the BCM63XX HSSPI driver. This driver can be used to
Álvaro Fernández Rojas55d96ec2018-01-20 02:13:38 +0100114 access the SPI NOR flash on platforms embedding this Broadcom
115 SPI core.
116
William Zhang7ff58552023-06-07 16:37:05 -0700117config BCMBCA_HSSPI
118 bool "BCMBCA HSSPI driver"
119 depends on ARCH_BCMBCA && HAVE_SPI_CS_CTRL
120 help
121 This enables support for the High Speed SPI controller present on
122 newer Broadcom BCMBCA SoCs. These SoCs include an updated SPI controller
123 that adds the capability to allow the driver to control chip select
124 explicitly.
125
Álvaro Fernández Rojascc243c62018-01-23 17:14:58 +0100126config BCM63XX_SPI
127 bool "BCM6348 SPI driver"
128 depends on ARCH_BMIPS
129 help
130 Enable the BCM6348/BCM6358 SPI driver. This driver can be used to
131 access the SPI NOR flash on platforms embedding these Broadcom
132 SPI cores.
133
Thomas Fitzsimmons919646d2018-06-08 17:59:45 -0400134config BCMSTB_SPI
135 bool "BCMSTB SPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000136 depends on ARCH_BCMSTB
Thomas Fitzsimmons919646d2018-06-08 17:59:45 -0400137 help
138 Enable the Broadcom set-top box SPI driver. This driver can
139 be used to access the SPI flash on platforms embedding this
140 Broadcom SPI core.
141
Pengpeng Chen8f04b522020-07-30 12:52:45 -0700142config CORTINA_SFLASH
143 bool "Cortina-Access Serial Flash controller driver"
144 depends on DM_SPI && SPI_MEM
145 help
146 Enable the Cortina-Access Serial Flash controller driver. This driver
147 can be used to access the SPI NOR/NAND flash on platforms embedding this
148 Cortina-Access IP core.
149
Jagan Teki15a932c2015-06-27 22:37:00 +0530150config CADENCE_QSPI
151 bool "Cadence QSPI driver"
152 help
153 Enable the Cadence Quad-SPI (QSPI) driver. This driver can be
154 used to access the SPI NOR flash on platforms embedding this
155 Cadence IP core.
156
Tom Rini3fb5b2f2022-03-30 18:07:23 -0400157config HAS_CQSPI_REF_CLK
158 bool "Cadence QSPI static reference clock"
159 depends on CADENCE_QSPI
160
161config CQSPI_REF_CLK
162 int "Cadence QSPI reference clock value in Hz"
163 depends on HAS_CQSPI_REF_CLK
164
T Karthik Reddy73701e72022-05-12 04:05:32 -0600165config CADENCE_OSPI_VERSAL
166 bool "Configure Versal OSPI"
Michal Simek71bfd392024-05-29 16:48:01 +0200167 depends on (ARCH_VERSAL || ARCH_VERSAL_NET || ARCH_VERSAL2) && CADENCE_QSPI
T Karthik Reddy73701e72022-05-12 04:05:32 -0600168 imply DM_GPIO
169 help
170 This option is used to enable Versal OSPI DMA operations which
171 are used for ospi flash read using cadence qspi controller.
172
Angelo Dureghello72e9be32019-03-13 21:46:46 +0100173config CF_SPI
174 bool "ColdFire SPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000175 depends on M68K
Angelo Dureghello72e9be32019-03-13 21:46:46 +0100176 help
177 Enable the ColdFire SPI driver. This driver can be used on
178 some m68k SoCs.
179
Kongyang Liu61c9f282024-04-20 15:08:23 +0800180config CV1800B_SPIF
181 bool "Sophgo cv1800b SPI Flash Controller driver"
182 depends on SPI_MEM
183 help
184 Enable the Sophgo cv1800b SPI Flash Controller driver. This driver
185 can be used to access the SPI NOR flash on platforms embedding this
186 Sophgo cv1800b IP core.
187
Jagan Teki97c18ed2020-05-26 13:34:26 +0530188config DAVINCI_SPI
189 bool "Davinci & Keystone SPI driver"
190 depends on ARCH_DAVINCI || ARCH_KEYSTONE
191 help
192 Enable the Davinci SPI driver
193
Jagan Teki15a932c2015-06-27 22:37:00 +0530194config DESIGNWARE_SPI
195 bool "Designware SPI driver"
196 help
197 Enable the Designware SPI driver. This driver can be used to
198 access the SPI NOR flash on platforms embedding this Designware
199 IP core.
200
Jagan Teki6274bf92015-06-27 15:32:19 +0530201config EXYNOS_SPI
202 bool "Samsung Exynos SPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000203 depends on ARCH_EXYNOS
Jagan Teki6274bf92015-06-27 15:32:19 +0530204 help
205 Enable the Samsung Exynos SPI driver. This driver can be used to
206 access the SPI NOR flash on platforms embedding this Samsung
207 Exynos IP core.
208
Jagan Tekiae30c022015-06-27 14:17:06 +0530209config FSL_DSPI
210 bool "Freescale DSPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000211 depends on FSL_LAYERSCAPE || ARCH_VF610 || ARCH_LS1021A || ARCH_LS1028A
Jagan Tekiae30c022015-06-27 14:17:06 +0530212 help
213 Enable the Freescale DSPI driver. This driver can be used to
214 access the SPI NOR flash and SPI Data flash on platforms embedding
215 this Freescale DSPI IP core. LS102xA and Colibri VF50/VF61 platforms
216 use this driver.
217
Jagan Teki72cedd42020-05-26 00:24:19 +0530218config FSL_QSPI
219 bool "Freescale QSPI driver"
220 imply SPI_FLASH_BAR
221 help
222 Enable the Freescale Quad-SPI (QSPI) driver. This driver can be
223 used to access the SPI NOR flash on platforms embedding this
224 Freescale IP core.
225
Ye Lid7e3c9a2020-06-09 00:59:06 -0700226config FSL_QSPI_AHB_FULL_MAP
227 bool "Use full AHB memory map space"
228 depends on FSL_QSPI
229 default y if ARCH_MX6 || ARCH_MX7 || ARCH_MX7ULP || ARCH_IMX8M
230 help
231 Enable the Freescale QSPI driver to use full AHB memory map space for
232 flash access.
233
Nick Hawkins2ccea3a2022-06-08 16:21:36 -0500234config GXP_SPI
235 bool "SPI driver for GXP"
236 imply SPI_FLASH_BAR
237 help
238 Enable support for SPI on GXP.
239
Jagan Teki3872b7c2015-06-27 15:43:27 +0530240config ICH_SPI
241 bool "Intel ICH SPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000242 depends on X86
Jagan Teki3872b7c2015-06-27 15:43:27 +0530243 help
244 Enable the Intel ICH SPI driver. This driver can be used to
245 access the SPI NOR flash on platforms embedding this Intel
246 ICH IP core.
247
Rayagonda Kokatanur1969f2b2022-02-09 14:16:13 -0800248config IPROC_QSPI
249 bool "Broadcom iProc QSPI Flash Controller driver"
250 help
251 Enable Broadcom iProc QSPI Flash Controller driver.
252 This driver can be used to access the SPI NOR flash.
253
Bhargav Shah83a26312020-06-18 23:15:13 +0530254config KIRKWOOD_SPI
255 bool "Marvell Kirkwood SPI Driver"
John Watts60dcbc22024-04-27 15:40:40 +1000256 depends on ARCH_KIRKWOOD || ARCH_MVEBU
Bhargav Shah83a26312020-06-18 23:15:13 +0530257 help
258 Enable support for SPI on various Marvell SoCs, such as
259 Kirkwood and Armada 375.
260
Neil Armstrong5c162172018-11-22 11:01:05 +0100261config MESON_SPIFC
262 bool "Amlogic Meson SPI Flash Controller driver"
263 depends on ARCH_MESON
264 help
265 Enable the Amlogic Meson SPI Flash Controller SPIFC) driver.
266 This driver can be used to access the SPI NOR flash chips on
267 Amlogic Meson SoCs.
268
Padmarao Begari32678b02022-10-27 11:32:01 +0530269config MICROCHIP_COREQSPI
270 bool "Microchip FPGA QSPI Controller driver"
271 help
272 Enable the QSPI driver for Microchip FPGA QSPI controllers.
273 This driver can be used on Polarfire SoC.
274
Igor Prusov3f027752023-10-25 01:51:39 +0300275config MESON_SPIFC_A1
276 bool "Amlogic Meson A1 SPI Flash Controller driver"
277 depends on ARCH_MESON
278 help
279 Enable the Amlogic A1 SPI Flash Controller (SPIFC) driver.
280 This driver can be used to access the SPI NOR/NAND flash chips
281 with STR mode frequency up to 98MHz. Dual and quad modes are
282 supported by controller.
283
Christophe Leroy847362b2018-11-21 08:51:57 +0000284config MPC8XX_SPI
285 bool "MPC8XX SPI Driver"
Christophe Leroybc6a4572024-04-02 19:20:07 +0200286 depends on MPC8xx && DM_GPIO
Christophe Leroy847362b2018-11-21 08:51:57 +0000287 help
288 Enable support for SPI on MPC8XX
289
Jagan Teki52515d52019-04-29 01:58:53 +0530290config MPC8XXX_SPI
291 bool "MPC8XXX SPI Driver"
John Watts60dcbc22024-04-27 15:40:40 +1000292 depends on MPC83xx || MPC85xx
Jagan Teki52515d52019-04-29 01:58:53 +0530293 help
294 Enable support for SPI on the MPC8XXX PowerPC SoCs.
295
Jagan Teki72cedd42020-05-26 00:24:19 +0530296config MSCC_BB_SPI
297 bool "MSCC bitbang SPI driver"
298 depends on SOC_VCOREIII
299 help
300 Enable MSCC bitbang SPI driver. This driver can be used on
301 MSCC SOCs.
302
developer2dfdc3f2020-11-12 16:36:42 +0800303config MT7620_SPI
304 bool "MediaTek MT7620 SPI driver"
305 depends on SOC_MT7620
306 help
307 Enable the MT7620 SPI driver. This driver can be used to access
308 generic SPI devices on MediaTek MT7620 SoC.
309
Stefan Roese8adb8cb2018-08-16 10:48:48 +0200310config MT7621_SPI
311 bool "MediaTek MT7621 SPI driver"
developer005064e2022-05-20 11:23:08 +0800312 depends on SOC_MT7621 || SOC_MT7628
Stefan Roese8adb8cb2018-08-16 10:48:48 +0200313 help
314 Enable the MT7621 SPI driver. This driver can be used to access
315 the SPI NOR flash on platforms embedding this Ralink / MediaTek
316 SPI core, like MT7621/7628/7688.
317
developerf33cf3c2021-01-20 15:31:33 +0800318config MTK_SNOR
319 bool "Mediatek SPI-NOR controller driver"
320 depends on SPI_MEM
321 help
322 Enable the Mediatek SPINOR controller driver. This driver has
323 better read/write performance with NOR.
324
developer8a78b4d2019-07-22 17:09:01 +0530325config MTK_SNFI_SPI
326 bool "Mediatek SPI memory controller driver"
327 depends on SPI_MEM
328 help
329 Enable the Mediatek SPI memory controller driver. This driver is
330 originally based on the MediaTek SNFI IP core. It can only be
331 used to access SPI memory devices like SPI-NOR or SPI-NAND on
332 platforms embedding this IP core, like MT7622/M7629.
333
developer24202202022-09-09 19:59:45 +0800334config MTK_SPIM
335 bool "Mediatek SPI-MEM master controller driver"
336 depends on SPI_MEM
337 help
338 Enable MediaTek SPI-MEM master controller driver. This driver mainly
339 supports SPI flashes. You can use single, dual or quad mode
340 transmission on this controller.
341
Stefan Roese9ec1c782016-05-19 15:56:44 +0200342config MVEBU_A3700_SPI
343 bool "Marvell Armada 3700 SPI driver"
Marek Behún0afd9342018-04-24 17:21:26 +0200344 select CLK_ARMADA_3720
Stefan Roese9ec1c782016-05-19 15:56:44 +0200345 help
346 Enable the Marvell Armada 3700 SPI driver. This driver can be
347 used to access the SPI NOR flash on platforms embedding this
348 Marvell IP core.
349
Jagan Teki2174d852020-05-25 23:24:23 +0530350config MXS_SPI
351 bool "MXS SPI Driver"
John Watts60dcbc22024-04-27 15:40:40 +1000352 depends on MACH_IMX
Jagan Teki2174d852020-05-25 23:24:23 +0530353 help
354 Enable the MXS SPI controller driver. This driver can be used
355 on the i.MX23 and i.MX28 SoCs.
356
Zhengxunc93136b2021-06-23 17:15:15 +0000357config SPI_MXIC
358 bool "Macronix MX25F0A SPI controller"
359 help
360 Enable the Macronix MX25F0A SPI controller driver. This driver
361 can be used to access the SPI flash on platforms embedding
362 this Macronix IP core.
363
Jim Liu464b7cd2022-04-26 16:52:45 +0800364config NPCM_FIU_SPI
365 bool "FIU driver for Nuvoton NPCM SoC"
366 help
367 This enables support for the Flash Interface Unit SPI controller
368 in master mode.
369
Jim Liu68d29122022-05-31 18:14:02 +0800370config NPCM_PSPI
371 bool "PSPI driver for Nuvoton NPCM SoC"
372 help
373 PSPI driver for NPCM SoC
374
Michael Walled3967f32019-12-18 00:09:58 +0100375config NXP_FSPI
376 bool "NXP FlexSPI driver"
377 depends on SPI_MEM
378 help
379 Enable the NXP FlexSPI (FSPI) driver. This driver can be used to
380 access the SPI NOR flash on platforms embedding this NXP IP core.
381
Suneel Garapati41717772020-07-30 13:56:18 +0200382config OCTEON_SPI
383 bool "Octeon SPI driver"
Simon Glass3933d292021-08-01 18:54:44 -0600384 depends on ARCH_OCTEON || ARCH_OCTEONTX || ARCH_OCTEONTX2
Suneel Garapati41717772020-07-30 13:56:18 +0200385 help
386 Enable the Octeon SPI driver. This driver can be used to
387 access the SPI NOR flash on Octeon II/III and OcteonTX/TX2
388 SoC platforms.
389
Jagan Teki99899c52020-05-27 18:26:36 +0530390config OMAP3_SPI
391 bool "McSPI driver for OMAP"
392 help
393 SPI master controller for OMAP24XX and later Multichannel SPI
394 (McSPI). This driver be used to access SPI chips on platforms
395 embedding this OMAP3 McSPI IP core.
396
Purna Chandra Mandalffa54422016-06-02 14:26:08 +0530397config PIC32_SPI
398 bool "Microchip PIC32 SPI driver"
399 depends on MACH_PIC32
400 help
401 Enable the Microchip PIC32 SPI driver. This driver can be used
402 to access the SPI NOR flash, MMC-over-SPI on platforms based on
403 Microchip PIC32 family devices.
404
Quentin Schulz3add62d2018-08-31 16:28:29 +0200405config PL022_SPI
406 bool "ARM AMBA PL022 SSP controller driver"
407 depends on ARM
408 help
409 This selects the ARM(R) AMBA(R) PrimeCell PL022 SSP
410 controller. If you have an embedded system with an AMBA(R)
411 bus and a PL022 controller, say Y or M here.
412
Robert Markoe4b17a72020-10-08 22:05:09 +0200413config SPI_QUP
414 bool "Qualcomm SPI controller with QUP interface"
415 depends on ARCH_IPQ40XX
416 help
417 Qualcomm Universal Peripheral (QUP) core is an AHB slave that
418 provides a common data path (an output FIFO and an input FIFO)
419 for serial peripheral interface (SPI) mini-core. SPI in master
420 mode supports up to 50MHz, up to four chip selects, programmable
421 data path from 4 bits to 32 bits and numerous protocol variants.
422
Marek Vasut6ca967b2017-11-29 06:29:46 +0100423config RENESAS_RPC_SPI
424 bool "Renesas RPC SPI driver"
Marek Vasut47c4f502023-02-28 22:28:30 +0100425 depends on RCAR_64 || RZA1
Hai Pham64f3ca82022-08-25 10:32:56 +0700426 imply SPI_FLASH_SFDP_SUPPORT
Marek Vasut6ca967b2017-11-29 06:29:46 +0100427 help
428 Enable the Renesas RPC SPI driver, used to access SPI NOR flash
429 on Renesas RCar Gen3 SoCs. This uses driver model and requires a
430 device tree binding to operate.
431
Chris Morgan3afbc762021-08-05 16:26:38 +0800432config ROCKCHIP_SFC
433 bool "Rockchip SFC Driver"
John Wattsa94e31c2024-04-27 15:40:43 +1000434 select BOUNCE_BUFFER
Chris Morgan3afbc762021-08-05 16:26:38 +0800435 help
436 Enable the Rockchip SFC Driver for SPI NOR flash. This device is
437 a limited purpose SPI controller for driving NOR flash on certain
438 Rockchip SoCs. This uses driver model and requires a device tree
439 binding to operate.
440
Simon Glassd1c13772015-09-01 19:19:37 -0600441config ROCKCHIP_SPI
442 bool "Rockchip SPI driver"
443 help
444 Enable the Rockchip SPI driver, used to access SPI NOR flash and
445 other SPI peripherals (such as the Chrome OS EC) on Rockchip SoCs.
446 This uses driver model and requires a device tree binding to
447 operate.
448
Simon Glass4b322d32015-03-06 13:19:05 -0700449config SANDBOX_SPI
450 bool "Sandbox SPI driver"
451 depends on SANDBOX && DM
452 help
453 Enable SPI support for sandbox. This is an emulation of a real SPI
454 bus. Devices can be attached to the bus using the device tree
455 which specifies the driver to use. As an example, see this device
456 tree fragment from sandbox.dts. It shows that the SPI bus has a
457 single flash device on chip select 0 which is emulated by the driver
458 for "sandbox,spi-flash", which is in drivers/mtd/spi/sandbox.c.
459
460 spi@0 {
461 #address-cells = <1>;
462 #size-cells = <0>;
463 reg = <0>;
464 compatible = "sandbox,spi";
465 cs-gpios = <0>, <&gpio_a 0>;
466 flash@0 {
467 reg = <0>;
Simon Glass7e368682019-05-18 11:59:49 -0600468 compatible = "spansion,m25p16", "jedec,spi-nor";
Simon Glass4b322d32015-03-06 13:19:05 -0700469 spi-max-frequency = <40000000>;
470 sandbox,filename = "spi.bin";
471 };
Jagan Teki15a932c2015-06-27 22:37:00 +0530472 };
Jagan Tekidd32f512015-06-27 04:41:11 +0530473
Tom Rini8f0dfd42022-12-02 16:42:43 -0500474config SANDBOX_SPI_MAX_BUS
475 int
476 depends on SANDBOX
477 default 1
478
479config SANDBOX_SPI_MAX_CS
480 int
481 depends on SANDBOX
482 default 10
483
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800484config SPI_ASPEED_SMC
485 bool "ASPEED SPI flash controller driver"
486 depends on DM_SPI && SPI_MEM
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800487 help
488 Enable ASPEED SPI flash controller driver for AST2500
489 and AST2600 SoCs.
490
Bhargav Shah3c34f752019-07-17 04:23:43 +0000491config SPI_SIFIVE
492 bool "SiFive SPI driver"
493 help
494 This driver supports the SiFive SPI IP. If unsure say N.
495 Enable the SiFive SPI controller driver.
496
497 The SiFive SPI controller driver is found on various SiFive SoCs.
498
Jagan Tekie5762442020-05-26 08:34:37 +0530499config SOFT_SPI
500 bool "Soft SPI driver"
501 help
502 Enable Soft SPI driver. This driver is to use GPIO simulate
503 the SPI protocol.
504
Kunihiko Hayashi7509ea12022-11-29 11:17:09 +0900505config SPI_SN_F_OSPI
506 tristate "Socionext F_OSPI SPI flash controller"
507 depends on SPI_MEM
508 help
509 This enables support for the Socionext F_OSPI controller
510 for connecting an SPI flash memory over up to 8-bit wide bus.
511 It supports indirect access mode only.
512
Jagan Teki7b68ef42019-02-27 20:02:13 +0530513config SPI_SUNXI
514 bool "Allwinner SoC SPI controllers"
Jagan Teki9f6eafd2019-10-16 18:05:56 +0530515 default ARCH_SUNXI
Jagan Teki7b68ef42019-02-27 20:02:13 +0530516 help
517 Enable the Allwinner SoC SPi controller driver.
518
519 Same controller driver can reuse in all Allwinner SoC variants.
520
Michael Kurz337ff2a2017-01-22 16:04:30 +0100521config STM32_QSPI
522 bool "STM32F7 QSPI driver"
Patrice Chotardd43c4962019-04-30 16:09:18 +0200523 depends on STM32F4 || STM32F7 || ARCH_STM32MP
Michael Kurz337ff2a2017-01-22 16:04:30 +0100524 help
525 Enable the STM32F7 Quad-SPI (QSPI) driver. This driver can be
526 used to access the SPI NOR flash chips on platforms embedding
527 this ST IP core.
528
Patrice Chotard0b08bf82019-04-30 18:08:28 +0200529config STM32_SPI
530 bool "STM32 SPI driver"
531 depends on ARCH_STM32MP
532 help
533 Enable the STM32 Serial Peripheral Interface (SPI) driver for STM32MP
534 SoCs. This uses driver model and requires a device tree binding to
535 operate.
536
Jagan Teki7977d662015-06-27 15:57:53 +0530537config TEGRA114_SPI
538 bool "nVidia Tegra114 SPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000539 depends on ARCH_TEGRA
Jagan Teki7977d662015-06-27 15:57:53 +0530540 help
541 Enable the nVidia Tegra114 SPI driver. This driver can be used to
542 access the SPI NOR flash on platforms embedding this nVidia Tegra114
543 IP core.
544
545 This controller is different than the older SoCs SPI controller and
546 also register interface get changed with this controller.
547
Jagan Tekia900d402015-06-27 16:04:05 +0530548config TEGRA20_SFLASH
549 bool "nVidia Tegra20 Serial Flash controller driver"
John Watts60dcbc22024-04-27 15:40:40 +1000550 depends on ARCH_TEGRA
Jagan Tekia900d402015-06-27 16:04:05 +0530551 help
552 Enable the nVidia Tegra20 Serial Flash controller driver. This driver
553 can be used to access the SPI NOR flash on platforms embedding this
554 nVidia Tegra20 IP core.
555
Jagan Teki271aa562015-06-27 16:07:54 +0530556config TEGRA20_SLINK
557 bool "nVidia Tegra20/Tegra30 SLINK driver"
John Watts60dcbc22024-04-27 15:40:40 +1000558 depends on ARCH_TEGRA
Jagan Teki271aa562015-06-27 16:07:54 +0530559 help
560 Enable the nVidia Tegra20/Tegra30 SLINK driver. This driver can
561 be used to access the SPI NOR flash on platforms embedding this
562 nVidia Tegra20/Tegra30 IP cores.
563
Tom Warren5fb0c842015-10-12 14:50:54 -0700564config TEGRA210_QSPI
565 bool "nVidia Tegra210 QSPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000566 depends on ARCH_TEGRA
Tom Warren5fb0c842015-10-12 14:50:54 -0700567 help
568 Enable the Tegra Quad-SPI (QSPI) driver for T210. This driver
569 be used to access SPI chips on platforms embedding this
570 NVIDIA Tegra210 IP core.
571
Vignesh Raghavendraf3603b82019-04-16 21:31:59 +0530572config TI_QSPI
573 bool "TI QSPI driver"
574 imply TI_EDMA3
John Watts60dcbc22024-04-27 15:40:40 +1000575 depends on ARCH_OMAP2PLUS
Vignesh Raghavendraf3603b82019-04-16 21:31:59 +0530576 help
577 Enable the TI Quad-SPI (QSPI) driver for DRA7xx and AM43xx evms.
578 This driver support spi flash single, quad and memory reads.
579
Kunihiko Hayashi7a40ec02019-07-05 10:03:18 +0900580config UNIPHIER_SPI
581 bool "Socionext UniPhier SPI driver"
582 depends on ARCH_UNIPHIER
583 help
584 Enable the Socionext UniPhier SPI driver. This driver can
585 be used to access SPI chips on platforms embedding this
586 UniPhier IP core.
587
Jagan Tekicd70d7d2015-06-27 04:32:43 +0530588config XILINX_SPI
589 bool "Xilinx SPI driver"
Jagan Tekicd70d7d2015-06-27 04:32:43 +0530590 help
591 Enable the Xilinx SPI driver from the Xilinx EDK. This SPI
592 controller support 8 bit SPI transfers only, with or w/o FIFO.
593 For more info on Xilinx SPI Register Definitions and Overview
594 see driver file - drivers/spi/xilinx_spi.c
595
Jagan Tekicad526f2015-06-27 00:51:38 +0530596config ZYNQ_SPI
597 bool "Zynq SPI driver"
Jagan Tekicad526f2015-06-27 00:51:38 +0530598 help
599 Enable the Zynq SPI driver. This driver can be used to
600 access the SPI NOR flash on platforms embedding this Zynq
601 SPI IP core.
Jagan Tekibfd3f8b2015-06-27 22:35:14 +0530602
Jagan Tekif2e1c412015-08-16 00:19:38 +0530603config ZYNQ_QSPI
604 bool "Zynq QSPI driver"
Vignesh R1f66bca2019-02-05 11:29:28 +0530605 imply SPI_FLASH_BAR
Jagan Tekif2e1c412015-08-16 00:19:38 +0530606 help
607 Enable the Zynq Quad-SPI (QSPI) driver. This driver can be
608 used to access the SPI NOR flash on platforms embedding this
609 Zynq QSPI IP core. This IP is used to connect the flash in
610 4-bit qspi, 8-bit dual stacked and shared 4-bit dual parallel.
611
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530612config ZYNQMP_GQSPI
613 bool "Configure ZynqMP Generic QSPI"
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530614 help
615 This option is used to enable ZynqMP QSPI controller driver which
616 is used to communicate with qspi flash devices.
617
Jagan Teki15a932c2015-06-27 22:37:00 +0530618endif # if DM_SPI
619
Jagan Tekia0497a32015-06-27 15:21:36 +0530620config FSL_ESPI
621 bool "Freescale eSPI driver"
Corentin Guilleviccffcee92023-03-24 10:54:19 +0100622 depends on MPC85xx
Xiaowei Bao72817cd2019-10-31 14:34:40 +0800623 imply SPI_FLASH_BAR
Jagan Tekia0497a32015-06-27 15:21:36 +0530624 help
625 Enable the Freescale eSPI driver. This driver can be used to
626 access the SPI interface and SPI NOR flash on platforms embedding
627 this Freescale eSPI IP core.
628
Tuomas Tynkkynenfa8fdfd2018-02-07 02:42:17 +0200629config SH_QSPI
630 bool "Renesas Quad SPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000631 depends on ARCH_RENESAS
Tuomas Tynkkynenfa8fdfd2018-02-07 02:42:17 +0200632 help
633 Enable the Renesas Quad SPI controller driver. This driver can be
634 used on Renesas SoCs.
635
Tuomas Tynkkynend3958792018-02-07 02:42:19 +0200636config MXC_SPI
637 bool "MXC SPI Driver"
John Watts60dcbc22024-04-27 15:40:40 +1000638 depends on MACH_IMX
Tuomas Tynkkynend3958792018-02-07 02:42:19 +0200639 help
640 Enable the MXC SPI controller driver. This driver can be used
641 on various i.MX SoCs such as i.MX31/35/51/6/7.
642
Jassi Brar717bab22021-06-04 18:44:27 +0900643config SYNQUACER_SPI
644 bool "Socionext SynQuacer HS-SPI driver"
645 depends on ARCH_SYNQUACER
646 help
647 Enable the Socionext HS-SPI driver for SynQuacer. This driver can
648 be used to access the SPI interface and SPI NOR flash on platforms
649 embedding this HS-SPI IP core.
650
Adam Ford4e96ff82018-04-15 13:51:26 -0400651endif # menu "SPI Support"