mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-28 00:11:32 +00:00
power: tps65941: Add macros of TPS65224 PMIC
Re-use the TPS65941 PMIC driver for TPS65224 PMIC. Add additional macros of TPS65224 to aid in the driver re-use. Signed-off-by: Bhargav Raviprakash <bhargav.r@ltts.com> Reviewed-by: Dhruva Gole <d-gole@ti.com> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
This commit is contained in:
parent
174ac98765
commit
cf94802604
1 changed files with 30 additions and 0 deletions
|
@ -3,11 +3,14 @@
|
||||||
#define TPS659413 0x2
|
#define TPS659413 0x2
|
||||||
#define TPS659414 0x3
|
#define TPS659414 0x3
|
||||||
#define LP876441 0x4
|
#define LP876441 0x4
|
||||||
|
#define TPS65224 0x5
|
||||||
|
|
||||||
/* I2C device address for pmic tps65941 */
|
/* I2C device address for pmic tps65941 */
|
||||||
#define TPS65941_I2C_ADDR (0x12 >> 1)
|
#define TPS65941_I2C_ADDR (0x12 >> 1)
|
||||||
#define TPS65941_LDO_NUM 4
|
#define TPS65941_LDO_NUM 4
|
||||||
#define TPS65941_BUCK_NUM 5
|
#define TPS65941_BUCK_NUM 5
|
||||||
|
#define TPS65224_LDO_NUM 3
|
||||||
|
#define TPS65224_BUCK_NUM 4
|
||||||
|
|
||||||
/* Drivers name */
|
/* Drivers name */
|
||||||
#define TPS65941_LDO_DRIVER "tps65941_ldo"
|
#define TPS65941_LDO_DRIVER "tps65941_ldo"
|
||||||
|
@ -25,3 +28,30 @@
|
||||||
#define TPS65941_LDO_MODE_MASK 0x1
|
#define TPS65941_LDO_MODE_MASK 0x1
|
||||||
#define TPS65941_LDO_BYPASS_EN 0x80
|
#define TPS65941_LDO_BYPASS_EN 0x80
|
||||||
#define TP65941_BUCK_CONF_SLEW_MASK 0x7
|
#define TP65941_BUCK_CONF_SLEW_MASK 0x7
|
||||||
|
|
||||||
|
#define TPS65224_BUCK_VOLT_MAX 3300000
|
||||||
|
#define TPS65224_BUCK1_VOLT_MAX_HEX 0xFD
|
||||||
|
#define TPS65224_BUCK234_VOLT_MAX_HEX 0x45
|
||||||
|
|
||||||
|
#define TPS65224_BUCK_CONF_SLEW_MASK 0x3
|
||||||
|
#define TPS65224_LDO_VOLT_MASK (0x3F << 1)
|
||||||
|
|
||||||
|
#define TPS65224_LDO1_VOLT_MIN_HEX 0x0C
|
||||||
|
#define TPS65224_LDO23_VOLT_MIN_HEX 0x00
|
||||||
|
#define TPS65224_LDO1_VOLT_MAX_HEX 0x36
|
||||||
|
#define TPS65224_LDO23_VOLT_MAX_HEX 0x38
|
||||||
|
|
||||||
|
#define TPS65224_LDO1_VOLT_MAX 3300000
|
||||||
|
#define TPS65224_LDO23_VOLT_MAX 3400000
|
||||||
|
#define TPS65224_LDO1_VOLT_MIN 1200000
|
||||||
|
#define TPS65224_LDO23_VOLT_MIN 600000
|
||||||
|
|
||||||
|
#define TPS65224_LDO_STEP 50000
|
||||||
|
|
||||||
|
#define TPS65224_LDO_BYP_CONFIG 7
|
||||||
|
|
||||||
|
#define TPS65224_LDO1_VOLT_BYP_MIN 2200000
|
||||||
|
#define TPS65224_LDO1_VOLT_BYP_MAX 3600000
|
||||||
|
|
||||||
|
#define TPS65224_LDO23_VOLT_BYP_MIN 1500000
|
||||||
|
#define TPS65224_LDO23_VOLT_BYP_MAX 5500000
|
||||||
|
|
Loading…
Add table
Reference in a new issue