spi-lantiq-ssc.txt 810 B

1234567891011121314151617181920212223242526272829
  1. Lantiq Synchronous Serial Controller (SSC) SPI master driver
  2. Required properties:
  3. - compatible: "lantiq,ase-spi", "lantiq,falcon-spi", "lantiq,xrx100-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 the "spi_rx", "spi_tx" and "spi_err" interrupt.
  8. Optional properties:
  9. - clocks: spi clock phandle
  10. - num-cs: see spi-bus.txt, set to 8 if unset
  11. - base-cs: the number of the first chip select, set to 1 if unset.
  12. Example:
  13. spi: spi@e100800 {
  14. compatible = "lantiq,xrx200-spi", "lantiq,xrx100-spi";
  15. reg = <0xE100800 0x100>;
  16. interrupt-parent = <&icu0>;
  17. interrupts = <22 23 24>;
  18. interrupt-names = "spi_rx", "spi_tx", "spi_err";
  19. #address-cells = <1>;
  20. #size-cells = <1>;
  21. num-cs = <6>;
  22. base-cs = <1>;
  23. };