mmc-pwrseq-simple.txt 943 B

123456789101112131415161718192021222324252627
  1. * The simple MMC power sequence provider
  2. The purpose of the simple MMC power sequence provider is to supports a set of
  3. common properties between various SOC designs. It thus enables us to use the
  4. same provider for several SOC designs.
  5. Required properties:
  6. - compatible : contains "mmc-pwrseq-simple".
  7. Optional properties:
  8. - reset-gpios : contains a list of GPIO specifiers. The reset GPIOs are asserted
  9. at initialization and prior we start the power up procedure of the card.
  10. They will be de-asserted right after the power has been provided to the
  11. card.
  12. - clocks : Must contain an entry for the entry in clock-names.
  13. See ../clocks/clock-bindings.txt for details.
  14. - clock-names : Must include the following entry:
  15. "ext_clock" (External clock provided to the card).
  16. Example:
  17. sdhci0_pwrseq {
  18. compatible = "mmc-pwrseq-simple";
  19. reset-gpios = <&gpio1 12 GPIO_ACTIVE_LOW>;
  20. clocks = <&clk_32768_ck>;
  21. clock-names = "ext_clock";
  22. }