diff options
author | David Brownell <david-b@pacbell.net> | 2007-02-12 03:52:37 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-12 12:48:30 -0500 |
commit | fdb3c18d639311287dc4675abe743847a1aa62a8 (patch) | |
tree | d5d05f7eab547d515a4fb89d74e556fc462c85b0 /drivers/spi/Kconfig | |
parent | 85abfaa78239e63f553cc446f8ae5b955282aa29 (diff) |
[PATCH] SPI controller driver for OMAP Microwire
This adds a SPI driver for the Microwire controller on OMAP1 chips. This
driver has been used in the Linux-OMAP tree for some time now, including
with some of those displays using standardized 9-bit commands followed by
data with 8-bit words.
Microwire only supports half duplex transfers, but that's all that most SPI
protocols need. When full duplex, or higher speeds, are needed there are
several other controllers that can be used on OMAP.
[akpm@osdl.org: cleanups]
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Imre Deak <imre.deak@solidboot.com>
Signed-off-by: Juha Yrjola <juha.yrjola@solidboot.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/spi/Kconfig')
-rw-r--r-- | drivers/spi/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/spi/Kconfig b/drivers/spi/Kconfig index 43d41f50b84a..2a2f44d1367d 100644 --- a/drivers/spi/Kconfig +++ b/drivers/spi/Kconfig | |||
@@ -87,6 +87,13 @@ config SPI_MPC83xx | |||
87 | family of PowerPC processors. The MPC83xx uses a simple set of shift | 87 | family of PowerPC processors. The MPC83xx uses a simple set of shift |
88 | registers for data (opposed to the CPM based descriptor model). | 88 | registers for data (opposed to the CPM based descriptor model). |
89 | 89 | ||
90 | config SPI_OMAP_UWIRE | ||
91 | tristate "OMAP1 MicroWire" | ||
92 | depends on SPI_MASTER && ARCH_OMAP1 | ||
93 | select SPI_BITBANG | ||
94 | help | ||
95 | This hooks up to the MicroWire controller on OMAP1 chips. | ||
96 | |||
90 | config SPI_PXA2XX | 97 | config SPI_PXA2XX |
91 | tristate "PXA2xx SSP SPI master" | 98 | tristate "PXA2xx SSP SPI master" |
92 | depends on SPI_MASTER && ARCH_PXA && EXPERIMENTAL | 99 | depends on SPI_MASTER && ARCH_PXA && EXPERIMENTAL |