Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.15-rc4 60 lines 1.5 kB view raw
1ACT8865 regulator 2------------------- 3 4Required properties: 5- compatible: "active-semi,act8865" 6- reg: I2C slave address 7 8Any standard regulator properties can be used to configure the single regulator. 9 10The valid names for regulators are: 11 DCDC_REG1, DCDC_REG2, DCDC_REG3, LDO_REG1, LDO_REG2, LDO_REG3, LDO_REG4. 12 13Example: 14-------- 15 16 i2c1: i2c@f0018000 { 17 pmic: act8865@5b { 18 compatible = "active-semi,act8865"; 19 reg = <0x5b>; 20 status = "disabled"; 21 22 regulators { 23 vcc_1v8_reg: DCDC_REG1 { 24 regulator-name = "VCC_1V8"; 25 regulator-min-microvolt = <1800000>; 26 regulator-max-microvolt = <1800000>; 27 regulator-always-on; 28 }; 29 30 vcc_1v2_reg: DCDC_REG2 { 31 regulator-name = "VCC_1V2"; 32 regulator-min-microvolt = <1100000>; 33 regulator-max-microvolt = <1300000>; 34 regulator-suspend-mem-microvolt = <1150000>; 35 regulator-suspend-standby-microvolt = <1150000>; 36 regulator-always-on; 37 }; 38 39 vcc_3v3_reg: DCDC_REG3 { 40 regulator-name = "VCC_3V3"; 41 regulator-min-microvolt = <3300000>; 42 regulator-max-microvolt = <3300000>; 43 regulator-always-on; 44 }; 45 46 vddana_reg: LDO_REG1 { 47 regulator-name = "VDDANA"; 48 regulator-min-microvolt = <3300000>; 49 regulator-max-microvolt = <3300000>; 50 regulator-always-on; 51 }; 52 53 vddfuse_reg: LDO_REG2 { 54 regulator-name = "FUSE_2V5"; 55 regulator-min-microvolt = <2500000>; 56 regulator-max-microvolt = <2500000>; 57 }; 58 }; 59 }; 60 };