brcm,bcm2835-spi.txt 626 B

12345678910111213141516171819202122
  1. Broadcom BCM2835 SPI0 controller
  2. The BCM2835 contains two forms of SPI master controller, one known simply as
  3. SPI0, and the other known as the "Universal SPI Master"; part of the
  4. auxiliary block. This binding applies to the SPI0 controller.
  5. Required properties:
  6. - compatible: Should be "brcm,bcm2835-spi".
  7. - reg: Should contain register location and length.
  8. - interrupts: Should contain interrupt.
  9. - clocks: The clock feeding the SPI controller.
  10. Example:
  11. spi@20204000 {
  12. compatible = "brcm,bcm2835-spi";
  13. reg = <0x7e204000 0x1000>;
  14. interrupts = <2 22>;
  15. clocks = <&clk_spi>;
  16. #address-cells = <1>;
  17. #size-cells = <0>;
  18. };