spi: remove forgotten CONFIG_SPI_BCM53XX
[linux-2.6-microblaze.git] / drivers / spi / Kconfig
1 #
2 # SPI driver configuration
3 #
4 menuconfig SPI
5         bool "SPI support"
6         depends on HAS_IOMEM
7         help
8           The "Serial Peripheral Interface" is a low level synchronous
9           protocol.  Chips that support SPI can have data transfer rates
10           up to several tens of Mbit/sec.  Chips are addressed with a
11           controller and a chipselect.  Most SPI slaves don't support
12           dynamic device discovery; some are even write-only or read-only.
13
14           SPI is widely used by microcontrollers to talk with sensors,
15           eeprom and flash memory, codecs and various other controller
16           chips, analog to digital (and d-to-a) converters, and more.
17           MMC and SD cards can be accessed using SPI protocol; and for
18           DataFlash cards used in MMC sockets, SPI must always be used.
19
20           SPI is one of a family of similar protocols using a four wire
21           interface (select, clock, data in, data out) including Microwire
22           (half duplex), SSP, SSI, and PSP.  This driver framework should
23           work with most such devices and controllers.
24
25 if SPI
26
27 config SPI_DEBUG
28         bool "Debug support for SPI drivers"
29         depends on DEBUG_KERNEL
30         help
31           Say "yes" to enable debug messaging (like dev_dbg and pr_debug),
32           sysfs, and debugfs support in SPI controller and protocol drivers.
33
34 #
35 # MASTER side ... talking to discrete SPI slave chips including microcontrollers
36 #
37
38 config SPI_MASTER
39 #       bool "SPI Master Support"
40         bool
41         default SPI
42         help
43           If your system has an master-capable SPI controller (which
44           provides the clock and chipselect), you can enable that
45           controller and the protocol drivers for the SPI slave chips
46           that are connected.
47
48 if SPI_MASTER
49
50 comment "SPI Master Controller Drivers"
51
52 config SPI_ALTERA
53         tristate "Altera SPI Controller"
54         help
55           This is the driver for the Altera SPI Controller.
56
57 config SPI_ATH79
58         tristate "Atheros AR71XX/AR724X/AR913X SPI controller driver"
59         depends on ATH79 && GPIOLIB
60         select SPI_BITBANG
61         help
62           This enables support for the SPI controller present on the
63           Atheros AR71XX/AR724X/AR913X SoCs.
64
65 config SPI_ARMADA_3700
66         tristate "Marvell Armada 3700 SPI Controller"
67         depends on (ARCH_MVEBU && OF) || COMPILE_TEST
68         help
69           This enables support for the SPI controller present on the
70           Marvell Armada 3700 SoCs.
71
72 config SPI_ATMEL
73         tristate "Atmel SPI Controller"
74         depends on ARCH_AT91 || COMPILE_TEST
75         help
76           This selects a driver for the Atmel SPI Controller, present on
77           many AT91 ARM chips.
78
79 config SPI_AU1550
80         tristate "Au1550/Au1200/Au1300 SPI Controller"
81         depends on MIPS_ALCHEMY
82         select SPI_BITBANG
83         help
84           If you say yes to this option, support will be included for the
85           PSC SPI controller found on Au1550, Au1200 and Au1300 series.
86
87 config SPI_AXI_SPI_ENGINE
88         tristate "Analog Devices AXI SPI Engine controller"
89         depends on HAS_IOMEM
90         help
91           This enables support for the Analog Devices AXI SPI Engine SPI controller.
92           It is part of the SPI Engine framework that is used in some Analog Devices
93           reference designs for FPGAs.
94
95 config SPI_BCM2835
96         tristate "BCM2835 SPI controller"
97         depends on GPIOLIB
98         depends on ARCH_BCM2835 || COMPILE_TEST
99         help
100           This selects a driver for the Broadcom BCM2835 SPI master.
101
102           The BCM2835 contains two types of SPI master controller; the
103           "universal SPI master", and the regular SPI controller. This driver
104           is for the regular SPI controller. Slave mode operation is not also
105           not supported.
106
107 config SPI_BCM2835AUX
108         tristate "BCM2835 SPI auxiliary controller"
109         depends on (ARCH_BCM2835 && GPIOLIB) || COMPILE_TEST
110         help
111           This selects a driver for the Broadcom BCM2835 SPI aux master.
112
113           The BCM2835 contains two types of SPI master controller; the
114           "universal SPI master", and the regular SPI controller.
115           This driver is for the universal/auxiliary SPI controller.
116
117 config SPI_BCM63XX
118         tristate "Broadcom BCM63xx SPI controller"
119         depends on BCM63XX || COMPILE_TEST
120         help
121           Enable support for the SPI controller on the Broadcom BCM63xx SoCs.
122
123 config SPI_BCM63XX_HSSPI
124         tristate "Broadcom BCM63XX HS SPI controller driver"
125         depends on BCM63XX || COMPILE_TEST
126         help
127           This enables support for the High Speed SPI controller present on
128           newer Broadcom BCM63XX SoCs.
129
130 config SPI_BCM_QSPI
131         tristate "Broadcom BSPI and MSPI controller support"
132         depends on ARCH_BRCMSTB || ARCH_BCM || ARCH_BCM_IPROC || \
133                         BMIPS_GENERIC || COMPILE_TEST
134         default ARCH_BCM_IPROC
135         help
136           Enables support for the Broadcom SPI flash and MSPI controller.
137           Select this option for any one of BRCMSTB, iProc NSP and NS2 SoCs
138           based platforms. This driver works for both SPI master for spi-nor
139           flash device as well as MSPI device.
140
141 config SPI_BITBANG
142         tristate "Utilities for Bitbanging SPI masters"
143         help
144           With a few GPIO pins, your system can bitbang the SPI protocol.
145           Select this to get SPI support through I/O pins (GPIO, parallel
146           port, etc).  Or, some systems' SPI master controller drivers use
147           this code to manage the per-word or per-transfer accesses to the
148           hardware shift registers.
149
150           This is library code, and is automatically selected by drivers that
151           need it.  You only need to select this explicitly to support driver
152           modules that aren't part of this kernel tree.
153
154 config SPI_BUTTERFLY
155         tristate "Parallel port adapter for AVR Butterfly (DEVELOPMENT)"
156         depends on PARPORT
157         select SPI_BITBANG
158         help
159           This uses a custom parallel port cable to connect to an AVR
160           Butterfly <http://www.atmel.com/products/avr/butterfly>, an
161           inexpensive battery powered microcontroller evaluation board.
162           This same cable can be used to flash new firmware.
163
164 config SPI_CADENCE
165         tristate "Cadence SPI controller"
166         help
167           This selects the Cadence SPI controller master driver
168           used by Xilinx Zynq and ZynqMP.
169
170 config SPI_CLPS711X
171         tristate "CLPS711X host SPI controller"
172         depends on ARCH_CLPS711X || COMPILE_TEST
173         help
174           This enables dedicated general purpose SPI/Microwire1-compatible
175           master mode interface (SSI1) for CLPS711X-based CPUs.
176
177 config SPI_COLDFIRE_QSPI
178         tristate "Freescale Coldfire QSPI controller"
179         depends on (M520x || M523x || M5249 || M525x || M527x || M528x || M532x)
180         help
181           This enables support for the Coldfire QSPI controller in master
182           mode.
183
184 config SPI_DAVINCI
185         tristate "Texas Instruments DaVinci/DA8x/OMAP-L/AM1x SoC SPI controller"
186         depends on ARCH_DAVINCI || ARCH_KEYSTONE
187         select SPI_BITBANG
188         help
189           SPI master controller for DaVinci/DA8x/OMAP-L/AM1x SPI modules.
190
191 config SPI_DESIGNWARE
192         tristate "DesignWare SPI controller core support"
193         help
194           general driver for SPI controller core from DesignWare
195
196 config SPI_DW_PCI
197         tristate "PCI interface driver for DW SPI core"
198         depends on SPI_DESIGNWARE && PCI
199
200 config SPI_DW_MID_DMA
201         bool "DMA support for DW SPI controller on Intel MID platform"
202         depends on SPI_DW_PCI && DW_DMAC_PCI
203
204 config SPI_DW_MMIO
205         tristate "Memory-mapped io interface driver for DW SPI core"
206         depends on SPI_DESIGNWARE
207
208 config SPI_DLN2
209        tristate "Diolan DLN-2 USB SPI adapter"
210        depends on MFD_DLN2
211        help
212          If you say yes to this option, support will be included for Diolan
213          DLN2, a USB to SPI interface.
214
215          This driver can also be built as a module.  If so, the module
216          will be called spi-dln2.
217
218 config SPI_EFM32
219         tristate "EFM32 SPI controller"
220         depends on OF && ARM && (ARCH_EFM32 || COMPILE_TEST)
221         select SPI_BITBANG
222         help
223           Driver for the spi controller found on Energy Micro's EFM32 SoCs.
224
225 config SPI_EP93XX
226         tristate "Cirrus Logic EP93xx SPI controller"
227         depends on ARCH_EP93XX || COMPILE_TEST
228         help
229           This enables using the Cirrus EP93xx SPI controller in master
230           mode.
231
232 config SPI_FALCON
233         bool "Falcon SPI controller support"
234         depends on SOC_FALCON
235         help
236           The external bus unit (EBU) found on the FALC-ON SoC has SPI
237           emulation that is designed for serial flash access. This driver
238           has only been tested with m25p80 type chips. The hardware has no
239           support for other types of SPI peripherals.
240
241 config SPI_FSL_LPSPI
242         tristate "Freescale i.MX LPSPI controller"
243         depends on ARCH_MXC || COMPILE_TEST
244         help
245           This enables Freescale i.MX LPSPI controllers in master mode.
246
247 config SPI_GPIO
248         tristate "GPIO-based bitbanging SPI Master"
249         depends on GPIOLIB || COMPILE_TEST
250         select SPI_BITBANG
251         help
252           This simple GPIO bitbanging SPI master uses the arch-neutral GPIO
253           interface to manage MOSI, MISO, SCK, and chipselect signals.  SPI
254           slaves connected to a bus using this driver are configured as usual,
255           except that the spi_board_info.controller_data holds the GPIO number
256           for the chipselect used by this controller driver.
257
258           Note that this driver often won't achieve even 1 Mbit/sec speeds,
259           making it unusually slow for SPI.  If your platform can inline
260           GPIO operations, you should be able to leverage that for better
261           speed with a custom version of this driver; see the source code.
262
263 config SPI_IMG_SPFI
264         tristate "IMG SPFI controller"
265         depends on MIPS || COMPILE_TEST
266         help
267           This enables support for the SPFI master controller found on
268           IMG SoCs.
269
270 config SPI_IMX
271         tristate "Freescale i.MX SPI controllers"
272         depends on ARCH_MXC || COMPILE_TEST
273         select SPI_BITBANG
274         help
275           This enables using the Freescale i.MX SPI controllers in master
276           mode.
277
278 config SPI_JCORE
279         tristate "J-Core SPI Master"
280         depends on OF && (SUPERH || COMPILE_TEST)
281         help
282           This enables support for the SPI master controller in the J-Core
283           synthesizable, open source SoC.
284
285 config SPI_LM70_LLP
286         tristate "Parallel port adapter for LM70 eval board (DEVELOPMENT)"
287         depends on PARPORT
288         select SPI_BITBANG
289         help
290           This driver supports the NS LM70 LLP Evaluation Board,
291           which interfaces to an LM70 temperature sensor using
292           a parallel port.
293
294 config SPI_LP8841_RTC
295         tristate "ICP DAS LP-8841 SPI Controller for RTC"
296         depends on MACH_PXA27X_DT || COMPILE_TEST
297         help
298           This driver provides an SPI master device to drive Maxim
299           DS-1302 real time clock.
300
301           Say N here unless you plan to run the kernel on an ICP DAS
302           LP-8x4x industrial computer.
303
304 config SPI_MPC52xx
305         tristate "Freescale MPC52xx SPI (non-PSC) controller support"
306         depends on PPC_MPC52xx
307         help
308           This drivers supports the MPC52xx SPI controller in master SPI
309           mode.
310
311 config SPI_MPC52xx_PSC
312         tristate "Freescale MPC52xx PSC SPI controller"
313         depends on PPC_MPC52xx
314         help
315           This enables using the Freescale MPC52xx Programmable Serial
316           Controller in master SPI mode.
317
318 config SPI_MPC512x_PSC
319         tristate "Freescale MPC512x PSC SPI controller"
320         depends on PPC_MPC512x
321         help
322           This enables using the Freescale MPC5121 Programmable Serial
323           Controller in SPI master mode.
324
325 config SPI_FSL_LIB
326         tristate
327         depends on OF
328
329 config SPI_FSL_CPM
330         tristate
331         depends on FSL_SOC
332
333 config SPI_FSL_SPI
334         tristate "Freescale SPI controller and Aeroflex Gaisler GRLIB SPI controller"
335         depends on OF
336         select SPI_FSL_LIB
337         select SPI_FSL_CPM if FSL_SOC
338         help
339           This enables using the Freescale SPI controllers in master mode.
340           MPC83xx platform uses the controller in cpu mode or CPM/QE mode.
341           MPC8569 uses the controller in QE mode, MPC8610 in cpu mode.
342           This also enables using the Aeroflex Gaisler GRLIB SPI controller in
343           master mode.
344
345 config SPI_FSL_DSPI
346         tristate "Freescale DSPI controller"
347         select REGMAP_MMIO
348         depends on SOC_VF610 || SOC_LS1021A || ARCH_LAYERSCAPE || M5441x || COMPILE_TEST
349         help
350           This enables support for the Freescale DSPI controller in master
351           mode. VF610 platform uses the controller.
352
353 config SPI_FSL_ESPI
354         tristate "Freescale eSPI controller"
355         depends on FSL_SOC
356         help
357           This enables using the Freescale eSPI controllers in master mode.
358           From MPC8536, 85xx platform uses the controller, and all P10xx,
359           P20xx, P30xx,P40xx, P50xx uses this controller.
360
361 config SPI_MESON_SPICC
362         tristate "Amlogic Meson SPICC controller"
363         depends on ARCH_MESON || COMPILE_TEST
364         help
365           This enables master mode support for the SPICC (SPI communication
366           controller) available in Amlogic Meson SoCs.
367
368 config SPI_MESON_SPIFC
369         tristate "Amlogic Meson SPIFC controller"
370         depends on ARCH_MESON || COMPILE_TEST
371         select REGMAP_MMIO
372         help
373           This enables master mode support for the SPIFC (SPI flash
374           controller) available in Amlogic Meson SoCs.
375
376 config SPI_MT65XX
377         tristate "MediaTek SPI controller"
378         depends on ARCH_MEDIATEK || COMPILE_TEST
379         help
380           This selects the MediaTek(R) SPI bus driver.
381           If you want to use MediaTek(R) SPI interface,
382           say Y or M here.If you are not sure, say N.
383           SPI drivers for Mediatek MT65XX and MT81XX series ARM SoCs.
384
385 config SPI_NUC900
386         tristate "Nuvoton NUC900 series SPI"
387         depends on ARCH_W90X900
388         select SPI_BITBANG
389         help
390           SPI driver for Nuvoton NUC900 series ARM SoCs
391
392 config SPI_LANTIQ_SSC
393         tristate "Lantiq SSC SPI controller"
394         depends on LANTIQ || COMPILE_TEST
395         help
396           This driver supports the Lantiq SSC SPI controller in master
397           mode. This controller is found on Intel (former Lantiq) SoCs like
398           the Danube, Falcon, xRX200, xRX300.
399
400 config SPI_OC_TINY
401         tristate "OpenCores tiny SPI"
402         depends on GPIOLIB || COMPILE_TEST
403         select SPI_BITBANG
404         help
405           This is the driver for OpenCores tiny SPI master controller.
406
407 config SPI_OCTEON
408         tristate "Cavium OCTEON SPI controller"
409         depends on CAVIUM_OCTEON_SOC
410         help
411           SPI host driver for the hardware found on some Cavium OCTEON
412           SOCs.
413
414 config SPI_OMAP_UWIRE
415         tristate "OMAP1 MicroWire"
416         depends on ARCH_OMAP1
417         select SPI_BITBANG
418         help
419           This hooks up to the MicroWire controller on OMAP1 chips.
420
421 config SPI_OMAP24XX
422         tristate "McSPI driver for OMAP"
423         depends on ARCH_OMAP2PLUS || COMPILE_TEST
424         select SG_SPLIT
425         help
426           SPI master controller for OMAP24XX and later Multichannel SPI
427           (McSPI) modules.
428
429 config SPI_TI_QSPI
430         tristate "DRA7xxx QSPI controller support"
431         depends on ARCH_OMAP2PLUS || COMPILE_TEST
432         help
433           QSPI master controller for DRA7xxx used for flash devices.
434           This device supports single, dual and quad read support, while
435           it only supports single write mode.
436
437 config SPI_OMAP_100K
438         tristate "OMAP SPI 100K"
439         depends on ARCH_OMAP850 || ARCH_OMAP730 || COMPILE_TEST
440         help
441           OMAP SPI 100K master controller for omap7xx boards.
442
443 config SPI_ORION
444         tristate "Orion SPI master"
445         depends on PLAT_ORION || ARCH_MVEBU || COMPILE_TEST
446         help
447           This enables using the SPI master controller on the Orion
448           and MVEBU chips.
449
450 config SPI_PIC32
451         tristate "Microchip PIC32 series SPI"
452         depends on MACH_PIC32 || COMPILE_TEST
453         help
454           SPI driver for Microchip PIC32 SPI master controller.
455
456 config SPI_PIC32_SQI
457         tristate "Microchip PIC32 Quad SPI driver"
458         depends on MACH_PIC32 || COMPILE_TEST
459         help
460           SPI driver for PIC32 Quad SPI controller.
461
462 config SPI_PL022
463         tristate "ARM AMBA PL022 SSP controller"
464         depends on ARM_AMBA
465         default y if MACH_U300
466         default y if ARCH_REALVIEW
467         default y if INTEGRATOR_IMPD1
468         default y if ARCH_VERSATILE
469         help
470           This selects the ARM(R) AMBA(R) PrimeCell PL022 SSP
471           controller. If you have an embedded system with an AMBA(R)
472           bus and a PL022 controller, say Y or M here.
473
474 config SPI_PPC4xx
475         tristate "PPC4xx SPI Controller"
476         depends on PPC32 && 4xx
477         select SPI_BITBANG
478         help
479           This selects a driver for the PPC4xx SPI Controller.
480
481 config SPI_PXA2XX
482         tristate "PXA2xx SSP SPI master"
483         depends on (ARCH_PXA || ARCH_MMP || PCI || ACPI)
484         select PXA_SSP if ARCH_PXA || ARCH_MMP
485         help
486           This enables using a PXA2xx or Sodaville SSP port as a SPI master
487           controller. The driver can be configured to use any SSP port and
488           additional documentation can be found a Documentation/spi/pxa2xx.
489
490 config SPI_PXA2XX_PCI
491         def_tristate SPI_PXA2XX && PCI && COMMON_CLK
492
493 config SPI_ROCKCHIP
494         tristate "Rockchip SPI controller driver"
495         help
496           This selects a driver for Rockchip SPI controller.
497
498           If you say yes to this option, support will be included for
499           RK3066, RK3188 and RK3288 families of SPI controller.
500           Rockchip SPI controller support DMA transport and PIO mode.
501           The main usecase of this controller is to use spi flash as boot
502           device.
503
504 config SPI_RB4XX
505         tristate "Mikrotik RB4XX SPI master"
506         depends on SPI_MASTER && ATH79
507         help
508           SPI controller driver for the Mikrotik RB4xx series boards.
509
510 config SPI_RSPI
511         tristate "Renesas RSPI/QSPI controller"
512         depends on SUPERH || ARCH_RENESAS || COMPILE_TEST
513         help
514           SPI driver for Renesas RSPI and QSPI blocks.
515
516 config SPI_QUP
517         tristate "Qualcomm SPI controller with QUP interface"
518         depends on ARCH_QCOM || (ARM && COMPILE_TEST)
519         help
520           Qualcomm Universal Peripheral (QUP) core is an AHB slave that
521           provides a common data path (an output FIFO and an input FIFO)
522           for serial peripheral interface (SPI) mini-core. SPI in master
523           mode supports up to 50MHz, up to four chip selects, programmable
524           data path from 4 bits to 32 bits and numerous protocol variants.
525
526           This driver can also be built as a module.  If so, the module
527           will be called spi_qup.
528
529 config SPI_S3C24XX
530         tristate "Samsung S3C24XX series SPI"
531         depends on ARCH_S3C24XX
532         select SPI_BITBANG
533         help
534           SPI driver for Samsung S3C24XX series ARM SoCs
535
536 config SPI_S3C24XX_FIQ
537         bool "S3C24XX driver with FIQ pseudo-DMA"
538         depends on SPI_S3C24XX
539         select FIQ
540         help
541           Enable FIQ support for the S3C24XX SPI driver to provide pseudo
542           DMA by using the fast-interrupt request framework, This allows
543           the driver to get DMA-like performance when there are either
544           no free DMA channels, or when doing transfers that required both
545           TX and RX data paths.
546
547 config SPI_S3C64XX
548         tristate "Samsung S3C64XX series type SPI"
549         depends on (PLAT_SAMSUNG || ARCH_EXYNOS || COMPILE_TEST)
550         help
551           SPI driver for Samsung S3C64XX and newer SoCs.
552
553 config SPI_SC18IS602
554         tristate "NXP SC18IS602/602B/603 I2C to SPI bridge"
555         depends on I2C
556         help
557           SPI driver for NXP SC18IS602/602B/603 I2C to SPI bridge.
558
559 config SPI_SH_MSIOF
560         tristate "SuperH MSIOF SPI controller"
561         depends on HAVE_CLK
562         depends on ARCH_SHMOBILE || ARCH_RENESAS || COMPILE_TEST
563         help
564           SPI driver for SuperH and SH Mobile MSIOF blocks.
565
566 config SPI_SH
567         tristate "SuperH SPI controller"
568         depends on SUPERH || COMPILE_TEST
569         help
570           SPI driver for SuperH SPI blocks.
571
572 config SPI_SH_SCI
573         tristate "SuperH SCI SPI controller"
574         depends on SUPERH
575         select SPI_BITBANG
576         help
577           SPI driver for SuperH SCI blocks.
578
579 config SPI_SH_HSPI
580         tristate "SuperH HSPI controller"
581         depends on ARCH_RENESAS || COMPILE_TEST
582         help
583           SPI driver for SuperH HSPI blocks.
584
585 config SPI_SIRF
586         tristate "CSR SiRFprimaII SPI controller"
587         depends on SIRF_DMA
588         select SPI_BITBANG
589         help
590           SPI driver for CSR SiRFprimaII SoCs
591
592 config SPI_SPRD_ADI
593         tristate "Spreadtrum ADI controller"
594         depends on ARCH_SPRD || COMPILE_TEST
595         depends on HWSPINLOCK || (COMPILE_TEST && !HWSPINLOCK)
596         help
597           ADI driver based on SPI for Spreadtrum SoCs.
598
599 config SPI_STM32
600         tristate "STMicroelectronics STM32 SPI controller"
601         depends on ARCH_STM32 || COMPILE_TEST
602         help
603           SPI driver for STMicroelectonics STM32 SoCs.
604
605           STM32 SPI controller supports DMA and PIO modes. When DMA
606           is not available, the driver automatically falls back to
607           PIO mode.
608
609 config SPI_ST_SSC4
610         tristate "STMicroelectronics SPI SSC-based driver"
611         depends on ARCH_STI || COMPILE_TEST
612         help
613           STMicroelectronics SoCs support for SPI. If you say yes to
614           this option, support will be included for the SSC driven SPI.
615
616 config SPI_SUN4I
617         tristate "Allwinner A10 SoCs SPI controller"
618         depends on ARCH_SUNXI || COMPILE_TEST
619         help
620           SPI driver for Allwinner sun4i, sun5i and sun7i SoCs
621
622 config SPI_SUN6I
623         tristate "Allwinner A31 SPI controller"
624         depends on ARCH_SUNXI || COMPILE_TEST
625         depends on RESET_CONTROLLER
626         help
627           This enables using the SPI controller on the Allwinner A31 SoCs.
628
629 config SPI_MXS
630         tristate "Freescale MXS SPI controller"
631         depends on ARCH_MXS
632         select STMP_DEVICE
633         help
634           SPI driver for Freescale MXS devices.
635
636 config SPI_TEGRA114
637         tristate "NVIDIA Tegra114 SPI Controller"
638         depends on (ARCH_TEGRA && TEGRA20_APB_DMA) || COMPILE_TEST
639         depends on RESET_CONTROLLER
640         help
641           SPI driver for NVIDIA Tegra114 SPI Controller interface. This controller
642           is different than the older SoCs SPI controller and also register interface
643           get changed with this controller.
644
645 config SPI_TEGRA20_SFLASH
646         tristate "Nvidia Tegra20 Serial flash Controller"
647         depends on ARCH_TEGRA || COMPILE_TEST
648         depends on RESET_CONTROLLER
649         help
650           SPI driver for Nvidia Tegra20 Serial flash Controller interface.
651           The main usecase of this controller is to use spi flash as boot
652           device.
653
654 config SPI_TEGRA20_SLINK
655         tristate "Nvidia Tegra20/Tegra30 SLINK Controller"
656         depends on (ARCH_TEGRA && TEGRA20_APB_DMA) || COMPILE_TEST
657         depends on RESET_CONTROLLER
658         help
659           SPI driver for Nvidia Tegra20/Tegra30 SLINK Controller interface.
660
661 config SPI_THUNDERX
662         tristate "Cavium ThunderX SPI controller"
663         depends on PCI && 64BIT && (ARM64 || COMPILE_TEST)
664         help
665           SPI host driver for the hardware found on Cavium ThunderX
666           SOCs.
667
668 config SPI_TOPCLIFF_PCH
669         tristate "Intel EG20T PCH/LAPIS Semicon IOH(ML7213/ML7223/ML7831) SPI"
670         depends on PCI && (X86_32 || MIPS || COMPILE_TEST)
671         help
672           SPI driver for the Topcliff PCH (Platform Controller Hub) SPI bus
673           used in some x86 embedded processors.
674
675           This driver also supports the ML7213/ML7223/ML7831, a companion chip
676           for the Atom E6xx series and compatible with the Intel EG20T PCH.
677
678 config SPI_TXX9
679         tristate "Toshiba TXx9 SPI controller"
680         depends on GPIOLIB && (CPU_TX49XX || COMPILE_TEST)
681         help
682           SPI driver for Toshiba TXx9 MIPS SoCs
683
684 config SPI_XCOMM
685         tristate "Analog Devices AD-FMCOMMS1-EBZ SPI-I2C-bridge driver"
686         depends on I2C
687         help
688           Support for the SPI-I2C bridge found on the Analog Devices
689           AD-FMCOMMS1-EBZ board.
690
691 config SPI_XILINX
692         tristate "Xilinx SPI controller common module"
693         depends on HAS_IOMEM
694         select SPI_BITBANG
695         help
696           This exposes the SPI controller IP from the Xilinx EDK.
697
698           See the "OPB Serial Peripheral Interface (SPI) (v1.00e)"
699           Product Specification document (DS464) for hardware details.
700
701           Or for the DS570, see "XPS Serial Peripheral Interface (SPI) (v2.00b)"
702
703 config SPI_XLP
704         tristate "Netlogic XLP SPI controller driver"
705         depends on CPU_XLP || ARCH_THUNDER2 || COMPILE_TEST
706         help
707           Enable support for the SPI controller on the Netlogic XLP SoCs.
708           Currently supported XLP variants are XLP8XX, XLP3XX, XLP2XX, XLP9XX
709           and XLP5XX.
710
711           If you have a Netlogic XLP platform say Y here.
712           If unsure, say N.
713
714 config SPI_XTENSA_XTFPGA
715         tristate "Xtensa SPI controller for xtfpga"
716         depends on (XTENSA && XTENSA_PLATFORM_XTFPGA) || COMPILE_TEST
717         select SPI_BITBANG
718         help
719           SPI driver for xtfpga SPI master controller.
720
721           This simple SPI master controller is built into xtfpga bitstreams
722           and is used to control daughterboard audio codec. It always transfers
723           16 bit words in SPI mode 0, automatically asserting CS on transfer
724           start and deasserting on end.
725
726 config SPI_ZYNQMP_GQSPI
727         tristate "Xilinx ZynqMP GQSPI controller"
728         depends on SPI_MASTER && HAS_DMA
729         help
730           Enables Xilinx GQSPI controller driver for Zynq UltraScale+ MPSoC.
731
732 #
733 # Add new SPI master controllers in alphabetical order above this line
734 #
735
736 #
737 # There are lots of SPI device types, with sensors and memory
738 # being probably the most widely used ones.
739 #
740 comment "SPI Protocol Masters"
741
742 config SPI_SPIDEV
743         tristate "User mode SPI device driver support"
744         help
745           This supports user mode SPI protocol drivers.
746
747           Note that this application programming interface is EXPERIMENTAL
748           and hence SUBJECT TO CHANGE WITHOUT NOTICE while it stabilizes.
749
750 config SPI_LOOPBACK_TEST
751         tristate "spi loopback test framework support"
752         depends on m
753         help
754           This enables the SPI loopback testing framework driver
755
756           primarily used for development of spi_master drivers
757           and to detect regressions
758
759 config SPI_TLE62X0
760         tristate "Infineon TLE62X0 (for power switching)"
761         depends on SYSFS
762         help
763           SPI driver for Infineon TLE62X0 series line driver chips,
764           such as the TLE6220, TLE6230 and TLE6240.  This provides a
765           sysfs interface, with each line presented as a kind of GPIO
766           exposing both switch control and diagnostic feedback.
767
768 #
769 # Add new SPI protocol masters in alphabetical order above this line
770 #
771
772 endif # SPI_MASTER
773
774 #
775 # SLAVE side ... listening to other SPI masters
776 #
777
778 config SPI_SLAVE
779         bool "SPI slave protocol handlers"
780         help
781           If your system has a slave-capable SPI controller, you can enable
782           slave protocol handlers.
783
784 if SPI_SLAVE
785
786 config SPI_SLAVE_TIME
787         tristate "SPI slave handler reporting boot up time"
788         help
789           SPI slave handler responding with the time of reception of the last
790           SPI message.
791
792 config SPI_SLAVE_SYSTEM_CONTROL
793         tristate "SPI slave handler controlling system state"
794         help
795           SPI slave handler to allow remote control of system reboot, power
796           off, halt, and suspend.
797
798 endif # SPI_SLAVE
799
800 endif # SPI