spi-ath79.txt 649 B

123456789101112131415161718192021222324
  1. Binding for Qualcomm Atheros AR7xxx/AR9xxx SPI controller
  2. Required properties:
  3. - compatible: has to be "qca,<soc-type>-spi", "qca,ar7100-spi" as fallback.
  4. - reg: Base address and size of the controllers memory area
  5. - clocks: phandle of the AHB clock.
  6. - clock-names: has to be "ahb".
  7. - #address-cells: <1>, as required by generic SPI binding.
  8. - #size-cells: <0>, also as required by generic SPI binding.
  9. Child nodes as per the generic SPI binding.
  10. Example:
  11. spi@1f000000 {
  12. compatible = "qca,ar9132-spi", "qca,ar7100-spi";
  13. reg = <0x1f000000 0x10>;
  14. clocks = <&pll 2>;
  15. clock-names = "ahb";
  16. #address-cells = <1>;
  17. #size-cells = <0>;
  18. };