sdhci-of-dwcmshc.txt 670 B

1234567891011121314151617181920
  1. * Synopsys DesignWare Cores Mobile Storage Host Controller
  2. Required properties:
  3. - compatible: should be one of the following:
  4. "snps,dwcmshc-sdhci"
  5. - reg: offset and length of the register set for the device.
  6. - interrupts: a single interrupt specifier.
  7. - clocks: Array of clocks required for SDHCI; requires at least one for
  8. core clock.
  9. - clock-names: Array of names corresponding to clocks property; shall be
  10. "core" for core clock and "bus" for optional bus clock.
  11. Example:
  12. sdhci2: sdhci@aa0000 {
  13. compatible = "snps,dwcmshc-sdhci";
  14. reg = <0xaa0000 0x1000>;
  15. interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>;
  16. clocks = <&emmcclk>;
  17. bus-width = <8>;
  18. }