fsl-imx-esdhc.txt 912 B

1234567891011121314151617181920212223242526272829303132
  1. * Freescale Enhanced Secure Digital Host Controller (eSDHC) for i.MX
  2. The Enhanced Secure Digital Host Controller on Freescale i.MX family
  3. provides an interface for MMC, SD, and SDIO types of memory cards.
  4. This file documents differences between the core properties described
  5. by mmc.txt and the properties used by the sdhci-esdhc-imx driver.
  6. Required properties:
  7. - compatible : Should be "fsl,<chip>-esdhc"
  8. Optional properties:
  9. - fsl,cd-controller : Indicate to use controller internal card detection
  10. - fsl,wp-controller : Indicate to use controller internal write protection
  11. Examples:
  12. esdhc@70004000 {
  13. compatible = "fsl,imx51-esdhc";
  14. reg = <0x70004000 0x4000>;
  15. interrupts = <1>;
  16. fsl,cd-controller;
  17. fsl,wp-controller;
  18. };
  19. esdhc@70008000 {
  20. compatible = "fsl,imx51-esdhc";
  21. reg = <0x70008000 0x4000>;
  22. interrupts = <2>;
  23. cd-gpios = <&gpio1 6 0>; /* GPIO1_6 */
  24. wp-gpios = <&gpio1 5 0>; /* GPIO1_5 */
  25. };