sdhci-atmel.txt 600 B

123456789101112131415161718192021
  1. * Atmel SDHCI controller
  2. This file documents the differences between the core properties in
  3. Documentation/devicetree/bindings/mmc/mmc.txt and the properties used by the
  4. sdhci-of-at91 driver.
  5. Required properties:
  6. - compatible: Must be "atmel,sama5d2-sdhci".
  7. - clocks: Phandlers to the clocks.
  8. - clock-names: Must be "hclock", "multclk", "baseclk";
  9. Example:
  10. sdmmc0: sdio-host@a0000000 {
  11. compatible = "atmel,sama5d2-sdhci";
  12. reg = <0xa0000000 0x300>;
  13. interrupts = <31 IRQ_TYPE_LEVEL_HIGH 0>;
  14. clocks = <&sdmmc0_hclk>, <&sdmmc0_gclk>, <&main>;
  15. clock-names = "hclock", "multclk", "baseclk";
  16. };