1Socionext UniPhier SPI controller driver 2 3UniPhier SoCs have SCSSI which supports SPI single channel. 4 5Required 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 13Example: 14 15spi0: 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}; 23