spi-uniphier.txt 710 B

123456789101112131415161718192021222324
  1. Socionext UniPhier SPI controller driver
  2. UniPhier SoCs have SCSSI which supports SPI single channel.
  3. Required properties:
  4. - compatible: should be "socionext,uniphier-scssi"
  5. - reg: address and length of the spi master registers
  6. - interrupts: a single interrupt specifier
  7. - pinctrl-names: should be "default"
  8. - pinctrl-0: pin control state for the default mode
  9. - clocks: a phandle to the clock for the device
  10. - resets: a phandle to the reset control for the device
  11. Example:
  12. spi0: spi@54006000 {
  13. compatible = "socionext,uniphier-scssi";
  14. reg = <0x54006000 0x100>;
  15. interrupts = <0 39 4>;
  16. pinctrl-names = "default";
  17. pinctrl-0 = <&pinctrl_spi0>;
  18. clocks = <&peri_clk 11>;
  19. resets = <&peri_rst 11>;
  20. };