]> git.ipfire.org Git - people/ms/u-boot.git/blob - drivers/power/axp221.c
sunxi: Implement poweroff support for axp221 pmic
[people/ms/u-boot.git] / drivers / power / axp221.c
1 /*
2 * AXP221 and AXP223 driver
3 *
4 * IMPORTANT when making changes to this file check that the registers
5 * used are the same for the axp221 and axp223.
6 *
7 * (C) Copyright 2014 Hans de Goede <hdegoede@redhat.com>
8 * (C) Copyright 2013 Oliver Schinagl <oliver@schinagl.nl>
9 *
10 * SPDX-License-Identifier: GPL-2.0+
11 */
12
13 #include <common.h>
14 #include <command.h>
15 #include <errno.h>
16 #include <asm/arch/pmic_bus.h>
17 #include <axp_pmic.h>
18
19 static u8 axp221_mvolt_to_cfg(int mvolt, int min, int max, int div)
20 {
21 if (mvolt < min)
22 mvolt = min;
23 else if (mvolt > max)
24 mvolt = max;
25
26 return (mvolt - min) / div;
27 }
28
29 int axp_set_dcdc1(unsigned int mvolt)
30 {
31 int ret;
32 u8 cfg = axp221_mvolt_to_cfg(mvolt, 1600, 3400, 100);
33
34 if (mvolt == 0)
35 return pmic_bus_clrbits(AXP221_OUTPUT_CTRL1,
36 AXP221_OUTPUT_CTRL1_DCDC1_EN);
37
38 ret = pmic_bus_write(AXP221_DCDC1_CTRL, cfg);
39 if (ret)
40 return ret;
41
42 ret = pmic_bus_setbits(AXP221_OUTPUT_CTRL2,
43 AXP221_OUTPUT_CTRL2_DCDC1SW_EN);
44 if (ret)
45 return ret;
46
47 return pmic_bus_setbits(AXP221_OUTPUT_CTRL1,
48 AXP221_OUTPUT_CTRL1_DCDC1_EN);
49 }
50
51 int axp_set_dcdc2(unsigned int mvolt)
52 {
53 int ret;
54 u8 cfg = axp221_mvolt_to_cfg(mvolt, 600, 1540, 20);
55
56 if (mvolt == 0)
57 return pmic_bus_clrbits(AXP221_OUTPUT_CTRL1,
58 AXP221_OUTPUT_CTRL1_DCDC2_EN);
59
60 ret = pmic_bus_write(AXP221_DCDC2_CTRL, cfg);
61 if (ret)
62 return ret;
63
64 return pmic_bus_setbits(AXP221_OUTPUT_CTRL1,
65 AXP221_OUTPUT_CTRL1_DCDC2_EN);
66 }
67
68 int axp_set_dcdc3(unsigned int mvolt)
69 {
70 int ret;
71 u8 cfg = axp221_mvolt_to_cfg(mvolt, 600, 1860, 20);
72
73 if (mvolt == 0)
74 return pmic_bus_clrbits(AXP221_OUTPUT_CTRL1,
75 AXP221_OUTPUT_CTRL1_DCDC3_EN);
76
77 ret = pmic_bus_write(AXP221_DCDC3_CTRL, cfg);
78 if (ret)
79 return ret;
80
81 return pmic_bus_setbits(AXP221_OUTPUT_CTRL1,
82 AXP221_OUTPUT_CTRL1_DCDC3_EN);
83 }
84
85 int axp_set_dcdc4(unsigned int mvolt)
86 {
87 int ret;
88 u8 cfg = axp221_mvolt_to_cfg(mvolt, 600, 1540, 20);
89
90 if (mvolt == 0)
91 return pmic_bus_clrbits(AXP221_OUTPUT_CTRL1,
92 AXP221_OUTPUT_CTRL1_DCDC4_EN);
93
94 ret = pmic_bus_write(AXP221_DCDC4_CTRL, cfg);
95 if (ret)
96 return ret;
97
98 return pmic_bus_setbits(AXP221_OUTPUT_CTRL1,
99 AXP221_OUTPUT_CTRL1_DCDC4_EN);
100 }
101
102 int axp_set_dcdc5(unsigned int mvolt)
103 {
104 int ret;
105 u8 cfg = axp221_mvolt_to_cfg(mvolt, 1000, 2550, 50);
106
107 if (mvolt == 0)
108 return pmic_bus_clrbits(AXP221_OUTPUT_CTRL1,
109 AXP221_OUTPUT_CTRL1_DCDC5_EN);
110
111 ret = pmic_bus_write(AXP221_DCDC5_CTRL, cfg);
112 if (ret)
113 return ret;
114
115 return pmic_bus_setbits(AXP221_OUTPUT_CTRL1,
116 AXP221_OUTPUT_CTRL1_DCDC5_EN);
117 }
118
119 int axp_set_dldo1(unsigned int mvolt)
120 {
121 int ret;
122 u8 cfg = axp221_mvolt_to_cfg(mvolt, 700, 3300, 100);
123
124 if (mvolt == 0)
125 return pmic_bus_clrbits(AXP221_OUTPUT_CTRL2,
126 AXP221_OUTPUT_CTRL2_DLDO1_EN);
127
128 ret = pmic_bus_write(AXP221_DLDO1_CTRL, cfg);
129 if (ret)
130 return ret;
131
132 return pmic_bus_setbits(AXP221_OUTPUT_CTRL2,
133 AXP221_OUTPUT_CTRL2_DLDO1_EN);
134 }
135
136 int axp_set_dldo2(unsigned int mvolt)
137 {
138 int ret;
139 u8 cfg = axp221_mvolt_to_cfg(mvolt, 700, 3300, 100);
140
141 if (mvolt == 0)
142 return pmic_bus_clrbits(AXP221_OUTPUT_CTRL2,
143 AXP221_OUTPUT_CTRL2_DLDO2_EN);
144
145 ret = pmic_bus_write(AXP221_DLDO2_CTRL, cfg);
146 if (ret)
147 return ret;
148
149 return pmic_bus_setbits(AXP221_OUTPUT_CTRL2,
150 AXP221_OUTPUT_CTRL2_DLDO2_EN);
151 }
152
153 int axp_set_dldo3(unsigned int mvolt)
154 {
155 int ret;
156 u8 cfg = axp221_mvolt_to_cfg(mvolt, 700, 3300, 100);
157
158 if (mvolt == 0)
159 return pmic_bus_clrbits(AXP221_OUTPUT_CTRL2,
160 AXP221_OUTPUT_CTRL2_DLDO3_EN);
161
162 ret = pmic_bus_write(AXP221_DLDO3_CTRL, cfg);
163 if (ret)
164 return ret;
165
166 return pmic_bus_setbits(AXP221_OUTPUT_CTRL2,
167 AXP221_OUTPUT_CTRL2_DLDO3_EN);
168 }
169
170 int axp_set_dldo4(unsigned int mvolt)
171 {
172 int ret;
173 u8 cfg = axp221_mvolt_to_cfg(mvolt, 700, 3300, 100);
174
175 if (mvolt == 0)
176 return pmic_bus_clrbits(AXP221_OUTPUT_CTRL2,
177 AXP221_OUTPUT_CTRL2_DLDO4_EN);
178
179 ret = pmic_bus_write(AXP221_DLDO4_CTRL, cfg);
180 if (ret)
181 return ret;
182
183 return pmic_bus_setbits(AXP221_OUTPUT_CTRL2,
184 AXP221_OUTPUT_CTRL2_DLDO4_EN);
185 }
186
187 int axp_set_aldo1(unsigned int mvolt)
188 {
189 int ret;
190 u8 cfg = axp221_mvolt_to_cfg(mvolt, 700, 3300, 100);
191
192 if (mvolt == 0)
193 return pmic_bus_clrbits(AXP221_OUTPUT_CTRL1,
194 AXP221_OUTPUT_CTRL1_ALDO1_EN);
195
196 ret = pmic_bus_write(AXP221_ALDO1_CTRL, cfg);
197 if (ret)
198 return ret;
199
200 return pmic_bus_setbits(AXP221_OUTPUT_CTRL1,
201 AXP221_OUTPUT_CTRL1_ALDO1_EN);
202 }
203
204 int axp_set_aldo2(unsigned int mvolt)
205 {
206 int ret;
207 u8 cfg = axp221_mvolt_to_cfg(mvolt, 700, 3300, 100);
208
209 if (mvolt == 0)
210 return pmic_bus_clrbits(AXP221_OUTPUT_CTRL1,
211 AXP221_OUTPUT_CTRL1_ALDO2_EN);
212
213 ret = pmic_bus_write(AXP221_ALDO2_CTRL, cfg);
214 if (ret)
215 return ret;
216
217 return pmic_bus_setbits(AXP221_OUTPUT_CTRL1,
218 AXP221_OUTPUT_CTRL1_ALDO2_EN);
219 }
220
221 int axp_set_aldo3(unsigned int mvolt)
222 {
223 int ret;
224 u8 cfg = axp221_mvolt_to_cfg(mvolt, 700, 3300, 100);
225
226 if (mvolt == 0)
227 return pmic_bus_clrbits(AXP221_OUTPUT_CTRL3,
228 AXP221_OUTPUT_CTRL3_ALDO3_EN);
229
230 ret = pmic_bus_write(AXP221_ALDO3_CTRL, cfg);
231 if (ret)
232 return ret;
233
234 return pmic_bus_setbits(AXP221_OUTPUT_CTRL3,
235 AXP221_OUTPUT_CTRL3_ALDO3_EN);
236 }
237
238 int axp_set_eldo(int eldo_num, unsigned int mvolt)
239 {
240 int ret;
241 u8 cfg = axp221_mvolt_to_cfg(mvolt, 700, 3300, 100);
242 u8 addr, bits;
243
244 switch (eldo_num) {
245 case 3:
246 addr = AXP221_ELDO3_CTRL;
247 bits = AXP221_OUTPUT_CTRL2_ELDO3_EN;
248 break;
249 case 2:
250 addr = AXP221_ELDO2_CTRL;
251 bits = AXP221_OUTPUT_CTRL2_ELDO2_EN;
252 break;
253 case 1:
254 addr = AXP221_ELDO1_CTRL;
255 bits = AXP221_OUTPUT_CTRL2_ELDO1_EN;
256 break;
257 default:
258 return -EINVAL;
259 }
260
261 if (mvolt == 0)
262 return pmic_bus_clrbits(AXP221_OUTPUT_CTRL2, bits);
263
264 ret = pmic_bus_write(addr, cfg);
265 if (ret)
266 return ret;
267
268 return pmic_bus_setbits(AXP221_OUTPUT_CTRL2, bits);
269 }
270
271 int axp_init(void)
272 {
273 u8 axp_chip_id;
274 int ret;
275
276 ret = pmic_bus_init();
277 if (ret)
278 return ret;
279
280 ret = pmic_bus_read(AXP221_CHIP_ID, &axp_chip_id);
281 if (ret)
282 return ret;
283
284 if (!(axp_chip_id == 0x6 || axp_chip_id == 0x7 || axp_chip_id == 0x17))
285 return -ENODEV;
286
287 return 0;
288 }
289
290 int axp_get_sid(unsigned int *sid)
291 {
292 u8 *dest = (u8 *)sid;
293 int i, ret;
294
295 ret = pmic_bus_init();
296 if (ret)
297 return ret;
298
299 ret = pmic_bus_write(AXP221_PAGE, 1);
300 if (ret)
301 return ret;
302
303 for (i = 0; i < 16; i++) {
304 ret = pmic_bus_read(AXP221_SID + i, &dest[i]);
305 if (ret)
306 return ret;
307 }
308
309 pmic_bus_write(AXP221_PAGE, 0);
310
311 for (i = 0; i < 4; i++)
312 sid[i] = be32_to_cpu(sid[i]);
313
314 return 0;
315 }
316
317 int do_poweroff(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
318 {
319 pmic_bus_write(AXP221_SHUTDOWN, AXP221_SHUTDOWN_POWEROFF);
320
321 /* infinite loop during shutdown */
322 while (1) {}
323
324 /* not reached */
325 return 0;
326 }