snps,dw-apb-ssi.txt 772 B

1234567891011121314151617181920212223242526272829
  1. Synopsys DesignWare AMBA 2.0 Synchronous Serial Interface.
  2. Required properties:
  3. - compatible : "snps,dw-apb-ssi"
  4. - reg : The register base for the controller.
  5. - interrupts : One interrupt, used by the controller.
  6. - #address-cells : <1>, as required by generic SPI binding.
  7. - #size-cells : <0>, also as required by generic SPI binding.
  8. Optional properties:
  9. - cs-gpios : Specifies the gpio pis to be used for chipselects.
  10. - num-cs : The number of chipselects. If omitted, this will default to 4.
  11. Child nodes as per the generic SPI binding.
  12. Example:
  13. spi@fff00000 {
  14. compatible = "snps,dw-apb-ssi";
  15. reg = <0xfff00000 0x1000>;
  16. interrupts = <0 154 4>;
  17. #address-cells = <1>;
  18. #size-cells = <0>;
  19. num-cs = <2>;
  20. cs-gpios = <&gpio0 13 0>,
  21. <&gpio0 14 0>;
  22. };