brcm,bcm2835-sdhost.txt 632 B

1234567891011121314151617181920212223
  1. Broadcom BCM2835 SDHOST controller
  2. This file documents differences between the core properties described
  3. by mmc.txt and the properties that represent the BCM2835 controller.
  4. Required properties:
  5. - compatible: Should be "brcm,bcm2835-sdhost".
  6. - clocks: The clock feeding the SDHOST controller.
  7. Optional properties:
  8. - dmas: DMA channel for read and write.
  9. See Documentation/devicetree/bindings/dma/dma.txt for details
  10. Example:
  11. sdhost: mmc@7e202000 {
  12. compatible = "brcm,bcm2835-sdhost";
  13. reg = <0x7e202000 0x100>;
  14. interrupts = <2 24>;
  15. clocks = <&clocks BCM2835_CLOCK_VPU>;
  16. dmas = <&dma 13>;
  17. dma-names = "rx-tx";
  18. };