Merge tag 'm68k-for-v4.20-tag1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / spi / spi-pxa2xx.txt
1 PXA2xx SSP SPI Controller
2
3 Required properties:
4 - compatible: Must be "marvell,mmp2-ssp".
5 - reg: Offset and length of the device's register set.
6 - interrupts: Should be the interrupt number.
7 - clocks: Should contain a single entry describing the clock input.
8 - #address-cells:  Number of cells required to define a chip select address.
9 - #size-cells: Should be zero.
10
11 Optional properties:
12 - cs-gpios: list of GPIO chip selects. See the SPI bus bindings,
13   Documentation/devicetree/bindings/spi/spi-bus.txt
14
15 Child nodes represent devices on the SPI bus
16   See ../spi/spi-bus.txt
17
18 Example:
19         ssp1: spi@d4035000 {
20                 compatible = "marvell,mmp2-ssp";
21                 reg = <0xd4035000 0x1000>;
22                 clocks = <&soc_clocks MMP2_CLK_SSP0>;
23                 interrupts = <0>;
24         };