GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / power / pcf50633-charger.c
blob066f994e6fe5ac4b74dda65ba658450b283cbe9f
1 /* NXP PCF50633 Main Battery Charger Driver
3 * (C) 2006-2008 by Openmoko, Inc.
4 * Author: Balaji Rao <balajirrao@openmoko.org>
5 * All rights reserved.
7 * Broken down from monstrous PCF50633 driver mainly by
8 * Harald Welte, Andy Green and Werner Almesberger
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/slab.h>
20 #include <linux/init.h>
21 #include <linux/types.h>
22 #include <linux/device.h>
23 #include <linux/sysfs.h>
24 #include <linux/platform_device.h>
25 #include <linux/power_supply.h>
27 #include <linux/mfd/pcf50633/core.h>
28 #include <linux/mfd/pcf50633/mbc.h>
30 struct pcf50633_mbc {
31 struct pcf50633 *pcf;
33 int adapter_online;
34 int usb_online;
36 struct power_supply usb;
37 struct power_supply adapter;
38 struct power_supply ac;
41 int pcf50633_mbc_usb_curlim_set(struct pcf50633 *pcf, int ma)
43 struct pcf50633_mbc *mbc = platform_get_drvdata(pcf->mbc_pdev);
44 int ret = 0;
45 u8 bits;
46 int charging_start = 1;
47 u8 mbcs2, chgmod;
48 unsigned int mbcc5;
50 if (ma >= 1000) {
51 bits = PCF50633_MBCC7_USB_1000mA;
52 ma = 1000;
53 } else if (ma >= 500) {
54 bits = PCF50633_MBCC7_USB_500mA;
55 ma = 500;
56 } else if (ma >= 100) {
57 bits = PCF50633_MBCC7_USB_100mA;
58 ma = 100;
59 } else {
60 bits = PCF50633_MBCC7_USB_SUSPEND;
61 charging_start = 0;
62 ma = 0;
65 ret = pcf50633_reg_set_bit_mask(pcf, PCF50633_REG_MBCC7,
66 PCF50633_MBCC7_USB_MASK, bits);
67 if (ret)
68 dev_err(pcf->dev, "error setting usb curlim to %d mA\n", ma);
69 else
70 dev_info(pcf->dev, "usb curlim to %d mA\n", ma);
73 * We limit the charging current to be the USB current limit.
74 * The reason is that on pcf50633, when it enters PMU Standby mode,
75 * which it does when the device goes "off", the USB current limit
76 * reverts to the variant default. In at least one common case, that
77 * default is 500mA. By setting the charging current to be the same
78 * as the USB limit we set here before PMU standby, we enforce it only
79 * using the correct amount of current even when the USB current limit
80 * gets reset to the wrong thing
83 if (mbc->pcf->pdata->charger_reference_current_ma) {
84 mbcc5 = (ma << 8) / mbc->pcf->pdata->charger_reference_current_ma;
85 if (mbcc5 > 255)
86 mbcc5 = 255;
87 pcf50633_reg_write(mbc->pcf, PCF50633_REG_MBCC5, mbcc5);
90 mbcs2 = pcf50633_reg_read(mbc->pcf, PCF50633_REG_MBCS2);
91 chgmod = (mbcs2 & PCF50633_MBCS2_MBC_MASK);
93 /* If chgmod == BATFULL, setting chgena has no effect.
94 * Datasheet says we need to set resume instead but when autoresume is
95 * used resume doesn't work. Clear and set chgena instead.
97 if (chgmod != PCF50633_MBCS2_MBC_BAT_FULL)
98 pcf50633_reg_set_bit_mask(pcf, PCF50633_REG_MBCC1,
99 PCF50633_MBCC1_CHGENA, PCF50633_MBCC1_CHGENA);
100 else {
101 pcf50633_reg_clear_bits(pcf, PCF50633_REG_MBCC1,
102 PCF50633_MBCC1_CHGENA);
103 pcf50633_reg_set_bit_mask(pcf, PCF50633_REG_MBCC1,
104 PCF50633_MBCC1_CHGENA, PCF50633_MBCC1_CHGENA);
107 power_supply_changed(&mbc->usb);
109 return ret;
111 EXPORT_SYMBOL_GPL(pcf50633_mbc_usb_curlim_set);
113 int pcf50633_mbc_get_status(struct pcf50633 *pcf)
115 struct pcf50633_mbc *mbc = platform_get_drvdata(pcf->mbc_pdev);
116 int status = 0;
117 u8 chgmod;
119 if (!mbc)
120 return 0;
122 chgmod = pcf50633_reg_read(mbc->pcf, PCF50633_REG_MBCS2)
123 & PCF50633_MBCS2_MBC_MASK;
125 if (mbc->usb_online)
126 status |= PCF50633_MBC_USB_ONLINE;
127 if (chgmod == PCF50633_MBCS2_MBC_USB_PRE ||
128 chgmod == PCF50633_MBCS2_MBC_USB_PRE_WAIT ||
129 chgmod == PCF50633_MBCS2_MBC_USB_FAST ||
130 chgmod == PCF50633_MBCS2_MBC_USB_FAST_WAIT)
131 status |= PCF50633_MBC_USB_ACTIVE;
132 if (mbc->adapter_online)
133 status |= PCF50633_MBC_ADAPTER_ONLINE;
134 if (chgmod == PCF50633_MBCS2_MBC_ADP_PRE ||
135 chgmod == PCF50633_MBCS2_MBC_ADP_PRE_WAIT ||
136 chgmod == PCF50633_MBCS2_MBC_ADP_FAST ||
137 chgmod == PCF50633_MBCS2_MBC_ADP_FAST_WAIT)
138 status |= PCF50633_MBC_ADAPTER_ACTIVE;
140 return status;
142 EXPORT_SYMBOL_GPL(pcf50633_mbc_get_status);
144 int pcf50633_mbc_get_usb_online_status(struct pcf50633 *pcf)
146 struct pcf50633_mbc *mbc = platform_get_drvdata(pcf->mbc_pdev);
148 if (!mbc)
149 return 0;
151 return mbc->usb_online;
153 EXPORT_SYMBOL_GPL(pcf50633_mbc_get_usb_online_status);
155 static ssize_t
156 show_chgmode(struct device *dev, struct device_attribute *attr, char *buf)
158 struct pcf50633_mbc *mbc = dev_get_drvdata(dev);
160 u8 mbcs2 = pcf50633_reg_read(mbc->pcf, PCF50633_REG_MBCS2);
161 u8 chgmod = (mbcs2 & PCF50633_MBCS2_MBC_MASK);
163 return sprintf(buf, "%d\n", chgmod);
165 static DEVICE_ATTR(chgmode, S_IRUGO, show_chgmode, NULL);
167 static ssize_t
168 show_usblim(struct device *dev, struct device_attribute *attr, char *buf)
170 struct pcf50633_mbc *mbc = dev_get_drvdata(dev);
171 u8 usblim = pcf50633_reg_read(mbc->pcf, PCF50633_REG_MBCC7) &
172 PCF50633_MBCC7_USB_MASK;
173 unsigned int ma;
175 if (usblim == PCF50633_MBCC7_USB_1000mA)
176 ma = 1000;
177 else if (usblim == PCF50633_MBCC7_USB_500mA)
178 ma = 500;
179 else if (usblim == PCF50633_MBCC7_USB_100mA)
180 ma = 100;
181 else
182 ma = 0;
184 return sprintf(buf, "%u\n", ma);
187 static ssize_t set_usblim(struct device *dev,
188 struct device_attribute *attr, const char *buf, size_t count)
190 struct pcf50633_mbc *mbc = dev_get_drvdata(dev);
191 unsigned long ma;
192 int ret;
194 ret = strict_strtoul(buf, 10, &ma);
195 if (ret)
196 return -EINVAL;
198 pcf50633_mbc_usb_curlim_set(mbc->pcf, ma);
200 return count;
203 static DEVICE_ATTR(usb_curlim, S_IRUGO | S_IWUSR, show_usblim, set_usblim);
205 static ssize_t
206 show_chglim(struct device *dev, struct device_attribute *attr, char *buf)
208 struct pcf50633_mbc *mbc = dev_get_drvdata(dev);
209 u8 mbcc5 = pcf50633_reg_read(mbc->pcf, PCF50633_REG_MBCC5);
210 unsigned int ma;
212 if (!mbc->pcf->pdata->charger_reference_current_ma)
213 return -ENODEV;
215 ma = (mbc->pcf->pdata->charger_reference_current_ma * mbcc5) >> 8;
217 return sprintf(buf, "%u\n", ma);
220 static ssize_t set_chglim(struct device *dev,
221 struct device_attribute *attr, const char *buf, size_t count)
223 struct pcf50633_mbc *mbc = dev_get_drvdata(dev);
224 unsigned long ma;
225 unsigned int mbcc5;
226 int ret;
228 if (!mbc->pcf->pdata->charger_reference_current_ma)
229 return -ENODEV;
231 ret = strict_strtoul(buf, 10, &ma);
232 if (ret)
233 return -EINVAL;
235 mbcc5 = (ma << 8) / mbc->pcf->pdata->charger_reference_current_ma;
236 if (mbcc5 > 255)
237 mbcc5 = 255;
238 pcf50633_reg_write(mbc->pcf, PCF50633_REG_MBCC5, mbcc5);
240 return count;
244 * This attribute allows to change MBC charging limit on the fly
245 * independently of usb current limit. It also gets set automatically every
246 * time usb current limit is changed.
248 static DEVICE_ATTR(chg_curlim, S_IRUGO | S_IWUSR, show_chglim, set_chglim);
250 static struct attribute *pcf50633_mbc_sysfs_entries[] = {
251 &dev_attr_chgmode.attr,
252 &dev_attr_usb_curlim.attr,
253 &dev_attr_chg_curlim.attr,
254 NULL,
257 static struct attribute_group mbc_attr_group = {
258 .name = NULL, /* put in device directory */
259 .attrs = pcf50633_mbc_sysfs_entries,
262 static void
263 pcf50633_mbc_irq_handler(int irq, void *data)
265 struct pcf50633_mbc *mbc = data;
267 /* USB */
268 if (irq == PCF50633_IRQ_USBINS) {
269 mbc->usb_online = 1;
270 } else if (irq == PCF50633_IRQ_USBREM) {
271 mbc->usb_online = 0;
272 pcf50633_mbc_usb_curlim_set(mbc->pcf, 0);
275 /* Adapter */
276 if (irq == PCF50633_IRQ_ADPINS)
277 mbc->adapter_online = 1;
278 else if (irq == PCF50633_IRQ_ADPREM)
279 mbc->adapter_online = 0;
281 power_supply_changed(&mbc->ac);
282 power_supply_changed(&mbc->usb);
283 power_supply_changed(&mbc->adapter);
285 if (mbc->pcf->pdata->mbc_event_callback)
286 mbc->pcf->pdata->mbc_event_callback(mbc->pcf, irq);
289 static int adapter_get_property(struct power_supply *psy,
290 enum power_supply_property psp,
291 union power_supply_propval *val)
293 struct pcf50633_mbc *mbc = container_of(psy,
294 struct pcf50633_mbc, adapter);
295 int ret = 0;
297 switch (psp) {
298 case POWER_SUPPLY_PROP_ONLINE:
299 val->intval = mbc->adapter_online;
300 break;
301 default:
302 ret = -EINVAL;
303 break;
305 return ret;
308 static int usb_get_property(struct power_supply *psy,
309 enum power_supply_property psp,
310 union power_supply_propval *val)
312 struct pcf50633_mbc *mbc = container_of(psy, struct pcf50633_mbc, usb);
313 int ret = 0;
314 u8 usblim = pcf50633_reg_read(mbc->pcf, PCF50633_REG_MBCC7) &
315 PCF50633_MBCC7_USB_MASK;
317 switch (psp) {
318 case POWER_SUPPLY_PROP_ONLINE:
319 val->intval = mbc->usb_online &&
320 (usblim <= PCF50633_MBCC7_USB_500mA);
321 break;
322 default:
323 ret = -EINVAL;
324 break;
326 return ret;
329 static int ac_get_property(struct power_supply *psy,
330 enum power_supply_property psp,
331 union power_supply_propval *val)
333 struct pcf50633_mbc *mbc = container_of(psy, struct pcf50633_mbc, ac);
334 int ret = 0;
335 u8 usblim = pcf50633_reg_read(mbc->pcf, PCF50633_REG_MBCC7) &
336 PCF50633_MBCC7_USB_MASK;
338 switch (psp) {
339 case POWER_SUPPLY_PROP_ONLINE:
340 val->intval = mbc->usb_online &&
341 (usblim == PCF50633_MBCC7_USB_1000mA);
342 break;
343 default:
344 ret = -EINVAL;
345 break;
347 return ret;
350 static enum power_supply_property power_props[] = {
351 POWER_SUPPLY_PROP_ONLINE,
354 static const u8 mbc_irq_handlers[] = {
355 PCF50633_IRQ_ADPINS,
356 PCF50633_IRQ_ADPREM,
357 PCF50633_IRQ_USBINS,
358 PCF50633_IRQ_USBREM,
359 PCF50633_IRQ_BATFULL,
360 PCF50633_IRQ_CHGHALT,
361 PCF50633_IRQ_THLIMON,
362 PCF50633_IRQ_THLIMOFF,
363 PCF50633_IRQ_USBLIMON,
364 PCF50633_IRQ_USBLIMOFF,
365 PCF50633_IRQ_LOWSYS,
366 PCF50633_IRQ_LOWBAT,
369 static int __devinit pcf50633_mbc_probe(struct platform_device *pdev)
371 struct pcf50633_mbc *mbc;
372 int ret;
373 int i;
374 u8 mbcs1;
376 mbc = kzalloc(sizeof(*mbc), GFP_KERNEL);
377 if (!mbc)
378 return -ENOMEM;
380 platform_set_drvdata(pdev, mbc);
381 mbc->pcf = dev_to_pcf50633(pdev->dev.parent);
383 /* Set up IRQ handlers */
384 for (i = 0; i < ARRAY_SIZE(mbc_irq_handlers); i++)
385 pcf50633_register_irq(mbc->pcf, mbc_irq_handlers[i],
386 pcf50633_mbc_irq_handler, mbc);
388 /* Create power supplies */
389 mbc->adapter.name = "adapter";
390 mbc->adapter.type = POWER_SUPPLY_TYPE_MAINS;
391 mbc->adapter.properties = power_props;
392 mbc->adapter.num_properties = ARRAY_SIZE(power_props);
393 mbc->adapter.get_property = &adapter_get_property;
394 mbc->adapter.supplied_to = mbc->pcf->pdata->batteries;
395 mbc->adapter.num_supplicants = mbc->pcf->pdata->num_batteries;
397 mbc->usb.name = "usb";
398 mbc->usb.type = POWER_SUPPLY_TYPE_USB;
399 mbc->usb.properties = power_props;
400 mbc->usb.num_properties = ARRAY_SIZE(power_props);
401 mbc->usb.get_property = usb_get_property;
402 mbc->usb.supplied_to = mbc->pcf->pdata->batteries;
403 mbc->usb.num_supplicants = mbc->pcf->pdata->num_batteries;
405 mbc->ac.name = "ac";
406 mbc->ac.type = POWER_SUPPLY_TYPE_MAINS;
407 mbc->ac.properties = power_props;
408 mbc->ac.num_properties = ARRAY_SIZE(power_props);
409 mbc->ac.get_property = ac_get_property;
410 mbc->ac.supplied_to = mbc->pcf->pdata->batteries;
411 mbc->ac.num_supplicants = mbc->pcf->pdata->num_batteries;
413 ret = power_supply_register(&pdev->dev, &mbc->adapter);
414 if (ret) {
415 dev_err(mbc->pcf->dev, "failed to register adapter\n");
416 kfree(mbc);
417 return ret;
420 ret = power_supply_register(&pdev->dev, &mbc->usb);
421 if (ret) {
422 dev_err(mbc->pcf->dev, "failed to register usb\n");
423 power_supply_unregister(&mbc->adapter);
424 kfree(mbc);
425 return ret;
428 ret = power_supply_register(&pdev->dev, &mbc->ac);
429 if (ret) {
430 dev_err(mbc->pcf->dev, "failed to register ac\n");
431 power_supply_unregister(&mbc->adapter);
432 power_supply_unregister(&mbc->usb);
433 kfree(mbc);
434 return ret;
437 ret = sysfs_create_group(&pdev->dev.kobj, &mbc_attr_group);
438 if (ret)
439 dev_err(mbc->pcf->dev, "failed to create sysfs entries\n");
441 mbcs1 = pcf50633_reg_read(mbc->pcf, PCF50633_REG_MBCS1);
442 if (mbcs1 & PCF50633_MBCS1_USBPRES)
443 pcf50633_mbc_irq_handler(PCF50633_IRQ_USBINS, mbc);
444 if (mbcs1 & PCF50633_MBCS1_ADAPTPRES)
445 pcf50633_mbc_irq_handler(PCF50633_IRQ_ADPINS, mbc);
447 return 0;
450 static int __devexit pcf50633_mbc_remove(struct platform_device *pdev)
452 struct pcf50633_mbc *mbc = platform_get_drvdata(pdev);
453 int i;
455 /* Remove IRQ handlers */
456 for (i = 0; i < ARRAY_SIZE(mbc_irq_handlers); i++)
457 pcf50633_free_irq(mbc->pcf, mbc_irq_handlers[i]);
459 power_supply_unregister(&mbc->usb);
460 power_supply_unregister(&mbc->adapter);
461 power_supply_unregister(&mbc->ac);
463 kfree(mbc);
465 return 0;
468 static struct platform_driver pcf50633_mbc_driver = {
469 .driver = {
470 .name = "pcf50633-mbc",
472 .probe = pcf50633_mbc_probe,
473 .remove = __devexit_p(pcf50633_mbc_remove),
476 static int __init pcf50633_mbc_init(void)
478 return platform_driver_register(&pcf50633_mbc_driver);
480 module_init(pcf50633_mbc_init);
482 static void __exit pcf50633_mbc_exit(void)
484 platform_driver_unregister(&pcf50633_mbc_driver);
486 module_exit(pcf50633_mbc_exit);
488 MODULE_AUTHOR("Balaji Rao <balajirrao@openmoko.org>");
489 MODULE_DESCRIPTION("PCF50633 mbc driver");
490 MODULE_LICENSE("GPL");
491 MODULE_ALIAS("platform:pcf50633-mbc");