blob: 7e7dbee58ca90feb10b330d31add4e61d1784e4c [file] [log] [blame]
Thomas Gleixner74ba9202019-05-20 09:19:02 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Brownell72cd7992005-05-24 17:34:51 -07002/*
3 * tps65010 - driver for tps6501x power management chips
4 *
5 * Copyright (C) 2004 Texas Instruments
6 * Copyright (C) 2004-2005 David Brownell
David Brownell72cd7992005-05-24 17:34:51 -07007 */
David Brownell72cd7992005-05-24 17:34:51 -07008
David Brownell72cd7992005-05-24 17:34:51 -07009#include <linux/kernel.h>
10#include <linux/module.h>
11#include <linux/init.h>
12#include <linux/slab.h>
13#include <linux/interrupt.h>
David Brownell72cd7992005-05-24 17:34:51 -070014#include <linux/i2c.h>
15#include <linux/delay.h>
16#include <linux/workqueue.h>
David Brownell72cd7992005-05-24 17:34:51 -070017#include <linux/debugfs.h>
18#include <linux/seq_file.h>
Ingo Molnar5c085d32006-01-18 23:16:04 +010019#include <linux/mutex.h>
David Brownell79966fd2008-02-28 22:07:28 -080020#include <linux/platform_device.h>
David Brownell72cd7992005-05-24 17:34:51 -070021
Wolfram Sang97870762017-08-14 18:34:23 +020022#include <linux/mfd/tps65010.h>
David Brownell72cd7992005-05-24 17:34:51 -070023
Linus Walleij22e5e742016-03-30 10:48:07 +020024#include <linux/gpio/driver.h>
David Brownell79966fd2008-02-28 22:07:28 -080025
26
David Brownell72cd7992005-05-24 17:34:51 -070027/*-------------------------------------------------------------------------*/
28
29#define DRIVER_VERSION "2 May 2005"
David Brownell4801bc22006-08-11 22:53:08 +020030#define DRIVER_NAME (tps65010_driver.driver.name)
David Brownell72cd7992005-05-24 17:34:51 -070031
32MODULE_DESCRIPTION("TPS6501x Power Management Driver");
33MODULE_LICENSE("GPL");
34
David Brownell72cd7992005-05-24 17:34:51 -070035static struct i2c_driver tps65010_driver;
36
37/*-------------------------------------------------------------------------*/
38
39/* This driver handles a family of multipurpose chips, which incorporate
40 * voltage regulators, lithium ion/polymer battery charging, GPIOs, LEDs,
41 * and other features often needed in portable devices like cell phones
42 * or digital cameras.
43 *
44 * The tps65011 and tps65013 have different voltage settings compared
45 * to tps65010 and tps65012. The tps65013 has a NO_CHG status/irq.
46 * All except tps65010 have "wait" mode, possibly defaulted so that
47 * battery-insert != device-on.
48 *
49 * We could distinguish between some models by checking VDCDC1.UVLO or
50 * other registers, unless they've been changed already after powerup
51 * as part of board setup by a bootloader.
52 */
53enum tps_model {
David Brownell72cd7992005-05-24 17:34:51 -070054 TPS65010,
55 TPS65011,
56 TPS65012,
57 TPS65013,
58};
59
60struct tps65010 {
David Brownellb5067f82007-10-13 23:56:30 +020061 struct i2c_client *client;
Ingo Molnar5c085d32006-01-18 23:16:04 +010062 struct mutex lock;
David Brownell8c1bc042006-12-13 00:33:46 -080063 struct delayed_work work;
David Brownell72cd7992005-05-24 17:34:51 -070064 struct dentry *file;
65 unsigned charging:1;
66 unsigned por:1;
67 unsigned model:8;
68 u16 vbus;
69 unsigned long flags;
70#define FLAG_VBUS_CHANGED 0
71#define FLAG_IRQ_ENABLE 1
72
73 /* copies of last register state */
74 u8 chgstatus, regstatus, chgconf;
75 u8 nmask1, nmask2;
76
David Brownell79966fd2008-02-28 22:07:28 -080077 u8 outmask;
78 struct gpio_chip chip;
79 struct platform_device *leds;
David Brownell72cd7992005-05-24 17:34:51 -070080};
81
David Brownell4801bc22006-08-11 22:53:08 +020082#define POWER_POLL_DELAY msecs_to_jiffies(5000)
David Brownell72cd7992005-05-24 17:34:51 -070083
84/*-------------------------------------------------------------------------*/
85
86#if defined(DEBUG) || defined(CONFIG_DEBUG_FS)
87
88static void dbg_chgstat(char *buf, size_t len, u8 chgstatus)
89{
90 snprintf(buf, len, "%02x%s%s%s%s%s%s%s%s\n",
91 chgstatus,
92 (chgstatus & TPS_CHG_USB) ? " USB" : "",
93 (chgstatus & TPS_CHG_AC) ? " AC" : "",
94 (chgstatus & TPS_CHG_THERM) ? " therm" : "",
95 (chgstatus & TPS_CHG_TERM) ? " done" :
96 ((chgstatus & (TPS_CHG_USB|TPS_CHG_AC))
97 ? " (charging)" : ""),
98 (chgstatus & TPS_CHG_TAPER_TMO) ? " taper_tmo" : "",
99 (chgstatus & TPS_CHG_CHG_TMO) ? " charge_tmo" : "",
100 (chgstatus & TPS_CHG_PRECHG_TMO) ? " prechg_tmo" : "",
101 (chgstatus & TPS_CHG_TEMP_ERR) ? " temp_err" : "");
102}
103
104static void dbg_regstat(char *buf, size_t len, u8 regstatus)
105{
106 snprintf(buf, len, "%02x %s%s%s%s%s%s%s%s\n",
107 regstatus,
108 (regstatus & TPS_REG_ONOFF) ? "off" : "(on)",
109 (regstatus & TPS_REG_COVER) ? " uncover" : "",
110 (regstatus & TPS_REG_UVLO) ? " UVLO" : "",
111 (regstatus & TPS_REG_NO_CHG) ? " NO_CHG" : "",
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700112 (regstatus & TPS_REG_PG_LD02) ? " ld02_bad" : "",
David Brownell72cd7992005-05-24 17:34:51 -0700113 (regstatus & TPS_REG_PG_LD01) ? " ld01_bad" : "",
114 (regstatus & TPS_REG_PG_MAIN) ? " main_bad" : "",
115 (regstatus & TPS_REG_PG_CORE) ? " core_bad" : "");
116}
117
118static void dbg_chgconf(int por, char *buf, size_t len, u8 chgconfig)
119{
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700120 const char *hibit;
David Brownell72cd7992005-05-24 17:34:51 -0700121
122 if (por)
123 hibit = (chgconfig & TPS_CHARGE_POR)
124 ? "POR=69ms" : "POR=1sec";
125 else
126 hibit = (chgconfig & TPS65013_AUA) ? "AUA" : "";
127
128 snprintf(buf, len, "%02x %s%s%s AC=%d%% USB=%dmA %sCharge\n",
129 chgconfig, hibit,
130 (chgconfig & TPS_CHARGE_RESET) ? " reset" : "",
131 (chgconfig & TPS_CHARGE_FAST) ? " fast" : "",
132 ({int p; switch ((chgconfig >> 3) & 3) {
133 case 3: p = 100; break;
134 case 2: p = 75; break;
135 case 1: p = 50; break;
136 default: p = 25; break;
137 }; p; }),
138 (chgconfig & TPS_VBUS_CHARGING)
139 ? ((chgconfig & TPS_VBUS_500MA) ? 500 : 100)
140 : 0,
141 (chgconfig & TPS_CHARGE_ENABLE) ? "" : "No");
142}
143
144#endif
145
146#ifdef DEBUG
147
148static void show_chgstatus(const char *label, u8 chgstatus)
149{
150 char buf [100];
151
152 dbg_chgstat(buf, sizeof buf, chgstatus);
153 pr_debug("%s: %s %s", DRIVER_NAME, label, buf);
154}
155
156static void show_regstatus(const char *label, u8 regstatus)
157{
158 char buf [100];
159
160 dbg_regstat(buf, sizeof buf, regstatus);
161 pr_debug("%s: %s %s", DRIVER_NAME, label, buf);
162}
163
164static void show_chgconfig(int por, const char *label, u8 chgconfig)
165{
166 char buf [100];
167
168 dbg_chgconf(por, buf, sizeof buf, chgconfig);
169 pr_debug("%s: %s %s", DRIVER_NAME, label, buf);
170}
171
172#else
173
174static inline void show_chgstatus(const char *label, u8 chgstatus) { }
175static inline void show_regstatus(const char *label, u8 chgstatus) { }
176static inline void show_chgconfig(int por, const char *label, u8 chgconfig) { }
177
178#endif
179
180#ifdef CONFIG_DEBUG_FS
181
182static int dbg_show(struct seq_file *s, void *_)
183{
184 struct tps65010 *tps = s->private;
185 u8 value, v2;
186 unsigned i;
187 char buf[100];
188 const char *chip;
189
190 switch (tps->model) {
191 case TPS65010: chip = "tps65010"; break;
192 case TPS65011: chip = "tps65011"; break;
193 case TPS65012: chip = "tps65012"; break;
194 case TPS65013: chip = "tps65013"; break;
195 default: chip = NULL; break;
196 }
197 seq_printf(s, "driver %s\nversion %s\nchip %s\n\n",
198 DRIVER_NAME, DRIVER_VERSION, chip);
199
Ingo Molnar5c085d32006-01-18 23:16:04 +0100200 mutex_lock(&tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700201
202 /* FIXME how can we tell whether a battery is present?
203 * likely involves a charge gauging chip (like BQ26501).
204 */
205
206 seq_printf(s, "%scharging\n\n", tps->charging ? "" : "(not) ");
207
208
209 /* registers for monitoring battery charging and status; note
210 * that reading chgstat and regstat may ack IRQs...
211 */
David Brownellb5067f82007-10-13 23:56:30 +0200212 value = i2c_smbus_read_byte_data(tps->client, TPS_CHGCONFIG);
David Brownell72cd7992005-05-24 17:34:51 -0700213 dbg_chgconf(tps->por, buf, sizeof buf, value);
214 seq_printf(s, "chgconfig %s", buf);
215
David Brownellb5067f82007-10-13 23:56:30 +0200216 value = i2c_smbus_read_byte_data(tps->client, TPS_CHGSTATUS);
David Brownell72cd7992005-05-24 17:34:51 -0700217 dbg_chgstat(buf, sizeof buf, value);
218 seq_printf(s, "chgstat %s", buf);
David Brownellb5067f82007-10-13 23:56:30 +0200219 value = i2c_smbus_read_byte_data(tps->client, TPS_MASK1);
David Brownell72cd7992005-05-24 17:34:51 -0700220 dbg_chgstat(buf, sizeof buf, value);
221 seq_printf(s, "mask1 %s", buf);
222 /* ignore ackint1 */
223
David Brownellb5067f82007-10-13 23:56:30 +0200224 value = i2c_smbus_read_byte_data(tps->client, TPS_REGSTATUS);
David Brownell72cd7992005-05-24 17:34:51 -0700225 dbg_regstat(buf, sizeof buf, value);
226 seq_printf(s, "regstat %s", buf);
David Brownellb5067f82007-10-13 23:56:30 +0200227 value = i2c_smbus_read_byte_data(tps->client, TPS_MASK2);
David Brownell72cd7992005-05-24 17:34:51 -0700228 dbg_regstat(buf, sizeof buf, value);
229 seq_printf(s, "mask2 %s\n", buf);
230 /* ignore ackint2 */
231
Mark Brownbb3d5932013-08-09 18:25:02 +0100232 queue_delayed_work(system_power_efficient_wq, &tps->work,
233 POWER_POLL_DELAY);
David Brownell72cd7992005-05-24 17:34:51 -0700234
235 /* VMAIN voltage, enable lowpower, etc */
David Brownellb5067f82007-10-13 23:56:30 +0200236 value = i2c_smbus_read_byte_data(tps->client, TPS_VDCDC1);
David Brownell72cd7992005-05-24 17:34:51 -0700237 seq_printf(s, "vdcdc1 %02x\n", value);
238
239 /* VCORE voltage, vibrator on/off */
David Brownellb5067f82007-10-13 23:56:30 +0200240 value = i2c_smbus_read_byte_data(tps->client, TPS_VDCDC2);
David Brownell72cd7992005-05-24 17:34:51 -0700241 seq_printf(s, "vdcdc2 %02x\n", value);
242
243 /* both LD0s, and their lowpower behavior */
David Brownellb5067f82007-10-13 23:56:30 +0200244 value = i2c_smbus_read_byte_data(tps->client, TPS_VREGS1);
David Brownell72cd7992005-05-24 17:34:51 -0700245 seq_printf(s, "vregs1 %02x\n\n", value);
246
247
248 /* LEDs and GPIOs */
David Brownellb5067f82007-10-13 23:56:30 +0200249 value = i2c_smbus_read_byte_data(tps->client, TPS_LED1_ON);
250 v2 = i2c_smbus_read_byte_data(tps->client, TPS_LED1_PER);
David Brownell72cd7992005-05-24 17:34:51 -0700251 seq_printf(s, "led1 %s, on=%02x, per=%02x, %d/%d msec\n",
252 (value & 0x80)
253 ? ((v2 & 0x80) ? "on" : "off")
254 : ((v2 & 0x80) ? "blink" : "(nPG)"),
255 value, v2,
256 (value & 0x7f) * 10, (v2 & 0x7f) * 100);
257
David Brownellb5067f82007-10-13 23:56:30 +0200258 value = i2c_smbus_read_byte_data(tps->client, TPS_LED2_ON);
259 v2 = i2c_smbus_read_byte_data(tps->client, TPS_LED2_PER);
David Brownell72cd7992005-05-24 17:34:51 -0700260 seq_printf(s, "led2 %s, on=%02x, per=%02x, %d/%d msec\n",
261 (value & 0x80)
262 ? ((v2 & 0x80) ? "on" : "off")
263 : ((v2 & 0x80) ? "blink" : "off"),
264 value, v2,
265 (value & 0x7f) * 10, (v2 & 0x7f) * 100);
266
David Brownellb5067f82007-10-13 23:56:30 +0200267 value = i2c_smbus_read_byte_data(tps->client, TPS_DEFGPIO);
268 v2 = i2c_smbus_read_byte_data(tps->client, TPS_MASK3);
David Brownell72cd7992005-05-24 17:34:51 -0700269 seq_printf(s, "defgpio %02x mask3 %02x\n", value, v2);
270
271 for (i = 0; i < 4; i++) {
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700272 if (value & (1 << (4 + i)))
David Brownell72cd7992005-05-24 17:34:51 -0700273 seq_printf(s, " gpio%d-out %s\n", i + 1,
274 (value & (1 << i)) ? "low" : "hi ");
275 else
276 seq_printf(s, " gpio%d-in %s %s %s\n", i + 1,
277 (value & (1 << i)) ? "hi " : "low",
278 (v2 & (1 << i)) ? "no-irq" : "irq",
279 (v2 & (1 << (4 + i))) ? "rising" : "falling");
280 }
281
Ingo Molnar5c085d32006-01-18 23:16:04 +0100282 mutex_unlock(&tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700283 return 0;
284}
285
286static int dbg_tps_open(struct inode *inode, struct file *file)
287{
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700288 return single_open(file, dbg_show, inode->i_private);
David Brownell72cd7992005-05-24 17:34:51 -0700289}
290
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800291static const struct file_operations debug_fops = {
David Brownell72cd7992005-05-24 17:34:51 -0700292 .open = dbg_tps_open,
293 .read = seq_read,
294 .llseek = seq_lseek,
295 .release = single_release,
296};
297
298#define DEBUG_FOPS &debug_fops
299
300#else
301#define DEBUG_FOPS NULL
302#endif
303
304/*-------------------------------------------------------------------------*/
305
306/* handle IRQS in a task context, so we can use I2C calls */
307static void tps65010_interrupt(struct tps65010 *tps)
308{
309 u8 tmp = 0, mask, poll;
310
David Brownell8c1bc042006-12-13 00:33:46 -0800311 /* IRQs won't trigger for certain events, but we can get
David Brownell72cd7992005-05-24 17:34:51 -0700312 * others by polling (normally, with external power applied).
313 */
314 poll = 0;
315
316 /* regstatus irqs */
317 if (tps->nmask2) {
David Brownellb5067f82007-10-13 23:56:30 +0200318 tmp = i2c_smbus_read_byte_data(tps->client, TPS_REGSTATUS);
David Brownell72cd7992005-05-24 17:34:51 -0700319 mask = tmp ^ tps->regstatus;
320 tps->regstatus = tmp;
321 mask &= tps->nmask2;
322 } else
323 mask = 0;
324 if (mask) {
325 tps->regstatus = tmp;
326 /* may need to shut something down ... */
327
328 /* "off" usually means deep sleep */
329 if (tmp & TPS_REG_ONOFF) {
330 pr_info("%s: power off button\n", DRIVER_NAME);
331#if 0
332 /* REVISIT: this might need its own workqueue
333 * plus tweaks including deadlock avoidance ...
Johannes Bergab3bfca2007-05-06 14:50:49 -0700334 * also needs to get error handling and probably
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200335 * an #ifdef CONFIG_HIBERNATION
David Brownell72cd7992005-05-24 17:34:51 -0700336 */
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700337 hibernate();
David Brownell72cd7992005-05-24 17:34:51 -0700338#endif
339 poll = 1;
340 }
341 }
342
343 /* chgstatus irqs */
344 if (tps->nmask1) {
David Brownellb5067f82007-10-13 23:56:30 +0200345 tmp = i2c_smbus_read_byte_data(tps->client, TPS_CHGSTATUS);
David Brownell72cd7992005-05-24 17:34:51 -0700346 mask = tmp ^ tps->chgstatus;
347 tps->chgstatus = tmp;
348 mask &= tps->nmask1;
349 } else
350 mask = 0;
351 if (mask) {
352 unsigned charging = 0;
353
354 show_chgstatus("chg/irq", tmp);
355 if (tmp & (TPS_CHG_USB|TPS_CHG_AC))
356 show_chgconfig(tps->por, "conf", tps->chgconf);
357
358 /* Unless it was turned off or disabled, we charge any
359 * battery whenever there's power available for it
360 * and the charger hasn't been disabled.
361 */
362 if (!(tps->chgstatus & ~(TPS_CHG_USB|TPS_CHG_AC))
363 && (tps->chgstatus & (TPS_CHG_USB|TPS_CHG_AC))
364 && (tps->chgconf & TPS_CHARGE_ENABLE)
365 ) {
366 if (tps->chgstatus & TPS_CHG_USB) {
367 /* VBUS options are readonly until reconnect */
368 if (mask & TPS_CHG_USB)
369 set_bit(FLAG_VBUS_CHANGED, &tps->flags);
370 charging = 1;
371 } else if (tps->chgstatus & TPS_CHG_AC)
372 charging = 1;
373 }
374 if (charging != tps->charging) {
375 tps->charging = charging;
376 pr_info("%s: battery %scharging\n",
377 DRIVER_NAME, charging ? "" :
378 ((tps->chgstatus & (TPS_CHG_USB|TPS_CHG_AC))
379 ? "NOT " : "dis"));
380 }
381 }
382
383 /* always poll to detect (a) power removal, without tps65013
384 * NO_CHG IRQ; or (b) restart of charging after stop.
385 */
386 if ((tps->model != TPS65013 || !tps->charging)
387 && (tps->chgstatus & (TPS_CHG_USB|TPS_CHG_AC)))
388 poll = 1;
389 if (poll)
Mark Brownbb3d5932013-08-09 18:25:02 +0100390 queue_delayed_work(system_power_efficient_wq, &tps->work,
391 POWER_POLL_DELAY);
David Brownell72cd7992005-05-24 17:34:51 -0700392
393 /* also potentially gpio-in rise or fall */
394}
395
396/* handle IRQs and polling using keventd for now */
David Brownell8c1bc042006-12-13 00:33:46 -0800397static void tps65010_work(struct work_struct *work)
David Brownell72cd7992005-05-24 17:34:51 -0700398{
David Brownell8c1bc042006-12-13 00:33:46 -0800399 struct tps65010 *tps;
David Brownell72cd7992005-05-24 17:34:51 -0700400
Tejun Heoafdb32f2010-12-24 16:00:17 +0100401 tps = container_of(to_delayed_work(work), struct tps65010, work);
Ingo Molnar5c085d32006-01-18 23:16:04 +0100402 mutex_lock(&tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700403
404 tps65010_interrupt(tps);
405
406 if (test_and_clear_bit(FLAG_VBUS_CHANGED, &tps->flags)) {
David Brownell72cd7992005-05-24 17:34:51 -0700407 u8 chgconfig, tmp;
408
David Brownellb5067f82007-10-13 23:56:30 +0200409 chgconfig = i2c_smbus_read_byte_data(tps->client,
David Brownell72cd7992005-05-24 17:34:51 -0700410 TPS_CHGCONFIG);
411 chgconfig &= ~(TPS_VBUS_500MA | TPS_VBUS_CHARGING);
412 if (tps->vbus == 500)
413 chgconfig |= TPS_VBUS_500MA | TPS_VBUS_CHARGING;
414 else if (tps->vbus >= 100)
415 chgconfig |= TPS_VBUS_CHARGING;
416
Lee Jones2fbd5832020-06-24 13:31:31 +0100417 i2c_smbus_write_byte_data(tps->client,
418 TPS_CHGCONFIG, chgconfig);
David Brownell72cd7992005-05-24 17:34:51 -0700419
420 /* vbus update fails unless VBUS is connected! */
David Brownellb5067f82007-10-13 23:56:30 +0200421 tmp = i2c_smbus_read_byte_data(tps->client, TPS_CHGCONFIG);
David Brownell72cd7992005-05-24 17:34:51 -0700422 tps->chgconf = tmp;
423 show_chgconfig(tps->por, "update vbus", tmp);
424 }
425
426 if (test_and_clear_bit(FLAG_IRQ_ENABLE, &tps->flags))
David Brownell8056c6c2007-10-13 23:56:30 +0200427 enable_irq(tps->client->irq);
David Brownell72cd7992005-05-24 17:34:51 -0700428
Ingo Molnar5c085d32006-01-18 23:16:04 +0100429 mutex_unlock(&tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700430}
431
David Howells7d12e782006-10-05 14:55:46 +0100432static irqreturn_t tps65010_irq(int irq, void *_tps)
David Brownell72cd7992005-05-24 17:34:51 -0700433{
434 struct tps65010 *tps = _tps;
435
436 disable_irq_nosync(irq);
437 set_bit(FLAG_IRQ_ENABLE, &tps->flags);
Mark Brownbb3d5932013-08-09 18:25:02 +0100438 queue_delayed_work(system_power_efficient_wq, &tps->work, 0);
David Brownell72cd7992005-05-24 17:34:51 -0700439 return IRQ_HANDLED;
440}
441
442/*-------------------------------------------------------------------------*/
443
David Brownell79966fd2008-02-28 22:07:28 -0800444/* offsets 0..3 == GPIO1..GPIO4
445 * offsets 4..5 == LED1/nPG, LED2 (we set one of the non-BLINK modes)
Marek Vasutb84ee0b2008-10-14 17:30:04 +0200446 * offset 6 == vibrator motor driver
David Brownell79966fd2008-02-28 22:07:28 -0800447 */
448static void
449tps65010_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
450{
451 if (offset < 4)
452 tps65010_set_gpio_out_value(offset + 1, value);
Marek Vasutb84ee0b2008-10-14 17:30:04 +0200453 else if (offset < 6)
David Brownell79966fd2008-02-28 22:07:28 -0800454 tps65010_set_led(offset - 3, value ? ON : OFF);
Marek Vasutb84ee0b2008-10-14 17:30:04 +0200455 else
456 tps65010_set_vib(value);
David Brownell79966fd2008-02-28 22:07:28 -0800457}
458
459static int
460tps65010_output(struct gpio_chip *chip, unsigned offset, int value)
461{
462 /* GPIOs may be input-only */
463 if (offset < 4) {
464 struct tps65010 *tps;
465
Linus Walleij22e5e742016-03-30 10:48:07 +0200466 tps = gpiochip_get_data(chip);
David Brownell79966fd2008-02-28 22:07:28 -0800467 if (!(tps->outmask & (1 << offset)))
468 return -EINVAL;
469 tps65010_set_gpio_out_value(offset + 1, value);
Marek Vasutb84ee0b2008-10-14 17:30:04 +0200470 } else if (offset < 6)
David Brownell79966fd2008-02-28 22:07:28 -0800471 tps65010_set_led(offset - 3, value ? ON : OFF);
Marek Vasutb84ee0b2008-10-14 17:30:04 +0200472 else
473 tps65010_set_vib(value);
David Brownell79966fd2008-02-28 22:07:28 -0800474
475 return 0;
476}
477
478static int tps65010_gpio_get(struct gpio_chip *chip, unsigned offset)
479{
480 int value;
481 struct tps65010 *tps;
482
Linus Walleij22e5e742016-03-30 10:48:07 +0200483 tps = gpiochip_get_data(chip);
David Brownell79966fd2008-02-28 22:07:28 -0800484
485 if (offset < 4) {
486 value = i2c_smbus_read_byte_data(tps->client, TPS_DEFGPIO);
487 if (value < 0)
Linus Walleijbf3de472015-12-22 15:48:13 +0100488 return value;
David Brownell79966fd2008-02-28 22:07:28 -0800489 if (value & (1 << (offset + 4))) /* output */
490 return !(value & (1 << offset));
491 else /* input */
Linus Walleijbf3de472015-12-22 15:48:13 +0100492 return !!(value & (1 << offset));
David Brownell79966fd2008-02-28 22:07:28 -0800493 }
494
495 /* REVISIT we *could* report LED1/nPG and LED2 state ... */
496 return 0;
497}
498
499
500/*-------------------------------------------------------------------------*/
501
David Brownell72cd7992005-05-24 17:34:51 -0700502static struct tps65010 *the_tps;
503
Dmitry Torokhovbb733702015-03-09 10:47:15 -0700504static int tps65010_remove(struct i2c_client *client)
David Brownell72cd7992005-05-24 17:34:51 -0700505{
David Brownell8056c6c2007-10-13 23:56:30 +0200506 struct tps65010 *tps = i2c_get_clientdata(client);
Jingoo Han334a41ce2013-07-30 17:10:05 +0900507 struct tps65010_board *board = dev_get_platdata(&client->dev);
David Brownell72cd7992005-05-24 17:34:51 -0700508
David Brownell79966fd2008-02-28 22:07:28 -0800509 if (board && board->teardown) {
510 int status = board->teardown(client, board->context);
511 if (status < 0)
512 dev_dbg(&client->dev, "board %s %s err %d\n",
513 "teardown", client->name, status);
514 }
David Brownell8056c6c2007-10-13 23:56:30 +0200515 if (client->irq > 0)
516 free_irq(client->irq, tps);
Tejun Heoafdb32f2010-12-24 16:00:17 +0100517 cancel_delayed_work_sync(&tps->work);
David Brownell72cd7992005-05-24 17:34:51 -0700518 debugfs_remove(tps->file);
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700519 the_tps = NULL;
David Brownell72cd7992005-05-24 17:34:51 -0700520 return 0;
521}
522
Jean Delvared2653e92008-04-29 23:11:39 +0200523static int tps65010_probe(struct i2c_client *client,
524 const struct i2c_device_id *id)
David Brownell72cd7992005-05-24 17:34:51 -0700525{
526 struct tps65010 *tps;
527 int status;
Jingoo Han334a41ce2013-07-30 17:10:05 +0900528 struct tps65010_board *board = dev_get_platdata(&client->dev);
David Brownell72cd7992005-05-24 17:34:51 -0700529
530 if (the_tps) {
David Brownell8056c6c2007-10-13 23:56:30 +0200531 dev_dbg(&client->dev, "only one tps6501x chip allowed\n");
532 return -ENODEV;
David Brownell72cd7992005-05-24 17:34:51 -0700533 }
534
David Brownell8056c6c2007-10-13 23:56:30 +0200535 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_BYTE_DATA))
536 return -EINVAL;
537
Jingoo Haneac1dcb2013-08-20 16:05:54 +0900538 tps = devm_kzalloc(&client->dev, sizeof(*tps), GFP_KERNEL);
David Brownell72cd7992005-05-24 17:34:51 -0700539 if (!tps)
David Brownell8056c6c2007-10-13 23:56:30 +0200540 return -ENOMEM;
David Brownell72cd7992005-05-24 17:34:51 -0700541
Ingo Molnar5c085d32006-01-18 23:16:04 +0100542 mutex_init(&tps->lock);
David Brownell8c1bc042006-12-13 00:33:46 -0800543 INIT_DELAYED_WORK(&tps->work, tps65010_work);
David Brownell8056c6c2007-10-13 23:56:30 +0200544 tps->client = client;
Jean Delvare3760f732008-04-29 23:11:40 +0200545 tps->model = id->driver_data;
David Brownell72cd7992005-05-24 17:34:51 -0700546
David Brownell4801bc22006-08-11 22:53:08 +0200547 /* the IRQ is active low, but many gpio lines can't support that
David Brownell8056c6c2007-10-13 23:56:30 +0200548 * so this driver uses falling-edge triggers instead.
David Brownell4801bc22006-08-11 22:53:08 +0200549 */
David Brownell8056c6c2007-10-13 23:56:30 +0200550 if (client->irq > 0) {
551 status = request_irq(client->irq, tps65010_irq,
Theodore Ts'o212436c2012-07-17 13:23:36 -0400552 IRQF_TRIGGER_FALLING, DRIVER_NAME, tps);
David Brownell72cd7992005-05-24 17:34:51 -0700553 if (status < 0) {
David Brownellb5067f82007-10-13 23:56:30 +0200554 dev_dbg(&client->dev, "can't get IRQ %d, err %d\n",
David Brownell8056c6c2007-10-13 23:56:30 +0200555 client->irq, status);
Jingoo Haneac1dcb2013-08-20 16:05:54 +0900556 return status;
David Brownell72cd7992005-05-24 17:34:51 -0700557 }
David Brownell72cd7992005-05-24 17:34:51 -0700558 /* annoying race here, ideally we'd have an option
559 * to claim the irq now and enable it later.
David Brownell8056c6c2007-10-13 23:56:30 +0200560 * FIXME genirq IRQF_NOAUTOEN now solves that ...
David Brownell72cd7992005-05-24 17:34:51 -0700561 */
David Brownell8056c6c2007-10-13 23:56:30 +0200562 disable_irq(client->irq);
David Brownell72cd7992005-05-24 17:34:51 -0700563 set_bit(FLAG_IRQ_ENABLE, &tps->flags);
David Brownell72cd7992005-05-24 17:34:51 -0700564 } else
David Brownell8056c6c2007-10-13 23:56:30 +0200565 dev_warn(&client->dev, "IRQ not configured!\n");
David Brownell72cd7992005-05-24 17:34:51 -0700566
567
568 switch (tps->model) {
569 case TPS65010:
570 case TPS65012:
571 tps->por = 1;
572 break;
David Brownell72cd7992005-05-24 17:34:51 -0700573 /* else CHGCONFIG.POR is replaced by AUA, enabling a WAIT mode */
574 }
David Brownellb5067f82007-10-13 23:56:30 +0200575 tps->chgconf = i2c_smbus_read_byte_data(client, TPS_CHGCONFIG);
David Brownell72cd7992005-05-24 17:34:51 -0700576 show_chgconfig(tps->por, "conf/init", tps->chgconf);
577
578 show_chgstatus("chg/init",
David Brownellb5067f82007-10-13 23:56:30 +0200579 i2c_smbus_read_byte_data(client, TPS_CHGSTATUS));
David Brownell72cd7992005-05-24 17:34:51 -0700580 show_regstatus("reg/init",
David Brownellb5067f82007-10-13 23:56:30 +0200581 i2c_smbus_read_byte_data(client, TPS_REGSTATUS));
David Brownell72cd7992005-05-24 17:34:51 -0700582
583 pr_debug("%s: vdcdc1 0x%02x, vdcdc2 %02x, vregs1 %02x\n", DRIVER_NAME,
David Brownellb5067f82007-10-13 23:56:30 +0200584 i2c_smbus_read_byte_data(client, TPS_VDCDC1),
585 i2c_smbus_read_byte_data(client, TPS_VDCDC2),
586 i2c_smbus_read_byte_data(client, TPS_VREGS1));
David Brownell72cd7992005-05-24 17:34:51 -0700587 pr_debug("%s: defgpio 0x%02x, mask3 0x%02x\n", DRIVER_NAME,
David Brownellb5067f82007-10-13 23:56:30 +0200588 i2c_smbus_read_byte_data(client, TPS_DEFGPIO),
589 i2c_smbus_read_byte_data(client, TPS_MASK3));
David Brownell72cd7992005-05-24 17:34:51 -0700590
Jean Delvare6d072d72008-04-29 23:11:38 +0200591 i2c_set_clientdata(client, tps);
David Brownell72cd7992005-05-24 17:34:51 -0700592 the_tps = tps;
593
594#if defined(CONFIG_USB_GADGET) && !defined(CONFIG_USB_OTG)
595 /* USB hosts can't draw VBUS. OTG devices could, later
596 * when OTG infrastructure enables it. USB peripherals
597 * could be relying on VBUS while booting, though.
598 */
599 tps->vbus = 100;
600#endif
601
602 /* unmask the "interesting" irqs, then poll once to
603 * kickstart monitoring, initialize shadowed status
604 * registers, and maybe disable VBUS draw.
605 */
606 tps->nmask1 = ~0;
David Brownellb5067f82007-10-13 23:56:30 +0200607 (void) i2c_smbus_write_byte_data(client, TPS_MASK1, ~tps->nmask1);
David Brownell72cd7992005-05-24 17:34:51 -0700608
609 tps->nmask2 = TPS_REG_ONOFF;
610 if (tps->model == TPS65013)
611 tps->nmask2 |= TPS_REG_NO_CHG;
David Brownellb5067f82007-10-13 23:56:30 +0200612 (void) i2c_smbus_write_byte_data(client, TPS_MASK2, ~tps->nmask2);
David Brownell72cd7992005-05-24 17:34:51 -0700613
David Brownellb5067f82007-10-13 23:56:30 +0200614 (void) i2c_smbus_write_byte_data(client, TPS_MASK3, 0x0f
615 | i2c_smbus_read_byte_data(client, TPS_MASK3));
David Brownell72cd7992005-05-24 17:34:51 -0700616
David Brownell8c1bc042006-12-13 00:33:46 -0800617 tps65010_work(&tps->work.work);
David Brownell72cd7992005-05-24 17:34:51 -0700618
619 tps->file = debugfs_create_file(DRIVER_NAME, S_IRUGO, NULL,
620 tps, DEBUG_FOPS);
David Brownell79966fd2008-02-28 22:07:28 -0800621
622 /* optionally register GPIOs */
Ben Dooks84836992009-11-02 16:52:20 +0000623 if (board && board->base != 0) {
David Brownell79966fd2008-02-28 22:07:28 -0800624 tps->outmask = board->outmask;
625
626 tps->chip.label = client->name;
Linus Walleij58383c782015-11-04 09:56:26 +0100627 tps->chip.parent = &client->dev;
David Brownelld8f388d82008-07-25 01:46:07 -0700628 tps->chip.owner = THIS_MODULE;
David Brownell79966fd2008-02-28 22:07:28 -0800629
630 tps->chip.set = tps65010_gpio_set;
631 tps->chip.direction_output = tps65010_output;
632
633 /* NOTE: only partial support for inputs; nyet IRQs */
634 tps->chip.get = tps65010_gpio_get;
635
636 tps->chip.base = board->base;
Marek Vasutb84ee0b2008-10-14 17:30:04 +0200637 tps->chip.ngpio = 7;
David Brownell79966fd2008-02-28 22:07:28 -0800638 tps->chip.can_sleep = 1;
639
Linus Walleij22e5e742016-03-30 10:48:07 +0200640 status = gpiochip_add_data(&tps->chip, tps);
David Brownell79966fd2008-02-28 22:07:28 -0800641 if (status < 0)
642 dev_err(&client->dev, "can't add gpiochip, err %d\n",
643 status);
644 else if (board->setup) {
645 status = board->setup(client, board->context);
646 if (status < 0) {
647 dev_dbg(&client->dev,
648 "board %s %s err %d\n",
649 "setup", client->name, status);
650 status = 0;
651 }
652 }
653 }
654
David Brownell72cd7992005-05-24 17:34:51 -0700655 return 0;
David Brownell72cd7992005-05-24 17:34:51 -0700656}
657
Jean Delvare3760f732008-04-29 23:11:40 +0200658static const struct i2c_device_id tps65010_id[] = {
659 { "tps65010", TPS65010 },
660 { "tps65011", TPS65011 },
661 { "tps65012", TPS65012 },
662 { "tps65013", TPS65013 },
Marek Vasutb84ee0b2008-10-14 17:30:04 +0200663 { "tps65014", TPS65011 }, /* tps65011 charging at 6.5V max */
Jean Delvare3760f732008-04-29 23:11:40 +0200664 { }
665};
666MODULE_DEVICE_TABLE(i2c, tps65010_id);
667
David Brownell72cd7992005-05-24 17:34:51 -0700668static struct i2c_driver tps65010_driver = {
Laurent Riffarda9718b02005-11-26 20:36:00 +0100669 .driver = {
Laurent Riffarda9718b02005-11-26 20:36:00 +0100670 .name = "tps65010",
671 },
David Brownell8056c6c2007-10-13 23:56:30 +0200672 .probe = tps65010_probe,
Dmitry Torokhovbb733702015-03-09 10:47:15 -0700673 .remove = tps65010_remove,
Jean Delvare3760f732008-04-29 23:11:40 +0200674 .id_table = tps65010_id,
David Brownell72cd7992005-05-24 17:34:51 -0700675};
676
677/*-------------------------------------------------------------------------*/
678
679/* Draw from VBUS:
680 * 0 mA -- DON'T DRAW (might supply power instead)
681 * 100 mA -- usb unit load (slowest charge rate)
682 * 500 mA -- usb high power (fast battery charge)
683 */
684int tps65010_set_vbus_draw(unsigned mA)
685{
686 unsigned long flags;
687
688 if (!the_tps)
689 return -ENODEV;
690
691 /* assumes non-SMP */
692 local_irq_save(flags);
693 if (mA >= 500)
694 mA = 500;
695 else if (mA >= 100)
696 mA = 100;
697 else
698 mA = 0;
699 the_tps->vbus = mA;
700 if ((the_tps->chgstatus & TPS_CHG_USB)
701 && test_and_set_bit(
702 FLAG_VBUS_CHANGED, &the_tps->flags)) {
703 /* gadget drivers call this in_irq() */
Mark Brownbb3d5932013-08-09 18:25:02 +0100704 queue_delayed_work(system_power_efficient_wq, &the_tps->work,
705 0);
David Brownell72cd7992005-05-24 17:34:51 -0700706 }
707 local_irq_restore(flags);
708
709 return 0;
710}
711EXPORT_SYMBOL(tps65010_set_vbus_draw);
712
713/*-------------------------------------------------------------------------*/
714/* tps65010_set_gpio_out_value parameter:
715 * gpio: GPIO1, GPIO2, GPIO3 or GPIO4
716 * value: LOW or HIGH
717 */
718int tps65010_set_gpio_out_value(unsigned gpio, unsigned value)
719{
720 int status;
721 unsigned defgpio;
722
723 if (!the_tps)
724 return -ENODEV;
725 if ((gpio < GPIO1) || (gpio > GPIO4))
726 return -EINVAL;
727
Ingo Molnar5c085d32006-01-18 23:16:04 +0100728 mutex_lock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700729
David Brownellb5067f82007-10-13 23:56:30 +0200730 defgpio = i2c_smbus_read_byte_data(the_tps->client, TPS_DEFGPIO);
David Brownell72cd7992005-05-24 17:34:51 -0700731
732 /* Configure GPIO for output */
733 defgpio |= 1 << (gpio + 3);
734
735 /* Writing 1 forces a logic 0 on that GPIO and vice versa */
736 switch (value) {
737 case LOW:
738 defgpio |= 1 << (gpio - 1); /* set GPIO low by writing 1 */
739 break;
740 /* case HIGH: */
741 default:
742 defgpio &= ~(1 << (gpio - 1)); /* set GPIO high by writing 0 */
743 break;
744 }
745
David Brownellb5067f82007-10-13 23:56:30 +0200746 status = i2c_smbus_write_byte_data(the_tps->client,
David Brownell72cd7992005-05-24 17:34:51 -0700747 TPS_DEFGPIO, defgpio);
748
749 pr_debug("%s: gpio%dout = %s, defgpio 0x%02x\n", DRIVER_NAME,
750 gpio, value ? "high" : "low",
David Brownellb5067f82007-10-13 23:56:30 +0200751 i2c_smbus_read_byte_data(the_tps->client, TPS_DEFGPIO));
David Brownell72cd7992005-05-24 17:34:51 -0700752
Ingo Molnar5c085d32006-01-18 23:16:04 +0100753 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700754 return status;
755}
756EXPORT_SYMBOL(tps65010_set_gpio_out_value);
757
758/*-------------------------------------------------------------------------*/
759/* tps65010_set_led parameter:
760 * led: LED1 or LED2
761 * mode: ON, OFF or BLINK
762 */
763int tps65010_set_led(unsigned led, unsigned mode)
764{
765 int status;
766 unsigned led_on, led_per, offs;
767
768 if (!the_tps)
769 return -ENODEV;
770
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700771 if (led == LED1)
David Brownell72cd7992005-05-24 17:34:51 -0700772 offs = 0;
773 else {
774 offs = 2;
775 led = LED2;
776 }
777
Ingo Molnar5c085d32006-01-18 23:16:04 +0100778 mutex_lock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700779
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700780 pr_debug("%s: led%i_on 0x%02x\n", DRIVER_NAME, led,
David Brownellb5067f82007-10-13 23:56:30 +0200781 i2c_smbus_read_byte_data(the_tps->client,
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700782 TPS_LED1_ON + offs));
David Brownell72cd7992005-05-24 17:34:51 -0700783
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700784 pr_debug("%s: led%i_per 0x%02x\n", DRIVER_NAME, led,
David Brownellb5067f82007-10-13 23:56:30 +0200785 i2c_smbus_read_byte_data(the_tps->client,
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700786 TPS_LED1_PER + offs));
David Brownell72cd7992005-05-24 17:34:51 -0700787
788 switch (mode) {
789 case OFF:
790 led_on = 1 << 7;
791 led_per = 0 << 7;
792 break;
793 case ON:
794 led_on = 1 << 7;
795 led_per = 1 << 7;
796 break;
797 case BLINK:
798 led_on = 0x30 | (0 << 7);
799 led_per = 0x08 | (1 << 7);
800 break;
801 default:
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700802 printk(KERN_ERR "%s: Wrong mode parameter for set_led()\n",
David Brownell72cd7992005-05-24 17:34:51 -0700803 DRIVER_NAME);
Ingo Molnar5c085d32006-01-18 23:16:04 +0100804 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700805 return -EINVAL;
806 }
807
David Brownellb5067f82007-10-13 23:56:30 +0200808 status = i2c_smbus_write_byte_data(the_tps->client,
David Brownell72cd7992005-05-24 17:34:51 -0700809 TPS_LED1_ON + offs, led_on);
810
811 if (status != 0) {
812 printk(KERN_ERR "%s: Failed to write led%i_on register\n",
813 DRIVER_NAME, led);
Ingo Molnar5c085d32006-01-18 23:16:04 +0100814 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700815 return status;
816 }
817
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700818 pr_debug("%s: led%i_on 0x%02x\n", DRIVER_NAME, led,
David Brownellb5067f82007-10-13 23:56:30 +0200819 i2c_smbus_read_byte_data(the_tps->client, TPS_LED1_ON + offs));
David Brownell72cd7992005-05-24 17:34:51 -0700820
David Brownellb5067f82007-10-13 23:56:30 +0200821 status = i2c_smbus_write_byte_data(the_tps->client,
David Brownell72cd7992005-05-24 17:34:51 -0700822 TPS_LED1_PER + offs, led_per);
823
824 if (status != 0) {
825 printk(KERN_ERR "%s: Failed to write led%i_per register\n",
826 DRIVER_NAME, led);
Ingo Molnar5c085d32006-01-18 23:16:04 +0100827 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700828 return status;
829 }
830
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700831 pr_debug("%s: led%i_per 0x%02x\n", DRIVER_NAME, led,
David Brownellb5067f82007-10-13 23:56:30 +0200832 i2c_smbus_read_byte_data(the_tps->client,
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700833 TPS_LED1_PER + offs));
David Brownell72cd7992005-05-24 17:34:51 -0700834
Ingo Molnar5c085d32006-01-18 23:16:04 +0100835 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700836
837 return status;
838}
839EXPORT_SYMBOL(tps65010_set_led);
840
841/*-------------------------------------------------------------------------*/
842/* tps65010_set_vib parameter:
843 * value: ON or OFF
844 */
845int tps65010_set_vib(unsigned value)
846{
847 int status;
848 unsigned vdcdc2;
849
850 if (!the_tps)
851 return -ENODEV;
852
Ingo Molnar5c085d32006-01-18 23:16:04 +0100853 mutex_lock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700854
David Brownellb5067f82007-10-13 23:56:30 +0200855 vdcdc2 = i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC2);
David Brownell72cd7992005-05-24 17:34:51 -0700856 vdcdc2 &= ~(1 << 1);
857 if (value)
858 vdcdc2 |= (1 << 1);
David Brownellb5067f82007-10-13 23:56:30 +0200859 status = i2c_smbus_write_byte_data(the_tps->client,
David Brownell72cd7992005-05-24 17:34:51 -0700860 TPS_VDCDC2, vdcdc2);
861
862 pr_debug("%s: vibrator %s\n", DRIVER_NAME, value ? "on" : "off");
863
Ingo Molnar5c085d32006-01-18 23:16:04 +0100864 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700865 return status;
866}
867EXPORT_SYMBOL(tps65010_set_vib);
868
869/*-------------------------------------------------------------------------*/
870/* tps65010_set_low_pwr parameter:
871 * mode: ON or OFF
872 */
873int tps65010_set_low_pwr(unsigned mode)
874{
875 int status;
876 unsigned vdcdc1;
877
878 if (!the_tps)
879 return -ENODEV;
880
Ingo Molnar5c085d32006-01-18 23:16:04 +0100881 mutex_lock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700882
883 pr_debug("%s: %s low_pwr, vdcdc1 0x%02x\n", DRIVER_NAME,
884 mode ? "enable" : "disable",
David Brownellb5067f82007-10-13 23:56:30 +0200885 i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1));
David Brownell72cd7992005-05-24 17:34:51 -0700886
David Brownellb5067f82007-10-13 23:56:30 +0200887 vdcdc1 = i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1);
David Brownell72cd7992005-05-24 17:34:51 -0700888
889 switch (mode) {
890 case OFF:
891 vdcdc1 &= ~TPS_ENABLE_LP; /* disable ENABLE_LP bit */
892 break;
893 /* case ON: */
894 default:
895 vdcdc1 |= TPS_ENABLE_LP; /* enable ENABLE_LP bit */
896 break;
897 }
898
David Brownellb5067f82007-10-13 23:56:30 +0200899 status = i2c_smbus_write_byte_data(the_tps->client,
David Brownell72cd7992005-05-24 17:34:51 -0700900 TPS_VDCDC1, vdcdc1);
901
902 if (status != 0)
903 printk(KERN_ERR "%s: Failed to write vdcdc1 register\n",
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700904 DRIVER_NAME);
David Brownell72cd7992005-05-24 17:34:51 -0700905 else
906 pr_debug("%s: vdcdc1 0x%02x\n", DRIVER_NAME,
David Brownellb5067f82007-10-13 23:56:30 +0200907 i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1));
David Brownell72cd7992005-05-24 17:34:51 -0700908
Ingo Molnar5c085d32006-01-18 23:16:04 +0100909 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700910
911 return status;
912}
913EXPORT_SYMBOL(tps65010_set_low_pwr);
914
915/*-------------------------------------------------------------------------*/
916/* tps65010_config_vregs1 parameter:
917 * value to be written to VREGS1 register
918 * Note: The complete register is written, set all bits you need
919 */
920int tps65010_config_vregs1(unsigned value)
921{
922 int status;
923
924 if (!the_tps)
925 return -ENODEV;
926
Ingo Molnar5c085d32006-01-18 23:16:04 +0100927 mutex_lock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700928
929 pr_debug("%s: vregs1 0x%02x\n", DRIVER_NAME,
David Brownellb5067f82007-10-13 23:56:30 +0200930 i2c_smbus_read_byte_data(the_tps->client, TPS_VREGS1));
David Brownell72cd7992005-05-24 17:34:51 -0700931
David Brownellb5067f82007-10-13 23:56:30 +0200932 status = i2c_smbus_write_byte_data(the_tps->client,
David Brownell72cd7992005-05-24 17:34:51 -0700933 TPS_VREGS1, value);
934
935 if (status != 0)
936 printk(KERN_ERR "%s: Failed to write vregs1 register\n",
david-b@pacbell.net65fc50e2005-06-29 07:13:00 -0700937 DRIVER_NAME);
David Brownell72cd7992005-05-24 17:34:51 -0700938 else
939 pr_debug("%s: vregs1 0x%02x\n", DRIVER_NAME,
David Brownellb5067f82007-10-13 23:56:30 +0200940 i2c_smbus_read_byte_data(the_tps->client, TPS_VREGS1));
David Brownell72cd7992005-05-24 17:34:51 -0700941
Ingo Molnar5c085d32006-01-18 23:16:04 +0100942 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700943
944 return status;
945}
946EXPORT_SYMBOL(tps65010_config_vregs1);
947
Ben Dooksb45440c2009-11-02 16:52:30 +0000948int tps65010_config_vdcdc2(unsigned value)
949{
950 struct i2c_client *c;
951 int status;
952
953 if (!the_tps)
954 return -ENODEV;
955
956 c = the_tps->client;
957 mutex_lock(&the_tps->lock);
958
959 pr_debug("%s: vdcdc2 0x%02x\n", DRIVER_NAME,
960 i2c_smbus_read_byte_data(c, TPS_VDCDC2));
961
962 status = i2c_smbus_write_byte_data(c, TPS_VDCDC2, value);
963
964 if (status != 0)
965 printk(KERN_ERR "%s: Failed to write vdcdc2 register\n",
966 DRIVER_NAME);
967 else
968 pr_debug("%s: vregs1 0x%02x\n", DRIVER_NAME,
969 i2c_smbus_read_byte_data(c, TPS_VDCDC2));
970
971 mutex_unlock(&the_tps->lock);
972 return status;
973}
974EXPORT_SYMBOL(tps65010_config_vdcdc2);
975
David Brownell72cd7992005-05-24 17:34:51 -0700976/*-------------------------------------------------------------------------*/
977/* tps65013_set_low_pwr parameter:
978 * mode: ON or OFF
979 */
980
981/* FIXME: Assumes AC or USB power is present. Setting AUA bit is not
982 required if power supply is through a battery */
983
984int tps65013_set_low_pwr(unsigned mode)
985{
986 int status;
987 unsigned vdcdc1, chgconfig;
988
989 if (!the_tps || the_tps->por)
990 return -ENODEV;
991
Ingo Molnar5c085d32006-01-18 23:16:04 +0100992 mutex_lock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -0700993
994 pr_debug("%s: %s low_pwr, chgconfig 0x%02x vdcdc1 0x%02x\n",
995 DRIVER_NAME,
996 mode ? "enable" : "disable",
David Brownellb5067f82007-10-13 23:56:30 +0200997 i2c_smbus_read_byte_data(the_tps->client, TPS_CHGCONFIG),
998 i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1));
David Brownell72cd7992005-05-24 17:34:51 -0700999
David Brownellb5067f82007-10-13 23:56:30 +02001000 chgconfig = i2c_smbus_read_byte_data(the_tps->client, TPS_CHGCONFIG);
1001 vdcdc1 = i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1);
David Brownell72cd7992005-05-24 17:34:51 -07001002
1003 switch (mode) {
1004 case OFF:
1005 chgconfig &= ~TPS65013_AUA; /* disable AUA bit */
1006 vdcdc1 &= ~TPS_ENABLE_LP; /* disable ENABLE_LP bit */
1007 break;
1008 /* case ON: */
1009 default:
1010 chgconfig |= TPS65013_AUA; /* enable AUA bit */
1011 vdcdc1 |= TPS_ENABLE_LP; /* enable ENABLE_LP bit */
1012 break;
1013 }
1014
David Brownellb5067f82007-10-13 23:56:30 +02001015 status = i2c_smbus_write_byte_data(the_tps->client,
David Brownell72cd7992005-05-24 17:34:51 -07001016 TPS_CHGCONFIG, chgconfig);
1017 if (status != 0) {
1018 printk(KERN_ERR "%s: Failed to write chconfig register\n",
1019 DRIVER_NAME);
Ingo Molnar5c085d32006-01-18 23:16:04 +01001020 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -07001021 return status;
1022 }
1023
David Brownellb5067f82007-10-13 23:56:30 +02001024 chgconfig = i2c_smbus_read_byte_data(the_tps->client, TPS_CHGCONFIG);
David Brownell72cd7992005-05-24 17:34:51 -07001025 the_tps->chgconf = chgconfig;
1026 show_chgconfig(0, "chgconf", chgconfig);
1027
David Brownellb5067f82007-10-13 23:56:30 +02001028 status = i2c_smbus_write_byte_data(the_tps->client,
David Brownell72cd7992005-05-24 17:34:51 -07001029 TPS_VDCDC1, vdcdc1);
1030
1031 if (status != 0)
1032 printk(KERN_ERR "%s: Failed to write vdcdc1 register\n",
1033 DRIVER_NAME);
1034 else
1035 pr_debug("%s: vdcdc1 0x%02x\n", DRIVER_NAME,
David Brownellb5067f82007-10-13 23:56:30 +02001036 i2c_smbus_read_byte_data(the_tps->client, TPS_VDCDC1));
David Brownell72cd7992005-05-24 17:34:51 -07001037
Ingo Molnar5c085d32006-01-18 23:16:04 +01001038 mutex_unlock(&the_tps->lock);
David Brownell72cd7992005-05-24 17:34:51 -07001039
1040 return status;
1041}
1042EXPORT_SYMBOL(tps65013_set_low_pwr);
1043
1044/*-------------------------------------------------------------------------*/
1045
1046static int __init tps_init(void)
1047{
Aaro Koskinendbc352b2016-01-11 21:46:49 +02001048 return i2c_add_driver(&tps65010_driver);
David Brownell72cd7992005-05-24 17:34:51 -07001049}
1050/* NOTE: this MUST be initialized before the other parts of the system
1051 * that rely on it ... but after the i2c bus on which this relies.
1052 * That is, much earlier than on PC-type systems, which don't often use
1053 * I2C as a core system bus.
1054 */
1055subsys_initcall(tps_init);
1056
1057static void __exit tps_exit(void)
1058{
1059 i2c_del_driver(&tps65010_driver);
1060}
1061module_exit(tps_exit);
1062