adi,axi-spi-engine.txt 955 B

1234567891011121314151617181920212223242526272829303132
  1. Analog Devices AXI SPI Engine controller Device Tree Bindings
  2. Required properties:
  3. - compatible : Must be "adi,axi-spi-engine-1.00.a""
  4. - reg : Physical base address and size of the register map.
  5. - interrupts : Property with a value describing the interrupt
  6. number.
  7. - clock-names : List of input clock names - "s_axi_aclk", "spi_clk"
  8. - clocks : Clock phandles and specifiers (See clock bindings for
  9. details on clock-names and clocks).
  10. - #address-cells : Must be <1>
  11. - #size-cells : Must be <0>
  12. Optional subnodes:
  13. Subnodes are use to represent the SPI slave devices connected to the SPI
  14. master. They follow the generic SPI bindings as outlined in spi-bus.txt.
  15. Example:
  16. spi@@44a00000 {
  17. compatible = "adi,axi-spi-engine-1.00.a";
  18. reg = <0x44a00000 0x1000>;
  19. interrupts = <0 56 4>;
  20. clocks = <&clkc 15 &clkc 15>;
  21. clock-names = "s_axi_aclk", "spi_clk";
  22. #address-cells = <1>;
  23. #size-cells = <0>;
  24. /* SPI devices */
  25. };