diff options
| author | Ernst Schwab <eschwab@online.de> | 2010-02-17 09:33:02 -0500 |
|---|---|---|
| committer | Grant Likely <grant.likely@secretlab.ca> | 2010-02-17 09:33:02 -0500 |
| commit | 85cd7467f3a66800c20815d3fca45d33038b9279 (patch) | |
| tree | 2a6a2c4cce77338101f29f94ae86de2caa52704b /Documentation/powerpc | |
| parent | e9cb0a49247ea6b3cd078716bcdcbd5d911e76ac (diff) | |
powerpc/of: added documentation for spi chipselects
Added devicetree binding documentation for gpios used as chipselect. The
code to evaluate these is already present in spi_mpc8xxx.c.
Signed-off-by: Ernst Schwab <eschwab@online.de>
Reviewed-by: Wolfram Sang <w.sang@pengutronix.de>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'Documentation/powerpc')
| -rw-r--r-- | Documentation/powerpc/dts-bindings/fsl/spi.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Documentation/powerpc/dts-bindings/fsl/spi.txt b/Documentation/powerpc/dts-bindings/fsl/spi.txt index e7d9a344c4f..80510c018ee 100644 --- a/Documentation/powerpc/dts-bindings/fsl/spi.txt +++ b/Documentation/powerpc/dts-bindings/fsl/spi.txt | |||
| @@ -13,6 +13,11 @@ Required properties: | |||
| 13 | - interrupt-parent : the phandle for the interrupt controller that | 13 | - interrupt-parent : the phandle for the interrupt controller that |
| 14 | services interrupts for this device. | 14 | services interrupts for this device. |
| 15 | 15 | ||
| 16 | Optional properties: | ||
| 17 | - gpios : specifies the gpio pins to be used for chipselects. | ||
| 18 | The gpios will be referred to as reg = <index> in the SPI child nodes. | ||
| 19 | If unspecified, a single SPI device without a chip select can be used. | ||
| 20 | |||
| 16 | Example: | 21 | Example: |
| 17 | spi@4c0 { | 22 | spi@4c0 { |
| 18 | cell-index = <0>; | 23 | cell-index = <0>; |
| @@ -21,4 +26,6 @@ Example: | |||
| 21 | interrupts = <82 0>; | 26 | interrupts = <82 0>; |
| 22 | interrupt-parent = <700>; | 27 | interrupt-parent = <700>; |
| 23 | mode = "cpu"; | 28 | mode = "cpu"; |
| 29 | gpios = <&gpio 18 1 // device reg=<0> | ||
| 30 | &gpio 19 1>; // device reg=<1> | ||
| 24 | }; | 31 | }; |
