.. | .. |
---|
3 | 3 | * |
---|
4 | 4 | * Functions to access TPS65219 power management chip. |
---|
5 | 5 | * |
---|
6 | | - * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/ |
---|
| 6 | + * Copyright (C) 2014 Texas Instruments Incorporated - https://www.ti.com/ |
---|
7 | 7 | * |
---|
8 | 8 | * This program is free software; you can redistribute it and/or |
---|
9 | 9 | * modify it under the terms of the GNU General Public License version 2 as |
---|
.. | .. |
---|
137 | 137 | #define TPS65218_CONFIG1_PGDLY_MASK 0x18 |
---|
138 | 138 | #define TPS65218_CONFIG1_STRICT BIT(2) |
---|
139 | 139 | #define TPS65218_CONFIG1_UVLO_MASK 0x3 |
---|
| 140 | +#define TPS65218_CONFIG1_UVLO_2750000 0x0 |
---|
| 141 | +#define TPS65218_CONFIG1_UVLO_2950000 0x1 |
---|
| 142 | +#define TPS65218_CONFIG1_UVLO_3250000 0x2 |
---|
| 143 | +#define TPS65218_CONFIG1_UVLO_3350000 0x3 |
---|
140 | 144 | |
---|
141 | 145 | #define TPS65218_CONFIG2_DC12_RST BIT(7) |
---|
142 | 146 | #define TPS65218_CONFIG2_UVLOHYS BIT(6) |
---|
.. | .. |
---|
208 | 212 | /* LDOs */ |
---|
209 | 213 | TPS65218_LDO_1, |
---|
210 | 214 | /* LS's */ |
---|
| 215 | + TPS65218_LS_2, |
---|
211 | 216 | TPS65218_LS_3, |
---|
212 | 217 | }; |
---|
213 | 218 | |
---|
.. | .. |
---|
218 | 223 | /* Number of LDO voltage regulators available */ |
---|
219 | 224 | #define TPS65218_NUM_LDO 1 |
---|
220 | 225 | /* Number of total LS current regulators available */ |
---|
221 | | -#define TPS65218_NUM_LS 1 |
---|
| 226 | +#define TPS65218_NUM_LS 2 |
---|
222 | 227 | /* Number of total regulators available */ |
---|
223 | 228 | #define TPS65218_NUM_REGULATOR (TPS65218_NUM_DCDC + TPS65218_NUM_LDO \ |
---|
224 | 229 | + TPS65218_NUM_LS) |
---|