esdhc.txt 682 B

1234567891011121314151617181920212223
  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. Example:
  12. sdhci@2e000 {
  13. compatible = "fsl,mpc8378-esdhc", "fsl,esdhc";
  14. reg = <0x2e000 0x1000>;
  15. interrupts = <42 0x8>;
  16. interrupt-parent = <&ipic>;
  17. /* Filled in by U-Boot */
  18. clock-frequency = <0>;
  19. };