1 #define	TPS659411		0x0
2 #define TPS659412		0x1
3 #define TPS659413		0x2
4 #define TPS659414		0x3
5 
6 /* I2C device address for pmic tps65941 */
7 #define TPS65941_I2C_ADDR	(0x12 >> 1)
8 #define TPS65941_LDO_NUM		4
9 #define TPS65941_BUCK_NUM		5
10 
11 /* Drivers name */
12 #define TPS65941_LDO_DRIVER		"tps65941_ldo"
13 #define TPS65941_BUCK_DRIVER		"tps65941_buck"
14 
15 #define TPS65941_BUCK_VOLT_MASK		0xFF
16 #define TPS65941_BUCK_VOLT_MAX_HEX	0xFF
17 #define TPS65941_BUCK_VOLT_MAX		3340000
18 #define TPS65941_BUCK_MODE_MASK		0x1
19 
20 #define TPS65941_LDO_VOLT_MASK		0x3E
21 #define TPS65941_LDO_VOLT_MAX_HEX	0x3A
22 #define TPS65941_LDO_VOLT_MIN_HEX	0x4
23 #define TPS65941_LDO_VOLT_MAX		3300000
24 #define TPS65941_LDO_MODE_MASK		0x1
25 #define TPS65941_LDO_BYPASS_EN		0x80
26 #define TP65941_BUCK_CONF_SLEW_MASK	0x7
27