hi6421.txt 1.1 KB

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