]>
Commit | Line | Data |
---|---|---|
bbd51b1f HZ |
1 | /* |
2 | * Base driver for Marvell 88PM8607 | |
3 | * | |
4 | * Copyright (C) 2009 Marvell International Ltd. | |
2e57848f LJ |
5 | * |
6 | * Author: Haojian Zhuang <[email protected]> | |
bbd51b1f HZ |
7 | * |
8 | * This program is free software; you can redistribute it and/or modify | |
9 | * it under the terms of the GNU General Public License version 2 as | |
10 | * published by the Free Software Foundation. | |
11 | */ | |
12 | ||
13 | #include <linux/kernel.h> | |
14 | #include <linux/module.h> | |
f2f218cd | 15 | #include <linux/err.h> |
5c42e8c4 | 16 | #include <linux/i2c.h> |
2afa62ea | 17 | #include <linux/irq.h> |
bbd51b1f | 18 | #include <linux/interrupt.h> |
837c8293 | 19 | #include <linux/irqdomain.h> |
2e57d567 HZ |
20 | #include <linux/of.h> |
21 | #include <linux/of_platform.h> | |
bbd51b1f | 22 | #include <linux/platform_device.h> |
f2f218cd HZ |
23 | #include <linux/regmap.h> |
24 | #include <linux/slab.h> | |
bbd51b1f | 25 | #include <linux/mfd/core.h> |
53dbab7a | 26 | #include <linux/mfd/88pm860x.h> |
22aad001 | 27 | #include <linux/regulator/machine.h> |
a830d28b | 28 | #include <linux/power/charger-manager.h> |
bbd51b1f | 29 | |
2afa62ea HZ |
30 | #define INT_STATUS_NUM 3 |
31 | ||
a9e9ce4c | 32 | static struct resource bk0_resources[] = { |
a6ccdcd9 HZ |
33 | {2, 2, "duty cycle", IORESOURCE_REG, }, |
34 | {3, 3, "always on", IORESOURCE_REG, }, | |
35 | {3, 3, "current", IORESOURCE_REG, }, | |
36 | }; | |
a9e9ce4c | 37 | static struct resource bk1_resources[] = { |
a6ccdcd9 HZ |
38 | {4, 4, "duty cycle", IORESOURCE_REG, }, |
39 | {5, 5, "always on", IORESOURCE_REG, }, | |
40 | {5, 5, "current", IORESOURCE_REG, }, | |
41 | }; | |
a9e9ce4c | 42 | static struct resource bk2_resources[] = { |
a6ccdcd9 HZ |
43 | {6, 6, "duty cycle", IORESOURCE_REG, }, |
44 | {7, 7, "always on", IORESOURCE_REG, }, | |
45 | {5, 5, "current", IORESOURCE_REG, }, | |
a16122bc | 46 | }; |
adb70483 | 47 | |
a9e9ce4c | 48 | static struct resource led0_resources[] = { |
894fc8f2 HZ |
49 | /* RGB1 Red LED */ |
50 | {0xd, 0xd, "control", IORESOURCE_REG, }, | |
51 | {0xc, 0xc, "blink", IORESOURCE_REG, }, | |
52 | }; | |
a9e9ce4c | 53 | static struct resource led1_resources[] = { |
894fc8f2 HZ |
54 | /* RGB1 Green LED */ |
55 | {0xe, 0xe, "control", IORESOURCE_REG, }, | |
56 | {0xc, 0xc, "blink", IORESOURCE_REG, }, | |
57 | }; | |
a9e9ce4c | 58 | static struct resource led2_resources[] = { |
894fc8f2 HZ |
59 | /* RGB1 Blue LED */ |
60 | {0xf, 0xf, "control", IORESOURCE_REG, }, | |
61 | {0xc, 0xc, "blink", IORESOURCE_REG, }, | |
62 | }; | |
a9e9ce4c | 63 | static struct resource led3_resources[] = { |
894fc8f2 HZ |
64 | /* RGB2 Red LED */ |
65 | {0x9, 0x9, "control", IORESOURCE_REG, }, | |
66 | {0x8, 0x8, "blink", IORESOURCE_REG, }, | |
67 | }; | |
a9e9ce4c | 68 | static struct resource led4_resources[] = { |
894fc8f2 HZ |
69 | /* RGB2 Green LED */ |
70 | {0xa, 0xa, "control", IORESOURCE_REG, }, | |
71 | {0x8, 0x8, "blink", IORESOURCE_REG, }, | |
72 | }; | |
a9e9ce4c | 73 | static struct resource led5_resources[] = { |
894fc8f2 HZ |
74 | /* RGB2 Blue LED */ |
75 | {0xb, 0xb, "control", IORESOURCE_REG, }, | |
76 | {0x8, 0x8, "blink", IORESOURCE_REG, }, | |
3154c344 HZ |
77 | }; |
78 | ||
a9e9ce4c | 79 | static struct resource buck1_resources[] = { |
a70abacb HZ |
80 | {0x24, 0x24, "buck set", IORESOURCE_REG, }, |
81 | }; | |
a9e9ce4c | 82 | static struct resource buck2_resources[] = { |
a70abacb HZ |
83 | {0x25, 0x25, "buck set", IORESOURCE_REG, }, |
84 | }; | |
a9e9ce4c | 85 | static struct resource buck3_resources[] = { |
a70abacb HZ |
86 | {0x26, 0x26, "buck set", IORESOURCE_REG, }, |
87 | }; | |
a9e9ce4c | 88 | static struct resource ldo1_resources[] = { |
a70abacb HZ |
89 | {0x10, 0x10, "ldo set", IORESOURCE_REG, }, |
90 | }; | |
a9e9ce4c | 91 | static struct resource ldo2_resources[] = { |
a70abacb HZ |
92 | {0x11, 0x11, "ldo set", IORESOURCE_REG, }, |
93 | }; | |
a9e9ce4c | 94 | static struct resource ldo3_resources[] = { |
a70abacb HZ |
95 | {0x12, 0x12, "ldo set", IORESOURCE_REG, }, |
96 | }; | |
a9e9ce4c | 97 | static struct resource ldo4_resources[] = { |
a70abacb HZ |
98 | {0x13, 0x13, "ldo set", IORESOURCE_REG, }, |
99 | }; | |
a9e9ce4c | 100 | static struct resource ldo5_resources[] = { |
a70abacb HZ |
101 | {0x14, 0x14, "ldo set", IORESOURCE_REG, }, |
102 | }; | |
a9e9ce4c | 103 | static struct resource ldo6_resources[] = { |
a70abacb HZ |
104 | {0x15, 0x15, "ldo set", IORESOURCE_REG, }, |
105 | }; | |
a9e9ce4c | 106 | static struct resource ldo7_resources[] = { |
a70abacb HZ |
107 | {0x16, 0x16, "ldo set", IORESOURCE_REG, }, |
108 | }; | |
a9e9ce4c | 109 | static struct resource ldo8_resources[] = { |
a70abacb HZ |
110 | {0x17, 0x17, "ldo set", IORESOURCE_REG, }, |
111 | }; | |
a9e9ce4c | 112 | static struct resource ldo9_resources[] = { |
a70abacb HZ |
113 | {0x18, 0x18, "ldo set", IORESOURCE_REG, }, |
114 | }; | |
a9e9ce4c | 115 | static struct resource ldo10_resources[] = { |
a70abacb HZ |
116 | {0x19, 0x19, "ldo set", IORESOURCE_REG, }, |
117 | }; | |
a9e9ce4c | 118 | static struct resource ldo12_resources[] = { |
a70abacb HZ |
119 | {0x1a, 0x1a, "ldo set", IORESOURCE_REG, }, |
120 | }; | |
a9e9ce4c | 121 | static struct resource ldo_vibrator_resources[] = { |
a70abacb HZ |
122 | {0x28, 0x28, "ldo set", IORESOURCE_REG, }, |
123 | }; | |
a9e9ce4c | 124 | static struct resource ldo14_resources[] = { |
a70abacb | 125 | {0x1b, 0x1b, "ldo set", IORESOURCE_REG, }, |
22aad001 HZ |
126 | }; |
127 | ||
a9e9ce4c | 128 | static struct resource touch_resources[] = { |
c9f560b3 HZ |
129 | {PM8607_IRQ_PEN, PM8607_IRQ_PEN, "touch", IORESOURCE_IRQ,}, |
130 | }; | |
131 | ||
a9e9ce4c | 132 | static struct resource onkey_resources[] = { |
c9f560b3 HZ |
133 | {PM8607_IRQ_ONKEY, PM8607_IRQ_ONKEY, "onkey", IORESOURCE_IRQ,}, |
134 | }; | |
135 | ||
a9e9ce4c | 136 | static struct resource codec_resources[] = { |
c9f560b3 HZ |
137 | /* Headset microphone insertion or removal */ |
138 | {PM8607_IRQ_MICIN, PM8607_IRQ_MICIN, "micin", IORESOURCE_IRQ,}, | |
139 | /* Hook-switch press or release */ | |
140 | {PM8607_IRQ_HOOK, PM8607_IRQ_HOOK, "hook", IORESOURCE_IRQ,}, | |
141 | /* Headset insertion or removal */ | |
142 | {PM8607_IRQ_HEADSET, PM8607_IRQ_HEADSET, "headset", IORESOURCE_IRQ,}, | |
143 | /* Audio short */ | |
2e57848f LJ |
144 | {PM8607_IRQ_AUDIO_SHORT, PM8607_IRQ_AUDIO_SHORT, "audio-short", |
145 | IORESOURCE_IRQ,}, | |
c9f560b3 HZ |
146 | }; |
147 | ||
a9e9ce4c | 148 | static struct resource battery_resources[] = { |
c9f560b3 HZ |
149 | {PM8607_IRQ_CC, PM8607_IRQ_CC, "columb counter", IORESOURCE_IRQ,}, |
150 | {PM8607_IRQ_BAT, PM8607_IRQ_BAT, "battery", IORESOURCE_IRQ,}, | |
151 | }; | |
152 | ||
a9e9ce4c | 153 | static struct resource charger_resources[] = { |
c9f560b3 | 154 | {PM8607_IRQ_CHG, PM8607_IRQ_CHG, "charger detect", IORESOURCE_IRQ,}, |
2e57848f LJ |
155 | {PM8607_IRQ_CHG_DONE, PM8607_IRQ_CHG_DONE, "charging done", |
156 | IORESOURCE_IRQ,}, | |
157 | {PM8607_IRQ_CHG_FAIL, PM8607_IRQ_CHG_FAIL, "charging timeout", | |
158 | IORESOURCE_IRQ,}, | |
159 | {PM8607_IRQ_CHG_FAULT, PM8607_IRQ_CHG_FAULT, "charging fault", | |
160 | IORESOURCE_IRQ,}, | |
161 | {PM8607_IRQ_GPADC1, PM8607_IRQ_GPADC1, "battery temperature", | |
162 | IORESOURCE_IRQ,}, | |
c9f560b3 HZ |
163 | {PM8607_IRQ_VBAT, PM8607_IRQ_VBAT, "battery voltage", IORESOURCE_IRQ,}, |
164 | {PM8607_IRQ_VCHG, PM8607_IRQ_VCHG, "vchg voltage", IORESOURCE_IRQ,}, | |
165 | }; | |
166 | ||
a9e9ce4c | 167 | static struct resource rtc_resources[] = { |
02367029 | 168 | {PM8607_IRQ_RTC, PM8607_IRQ_RTC, "rtc", IORESOURCE_IRQ,}, |
008b3040 HZ |
169 | }; |
170 | ||
a9e9ce4c | 171 | static struct mfd_cell bk_devs[] = { |
a6ccdcd9 HZ |
172 | { |
173 | .name = "88pm860x-backlight", | |
174 | .id = 0, | |
175 | .num_resources = ARRAY_SIZE(bk0_resources), | |
176 | .resources = bk0_resources, | |
177 | }, { | |
178 | .name = "88pm860x-backlight", | |
179 | .id = 1, | |
180 | .num_resources = ARRAY_SIZE(bk1_resources), | |
181 | .resources = bk1_resources, | |
182 | }, { | |
183 | .name = "88pm860x-backlight", | |
184 | .id = 2, | |
185 | .num_resources = ARRAY_SIZE(bk2_resources), | |
186 | .resources = bk2_resources, | |
187 | }, | |
adb70483 HZ |
188 | }; |
189 | ||
a9e9ce4c | 190 | static struct mfd_cell led_devs[] = { |
894fc8f2 HZ |
191 | { |
192 | .name = "88pm860x-led", | |
193 | .id = 0, | |
194 | .num_resources = ARRAY_SIZE(led0_resources), | |
195 | .resources = led0_resources, | |
196 | }, { | |
197 | .name = "88pm860x-led", | |
198 | .id = 1, | |
199 | .num_resources = ARRAY_SIZE(led1_resources), | |
200 | .resources = led1_resources, | |
201 | }, { | |
202 | .name = "88pm860x-led", | |
203 | .id = 2, | |
204 | .num_resources = ARRAY_SIZE(led2_resources), | |
205 | .resources = led2_resources, | |
206 | }, { | |
207 | .name = "88pm860x-led", | |
208 | .id = 3, | |
209 | .num_resources = ARRAY_SIZE(led3_resources), | |
210 | .resources = led3_resources, | |
211 | }, { | |
212 | .name = "88pm860x-led", | |
213 | .id = 4, | |
214 | .num_resources = ARRAY_SIZE(led4_resources), | |
215 | .resources = led4_resources, | |
216 | }, { | |
217 | .name = "88pm860x-led", | |
218 | .id = 5, | |
219 | .num_resources = ARRAY_SIZE(led5_resources), | |
220 | .resources = led5_resources, | |
221 | }, | |
a16122bc HZ |
222 | }; |
223 | ||
a9e9ce4c | 224 | static struct mfd_cell reg_devs[] = { |
a70abacb HZ |
225 | { |
226 | .name = "88pm860x-regulator", | |
227 | .id = 0, | |
228 | .num_resources = ARRAY_SIZE(buck1_resources), | |
229 | .resources = buck1_resources, | |
230 | }, { | |
231 | .name = "88pm860x-regulator", | |
232 | .id = 1, | |
233 | .num_resources = ARRAY_SIZE(buck2_resources), | |
234 | .resources = buck2_resources, | |
235 | }, { | |
236 | .name = "88pm860x-regulator", | |
237 | .id = 2, | |
238 | .num_resources = ARRAY_SIZE(buck3_resources), | |
239 | .resources = buck3_resources, | |
240 | }, { | |
241 | .name = "88pm860x-regulator", | |
242 | .id = 3, | |
243 | .num_resources = ARRAY_SIZE(ldo1_resources), | |
244 | .resources = ldo1_resources, | |
245 | }, { | |
246 | .name = "88pm860x-regulator", | |
247 | .id = 4, | |
248 | .num_resources = ARRAY_SIZE(ldo2_resources), | |
249 | .resources = ldo2_resources, | |
250 | }, { | |
251 | .name = "88pm860x-regulator", | |
252 | .id = 5, | |
253 | .num_resources = ARRAY_SIZE(ldo3_resources), | |
254 | .resources = ldo3_resources, | |
255 | }, { | |
256 | .name = "88pm860x-regulator", | |
257 | .id = 6, | |
258 | .num_resources = ARRAY_SIZE(ldo4_resources), | |
259 | .resources = ldo4_resources, | |
260 | }, { | |
261 | .name = "88pm860x-regulator", | |
262 | .id = 7, | |
263 | .num_resources = ARRAY_SIZE(ldo5_resources), | |
264 | .resources = ldo5_resources, | |
265 | }, { | |
266 | .name = "88pm860x-regulator", | |
267 | .id = 8, | |
268 | .num_resources = ARRAY_SIZE(ldo6_resources), | |
269 | .resources = ldo6_resources, | |
270 | }, { | |
271 | .name = "88pm860x-regulator", | |
272 | .id = 9, | |
273 | .num_resources = ARRAY_SIZE(ldo7_resources), | |
274 | .resources = ldo7_resources, | |
275 | }, { | |
276 | .name = "88pm860x-regulator", | |
277 | .id = 10, | |
278 | .num_resources = ARRAY_SIZE(ldo8_resources), | |
279 | .resources = ldo8_resources, | |
280 | }, { | |
281 | .name = "88pm860x-regulator", | |
282 | .id = 11, | |
283 | .num_resources = ARRAY_SIZE(ldo9_resources), | |
284 | .resources = ldo9_resources, | |
285 | }, { | |
286 | .name = "88pm860x-regulator", | |
287 | .id = 12, | |
288 | .num_resources = ARRAY_SIZE(ldo10_resources), | |
289 | .resources = ldo10_resources, | |
290 | }, { | |
291 | .name = "88pm860x-regulator", | |
292 | .id = 13, | |
293 | .num_resources = ARRAY_SIZE(ldo12_resources), | |
294 | .resources = ldo12_resources, | |
295 | }, { | |
296 | .name = "88pm860x-regulator", | |
297 | .id = 14, | |
298 | .num_resources = ARRAY_SIZE(ldo_vibrator_resources), | |
299 | .resources = ldo_vibrator_resources, | |
300 | }, { | |
301 | .name = "88pm860x-regulator", | |
302 | .id = 15, | |
303 | .num_resources = ARRAY_SIZE(ldo14_resources), | |
304 | .resources = ldo14_resources, | |
305 | }, | |
22aad001 HZ |
306 | }; |
307 | ||
a5156f1a | 308 | static struct mfd_cell touch_devs[] = { |
c9f560b3 | 309 | {"88pm860x-touch", -1,}, |
a16122bc HZ |
310 | }; |
311 | ||
a5156f1a | 312 | static struct mfd_cell onkey_devs[] = { |
c9f560b3 | 313 | {"88pm860x-onkey", -1,}, |
a16122bc | 314 | }; |
bbd51b1f | 315 | |
a5156f1a | 316 | static struct mfd_cell codec_devs[] = { |
c9f560b3 | 317 | {"88pm860x-codec", -1,}, |
2afa62ea HZ |
318 | }; |
319 | ||
2573f6d3 JZ |
320 | static struct regulator_consumer_supply preg_supply[] = { |
321 | REGULATOR_SUPPLY("preg", "charger-manager"), | |
322 | }; | |
323 | ||
324 | static struct regulator_init_data preg_init_data = { | |
325 | .num_consumer_supplies = ARRAY_SIZE(preg_supply), | |
326 | .consumer_supplies = &preg_supply[0], | |
327 | }; | |
328 | ||
f1ade352 AV |
329 | static struct charger_regulator chg_desc_regulator_data[] = { |
330 | { .regulator_name = "preg", }, | |
a830d28b JZ |
331 | }; |
332 | ||
2afa62ea | 333 | static struct mfd_cell power_devs[] = { |
c9f560b3 HZ |
334 | {"88pm860x-battery", -1,}, |
335 | {"88pm860x-charger", -1,}, | |
2573f6d3 | 336 | {"88pm860x-preg", -1,}, |
a830d28b | 337 | {"charger-manager", -1,}, |
2c36af7b HZ |
338 | }; |
339 | ||
008b3040 HZ |
340 | static struct mfd_cell rtc_devs[] = { |
341 | {"88pm860x-rtc", -1,}, | |
342 | }; | |
343 | ||
2c36af7b | 344 | |
2afa62ea HZ |
345 | struct pm860x_irq_data { |
346 | int reg; | |
347 | int mask_reg; | |
348 | int enable; /* enable or not */ | |
349 | int offs; /* bit offset in mask register */ | |
350 | }; | |
5c42e8c4 | 351 | |
2afa62ea HZ |
352 | static struct pm860x_irq_data pm860x_irqs[] = { |
353 | [PM8607_IRQ_ONKEY] = { | |
354 | .reg = PM8607_INT_STATUS1, | |
355 | .mask_reg = PM8607_INT_MASK_1, | |
356 | .offs = 1 << 0, | |
357 | }, | |
358 | [PM8607_IRQ_EXTON] = { | |
359 | .reg = PM8607_INT_STATUS1, | |
360 | .mask_reg = PM8607_INT_MASK_1, | |
361 | .offs = 1 << 1, | |
362 | }, | |
363 | [PM8607_IRQ_CHG] = { | |
364 | .reg = PM8607_INT_STATUS1, | |
365 | .mask_reg = PM8607_INT_MASK_1, | |
366 | .offs = 1 << 2, | |
367 | }, | |
368 | [PM8607_IRQ_BAT] = { | |
369 | .reg = PM8607_INT_STATUS1, | |
370 | .mask_reg = PM8607_INT_MASK_1, | |
371 | .offs = 1 << 3, | |
372 | }, | |
373 | [PM8607_IRQ_RTC] = { | |
374 | .reg = PM8607_INT_STATUS1, | |
375 | .mask_reg = PM8607_INT_MASK_1, | |
376 | .offs = 1 << 4, | |
377 | }, | |
378 | [PM8607_IRQ_CC] = { | |
379 | .reg = PM8607_INT_STATUS1, | |
380 | .mask_reg = PM8607_INT_MASK_1, | |
381 | .offs = 1 << 5, | |
382 | }, | |
383 | [PM8607_IRQ_VBAT] = { | |
384 | .reg = PM8607_INT_STATUS2, | |
385 | .mask_reg = PM8607_INT_MASK_2, | |
386 | .offs = 1 << 0, | |
387 | }, | |
388 | [PM8607_IRQ_VCHG] = { | |
389 | .reg = PM8607_INT_STATUS2, | |
390 | .mask_reg = PM8607_INT_MASK_2, | |
391 | .offs = 1 << 1, | |
392 | }, | |
393 | [PM8607_IRQ_VSYS] = { | |
394 | .reg = PM8607_INT_STATUS2, | |
395 | .mask_reg = PM8607_INT_MASK_2, | |
396 | .offs = 1 << 2, | |
397 | }, | |
398 | [PM8607_IRQ_TINT] = { | |
399 | .reg = PM8607_INT_STATUS2, | |
400 | .mask_reg = PM8607_INT_MASK_2, | |
401 | .offs = 1 << 3, | |
402 | }, | |
403 | [PM8607_IRQ_GPADC0] = { | |
404 | .reg = PM8607_INT_STATUS2, | |
405 | .mask_reg = PM8607_INT_MASK_2, | |
406 | .offs = 1 << 4, | |
407 | }, | |
408 | [PM8607_IRQ_GPADC1] = { | |
409 | .reg = PM8607_INT_STATUS2, | |
410 | .mask_reg = PM8607_INT_MASK_2, | |
411 | .offs = 1 << 5, | |
412 | }, | |
413 | [PM8607_IRQ_GPADC2] = { | |
414 | .reg = PM8607_INT_STATUS2, | |
415 | .mask_reg = PM8607_INT_MASK_2, | |
416 | .offs = 1 << 6, | |
417 | }, | |
418 | [PM8607_IRQ_GPADC3] = { | |
419 | .reg = PM8607_INT_STATUS2, | |
420 | .mask_reg = PM8607_INT_MASK_2, | |
421 | .offs = 1 << 7, | |
422 | }, | |
423 | [PM8607_IRQ_AUDIO_SHORT] = { | |
424 | .reg = PM8607_INT_STATUS3, | |
425 | .mask_reg = PM8607_INT_MASK_3, | |
426 | .offs = 1 << 0, | |
427 | }, | |
428 | [PM8607_IRQ_PEN] = { | |
429 | .reg = PM8607_INT_STATUS3, | |
430 | .mask_reg = PM8607_INT_MASK_3, | |
431 | .offs = 1 << 1, | |
432 | }, | |
433 | [PM8607_IRQ_HEADSET] = { | |
434 | .reg = PM8607_INT_STATUS3, | |
435 | .mask_reg = PM8607_INT_MASK_3, | |
436 | .offs = 1 << 2, | |
437 | }, | |
438 | [PM8607_IRQ_HOOK] = { | |
439 | .reg = PM8607_INT_STATUS3, | |
440 | .mask_reg = PM8607_INT_MASK_3, | |
441 | .offs = 1 << 3, | |
442 | }, | |
443 | [PM8607_IRQ_MICIN] = { | |
444 | .reg = PM8607_INT_STATUS3, | |
445 | .mask_reg = PM8607_INT_MASK_3, | |
446 | .offs = 1 << 4, | |
447 | }, | |
448 | [PM8607_IRQ_CHG_FAIL] = { | |
449 | .reg = PM8607_INT_STATUS3, | |
450 | .mask_reg = PM8607_INT_MASK_3, | |
451 | .offs = 1 << 5, | |
452 | }, | |
453 | [PM8607_IRQ_CHG_DONE] = { | |
454 | .reg = PM8607_INT_STATUS3, | |
455 | .mask_reg = PM8607_INT_MASK_3, | |
456 | .offs = 1 << 6, | |
457 | }, | |
458 | [PM8607_IRQ_CHG_FAULT] = { | |
459 | .reg = PM8607_INT_STATUS3, | |
460 | .mask_reg = PM8607_INT_MASK_3, | |
461 | .offs = 1 << 7, | |
462 | }, | |
463 | }; | |
5c42e8c4 | 464 | |
2afa62ea | 465 | static irqreturn_t pm860x_irq(int irq, void *data) |
5c42e8c4 | 466 | { |
5c42e8c4 | 467 | struct pm860x_chip *chip = data; |
2afa62ea HZ |
468 | struct pm860x_irq_data *irq_data; |
469 | struct i2c_client *i2c; | |
470 | int read_reg = -1, value = 0; | |
471 | int i; | |
472 | ||
473 | i2c = (chip->id == CHIP_PM8607) ? chip->client : chip->companion; | |
474 | for (i = 0; i < ARRAY_SIZE(pm860x_irqs); i++) { | |
475 | irq_data = &pm860x_irqs[i]; | |
476 | if (read_reg != irq_data->reg) { | |
477 | read_reg = irq_data->reg; | |
478 | value = pm860x_reg_read(i2c, irq_data->reg); | |
5c42e8c4 | 479 | } |
2afa62ea HZ |
480 | if (value & irq_data->enable) |
481 | handle_nested_irq(chip->irq_base + i); | |
5c42e8c4 | 482 | } |
5c42e8c4 HZ |
483 | return IRQ_HANDLED; |
484 | } | |
485 | ||
49f89d9a | 486 | static void pm860x_irq_lock(struct irq_data *data) |
53dbab7a | 487 | { |
49f89d9a | 488 | struct pm860x_chip *chip = irq_data_get_irq_chip_data(data); |
5c42e8c4 HZ |
489 | |
490 | mutex_lock(&chip->irq_lock); | |
53dbab7a HZ |
491 | } |
492 | ||
49f89d9a | 493 | static void pm860x_irq_sync_unlock(struct irq_data *data) |
bbd51b1f | 494 | { |
49f89d9a | 495 | struct pm860x_chip *chip = irq_data_get_irq_chip_data(data); |
2afa62ea HZ |
496 | struct pm860x_irq_data *irq_data; |
497 | struct i2c_client *i2c; | |
498 | static unsigned char cached[3] = {0x0, 0x0, 0x0}; | |
499 | unsigned char mask[3]; | |
500 | int i; | |
501 | ||
502 | i2c = (chip->id == CHIP_PM8607) ? chip->client : chip->companion; | |
503 | /* Load cached value. In initial, all IRQs are masked */ | |
504 | for (i = 0; i < 3; i++) | |
505 | mask[i] = cached[i]; | |
506 | for (i = 0; i < ARRAY_SIZE(pm860x_irqs); i++) { | |
507 | irq_data = &pm860x_irqs[i]; | |
508 | switch (irq_data->mask_reg) { | |
509 | case PM8607_INT_MASK_1: | |
510 | mask[0] &= ~irq_data->offs; | |
511 | mask[0] |= irq_data->enable; | |
512 | break; | |
513 | case PM8607_INT_MASK_2: | |
514 | mask[1] &= ~irq_data->offs; | |
515 | mask[1] |= irq_data->enable; | |
516 | break; | |
517 | case PM8607_INT_MASK_3: | |
518 | mask[2] &= ~irq_data->offs; | |
519 | mask[2] |= irq_data->enable; | |
520 | break; | |
521 | default: | |
522 | dev_err(chip->dev, "wrong IRQ\n"); | |
523 | break; | |
524 | } | |
525 | } | |
526 | /* update mask into registers */ | |
527 | for (i = 0; i < 3; i++) { | |
528 | if (mask[i] != cached[i]) { | |
529 | cached[i] = mask[i]; | |
530 | pm860x_reg_write(i2c, PM8607_INT_MASK_1 + i, mask[i]); | |
531 | } | |
532 | } | |
5c42e8c4 | 533 | |
5c42e8c4 | 534 | mutex_unlock(&chip->irq_lock); |
2afa62ea | 535 | } |
5c42e8c4 | 536 | |
49f89d9a | 537 | static void pm860x_irq_enable(struct irq_data *data) |
2afa62ea | 538 | { |
837c8293 | 539 | pm860x_irqs[data->hwirq].enable = pm860x_irqs[data->hwirq].offs; |
5c42e8c4 | 540 | } |
2afa62ea | 541 | |
49f89d9a | 542 | static void pm860x_irq_disable(struct irq_data *data) |
2afa62ea | 543 | { |
837c8293 | 544 | pm860x_irqs[data->hwirq].enable = 0; |
2afa62ea HZ |
545 | } |
546 | ||
547 | static struct irq_chip pm860x_irq_chip = { | |
548 | .name = "88pm860x", | |
49f89d9a MB |
549 | .irq_bus_lock = pm860x_irq_lock, |
550 | .irq_bus_sync_unlock = pm860x_irq_sync_unlock, | |
551 | .irq_enable = pm860x_irq_enable, | |
552 | .irq_disable = pm860x_irq_disable, | |
2afa62ea | 553 | }; |
5c42e8c4 | 554 | |
837c8293 HZ |
555 | static int pm860x_irq_domain_map(struct irq_domain *d, unsigned int virq, |
556 | irq_hw_number_t hw) | |
557 | { | |
558 | irq_set_chip_data(virq, d->host_data); | |
559 | irq_set_chip_and_handler(virq, &pm860x_irq_chip, handle_edge_irq); | |
560 | irq_set_nested_thread(virq, 1); | |
837c8293 | 561 | irq_set_noprobe(virq); |
837c8293 HZ |
562 | return 0; |
563 | } | |
564 | ||
7ce7b26f | 565 | static const struct irq_domain_ops pm860x_irq_domain_ops = { |
837c8293 HZ |
566 | .map = pm860x_irq_domain_map, |
567 | .xlate = irq_domain_xlate_onetwocell, | |
568 | }; | |
569 | ||
f791be49 | 570 | static int device_irq_init(struct pm860x_chip *chip, |
5c42e8c4 HZ |
571 | struct pm860x_platform_data *pdata) |
572 | { | |
2e57848f LJ |
573 | struct i2c_client *i2c = (chip->id == CHIP_PM8607) ? |
574 | chip->client : chip->companion; | |
5c42e8c4 | 575 | unsigned char status_buf[INT_STATUS_NUM]; |
2afa62ea | 576 | unsigned long flags = IRQF_TRIGGER_FALLING | IRQF_ONESHOT; |
837c8293 HZ |
577 | int data, mask, ret = -EINVAL; |
578 | int nr_irqs, irq_base = -1; | |
579 | struct device_node *node = i2c->dev.of_node; | |
5c42e8c4 HZ |
580 | |
581 | mask = PM8607_B0_MISC1_INV_INT | PM8607_B0_MISC1_INT_CLEAR | |
582 | | PM8607_B0_MISC1_INT_MASK; | |
583 | data = 0; | |
584 | chip->irq_mode = 0; | |
585 | if (pdata && pdata->irq_mode) { | |
586 | /* | |
587 | * irq_mode defines the way of clearing interrupt. If it's 1, | |
588 | * clear IRQ by write. Otherwise, clear it by read. | |
589 | * This control bit is valid from 88PM8607 B0 steping. | |
590 | */ | |
591 | data |= PM8607_B0_MISC1_INT_CLEAR; | |
592 | chip->irq_mode = 1; | |
593 | } | |
594 | ret = pm860x_set_bits(i2c, PM8607_B0_MISC1, mask, data); | |
595 | if (ret < 0) | |
596 | goto out; | |
597 | ||
598 | /* mask all IRQs */ | |
599 | memset(status_buf, 0, INT_STATUS_NUM); | |
600 | ret = pm860x_bulk_write(i2c, PM8607_INT_MASK_1, | |
601 | INT_STATUS_NUM, status_buf); | |
602 | if (ret < 0) | |
603 | goto out; | |
604 | ||
605 | if (chip->irq_mode) { | |
606 | /* clear interrupt status by write */ | |
607 | memset(status_buf, 0xFF, INT_STATUS_NUM); | |
608 | ret = pm860x_bulk_write(i2c, PM8607_INT_STATUS1, | |
609 | INT_STATUS_NUM, status_buf); | |
610 | } else { | |
611 | /* clear interrupt status by read */ | |
612 | ret = pm860x_bulk_read(i2c, PM8607_INT_STATUS1, | |
613 | INT_STATUS_NUM, status_buf); | |
614 | } | |
615 | if (ret < 0) | |
616 | goto out; | |
617 | ||
2afa62ea | 618 | mutex_init(&chip->irq_lock); |
837c8293 HZ |
619 | |
620 | if (pdata && pdata->irq_base) | |
621 | irq_base = pdata->irq_base; | |
622 | nr_irqs = ARRAY_SIZE(pm860x_irqs); | |
623 | chip->irq_base = irq_alloc_descs(irq_base, 0, nr_irqs, 0); | |
624 | if (chip->irq_base < 0) { | |
625 | dev_err(&i2c->dev, "Failed to allocate interrupts, ret:%d\n", | |
626 | chip->irq_base); | |
627 | ret = -EBUSY; | |
628 | goto out; | |
629 | } | |
630 | irq_domain_add_legacy(node, nr_irqs, chip->irq_base, 0, | |
631 | &pm860x_irq_domain_ops, chip); | |
2afa62ea HZ |
632 | chip->core_irq = i2c->irq; |
633 | if (!chip->core_irq) | |
5c42e8c4 | 634 | goto out; |
2afa62ea | 635 | |
2e57848f LJ |
636 | ret = request_threaded_irq(chip->core_irq, NULL, pm860x_irq, |
637 | flags | IRQF_ONESHOT, "88pm860x", chip); | |
2afa62ea HZ |
638 | if (ret) { |
639 | dev_err(chip->dev, "Failed to request IRQ: %d\n", ret); | |
640 | chip->core_irq = 0; | |
641 | } | |
642 | ||
5c42e8c4 HZ |
643 | return 0; |
644 | out: | |
2afa62ea | 645 | chip->core_irq = 0; |
5c42e8c4 HZ |
646 | return ret; |
647 | } | |
648 | ||
872c1b14 | 649 | static void device_irq_exit(struct pm860x_chip *chip) |
5c42e8c4 | 650 | { |
2afa62ea HZ |
651 | if (chip->core_irq) |
652 | free_irq(chip->core_irq, chip); | |
5c42e8c4 HZ |
653 | } |
654 | ||
23de435a JZ |
655 | int pm8606_osc_enable(struct pm860x_chip *chip, unsigned short client) |
656 | { | |
657 | int ret = -EIO; | |
658 | struct i2c_client *i2c = (chip->id == CHIP_PM8606) ? | |
659 | chip->client : chip->companion; | |
660 | ||
661 | dev_dbg(chip->dev, "%s(B): client=0x%x\n", __func__, client); | |
662 | dev_dbg(chip->dev, "%s(B): vote=0x%x status=%d\n", | |
663 | __func__, chip->osc_vote, | |
664 | chip->osc_status); | |
665 | ||
666 | mutex_lock(&chip->osc_lock); | |
667 | /* Update voting status */ | |
668 | chip->osc_vote |= client; | |
669 | /* If reference group is off - turn on*/ | |
670 | if (chip->osc_status != PM8606_REF_GP_OSC_ON) { | |
671 | chip->osc_status = PM8606_REF_GP_OSC_UNKNOWN; | |
672 | /* Enable Reference group Vsys */ | |
673 | if (pm860x_set_bits(i2c, PM8606_VSYS, | |
674 | PM8606_VSYS_EN, PM8606_VSYS_EN)) | |
675 | goto out; | |
676 | ||
677 | /*Enable Internal Oscillator */ | |
678 | if (pm860x_set_bits(i2c, PM8606_MISC, | |
679 | PM8606_MISC_OSC_EN, PM8606_MISC_OSC_EN)) | |
680 | goto out; | |
681 | /* Update status (only if writes succeed) */ | |
682 | chip->osc_status = PM8606_REF_GP_OSC_ON; | |
683 | } | |
684 | mutex_unlock(&chip->osc_lock); | |
685 | ||
686 | dev_dbg(chip->dev, "%s(A): vote=0x%x status=%d ret=%d\n", | |
687 | __func__, chip->osc_vote, | |
688 | chip->osc_status, ret); | |
689 | return 0; | |
690 | out: | |
691 | mutex_unlock(&chip->osc_lock); | |
692 | return ret; | |
693 | } | |
2f5f89be | 694 | EXPORT_SYMBOL(pm8606_osc_enable); |
23de435a JZ |
695 | |
696 | int pm8606_osc_disable(struct pm860x_chip *chip, unsigned short client) | |
697 | { | |
698 | int ret = -EIO; | |
699 | struct i2c_client *i2c = (chip->id == CHIP_PM8606) ? | |
700 | chip->client : chip->companion; | |
701 | ||
702 | dev_dbg(chip->dev, "%s(B): client=0x%x\n", __func__, client); | |
703 | dev_dbg(chip->dev, "%s(B): vote=0x%x status=%d\n", | |
704 | __func__, chip->osc_vote, | |
705 | chip->osc_status); | |
706 | ||
707 | mutex_lock(&chip->osc_lock); | |
f90dff44 | 708 | /* Update voting status */ |
23de435a | 709 | chip->osc_vote &= ~(client); |
f90dff44 LJ |
710 | /* |
711 | * If reference group is off and this is the last client to release | |
712 | * - turn off | |
713 | */ | |
23de435a JZ |
714 | if ((chip->osc_status != PM8606_REF_GP_OSC_OFF) && |
715 | (chip->osc_vote == REF_GP_NO_CLIENTS)) { | |
716 | chip->osc_status = PM8606_REF_GP_OSC_UNKNOWN; | |
717 | /* Disable Reference group Vsys */ | |
718 | if (pm860x_set_bits(i2c, PM8606_VSYS, PM8606_VSYS_EN, 0)) | |
719 | goto out; | |
720 | /* Disable Internal Oscillator */ | |
721 | if (pm860x_set_bits(i2c, PM8606_MISC, PM8606_MISC_OSC_EN, 0)) | |
722 | goto out; | |
723 | chip->osc_status = PM8606_REF_GP_OSC_OFF; | |
724 | } | |
725 | mutex_unlock(&chip->osc_lock); | |
726 | ||
727 | dev_dbg(chip->dev, "%s(A): vote=0x%x status=%d ret=%d\n", | |
728 | __func__, chip->osc_vote, | |
729 | chip->osc_status, ret); | |
730 | return 0; | |
731 | out: | |
732 | mutex_unlock(&chip->osc_lock); | |
733 | return ret; | |
734 | } | |
2f5f89be | 735 | EXPORT_SYMBOL(pm8606_osc_disable); |
23de435a | 736 | |
f791be49 | 737 | static void device_osc_init(struct i2c_client *i2c) |
23de435a JZ |
738 | { |
739 | struct pm860x_chip *chip = i2c_get_clientdata(i2c); | |
740 | ||
741 | mutex_init(&chip->osc_lock); | |
742 | /* init portofino reference group voting and status */ | |
743 | /* Disable Reference group Vsys */ | |
744 | pm860x_set_bits(i2c, PM8606_VSYS, PM8606_VSYS_EN, 0); | |
745 | /* Disable Internal Oscillator */ | |
746 | pm860x_set_bits(i2c, PM8606_MISC, PM8606_MISC_OSC_EN, 0); | |
747 | ||
748 | chip->osc_vote = REF_GP_NO_CLIENTS; | |
749 | chip->osc_status = PM8606_REF_GP_OSC_OFF; | |
750 | } | |
751 | ||
f791be49 | 752 | static void device_bk_init(struct pm860x_chip *chip, |
adb70483 HZ |
753 | struct pm860x_platform_data *pdata) |
754 | { | |
a6ccdcd9 HZ |
755 | int ret, i; |
756 | ||
757 | if (pdata && pdata->backlight) { | |
758 | if (pdata->num_backlights > ARRAY_SIZE(bk_devs)) | |
759 | pdata->num_backlights = ARRAY_SIZE(bk_devs); | |
760 | for (i = 0; i < pdata->num_backlights; i++) { | |
761 | bk_devs[i].platform_data = &pdata->backlight[i]; | |
762 | bk_devs[i].pdata_size = | |
763 | sizeof(struct pm860x_backlight_pdata); | |
adb70483 HZ |
764 | } |
765 | } | |
a6ccdcd9 | 766 | ret = mfd_add_devices(chip->dev, 0, bk_devs, |
55692af5 | 767 | ARRAY_SIZE(bk_devs), NULL, 0, NULL); |
a6ccdcd9 HZ |
768 | if (ret < 0) |
769 | dev_err(chip->dev, "Failed to add backlight subdev\n"); | |
adb70483 HZ |
770 | } |
771 | ||
f791be49 | 772 | static void device_led_init(struct pm860x_chip *chip, |
3154c344 | 773 | struct pm860x_platform_data *pdata) |
5c42e8c4 | 774 | { |
894fc8f2 | 775 | int ret, i; |
3154c344 | 776 | |
894fc8f2 HZ |
777 | if (pdata && pdata->led) { |
778 | if (pdata->num_leds > ARRAY_SIZE(led_devs)) | |
779 | pdata->num_leds = ARRAY_SIZE(led_devs); | |
780 | for (i = 0; i < pdata->num_leds; i++) { | |
781 | led_devs[i].platform_data = &pdata->led[i]; | |
782 | led_devs[i].pdata_size = | |
783 | sizeof(struct pm860x_led_pdata); | |
a16122bc HZ |
784 | } |
785 | } | |
894fc8f2 | 786 | ret = mfd_add_devices(chip->dev, 0, led_devs, |
55692af5 | 787 | ARRAY_SIZE(led_devs), NULL, 0, NULL); |
894fc8f2 HZ |
788 | if (ret < 0) { |
789 | dev_err(chip->dev, "Failed to add led subdev\n"); | |
790 | return; | |
791 | } | |
5c42e8c4 HZ |
792 | } |
793 | ||
f791be49 | 794 | static void device_regulator_init(struct pm860x_chip *chip, |
22aad001 HZ |
795 | struct pm860x_platform_data *pdata) |
796 | { | |
22aad001 | 797 | int ret; |
22aad001 | 798 | |
a70abacb HZ |
799 | if (pdata == NULL) |
800 | return; | |
801 | if (pdata->buck1) { | |
802 | reg_devs[0].platform_data = pdata->buck1; | |
803 | reg_devs[0].pdata_size = sizeof(struct regulator_init_data); | |
804 | } | |
805 | if (pdata->buck2) { | |
806 | reg_devs[1].platform_data = pdata->buck2; | |
807 | reg_devs[1].pdata_size = sizeof(struct regulator_init_data); | |
808 | } | |
809 | if (pdata->buck3) { | |
810 | reg_devs[2].platform_data = pdata->buck3; | |
811 | reg_devs[2].pdata_size = sizeof(struct regulator_init_data); | |
812 | } | |
813 | if (pdata->ldo1) { | |
814 | reg_devs[3].platform_data = pdata->ldo1; | |
815 | reg_devs[3].pdata_size = sizeof(struct regulator_init_data); | |
816 | } | |
817 | if (pdata->ldo2) { | |
818 | reg_devs[4].platform_data = pdata->ldo2; | |
819 | reg_devs[4].pdata_size = sizeof(struct regulator_init_data); | |
820 | } | |
821 | if (pdata->ldo3) { | |
822 | reg_devs[5].platform_data = pdata->ldo3; | |
823 | reg_devs[5].pdata_size = sizeof(struct regulator_init_data); | |
824 | } | |
825 | if (pdata->ldo4) { | |
826 | reg_devs[6].platform_data = pdata->ldo4; | |
827 | reg_devs[6].pdata_size = sizeof(struct regulator_init_data); | |
828 | } | |
829 | if (pdata->ldo5) { | |
830 | reg_devs[7].platform_data = pdata->ldo5; | |
831 | reg_devs[7].pdata_size = sizeof(struct regulator_init_data); | |
832 | } | |
833 | if (pdata->ldo6) { | |
834 | reg_devs[8].platform_data = pdata->ldo6; | |
835 | reg_devs[8].pdata_size = sizeof(struct regulator_init_data); | |
836 | } | |
837 | if (pdata->ldo7) { | |
838 | reg_devs[9].platform_data = pdata->ldo7; | |
839 | reg_devs[9].pdata_size = sizeof(struct regulator_init_data); | |
840 | } | |
841 | if (pdata->ldo8) { | |
842 | reg_devs[10].platform_data = pdata->ldo8; | |
843 | reg_devs[10].pdata_size = sizeof(struct regulator_init_data); | |
844 | } | |
845 | if (pdata->ldo9) { | |
846 | reg_devs[11].platform_data = pdata->ldo9; | |
847 | reg_devs[11].pdata_size = sizeof(struct regulator_init_data); | |
848 | } | |
849 | if (pdata->ldo10) { | |
850 | reg_devs[12].platform_data = pdata->ldo10; | |
851 | reg_devs[12].pdata_size = sizeof(struct regulator_init_data); | |
852 | } | |
853 | if (pdata->ldo12) { | |
854 | reg_devs[13].platform_data = pdata->ldo12; | |
855 | reg_devs[13].pdata_size = sizeof(struct regulator_init_data); | |
856 | } | |
857 | if (pdata->ldo_vibrator) { | |
858 | reg_devs[14].platform_data = pdata->ldo_vibrator; | |
859 | reg_devs[14].pdata_size = sizeof(struct regulator_init_data); | |
860 | } | |
861 | if (pdata->ldo14) { | |
862 | reg_devs[15].platform_data = pdata->ldo14; | |
863 | reg_devs[15].pdata_size = sizeof(struct regulator_init_data); | |
864 | } | |
865 | ret = mfd_add_devices(chip->dev, 0, reg_devs, | |
55692af5 | 866 | ARRAY_SIZE(reg_devs), NULL, 0, NULL); |
a70abacb HZ |
867 | if (ret < 0) { |
868 | dev_err(chip->dev, "Failed to add regulator subdev\n"); | |
22aad001 | 869 | return; |
22aad001 | 870 | } |
22aad001 HZ |
871 | } |
872 | ||
f791be49 | 873 | static void device_rtc_init(struct pm860x_chip *chip, |
008b3040 HZ |
874 | struct pm860x_platform_data *pdata) |
875 | { | |
876 | int ret; | |
877 | ||
2e57848f | 878 | if (!pdata) |
008b3040 HZ |
879 | return; |
880 | ||
881 | rtc_devs[0].platform_data = pdata->rtc; | |
882 | rtc_devs[0].pdata_size = sizeof(struct pm860x_rtc_pdata); | |
883 | rtc_devs[0].num_resources = ARRAY_SIZE(rtc_resources); | |
884 | rtc_devs[0].resources = &rtc_resources[0]; | |
885 | ret = mfd_add_devices(chip->dev, 0, &rtc_devs[0], | |
886 | ARRAY_SIZE(rtc_devs), &rtc_resources[0], | |
55692af5 | 887 | chip->irq_base, NULL); |
008b3040 HZ |
888 | if (ret < 0) |
889 | dev_err(chip->dev, "Failed to add rtc subdev\n"); | |
890 | } | |
891 | ||
f791be49 | 892 | static void device_touch_init(struct pm860x_chip *chip, |
c9f560b3 HZ |
893 | struct pm860x_platform_data *pdata) |
894 | { | |
895 | int ret; | |
896 | ||
f5fb758d | 897 | if (pdata == NULL) |
c9f560b3 HZ |
898 | return; |
899 | ||
f5fb758d HZ |
900 | touch_devs[0].platform_data = pdata->touch; |
901 | touch_devs[0].pdata_size = sizeof(struct pm860x_touch_pdata); | |
c9f560b3 HZ |
902 | touch_devs[0].num_resources = ARRAY_SIZE(touch_resources); |
903 | touch_devs[0].resources = &touch_resources[0]; | |
904 | ret = mfd_add_devices(chip->dev, 0, &touch_devs[0], | |
905 | ARRAY_SIZE(touch_devs), &touch_resources[0], | |
55692af5 | 906 | chip->irq_base, NULL); |
c9f560b3 HZ |
907 | if (ret < 0) |
908 | dev_err(chip->dev, "Failed to add touch subdev\n"); | |
909 | } | |
910 | ||
f791be49 | 911 | static void device_power_init(struct pm860x_chip *chip, |
c9f560b3 HZ |
912 | struct pm860x_platform_data *pdata) |
913 | { | |
914 | int ret; | |
915 | ||
f5fb758d | 916 | if (pdata == NULL) |
c9f560b3 HZ |
917 | return; |
918 | ||
f5fb758d HZ |
919 | power_devs[0].platform_data = pdata->power; |
920 | power_devs[0].pdata_size = sizeof(struct pm860x_power_pdata); | |
c9f560b3 HZ |
921 | power_devs[0].num_resources = ARRAY_SIZE(battery_resources); |
922 | power_devs[0].resources = &battery_resources[0], | |
923 | ret = mfd_add_devices(chip->dev, 0, &power_devs[0], 1, | |
55692af5 | 924 | &battery_resources[0], chip->irq_base, NULL); |
c9f560b3 HZ |
925 | if (ret < 0) |
926 | dev_err(chip->dev, "Failed to add battery subdev\n"); | |
927 | ||
f5fb758d HZ |
928 | power_devs[1].platform_data = pdata->power; |
929 | power_devs[1].pdata_size = sizeof(struct pm860x_power_pdata); | |
c9f560b3 HZ |
930 | power_devs[1].num_resources = ARRAY_SIZE(charger_resources); |
931 | power_devs[1].resources = &charger_resources[0], | |
932 | ret = mfd_add_devices(chip->dev, 0, &power_devs[1], 1, | |
55692af5 | 933 | &charger_resources[0], chip->irq_base, NULL); |
c9f560b3 HZ |
934 | if (ret < 0) |
935 | dev_err(chip->dev, "Failed to add charger subdev\n"); | |
2573f6d3 JZ |
936 | |
937 | power_devs[2].platform_data = &preg_init_data; | |
938 | power_devs[2].pdata_size = sizeof(struct regulator_init_data); | |
2573f6d3 | 939 | ret = mfd_add_devices(chip->dev, 0, &power_devs[2], 1, |
ff13e9e2 | 940 | NULL, chip->irq_base, NULL); |
2573f6d3 JZ |
941 | if (ret < 0) |
942 | dev_err(chip->dev, "Failed to add preg subdev\n"); | |
a830d28b JZ |
943 | |
944 | if (pdata->chg_desc) { | |
945 | pdata->chg_desc->charger_regulators = | |
946 | &chg_desc_regulator_data[0]; | |
947 | pdata->chg_desc->num_charger_regulators = | |
948 | ARRAY_SIZE(chg_desc_regulator_data), | |
949 | power_devs[3].platform_data = pdata->chg_desc; | |
950 | power_devs[3].pdata_size = sizeof(*pdata->chg_desc); | |
951 | ret = mfd_add_devices(chip->dev, 0, &power_devs[3], 1, | |
18766f09 | 952 | NULL, chip->irq_base, NULL); |
a830d28b JZ |
953 | if (ret < 0) |
954 | dev_err(chip->dev, "Failed to add chg-manager subdev\n"); | |
955 | } | |
c9f560b3 HZ |
956 | } |
957 | ||
f791be49 | 958 | static void device_onkey_init(struct pm860x_chip *chip, |
c9f560b3 HZ |
959 | struct pm860x_platform_data *pdata) |
960 | { | |
961 | int ret; | |
962 | ||
963 | onkey_devs[0].num_resources = ARRAY_SIZE(onkey_resources); | |
964 | onkey_devs[0].resources = &onkey_resources[0], | |
965 | ret = mfd_add_devices(chip->dev, 0, &onkey_devs[0], | |
966 | ARRAY_SIZE(onkey_devs), &onkey_resources[0], | |
55692af5 | 967 | chip->irq_base, NULL); |
c9f560b3 HZ |
968 | if (ret < 0) |
969 | dev_err(chip->dev, "Failed to add onkey subdev\n"); | |
970 | } | |
971 | ||
f791be49 | 972 | static void device_codec_init(struct pm860x_chip *chip, |
c9f560b3 HZ |
973 | struct pm860x_platform_data *pdata) |
974 | { | |
975 | int ret; | |
976 | ||
977 | codec_devs[0].num_resources = ARRAY_SIZE(codec_resources); | |
978 | codec_devs[0].resources = &codec_resources[0], | |
979 | ret = mfd_add_devices(chip->dev, 0, &codec_devs[0], | |
55692af5 MB |
980 | ARRAY_SIZE(codec_devs), &codec_resources[0], 0, |
981 | NULL); | |
c9f560b3 HZ |
982 | if (ret < 0) |
983 | dev_err(chip->dev, "Failed to add codec subdev\n"); | |
984 | } | |
985 | ||
f791be49 | 986 | static void device_8607_init(struct pm860x_chip *chip, |
5c42e8c4 HZ |
987 | struct i2c_client *i2c, |
988 | struct pm860x_platform_data *pdata) | |
989 | { | |
a16122bc | 990 | int data, ret; |
bbd51b1f | 991 | |
53dbab7a | 992 | ret = pm860x_reg_read(i2c, PM8607_CHIP_ID); |
bbd51b1f HZ |
993 | if (ret < 0) { |
994 | dev_err(chip->dev, "Failed to read CHIP ID: %d\n", ret); | |
995 | goto out; | |
996 | } | |
38b34052 HZ |
997 | switch (ret & PM8607_VERSION_MASK) { |
998 | case 0x40: | |
999 | case 0x50: | |
bbd51b1f HZ |
1000 | dev_info(chip->dev, "Marvell 88PM8607 (ID: %02x) detected\n", |
1001 | ret); | |
38b34052 HZ |
1002 | break; |
1003 | default: | |
2e57848f LJ |
1004 | dev_err(chip->dev, |
1005 | "Failed to detect Marvell 88PM8607. Chip ID: %02x\n", | |
1006 | ret); | |
bbd51b1f HZ |
1007 | goto out; |
1008 | } | |
bbd51b1f | 1009 | |
53dbab7a | 1010 | ret = pm860x_reg_read(i2c, PM8607_BUCK3); |
bbd51b1f HZ |
1011 | if (ret < 0) { |
1012 | dev_err(chip->dev, "Failed to read BUCK3 register: %d\n", ret); | |
1013 | goto out; | |
1014 | } | |
1015 | if (ret & PM8607_BUCK3_DOUBLE) | |
1016 | chip->buck3_double = 1; | |
1017 | ||
5c42e8c4 | 1018 | ret = pm860x_reg_read(i2c, PM8607_B0_MISC1); |
bbd51b1f HZ |
1019 | if (ret < 0) { |
1020 | dev_err(chip->dev, "Failed to read MISC1 register: %d\n", ret); | |
1021 | goto out; | |
1022 | } | |
bbd51b1f | 1023 | |
5c42e8c4 HZ |
1024 | if (pdata && (pdata->i2c_port == PI2C_PORT)) |
1025 | data = PM8607_B0_MISC1_PI2C; | |
1026 | else | |
1027 | data = 0; | |
1028 | ret = pm860x_set_bits(i2c, PM8607_B0_MISC1, PM8607_B0_MISC1_PI2C, data); | |
1029 | if (ret < 0) { | |
1030 | dev_err(chip->dev, "Failed to access MISC1:%d\n", ret); | |
1031 | goto out; | |
1032 | } | |
1033 | ||
1034 | ret = device_irq_init(chip, pdata); | |
1035 | if (ret < 0) | |
1036 | goto out; | |
1037 | ||
cea438dd HZ |
1038 | device_regulator_init(chip, pdata); |
1039 | device_rtc_init(chip, pdata); | |
1040 | device_onkey_init(chip, pdata); | |
1041 | device_touch_init(chip, pdata); | |
1042 | device_power_init(chip, pdata); | |
1043 | device_codec_init(chip, pdata); | |
bbd51b1f | 1044 | out: |
53dbab7a HZ |
1045 | return; |
1046 | } | |
1047 | ||
f791be49 | 1048 | static void device_8606_init(struct pm860x_chip *chip, |
78258064 JZ |
1049 | struct i2c_client *i2c, |
1050 | struct pm860x_platform_data *pdata) | |
1051 | { | |
1052 | device_osc_init(i2c); | |
1053 | device_bk_init(chip, pdata); | |
1054 | device_led_init(chip, pdata); | |
1055 | } | |
1056 | ||
f791be49 | 1057 | static int pm860x_device_init(struct pm860x_chip *chip, |
f2f218cd | 1058 | struct pm860x_platform_data *pdata) |
53dbab7a | 1059 | { |
2afa62ea | 1060 | chip->core_irq = 0; |
5c42e8c4 | 1061 | |
53dbab7a HZ |
1062 | switch (chip->id) { |
1063 | case CHIP_PM8606: | |
78258064 | 1064 | device_8606_init(chip, chip->client, pdata); |
53dbab7a HZ |
1065 | break; |
1066 | case CHIP_PM8607: | |
1067 | device_8607_init(chip, chip->client, pdata); | |
1068 | break; | |
1069 | } | |
1070 | ||
1071 | if (chip->companion) { | |
1072 | switch (chip->id) { | |
1073 | case CHIP_PM8607: | |
78258064 | 1074 | device_8606_init(chip, chip->companion, pdata); |
53dbab7a HZ |
1075 | break; |
1076 | case CHIP_PM8606: | |
1077 | device_8607_init(chip, chip->companion, pdata); | |
1078 | break; | |
1079 | } | |
1080 | } | |
5c42e8c4 | 1081 | |
53dbab7a | 1082 | return 0; |
bbd51b1f HZ |
1083 | } |
1084 | ||
4740f73f | 1085 | static void pm860x_device_exit(struct pm860x_chip *chip) |
bbd51b1f | 1086 | { |
5c42e8c4 | 1087 | device_irq_exit(chip); |
bbd51b1f HZ |
1088 | mfd_remove_devices(chip->dev); |
1089 | } | |
1090 | ||
f2f218cd HZ |
1091 | static int verify_addr(struct i2c_client *i2c) |
1092 | { | |
1093 | unsigned short addr_8607[] = {0x30, 0x34}; | |
1094 | unsigned short addr_8606[] = {0x10, 0x11}; | |
1095 | int size, i; | |
1096 | ||
1097 | if (i2c == NULL) | |
1098 | return 0; | |
1099 | size = ARRAY_SIZE(addr_8606); | |
1100 | for (i = 0; i < size; i++) { | |
1101 | if (i2c->addr == *(addr_8606 + i)) | |
1102 | return CHIP_PM8606; | |
1103 | } | |
1104 | size = ARRAY_SIZE(addr_8607); | |
1105 | for (i = 0; i < size; i++) { | |
1106 | if (i2c->addr == *(addr_8607 + i)) | |
1107 | return CHIP_PM8607; | |
1108 | } | |
1109 | return 0; | |
1110 | } | |
1111 | ||
8da90cc8 | 1112 | static const struct regmap_config pm860x_regmap_config = { |
f2f218cd HZ |
1113 | .reg_bits = 8, |
1114 | .val_bits = 8, | |
1115 | }; | |
1116 | ||
f791be49 | 1117 | static int pm860x_dt_init(struct device_node *np, |
2e57d567 HZ |
1118 | struct device *dev, |
1119 | struct pm860x_platform_data *pdata) | |
1120 | { | |
1121 | int ret; | |
1122 | ||
1123 | if (of_get_property(np, "marvell,88pm860x-irq-read-clr", NULL)) | |
1124 | pdata->irq_mode = 1; | |
1125 | ret = of_property_read_u32(np, "marvell,88pm860x-slave-addr", | |
1126 | &pdata->companion_addr); | |
1127 | if (ret) { | |
2e57848f LJ |
1128 | dev_err(dev, |
1129 | "Not found \"marvell,88pm860x-slave-addr\" property\n"); | |
2e57d567 HZ |
1130 | pdata->companion_addr = 0; |
1131 | } | |
1132 | return 0; | |
1133 | } | |
1134 | ||
1e98dcd7 | 1135 | static int pm860x_probe(struct i2c_client *client) |
f2f218cd | 1136 | { |
334a41ce | 1137 | struct pm860x_platform_data *pdata = dev_get_platdata(&client->dev); |
2e57d567 | 1138 | struct device_node *node = client->dev.of_node; |
f2f218cd HZ |
1139 | struct pm860x_chip *chip; |
1140 | int ret; | |
1141 | ||
2e57d567 HZ |
1142 | if (node && !pdata) { |
1143 | /* parse DT to get platform data */ | |
1144 | pdata = devm_kzalloc(&client->dev, | |
1145 | sizeof(struct pm860x_platform_data), | |
1146 | GFP_KERNEL); | |
1147 | if (!pdata) | |
1148 | return -ENOMEM; | |
1149 | ret = pm860x_dt_init(node, &client->dev, pdata); | |
1150 | if (ret) | |
85529575 | 1151 | return ret; |
2e57d567 | 1152 | } else if (!pdata) { |
f2f218cd HZ |
1153 | pr_info("No platform data in %s!\n", __func__); |
1154 | return -EINVAL; | |
1155 | } | |
1156 | ||
a1ace0aa LJ |
1157 | chip = devm_kzalloc(&client->dev, |
1158 | sizeof(struct pm860x_chip), GFP_KERNEL); | |
85529575 JH |
1159 | if (chip == NULL) |
1160 | return -ENOMEM; | |
f2f218cd HZ |
1161 | |
1162 | chip->id = verify_addr(client); | |
aaaab422 | 1163 | chip->regmap = devm_regmap_init_i2c(client, &pm860x_regmap_config); |
f2f218cd HZ |
1164 | if (IS_ERR(chip->regmap)) { |
1165 | ret = PTR_ERR(chip->regmap); | |
1166 | dev_err(&client->dev, "Failed to allocate register map: %d\n", | |
1167 | ret); | |
f2f218cd HZ |
1168 | return ret; |
1169 | } | |
1170 | chip->client = client; | |
1171 | i2c_set_clientdata(client, chip); | |
1172 | chip->dev = &client->dev; | |
1173 | dev_set_drvdata(chip->dev, chip); | |
1174 | ||
1175 | /* | |
1176 | * Both client and companion client shares same platform driver. | |
1177 | * Driver distinguishes them by pdata->companion_addr. | |
1178 | * pdata->companion_addr is only assigned if companion chip exists. | |
1179 | * At the same time, the companion_addr shouldn't equal to client | |
1180 | * address. | |
1181 | */ | |
1182 | if (pdata->companion_addr && (pdata->companion_addr != client->addr)) { | |
1183 | chip->companion_addr = pdata->companion_addr; | |
1184 | chip->companion = i2c_new_dummy(chip->client->adapter, | |
1185 | chip->companion_addr); | |
159ce52a KK |
1186 | if (!chip->companion) { |
1187 | dev_err(&client->dev, | |
1188 | "Failed to allocate I2C companion device\n"); | |
1189 | return -ENODEV; | |
1190 | } | |
f2f218cd HZ |
1191 | chip->regmap_companion = regmap_init_i2c(chip->companion, |
1192 | &pm860x_regmap_config); | |
1193 | if (IS_ERR(chip->regmap_companion)) { | |
1194 | ret = PTR_ERR(chip->regmap_companion); | |
1195 | dev_err(&chip->companion->dev, | |
1196 | "Failed to allocate register map: %d\n", ret); | |
a7ab1c8b | 1197 | i2c_unregister_device(chip->companion); |
f2f218cd HZ |
1198 | return ret; |
1199 | } | |
1200 | i2c_set_clientdata(chip->companion, chip); | |
1201 | } | |
1202 | ||
1203 | pm860x_device_init(chip, pdata); | |
1204 | return 0; | |
1205 | } | |
1206 | ||
4740f73f | 1207 | static int pm860x_remove(struct i2c_client *client) |
f2f218cd HZ |
1208 | { |
1209 | struct pm860x_chip *chip = i2c_get_clientdata(client); | |
1210 | ||
1211 | pm860x_device_exit(chip); | |
1212 | if (chip->companion) { | |
1213 | regmap_exit(chip->regmap_companion); | |
1214 | i2c_unregister_device(chip->companion); | |
1215 | } | |
f2f218cd HZ |
1216 | return 0; |
1217 | } | |
1218 | ||
1219 | #ifdef CONFIG_PM_SLEEP | |
1220 | static int pm860x_suspend(struct device *dev) | |
1221 | { | |
1b5420e1 | 1222 | struct i2c_client *client = to_i2c_client(dev); |
f2f218cd HZ |
1223 | struct pm860x_chip *chip = i2c_get_clientdata(client); |
1224 | ||
1225 | if (device_may_wakeup(dev) && chip->wakeup_flag) | |
1226 | enable_irq_wake(chip->core_irq); | |
1227 | return 0; | |
1228 | } | |
1229 | ||
1230 | static int pm860x_resume(struct device *dev) | |
1231 | { | |
1b5420e1 | 1232 | struct i2c_client *client = to_i2c_client(dev); |
f2f218cd HZ |
1233 | struct pm860x_chip *chip = i2c_get_clientdata(client); |
1234 | ||
1235 | if (device_may_wakeup(dev) && chip->wakeup_flag) | |
1236 | disable_irq_wake(chip->core_irq); | |
1237 | return 0; | |
1238 | } | |
1239 | #endif | |
1240 | ||
1241 | static SIMPLE_DEV_PM_OPS(pm860x_pm_ops, pm860x_suspend, pm860x_resume); | |
1242 | ||
2e57d567 HZ |
1243 | static const struct i2c_device_id pm860x_id_table[] = { |
1244 | { "88PM860x", 0 }, | |
1245 | {} | |
1246 | }; | |
1247 | MODULE_DEVICE_TABLE(i2c, pm860x_id_table); | |
1248 | ||
1249 | static const struct of_device_id pm860x_dt_ids[] = { | |
1250 | { .compatible = "marvell,88pm860x", }, | |
1251 | {}, | |
1252 | }; | |
1253 | MODULE_DEVICE_TABLE(of, pm860x_dt_ids); | |
1254 | ||
f2f218cd HZ |
1255 | static struct i2c_driver pm860x_driver = { |
1256 | .driver = { | |
1257 | .name = "88PM860x", | |
f2f218cd | 1258 | .pm = &pm860x_pm_ops, |
cd2a5532 | 1259 | .of_match_table = pm860x_dt_ids, |
f2f218cd | 1260 | }, |
1e98dcd7 | 1261 | .probe_new = pm860x_probe, |
84449216 | 1262 | .remove = pm860x_remove, |
f2f218cd HZ |
1263 | .id_table = pm860x_id_table, |
1264 | }; | |
1265 | ||
1266 | static int __init pm860x_i2c_init(void) | |
1267 | { | |
1268 | int ret; | |
f90dff44 | 1269 | |
f2f218cd HZ |
1270 | ret = i2c_add_driver(&pm860x_driver); |
1271 | if (ret != 0) | |
1272 | pr_err("Failed to register 88PM860x I2C driver: %d\n", ret); | |
1273 | return ret; | |
1274 | } | |
1275 | subsys_initcall(pm860x_i2c_init); | |
1276 | ||
1277 | static void __exit pm860x_i2c_exit(void) | |
1278 | { | |
1279 | i2c_del_driver(&pm860x_driver); | |
1280 | } | |
1281 | module_exit(pm860x_i2c_exit); | |
1282 | ||
53dbab7a | 1283 | MODULE_DESCRIPTION("PMIC Driver for Marvell 88PM860x"); |
bbd51b1f HZ |
1284 | MODULE_AUTHOR("Haojian Zhuang <[email protected]>"); |
1285 | MODULE_LICENSE("GPL"); |