blob: 2c0046d2091670e2ba0396e3261733a1d5bf6849 [file] [log] [blame]
Jagan Tekibfd3f8b2015-06-27 22:35:14 +05301menu "SPI Support"
2
Masahiro Yamada57ad8ee2014-10-23 22:26:09 +09003config DM_SPI
4 bool "Enable Driver Model for SPI drivers"
5 depends on DM
6 help
Simon Glassd8b771d2015-02-05 21:41:35 -07007 Enable driver model for SPI. The SPI slave interface
8 (spi_setup_slave(), spi_xfer(), etc.) is then implemented by
9 the SPI uclass. Drivers provide methods to access the SPI
10 buses that they control. The uclass interface is defined in
11 include/spi.h. The existing spi_slave structure is attached
12 as 'parent data' to every slave on each bus. Slaves
13 typically use driver-private data instead of extending the
14 spi_slave structure.
Simon Glass4b322d32015-03-06 13:19:05 -070015
Jagan Teki15a932c2015-06-27 22:37:00 +053016if DM_SPI
17
18config CADENCE_QSPI
19 bool "Cadence QSPI driver"
20 help
21 Enable the Cadence Quad-SPI (QSPI) driver. This driver can be
22 used to access the SPI NOR flash on platforms embedding this
23 Cadence IP core.
24
25config DESIGNWARE_SPI
26 bool "Designware SPI driver"
27 help
28 Enable the Designware SPI driver. This driver can be used to
29 access the SPI NOR flash on platforms embedding this Designware
30 IP core.
31
Jagan Tekiae30c022015-06-27 14:17:06 +053032config FSL_DSPI
33 bool "Freescale DSPI driver"
34 help
35 Enable the Freescale DSPI driver. This driver can be used to
36 access the SPI NOR flash and SPI Data flash on platforms embedding
37 this Freescale DSPI IP core. LS102xA and Colibri VF50/VF61 platforms
38 use this driver.
39
Simon Glass4b322d32015-03-06 13:19:05 -070040config SANDBOX_SPI
41 bool "Sandbox SPI driver"
42 depends on SANDBOX && DM
43 help
44 Enable SPI support for sandbox. This is an emulation of a real SPI
45 bus. Devices can be attached to the bus using the device tree
46 which specifies the driver to use. As an example, see this device
47 tree fragment from sandbox.dts. It shows that the SPI bus has a
48 single flash device on chip select 0 which is emulated by the driver
49 for "sandbox,spi-flash", which is in drivers/mtd/spi/sandbox.c.
50
51 spi@0 {
52 #address-cells = <1>;
53 #size-cells = <0>;
54 reg = <0>;
55 compatible = "sandbox,spi";
56 cs-gpios = <0>, <&gpio_a 0>;
57 flash@0 {
58 reg = <0>;
59 compatible = "spansion,m25p16", "sandbox,spi-flash";
60 spi-max-frequency = <40000000>;
61 sandbox,filename = "spi.bin";
62 };
Jagan Teki15a932c2015-06-27 22:37:00 +053063 };
Jagan Tekidd32f512015-06-27 04:41:11 +053064
Jagan Tekicd70d7d2015-06-27 04:32:43 +053065config XILINX_SPI
66 bool "Xilinx SPI driver"
Jagan Tekicd70d7d2015-06-27 04:32:43 +053067 help
68 Enable the Xilinx SPI driver from the Xilinx EDK. This SPI
69 controller support 8 bit SPI transfers only, with or w/o FIFO.
70 For more info on Xilinx SPI Register Definitions and Overview
71 see driver file - drivers/spi/xilinx_spi.c
72
Jagan Tekicad526f2015-06-27 00:51:38 +053073config ZYNQ_SPI
74 bool "Zynq SPI driver"
Jagan Teki15a932c2015-06-27 22:37:00 +053075 depends on ARCH_ZYNQ || TARGET_XILINX_ZYNQMP
Jagan Tekicad526f2015-06-27 00:51:38 +053076 help
77 Enable the Zynq SPI driver. This driver can be used to
78 access the SPI NOR flash on platforms embedding this Zynq
79 SPI IP core.
Jagan Tekibfd3f8b2015-06-27 22:35:14 +053080
Jagan Teki15a932c2015-06-27 22:37:00 +053081endif # if DM_SPI
82
Jagan Tekia0497a32015-06-27 15:21:36 +053083config FSL_ESPI
84 bool "Freescale eSPI driver"
85 help
86 Enable the Freescale eSPI driver. This driver can be used to
87 access the SPI interface and SPI NOR flash on platforms embedding
88 this Freescale eSPI IP core.
89
Jagan Teki15a932c2015-06-27 22:37:00 +053090config TI_QSPI
91 bool "TI QSPI driver"
92 help
93 Enable the TI Quad-SPI (QSPI) driver for DRA7xx and AM43xx evms.
94 This driver support spi flash single, quad and memory reads.
95
Jagan Tekibfd3f8b2015-06-27 22:35:14 +053096endmenu # menu "SPI Support"