Commit | Line | Data |
---|---|---|
72cd7995 DB |
1 | /* |
2 | * tps65010 - driver for tps6501x power management chips | |
3 | * | |
4 | * Copyright (C) 2004 Texas Instruments | |
5 | * Copyright (C) 2004-2005 David Brownell | |
6 | * | |
7 | * This program is free software; you can redistribute it and/or modify | |
8 | * it under the terms of the GNU General Public License as published by | |
9 | * the Free Software Foundation; either version 2 of the License, or | |
10 | * (at your option) any later version. | |
11 | * | |
12 | * This program is distributed in the hope that it will be useful, | |
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | * GNU General Public License for more details. | |
16 | * | |
17 | * You should have received a copy of the GNU General Public License | |
18 | * along with this program; if not, write to the Free Software | |
19 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
20 | */ | |
72cd7995 | 21 | |
72cd7995 DB |
22 | #include <linux/kernel.h> |
23 | #include <linux/module.h> | |
24 | #include <linux/init.h> | |
25 | #include <linux/slab.h> | |
26 | #include <linux/interrupt.h> | |
72cd7995 DB |
27 | #include <linux/i2c.h> |
28 | #include <linux/delay.h> | |
29 | #include <linux/workqueue.h> | |
72cd7995 DB |
30 | #include <linux/debugfs.h> |
31 | #include <linux/seq_file.h> | |
5c085d36 | 32 | #include <linux/mutex.h> |
79966fd9 | 33 | #include <linux/platform_device.h> |
72cd7995 | 34 | |
6d16bfb5 | 35 | #include <linux/i2c/tps65010.h> |
72cd7995 | 36 | |
77b22897 | 37 | #include <linux/gpio.h> |
79966fd9 DB |
38 | |
39 | ||
72cd7995 DB |
40 | /*-------------------------------------------------------------------------*/ |
41 | ||
42 | #define DRIVER_VERSION "2 May 2005" | |
4801bc25 | 43 | #define DRIVER_NAME (tps65010_driver.driver.name) |
72cd7995 DB |
44 | |
45 | MODULE_DESCRIPTION("TPS6501x Power Management Driver"); | |
46 | MODULE_LICENSE("GPL"); | |
47 | ||
72cd7995 DB |
48 | static struct i2c_driver tps65010_driver; |
49 | ||
50 | /*-------------------------------------------------------------------------*/ | |
51 | ||
52 | /* This driver handles a family of multipurpose chips, which incorporate | |
53 | * voltage regulators, lithium ion/polymer battery charging, GPIOs, LEDs, | |
54 | * and other features often needed in portable devices like cell phones | |
55 | * or digital cameras. | |
56 | * | |
57 | * The tps65011 and tps65013 have different voltage settings compared | |
58 | * to tps65010 and tps65012. The tps65013 has a NO_CHG status/irq. | |
59 | * All except tps65010 have "wait" mode, possibly defaulted so that | |
60 | * battery-insert != device-on. | |
61 | * | |
62 | * We could distinguish between some models by checking VDCDC1.UVLO or | |
63 | * other registers, unless they've been changed already after powerup | |
64 | * as part of board setup by a bootloader. | |
65 | */ | |
66 | enum tps_model { | |
72cd7995 DB |
67 | TPS65010, |
68 | TPS65011, | |
69 | TPS65012, | |
70 | TPS65013, | |
71 | }; | |
72 | ||
73 | struct tps65010 { | |
b5067f8f | 74 | struct i2c_client *client; |
5c085d36 | 75 | struct mutex lock; |
8c1bc04e | 76 | struct delayed_work work; |
72cd7995 DB |
77 | struct dentry *file; |
78 | unsigned charging:1; | |
79 | unsigned por:1; | |
80 | unsigned model:8; | |
81 | u16 vbus; | |
82 | unsigned long flags; | |
83 | #define FLAG_VBUS_CHANGED 0 | |
84 | #define FLAG_IRQ_ENABLE 1 | |
85 | ||
86 | /* copies of last register state */ | |
87 | u8 chgstatus, regstatus, chgconf; | |
88 | u8 nmask1, nmask2; | |
89 | ||
79966fd9 DB |
90 | u8 outmask; |
91 | struct gpio_chip chip; | |
92 | struct platform_device *leds; | |
72cd7995 DB |
93 | }; |
94 | ||
4801bc25 | 95 | #define POWER_POLL_DELAY msecs_to_jiffies(5000) |
72cd7995 DB |
96 | |
97 | /*-------------------------------------------------------------------------*/ | |
98 | ||
99 | #if defined(DEBUG) || defined(CONFIG_DEBUG_FS) | |
100 | ||
101 | static void dbg_chgstat(char *buf, size_t len, u8 chgstatus) | |
102 | { | |
103 | snprintf(buf, len, "%02x%s%s%s%s%s%s%s%s\n", | |
104 | chgstatus, | |
105 | (chgstatus & TPS_CHG_USB) ? " USB" : "", | |
106 | (chgstatus & TPS_CHG_AC) ? " AC" : "", | |
107 | (chgstatus & TPS_CHG_THERM) ? " therm" : "", | |
108 | (chgstatus & TPS_CHG_TERM) ? " done" : | |
109 | ((chgstatus & (TPS_CHG_USB|TPS_CHG_AC)) | |
110 | ? " (charging)" : ""), | |
111 | (chgstatus & TPS_CHG_TAPER_TMO) ? " taper_tmo" : "", | |
112 | (chgstatus & TPS_CHG_CHG_TMO) ? " charge_tmo" : "", | |
113 | (chgstatus & TPS_CHG_PRECHG_TMO) ? " prechg_tmo" : "", | |
114 | (chgstatus & TPS_CHG_TEMP_ERR) ? " temp_err" : ""); | |
115 | } | |
116 | ||
117 | static void dbg_regstat(char *buf, size_t len, u8 regstatus) | |
118 | { | |
119 | snprintf(buf, len, "%02x %s%s%s%s%s%s%s%s\n", | |
120 | regstatus, | |
121 | (regstatus & TPS_REG_ONOFF) ? "off" : "(on)", | |
122 | (regstatus & TPS_REG_COVER) ? " uncover" : "", | |
123 | (regstatus & TPS_REG_UVLO) ? " UVLO" : "", | |
124 | (regstatus & TPS_REG_NO_CHG) ? " NO_CHG" : "", | |
65fc50e5 | 125 | (regstatus & TPS_REG_PG_LD02) ? " ld02_bad" : "", |
72cd7995 DB |
126 | (regstatus & TPS_REG_PG_LD01) ? " ld01_bad" : "", |
127 | (regstatus & TPS_REG_PG_MAIN) ? " main_bad" : "", | |
128 | (regstatus & TPS_REG_PG_CORE) ? " core_bad" : ""); | |
129 | } | |
130 | ||
131 | static void dbg_chgconf(int por, char *buf, size_t len, u8 chgconfig) | |
132 | { | |
65fc50e5 | 133 | const char *hibit; |
72cd7995 DB |
134 | |
135 | if (por) | |
136 | hibit = (chgconfig & TPS_CHARGE_POR) | |
137 | ? "POR=69ms" : "POR=1sec"; | |
138 | else | |
139 | hibit = (chgconfig & TPS65013_AUA) ? "AUA" : ""; | |
140 | ||
141 | snprintf(buf, len, "%02x %s%s%s AC=%d%% USB=%dmA %sCharge\n", | |
142 | chgconfig, hibit, | |
143 | (chgconfig & TPS_CHARGE_RESET) ? " reset" : "", | |
144 | (chgconfig & TPS_CHARGE_FAST) ? " fast" : "", | |
145 | ({int p; switch ((chgconfig >> 3) & 3) { | |
146 | case 3: p = 100; break; | |
147 | case 2: p = 75; break; | |
148 | case 1: p = 50; break; | |
149 | default: p = 25; break; | |
150 | }; p; }), | |
151 | (chgconfig & TPS_VBUS_CHARGING) | |
152 | ? ((chgconfig & TPS_VBUS_500MA) ? 500 : 100) | |
153 | : 0, | |
154 | (chgconfig & TPS_CHARGE_ENABLE) ? "" : "No"); | |
155 | } | |
156 | ||
157 | #endif | |
158 | ||
159 | #ifdef DEBUG | |
160 | ||
161 | static void show_chgstatus(const char *label, u8 chgstatus) | |
162 | { | |
163 | char buf [100]; | |
164 | ||
165 | dbg_chgstat(buf, sizeof buf, chgstatus); | |
166 | pr_debug("%s: %s %s", DRIVER_NAME, label, buf); | |
167 | } | |
168 | ||
169 | static void show_regstatus(const char *label, u8 regstatus) | |
170 | { | |
171 | char buf [100]; | |
172 | ||
173 | dbg_regstat(buf, sizeof buf, regstatus); | |
174 | pr_debug("%s: %s %s", DRIVER_NAME, label, buf); | |
175 | } | |
176 | ||
177 | static void show_chgconfig(int por, const char *label, u8 chgconfig) | |
178 | { | |
179 | char buf [100]; | |
180 | ||
181 | dbg_chgconf(por, buf, sizeof buf, chgconfig); | |
182 | pr_debug("%s: %s %s", DRIVER_NAME, label, buf); | |
183 | } | |
184 | ||
185 | #else | |
186 | ||
187 | static inline void show_chgstatus(const char *label, u8 chgstatus) { } | |
188 | static inline void show_regstatus(const char *label, u8 chgstatus) { } | |
189 | static inline void show_chgconfig(int por, const char *label, u8 chgconfig) { } | |
190 | ||
191 | #endif | |
192 | ||
193 | #ifdef CONFIG_DEBUG_FS | |
194 | ||
195 | static int dbg_show(struct seq_file *s, void *_) | |
196 | { | |
197 | struct tps65010 *tps = s->private; | |
198 | u8 value, v2; | |
199 | unsigned i; | |
200 | char buf[100]; | |
201 | const char *chip; | |
202 | ||
203 | switch (tps->model) { | |
204 | case TPS65010: chip = "tps65010"; break; | |
205 | case TPS65011: chip = "tps65011"; break; | |
206 | case TPS65012: chip = "tps65012"; break; | |
207 | case TPS65013: chip = "tps65013"; break; | |
208 | default: chip = NULL; break; | |
209 | } | |
210 | seq_printf(s, "driver %s\nversion %s\nchip %s\n\n", | |
211 | DRIVER_NAME, DRIVER_VERSION, chip); | |
212 | ||
5c085d36 | 213 | mutex_lock(&tps->lock); |
72cd7995 DB |
214 | |
215 | /* FIXME how can we tell whether a battery is present? | |
216 | * likely involves a charge gauging chip (like BQ26501). | |
217 | */ | |
218 | ||
219 | seq_printf(s, "%scharging\n\n", tps->charging ? "" : "(not) "); | |
220 | ||
221 | ||
222 | /* registers for monitoring battery charging and status; note | |
223 | * that reading chgstat and regstat may ack IRQs... | |
224 | */ | |
b5067f8f | 225 | value = i2c_smbus_read_byte_data(tps->client, TPS_CHGCONFIG); |
72cd7995 DB |
226 | dbg_chgconf(tps->por, buf, sizeof buf, value); |
227 | seq_printf(s, "chgconfig %s", buf); | |
228 | ||
b5067f8f | 229 | value = i2c_smbus_read_byte_data(tps->client, TPS_CHGSTATUS); |
72cd7995 DB |
230 | dbg_chgstat(buf, sizeof buf, value); |
231 | seq_printf(s, "chgstat %s", buf); | |
b5067f8f | 232 | value = i2c_smbus_read_byte_data(tps->client, TPS_MASK1); |
72cd7995 DB |
233 | dbg_chgstat(buf, sizeof buf, value); |
234 | seq_printf(s, "mask1 %s", buf); | |
235 | /* ignore ackint1 */ | |
236 | ||
b5067f8f | 237 | value = i2c_smbus_read_byte_data(tps->client, TPS_REGSTATUS); |
72cd7995 DB |
238 | dbg_regstat(buf, sizeof buf, value); |
239 | seq_printf(s, "regstat %s", buf); | |
b5067f8f | 240 | value = i2c_smbus_read_byte_data(tps->client, TPS_MASK2); |
72cd7995 DB |
241 | dbg_regstat(buf, sizeof buf, value); |
242 | seq_printf(s, "mask2 %s\n", buf); | |
243 | /* ignore ackint2 */ | |
244 | ||
afdb32f2 | 245 | schedule_delayed_work(&tps->work, POWER_POLL_DELAY); |
72cd7995 DB |
246 | |
247 | ||
248 | /* VMAIN voltage, enable lowpower, etc */ | |
b5067f8f | 249 | value = i2c_smbus_read_byte_data(tps->client, TPS_VDCDC1); |
72cd7995 DB |
250 | seq_printf(s, "vdcdc1 %02x\n", value); |
251 | ||
252 | /* VCORE voltage, vibrator on/off */ | |
b5067f8f | 253 | value = i2c_smbus_read_byte_data(tps->client, TPS_VDCDC2); |
72cd7995 DB |
254 | seq_printf(s, "vdcdc2 %02x\n", value); |
255 | ||
256 | /* both LD0s, and their lowpower behavior */ | |
b5067f8f | 257 | value = i2c_smbus_read_byte_data(tps->client, TPS_VREGS1); |
72cd7995 DB |
258 | seq_printf(s, "vregs1 %02x\n\n", value); |
259 | ||
260 | ||
261 | /* LEDs and GPIOs */ | |
b5067f8f DB |
262 | value = i2c_smbus_read_byte_data(tps->client, TPS_LED1_ON); |
263 | v2 = i2c_smbus_read_byte_data(tps->client, TPS_LED1_PER); | |
72cd7995 DB |
264 | seq_printf(s, "led1 %s, on=%02x, per=%02x, %d/%d msec\n", |
265 | (value & 0x80) | |
266 | ? ((v2 & 0x80) ? "on" : "off") | |
267 | : ((v2 & 0x80) ? "blink" : "(nPG)"), | |
268 | value, v2, | |
269 | (value & 0x7f) * 10, (v2 & 0x7f) * 100); | |
270 | ||
b5067f8f DB |
271 | value = i2c_smbus_read_byte_data(tps->client, TPS_LED2_ON); |
272 | v2 = i2c_smbus_read_byte_data(tps->client, TPS_LED2_PER); | |
72cd7995 DB |
273 | seq_printf(s, "led2 %s, on=%02x, per=%02x, %d/%d msec\n", |
274 | (value & 0x80) | |
275 | ? ((v2 & 0x80) ? "on" : "off") | |
276 | : ((v2 & 0x80) ? "blink" : "off"), | |
277 | value, v2, | |
278 | (value & 0x7f) * 10, (v2 & 0x7f) * 100); | |
279 | ||
b5067f8f DB |
280 | value = i2c_smbus_read_byte_data(tps->client, TPS_DEFGPIO); |
281 | v2 = i2c_smbus_read_byte_data(tps->client, TPS_MASK3); | |
72cd7995 DB |
282 | seq_printf(s, "defgpio %02x mask3 %02x\n", value, v2); |
283 | ||
284 | for (i = 0; i < 4; i++) { | |
65fc50e5 | 285 | if (value & (1 << (4 + i))) |
72cd7995 DB |
286 | seq_printf(s, " gpio%d-out %s\n", i + 1, |
287 | (value & (1 << i)) ? "low" : "hi "); | |
288 | else | |
289 | seq_printf(s, " gpio%d-in %s %s %s\n", i + 1, | |
290 | (value & (1 << i)) ? "hi " : "low", | |
291 | (v2 & (1 << i)) ? "no-irq" : "irq", | |
292 | (v2 & (1 << (4 + i))) ? "rising" : "falling"); | |
293 | } | |
294 | ||
5c085d36 | 295 | mutex_unlock(&tps->lock); |
72cd7995 DB |
296 | return 0; |
297 | } | |
298 | ||
299 | static int dbg_tps_open(struct inode *inode, struct file *file) | |
300 | { | |
8e18e294 | 301 | return single_open(file, dbg_show, inode->i_private); |
72cd7995 DB |
302 | } |
303 | ||
2b8693c0 | 304 | static const struct file_operations debug_fops = { |
72cd7995 DB |
305 | .open = dbg_tps_open, |
306 | .read = seq_read, | |
307 | .llseek = seq_lseek, | |
308 | .release = single_release, | |
309 | }; | |
310 | ||
311 | #define DEBUG_FOPS &debug_fops | |
312 | ||
313 | #else | |
314 | #define DEBUG_FOPS NULL | |
315 | #endif | |
316 | ||
317 | /*-------------------------------------------------------------------------*/ | |
318 | ||
319 | /* handle IRQS in a task context, so we can use I2C calls */ | |
320 | static void tps65010_interrupt(struct tps65010 *tps) | |
321 | { | |
322 | u8 tmp = 0, mask, poll; | |
323 | ||
8c1bc04e | 324 | /* IRQs won't trigger for certain events, but we can get |
72cd7995 DB |
325 | * others by polling (normally, with external power applied). |
326 | */ | |
327 | poll = 0; | |
328 | ||
329 | /* regstatus irqs */ | |
330 | if (tps->nmask2) { | |
b5067f8f | 331 | tmp = i2c_smbus_read_byte_data(tps->client, TPS_REGSTATUS); |
72cd7995 DB |
332 | mask = tmp ^ tps->regstatus; |
333 | tps->regstatus = tmp; | |
334 | mask &= tps->nmask2; | |
335 | } else | |
336 | mask = 0; | |
337 | if (mask) { | |
338 | tps->regstatus = tmp; | |
339 | /* may need to shut something down ... */ | |
340 | ||
341 | /* "off" usually means deep sleep */ | |
342 | if (tmp & TPS_REG_ONOFF) { | |
343 | pr_info("%s: power off button\n", DRIVER_NAME); | |
344 | #if 0 | |
345 | /* REVISIT: this might need its own workqueue | |
346 | * plus tweaks including deadlock avoidance ... | |
ab3bfca7 | 347 | * also needs to get error handling and probably |
b0cb1a19 | 348 | * an #ifdef CONFIG_HIBERNATION |
72cd7995 | 349 | */ |
a3d25c27 | 350 | hibernate(); |
72cd7995 DB |
351 | #endif |
352 | poll = 1; | |
353 | } | |
354 | } | |
355 | ||
356 | /* chgstatus irqs */ | |
357 | if (tps->nmask1) { | |
b5067f8f | 358 | tmp = i2c_smbus_read_byte_data(tps->client, TPS_CHGSTATUS); |
72cd7995 DB |
359 | mask = tmp ^ tps->chgstatus; |
360 | tps->chgstatus = tmp; | |
361 | mask &= tps->nmask1; | |
362 | } else | |
363 | mask = 0; | |
364 | if (mask) { | |
365 | unsigned charging = 0; | |
366 | ||
367 | show_chgstatus("chg/irq", tmp); | |
368 | if (tmp & (TPS_CHG_USB|TPS_CHG_AC)) | |
369 | show_chgconfig(tps->por, "conf", tps->chgconf); | |
370 | ||
371 | /* Unless it was turned off or disabled, we charge any | |
372 | * battery whenever there's power available for it | |
373 | * and the charger hasn't been disabled. | |
374 | */ | |
375 | if (!(tps->chgstatus & ~(TPS_CHG_USB|TPS_CHG_AC)) | |
376 | && (tps->chgstatus & (TPS_CHG_USB|TPS_CHG_AC)) | |
377 | && (tps->chgconf & TPS_CHARGE_ENABLE) | |
378 | ) { | |
379 | if (tps->chgstatus & TPS_CHG_USB) { | |
380 | /* VBUS options are readonly until reconnect */ | |
381 | if (mask & TPS_CHG_USB) | |
382 | set_bit(FLAG_VBUS_CHANGED, &tps->flags); | |
383 | charging = 1; | |
384 | } else if (tps->chgstatus & TPS_CHG_AC) | |
385 | charging = 1; | |
386 | } | |
387 | if (charging != tps->charging) { | |
388 | tps->charging = charging; | |
389 | pr_info("%s: battery %scharging\n", | |
390 | DRIVER_NAME, charging ? "" : | |
391 | ((tps->chgstatus & (TPS_CHG_USB|TPS_CHG_AC)) | |
392 | ? "NOT " : "dis")); | |
393 | } | |
394 | } | |
395 | ||
396 | /* always poll to detect (a) power removal, without tps65013 | |
397 | * NO_CHG IRQ; or (b) restart of charging after stop. | |
398 | */ | |
399 | if ((tps->model != TPS65013 || !tps->charging) | |
400 | && (tps->chgstatus & (TPS_CHG_USB|TPS_CHG_AC))) | |
401 | poll = 1; | |
402 | if (poll) | |
afdb32f2 | 403 | schedule_delayed_work(&tps->work, POWER_POLL_DELAY); |
72cd7995 DB |
404 | |
405 | /* also potentially gpio-in rise or fall */ | |
406 | } | |
407 | ||
408 | /* handle IRQs and polling using keventd for now */ | |
8c1bc04e | 409 | static void tps65010_work(struct work_struct *work) |
72cd7995 | 410 | { |
8c1bc04e | 411 | struct tps65010 *tps; |
72cd7995 | 412 | |
afdb32f2 | 413 | tps = container_of(to_delayed_work(work), struct tps65010, work); |
5c085d36 | 414 | mutex_lock(&tps->lock); |
72cd7995 DB |
415 | |
416 | tps65010_interrupt(tps); | |
417 | ||
418 | if (test_and_clear_bit(FLAG_VBUS_CHANGED, &tps->flags)) { | |
419 | int status; | |
420 | u8 chgconfig, tmp; | |
421 | ||
b5067f8f | 422 | chgconfig = i2c_smbus_read_byte_data(tps->client, |
72cd7995 DB |
423 | TPS_CHGCONFIG); |
424 | chgconfig &= ~(TPS_VBUS_500MA | TPS_VBUS_CHARGING); | |
425 | if (tps->vbus == 500) | |
426 | chgconfig |= TPS_VBUS_500MA | TPS_VBUS_CHARGING; | |
427 | else if (tps->vbus >= 100) | |
428 | chgconfig |= TPS_VBUS_CHARGING; | |
429 | ||
b5067f8f | 430 | status = i2c_smbus_write_byte_data(tps->client, |
72cd7995 DB |
431 | TPS_CHGCONFIG, chgconfig); |
432 | ||
433 | /* vbus update fails unless VBUS is connected! */ | |
b5067f8f | 434 | tmp = i2c_smbus_read_byte_data(tps->client, TPS_CHGCONFIG); |
72cd7995 DB |
435 | tps->chgconf = tmp; |
436 | show_chgconfig(tps->por, "update vbus", tmp); | |
437 | } | |
438 | ||
439 | if (test_and_clear_bit(FLAG_IRQ_ENABLE, &tps->flags)) | |
8056c6cb | 440 | enable_irq(tps->client->irq); |
72cd7995 | 441 | |
5c085d36 | 442 | mutex_unlock(&tps->lock); |
72cd7995 DB |
443 | } |
444 | ||
7d12e780 | 445 | static irqreturn_t tps65010_irq(int irq, void *_tps) |
72cd7995 DB |
446 | { |
447 | struct tps65010 *tps = _tps; | |
448 | ||
449 | disable_irq_nosync(irq); | |
450 | set_bit(FLAG_IRQ_ENABLE, &tps->flags); | |
afdb32f2 | 451 | schedule_delayed_work(&tps->work, 0); |
72cd7995 DB |
452 | return IRQ_HANDLED; |
453 | } | |
454 | ||
79966fd9 DB |
455 | /*-------------------------------------------------------------------------*/ |
456 | ||
457 | /* offsets 0..3 == GPIO1..GPIO4 | |
458 | * offsets 4..5 == LED1/nPG, LED2 (we set one of the non-BLINK modes) | |
b84ee0b0 | 459 | * offset 6 == vibrator motor driver |
79966fd9 DB |
460 | */ |
461 | static void | |
462 | tps65010_gpio_set(struct gpio_chip *chip, unsigned offset, int value) | |
463 | { | |
464 | if (offset < 4) | |
465 | tps65010_set_gpio_out_value(offset + 1, value); | |
b84ee0b0 | 466 | else if (offset < 6) |
79966fd9 | 467 | tps65010_set_led(offset - 3, value ? ON : OFF); |
b84ee0b0 MV |
468 | else |
469 | tps65010_set_vib(value); | |
79966fd9 DB |
470 | } |
471 | ||
472 | static int | |
473 | tps65010_output(struct gpio_chip *chip, unsigned offset, int value) | |
474 | { | |
475 | /* GPIOs may be input-only */ | |
476 | if (offset < 4) { | |
477 | struct tps65010 *tps; | |
478 | ||
479 | tps = container_of(chip, struct tps65010, chip); | |
480 | if (!(tps->outmask & (1 << offset))) | |
481 | return -EINVAL; | |
482 | tps65010_set_gpio_out_value(offset + 1, value); | |
b84ee0b0 | 483 | } else if (offset < 6) |
79966fd9 | 484 | tps65010_set_led(offset - 3, value ? ON : OFF); |
b84ee0b0 MV |
485 | else |
486 | tps65010_set_vib(value); | |
79966fd9 DB |
487 | |
488 | return 0; | |
489 | } | |
490 | ||
491 | static int tps65010_gpio_get(struct gpio_chip *chip, unsigned offset) | |
492 | { | |
493 | int value; | |
494 | struct tps65010 *tps; | |
495 | ||
496 | tps = container_of(chip, struct tps65010, chip); | |
497 | ||
498 | if (offset < 4) { | |
499 | value = i2c_smbus_read_byte_data(tps->client, TPS_DEFGPIO); | |
500 | if (value < 0) | |
501 | return 0; | |
502 | if (value & (1 << (offset + 4))) /* output */ | |
503 | return !(value & (1 << offset)); | |
504 | else /* input */ | |
505 | return (value & (1 << offset)); | |
506 | } | |
507 | ||
508 | /* REVISIT we *could* report LED1/nPG and LED2 state ... */ | |
509 | return 0; | |
510 | } | |
511 | ||
512 | ||
72cd7995 DB |
513 | /*-------------------------------------------------------------------------*/ |
514 | ||
515 | static struct tps65010 *the_tps; | |
516 | ||
8056c6cb | 517 | static int __exit tps65010_remove(struct i2c_client *client) |
72cd7995 | 518 | { |
8056c6cb | 519 | struct tps65010 *tps = i2c_get_clientdata(client); |
79966fd9 | 520 | struct tps65010_board *board = client->dev.platform_data; |
72cd7995 | 521 | |
79966fd9 DB |
522 | if (board && board->teardown) { |
523 | int status = board->teardown(client, board->context); | |
524 | if (status < 0) | |
525 | dev_dbg(&client->dev, "board %s %s err %d\n", | |
526 | "teardown", client->name, status); | |
527 | } | |
8056c6cb DB |
528 | if (client->irq > 0) |
529 | free_irq(client->irq, tps); | |
afdb32f2 | 530 | cancel_delayed_work_sync(&tps->work); |
72cd7995 | 531 | debugfs_remove(tps->file); |
f322d5f0 | 532 | kfree(tps); |
65fc50e5 | 533 | the_tps = NULL; |
72cd7995 DB |
534 | return 0; |
535 | } | |
536 | ||
d2653e92 JD |
537 | static int tps65010_probe(struct i2c_client *client, |
538 | const struct i2c_device_id *id) | |
72cd7995 DB |
539 | { |
540 | struct tps65010 *tps; | |
541 | int status; | |
79966fd9 | 542 | struct tps65010_board *board = client->dev.platform_data; |
72cd7995 DB |
543 | |
544 | if (the_tps) { | |
8056c6cb DB |
545 | dev_dbg(&client->dev, "only one tps6501x chip allowed\n"); |
546 | return -ENODEV; | |
72cd7995 DB |
547 | } |
548 | ||
8056c6cb DB |
549 | if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA)) |
550 | return -EINVAL; | |
551 | ||
5263ebb5 | 552 | tps = kzalloc(sizeof *tps, GFP_KERNEL); |
72cd7995 | 553 | if (!tps) |
8056c6cb | 554 | return -ENOMEM; |
72cd7995 | 555 | |
5c085d36 | 556 | mutex_init(&tps->lock); |
8c1bc04e | 557 | INIT_DELAYED_WORK(&tps->work, tps65010_work); |
8056c6cb | 558 | tps->client = client; |
3760f736 | 559 | tps->model = id->driver_data; |
72cd7995 | 560 | |
8056c6cb DB |
561 | /* the IRQ is active low, but many gpio lines can't support that |
562 | * so this driver uses falling-edge triggers instead. | |
563 | */ | |
564 | if (client->irq > 0) { | |
565 | status = request_irq(client->irq, tps65010_irq, | |
566 | IRQF_SAMPLE_RANDOM | IRQF_TRIGGER_FALLING, | |
567 | DRIVER_NAME, tps); | |
72cd7995 | 568 | if (status < 0) { |
b5067f8f | 569 | dev_dbg(&client->dev, "can't get IRQ %d, err %d\n", |
8056c6cb | 570 | client->irq, status); |
72cd7995 DB |
571 | goto fail1; |
572 | } | |
72cd7995 DB |
573 | /* annoying race here, ideally we'd have an option |
574 | * to claim the irq now and enable it later. | |
8056c6cb | 575 | * FIXME genirq IRQF_NOAUTOEN now solves that ... |
72cd7995 | 576 | */ |
8056c6cb | 577 | disable_irq(client->irq); |
72cd7995 | 578 | set_bit(FLAG_IRQ_ENABLE, &tps->flags); |
72cd7995 | 579 | } else |
8056c6cb | 580 | dev_warn(&client->dev, "IRQ not configured!\n"); |
72cd7995 DB |
581 | |
582 | ||
583 | switch (tps->model) { | |
584 | case TPS65010: | |
585 | case TPS65012: | |
586 | tps->por = 1; | |
587 | break; | |
72cd7995 DB |
588 | /* else CHGCONFIG.POR is replaced by AUA, enabling a WAIT mode */ |
589 | } | |
b5067f8f | 590 | tps->chgconf = i2c_smbus_read_byte_data(client, TPS_CHGCONFIG); |
72cd7995 DB |
591 | show_chgconfig(tps->por, "conf/init", tps->chgconf); |
592 | ||
593 | show_chgstatus("chg/init", | |
b5067f8f | 594 | i2c_smbus_read_byte_data(client, TPS_CHGSTATUS)); |
72cd7995 | 595 | show_regstatus("reg/init", |
b5067f8f | 596 | i2c_smbus_read_byte_data(client, TPS_REGSTATUS)); |
72cd7995 DB |
597 | |
598 | pr_debug("%s: vdcdc1 0x%02x, vdcdc2 %02x, vregs1 %02x\n", DRIVER_NAME, | |
b5067f8f DB |
599 | i2c_smbus_read_byte_data(client, TPS_VDCDC1), |
600 | i2c_smbus_read_byte_data(client, TPS_VDCDC2), | |
601 | i2c_smbus_read_byte_data(client, TPS_VREGS1)); | |
72cd7995 | 602 | pr_debug("%s: defgpio 0x%02x, mask3 0x%02x\n", DRIVER_NAME, |
b5067f8f DB |
603 | i2c_smbus_read_byte_data(client, TPS_DEFGPIO), |
604 | i2c_smbus_read_byte_data(client, TPS_MASK3)); | |
72cd7995 | 605 | |
6d072d78 | 606 | i2c_set_clientdata(client, tps); |
72cd7995 DB |
607 | the_tps = tps; |
608 | ||
609 | #if defined(CONFIG_USB_GADGET) && !defined(CONFIG_USB_OTG) | |
610 | /* USB hosts can't draw VBUS. OTG devices could, later | |
611 | * when OTG infrastructure enables it. USB peripherals | |
612 | * could be relying on VBUS while booting, though. | |
613 | */ | |
614 | tps->vbus = 100; | |
615 | #endif | |
616 | ||
617 | /* unmask the "interesting" irqs, then poll once to | |
618 | * kickstart monitoring, initialize shadowed status | |
619 | * registers, and maybe disable VBUS draw. | |
620 | */ | |
621 | tps->nmask1 = ~0; | |
b5067f8f | 622 | (void) i2c_smbus_write_byte_data(client, TPS_MASK1, ~tps->nmask1); |
72cd7995 DB |
623 | |
624 | tps->nmask2 = TPS_REG_ONOFF; | |
625 | if (tps->model == TPS65013) | |
626 | tps->nmask2 |= TPS_REG_NO_CHG; | |
b5067f8f | 627 | (void) i2c_smbus_write_byte_data(client, TPS_MASK2, ~tps->nmask2); |
72cd7995 | 628 | |
b5067f8f DB |
629 | (void) i2c_smbus_write_byte_data(client, TPS_MASK3, 0x0f |
630 | | i2c_smbus_read_byte_data(client, TPS_MASK3)); | |
72cd7995 | 631 | |
8c1bc04e | 632 | tps65010_work(&tps->work.work); |
72cd7995 DB |
633 | |
634 | tps->file = debugfs_create_file(DRIVER_NAME, S_IRUGO, NULL, | |
635 | tps, DEBUG_FOPS); | |
79966fd9 DB |
636 | |
637 | /* optionally register GPIOs */ | |
84836992 | 638 | if (board && board->base != 0) { |
79966fd9 DB |
639 | tps->outmask = board->outmask; |
640 | ||
641 | tps->chip.label = client->name; | |
d8f388d8 DB |
642 | tps->chip.dev = &client->dev; |
643 | tps->chip.owner = THIS_MODULE; | |
79966fd9 DB |
644 | |
645 | tps->chip.set = tps65010_gpio_set; | |
646 | tps->chip.direction_output = tps65010_output; | |
647 | ||
648 | /* NOTE: only partial support for inputs; nyet IRQs */ | |
649 | tps->chip.get = tps65010_gpio_get; | |
650 | ||
651 | tps->chip.base = board->base; | |
b84ee0b0 | 652 | tps->chip.ngpio = 7; |
79966fd9 DB |
653 | tps->chip.can_sleep = 1; |
654 | ||
655 | status = gpiochip_add(&tps->chip); | |
656 | if (status < 0) | |
657 | dev_err(&client->dev, "can't add gpiochip, err %d\n", | |
658 | status); | |
659 | else if (board->setup) { | |
660 | status = board->setup(client, board->context); | |
661 | if (status < 0) { | |
662 | dev_dbg(&client->dev, | |
663 | "board %s %s err %d\n", | |
664 | "setup", client->name, status); | |
665 | status = 0; | |
666 | } | |
667 | } | |
668 | } | |
669 | ||
72cd7995 | 670 | return 0; |
65fc50e5 | 671 | fail1: |
672 | kfree(tps); | |
8056c6cb | 673 | return status; |
72cd7995 DB |
674 | } |
675 | ||
3760f736 JD |
676 | static const struct i2c_device_id tps65010_id[] = { |
677 | { "tps65010", TPS65010 }, | |
678 | { "tps65011", TPS65011 }, | |
679 | { "tps65012", TPS65012 }, | |
680 | { "tps65013", TPS65013 }, | |
b84ee0b0 | 681 | { "tps65014", TPS65011 }, /* tps65011 charging at 6.5V max */ |
3760f736 JD |
682 | { } |
683 | }; | |
684 | MODULE_DEVICE_TABLE(i2c, tps65010_id); | |
685 | ||
72cd7995 | 686 | static struct i2c_driver tps65010_driver = { |
a9718b0c | 687 | .driver = { |
a9718b0c LR |
688 | .name = "tps65010", |
689 | }, | |
8056c6cb DB |
690 | .probe = tps65010_probe, |
691 | .remove = __exit_p(tps65010_remove), | |
3760f736 | 692 | .id_table = tps65010_id, |
72cd7995 DB |
693 | }; |
694 | ||
695 | /*-------------------------------------------------------------------------*/ | |
696 | ||
697 | /* Draw from VBUS: | |
698 | * 0 mA -- DON'T DRAW (might supply power instead) | |
699 | * 100 mA -- usb unit load (slowest charge rate) | |
700 | * 500 mA -- usb high power (fast battery charge) | |
701 | */ | |
702 | int tps65010_set_vbus_draw(unsigned mA) | |
703 | { | |
704 | unsigned long flags; | |
705 | ||
706 | if (!the_tps) | |
707 | return -ENODEV; | |
708 | ||
709 | /* assumes non-SMP */ | |
710 | local_irq_save(flags); | |
711 | if (mA >= 500) | |
712 | mA = 500; | |
713 | else if (mA >= 100) | |
714 | mA = 100; | |
715 | else | |
716 | mA = 0; | |
717 | the_tps->vbus = mA; | |
718 | if ((the_tps->chgstatus & TPS_CHG_USB) | |
719 | && test_and_set_bit( | |
720 | FLAG_VBUS_CHANGED, &the_tps->flags)) { | |
721 | /* gadget drivers call this in_irq() */ | |
afdb32f2 | 722 | schedule_delayed_work(&the_tps->work, 0); |
72cd7995 DB |
723 | } |
724 | local_irq_restore(flags); | |
725 | ||
726 | return 0; | |
727 | } | |
728 | EXPORT_SYMBOL(tps65010_set_vbus_draw); | |
729 | ||
730 | /*-------------------------------------------------------------------------*/ | |
731 | /* tps65010_set_gpio_out_value parameter: | |
732 | * gpio: GPIO1, GPIO2, GPIO3 or GPIO4 | |
733 | * value: LOW or HIGH | |
734 | */ | |
735 | int tps65010_set_gpio_out_value(unsigned gpio, unsigned value) | |
736 | { | |
737 | int status; | |
738 | unsigned defgpio; | |
739 | ||
740 | if (!the_tps) | |
741 | return -ENODEV; | |
742 | if ((gpio < GPIO1) || (gpio > GPIO4)) | |
743 | return -EINVAL; | |
744 | ||
5c085d36 | 745 | mutex_lock(&the_tps->lock); |
72cd7995 | 746 | |
b5067f8f | 747 | defgpio = i2c_smbus_read_byte_data(the_tps->client, TPS_DEFGPIO); |
72cd7995 DB |
748 | |
749 | /* Configure GPIO for output */ | |
750 | defgpio |= 1 << (gpio + 3); | |
751 | ||
752 | /* Writing 1 forces a logic 0 on that GPIO and vice versa */ | |
753 | switch (value) { | |
754 | case LOW: | |
755 | defgpio |= 1 << (gpio - 1); /* set GPIO low by writing 1 */ | |
756 | break; | |
757 | /* case HIGH: */ | |
758 | default: | |
759 | defgpio &= ~(1 << (gpio - 1)); /* set GPIO high by writing 0 */ | |
760 | break; | |
761 | } | |
762 | ||
b5067f8f | 763 | status = i2c_smbus_write_byte_data(the_tps->client, |
72cd7995 DB |
764 | TPS_DEFGPIO, defgpio); |
765 | ||
766 | pr_debug("%s: gpio%dout = %s, defgpio 0x%02x\n", DRIVER_NAME, | |
767 | gpio, value ? "high" : "low", | |
b5067f8f | 768 | i2c_smbus_read_byte_data(the_tps->client, TPS_DEFGPIO)); |
72cd7995 | 769 | |
5c085d36 | 770 | mutex_unlock(&the_tps->lock); |
72cd7995 DB |
771 | return status; |
772 | } | |
773 | EXPORT_SYMBOL(tps65010_set_gpio_out_value); | |
774 | ||
775 | /*-------------------------------------------------------------------------*/ | |
776 | /* tps65010_set_led parameter: | |
777 | * led: LED1 or LED2 | |
778 | * mode: ON, OFF or BLINK | |
779 | */ | |
780 | int tps65010_set_led(unsigned led, unsigned mode) | |
781 | { | |
782 | int status; | |
783 | unsigned led_on, led_per, offs; | |
784 | ||
785 | if (!the_tps) | |
786 | return -ENODEV; | |
787 | ||
65fc50e5 | 788 | if (led == LED1) |
72cd7995 DB |
789 | offs = 0; |
790 | else { | |
791 | offs = 2; | |
792 | led = LED2; | |
793 | } | |
794 | ||
5c085d36 | 795 | mutex_lock(&the_tps->lock); |
72cd7995 | 796 | |
65fc50e5 | 797 | pr_debug("%s: led%i_on 0x%02x\n", DRIVER_NAME, led, |
b5067f8f | 798 | i2c_smbus_read_byte_data(the_tps->client, |
65fc50e5 | 799 | TPS_LED1_ON + offs)); |
72cd7995 | 800 | |
65fc50e5 | 801 | pr_debug("%s: led%i_per 0x%02x\n", DRIVER_NAME, led, |
b5067f8f | 802 | i2c_smbus_read_byte_data(the_tps->client, |
65fc50e5 | 803 | TPS_LED1_PER + offs)); |
72cd7995 DB |
804 | |
805 | switch (mode) { | |
806 | case OFF: | |
807 | led_on = 1 << 7; | |
808 | led_per = 0 << 7; | |
809 | break; | |
810 | case ON: | |
811 | led_on = 1 << 7; | |
812 | led_per = 1 << 7; | |
813 | break; | |
814 | case BLINK: | |
815 | led_on = 0x30 | (0 << 7); | |
816 | led_per = 0x08 | (1 << 7); | |
817 | break; | |
818 | default: | |
65fc50e5 | 819 | printk(KERN_ERR "%s: Wrong mode parameter for set_led()\n", |
72cd7995 | 820 | DRIVER_NAME); |
5c085d36 | 821 | mutex_unlock(&the_tps->lock); |
72cd7995 DB |
822 | return -EINVAL; |
823 | } | |
824 | ||
b5067f8f | 825 | status = i2c_smbus_write_byte_data(the_tps->client, |
72cd7995 DB |
826 | TPS_LED1_ON + offs, led_on); |
827 | ||
828 | if (status != 0) { | |
829 | printk(KERN_ERR "%s: Failed to write led%i_on register\n", | |
830 | DRIVER_NAME, led); | |
5c085d36 | 831 | mutex_unlock(&the_tps->lock); |
72cd7995 DB |
832 | return status; |
833 | } | |
834 | ||
65fc50e5 | 835 | pr_debug("%s: led%i_on 0x%02x\n", DRIVER_NAME, led, |
b5067f8f | 836 | i2c_smbus_read_byte_data(the_tps->client, TPS_LED1_ON + offs)); |
72cd7995 | 837 | |
b5067f8f | 838 | status = i2c_smbus_write_byte_data(the_tps->client, |
72cd7995 DB |
839 | TPS_LED1_PER + offs, led_per); |
840 | ||
841 | if (status != 0) { | |
842 | printk(KERN_ERR "%s: Failed to write led%i_per register\n", | |
843 | DRIVER_NAME, led); | |
5c085d36 | 844 | mutex_unlock(&the_tps->lock); |
72cd7995 DB |
845 | return status; |
846 | } | |
847 | ||
65fc50e5 | 848 | pr_debug("%s: led%i_per 0x%02x\n", DRIVER_NAME, led, |
b5067f8f | 849 | i2c_smbus_read_byte_data(the_tps->client, |
65fc50e5 | 850 | TPS_LED1_PER + offs)); |
72cd7995 | 851 | |
5c085d36 | 852 | mutex_unlock(&the_tps->lock); |
72cd7995 DB |
853 | |
854 | return status; | |
855 | } | |
856 | EXPORT_SYMBOL(tps65010_set_led); | |
857 | ||
858 | /*-------------------------------------------------------------------------*/ | |
859 | /* tps65010_set_vib parameter: | |
860 | * value: ON or OFF | |
861 | */ | |
862 | int tps65010_set_vib(unsigned value) | |
863 | { | |
864 | int status; | |
865 | unsigned vdcdc2; | |
866 | ||
867 | if (!the_tps) | |
868 | return -ENODEV; | |
869 | ||
5c085d36 | 870 | mutex_lock(&the_tps->lock); |
72cd7995 | 871 | |
b5067f8f | 872 | vdcdc2 = i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC2); |
72cd7995 DB |
873 | vdcdc2 &= ~(1 << 1); |
874 | if (value) | |
875 | vdcdc2 |= (1 << 1); | |
b5067f8f | 876 | status = i2c_smbus_write_byte_data(the_tps->client, |
72cd7995 DB |
877 | TPS_VDCDC2, vdcdc2); |
878 | ||
879 | pr_debug("%s: vibrator %s\n", DRIVER_NAME, value ? "on" : "off"); | |
880 | ||
5c085d36 | 881 | mutex_unlock(&the_tps->lock); |
72cd7995 DB |
882 | return status; |
883 | } | |
884 | EXPORT_SYMBOL(tps65010_set_vib); | |
885 | ||
886 | /*-------------------------------------------------------------------------*/ | |
887 | /* tps65010_set_low_pwr parameter: | |
888 | * mode: ON or OFF | |
889 | */ | |
890 | int tps65010_set_low_pwr(unsigned mode) | |
891 | { | |
892 | int status; | |
893 | unsigned vdcdc1; | |
894 | ||
895 | if (!the_tps) | |
896 | return -ENODEV; | |
897 | ||
5c085d36 | 898 | mutex_lock(&the_tps->lock); |
72cd7995 DB |
899 | |
900 | pr_debug("%s: %s low_pwr, vdcdc1 0x%02x\n", DRIVER_NAME, | |
901 | mode ? "enable" : "disable", | |
b5067f8f | 902 | i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1)); |
72cd7995 | 903 | |
b5067f8f | 904 | vdcdc1 = i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1); |
72cd7995 DB |
905 | |
906 | switch (mode) { | |
907 | case OFF: | |
908 | vdcdc1 &= ~TPS_ENABLE_LP; /* disable ENABLE_LP bit */ | |
909 | break; | |
910 | /* case ON: */ | |
911 | default: | |
912 | vdcdc1 |= TPS_ENABLE_LP; /* enable ENABLE_LP bit */ | |
913 | break; | |
914 | } | |
915 | ||
b5067f8f | 916 | status = i2c_smbus_write_byte_data(the_tps->client, |
72cd7995 DB |
917 | TPS_VDCDC1, vdcdc1); |
918 | ||
919 | if (status != 0) | |
920 | printk(KERN_ERR "%s: Failed to write vdcdc1 register\n", | |
65fc50e5 | 921 | DRIVER_NAME); |
72cd7995 DB |
922 | else |
923 | pr_debug("%s: vdcdc1 0x%02x\n", DRIVER_NAME, | |
b5067f8f | 924 | i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1)); |
72cd7995 | 925 | |
5c085d36 | 926 | mutex_unlock(&the_tps->lock); |
72cd7995 DB |
927 | |
928 | return status; | |
929 | } | |
930 | EXPORT_SYMBOL(tps65010_set_low_pwr); | |
931 | ||
932 | /*-------------------------------------------------------------------------*/ | |
933 | /* tps65010_config_vregs1 parameter: | |
934 | * value to be written to VREGS1 register | |
935 | * Note: The complete register is written, set all bits you need | |
936 | */ | |
937 | int tps65010_config_vregs1(unsigned value) | |
938 | { | |
939 | int status; | |
940 | ||
941 | if (!the_tps) | |
942 | return -ENODEV; | |
943 | ||
5c085d36 | 944 | mutex_lock(&the_tps->lock); |
72cd7995 DB |
945 | |
946 | pr_debug("%s: vregs1 0x%02x\n", DRIVER_NAME, | |
b5067f8f | 947 | i2c_smbus_read_byte_data(the_tps->client, TPS_VREGS1)); |
72cd7995 | 948 | |
b5067f8f | 949 | status = i2c_smbus_write_byte_data(the_tps->client, |
72cd7995 DB |
950 | TPS_VREGS1, value); |
951 | ||
952 | if (status != 0) | |
953 | printk(KERN_ERR "%s: Failed to write vregs1 register\n", | |
65fc50e5 | 954 | DRIVER_NAME); |
72cd7995 DB |
955 | else |
956 | pr_debug("%s: vregs1 0x%02x\n", DRIVER_NAME, | |
b5067f8f | 957 | i2c_smbus_read_byte_data(the_tps->client, TPS_VREGS1)); |
72cd7995 | 958 | |
5c085d36 | 959 | mutex_unlock(&the_tps->lock); |
72cd7995 DB |
960 | |
961 | return status; | |
962 | } | |
963 | EXPORT_SYMBOL(tps65010_config_vregs1); | |
964 | ||
b45440c3 BD |
965 | int tps65010_config_vdcdc2(unsigned value) |
966 | { | |
967 | struct i2c_client *c; | |
968 | int status; | |
969 | ||
970 | if (!the_tps) | |
971 | return -ENODEV; | |
972 | ||
973 | c = the_tps->client; | |
974 | mutex_lock(&the_tps->lock); | |
975 | ||
976 | pr_debug("%s: vdcdc2 0x%02x\n", DRIVER_NAME, | |
977 | i2c_smbus_read_byte_data(c, TPS_VDCDC2)); | |
978 | ||
979 | status = i2c_smbus_write_byte_data(c, TPS_VDCDC2, value); | |
980 | ||
981 | if (status != 0) | |
982 | printk(KERN_ERR "%s: Failed to write vdcdc2 register\n", | |
983 | DRIVER_NAME); | |
984 | else | |
985 | pr_debug("%s: vregs1 0x%02x\n", DRIVER_NAME, | |
986 | i2c_smbus_read_byte_data(c, TPS_VDCDC2)); | |
987 | ||
988 | mutex_unlock(&the_tps->lock); | |
989 | return status; | |
990 | } | |
991 | EXPORT_SYMBOL(tps65010_config_vdcdc2); | |
992 | ||
72cd7995 DB |
993 | /*-------------------------------------------------------------------------*/ |
994 | /* tps65013_set_low_pwr parameter: | |
995 | * mode: ON or OFF | |
996 | */ | |
997 | ||
998 | /* FIXME: Assumes AC or USB power is present. Setting AUA bit is not | |
999 | required if power supply is through a battery */ | |
1000 | ||
1001 | int tps65013_set_low_pwr(unsigned mode) | |
1002 | { | |
1003 | int status; | |
1004 | unsigned vdcdc1, chgconfig; | |
1005 | ||
1006 | if (!the_tps || the_tps->por) | |
1007 | return -ENODEV; | |
1008 | ||
5c085d36 | 1009 | mutex_lock(&the_tps->lock); |
72cd7995 DB |
1010 | |
1011 | pr_debug("%s: %s low_pwr, chgconfig 0x%02x vdcdc1 0x%02x\n", | |
1012 | DRIVER_NAME, | |
1013 | mode ? "enable" : "disable", | |
b5067f8f DB |
1014 | i2c_smbus_read_byte_data(the_tps->client, TPS_CHGCONFIG), |
1015 | i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1)); | |
72cd7995 | 1016 | |
b5067f8f DB |
1017 | chgconfig = i2c_smbus_read_byte_data(the_tps->client, TPS_CHGCONFIG); |
1018 | vdcdc1 = i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1); | |
72cd7995 DB |
1019 | |
1020 | switch (mode) { | |
1021 | case OFF: | |
1022 | chgconfig &= ~TPS65013_AUA; /* disable AUA bit */ | |
1023 | vdcdc1 &= ~TPS_ENABLE_LP; /* disable ENABLE_LP bit */ | |
1024 | break; | |
1025 | /* case ON: */ | |
1026 | default: | |
1027 | chgconfig |= TPS65013_AUA; /* enable AUA bit */ | |
1028 | vdcdc1 |= TPS_ENABLE_LP; /* enable ENABLE_LP bit */ | |
1029 | break; | |
1030 | } | |
1031 | ||
b5067f8f | 1032 | status = i2c_smbus_write_byte_data(the_tps->client, |
72cd7995 DB |
1033 | TPS_CHGCONFIG, chgconfig); |
1034 | if (status != 0) { | |
1035 | printk(KERN_ERR "%s: Failed to write chconfig register\n", | |
1036 | DRIVER_NAME); | |
5c085d36 | 1037 | mutex_unlock(&the_tps->lock); |
72cd7995 DB |
1038 | return status; |
1039 | } | |
1040 | ||
b5067f8f | 1041 | chgconfig = i2c_smbus_read_byte_data(the_tps->client, TPS_CHGCONFIG); |
72cd7995 DB |
1042 | the_tps->chgconf = chgconfig; |
1043 | show_chgconfig(0, "chgconf", chgconfig); | |
1044 | ||
b5067f8f | 1045 | status = i2c_smbus_write_byte_data(the_tps->client, |
72cd7995 DB |
1046 | TPS_VDCDC1, vdcdc1); |
1047 | ||
1048 | if (status != 0) | |
1049 | printk(KERN_ERR "%s: Failed to write vdcdc1 register\n", | |
1050 | DRIVER_NAME); | |
1051 | else | |
1052 | pr_debug("%s: vdcdc1 0x%02x\n", DRIVER_NAME, | |
b5067f8f | 1053 | i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1)); |
72cd7995 | 1054 | |
5c085d36 | 1055 | mutex_unlock(&the_tps->lock); |
72cd7995 DB |
1056 | |
1057 | return status; | |
1058 | } | |
1059 | EXPORT_SYMBOL(tps65013_set_low_pwr); | |
1060 | ||
1061 | /*-------------------------------------------------------------------------*/ | |
1062 | ||
1063 | static int __init tps_init(void) | |
1064 | { | |
1065 | u32 tries = 3; | |
1066 | int status = -ENODEV; | |
1067 | ||
1068 | printk(KERN_INFO "%s: version %s\n", DRIVER_NAME, DRIVER_VERSION); | |
1069 | ||
1070 | /* some boards have startup glitches */ | |
1071 | while (tries--) { | |
1072 | status = i2c_add_driver(&tps65010_driver); | |
1073 | if (the_tps) | |
1074 | break; | |
1075 | i2c_del_driver(&tps65010_driver); | |
1076 | if (!tries) { | |
1077 | printk(KERN_ERR "%s: no chip?\n", DRIVER_NAME); | |
1078 | return -ENODEV; | |
1079 | } | |
1080 | pr_debug("%s: re-probe ...\n", DRIVER_NAME); | |
1081 | msleep(10); | |
1082 | } | |
1083 | ||
72cd7995 DB |
1084 | return status; |
1085 | } | |
1086 | /* NOTE: this MUST be initialized before the other parts of the system | |
1087 | * that rely on it ... but after the i2c bus on which this relies. | |
1088 | * That is, much earlier than on PC-type systems, which don't often use | |
1089 | * I2C as a core system bus. | |
1090 | */ | |
1091 | subsys_initcall(tps_init); | |
1092 | ||
1093 | static void __exit tps_exit(void) | |
1094 | { | |
1095 | i2c_del_driver(&tps65010_driver); | |
1096 | } | |
1097 | module_exit(tps_exit); | |
1098 |