esdhc.txt 786 B

12345678910111213141516171819202122232425
  1. * Freescale Enhanced Secure Digital Host Controller (eSDHC)
  2. The Enhanced Secure Digital Host Controller provides an interface
  3. for MMC, SD, and SDIO types of memory cards.
  4. Required properties:
  5. - compatible : should be
  6. "fsl,<chip>-esdhc", "fsl,esdhc"
  7. - reg : should contain eSDHC registers location and length.
  8. - interrupts : should contain eSDHC interrupt.
  9. - interrupt-parent : interrupt source phandle.
  10. - clock-frequency : specifies eSDHC base clock frequency.
  11. - sdhci,1-bit-only : (optional) specifies that a controller can
  12. only handle 1-bit data transfers.
  13. Example:
  14. sdhci@2e000 {
  15. compatible = "fsl,mpc8378-esdhc", "fsl,esdhc";
  16. reg = <0x2e000 0x1000>;
  17. interrupts = <42 0x8>;
  18. interrupt-parent = <&ipic>;
  19. /* Filled in by U-Boot */
  20. clock-frequency = <0>;
  21. };