diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 14:51:05 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 14:51:05 -0400 |
| commit | 750b2d7b93f2ba19f4f238cc641bda22fe07c155 (patch) | |
| tree | bfef33ef5444ac2ac78c61e47baa7a5d19916214 /Documentation | |
| parent | 3dbde57ad941c55345fd7fac0ee3f70f204b02d8 (diff) | |
| parent | ed893559c9799df3b32051871c22017151394d82 (diff) | |
Merge tag 'spi-v3.11' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi
Pull spi updates from Mark Brown:
"A fairly quiet release for the SPI subsystem, the standout changes
being:
- Core support for implementing bits per word constraints implemented
by Stephen Warren, factoring some code out of drivers.
- Addition of polling mode support for the s3c64xx driver as some
newer Exynos systems have taken the unusual step of removing
interrupt support.
- Use of the in-IP FIFO and generic dmaengine support for the OMAP2
driver, providing improved performance.
- Conversion of the mpc512x driver to use the core message queue
infrastructure.
The nicest thing being that all the factoring out into common code
leads to a negative diffstat overall."
* tag 'spi-v3.11' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi: (42 commits)
spi/s3c64xx: Rely on the compiler eliminating the OF ID table
spi: s3c64xx: Added support for exynos5440 spi
spi: s3c64xx: Added provision for dedicated cs pin
spi: omap2-mcspi: add generic DMA request support to the DT binding
spi: omap2-mcspi: convert to dma_request_slave_channel_compat()
spi/s3c64xx: Make wait_for_timeout() function name less generic
spi: s3c64xx: added support for polling mode
spi: omap2-mcspi: Add FIFO buffer support
spi: omap2-mcspi: Move bytes per word calculation to the function
spi: spi-xilinx: cleanup a check in xilinx_spi_txrx_bufs()
spi: spi-nuc900: Remove redundant platform_set_drvdata()
spi: spi-fsl-lib: Make mpc8xxx_spi_work static
spi: spi-topcliff-pch: Fix sparse warnings
spi: spi-xilinx: Remove redundant platform_set_drvdata()
spi: spi-xilinx: Add run run-time endian detection
spi: mpc512x: use the SPI subsystem's message queue
spi: mpc512x: improve throughput in the RX/TX func
spi: mpc512x: minor prep before feature change
spi: atmel: convert to dma_request_slave_channel_compat()
spi: sirf: avoid uninitialized-use warning
...
Diffstat (limited to 'Documentation')
| -rw-r--r-- | Documentation/devicetree/bindings/spi/omap-spi.txt | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/spi/omap-spi.txt b/Documentation/devicetree/bindings/spi/omap-spi.txt index 938809c6829b..4c85c4c69584 100644 --- a/Documentation/devicetree/bindings/spi/omap-spi.txt +++ b/Documentation/devicetree/bindings/spi/omap-spi.txt | |||
| @@ -10,7 +10,18 @@ Required properties: | |||
| 10 | input. The default is D0 as input and | 10 | input. The default is D0 as input and |
| 11 | D1 as output. | 11 | D1 as output. |
| 12 | 12 | ||
| 13 | Example: | 13 | Optional properties: |
| 14 | - dmas: List of DMA specifiers with the controller specific format | ||
| 15 | as described in the generic DMA client binding. A tx and rx | ||
| 16 | specifier is required for each chip select. | ||
| 17 | - dma-names: List of DMA request names. These strings correspond | ||
| 18 | 1:1 with the DMA specifiers listed in dmas. The string naming | ||
| 19 | is to be "rxN" and "txN" for RX and TX requests, | ||
| 20 | respectively, where N equals the chip select number. | ||
| 21 | |||
| 22 | Examples: | ||
| 23 | |||
| 24 | [hwmod populated DMA resources] | ||
| 14 | 25 | ||
| 15 | mcspi1: mcspi@1 { | 26 | mcspi1: mcspi@1 { |
| 16 | #address-cells = <1>; | 27 | #address-cells = <1>; |
| @@ -20,3 +31,17 @@ mcspi1: mcspi@1 { | |||
| 20 | ti,spi-num-cs = <4>; | 31 | ti,spi-num-cs = <4>; |
| 21 | }; | 32 | }; |
| 22 | 33 | ||
| 34 | [generic DMA request binding] | ||
| 35 | |||
| 36 | mcspi1: mcspi@1 { | ||
| 37 | #address-cells = <1>; | ||
| 38 | #size-cells = <0>; | ||
| 39 | compatible = "ti,omap4-mcspi"; | ||
| 40 | ti,hwmods = "mcspi1"; | ||
| 41 | ti,spi-num-cs = <2>; | ||
| 42 | dmas = <&edma 42 | ||
| 43 | &edma 43 | ||
| 44 | &edma 44 | ||
| 45 | &edma 45>; | ||
| 46 | dma-names = "tx0", "rx0", "tx1", "rx1"; | ||
| 47 | }; | ||
