spi-dw.txt 546 B

123456789101112131415161718192021222324
  1. Synopsys DesignWare SPI master
  2. Required properties:
  3. - compatible: should be "snps,designware-spi"
  4. - #address-cells: see spi-bus.txt
  5. - #size-cells: see spi-bus.txt
  6. - reg: address and length of the spi master registers
  7. - interrupts: should contain one interrupt
  8. - clocks: spi clock phandle
  9. - num-cs: see spi-bus.txt
  10. Optional properties:
  11. - cs-gpios: see spi-bus.txt
  12. Example:
  13. spi: spi@4020a000 {
  14. compatible = "snps,designware-spi";
  15. interrupts = <11 1>;
  16. reg = <0x4020a000 0x1000>;
  17. clocks = <&pclk>;
  18. num-cs = <2>;
  19. cs-gpios = <&banka 0 0>;
  20. };