brcm,sdhci-iproc.txt 995 B

1234567891011121314151617181920212223242526272829303132333435
  1. Broadcom IPROC SDHCI controller
  2. This file documents differences between the core properties described
  3. by mmc.txt and the properties that represent the IPROC SDHCI controller.
  4. Required properties:
  5. - compatible : Should be one of the following
  6. "brcm,bcm2835-sdhci"
  7. "brcm,sdhci-iproc-cygnus"
  8. "brcm,sdhci-iproc"
  9. Use brcm2835-sdhci for Rasperry PI.
  10. Use sdhci-iproc-cygnus for Broadcom SDHCI Controllers
  11. restricted to 32bit host accesses to SDHCI registers.
  12. Use sdhci-iproc for Broadcom SDHCI Controllers that allow standard
  13. 8, 16, 32-bit host access to SDHCI register.
  14. - clocks : The clock feeding the SDHCI controller.
  15. Optional properties:
  16. - sdhci,auto-cmd12: specifies that controller should use auto CMD12.
  17. Example:
  18. sdhci0: sdhci@18041000 {
  19. compatible = "brcm,sdhci-iproc-cygnus";
  20. reg = <0x18041000 0x100>;
  21. interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
  22. clocks = <&lcpll0_clks BCM_CYGNUS_LCPLL0_SDIO_CLK>;
  23. bus-width = <4>;
  24. sdhci,auto-cmd12;
  25. no-1-8-v;
  26. };