spi-xilinx.txt 650 B

1234567891011121314151617181920212223
  1. Xilinx SPI controller Device Tree Bindings
  2. -------------------------------------------------
  3. Required properties:
  4. - compatible : Should be "xlnx,xps-spi-2.00.a" or "xlnx,xps-spi-2.00.b"
  5. - reg : Physical base address and size of SPI registers map.
  6. - interrupts : Property with a value describing the interrupt
  7. number.
  8. - interrupt-parent : Must be core interrupt controller
  9. Optional properties:
  10. - xlnx,num-ss-bits : Number of chip selects used.
  11. Example:
  12. axi_quad_spi@41e00000 {
  13. compatible = "xlnx,xps-spi-2.00.a";
  14. interrupt-parent = <&intc>;
  15. interrupts = <0 31 1>;
  16. reg = <0x41e00000 0x10000>;
  17. xlnx,num-ss-bits = <0x1>;
  18. };