blob: 846a93a4e5780522a9f36868dcd02afe3361f44a [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
Masahiro Yamada57ad8ee2014-10-23 22:26:09 +090023config DM_SPI
24 bool "Enable Driver Model for SPI drivers"
25 depends on DM
26 help
Simon Glassd8b771d2015-02-05 21:41:35 -070027 Enable driver model for SPI. The SPI slave interface
28 (spi_setup_slave(), spi_xfer(), etc.) is then implemented by
29 the SPI uclass. Drivers provide methods to access the SPI
30 buses that they control. The uclass interface is defined in
31 include/spi.h. The existing spi_slave structure is attached
32 as 'parent data' to every slave on each bus. Slaves
33 typically use driver-private data instead of extending the
34 spi_slave structure.
Simon Glass4b322d32015-03-06 13:19:05 -070035
Boris Brezillon32473fe2018-08-16 17:30:11 +020036config SPI_MEM
37 bool "SPI memory extension"
38 help
39 Enable this option if you want to enable the SPI memory extension.
40 This extension is meant to simplify interaction with SPI memories
41 by providing an high-level interface to send memory-like commands.
42
Chin-Ting Kuoa891be82022-08-19 17:01:08 +080043config SPI_DIRMAP
44 bool "SPI direct mapping"
45 depends on SPI_MEM
46 help
47 Enable the SPI direct mapping API. Most modern SPI controllers can
48 directly map a SPI memory (or a portion of the SPI memory) in the CPU
49 address space. Most of the time this brings significant performance
50 improvements as it automates the whole process of sending SPI memory
51 operations every time a new region is accessed.
52
Vignesh R4e341d32019-02-05 11:29:15 +053053if DM_SPI
54
Nathan Barrett-Morrison88720e72025-02-26 12:30:33 -050055config ADI_SPI3
56 bool "Enable ADI SPI Driver"
57 depends on ARCH_SC5XX
58 help
59 Enable the ADI (Analog Devices) SPI controller driver. This
60 driver enables the support for SC5XX spi controller.
61
Thomas Chouc5899542015-10-14 08:33:34 +080062config ALTERA_SPI
63 bool "Altera SPI driver"
64 help
65 Enable the Altera SPI driver. This driver can be used to
66 access the SPI NOR flash on platforms embedding this Altera
67 IP core. Please find details on the "Embedded Peripherals IP
68 User Guide" of Altera.
69
Mark Kettenis0c3e9242022-01-23 16:48:12 +010070config APPLE_SPI
71 bool "Apple SPI driver"
72 default y if ARCH_APPLE
73 help
74 Enable the Apple SPI driver. This driver can be used to
75 access the SPI flash and keyboard on machines based on Apple SoCs.
76
Jagan Teki353dffb2018-03-07 10:33:33 +053077config ATCSPI200_SPI
78 bool "Andestech ATCSPI200 SPI driver"
79 help
80 Enable the Andestech ATCSPI200 SPI driver. This driver can be
81 used to access the SPI flash on AE3XX and AE250 platforms embedding
82 this Andestech IP core.
83
Wills Wangf5021482016-03-16 16:59:58 +080084config ATH79_SPI
85 bool "Atheros SPI driver"
86 depends on ARCH_ATH79
87 help
88 Enable the Atheros ar7xxx/ar9xxx SoC SPI driver, it was used
89 to access SPI NOR flash and other SPI peripherals. This driver
90 uses driver model and requires a device tree binding to operate.
91 please refer to doc/device-tree-bindings/spi/spi-ath79.txt.
92
Tudor Ambarus88151bb2019-06-18 08:51:50 +000093config ATMEL_QSPI
94 bool "Atmel Quad SPI Controller"
95 depends on ARCH_AT91
96 help
97 Enable the Atmel Quad SPI controller in master mode. This driver
98 does not support generic SPI. The implementation supports only the
99 spi-mem interface.
100
Wenyou Yangda8ee982016-10-28 14:17:49 +0800101config ATMEL_SPI
102 bool "Atmel SPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000103 depends on ARCH_AT91
Jagan Teki1d831b62018-03-14 18:46:44 +0530104 default y if ARCH_AT91
Wenyou Yangda8ee982016-10-28 14:17:49 +0800105 help
106 This enables driver for the Atmel SPI Controller, present on
Andy Shevchenko8cb5cdd2017-07-05 16:25:22 +0300107 many AT91 (ARM) chips. This driver can be used to access
108 the SPI Flash, such as AT25DF321.
Wenyou Yangda8ee982016-10-28 14:17:49 +0800109
Álvaro Fernández Rojas55d96ec2018-01-20 02:13:38 +0100110config BCM63XX_HSSPI
111 bool "BCM63XX HSSPI driver"
William Zhang96c65fa2023-06-07 16:37:01 -0700112 depends on (ARCH_BMIPS || ARCH_BCMBCA)
Álvaro Fernández Rojas55d96ec2018-01-20 02:13:38 +0100113 help
William Zhang96c65fa2023-06-07 16:37:01 -0700114 Enable the BCM63XX HSSPI driver. This driver can be used to
Álvaro Fernández Rojas55d96ec2018-01-20 02:13:38 +0100115 access the SPI NOR flash on platforms embedding this Broadcom
116 SPI core.
117
William Zhang7ff58552023-06-07 16:37:05 -0700118config BCMBCA_HSSPI
119 bool "BCMBCA HSSPI driver"
120 depends on ARCH_BCMBCA && HAVE_SPI_CS_CTRL
121 help
122 This enables support for the High Speed SPI controller present on
123 newer Broadcom BCMBCA SoCs. These SoCs include an updated SPI controller
124 that adds the capability to allow the driver to control chip select
125 explicitly.
126
Álvaro Fernández Rojascc243c62018-01-23 17:14:58 +0100127config BCM63XX_SPI
128 bool "BCM6348 SPI driver"
129 depends on ARCH_BMIPS
130 help
131 Enable the BCM6348/BCM6358 SPI driver. This driver can be used to
132 access the SPI NOR flash on platforms embedding these Broadcom
133 SPI cores.
134
Thomas Fitzsimmons919646d2018-06-08 17:59:45 -0400135config BCMSTB_SPI
136 bool "BCMSTB SPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000137 depends on ARCH_BCMSTB
Thomas Fitzsimmons919646d2018-06-08 17:59:45 -0400138 help
139 Enable the Broadcom set-top box SPI driver. This driver can
140 be used to access the SPI flash on platforms embedding this
141 Broadcom SPI core.
142
Pengpeng Chen8f04b522020-07-30 12:52:45 -0700143config CORTINA_SFLASH
144 bool "Cortina-Access Serial Flash controller driver"
145 depends on DM_SPI && SPI_MEM
146 help
147 Enable the Cortina-Access Serial Flash controller driver. This driver
148 can be used to access the SPI NOR/NAND flash on platforms embedding this
149 Cortina-Access IP core.
150
Jagan Teki15a932c2015-06-27 22:37:00 +0530151config CADENCE_QSPI
152 bool "Cadence QSPI driver"
153 help
154 Enable the Cadence Quad-SPI (QSPI) driver. This driver can be
155 used to access the SPI NOR flash on platforms embedding this
156 Cadence IP core.
157
Tom Rini3fb5b2f2022-03-30 18:07:23 -0400158config HAS_CQSPI_REF_CLK
159 bool "Cadence QSPI static reference clock"
160 depends on CADENCE_QSPI
161
162config CQSPI_REF_CLK
163 int "Cadence QSPI reference clock value in Hz"
164 depends on HAS_CQSPI_REF_CLK
165
T Karthik Reddy73701e72022-05-12 04:05:32 -0600166config CADENCE_OSPI_VERSAL
167 bool "Configure Versal OSPI"
Michal Simek71bfd392024-05-29 16:48:01 +0200168 depends on (ARCH_VERSAL || ARCH_VERSAL_NET || ARCH_VERSAL2) && CADENCE_QSPI
T Karthik Reddy73701e72022-05-12 04:05:32 -0600169 imply DM_GPIO
170 help
171 This option is used to enable Versal OSPI DMA operations which
172 are used for ospi flash read using cadence qspi controller.
173
Angelo Dureghello72e9be32019-03-13 21:46:46 +0100174config CF_SPI
175 bool "ColdFire SPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000176 depends on M68K
Angelo Dureghello72e9be32019-03-13 21:46:46 +0100177 help
178 Enable the ColdFire SPI driver. This driver can be used on
179 some m68k SoCs.
180
Kongyang Liu61c9f282024-04-20 15:08:23 +0800181config CV1800B_SPIF
182 bool "Sophgo cv1800b SPI Flash Controller driver"
183 depends on SPI_MEM
184 help
185 Enable the Sophgo cv1800b SPI Flash Controller driver. This driver
186 can be used to access the SPI NOR flash on platforms embedding this
187 Sophgo cv1800b IP core.
188
Jagan Teki97c18ed2020-05-26 13:34:26 +0530189config DAVINCI_SPI
190 bool "Davinci & Keystone SPI driver"
191 depends on ARCH_DAVINCI || ARCH_KEYSTONE
192 help
193 Enable the Davinci SPI driver
194
Jagan Teki15a932c2015-06-27 22:37:00 +0530195config DESIGNWARE_SPI
196 bool "Designware SPI driver"
197 help
198 Enable the Designware SPI driver. This driver can be used to
199 access the SPI NOR flash on platforms embedding this Designware
200 IP core.
201
Jagan Teki6274bf92015-06-27 15:32:19 +0530202config EXYNOS_SPI
203 bool "Samsung Exynos SPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000204 depends on ARCH_EXYNOS
Jagan Teki6274bf92015-06-27 15:32:19 +0530205 help
206 Enable the Samsung Exynos SPI driver. This driver can be used to
207 access the SPI NOR flash on platforms embedding this Samsung
208 Exynos IP core.
209
Jagan Tekiae30c022015-06-27 14:17:06 +0530210config FSL_DSPI
211 bool "Freescale DSPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000212 depends on FSL_LAYERSCAPE || ARCH_VF610 || ARCH_LS1021A || ARCH_LS1028A
Jagan Tekiae30c022015-06-27 14:17:06 +0530213 help
214 Enable the Freescale DSPI driver. This driver can be used to
215 access the SPI NOR flash and SPI Data flash on platforms embedding
216 this Freescale DSPI IP core. LS102xA and Colibri VF50/VF61 platforms
217 use this driver.
218
Jagan Teki72cedd42020-05-26 00:24:19 +0530219config FSL_QSPI
220 bool "Freescale QSPI driver"
221 imply SPI_FLASH_BAR
222 help
223 Enable the Freescale Quad-SPI (QSPI) driver. This driver can be
224 used to access the SPI NOR flash on platforms embedding this
225 Freescale IP core.
226
Ye Lid7e3c9a2020-06-09 00:59:06 -0700227config FSL_QSPI_AHB_FULL_MAP
228 bool "Use full AHB memory map space"
229 depends on FSL_QSPI
230 default y if ARCH_MX6 || ARCH_MX7 || ARCH_MX7ULP || ARCH_IMX8M
231 help
232 Enable the Freescale QSPI driver to use full AHB memory map space for
233 flash access.
234
Nick Hawkins2ccea3a2022-06-08 16:21:36 -0500235config GXP_SPI
236 bool "SPI driver for GXP"
237 imply SPI_FLASH_BAR
238 help
239 Enable support for SPI on GXP.
240
Jagan Teki3872b7c2015-06-27 15:43:27 +0530241config ICH_SPI
242 bool "Intel ICH SPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000243 depends on X86
Jagan Teki3872b7c2015-06-27 15:43:27 +0530244 help
245 Enable the Intel ICH SPI driver. This driver can be used to
246 access the SPI NOR flash on platforms embedding this Intel
247 ICH IP core.
248
Rayagonda Kokatanur1969f2b2022-02-09 14:16:13 -0800249config IPROC_QSPI
250 bool "Broadcom iProc QSPI Flash Controller driver"
251 help
252 Enable Broadcom iProc QSPI Flash Controller driver.
253 This driver can be used to access the SPI NOR flash.
254
Bhargav Shah83a26312020-06-18 23:15:13 +0530255config KIRKWOOD_SPI
256 bool "Marvell Kirkwood SPI Driver"
John Watts60dcbc22024-04-27 15:40:40 +1000257 depends on ARCH_KIRKWOOD || ARCH_MVEBU
Bhargav Shah83a26312020-06-18 23:15:13 +0530258 help
259 Enable support for SPI on various Marvell SoCs, such as
260 Kirkwood and Armada 375.
261
Neil Armstrong5c162172018-11-22 11:01:05 +0100262config MESON_SPIFC
263 bool "Amlogic Meson SPI Flash Controller driver"
264 depends on ARCH_MESON
265 help
266 Enable the Amlogic Meson SPI Flash Controller SPIFC) driver.
267 This driver can be used to access the SPI NOR flash chips on
268 Amlogic Meson SoCs.
269
Padmarao Begari32678b02022-10-27 11:32:01 +0530270config MICROCHIP_COREQSPI
271 bool "Microchip FPGA QSPI Controller driver"
272 help
273 Enable the QSPI driver for Microchip FPGA QSPI controllers.
274 This driver can be used on Polarfire SoC.
275
Igor Prusov3f027752023-10-25 01:51:39 +0300276config MESON_SPIFC_A1
277 bool "Amlogic Meson A1 SPI Flash Controller driver"
278 depends on ARCH_MESON
279 help
280 Enable the Amlogic A1 SPI Flash Controller (SPIFC) driver.
281 This driver can be used to access the SPI NOR/NAND flash chips
282 with STR mode frequency up to 98MHz. Dual and quad modes are
283 supported by controller.
284
Christophe Leroy847362b2018-11-21 08:51:57 +0000285config MPC8XX_SPI
286 bool "MPC8XX SPI Driver"
Christophe Leroybc6a4572024-04-02 19:20:07 +0200287 depends on MPC8xx && DM_GPIO
Christophe Leroy847362b2018-11-21 08:51:57 +0000288 help
289 Enable support for SPI on MPC8XX
290
Jagan Teki52515d52019-04-29 01:58:53 +0530291config MPC8XXX_SPI
292 bool "MPC8XXX SPI Driver"
John Watts60dcbc22024-04-27 15:40:40 +1000293 depends on MPC83xx || MPC85xx
Jagan Teki52515d52019-04-29 01:58:53 +0530294 help
295 Enable support for SPI on the MPC8XXX PowerPC SoCs.
296
Jagan Teki72cedd42020-05-26 00:24:19 +0530297config MSCC_BB_SPI
298 bool "MSCC bitbang SPI driver"
299 depends on SOC_VCOREIII
300 help
301 Enable MSCC bitbang SPI driver. This driver can be used on
302 MSCC SOCs.
303
developer2dfdc3f2020-11-12 16:36:42 +0800304config MT7620_SPI
305 bool "MediaTek MT7620 SPI driver"
306 depends on SOC_MT7620
307 help
308 Enable the MT7620 SPI driver. This driver can be used to access
309 generic SPI devices on MediaTek MT7620 SoC.
310
Stefan Roese8adb8cb2018-08-16 10:48:48 +0200311config MT7621_SPI
312 bool "MediaTek MT7621 SPI driver"
developer005064e2022-05-20 11:23:08 +0800313 depends on SOC_MT7621 || SOC_MT7628
Stefan Roese8adb8cb2018-08-16 10:48:48 +0200314 help
315 Enable the MT7621 SPI driver. This driver can be used to access
316 the SPI NOR flash on platforms embedding this Ralink / MediaTek
317 SPI core, like MT7621/7628/7688.
318
developerf33cf3c2021-01-20 15:31:33 +0800319config MTK_SNOR
320 bool "Mediatek SPI-NOR controller driver"
321 depends on SPI_MEM
322 help
323 Enable the Mediatek SPINOR controller driver. This driver has
324 better read/write performance with NOR.
325
developer8a78b4d2019-07-22 17:09:01 +0530326config MTK_SNFI_SPI
327 bool "Mediatek SPI memory controller driver"
328 depends on SPI_MEM
329 help
330 Enable the Mediatek SPI memory controller driver. This driver is
331 originally based on the MediaTek SNFI IP core. It can only be
332 used to access SPI memory devices like SPI-NOR or SPI-NAND on
333 platforms embedding this IP core, like MT7622/M7629.
334
developer24202202022-09-09 19:59:45 +0800335config MTK_SPIM
336 bool "Mediatek SPI-MEM master controller driver"
337 depends on SPI_MEM
338 help
339 Enable MediaTek SPI-MEM master controller driver. This driver mainly
340 supports SPI flashes. You can use single, dual or quad mode
341 transmission on this controller.
342
Stefan Roese9ec1c782016-05-19 15:56:44 +0200343config MVEBU_A3700_SPI
344 bool "Marvell Armada 3700 SPI driver"
Marek Behún0afd9342018-04-24 17:21:26 +0200345 select CLK_ARMADA_3720
Stefan Roese9ec1c782016-05-19 15:56:44 +0200346 help
347 Enable the Marvell Armada 3700 SPI driver. This driver can be
348 used to access the SPI NOR flash on platforms embedding this
349 Marvell IP core.
350
Jagan Teki2174d852020-05-25 23:24:23 +0530351config MXS_SPI
352 bool "MXS SPI Driver"
John Watts60dcbc22024-04-27 15:40:40 +1000353 depends on MACH_IMX
Jagan Teki2174d852020-05-25 23:24:23 +0530354 help
355 Enable the MXS SPI controller driver. This driver can be used
356 on the i.MX23 and i.MX28 SoCs.
357
Zhengxunc93136b2021-06-23 17:15:15 +0000358config SPI_MXIC
359 bool "Macronix MX25F0A SPI controller"
360 help
361 Enable the Macronix MX25F0A SPI controller driver. This driver
362 can be used to access the SPI flash on platforms embedding
363 this Macronix IP core.
364
Jim Liu464b7cd2022-04-26 16:52:45 +0800365config NPCM_FIU_SPI
366 bool "FIU driver for Nuvoton NPCM SoC"
367 help
368 This enables support for the Flash Interface Unit SPI controller
369 in master mode.
370
Jim Liu68d29122022-05-31 18:14:02 +0800371config NPCM_PSPI
372 bool "PSPI driver for Nuvoton NPCM SoC"
373 help
374 PSPI driver for NPCM SoC
375
Michael Walled3967f32019-12-18 00:09:58 +0100376config NXP_FSPI
377 bool "NXP FlexSPI driver"
378 depends on SPI_MEM
379 help
380 Enable the NXP FlexSPI (FSPI) driver. This driver can be used to
381 access the SPI NOR flash on platforms embedding this NXP IP core.
382
Suneel Garapati41717772020-07-30 13:56:18 +0200383config OCTEON_SPI
384 bool "Octeon SPI driver"
Simon Glass3933d292021-08-01 18:54:44 -0600385 depends on ARCH_OCTEON || ARCH_OCTEONTX || ARCH_OCTEONTX2
Suneel Garapati41717772020-07-30 13:56:18 +0200386 help
387 Enable the Octeon SPI driver. This driver can be used to
388 access the SPI NOR flash on Octeon II/III and OcteonTX/TX2
389 SoC platforms.
390
Jagan Teki99899c52020-05-27 18:26:36 +0530391config OMAP3_SPI
392 bool "McSPI driver for OMAP"
393 help
394 SPI master controller for OMAP24XX and later Multichannel SPI
395 (McSPI). This driver be used to access SPI chips on platforms
396 embedding this OMAP3 McSPI IP core.
397
Purna Chandra Mandalffa54422016-06-02 14:26:08 +0530398config PIC32_SPI
399 bool "Microchip PIC32 SPI driver"
400 depends on MACH_PIC32
401 help
402 Enable the Microchip PIC32 SPI driver. This driver can be used
403 to access the SPI NOR flash, MMC-over-SPI on platforms based on
404 Microchip PIC32 family devices.
405
Quentin Schulz3add62d2018-08-31 16:28:29 +0200406config PL022_SPI
407 bool "ARM AMBA PL022 SSP controller driver"
408 depends on ARM
409 help
410 This selects the ARM(R) AMBA(R) PrimeCell PL022 SSP
411 controller. If you have an embedded system with an AMBA(R)
412 bus and a PL022 controller, say Y or M here.
413
Robert Markoe4b17a72020-10-08 22:05:09 +0200414config SPI_QUP
415 bool "Qualcomm SPI controller with QUP interface"
416 depends on ARCH_IPQ40XX
417 help
418 Qualcomm Universal Peripheral (QUP) core is an AHB slave that
419 provides a common data path (an output FIFO and an input FIFO)
420 for serial peripheral interface (SPI) mini-core. SPI in master
421 mode supports up to 50MHz, up to four chip selects, programmable
422 data path from 4 bits to 32 bits and numerous protocol variants.
423
Marek Vasut6ca967b2017-11-29 06:29:46 +0100424config RENESAS_RPC_SPI
425 bool "Renesas RPC SPI driver"
Marek Vasut47c4f502023-02-28 22:28:30 +0100426 depends on RCAR_64 || RZA1
Hai Pham64f3ca82022-08-25 10:32:56 +0700427 imply SPI_FLASH_SFDP_SUPPORT
Marek Vasut6ca967b2017-11-29 06:29:46 +0100428 help
429 Enable the Renesas RPC SPI driver, used to access SPI NOR flash
Marek Vasut81a505f2024-12-11 08:30:36 +0100430 on Renesas R-Car Gen3 SoCs. This uses driver model and requires a
Marek Vasut6ca967b2017-11-29 06:29:46 +0100431 device tree binding to operate.
432
Chris Morgan3afbc762021-08-05 16:26:38 +0800433config ROCKCHIP_SFC
434 bool "Rockchip SFC Driver"
John Wattsa94e31c2024-04-27 15:40:43 +1000435 select BOUNCE_BUFFER
Chris Morgan3afbc762021-08-05 16:26:38 +0800436 help
437 Enable the Rockchip SFC Driver for SPI NOR flash. This device is
438 a limited purpose SPI controller for driving NOR flash on certain
439 Rockchip SoCs. This uses driver model and requires a device tree
440 binding to operate.
441
Simon Glassd1c13772015-09-01 19:19:37 -0600442config ROCKCHIP_SPI
443 bool "Rockchip SPI driver"
444 help
445 Enable the Rockchip SPI driver, used to access SPI NOR flash and
446 other SPI peripherals (such as the Chrome OS EC) on Rockchip SoCs.
447 This uses driver model and requires a device tree binding to
448 operate.
449
Simon Glass4b322d32015-03-06 13:19:05 -0700450config SANDBOX_SPI
451 bool "Sandbox SPI driver"
452 depends on SANDBOX && DM
453 help
454 Enable SPI support for sandbox. This is an emulation of a real SPI
455 bus. Devices can be attached to the bus using the device tree
456 which specifies the driver to use. As an example, see this device
457 tree fragment from sandbox.dts. It shows that the SPI bus has a
458 single flash device on chip select 0 which is emulated by the driver
459 for "sandbox,spi-flash", which is in drivers/mtd/spi/sandbox.c.
460
461 spi@0 {
462 #address-cells = <1>;
463 #size-cells = <0>;
464 reg = <0>;
465 compatible = "sandbox,spi";
466 cs-gpios = <0>, <&gpio_a 0>;
467 flash@0 {
468 reg = <0>;
Simon Glass7e368682019-05-18 11:59:49 -0600469 compatible = "spansion,m25p16", "jedec,spi-nor";
Simon Glass4b322d32015-03-06 13:19:05 -0700470 spi-max-frequency = <40000000>;
471 sandbox,filename = "spi.bin";
472 };
Jagan Teki15a932c2015-06-27 22:37:00 +0530473 };
Jagan Tekidd32f512015-06-27 04:41:11 +0530474
Tom Rini8f0dfd42022-12-02 16:42:43 -0500475config SANDBOX_SPI_MAX_BUS
476 int
477 depends on SANDBOX
478 default 1
479
480config SANDBOX_SPI_MAX_CS
481 int
482 depends on SANDBOX
483 default 10
484
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800485config SPI_ASPEED_SMC
486 bool "ASPEED SPI flash controller driver"
487 depends on DM_SPI && SPI_MEM
Chin-Ting Kuo4d2caaf2022-08-19 17:01:04 +0800488 help
489 Enable ASPEED SPI flash controller driver for AST2500
490 and AST2600 SoCs.
491
Bhargav Shah3c34f752019-07-17 04:23:43 +0000492config SPI_SIFIVE
493 bool "SiFive SPI driver"
494 help
495 This driver supports the SiFive SPI IP. If unsure say N.
496 Enable the SiFive SPI controller driver.
497
498 The SiFive SPI controller driver is found on various SiFive SoCs.
499
Jagan Tekie5762442020-05-26 08:34:37 +0530500config SOFT_SPI
501 bool "Soft SPI driver"
502 help
503 Enable Soft SPI driver. This driver is to use GPIO simulate
504 the SPI protocol.
505
Kunihiko Hayashi7509ea12022-11-29 11:17:09 +0900506config SPI_SN_F_OSPI
507 tristate "Socionext F_OSPI SPI flash controller"
508 depends on SPI_MEM
509 help
510 This enables support for the Socionext F_OSPI controller
511 for connecting an SPI flash memory over up to 8-bit wide bus.
512 It supports indirect access mode only.
513
Jagan Teki7b68ef42019-02-27 20:02:13 +0530514config SPI_SUNXI
515 bool "Allwinner SoC SPI controllers"
Jagan Teki9f6eafd2019-10-16 18:05:56 +0530516 default ARCH_SUNXI
Jagan Teki7b68ef42019-02-27 20:02:13 +0530517 help
518 Enable the Allwinner SoC SPi controller driver.
519
520 Same controller driver can reuse in all Allwinner SoC variants.
521
Michael Kurz337ff2a2017-01-22 16:04:30 +0100522config STM32_QSPI
523 bool "STM32F7 QSPI driver"
Patrice Chotardd43c4962019-04-30 16:09:18 +0200524 depends on STM32F4 || STM32F7 || ARCH_STM32MP
Michael Kurz337ff2a2017-01-22 16:04:30 +0100525 help
526 Enable the STM32F7 Quad-SPI (QSPI) driver. This driver can be
527 used to access the SPI NOR flash chips on platforms embedding
528 this ST IP core.
529
Patrice Chotard0b08bf82019-04-30 18:08:28 +0200530config STM32_SPI
531 bool "STM32 SPI driver"
532 depends on ARCH_STM32MP
533 help
534 Enable the STM32 Serial Peripheral Interface (SPI) driver for STM32MP
535 SoCs. This uses driver model and requires a device tree binding to
536 operate.
537
Jagan Teki7977d662015-06-27 15:57:53 +0530538config TEGRA114_SPI
539 bool "nVidia Tegra114 SPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000540 depends on ARCH_TEGRA
Jagan Teki7977d662015-06-27 15:57:53 +0530541 help
542 Enable the nVidia Tegra114 SPI driver. This driver can be used to
543 access the SPI NOR flash on platforms embedding this nVidia Tegra114
544 IP core.
545
546 This controller is different than the older SoCs SPI controller and
547 also register interface get changed with this controller.
548
Jagan Tekia900d402015-06-27 16:04:05 +0530549config TEGRA20_SFLASH
550 bool "nVidia Tegra20 Serial Flash controller driver"
John Watts60dcbc22024-04-27 15:40:40 +1000551 depends on ARCH_TEGRA
Jagan Tekia900d402015-06-27 16:04:05 +0530552 help
553 Enable the nVidia Tegra20 Serial Flash controller driver. This driver
554 can be used to access the SPI NOR flash on platforms embedding this
555 nVidia Tegra20 IP core.
556
Jagan Teki271aa562015-06-27 16:07:54 +0530557config TEGRA20_SLINK
558 bool "nVidia Tegra20/Tegra30 SLINK driver"
John Watts60dcbc22024-04-27 15:40:40 +1000559 depends on ARCH_TEGRA
Jagan Teki271aa562015-06-27 16:07:54 +0530560 help
561 Enable the nVidia Tegra20/Tegra30 SLINK driver. This driver can
562 be used to access the SPI NOR flash on platforms embedding this
563 nVidia Tegra20/Tegra30 IP cores.
564
Tom Warren5fb0c842015-10-12 14:50:54 -0700565config TEGRA210_QSPI
566 bool "nVidia Tegra210 QSPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000567 depends on ARCH_TEGRA
Tom Warren5fb0c842015-10-12 14:50:54 -0700568 help
569 Enable the Tegra Quad-SPI (QSPI) driver for T210. This driver
570 be used to access SPI chips on platforms embedding this
571 NVIDIA Tegra210 IP core.
572
Vignesh Raghavendraf3603b82019-04-16 21:31:59 +0530573config TI_QSPI
574 bool "TI QSPI driver"
575 imply TI_EDMA3
John Watts60dcbc22024-04-27 15:40:40 +1000576 depends on ARCH_OMAP2PLUS
Vignesh Raghavendraf3603b82019-04-16 21:31:59 +0530577 help
578 Enable the TI Quad-SPI (QSPI) driver for DRA7xx and AM43xx evms.
579 This driver support spi flash single, quad and memory reads.
580
Kunihiko Hayashi7a40ec02019-07-05 10:03:18 +0900581config UNIPHIER_SPI
582 bool "Socionext UniPhier SPI driver"
583 depends on ARCH_UNIPHIER
584 help
585 Enable the Socionext UniPhier SPI driver. This driver can
586 be used to access SPI chips on platforms embedding this
587 UniPhier IP core.
588
Jagan Tekicd70d7d2015-06-27 04:32:43 +0530589config XILINX_SPI
590 bool "Xilinx SPI driver"
Jagan Tekicd70d7d2015-06-27 04:32:43 +0530591 help
592 Enable the Xilinx SPI driver from the Xilinx EDK. This SPI
593 controller support 8 bit SPI transfers only, with or w/o FIFO.
594 For more info on Xilinx SPI Register Definitions and Overview
595 see driver file - drivers/spi/xilinx_spi.c
596
Jagan Tekicad526f2015-06-27 00:51:38 +0530597config ZYNQ_SPI
598 bool "Zynq SPI driver"
Jagan Tekicad526f2015-06-27 00:51:38 +0530599 help
600 Enable the Zynq SPI driver. This driver can be used to
601 access the SPI NOR flash on platforms embedding this Zynq
602 SPI IP core.
Jagan Tekibfd3f8b2015-06-27 22:35:14 +0530603
Jagan Tekif2e1c412015-08-16 00:19:38 +0530604config ZYNQ_QSPI
605 bool "Zynq QSPI driver"
Vignesh R1f66bca2019-02-05 11:29:28 +0530606 imply SPI_FLASH_BAR
Jagan Tekif2e1c412015-08-16 00:19:38 +0530607 help
608 Enable the Zynq Quad-SPI (QSPI) driver. This driver can be
609 used to access the SPI NOR flash on platforms embedding this
610 Zynq QSPI IP core. This IP is used to connect the flash in
611 4-bit qspi, 8-bit dual stacked and shared 4-bit dual parallel.
612
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530613config ZYNQMP_GQSPI
614 bool "Configure ZynqMP Generic QSPI"
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530615 help
616 This option is used to enable ZynqMP QSPI controller driver which
617 is used to communicate with qspi flash devices.
618
Marek Vasut41bd9232024-10-26 22:16:25 +0200619config SPI_STACKED_PARALLEL
620 bool "Enable support for stacked or parallel memories"
621 help
622 Enable support for stacked/or parallel memories. This functionality
623 may appear on Xilinx hardware. By default this is disabled.
624
Jagan Teki15a932c2015-06-27 22:37:00 +0530625endif # if DM_SPI
626
Jagan Tekia0497a32015-06-27 15:21:36 +0530627config FSL_ESPI
628 bool "Freescale eSPI driver"
Corentin Guilleviccffcee92023-03-24 10:54:19 +0100629 depends on MPC85xx
Xiaowei Bao72817cd2019-10-31 14:34:40 +0800630 imply SPI_FLASH_BAR
Jagan Tekia0497a32015-06-27 15:21:36 +0530631 help
632 Enable the Freescale eSPI driver. This driver can be used to
633 access the SPI interface and SPI NOR flash on platforms embedding
634 this Freescale eSPI IP core.
635
Tuomas Tynkkynenfa8fdfd2018-02-07 02:42:17 +0200636config SH_QSPI
637 bool "Renesas Quad SPI driver"
John Watts60dcbc22024-04-27 15:40:40 +1000638 depends on ARCH_RENESAS
Tuomas Tynkkynenfa8fdfd2018-02-07 02:42:17 +0200639 help
640 Enable the Renesas Quad SPI controller driver. This driver can be
641 used on Renesas SoCs.
642
Tuomas Tynkkynend3958792018-02-07 02:42:19 +0200643config MXC_SPI
644 bool "MXC SPI Driver"
John Watts60dcbc22024-04-27 15:40:40 +1000645 depends on MACH_IMX
Tuomas Tynkkynend3958792018-02-07 02:42:19 +0200646 help
647 Enable the MXC SPI controller driver. This driver can be used
648 on various i.MX SoCs such as i.MX31/35/51/6/7.
649
Jassi Brar717bab22021-06-04 18:44:27 +0900650config SYNQUACER_SPI
651 bool "Socionext SynQuacer HS-SPI driver"
652 depends on ARCH_SYNQUACER
653 help
654 Enable the Socionext HS-SPI driver for SynQuacer. This driver can
655 be used to access the SPI interface and SPI NOR flash on platforms
656 embedding this HS-SPI IP core.
657
Adam Ford4e96ff82018-04-15 13:51:26 -0400658endif # menu "SPI Support"