diff options
| author | Tom Rini <[email protected]> | 2025-01-14 09:35:43 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-01-14 09:35:43 -0600 |
| commit | ecc2bd711a332df46e1d552b44533e455c45a843 (patch) | |
| tree | 11c8df44da0c61dc9f7a52db7571e7fcb9dab5b0 /include | |
| parent | 6a0db9ee030f634731b792d864fc7a9df6cc6b80 (diff) | |
| parent | b9fe3ec8a235e2f4cb1091dd4b24150313944ccf (diff) | |
Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-pmic
Diffstat (limited to 'include')
| -rw-r--r-- | include/power/tps65219.h | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/include/power/tps65219.h b/include/power/tps65219.h index aa81b92266f..e8780af2d81 100644 --- a/include/power/tps65219.h +++ b/include/power/tps65219.h @@ -17,10 +17,20 @@ #define TPS65219_BUCK_DRIVER "tps65219_buck" #define TPS65219_VOLT_MASK 0x3F -#define TPS65219_BUCK_VOLT_MAX 3400000 - #define TPS65219_ENABLE_CTRL_REG 0x2 +#define TPS65219_VOLT_STEP_25MV 25000 +#define TPS65219_VOLT_STEP_50MV 50000 +#define TPS65219_VOLT_STEP_100MV 100000 + +#define TPS65219_BUCK_0V6 600000 +#define TPS65219_BUCK_1V4 1400000 +#define TPS65219_BUCK_3V4 3400000 + +#define TPS65219_BUCK_REG_0V6 0x00 +#define TPS65219_BUCK_REG_1V4 0x20 +#define TPS65219_BUCK_REG_3V4 0x34 + #define TPS65219_BUCK1_VOUT_REG 0xa #define TPS65219_BUCK2_VOUT_REG 0x9 #define TPS65219_BUCK3_VOUT_REG 0x8 |
