brcm,sdhci-brcmstb.txt 937 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. * BROADCOM BRCMSTB/BMIPS SDHCI Controller
  2. This file documents differences between the core properties in mmc.txt
  3. and the properties used by the sdhci-brcmstb driver.
  4. NOTE: The driver disables all UHS speed modes by default and depends
  5. on Device Tree properties to enable them for SoC/Board combinations
  6. that support them.
  7. Required properties:
  8. - compatible: should be one of the following
  9. - "brcm,bcm7425-sdhci"
  10. - "brcm,bcm7445-sdhci"
  11. Refer to clocks/clock-bindings.txt for generic clock consumer properties.
  12. Example:
  13. sdhci@f03e0100 {
  14. compatible = "brcm,bcm7425-sdhci";
  15. reg = <0xf03e0000 0x100>;
  16. interrupts = <0x0 0x26 0x0>;
  17. sdhci,auto-cmd12;
  18. clocks = <&sw_sdio>;
  19. sd-uhs-sdr50;
  20. sd-uhs-ddr50;
  21. };
  22. sdhci@f03e0300 {
  23. non-removable;
  24. bus-width = <0x8>;
  25. compatible = "brcm,bcm7425-sdhci";
  26. reg = <0xf03e0200 0x100>;
  27. interrupts = <0x0 0x27 0x0>;
  28. sdhci,auto-cmd12;
  29. clocks = <sw_sdio>;
  30. mmc-hs200-1_8v;
  31. };