blob: 6ab3619a49de91120acb85a7c50619e64fef5c0c [file] [log] [blame]
David Brownell72cd7992005-05-24 17:34:51 -07001/*
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 */
David Brownell72cd7992005-05-24 17:34:51 -070021
David Brownell72cd7992005-05-24 17:34:51 -070022#include <linux/kernel.h>
23#include <linux/module.h>
24#include <linux/init.h>
25#include <linux/slab.h>
26#include <linux/interrupt.h>
David Brownell72cd7992005-05-24 17:34:51 -070027#include <linux/i2c.h>
28#include <linux/delay.h>
29#include <linux/workqueue.h>
David Brownell72cd7992005-05-24 17:34:51 -070030#include <linux/debugfs.h>
31#include <linux/seq_file.h>
Ingo Molnar5c085d32006-01-18 23:16:04 +010032#include <linux/mutex.h>
David Brownell79966fd2008-02-28 22:07:28 -080033#include <linux/platform_device.h>
David Brownell72cd7992005-05-24 17:34:51 -070034
David Brownell6d16bfb2008-01-27 18:14:49 +010035#include <linux/i2c/tps65010.h>
David Brownell72cd7992005-05-24 17:34:51 -070036
David Brownell79966fd2008-02-28 22:07:28 -080037#include <asm/gpio.h>
38
39
David Brownell72cd7992005-05-24 17:34:51 -070040/*-------------------------------------------------------------------------*/
41
42#define DRIVER_VERSION "2 May 2005"
David Brownell4801bc22006-08-11 22:53:08 +020043#define DRIVER_NAME (tps65010_driver.driver.name)
David Brownell72cd7992005-05-24 17:34:51 -070044
45MODULE_DESCRIPTION("TPS6501x Power Management Driver");
46MODULE_LICENSE("GPL");
47
David Brownell72cd7992005-05-24 17:34:51 -070048static 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 */
66enum tps_model {
67 TPS_UNKNOWN = 0,
68 TPS65010,
69 TPS65011,
70 TPS65012,
71 TPS65013,
72};
73
74struct tps65010 {
David Brownellb5067f82007-10-13 23:56:30 +020075 struct i2c_client *client;
Ingo Molnar5c085d32006-01-18 23:16:04 +010076 struct mutex lock;
David Brownell8c1bc04e2006-12-13 00:33:46 -080077 struct delayed_work work;
David Brownell72cd7992005-05-24 17:34:51 -070078 struct dentry *file;
79 unsigned charging:1;
80 unsigned por:1;
81 unsigned model:8;
82 u16 vbus;
83 unsigned long flags;
84#define FLAG_VBUS_CHANGED 0
85#define FLAG_IRQ_ENABLE 1
86
87 /* copies of last register state */
88 u8 chgstatus, regstatus, chgconf;
89 u8 nmask1, nmask2;
90
David Brownell79966fd2008-02-28 22:07:28 -080091 u8 outmask;
92 struct gpio_chip chip;
93 struct platform_device *leds;
David Brownell72cd7992005-05-24 17:34:51 -070094};
95
David Brownell4801bc22006-08-11 22:53:08 +020096#define POWER_POLL_DELAY msecs_to_jiffies(5000)
David Brownell72cd7992005-05-24 17:34:51 -070097
98/*-------------------------------------------------------------------------*/
99
100#if defined(DEBUG) || defined(CONFIG_DEBUG_FS)
101
102static void dbg_chgstat(char *buf, size_t len, u8 chgstatus)
103{
104 snprintf(buf, len, "%02x%s%s%s%s%s%s%s%s\n",
105 chgstatus,
106 (chgstatus & TPS_CHG_USB) ? " USB" : "",
107 (chgstatus & TPS_CHG_AC) ? " AC" : "",
108 (chgstatus & TPS_CHG_THERM) ? " therm" : "",
109 (chgstatus & TPS_CHG_TERM) ? " done" :
110 ((chgstatus & (TPS_CHG_USB|TPS_CHG_AC))
111 ? " (charging)" : ""),
112 (chgstatus & TPS_CHG_TAPER_TMO) ? " taper_tmo" : "",
113 (chgstatus & TPS_CHG_CHG_TMO) ? " charge_tmo" : "",
114 (chgstatus & TPS_CHG_PRECHG_TMO) ? " prechg_tmo" : "",
115 (chgstatus & TPS_CHG_TEMP_ERR) ? " temp_err" : "");
116}
117
118static void dbg_regstat(char *buf, size_t len, u8 regstatus)
119{
120 snprintf(buf, len, "%02x %s%s%s%s%s%s%s%s\n",
121 regstatus,
122 (regstatus & TPS_REG_ONOFF) ? "off" : "(on)",
123 (regstatus & TPS_REG_COVER) ? " uncover" : "",
124 (regstatus & TPS_REG_UVLO) ? " UVLO" : "",
125 (regstatus & TPS_REG_NO_CHG) ? " NO_CHG" : "",
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700126 (regstatus & TPS_REG_PG_LD02) ? " ld02_bad" : "",
David Brownell72cd7992005-05-24 17:34:51 -0700127 (regstatus & TPS_REG_PG_LD01) ? " ld01_bad" : "",
128 (regstatus & TPS_REG_PG_MAIN) ? " main_bad" : "",
129 (regstatus & TPS_REG_PG_CORE) ? " core_bad" : "");
130}
131
132static void dbg_chgconf(int por, char *buf, size_t len, u8 chgconfig)
133{
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700134 const char *hibit;
David Brownell72cd7992005-05-24 17:34:51 -0700135
136 if (por)
137 hibit = (chgconfig & TPS_CHARGE_POR)
138 ? "POR=69ms" : "POR=1sec";
139 else
140 hibit = (chgconfig & TPS65013_AUA) ? "AUA" : "";
141
142 snprintf(buf, len, "%02x %s%s%s AC=%d%% USB=%dmA %sCharge\n",
143 chgconfig, hibit,
144 (chgconfig & TPS_CHARGE_RESET) ? " reset" : "",
145 (chgconfig & TPS_CHARGE_FAST) ? " fast" : "",
146 ({int p; switch ((chgconfig >> 3) & 3) {
147 case 3: p = 100; break;
148 case 2: p = 75; break;
149 case 1: p = 50; break;
150 default: p = 25; break;
151 }; p; }),
152 (chgconfig & TPS_VBUS_CHARGING)
153 ? ((chgconfig & TPS_VBUS_500MA) ? 500 : 100)
154 : 0,
155 (chgconfig & TPS_CHARGE_ENABLE) ? "" : "No");
156}
157
158#endif
159
160#ifdef DEBUG
161
162static void show_chgstatus(const char *label, u8 chgstatus)
163{
164 char buf [100];
165
166 dbg_chgstat(buf, sizeof buf, chgstatus);
167 pr_debug("%s: %s %s", DRIVER_NAME, label, buf);
168}
169
170static void show_regstatus(const char *label, u8 regstatus)
171{
172 char buf [100];
173
174 dbg_regstat(buf, sizeof buf, regstatus);
175 pr_debug("%s: %s %s", DRIVER_NAME, label, buf);
176}
177
178static void show_chgconfig(int por, const char *label, u8 chgconfig)
179{
180 char buf [100];
181
182 dbg_chgconf(por, buf, sizeof buf, chgconfig);
183 pr_debug("%s: %s %s", DRIVER_NAME, label, buf);
184}
185
186#else
187
188static inline void show_chgstatus(const char *label, u8 chgstatus) { }
189static inline void show_regstatus(const char *label, u8 chgstatus) { }
190static inline void show_chgconfig(int por, const char *label, u8 chgconfig) { }
191
192#endif
193
194#ifdef CONFIG_DEBUG_FS
195
196static int dbg_show(struct seq_file *s, void *_)
197{
198 struct tps65010 *tps = s->private;
199 u8 value, v2;
200 unsigned i;
201 char buf[100];
202 const char *chip;
203
204 switch (tps->model) {
205 case TPS65010: chip = "tps65010"; break;
206 case TPS65011: chip = "tps65011"; break;
207 case TPS65012: chip = "tps65012"; break;
208 case TPS65013: chip = "tps65013"; break;
209 default: chip = NULL; break;
210 }
211 seq_printf(s, "driver %s\nversion %s\nchip %s\n\n",
212 DRIVER_NAME, DRIVER_VERSION, chip);
213
Ingo Molnar5c085d32006-01-18 23:16:04 +0100214 mutex_lock(&tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700215
216 /* FIXME how can we tell whether a battery is present?
217 * likely involves a charge gauging chip (like BQ26501).
218 */
219
220 seq_printf(s, "%scharging\n\n", tps->charging ? "" : "(not) ");
221
222
223 /* registers for monitoring battery charging and status; note
224 * that reading chgstat and regstat may ack IRQs...
225 */
David Brownellb5067f82007-10-13 23:56:30 +0200226 value = i2c_smbus_read_byte_data(tps->client, TPS_CHGCONFIG);
David Brownell72cd7992005-05-24 17:34:51 -0700227 dbg_chgconf(tps->por, buf, sizeof buf, value);
228 seq_printf(s, "chgconfig %s", buf);
229
David Brownellb5067f82007-10-13 23:56:30 +0200230 value = i2c_smbus_read_byte_data(tps->client, TPS_CHGSTATUS);
David Brownell72cd7992005-05-24 17:34:51 -0700231 dbg_chgstat(buf, sizeof buf, value);
232 seq_printf(s, "chgstat %s", buf);
David Brownellb5067f82007-10-13 23:56:30 +0200233 value = i2c_smbus_read_byte_data(tps->client, TPS_MASK1);
David Brownell72cd7992005-05-24 17:34:51 -0700234 dbg_chgstat(buf, sizeof buf, value);
235 seq_printf(s, "mask1 %s", buf);
236 /* ignore ackint1 */
237
David Brownellb5067f82007-10-13 23:56:30 +0200238 value = i2c_smbus_read_byte_data(tps->client, TPS_REGSTATUS);
David Brownell72cd7992005-05-24 17:34:51 -0700239 dbg_regstat(buf, sizeof buf, value);
240 seq_printf(s, "regstat %s", buf);
David Brownellb5067f82007-10-13 23:56:30 +0200241 value = i2c_smbus_read_byte_data(tps->client, TPS_MASK2);
David Brownell72cd7992005-05-24 17:34:51 -0700242 dbg_regstat(buf, sizeof buf, value);
243 seq_printf(s, "mask2 %s\n", buf);
244 /* ignore ackint2 */
245
246 (void) schedule_delayed_work(&tps->work, POWER_POLL_DELAY);
247
248
249 /* VMAIN voltage, enable lowpower, etc */
David Brownellb5067f82007-10-13 23:56:30 +0200250 value = i2c_smbus_read_byte_data(tps->client, TPS_VDCDC1);
David Brownell72cd7992005-05-24 17:34:51 -0700251 seq_printf(s, "vdcdc1 %02x\n", value);
252
253 /* VCORE voltage, vibrator on/off */
David Brownellb5067f82007-10-13 23:56:30 +0200254 value = i2c_smbus_read_byte_data(tps->client, TPS_VDCDC2);
David Brownell72cd7992005-05-24 17:34:51 -0700255 seq_printf(s, "vdcdc2 %02x\n", value);
256
257 /* both LD0s, and their lowpower behavior */
David Brownellb5067f82007-10-13 23:56:30 +0200258 value = i2c_smbus_read_byte_data(tps->client, TPS_VREGS1);
David Brownell72cd7992005-05-24 17:34:51 -0700259 seq_printf(s, "vregs1 %02x\n\n", value);
260
261
262 /* LEDs and GPIOs */
David Brownellb5067f82007-10-13 23:56:30 +0200263 value = i2c_smbus_read_byte_data(tps->client, TPS_LED1_ON);
264 v2 = i2c_smbus_read_byte_data(tps->client, TPS_LED1_PER);
David Brownell72cd7992005-05-24 17:34:51 -0700265 seq_printf(s, "led1 %s, on=%02x, per=%02x, %d/%d msec\n",
266 (value & 0x80)
267 ? ((v2 & 0x80) ? "on" : "off")
268 : ((v2 & 0x80) ? "blink" : "(nPG)"),
269 value, v2,
270 (value & 0x7f) * 10, (v2 & 0x7f) * 100);
271
David Brownellb5067f82007-10-13 23:56:30 +0200272 value = i2c_smbus_read_byte_data(tps->client, TPS_LED2_ON);
273 v2 = i2c_smbus_read_byte_data(tps->client, TPS_LED2_PER);
David Brownell72cd7992005-05-24 17:34:51 -0700274 seq_printf(s, "led2 %s, on=%02x, per=%02x, %d/%d msec\n",
275 (value & 0x80)
276 ? ((v2 & 0x80) ? "on" : "off")
277 : ((v2 & 0x80) ? "blink" : "off"),
278 value, v2,
279 (value & 0x7f) * 10, (v2 & 0x7f) * 100);
280
David Brownellb5067f82007-10-13 23:56:30 +0200281 value = i2c_smbus_read_byte_data(tps->client, TPS_DEFGPIO);
282 v2 = i2c_smbus_read_byte_data(tps->client, TPS_MASK3);
David Brownell72cd7992005-05-24 17:34:51 -0700283 seq_printf(s, "defgpio %02x mask3 %02x\n", value, v2);
284
285 for (i = 0; i < 4; i++) {
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700286 if (value & (1 << (4 + i)))
David Brownell72cd7992005-05-24 17:34:51 -0700287 seq_printf(s, " gpio%d-out %s\n", i + 1,
288 (value & (1 << i)) ? "low" : "hi ");
289 else
290 seq_printf(s, " gpio%d-in %s %s %s\n", i + 1,
291 (value & (1 << i)) ? "hi " : "low",
292 (v2 & (1 << i)) ? "no-irq" : "irq",
293 (v2 & (1 << (4 + i))) ? "rising" : "falling");
294 }
295
Ingo Molnar5c085d32006-01-18 23:16:04 +0100296 mutex_unlock(&tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700297 return 0;
298}
299
300static int dbg_tps_open(struct inode *inode, struct file *file)
301{
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700302 return single_open(file, dbg_show, inode->i_private);
David Brownell72cd7992005-05-24 17:34:51 -0700303}
304
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800305static const struct file_operations debug_fops = {
David Brownell72cd7992005-05-24 17:34:51 -0700306 .open = dbg_tps_open,
307 .read = seq_read,
308 .llseek = seq_lseek,
309 .release = single_release,
310};
311
312#define DEBUG_FOPS &debug_fops
313
314#else
315#define DEBUG_FOPS NULL
316#endif
317
318/*-------------------------------------------------------------------------*/
319
320/* handle IRQS in a task context, so we can use I2C calls */
321static void tps65010_interrupt(struct tps65010 *tps)
322{
323 u8 tmp = 0, mask, poll;
324
David Brownell8c1bc04e2006-12-13 00:33:46 -0800325 /* IRQs won't trigger for certain events, but we can get
David Brownell72cd7992005-05-24 17:34:51 -0700326 * others by polling (normally, with external power applied).
327 */
328 poll = 0;
329
330 /* regstatus irqs */
331 if (tps->nmask2) {
David Brownellb5067f82007-10-13 23:56:30 +0200332 tmp = i2c_smbus_read_byte_data(tps->client, TPS_REGSTATUS);
David Brownell72cd7992005-05-24 17:34:51 -0700333 mask = tmp ^ tps->regstatus;
334 tps->regstatus = tmp;
335 mask &= tps->nmask2;
336 } else
337 mask = 0;
338 if (mask) {
339 tps->regstatus = tmp;
340 /* may need to shut something down ... */
341
342 /* "off" usually means deep sleep */
343 if (tmp & TPS_REG_ONOFF) {
344 pr_info("%s: power off button\n", DRIVER_NAME);
345#if 0
346 /* REVISIT: this might need its own workqueue
347 * plus tweaks including deadlock avoidance ...
Johannes Bergab3bfca2007-05-06 14:50:49 -0700348 * also needs to get error handling and probably
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200349 * an #ifdef CONFIG_HIBERNATION
David Brownell72cd7992005-05-24 17:34:51 -0700350 */
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700351 hibernate();
David Brownell72cd7992005-05-24 17:34:51 -0700352#endif
353 poll = 1;
354 }
355 }
356
357 /* chgstatus irqs */
358 if (tps->nmask1) {
David Brownellb5067f82007-10-13 23:56:30 +0200359 tmp = i2c_smbus_read_byte_data(tps->client, TPS_CHGSTATUS);
David Brownell72cd7992005-05-24 17:34:51 -0700360 mask = tmp ^ tps->chgstatus;
361 tps->chgstatus = tmp;
362 mask &= tps->nmask1;
363 } else
364 mask = 0;
365 if (mask) {
366 unsigned charging = 0;
367
368 show_chgstatus("chg/irq", tmp);
369 if (tmp & (TPS_CHG_USB|TPS_CHG_AC))
370 show_chgconfig(tps->por, "conf", tps->chgconf);
371
372 /* Unless it was turned off or disabled, we charge any
373 * battery whenever there's power available for it
374 * and the charger hasn't been disabled.
375 */
376 if (!(tps->chgstatus & ~(TPS_CHG_USB|TPS_CHG_AC))
377 && (tps->chgstatus & (TPS_CHG_USB|TPS_CHG_AC))
378 && (tps->chgconf & TPS_CHARGE_ENABLE)
379 ) {
380 if (tps->chgstatus & TPS_CHG_USB) {
381 /* VBUS options are readonly until reconnect */
382 if (mask & TPS_CHG_USB)
383 set_bit(FLAG_VBUS_CHANGED, &tps->flags);
384 charging = 1;
385 } else if (tps->chgstatus & TPS_CHG_AC)
386 charging = 1;
387 }
388 if (charging != tps->charging) {
389 tps->charging = charging;
390 pr_info("%s: battery %scharging\n",
391 DRIVER_NAME, charging ? "" :
392 ((tps->chgstatus & (TPS_CHG_USB|TPS_CHG_AC))
393 ? "NOT " : "dis"));
394 }
395 }
396
397 /* always poll to detect (a) power removal, without tps65013
398 * NO_CHG IRQ; or (b) restart of charging after stop.
399 */
400 if ((tps->model != TPS65013 || !tps->charging)
401 && (tps->chgstatus & (TPS_CHG_USB|TPS_CHG_AC)))
402 poll = 1;
403 if (poll)
404 (void) schedule_delayed_work(&tps->work, POWER_POLL_DELAY);
405
406 /* also potentially gpio-in rise or fall */
407}
408
409/* handle IRQs and polling using keventd for now */
David Brownell8c1bc04e2006-12-13 00:33:46 -0800410static void tps65010_work(struct work_struct *work)
David Brownell72cd7992005-05-24 17:34:51 -0700411{
David Brownell8c1bc04e2006-12-13 00:33:46 -0800412 struct tps65010 *tps;
David Brownell72cd7992005-05-24 17:34:51 -0700413
David Brownell8c1bc04e2006-12-13 00:33:46 -0800414 tps = container_of(work, struct tps65010, work.work);
Ingo Molnar5c085d32006-01-18 23:16:04 +0100415 mutex_lock(&tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700416
417 tps65010_interrupt(tps);
418
419 if (test_and_clear_bit(FLAG_VBUS_CHANGED, &tps->flags)) {
420 int status;
421 u8 chgconfig, tmp;
422
David Brownellb5067f82007-10-13 23:56:30 +0200423 chgconfig = i2c_smbus_read_byte_data(tps->client,
David Brownell72cd7992005-05-24 17:34:51 -0700424 TPS_CHGCONFIG);
425 chgconfig &= ~(TPS_VBUS_500MA | TPS_VBUS_CHARGING);
426 if (tps->vbus == 500)
427 chgconfig |= TPS_VBUS_500MA | TPS_VBUS_CHARGING;
428 else if (tps->vbus >= 100)
429 chgconfig |= TPS_VBUS_CHARGING;
430
David Brownellb5067f82007-10-13 23:56:30 +0200431 status = i2c_smbus_write_byte_data(tps->client,
David Brownell72cd7992005-05-24 17:34:51 -0700432 TPS_CHGCONFIG, chgconfig);
433
434 /* vbus update fails unless VBUS is connected! */
David Brownellb5067f82007-10-13 23:56:30 +0200435 tmp = i2c_smbus_read_byte_data(tps->client, TPS_CHGCONFIG);
David Brownell72cd7992005-05-24 17:34:51 -0700436 tps->chgconf = tmp;
437 show_chgconfig(tps->por, "update vbus", tmp);
438 }
439
440 if (test_and_clear_bit(FLAG_IRQ_ENABLE, &tps->flags))
David Brownell8056c6c2007-10-13 23:56:30 +0200441 enable_irq(tps->client->irq);
David Brownell72cd7992005-05-24 17:34:51 -0700442
Ingo Molnar5c085d32006-01-18 23:16:04 +0100443 mutex_unlock(&tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700444}
445
David Howells7d12e782006-10-05 14:55:46 +0100446static irqreturn_t tps65010_irq(int irq, void *_tps)
David Brownell72cd7992005-05-24 17:34:51 -0700447{
448 struct tps65010 *tps = _tps;
449
450 disable_irq_nosync(irq);
451 set_bit(FLAG_IRQ_ENABLE, &tps->flags);
David Brownell8c1bc04e2006-12-13 00:33:46 -0800452 (void) schedule_work(&tps->work.work);
David Brownell72cd7992005-05-24 17:34:51 -0700453 return IRQ_HANDLED;
454}
455
456/*-------------------------------------------------------------------------*/
457
David Brownell79966fd2008-02-28 22:07:28 -0800458/* offsets 0..3 == GPIO1..GPIO4
459 * offsets 4..5 == LED1/nPG, LED2 (we set one of the non-BLINK modes)
460 */
461static void
462tps65010_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
463{
464 if (offset < 4)
465 tps65010_set_gpio_out_value(offset + 1, value);
466 else
467 tps65010_set_led(offset - 3, value ? ON : OFF);
468}
469
470static int
471tps65010_output(struct gpio_chip *chip, unsigned offset, int value)
472{
473 /* GPIOs may be input-only */
474 if (offset < 4) {
475 struct tps65010 *tps;
476
477 tps = container_of(chip, struct tps65010, chip);
478 if (!(tps->outmask & (1 << offset)))
479 return -EINVAL;
480 tps65010_set_gpio_out_value(offset + 1, value);
481 } else
482 tps65010_set_led(offset - 3, value ? ON : OFF);
483
484 return 0;
485}
486
487static int tps65010_gpio_get(struct gpio_chip *chip, unsigned offset)
488{
489 int value;
490 struct tps65010 *tps;
491
492 tps = container_of(chip, struct tps65010, chip);
493
494 if (offset < 4) {
495 value = i2c_smbus_read_byte_data(tps->client, TPS_DEFGPIO);
496 if (value < 0)
497 return 0;
498 if (value & (1 << (offset + 4))) /* output */
499 return !(value & (1 << offset));
500 else /* input */
501 return (value & (1 << offset));
502 }
503
504 /* REVISIT we *could* report LED1/nPG and LED2 state ... */
505 return 0;
506}
507
508
509/*-------------------------------------------------------------------------*/
510
David Brownell72cd7992005-05-24 17:34:51 -0700511static struct tps65010 *the_tps;
512
David Brownell8056c6c2007-10-13 23:56:30 +0200513static int __exit tps65010_remove(struct i2c_client *client)
David Brownell72cd7992005-05-24 17:34:51 -0700514{
David Brownell8056c6c2007-10-13 23:56:30 +0200515 struct tps65010 *tps = i2c_get_clientdata(client);
David Brownell79966fd2008-02-28 22:07:28 -0800516 struct tps65010_board *board = client->dev.platform_data;
David Brownell72cd7992005-05-24 17:34:51 -0700517
David Brownell79966fd2008-02-28 22:07:28 -0800518 if (board && board->teardown) {
519 int status = board->teardown(client, board->context);
520 if (status < 0)
521 dev_dbg(&client->dev, "board %s %s err %d\n",
522 "teardown", client->name, status);
523 }
David Brownell8056c6c2007-10-13 23:56:30 +0200524 if (client->irq > 0)
525 free_irq(client->irq, tps);
David Brownell8c1bc04e2006-12-13 00:33:46 -0800526 cancel_delayed_work(&tps->work);
527 flush_scheduled_work();
David Brownell72cd7992005-05-24 17:34:51 -0700528 debugfs_remove(tps->file);
David Brownell8056c6c2007-10-13 23:56:30 +0200529 kfree(tps);
Jean Delvare6d072d72008-04-29 23:11:38 +0200530 i2c_set_clientdata(client, NULL);
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700531 the_tps = NULL;
David Brownell72cd7992005-05-24 17:34:51 -0700532 return 0;
533}
534
Jean Delvared2653e92008-04-29 23:11:39 +0200535static int tps65010_probe(struct i2c_client *client,
536 const struct i2c_device_id *id)
David Brownell72cd7992005-05-24 17:34:51 -0700537{
538 struct tps65010 *tps;
539 int status;
David Brownell79966fd2008-02-28 22:07:28 -0800540 struct tps65010_board *board = client->dev.platform_data;
David Brownell72cd7992005-05-24 17:34:51 -0700541
542 if (the_tps) {
David Brownell8056c6c2007-10-13 23:56:30 +0200543 dev_dbg(&client->dev, "only one tps6501x chip allowed\n");
544 return -ENODEV;
David Brownell72cd7992005-05-24 17:34:51 -0700545 }
546
David Brownell8056c6c2007-10-13 23:56:30 +0200547 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
548 return -EINVAL;
549
Deepak Saxena5263ebb2005-10-17 23:09:43 +0200550 tps = kzalloc(sizeof *tps, GFP_KERNEL);
David Brownell72cd7992005-05-24 17:34:51 -0700551 if (!tps)
David Brownell8056c6c2007-10-13 23:56:30 +0200552 return -ENOMEM;
David Brownell72cd7992005-05-24 17:34:51 -0700553
Ingo Molnar5c085d32006-01-18 23:16:04 +0100554 mutex_init(&tps->lock);
David Brownell8c1bc04e2006-12-13 00:33:46 -0800555 INIT_DELAYED_WORK(&tps->work, tps65010_work);
David Brownell8056c6c2007-10-13 23:56:30 +0200556 tps->client = client;
David Brownell72cd7992005-05-24 17:34:51 -0700557
David Brownell8056c6c2007-10-13 23:56:30 +0200558 if (strcmp(client->name, "tps65010") == 0)
559 tps->model = TPS65010;
560 else if (strcmp(client->name, "tps65011") == 0)
561 tps->model = TPS65011;
562 else if (strcmp(client->name, "tps65012") == 0)
563 tps->model = TPS65012;
564 else if (strcmp(client->name, "tps65013") == 0)
565 tps->model = TPS65013;
566 else {
567 dev_warn(&client->dev, "unknown chip '%s'\n", client->name);
568 status = -ENODEV;
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700569 goto fail1;
David Brownell72cd7992005-05-24 17:34:51 -0700570 }
571
David Brownell4801bc22006-08-11 22:53:08 +0200572 /* the IRQ is active low, but many gpio lines can't support that
David Brownell8056c6c2007-10-13 23:56:30 +0200573 * so this driver uses falling-edge triggers instead.
David Brownell4801bc22006-08-11 22:53:08 +0200574 */
David Brownell8056c6c2007-10-13 23:56:30 +0200575 if (client->irq > 0) {
576 status = request_irq(client->irq, tps65010_irq,
577 IRQF_SAMPLE_RANDOM | IRQF_TRIGGER_FALLING,
578 DRIVER_NAME, tps);
David Brownell72cd7992005-05-24 17:34:51 -0700579 if (status < 0) {
David Brownellb5067f82007-10-13 23:56:30 +0200580 dev_dbg(&client->dev, "can't get IRQ %d, err %d\n",
David Brownell8056c6c2007-10-13 23:56:30 +0200581 client->irq, status);
David Brownell72cd7992005-05-24 17:34:51 -0700582 goto fail1;
583 }
David Brownell72cd7992005-05-24 17:34:51 -0700584 /* annoying race here, ideally we'd have an option
585 * to claim the irq now and enable it later.
David Brownell8056c6c2007-10-13 23:56:30 +0200586 * FIXME genirq IRQF_NOAUTOEN now solves that ...
David Brownell72cd7992005-05-24 17:34:51 -0700587 */
David Brownell8056c6c2007-10-13 23:56:30 +0200588 disable_irq(client->irq);
David Brownell72cd7992005-05-24 17:34:51 -0700589 set_bit(FLAG_IRQ_ENABLE, &tps->flags);
David Brownell72cd7992005-05-24 17:34:51 -0700590 } else
David Brownell8056c6c2007-10-13 23:56:30 +0200591 dev_warn(&client->dev, "IRQ not configured!\n");
David Brownell72cd7992005-05-24 17:34:51 -0700592
593
594 switch (tps->model) {
595 case TPS65010:
596 case TPS65012:
597 tps->por = 1;
598 break;
599 case TPS_UNKNOWN:
600 printk(KERN_WARNING "%s: unknown TPS chip\n", DRIVER_NAME);
601 break;
602 /* else CHGCONFIG.POR is replaced by AUA, enabling a WAIT mode */
603 }
David Brownellb5067f82007-10-13 23:56:30 +0200604 tps->chgconf = i2c_smbus_read_byte_data(client, TPS_CHGCONFIG);
David Brownell72cd7992005-05-24 17:34:51 -0700605 show_chgconfig(tps->por, "conf/init", tps->chgconf);
606
607 show_chgstatus("chg/init",
David Brownellb5067f82007-10-13 23:56:30 +0200608 i2c_smbus_read_byte_data(client, TPS_CHGSTATUS));
David Brownell72cd7992005-05-24 17:34:51 -0700609 show_regstatus("reg/init",
David Brownellb5067f82007-10-13 23:56:30 +0200610 i2c_smbus_read_byte_data(client, TPS_REGSTATUS));
David Brownell72cd7992005-05-24 17:34:51 -0700611
612 pr_debug("%s: vdcdc1 0x%02x, vdcdc2 %02x, vregs1 %02x\n", DRIVER_NAME,
David Brownellb5067f82007-10-13 23:56:30 +0200613 i2c_smbus_read_byte_data(client, TPS_VDCDC1),
614 i2c_smbus_read_byte_data(client, TPS_VDCDC2),
615 i2c_smbus_read_byte_data(client, TPS_VREGS1));
David Brownell72cd7992005-05-24 17:34:51 -0700616 pr_debug("%s: defgpio 0x%02x, mask3 0x%02x\n", DRIVER_NAME,
David Brownellb5067f82007-10-13 23:56:30 +0200617 i2c_smbus_read_byte_data(client, TPS_DEFGPIO),
618 i2c_smbus_read_byte_data(client, TPS_MASK3));
David Brownell72cd7992005-05-24 17:34:51 -0700619
Jean Delvare6d072d72008-04-29 23:11:38 +0200620 i2c_set_clientdata(client, tps);
David Brownell72cd7992005-05-24 17:34:51 -0700621 the_tps = tps;
622
623#if defined(CONFIG_USB_GADGET) && !defined(CONFIG_USB_OTG)
624 /* USB hosts can't draw VBUS. OTG devices could, later
625 * when OTG infrastructure enables it. USB peripherals
626 * could be relying on VBUS while booting, though.
627 */
628 tps->vbus = 100;
629#endif
630
631 /* unmask the "interesting" irqs, then poll once to
632 * kickstart monitoring, initialize shadowed status
633 * registers, and maybe disable VBUS draw.
634 */
635 tps->nmask1 = ~0;
David Brownellb5067f82007-10-13 23:56:30 +0200636 (void) i2c_smbus_write_byte_data(client, TPS_MASK1, ~tps->nmask1);
David Brownell72cd7992005-05-24 17:34:51 -0700637
638 tps->nmask2 = TPS_REG_ONOFF;
639 if (tps->model == TPS65013)
640 tps->nmask2 |= TPS_REG_NO_CHG;
David Brownellb5067f82007-10-13 23:56:30 +0200641 (void) i2c_smbus_write_byte_data(client, TPS_MASK2, ~tps->nmask2);
David Brownell72cd7992005-05-24 17:34:51 -0700642
David Brownellb5067f82007-10-13 23:56:30 +0200643 (void) i2c_smbus_write_byte_data(client, TPS_MASK3, 0x0f
644 | i2c_smbus_read_byte_data(client, TPS_MASK3));
David Brownell72cd7992005-05-24 17:34:51 -0700645
David Brownell8c1bc04e2006-12-13 00:33:46 -0800646 tps65010_work(&tps->work.work);
David Brownell72cd7992005-05-24 17:34:51 -0700647
648 tps->file = debugfs_create_file(DRIVER_NAME, S_IRUGO, NULL,
649 tps, DEBUG_FOPS);
David Brownell79966fd2008-02-28 22:07:28 -0800650
651 /* optionally register GPIOs */
652 if (board && board->base > 0) {
653 tps->outmask = board->outmask;
654
655 tps->chip.label = client->name;
656
657 tps->chip.set = tps65010_gpio_set;
658 tps->chip.direction_output = tps65010_output;
659
660 /* NOTE: only partial support for inputs; nyet IRQs */
661 tps->chip.get = tps65010_gpio_get;
662
663 tps->chip.base = board->base;
664 tps->chip.ngpio = 6;
665 tps->chip.can_sleep = 1;
666
667 status = gpiochip_add(&tps->chip);
668 if (status < 0)
669 dev_err(&client->dev, "can't add gpiochip, err %d\n",
670 status);
671 else if (board->setup) {
672 status = board->setup(client, board->context);
673 if (status < 0) {
674 dev_dbg(&client->dev,
675 "board %s %s err %d\n",
676 "setup", client->name, status);
677 status = 0;
678 }
679 }
680 }
681
David Brownell72cd7992005-05-24 17:34:51 -0700682 return 0;
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700683fail1:
684 kfree(tps);
David Brownell8056c6c2007-10-13 23:56:30 +0200685 return status;
David Brownell72cd7992005-05-24 17:34:51 -0700686}
687
688static struct i2c_driver tps65010_driver = {
Laurent Riffarda9718b02005-11-26 20:36:00 +0100689 .driver = {
Laurent Riffarda9718b02005-11-26 20:36:00 +0100690 .name = "tps65010",
691 },
David Brownell8056c6c2007-10-13 23:56:30 +0200692 .probe = tps65010_probe,
693 .remove = __exit_p(tps65010_remove),
David Brownell72cd7992005-05-24 17:34:51 -0700694};
695
696/*-------------------------------------------------------------------------*/
697
698/* Draw from VBUS:
699 * 0 mA -- DON'T DRAW (might supply power instead)
700 * 100 mA -- usb unit load (slowest charge rate)
701 * 500 mA -- usb high power (fast battery charge)
702 */
703int tps65010_set_vbus_draw(unsigned mA)
704{
705 unsigned long flags;
706
707 if (!the_tps)
708 return -ENODEV;
709
710 /* assumes non-SMP */
711 local_irq_save(flags);
712 if (mA >= 500)
713 mA = 500;
714 else if (mA >= 100)
715 mA = 100;
716 else
717 mA = 0;
718 the_tps->vbus = mA;
719 if ((the_tps->chgstatus & TPS_CHG_USB)
720 && test_and_set_bit(
721 FLAG_VBUS_CHANGED, &the_tps->flags)) {
722 /* gadget drivers call this in_irq() */
David Brownell8c1bc04e2006-12-13 00:33:46 -0800723 (void) schedule_work(&the_tps->work.work);
David Brownell72cd7992005-05-24 17:34:51 -0700724 }
725 local_irq_restore(flags);
726
727 return 0;
728}
729EXPORT_SYMBOL(tps65010_set_vbus_draw);
730
731/*-------------------------------------------------------------------------*/
732/* tps65010_set_gpio_out_value parameter:
733 * gpio: GPIO1, GPIO2, GPIO3 or GPIO4
734 * value: LOW or HIGH
735 */
736int tps65010_set_gpio_out_value(unsigned gpio, unsigned value)
737{
738 int status;
739 unsigned defgpio;
740
741 if (!the_tps)
742 return -ENODEV;
743 if ((gpio < GPIO1) || (gpio > GPIO4))
744 return -EINVAL;
745
Ingo Molnar5c085d32006-01-18 23:16:04 +0100746 mutex_lock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700747
David Brownellb5067f82007-10-13 23:56:30 +0200748 defgpio = i2c_smbus_read_byte_data(the_tps->client, TPS_DEFGPIO);
David Brownell72cd7992005-05-24 17:34:51 -0700749
750 /* Configure GPIO for output */
751 defgpio |= 1 << (gpio + 3);
752
753 /* Writing 1 forces a logic 0 on that GPIO and vice versa */
754 switch (value) {
755 case LOW:
756 defgpio |= 1 << (gpio - 1); /* set GPIO low by writing 1 */
757 break;
758 /* case HIGH: */
759 default:
760 defgpio &= ~(1 << (gpio - 1)); /* set GPIO high by writing 0 */
761 break;
762 }
763
David Brownellb5067f82007-10-13 23:56:30 +0200764 status = i2c_smbus_write_byte_data(the_tps->client,
David Brownell72cd7992005-05-24 17:34:51 -0700765 TPS_DEFGPIO, defgpio);
766
767 pr_debug("%s: gpio%dout = %s, defgpio 0x%02x\n", DRIVER_NAME,
768 gpio, value ? "high" : "low",
David Brownellb5067f82007-10-13 23:56:30 +0200769 i2c_smbus_read_byte_data(the_tps->client, TPS_DEFGPIO));
David Brownell72cd7992005-05-24 17:34:51 -0700770
Ingo Molnar5c085d32006-01-18 23:16:04 +0100771 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700772 return status;
773}
774EXPORT_SYMBOL(tps65010_set_gpio_out_value);
775
776/*-------------------------------------------------------------------------*/
777/* tps65010_set_led parameter:
778 * led: LED1 or LED2
779 * mode: ON, OFF or BLINK
780 */
781int tps65010_set_led(unsigned led, unsigned mode)
782{
783 int status;
784 unsigned led_on, led_per, offs;
785
786 if (!the_tps)
787 return -ENODEV;
788
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700789 if (led == LED1)
David Brownell72cd7992005-05-24 17:34:51 -0700790 offs = 0;
791 else {
792 offs = 2;
793 led = LED2;
794 }
795
Ingo Molnar5c085d32006-01-18 23:16:04 +0100796 mutex_lock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700797
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700798 pr_debug("%s: led%i_on 0x%02x\n", DRIVER_NAME, led,
David Brownellb5067f82007-10-13 23:56:30 +0200799 i2c_smbus_read_byte_data(the_tps->client,
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700800 TPS_LED1_ON + offs));
David Brownell72cd7992005-05-24 17:34:51 -0700801
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700802 pr_debug("%s: led%i_per 0x%02x\n", DRIVER_NAME, led,
David Brownellb5067f82007-10-13 23:56:30 +0200803 i2c_smbus_read_byte_data(the_tps->client,
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700804 TPS_LED1_PER + offs));
David Brownell72cd7992005-05-24 17:34:51 -0700805
806 switch (mode) {
807 case OFF:
808 led_on = 1 << 7;
809 led_per = 0 << 7;
810 break;
811 case ON:
812 led_on = 1 << 7;
813 led_per = 1 << 7;
814 break;
815 case BLINK:
816 led_on = 0x30 | (0 << 7);
817 led_per = 0x08 | (1 << 7);
818 break;
819 default:
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700820 printk(KERN_ERR "%s: Wrong mode parameter for set_led()\n",
David Brownell72cd7992005-05-24 17:34:51 -0700821 DRIVER_NAME);
Ingo Molnar5c085d32006-01-18 23:16:04 +0100822 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700823 return -EINVAL;
824 }
825
David Brownellb5067f82007-10-13 23:56:30 +0200826 status = i2c_smbus_write_byte_data(the_tps->client,
David Brownell72cd7992005-05-24 17:34:51 -0700827 TPS_LED1_ON + offs, led_on);
828
829 if (status != 0) {
830 printk(KERN_ERR "%s: Failed to write led%i_on register\n",
831 DRIVER_NAME, led);
Ingo Molnar5c085d32006-01-18 23:16:04 +0100832 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700833 return status;
834 }
835
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700836 pr_debug("%s: led%i_on 0x%02x\n", DRIVER_NAME, led,
David Brownellb5067f82007-10-13 23:56:30 +0200837 i2c_smbus_read_byte_data(the_tps->client, TPS_LED1_ON + offs));
David Brownell72cd7992005-05-24 17:34:51 -0700838
David Brownellb5067f82007-10-13 23:56:30 +0200839 status = i2c_smbus_write_byte_data(the_tps->client,
David Brownell72cd7992005-05-24 17:34:51 -0700840 TPS_LED1_PER + offs, led_per);
841
842 if (status != 0) {
843 printk(KERN_ERR "%s: Failed to write led%i_per register\n",
844 DRIVER_NAME, led);
Ingo Molnar5c085d32006-01-18 23:16:04 +0100845 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700846 return status;
847 }
848
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700849 pr_debug("%s: led%i_per 0x%02x\n", DRIVER_NAME, led,
David Brownellb5067f82007-10-13 23:56:30 +0200850 i2c_smbus_read_byte_data(the_tps->client,
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700851 TPS_LED1_PER + offs));
David Brownell72cd7992005-05-24 17:34:51 -0700852
Ingo Molnar5c085d32006-01-18 23:16:04 +0100853 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700854
855 return status;
856}
857EXPORT_SYMBOL(tps65010_set_led);
858
859/*-------------------------------------------------------------------------*/
860/* tps65010_set_vib parameter:
861 * value: ON or OFF
862 */
863int tps65010_set_vib(unsigned value)
864{
865 int status;
866 unsigned vdcdc2;
867
868 if (!the_tps)
869 return -ENODEV;
870
Ingo Molnar5c085d32006-01-18 23:16:04 +0100871 mutex_lock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700872
David Brownellb5067f82007-10-13 23:56:30 +0200873 vdcdc2 = i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC2);
David Brownell72cd7992005-05-24 17:34:51 -0700874 vdcdc2 &= ~(1 << 1);
875 if (value)
876 vdcdc2 |= (1 << 1);
David Brownellb5067f82007-10-13 23:56:30 +0200877 status = i2c_smbus_write_byte_data(the_tps->client,
David Brownell72cd7992005-05-24 17:34:51 -0700878 TPS_VDCDC2, vdcdc2);
879
880 pr_debug("%s: vibrator %s\n", DRIVER_NAME, value ? "on" : "off");
881
Ingo Molnar5c085d32006-01-18 23:16:04 +0100882 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700883 return status;
884}
885EXPORT_SYMBOL(tps65010_set_vib);
886
887/*-------------------------------------------------------------------------*/
888/* tps65010_set_low_pwr parameter:
889 * mode: ON or OFF
890 */
891int tps65010_set_low_pwr(unsigned mode)
892{
893 int status;
894 unsigned vdcdc1;
895
896 if (!the_tps)
897 return -ENODEV;
898
Ingo Molnar5c085d32006-01-18 23:16:04 +0100899 mutex_lock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700900
901 pr_debug("%s: %s low_pwr, vdcdc1 0x%02x\n", DRIVER_NAME,
902 mode ? "enable" : "disable",
David Brownellb5067f82007-10-13 23:56:30 +0200903 i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1));
David Brownell72cd7992005-05-24 17:34:51 -0700904
David Brownellb5067f82007-10-13 23:56:30 +0200905 vdcdc1 = i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1);
David Brownell72cd7992005-05-24 17:34:51 -0700906
907 switch (mode) {
908 case OFF:
909 vdcdc1 &= ~TPS_ENABLE_LP; /* disable ENABLE_LP bit */
910 break;
911 /* case ON: */
912 default:
913 vdcdc1 |= TPS_ENABLE_LP; /* enable ENABLE_LP bit */
914 break;
915 }
916
David Brownellb5067f82007-10-13 23:56:30 +0200917 status = i2c_smbus_write_byte_data(the_tps->client,
David Brownell72cd7992005-05-24 17:34:51 -0700918 TPS_VDCDC1, vdcdc1);
919
920 if (status != 0)
921 printk(KERN_ERR "%s: Failed to write vdcdc1 register\n",
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700922 DRIVER_NAME);
David Brownell72cd7992005-05-24 17:34:51 -0700923 else
924 pr_debug("%s: vdcdc1 0x%02x\n", DRIVER_NAME,
David Brownellb5067f82007-10-13 23:56:30 +0200925 i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1));
David Brownell72cd7992005-05-24 17:34:51 -0700926
Ingo Molnar5c085d32006-01-18 23:16:04 +0100927 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700928
929 return status;
930}
931EXPORT_SYMBOL(tps65010_set_low_pwr);
932
933/*-------------------------------------------------------------------------*/
934/* tps65010_config_vregs1 parameter:
935 * value to be written to VREGS1 register
936 * Note: The complete register is written, set all bits you need
937 */
938int tps65010_config_vregs1(unsigned value)
939{
940 int status;
941
942 if (!the_tps)
943 return -ENODEV;
944
Ingo Molnar5c085d32006-01-18 23:16:04 +0100945 mutex_lock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700946
947 pr_debug("%s: vregs1 0x%02x\n", DRIVER_NAME,
David Brownellb5067f82007-10-13 23:56:30 +0200948 i2c_smbus_read_byte_data(the_tps->client, TPS_VREGS1));
David Brownell72cd7992005-05-24 17:34:51 -0700949
David Brownellb5067f82007-10-13 23:56:30 +0200950 status = i2c_smbus_write_byte_data(the_tps->client,
David Brownell72cd7992005-05-24 17:34:51 -0700951 TPS_VREGS1, value);
952
953 if (status != 0)
954 printk(KERN_ERR "%s: Failed to write vregs1 register\n",
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700955 DRIVER_NAME);
David Brownell72cd7992005-05-24 17:34:51 -0700956 else
957 pr_debug("%s: vregs1 0x%02x\n", DRIVER_NAME,
David Brownellb5067f82007-10-13 23:56:30 +0200958 i2c_smbus_read_byte_data(the_tps->client, TPS_VREGS1));
David Brownell72cd7992005-05-24 17:34:51 -0700959
Ingo Molnar5c085d32006-01-18 23:16:04 +0100960 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700961
962 return status;
963}
964EXPORT_SYMBOL(tps65010_config_vregs1);
965
966/*-------------------------------------------------------------------------*/
967/* tps65013_set_low_pwr parameter:
968 * mode: ON or OFF
969 */
970
971/* FIXME: Assumes AC or USB power is present. Setting AUA bit is not
972 required if power supply is through a battery */
973
974int tps65013_set_low_pwr(unsigned mode)
975{
976 int status;
977 unsigned vdcdc1, chgconfig;
978
979 if (!the_tps || the_tps->por)
980 return -ENODEV;
981
Ingo Molnar5c085d32006-01-18 23:16:04 +0100982 mutex_lock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700983
984 pr_debug("%s: %s low_pwr, chgconfig 0x%02x vdcdc1 0x%02x\n",
985 DRIVER_NAME,
986 mode ? "enable" : "disable",
David Brownellb5067f82007-10-13 23:56:30 +0200987 i2c_smbus_read_byte_data(the_tps->client, TPS_CHGCONFIG),
988 i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1));
David Brownell72cd7992005-05-24 17:34:51 -0700989
David Brownellb5067f82007-10-13 23:56:30 +0200990 chgconfig = i2c_smbus_read_byte_data(the_tps->client, TPS_CHGCONFIG);
991 vdcdc1 = i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1);
David Brownell72cd7992005-05-24 17:34:51 -0700992
993 switch (mode) {
994 case OFF:
995 chgconfig &= ~TPS65013_AUA; /* disable AUA bit */
996 vdcdc1 &= ~TPS_ENABLE_LP; /* disable ENABLE_LP bit */
997 break;
998 /* case ON: */
999 default:
1000 chgconfig |= TPS65013_AUA; /* enable AUA bit */
1001 vdcdc1 |= TPS_ENABLE_LP; /* enable ENABLE_LP bit */
1002 break;
1003 }
1004
David Brownellb5067f82007-10-13 23:56:30 +02001005 status = i2c_smbus_write_byte_data(the_tps->client,
David Brownell72cd7992005-05-24 17:34:51 -07001006 TPS_CHGCONFIG, chgconfig);
1007 if (status != 0) {
1008 printk(KERN_ERR "%s: Failed to write chconfig register\n",
1009 DRIVER_NAME);
Ingo Molnar5c085d32006-01-18 23:16:04 +01001010 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -07001011 return status;
1012 }
1013
David Brownellb5067f82007-10-13 23:56:30 +02001014 chgconfig = i2c_smbus_read_byte_data(the_tps->client, TPS_CHGCONFIG);
David Brownell72cd7992005-05-24 17:34:51 -07001015 the_tps->chgconf = chgconfig;
1016 show_chgconfig(0, "chgconf", chgconfig);
1017
David Brownellb5067f82007-10-13 23:56:30 +02001018 status = i2c_smbus_write_byte_data(the_tps->client,
David Brownell72cd7992005-05-24 17:34:51 -07001019 TPS_VDCDC1, vdcdc1);
1020
1021 if (status != 0)
1022 printk(KERN_ERR "%s: Failed to write vdcdc1 register\n",
1023 DRIVER_NAME);
1024 else
1025 pr_debug("%s: vdcdc1 0x%02x\n", DRIVER_NAME,
David Brownellb5067f82007-10-13 23:56:30 +02001026 i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1));
David Brownell72cd7992005-05-24 17:34:51 -07001027
Ingo Molnar5c085d32006-01-18 23:16:04 +01001028 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -07001029
1030 return status;
1031}
1032EXPORT_SYMBOL(tps65013_set_low_pwr);
1033
1034/*-------------------------------------------------------------------------*/
1035
1036static int __init tps_init(void)
1037{
1038 u32 tries = 3;
1039 int status = -ENODEV;
1040
1041 printk(KERN_INFO "%s: version %s\n", DRIVER_NAME, DRIVER_VERSION);
1042
1043 /* some boards have startup glitches */
1044 while (tries--) {
1045 status = i2c_add_driver(&tps65010_driver);
1046 if (the_tps)
1047 break;
1048 i2c_del_driver(&tps65010_driver);
1049 if (!tries) {
1050 printk(KERN_ERR "%s: no chip?\n", DRIVER_NAME);
1051 return -ENODEV;
1052 }
1053 pr_debug("%s: re-probe ...\n", DRIVER_NAME);
1054 msleep(10);
1055 }
1056
David Brownell72cd7992005-05-24 17:34:51 -07001057 return status;
1058}
1059/* NOTE: this MUST be initialized before the other parts of the system
1060 * that rely on it ... but after the i2c bus on which this relies.
1061 * That is, much earlier than on PC-type systems, which don't often use
1062 * I2C as a core system bus.
1063 */
1064subsys_initcall(tps_init);
1065
1066static void __exit tps_exit(void)
1067{
1068 i2c_del_driver(&tps65010_driver);
1069}
1070module_exit(tps_exit);
1071