hi6421.txt 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. * HI6421 Multi-Functional Device (MFD), by HiSilicon Ltd.
  2. Required parent device properties:
  3. - compatible : contains "hisilicon,hi6421-pmic";
  4. - reg : register range space of hi6421;
  5. Supported Hi6421 sub-devices include:
  6. Device IRQ Names Supply Names Description
  7. ------ --------- ------------ -----------
  8. regulators : None : None : Regulators
  9. Required child device properties:
  10. None.
  11. Example:
  12. hi6421 {
  13. compatible = "hisilicon,hi6421-pmic";
  14. reg = <0xfcc00000 0x0180>; /* 0x60 << 2 */
  15. regulators {
  16. // supply for MLC NAND/ eMMC
  17. hi6421_vout0_reg: hi6421_vout0 {
  18. regulator-name = "VOUT0";
  19. regulator-min-microvolt = <2850000>;
  20. regulator-max-microvolt = <2850000>;
  21. };
  22. // supply for 26M Oscillator
  23. hi6421_vout1_reg: hi6421_vout1 {
  24. regulator-name = "VOUT1";
  25. regulator-min-microvolt = <1700000>;
  26. regulator-max-microvolt = <2000000>;
  27. regulator-boot-on;
  28. regulator-always-on;
  29. };
  30. };
  31. };