spi-bcm63xx-hsspi.txt 849 B

123456789101112131415161718192021222324252627282930313233
  1. Binding for Broadcom BCM6328 High Speed SPI controller
  2. Required properties:
  3. - compatible: must contain of "brcm,bcm6328-hsspi".
  4. - reg: Base address and size of the controllers memory area.
  5. - interrupts: Interrupt for the SPI block.
  6. - clocks: phandles of the SPI clock and the PLL clock.
  7. - clock-names: must be "hsspi", "pll".
  8. - #address-cells: <1>, as required by generic SPI binding.
  9. - #size-cells: <0>, also as required by generic SPI binding.
  10. Optional properties:
  11. - num-cs: some controllers have less than 8 cs signals. Defaults to 8
  12. if absent.
  13. Child nodes as per the generic SPI binding.
  14. Example:
  15. spi@10001000 {
  16. compatible = "brcm,bcm6328-hsspi";
  17. reg = <0x10001000 0x600>;
  18. interrupts = <29>;
  19. clocks = <&clkctl 9>, <&hsspi_pll>;
  20. clock-names = "hsspi", "pll";
  21. num-cs = <2>;
  22. #address-cells = <1>;
  23. #size-cells = <0>;
  24. };