Merge remote-tracking branch 'asoc/for-4.19' into asoc-4.20
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / spi / spi-uniphier.txt
1 Socionext UniPhier SPI controller driver
2
3 UniPhier SoCs have SCSSI which supports SPI single channel.
4
5 Required properties:
6  - compatible: should be "socionext,uniphier-scssi"
7  - reg: address and length of the spi master registers
8  - #address-cells: must be <1>, see spi-bus.txt
9  - #size-cells: must be <0>, see spi-bus.txt
10  - clocks: A phandle to the clock for the device.
11  - resets: A phandle to the reset control for the device.
12
13 Example:
14
15 spi0: spi@54006000 {
16         compatible = "socionext,uniphier-scssi";
17         reg = <0x54006000 0x100>;
18         #address-cells = <1>;
19         #size-cells = <0>;
20         clocks = <&peri_clk 11>;
21         resets = <&peri_rst 11>;
22 };