mmc-pwrseq-simple.txt 1.0 KB

1234567891011121314151617181920212223242526272829
  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. - post-power-on-delay-ms : Delay in ms after powering the card and
  17. de-asserting the reset-gpios (if any)
  18. Example:
  19. sdhci0_pwrseq {
  20. compatible = "mmc-pwrseq-simple";
  21. reset-gpios = <&gpio1 12 GPIO_ACTIVE_LOW>;
  22. clocks = <&clk_32768_ck>;
  23. clock-names = "ext_clock";
  24. }