samsung-sdhci.txt 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. * Samsung's SDHCI Controller device tree bindings
  2. Samsung's SDHCI controller is used as a connectivity interface with external
  3. MMC, SD and eMMC storage mediums. This file documents differences between the
  4. core mmc properties described by mmc.txt and the properties used by the
  5. Samsung implementation of the SDHCI controller.
  6. Required SoC Specific Properties:
  7. - compatible: should be one of the following
  8. - "samsung,s3c6410-sdhci": For controllers compatible with s3c6410 sdhci
  9. controller.
  10. - "samsung,exynos4210-sdhci": For controllers compatible with Exynos4 sdhci
  11. controller.
  12. Required Board Specific Properties:
  13. - pinctrl-0: Should specify pin control groups used for this controller.
  14. - pinctrl-names: Should contain only one value - "default".
  15. Example:
  16. sdhci@12530000 {
  17. compatible = "samsung,exynos4210-sdhci";
  18. reg = <0x12530000 0x100>;
  19. interrupts = <0 75 0>;
  20. bus-width = <4>;
  21. cd-gpios = <&gpk2 2 0>;
  22. pinctrl-names = "default";
  23. pinctrl-0 = <&sd0_clk &sd0_cmd &sd0_bus4>;
  24. };
  25. Note: This example shows both SoC specific and board specific properties
  26. in a single device node. The properties can be actually be separated
  27. into SoC specific node and board specific node.