spi-armada-3700.txt 784 B

12345678910111213141516171819202122232425
  1. * Marvell Armada 3700 SPI Controller
  2. Required Properties:
  3. - compatible: should be "marvell,armada-3700-spi"
  4. - reg: physical base address of the controller and length of memory mapped
  5. region.
  6. - interrupts: The interrupt number. The interrupt specifier format depends on
  7. the interrupt controller and of its driver.
  8. - clocks: Must contain the clock source, usually from the North Bridge clocks.
  9. - num-cs: The number of chip selects that is supported by this SPI Controller
  10. - #address-cells: should be 1.
  11. - #size-cells: should be 0.
  12. Example:
  13. spi0: spi@10600 {
  14. compatible = "marvell,armada-3700-spi";
  15. #address-cells = <1>;
  16. #size-cells = <0>;
  17. reg = <0x10600 0x5d>;
  18. clocks = <&nb_perih_clk 7>;
  19. interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>;
  20. num-cs = <4>;
  21. };