]>
Commit | Line | Data |
---|---|---|
ebf0bd36 | 1 | /* |
ebf0bd36 AK |
2 | * |
3 | * Handle TWL4030 Power initialization | |
4 | * | |
5 | * Copyright (C) 2008 Nokia Corporation | |
6 | * Copyright (C) 2006 Texas Instruments, Inc | |
7 | * | |
8 | * Written by Kalle Jokiniemi | |
9 | * Peter De Schrijver <[email protected]> | |
10 | * Several fixes by Amit Kucheria <[email protected]> | |
11 | * | |
12 | * This file is subject to the terms and conditions of the GNU General | |
13 | * Public License. See the file "COPYING" in the main directory of this | |
14 | * archive for more details. | |
15 | * | |
16 | * This program is distributed in the hope that it will be useful, | |
17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 | * GNU General Public License for more details. | |
20 | * | |
21 | * You should have received a copy of the GNU General Public License | |
22 | * along with this program; if not, write to the Free Software | |
23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
24 | */ | |
25 | ||
26 | #include <linux/module.h> | |
27 | #include <linux/pm.h> | |
a2054256 | 28 | #include <linux/mfd/twl.h> |
ebf0bd36 | 29 | #include <linux/platform_device.h> |
830fafce | 30 | #include <linux/property.h> |
b0fc1da4 | 31 | #include <linux/of.h> |
ebf0bd36 AK |
32 | |
33 | #include <asm/mach-types.h> | |
34 | ||
35 | static u8 twl4030_start_script_address = 0x2b; | |
36 | ||
32057281 TL |
37 | /* Register bits for P1, P2 and P3_SW_EVENTS */ |
38 | #define PWR_STOPON_PRWON BIT(6) | |
39 | #define PWR_STOPON_SYSEN BIT(5) | |
40 | #define PWR_ENABLE_WARMRESET BIT(4) | |
41 | #define PWR_LVL_WAKEUP BIT(3) | |
42 | #define PWR_DEVACT BIT(2) | |
43 | #define PWR_DEVSLP BIT(1) | |
44 | #define PWR_DEVOFF BIT(0) | |
45 | ||
481c7f86 TL |
46 | /* Register bits for CFG_P1_TRANSITION (also for P2 and P3) */ |
47 | #define STARTON_SWBUG BIT(7) /* Start on watchdog */ | |
48 | #define STARTON_VBUS BIT(5) /* Start on VBUS */ | |
49 | #define STARTON_VBAT BIT(4) /* Start on battery insert */ | |
50 | #define STARTON_RTC BIT(3) /* Start on RTC */ | |
51 | #define STARTON_USB BIT(2) /* Start on USB host */ | |
52 | #define STARTON_CHG BIT(1) /* Start on charger */ | |
53 | #define STARTON_PWON BIT(0) /* Start on PWRON button */ | |
54 | ||
26cc3ab9 | 55 | #define SEQ_OFFSYNC (1 << 0) |
ebf0bd36 AK |
56 | |
57 | #define PHY_TO_OFF_PM_MASTER(p) (p - 0x36) | |
58 | #define PHY_TO_OFF_PM_RECEIVER(p) (p - 0x5b) | |
59 | ||
60 | /* resource - hfclk */ | |
61 | #define R_HFCLKOUT_DEV_GRP PHY_TO_OFF_PM_RECEIVER(0xe6) | |
62 | ||
63 | /* PM events */ | |
64 | #define R_P1_SW_EVENTS PHY_TO_OFF_PM_MASTER(0x46) | |
65 | #define R_P2_SW_EVENTS PHY_TO_OFF_PM_MASTER(0x47) | |
66 | #define R_P3_SW_EVENTS PHY_TO_OFF_PM_MASTER(0x48) | |
67 | #define R_CFG_P1_TRANSITION PHY_TO_OFF_PM_MASTER(0x36) | |
68 | #define R_CFG_P2_TRANSITION PHY_TO_OFF_PM_MASTER(0x37) | |
69 | #define R_CFG_P3_TRANSITION PHY_TO_OFF_PM_MASTER(0x38) | |
70 | ||
ebf0bd36 AK |
71 | #define END_OF_SCRIPT 0x3f |
72 | ||
73 | #define R_SEQ_ADD_A2S PHY_TO_OFF_PM_MASTER(0x55) | |
74 | #define R_SEQ_ADD_S2A12 PHY_TO_OFF_PM_MASTER(0x56) | |
75 | #define R_SEQ_ADD_S2A3 PHY_TO_OFF_PM_MASTER(0x57) | |
76 | #define R_SEQ_ADD_WARM PHY_TO_OFF_PM_MASTER(0x58) | |
77 | #define R_MEMORY_ADDRESS PHY_TO_OFF_PM_MASTER(0x59) | |
78 | #define R_MEMORY_DATA PHY_TO_OFF_PM_MASTER(0x5a) | |
79 | ||
890463f0 AK |
80 | /* resource configuration registers |
81 | <RESOURCE>_DEV_GRP at address 'n+0' | |
82 | <RESOURCE>_TYPE at address 'n+1' | |
83 | <RESOURCE>_REMAP at address 'n+2' | |
84 | <RESOURCE>_DEDICATED at address 'n+3' | |
85 | */ | |
e97d1546 | 86 | #define DEV_GRP_OFFSET 0 |
ebf0bd36 | 87 | #define TYPE_OFFSET 1 |
b4ead61e AK |
88 | #define REMAP_OFFSET 2 |
89 | #define DEDICATED_OFFSET 3 | |
ebf0bd36 | 90 | |
e97d1546 | 91 | /* Bit positions in the registers */ |
890463f0 AK |
92 | |
93 | /* <RESOURCE>_DEV_GRP */ | |
e97d1546 AK |
94 | #define DEV_GRP_SHIFT 5 |
95 | #define DEV_GRP_MASK (7 << DEV_GRP_SHIFT) | |
890463f0 AK |
96 | |
97 | /* <RESOURCE>_TYPE */ | |
ebf0bd36 AK |
98 | #define TYPE_SHIFT 0 |
99 | #define TYPE_MASK (7 << TYPE_SHIFT) | |
100 | #define TYPE2_SHIFT 3 | |
101 | #define TYPE2_MASK (3 << TYPE2_SHIFT) | |
102 | ||
b4ead61e AK |
103 | /* <RESOURCE>_REMAP */ |
104 | #define SLEEP_STATE_SHIFT 0 | |
105 | #define SLEEP_STATE_MASK (0xf << SLEEP_STATE_SHIFT) | |
106 | #define OFF_STATE_SHIFT 4 | |
107 | #define OFF_STATE_MASK (0xf << OFF_STATE_SHIFT) | |
108 | ||
ebf0bd36 AK |
109 | static u8 res_config_addrs[] = { |
110 | [RES_VAUX1] = 0x17, | |
111 | [RES_VAUX2] = 0x1b, | |
112 | [RES_VAUX3] = 0x1f, | |
113 | [RES_VAUX4] = 0x23, | |
114 | [RES_VMMC1] = 0x27, | |
115 | [RES_VMMC2] = 0x2b, | |
116 | [RES_VPLL1] = 0x2f, | |
117 | [RES_VPLL2] = 0x33, | |
118 | [RES_VSIM] = 0x37, | |
119 | [RES_VDAC] = 0x3b, | |
120 | [RES_VINTANA1] = 0x3f, | |
121 | [RES_VINTANA2] = 0x43, | |
122 | [RES_VINTDIG] = 0x47, | |
123 | [RES_VIO] = 0x4b, | |
124 | [RES_VDD1] = 0x55, | |
125 | [RES_VDD2] = 0x63, | |
126 | [RES_VUSB_1V5] = 0x71, | |
127 | [RES_VUSB_1V8] = 0x74, | |
128 | [RES_VUSB_3V1] = 0x77, | |
129 | [RES_VUSBCP] = 0x7a, | |
130 | [RES_REGEN] = 0x7f, | |
131 | [RES_NRES_PWRON] = 0x82, | |
132 | [RES_CLKEN] = 0x85, | |
133 | [RES_SYSEN] = 0x88, | |
134 | [RES_HFCLKOUT] = 0x8b, | |
135 | [RES_32KCLKOUT] = 0x8e, | |
136 | [RES_RESET] = 0x91, | |
d7ac829f | 137 | [RES_MAIN_REF] = 0x94, |
ebf0bd36 AK |
138 | }; |
139 | ||
e7cd1d1e TL |
140 | /* |
141 | * Usable values for .remap_sleep and .remap_off | |
142 | * Based on table "5.3.3 Resource Operating modes" | |
143 | */ | |
144 | enum { | |
145 | TWL_REMAP_OFF = 0, | |
146 | TWL_REMAP_SLEEP = 8, | |
147 | TWL_REMAP_ACTIVE = 9, | |
148 | }; | |
149 | ||
150 | /* | |
151 | * Macros to configure the PM register states for various resources. | |
152 | * Note that we can make MSG_SINGULAR etc private to this driver once | |
153 | * omap3 has been made DT only. | |
154 | */ | |
155 | #define TWL_DFLT_DELAY 2 /* typically 2 32 KiHz cycles */ | |
76714d2c | 156 | #define TWL_DEV_GRP_P123 (DEV_GRP_P1 | DEV_GRP_P2 | DEV_GRP_P3) |
e7cd1d1e TL |
157 | #define TWL_RESOURCE_SET(res, state) \ |
158 | { MSG_SINGULAR(DEV_GRP_NULL, (res), (state)), TWL_DFLT_DELAY } | |
159 | #define TWL_RESOURCE_ON(res) TWL_RESOURCE_SET(res, RES_STATE_ACTIVE) | |
160 | #define TWL_RESOURCE_OFF(res) TWL_RESOURCE_SET(res, RES_STATE_OFF) | |
161 | #define TWL_RESOURCE_RESET(res) TWL_RESOURCE_SET(res, RES_STATE_WRST) | |
162 | /* | |
163 | * It seems that type1 and type2 is just the resource init order | |
164 | * number for the type1 and type2 group. | |
165 | */ | |
76714d2c TL |
166 | #define TWL_RESOURCE_SET_ACTIVE(res, state) \ |
167 | { MSG_SINGULAR(DEV_GRP_NULL, (res), RES_STATE_ACTIVE), (state) } | |
e7cd1d1e TL |
168 | #define TWL_RESOURCE_GROUP_RESET(group, type1, type2) \ |
169 | { MSG_BROADCAST(DEV_GRP_NULL, (group), (type1), (type2), \ | |
170 | RES_STATE_WRST), TWL_DFLT_DELAY } | |
76714d2c TL |
171 | #define TWL_RESOURCE_GROUP_SLEEP(group, type, type2) \ |
172 | { MSG_BROADCAST(DEV_GRP_NULL, (group), (type), (type2), \ | |
173 | RES_STATE_SLEEP), TWL_DFLT_DELAY } | |
174 | #define TWL_RESOURCE_GROUP_ACTIVE(group, type, type2) \ | |
175 | { MSG_BROADCAST(DEV_GRP_NULL, (group), (type), (type2), \ | |
176 | RES_STATE_ACTIVE), TWL_DFLT_DELAY } | |
e7cd1d1e TL |
177 | #define TWL_REMAP_SLEEP(res, devgrp, typ, typ2) \ |
178 | { .resource = (res), .devgroup = (devgrp), \ | |
179 | .type = (typ), .type2 = (typ2), \ | |
180 | .remap_off = TWL_REMAP_OFF, \ | |
181 | .remap_sleep = TWL_REMAP_SLEEP, } | |
76714d2c TL |
182 | #define TWL_REMAP_OFF(res, devgrp, typ, typ2) \ |
183 | { .resource = (res), .devgroup = (devgrp), \ | |
184 | .type = (typ), .type2 = (typ2), \ | |
185 | .remap_off = TWL_REMAP_OFF, .remap_sleep = TWL_REMAP_OFF, } | |
e7cd1d1e | 186 | |
f791be49 | 187 | static int twl4030_write_script_byte(u8 address, u8 byte) |
ebf0bd36 AK |
188 | { |
189 | int err; | |
190 | ||
4850f124 | 191 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, address, R_MEMORY_ADDRESS); |
ebf0bd36 AK |
192 | if (err) |
193 | goto out; | |
4850f124 | 194 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, byte, R_MEMORY_DATA); |
ebf0bd36 AK |
195 | out: |
196 | return err; | |
197 | } | |
198 | ||
f791be49 | 199 | static int twl4030_write_script_ins(u8 address, u16 pmb_message, |
ebf0bd36 AK |
200 | u8 delay, u8 next) |
201 | { | |
202 | int err; | |
203 | ||
204 | address *= 4; | |
205 | err = twl4030_write_script_byte(address++, pmb_message >> 8); | |
206 | if (err) | |
207 | goto out; | |
208 | err = twl4030_write_script_byte(address++, pmb_message & 0xff); | |
209 | if (err) | |
210 | goto out; | |
211 | err = twl4030_write_script_byte(address++, delay); | |
212 | if (err) | |
213 | goto out; | |
214 | err = twl4030_write_script_byte(address++, next); | |
215 | out: | |
216 | return err; | |
217 | } | |
218 | ||
f791be49 | 219 | static int twl4030_write_script(u8 address, struct twl4030_ins *script, |
ebf0bd36 AK |
220 | int len) |
221 | { | |
f65e9eac | 222 | int err = -EINVAL; |
ebf0bd36 AK |
223 | |
224 | for (; len; len--, address++, script++) { | |
225 | if (len == 1) { | |
226 | err = twl4030_write_script_ins(address, | |
227 | script->pmb_message, | |
228 | script->delay, | |
229 | END_OF_SCRIPT); | |
230 | if (err) | |
231 | break; | |
232 | } else { | |
233 | err = twl4030_write_script_ins(address, | |
234 | script->pmb_message, | |
235 | script->delay, | |
236 | address + 1); | |
237 | if (err) | |
238 | break; | |
239 | } | |
240 | } | |
241 | return err; | |
242 | } | |
243 | ||
f791be49 | 244 | static int twl4030_config_wakeup3_sequence(u8 address) |
ebf0bd36 AK |
245 | { |
246 | int err; | |
247 | u8 data; | |
248 | ||
249 | /* Set SLEEP to ACTIVE SEQ address for P3 */ | |
4850f124 | 250 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, address, R_SEQ_ADD_S2A3); |
ebf0bd36 AK |
251 | if (err) |
252 | goto out; | |
253 | ||
254 | /* P3 LVL_WAKEUP should be on LEVEL */ | |
4850f124 | 255 | err = twl_i2c_read_u8(TWL_MODULE_PM_MASTER, &data, R_P3_SW_EVENTS); |
ebf0bd36 AK |
256 | if (err) |
257 | goto out; | |
32057281 | 258 | data |= PWR_LVL_WAKEUP; |
4850f124 | 259 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, data, R_P3_SW_EVENTS); |
ebf0bd36 AK |
260 | out: |
261 | if (err) | |
262 | pr_err("TWL4030 wakeup sequence for P3 config error\n"); | |
263 | return err; | |
264 | } | |
265 | ||
5c188d74 TL |
266 | static int |
267 | twl4030_config_wakeup12_sequence(const struct twl4030_power_data *pdata, | |
268 | u8 address) | |
ebf0bd36 AK |
269 | { |
270 | int err = 0; | |
271 | u8 data; | |
272 | ||
273 | /* Set SLEEP to ACTIVE SEQ address for P1 and P2 */ | |
4850f124 | 274 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, address, R_SEQ_ADD_S2A12); |
ebf0bd36 AK |
275 | if (err) |
276 | goto out; | |
277 | ||
278 | /* P1/P2 LVL_WAKEUP should be on LEVEL */ | |
4850f124 | 279 | err = twl_i2c_read_u8(TWL_MODULE_PM_MASTER, &data, R_P1_SW_EVENTS); |
ebf0bd36 AK |
280 | if (err) |
281 | goto out; | |
282 | ||
32057281 | 283 | data |= PWR_LVL_WAKEUP; |
4850f124 | 284 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, data, R_P1_SW_EVENTS); |
ebf0bd36 AK |
285 | if (err) |
286 | goto out; | |
287 | ||
4850f124 | 288 | err = twl_i2c_read_u8(TWL_MODULE_PM_MASTER, &data, R_P2_SW_EVENTS); |
ebf0bd36 AK |
289 | if (err) |
290 | goto out; | |
291 | ||
32057281 | 292 | data |= PWR_LVL_WAKEUP; |
4850f124 | 293 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, data, R_P2_SW_EVENTS); |
ebf0bd36 AK |
294 | if (err) |
295 | goto out; | |
296 | ||
5c188d74 TL |
297 | if (pdata->ac_charger_quirk || machine_is_omap_3430sdp() || |
298 | machine_is_omap_ldp()) { | |
ebf0bd36 | 299 | /* Disabling AC charger effect on sleep-active transitions */ |
4850f124 PU |
300 | err = twl_i2c_read_u8(TWL_MODULE_PM_MASTER, &data, |
301 | R_CFG_P1_TRANSITION); | |
ebf0bd36 AK |
302 | if (err) |
303 | goto out; | |
5c188d74 | 304 | data &= ~STARTON_CHG; |
4850f124 PU |
305 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, data, |
306 | R_CFG_P1_TRANSITION); | |
ebf0bd36 AK |
307 | if (err) |
308 | goto out; | |
309 | } | |
310 | ||
311 | out: | |
312 | if (err) | |
313 | pr_err("TWL4030 wakeup sequence for P1 and P2" \ | |
314 | "config error\n"); | |
315 | return err; | |
316 | } | |
317 | ||
f791be49 | 318 | static int twl4030_config_sleep_sequence(u8 address) |
ebf0bd36 AK |
319 | { |
320 | int err; | |
321 | ||
322 | /* Set ACTIVE to SLEEP SEQ address in T2 memory*/ | |
4850f124 | 323 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, address, R_SEQ_ADD_A2S); |
ebf0bd36 AK |
324 | |
325 | if (err) | |
326 | pr_err("TWL4030 sleep sequence config error\n"); | |
327 | ||
328 | return err; | |
329 | } | |
330 | ||
f791be49 | 331 | static int twl4030_config_warmreset_sequence(u8 address) |
ebf0bd36 AK |
332 | { |
333 | int err; | |
334 | u8 rd_data; | |
335 | ||
336 | /* Set WARM RESET SEQ address for P1 */ | |
4850f124 | 337 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, address, R_SEQ_ADD_WARM); |
ebf0bd36 AK |
338 | if (err) |
339 | goto out; | |
340 | ||
341 | /* P1/P2/P3 enable WARMRESET */ | |
4850f124 | 342 | err = twl_i2c_read_u8(TWL_MODULE_PM_MASTER, &rd_data, R_P1_SW_EVENTS); |
ebf0bd36 AK |
343 | if (err) |
344 | goto out; | |
345 | ||
32057281 | 346 | rd_data |= PWR_ENABLE_WARMRESET; |
4850f124 | 347 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, rd_data, R_P1_SW_EVENTS); |
ebf0bd36 AK |
348 | if (err) |
349 | goto out; | |
350 | ||
4850f124 | 351 | err = twl_i2c_read_u8(TWL_MODULE_PM_MASTER, &rd_data, R_P2_SW_EVENTS); |
ebf0bd36 AK |
352 | if (err) |
353 | goto out; | |
354 | ||
32057281 | 355 | rd_data |= PWR_ENABLE_WARMRESET; |
4850f124 | 356 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, rd_data, R_P2_SW_EVENTS); |
ebf0bd36 AK |
357 | if (err) |
358 | goto out; | |
359 | ||
4850f124 | 360 | err = twl_i2c_read_u8(TWL_MODULE_PM_MASTER, &rd_data, R_P3_SW_EVENTS); |
ebf0bd36 AK |
361 | if (err) |
362 | goto out; | |
363 | ||
32057281 | 364 | rd_data |= PWR_ENABLE_WARMRESET; |
4850f124 | 365 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, rd_data, R_P3_SW_EVENTS); |
ebf0bd36 AK |
366 | out: |
367 | if (err) | |
368 | pr_err("TWL4030 warmreset seq config error\n"); | |
369 | return err; | |
370 | } | |
371 | ||
f791be49 | 372 | static int twl4030_configure_resource(struct twl4030_resconfig *rconfig) |
ebf0bd36 AK |
373 | { |
374 | int rconfig_addr; | |
375 | int err; | |
376 | u8 type; | |
377 | u8 grp; | |
b4ead61e | 378 | u8 remap; |
ebf0bd36 AK |
379 | |
380 | if (rconfig->resource > TOTAL_RESOURCES) { | |
381 | pr_err("TWL4030 Resource %d does not exist\n", | |
382 | rconfig->resource); | |
383 | return -EINVAL; | |
384 | } | |
385 | ||
386 | rconfig_addr = res_config_addrs[rconfig->resource]; | |
387 | ||
388 | /* Set resource group */ | |
4850f124 | 389 | err = twl_i2c_read_u8(TWL_MODULE_PM_RECEIVER, &grp, |
fc7b92fc | 390 | rconfig_addr + DEV_GRP_OFFSET); |
ebf0bd36 AK |
391 | if (err) { |
392 | pr_err("TWL4030 Resource %d group could not be read\n", | |
393 | rconfig->resource); | |
394 | return err; | |
395 | } | |
396 | ||
56baa667 | 397 | if (rconfig->devgroup != TWL4030_RESCONFIG_UNDEF) { |
e97d1546 AK |
398 | grp &= ~DEV_GRP_MASK; |
399 | grp |= rconfig->devgroup << DEV_GRP_SHIFT; | |
4850f124 | 400 | err = twl_i2c_write_u8(TWL_MODULE_PM_RECEIVER, |
fc7b92fc | 401 | grp, rconfig_addr + DEV_GRP_OFFSET); |
ebf0bd36 AK |
402 | if (err < 0) { |
403 | pr_err("TWL4030 failed to program devgroup\n"); | |
404 | return err; | |
405 | } | |
406 | } | |
407 | ||
408 | /* Set resource types */ | |
4850f124 | 409 | err = twl_i2c_read_u8(TWL_MODULE_PM_RECEIVER, &type, |
ebf0bd36 AK |
410 | rconfig_addr + TYPE_OFFSET); |
411 | if (err < 0) { | |
412 | pr_err("TWL4030 Resource %d type could not be read\n", | |
413 | rconfig->resource); | |
414 | return err; | |
415 | } | |
416 | ||
56baa667 | 417 | if (rconfig->type != TWL4030_RESCONFIG_UNDEF) { |
ebf0bd36 AK |
418 | type &= ~TYPE_MASK; |
419 | type |= rconfig->type << TYPE_SHIFT; | |
420 | } | |
421 | ||
56baa667 | 422 | if (rconfig->type2 != TWL4030_RESCONFIG_UNDEF) { |
ebf0bd36 AK |
423 | type &= ~TYPE2_MASK; |
424 | type |= rconfig->type2 << TYPE2_SHIFT; | |
425 | } | |
426 | ||
4850f124 | 427 | err = twl_i2c_write_u8(TWL_MODULE_PM_RECEIVER, |
ebf0bd36 AK |
428 | type, rconfig_addr + TYPE_OFFSET); |
429 | if (err < 0) { | |
430 | pr_err("TWL4030 failed to program resource type\n"); | |
431 | return err; | |
432 | } | |
433 | ||
b4ead61e | 434 | /* Set remap states */ |
4850f124 | 435 | err = twl_i2c_read_u8(TWL_MODULE_PM_RECEIVER, &remap, |
fc7b92fc | 436 | rconfig_addr + REMAP_OFFSET); |
b4ead61e AK |
437 | if (err < 0) { |
438 | pr_err("TWL4030 Resource %d remap could not be read\n", | |
439 | rconfig->resource); | |
440 | return err; | |
441 | } | |
442 | ||
53cf9a60 | 443 | if (rconfig->remap_off != TWL4030_RESCONFIG_UNDEF) { |
b4ead61e AK |
444 | remap &= ~OFF_STATE_MASK; |
445 | remap |= rconfig->remap_off << OFF_STATE_SHIFT; | |
446 | } | |
447 | ||
53cf9a60 | 448 | if (rconfig->remap_sleep != TWL4030_RESCONFIG_UNDEF) { |
b4ead61e | 449 | remap &= ~SLEEP_STATE_MASK; |
1ea933f4 | 450 | remap |= rconfig->remap_sleep << SLEEP_STATE_SHIFT; |
b4ead61e AK |
451 | } |
452 | ||
4850f124 | 453 | err = twl_i2c_write_u8(TWL_MODULE_PM_RECEIVER, |
fc7b92fc B |
454 | remap, |
455 | rconfig_addr + REMAP_OFFSET); | |
b4ead61e AK |
456 | if (err < 0) { |
457 | pr_err("TWL4030 failed to program remap\n"); | |
458 | return err; | |
459 | } | |
460 | ||
ebf0bd36 AK |
461 | return 0; |
462 | } | |
463 | ||
5c188d74 TL |
464 | static int load_twl4030_script(const struct twl4030_power_data *pdata, |
465 | struct twl4030_script *tscript, | |
466 | u8 address) | |
ebf0bd36 AK |
467 | { |
468 | int err; | |
75a74565 | 469 | static int order; |
ebf0bd36 AK |
470 | |
471 | /* Make sure the script isn't going beyond last valid address (0x3f) */ | |
472 | if ((address + tscript->size) > END_OF_SCRIPT) { | |
473 | pr_err("TWL4030 scripts too big error\n"); | |
474 | return -EINVAL; | |
475 | } | |
476 | ||
477 | err = twl4030_write_script(address, tscript->script, tscript->size); | |
478 | if (err) | |
479 | goto out; | |
480 | ||
481 | if (tscript->flags & TWL4030_WRST_SCRIPT) { | |
482 | err = twl4030_config_warmreset_sequence(address); | |
483 | if (err) | |
484 | goto out; | |
485 | } | |
486 | if (tscript->flags & TWL4030_WAKEUP12_SCRIPT) { | |
fc7d76e4 TL |
487 | /* Reset any existing sleep script to avoid hangs on reboot */ |
488 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, END_OF_SCRIPT, | |
489 | R_SEQ_ADD_A2S); | |
490 | if (err) | |
491 | goto out; | |
492 | ||
5c188d74 | 493 | err = twl4030_config_wakeup12_sequence(pdata, address); |
ebf0bd36 AK |
494 | if (err) |
495 | goto out; | |
75a74565 | 496 | order = 1; |
ebf0bd36 AK |
497 | } |
498 | if (tscript->flags & TWL4030_WAKEUP3_SCRIPT) { | |
499 | err = twl4030_config_wakeup3_sequence(address); | |
500 | if (err) | |
501 | goto out; | |
502 | } | |
c62dd365 | 503 | if (tscript->flags & TWL4030_SLEEP_SCRIPT) { |
1f968ff6 | 504 | if (!order) |
81d30eda | 505 | pr_warn("TWL4030: Bad order of scripts (sleep script before wakeup) Leads to boot failure on some boards\n"); |
ebf0bd36 | 506 | err = twl4030_config_sleep_sequence(address); |
c62dd365 | 507 | } |
ebf0bd36 AK |
508 | out: |
509 | return err; | |
510 | } | |
511 | ||
11a441ce MT |
512 | int twl4030_remove_script(u8 flags) |
513 | { | |
514 | int err = 0; | |
515 | ||
4850f124 PU |
516 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, TWL4030_PM_MASTER_KEY_CFG1, |
517 | TWL4030_PM_MASTER_PROTECT_KEY); | |
11a441ce MT |
518 | if (err) { |
519 | pr_err("twl4030: unable to unlock PROTECT_KEY\n"); | |
520 | return err; | |
521 | } | |
522 | ||
4850f124 PU |
523 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, TWL4030_PM_MASTER_KEY_CFG2, |
524 | TWL4030_PM_MASTER_PROTECT_KEY); | |
11a441ce MT |
525 | if (err) { |
526 | pr_err("twl4030: unable to unlock PROTECT_KEY\n"); | |
527 | return err; | |
528 | } | |
529 | ||
530 | if (flags & TWL4030_WRST_SCRIPT) { | |
4850f124 PU |
531 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, END_OF_SCRIPT, |
532 | R_SEQ_ADD_WARM); | |
11a441ce MT |
533 | if (err) |
534 | return err; | |
535 | } | |
536 | if (flags & TWL4030_WAKEUP12_SCRIPT) { | |
4850f124 PU |
537 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, END_OF_SCRIPT, |
538 | R_SEQ_ADD_S2A12); | |
eac78a21 | 539 | if (err) |
11a441ce MT |
540 | return err; |
541 | } | |
542 | if (flags & TWL4030_WAKEUP3_SCRIPT) { | |
4850f124 PU |
543 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, END_OF_SCRIPT, |
544 | R_SEQ_ADD_S2A3); | |
11a441ce MT |
545 | if (err) |
546 | return err; | |
547 | } | |
548 | if (flags & TWL4030_SLEEP_SCRIPT) { | |
4850f124 PU |
549 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, END_OF_SCRIPT, |
550 | R_SEQ_ADD_A2S); | |
11a441ce MT |
551 | if (err) |
552 | return err; | |
553 | } | |
554 | ||
4850f124 PU |
555 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, 0, |
556 | TWL4030_PM_MASTER_PROTECT_KEY); | |
11a441ce MT |
557 | if (err) |
558 | pr_err("TWL4030 Unable to relock registers\n"); | |
559 | ||
560 | return err; | |
561 | } | |
562 | ||
e7cd1d1e TL |
563 | static int |
564 | twl4030_power_configure_scripts(const struct twl4030_power_data *pdata) | |
f58cb407 FV |
565 | { |
566 | int err; | |
567 | int i; | |
568 | u8 address = twl4030_start_script_address; | |
569 | ||
570 | for (i = 0; i < pdata->num; i++) { | |
5c188d74 | 571 | err = load_twl4030_script(pdata, pdata->scripts[i], address); |
f58cb407 FV |
572 | if (err) |
573 | return err; | |
574 | address += pdata->scripts[i]->size; | |
575 | } | |
576 | ||
577 | return 0; | |
578 | } | |
579 | ||
482e7db1 TL |
580 | static void twl4030_patch_rconfig(struct twl4030_resconfig *common, |
581 | struct twl4030_resconfig *board) | |
582 | { | |
583 | while (common->resource) { | |
584 | struct twl4030_resconfig *b = board; | |
585 | ||
586 | while (b->resource) { | |
587 | if (b->resource == common->resource) { | |
588 | *common = *b; | |
589 | break; | |
590 | } | |
591 | b++; | |
592 | } | |
593 | common++; | |
594 | } | |
595 | } | |
596 | ||
e7cd1d1e TL |
597 | static int |
598 | twl4030_power_configure_resources(const struct twl4030_power_data *pdata) | |
f58cb407 FV |
599 | { |
600 | struct twl4030_resconfig *resconfig = pdata->resource_config; | |
482e7db1 | 601 | struct twl4030_resconfig *boardconf = pdata->board_config; |
f58cb407 FV |
602 | int err; |
603 | ||
604 | if (resconfig) { | |
482e7db1 TL |
605 | if (boardconf) |
606 | twl4030_patch_rconfig(resconfig, boardconf); | |
607 | ||
f58cb407 FV |
608 | while (resconfig->resource) { |
609 | err = twl4030_configure_resource(resconfig); | |
610 | if (err) | |
611 | return err; | |
612 | resconfig++; | |
613 | } | |
614 | } | |
615 | ||
616 | return 0; | |
617 | } | |
618 | ||
481c7f86 TL |
619 | static int twl4030_starton_mask_and_set(u8 bitmask, u8 bitvalues) |
620 | { | |
621 | u8 regs[3] = { TWL4030_PM_MASTER_CFG_P1_TRANSITION, | |
622 | TWL4030_PM_MASTER_CFG_P2_TRANSITION, | |
623 | TWL4030_PM_MASTER_CFG_P3_TRANSITION, }; | |
624 | u8 val; | |
625 | int i, err; | |
626 | ||
627 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, TWL4030_PM_MASTER_KEY_CFG1, | |
628 | TWL4030_PM_MASTER_PROTECT_KEY); | |
629 | if (err) | |
630 | goto relock; | |
631 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, | |
632 | TWL4030_PM_MASTER_KEY_CFG2, | |
633 | TWL4030_PM_MASTER_PROTECT_KEY); | |
634 | if (err) | |
635 | goto relock; | |
636 | ||
637 | for (i = 0; i < sizeof(regs); i++) { | |
638 | err = twl_i2c_read_u8(TWL_MODULE_PM_MASTER, | |
639 | &val, regs[i]); | |
640 | if (err) | |
641 | break; | |
642 | val = (~bitmask & val) | (bitmask & bitvalues); | |
643 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, | |
644 | val, regs[i]); | |
645 | if (err) | |
646 | break; | |
647 | } | |
648 | ||
649 | if (err) | |
650 | pr_err("TWL4030 Register access failed: %i\n", err); | |
651 | ||
652 | relock: | |
653 | return twl_i2c_write_u8(TWL_MODULE_PM_MASTER, 0, | |
654 | TWL4030_PM_MASTER_PROTECT_KEY); | |
655 | } | |
656 | ||
26cc3ab9 IG |
657 | /* |
658 | * In master mode, start the power off sequence. | |
659 | * After a successful execution, TWL shuts down the power to the SoC | |
660 | * and all peripherals connected to it. | |
661 | */ | |
662 | void twl4030_power_off(void) | |
663 | { | |
664 | int err; | |
665 | ||
481c7f86 TL |
666 | /* Disable start on charger or VBUS as it can break poweroff */ |
667 | err = twl4030_starton_mask_and_set(STARTON_VBUS | STARTON_CHG, 0); | |
668 | if (err) | |
669 | pr_err("TWL4030 Unable to configure start-up\n"); | |
670 | ||
4850f124 | 671 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, PWR_DEVOFF, |
26cc3ab9 IG |
672 | TWL4030_PM_MASTER_P1_SW_EVENTS); |
673 | if (err) | |
674 | pr_err("TWL4030 Unable to power off\n"); | |
675 | } | |
676 | ||
e7cd1d1e | 677 | static bool twl4030_power_use_poweroff(const struct twl4030_power_data *pdata, |
b0fc1da4 FV |
678 | struct device_node *node) |
679 | { | |
680 | if (pdata && pdata->use_poweroff) | |
681 | return true; | |
682 | ||
fecc4452 NM |
683 | if (of_property_read_bool(node, "ti,system-power-controller")) |
684 | return true; | |
685 | ||
b0fc1da4 FV |
686 | if (of_property_read_bool(node, "ti,use_poweroff")) |
687 | return true; | |
688 | ||
689 | return false; | |
690 | } | |
691 | ||
e7cd1d1e TL |
692 | #ifdef CONFIG_OF |
693 | ||
694 | /* Generic warm reset configuration for omap3 */ | |
695 | ||
696 | static struct twl4030_ins omap3_wrst_seq[] = { | |
697 | TWL_RESOURCE_OFF(RES_NRES_PWRON), | |
698 | TWL_RESOURCE_OFF(RES_RESET), | |
699 | TWL_RESOURCE_RESET(RES_MAIN_REF), | |
700 | TWL_RESOURCE_GROUP_RESET(RES_GRP_ALL, RES_TYPE_R0, RES_TYPE2_R2), | |
701 | TWL_RESOURCE_RESET(RES_VUSB_3V1), | |
ad48ed0c | 702 | TWL_RESOURCE_RESET(RES_VMMC1), |
e7cd1d1e TL |
703 | TWL_RESOURCE_GROUP_RESET(RES_GRP_ALL, RES_TYPE_R0, RES_TYPE2_R1), |
704 | TWL_RESOURCE_GROUP_RESET(RES_GRP_RC, RES_TYPE_ALL, RES_TYPE2_R0), | |
705 | TWL_RESOURCE_ON(RES_RESET), | |
706 | TWL_RESOURCE_ON(RES_NRES_PWRON), | |
707 | }; | |
708 | ||
709 | static struct twl4030_script omap3_wrst_script = { | |
710 | .script = omap3_wrst_seq, | |
711 | .size = ARRAY_SIZE(omap3_wrst_seq), | |
712 | .flags = TWL4030_WRST_SCRIPT, | |
713 | }; | |
714 | ||
715 | static struct twl4030_script *omap3_reset_scripts[] = { | |
716 | &omap3_wrst_script, | |
717 | }; | |
718 | ||
719 | static struct twl4030_resconfig omap3_rconfig[] = { | |
720 | TWL_REMAP_SLEEP(RES_HFCLKOUT, DEV_GRP_P3, -1, -1), | |
721 | TWL_REMAP_SLEEP(RES_VDD1, DEV_GRP_P1, -1, -1), | |
722 | TWL_REMAP_SLEEP(RES_VDD2, DEV_GRP_P1, -1, -1), | |
723 | { 0, 0 }, | |
724 | }; | |
725 | ||
726 | static struct twl4030_power_data omap3_reset = { | |
727 | .scripts = omap3_reset_scripts, | |
728 | .num = ARRAY_SIZE(omap3_reset_scripts), | |
729 | .resource_config = omap3_rconfig, | |
730 | }; | |
731 | ||
76714d2c TL |
732 | /* Recommended generic default idle configuration for off-idle */ |
733 | ||
734 | /* Broadcast message to put res to sleep */ | |
735 | static struct twl4030_ins omap3_idle_sleep_on_seq[] = { | |
736 | TWL_RESOURCE_GROUP_SLEEP(RES_GRP_ALL, RES_TYPE_ALL, 0), | |
737 | }; | |
738 | ||
739 | static struct twl4030_script omap3_idle_sleep_on_script = { | |
740 | .script = omap3_idle_sleep_on_seq, | |
741 | .size = ARRAY_SIZE(omap3_idle_sleep_on_seq), | |
742 | .flags = TWL4030_SLEEP_SCRIPT, | |
743 | }; | |
744 | ||
745 | /* Broadcast message to put res to active */ | |
746 | static struct twl4030_ins omap3_idle_wakeup_p12_seq[] = { | |
747 | TWL_RESOURCE_GROUP_ACTIVE(RES_GRP_ALL, RES_TYPE_ALL, 0), | |
748 | }; | |
749 | ||
750 | static struct twl4030_script omap3_idle_wakeup_p12_script = { | |
751 | .script = omap3_idle_wakeup_p12_seq, | |
752 | .size = ARRAY_SIZE(omap3_idle_wakeup_p12_seq), | |
753 | .flags = TWL4030_WAKEUP12_SCRIPT, | |
754 | }; | |
755 | ||
756 | /* Broadcast message to put res to active */ | |
757 | static struct twl4030_ins omap3_idle_wakeup_p3_seq[] = { | |
758 | TWL_RESOURCE_SET_ACTIVE(RES_CLKEN, 0x37), | |
759 | TWL_RESOURCE_GROUP_ACTIVE(RES_GRP_ALL, RES_TYPE_ALL, 0), | |
760 | }; | |
761 | ||
762 | static struct twl4030_script omap3_idle_wakeup_p3_script = { | |
763 | .script = omap3_idle_wakeup_p3_seq, | |
764 | .size = ARRAY_SIZE(omap3_idle_wakeup_p3_seq), | |
765 | .flags = TWL4030_WAKEUP3_SCRIPT, | |
766 | }; | |
767 | ||
768 | static struct twl4030_script *omap3_idle_scripts[] = { | |
769 | &omap3_idle_wakeup_p12_script, | |
770 | &omap3_idle_wakeup_p3_script, | |
771 | &omap3_wrst_script, | |
772 | &omap3_idle_sleep_on_script, | |
773 | }; | |
774 | ||
775 | /* | |
776 | * Recommended configuration based on "Recommended Sleep | |
777 | * Sequences for the Zoom Platform": | |
778 | * http://omappedia.com/wiki/File:Recommended_Sleep_Sequences_Zoom.pdf | |
779 | * Note that the type1 and type2 seem to be just the init order number | |
780 | * for type1 and type2 groups as specified in the document mentioned | |
781 | * above. | |
782 | */ | |
783 | static struct twl4030_resconfig omap3_idle_rconfig[] = { | |
daebabd5 TL |
784 | TWL_REMAP_SLEEP(RES_VAUX1, TWL4030_RESCONFIG_UNDEF, 0, 0), |
785 | TWL_REMAP_SLEEP(RES_VAUX2, TWL4030_RESCONFIG_UNDEF, 0, 0), | |
786 | TWL_REMAP_SLEEP(RES_VAUX3, TWL4030_RESCONFIG_UNDEF, 0, 0), | |
787 | TWL_REMAP_SLEEP(RES_VAUX4, TWL4030_RESCONFIG_UNDEF, 0, 0), | |
788 | TWL_REMAP_SLEEP(RES_VMMC1, TWL4030_RESCONFIG_UNDEF, 0, 0), | |
789 | TWL_REMAP_SLEEP(RES_VMMC2, TWL4030_RESCONFIG_UNDEF, 0, 0), | |
76714d2c TL |
790 | TWL_REMAP_OFF(RES_VPLL1, DEV_GRP_P1, 3, 1), |
791 | TWL_REMAP_SLEEP(RES_VPLL2, DEV_GRP_P1, 0, 0), | |
daebabd5 TL |
792 | TWL_REMAP_SLEEP(RES_VSIM, TWL4030_RESCONFIG_UNDEF, 0, 0), |
793 | TWL_REMAP_SLEEP(RES_VDAC, TWL4030_RESCONFIG_UNDEF, 0, 0), | |
76714d2c TL |
794 | TWL_REMAP_SLEEP(RES_VINTANA1, TWL_DEV_GRP_P123, 1, 2), |
795 | TWL_REMAP_SLEEP(RES_VINTANA2, TWL_DEV_GRP_P123, 0, 2), | |
796 | TWL_REMAP_SLEEP(RES_VINTDIG, TWL_DEV_GRP_P123, 1, 2), | |
797 | TWL_REMAP_SLEEP(RES_VIO, TWL_DEV_GRP_P123, 2, 2), | |
798 | TWL_REMAP_OFF(RES_VDD1, DEV_GRP_P1, 4, 1), | |
799 | TWL_REMAP_OFF(RES_VDD2, DEV_GRP_P1, 3, 1), | |
daebabd5 TL |
800 | TWL_REMAP_SLEEP(RES_VUSB_1V5, TWL4030_RESCONFIG_UNDEF, 0, 0), |
801 | TWL_REMAP_SLEEP(RES_VUSB_1V8, TWL4030_RESCONFIG_UNDEF, 0, 0), | |
76714d2c TL |
802 | TWL_REMAP_SLEEP(RES_VUSB_3V1, TWL_DEV_GRP_P123, 0, 0), |
803 | /* Resource #20 USB charge pump skipped */ | |
804 | TWL_REMAP_SLEEP(RES_REGEN, TWL_DEV_GRP_P123, 2, 1), | |
805 | TWL_REMAP_SLEEP(RES_NRES_PWRON, TWL_DEV_GRP_P123, 0, 1), | |
806 | TWL_REMAP_SLEEP(RES_CLKEN, TWL_DEV_GRP_P123, 3, 2), | |
807 | TWL_REMAP_SLEEP(RES_SYSEN, TWL_DEV_GRP_P123, 6, 1), | |
808 | TWL_REMAP_SLEEP(RES_HFCLKOUT, DEV_GRP_P3, 0, 2), | |
809 | TWL_REMAP_SLEEP(RES_32KCLKOUT, TWL_DEV_GRP_P123, 0, 0), | |
810 | TWL_REMAP_SLEEP(RES_RESET, TWL_DEV_GRP_P123, 6, 0), | |
811 | TWL_REMAP_SLEEP(RES_MAIN_REF, TWL_DEV_GRP_P123, 0, 0), | |
812 | { /* Terminator */ }, | |
813 | }; | |
814 | ||
815 | static struct twl4030_power_data omap3_idle = { | |
816 | .scripts = omap3_idle_scripts, | |
817 | .num = ARRAY_SIZE(omap3_idle_scripts), | |
818 | .resource_config = omap3_idle_rconfig, | |
819 | }; | |
820 | ||
43fef47f TL |
821 | /* Disable 32 KiHz oscillator during idle */ |
822 | static struct twl4030_resconfig osc_off_rconfig[] = { | |
823 | TWL_REMAP_OFF(RES_CLKEN, DEV_GRP_P1 | DEV_GRP_P3, 3, 2), | |
824 | { /* Terminator */ }, | |
825 | }; | |
826 | ||
827 | static struct twl4030_power_data osc_off_idle = { | |
828 | .scripts = omap3_idle_scripts, | |
829 | .num = ARRAY_SIZE(omap3_idle_scripts), | |
830 | .resource_config = omap3_idle_rconfig, | |
831 | .board_config = osc_off_rconfig, | |
832 | }; | |
833 | ||
5c188d74 TL |
834 | static struct twl4030_power_data omap3_idle_ac_quirk = { |
835 | .scripts = omap3_idle_scripts, | |
836 | .num = ARRAY_SIZE(omap3_idle_scripts), | |
837 | .resource_config = omap3_idle_rconfig, | |
838 | .ac_charger_quirk = true, | |
839 | }; | |
840 | ||
841 | static struct twl4030_power_data omap3_idle_ac_quirk_osc_off = { | |
842 | .scripts = omap3_idle_scripts, | |
843 | .num = ARRAY_SIZE(omap3_idle_scripts), | |
844 | .resource_config = omap3_idle_rconfig, | |
845 | .board_config = osc_off_rconfig, | |
846 | .ac_charger_quirk = true, | |
847 | }; | |
848 | ||
908725d5 | 849 | static const struct of_device_id twl4030_power_of_match[] = { |
1b9b46d0 TL |
850 | { |
851 | .compatible = "ti,twl4030-power", | |
852 | }, | |
e7cd1d1e TL |
853 | { |
854 | .compatible = "ti,twl4030-power-reset", | |
855 | .data = &omap3_reset, | |
856 | }, | |
76714d2c TL |
857 | { |
858 | .compatible = "ti,twl4030-power-idle", | |
859 | .data = &omap3_idle, | |
860 | }, | |
43fef47f TL |
861 | { |
862 | .compatible = "ti,twl4030-power-idle-osc-off", | |
863 | .data = &osc_off_idle, | |
864 | }, | |
5c188d74 TL |
865 | { |
866 | .compatible = "ti,twl4030-power-omap3-sdp", | |
867 | .data = &omap3_idle_ac_quirk, | |
868 | }, | |
869 | { | |
870 | .compatible = "ti,twl4030-power-omap3-ldp", | |
871 | .data = &omap3_idle_ac_quirk_osc_off, | |
872 | }, | |
873 | { | |
874 | .compatible = "ti,twl4030-power-omap3-evm", | |
875 | .data = &omap3_idle_ac_quirk, | |
876 | }, | |
e7cd1d1e TL |
877 | { }, |
878 | }; | |
879 | MODULE_DEVICE_TABLE(of, twl4030_power_of_match); | |
880 | #endif /* CONFIG_OF */ | |
881 | ||
fae01582 | 882 | static int twl4030_power_probe(struct platform_device *pdev) |
ebf0bd36 | 883 | { |
e7cd1d1e | 884 | const struct twl4030_power_data *pdata = dev_get_platdata(&pdev->dev); |
b0fc1da4 | 885 | struct device_node *node = pdev->dev.of_node; |
ebf0bd36 | 886 | int err = 0; |
cb3cabd6 | 887 | int err2 = 0; |
f58cb407 | 888 | u8 val; |
ebf0bd36 | 889 | |
b0fc1da4 FV |
890 | if (!pdata && !node) { |
891 | dev_err(&pdev->dev, "Platform data is missing\n"); | |
892 | return -EINVAL; | |
893 | } | |
894 | ||
4850f124 PU |
895 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, TWL4030_PM_MASTER_KEY_CFG1, |
896 | TWL4030_PM_MASTER_PROTECT_KEY); | |
e77a4c2f FV |
897 | err |= twl_i2c_write_u8(TWL_MODULE_PM_MASTER, |
898 | TWL4030_PM_MASTER_KEY_CFG2, | |
4850f124 | 899 | TWL4030_PM_MASTER_PROTECT_KEY); |
e77a4c2f FV |
900 | |
901 | if (err) { | |
902 | pr_err("TWL4030 Unable to unlock registers\n"); | |
903 | return err; | |
904 | } | |
ebf0bd36 | 905 | |
830fafce RH |
906 | if (node) |
907 | pdata = device_get_match_data(&pdev->dev); | |
e7cd1d1e | 908 | |
b0fc1da4 | 909 | if (pdata) { |
b0fc1da4 | 910 | err = twl4030_power_configure_scripts(pdata); |
e77a4c2f FV |
911 | if (err) { |
912 | pr_err("TWL4030 failed to load scripts\n"); | |
cb3cabd6 | 913 | goto relock; |
e77a4c2f | 914 | } |
b0fc1da4 | 915 | err = twl4030_power_configure_resources(pdata); |
e77a4c2f FV |
916 | if (err) { |
917 | pr_err("TWL4030 failed to configure resource\n"); | |
cb3cabd6 | 918 | goto relock; |
e77a4c2f | 919 | } |
b0fc1da4 | 920 | } |
ebf0bd36 | 921 | |
26cc3ab9 | 922 | /* Board has to be wired properly to use this feature */ |
b0fc1da4 | 923 | if (twl4030_power_use_poweroff(pdata, node) && !pm_power_off) { |
26cc3ab9 | 924 | /* Default for SEQ_OFFSYNC is set, lets ensure this */ |
4850f124 | 925 | err = twl_i2c_read_u8(TWL_MODULE_PM_MASTER, &val, |
26cc3ab9 IG |
926 | TWL4030_PM_MASTER_CFG_P123_TRANSITION); |
927 | if (err) { | |
81d30eda | 928 | pr_warn("TWL4030 Unable to read registers\n"); |
26cc3ab9 IG |
929 | } else if (!(val & SEQ_OFFSYNC)) { |
930 | val |= SEQ_OFFSYNC; | |
4850f124 | 931 | err = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, val, |
26cc3ab9 IG |
932 | TWL4030_PM_MASTER_CFG_P123_TRANSITION); |
933 | if (err) { | |
934 | pr_err("TWL4030 Unable to setup SEQ_OFFSYNC\n"); | |
935 | goto relock; | |
936 | } | |
937 | } | |
938 | ||
939 | pm_power_off = twl4030_power_off; | |
940 | } | |
941 | ||
942 | relock: | |
cb3cabd6 | 943 | err2 = twl_i2c_write_u8(TWL_MODULE_PM_MASTER, 0, |
4850f124 | 944 | TWL4030_PM_MASTER_PROTECT_KEY); |
cb3cabd6 | 945 | if (err2) { |
ebf0bd36 | 946 | pr_err("TWL4030 Unable to relock registers\n"); |
cb3cabd6 FV |
947 | return err2; |
948 | } | |
949 | ||
637d6895 | 950 | return err; |
637d6895 FV |
951 | } |
952 | ||
637d6895 FV |
953 | static struct platform_driver twl4030_power_driver = { |
954 | .driver = { | |
955 | .name = "twl4030_power", | |
b0fc1da4 | 956 | .of_match_table = of_match_ptr(twl4030_power_of_match), |
637d6895 FV |
957 | }, |
958 | .probe = twl4030_power_probe, | |
637d6895 FV |
959 | }; |
960 | ||
961 | module_platform_driver(twl4030_power_driver); | |
962 | ||
963 | MODULE_AUTHOR("Nokia Corporation"); | |
964 | MODULE_AUTHOR("Texas Instruments, Inc."); | |
965 | MODULE_DESCRIPTION("Power management for TWL4030"); | |
966 | MODULE_LICENSE("GPL"); | |
967 | MODULE_ALIAS("platform:twl4030_power"); |