2 * max8997_charger.c - Power supply consumer driver for the Maxim 8997/8966
4 * Copyright (C) 2011 Samsung Electronics
5 * MyungJoo Ham <myungjoo.ham@samsung.com>
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.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/err.h>
23 #include <linux/module.h>
24 #include <linux/slab.h>
25 #include <linux/platform_device.h>
26 #include <linux/power_supply.h>
27 #include <linux/mfd/max8997.h>
28 #include <linux/mfd/max8997-private.h>
32 struct max8997_dev *iodev;
33 struct power_supply battery;
36 static enum power_supply_property max8997_battery_props[] = {
37 POWER_SUPPLY_PROP_STATUS, /* "FULL" or "NOT FULL" only. */
38 POWER_SUPPLY_PROP_PRESENT, /* the presence of battery */
39 POWER_SUPPLY_PROP_ONLINE, /* charger is active or not */
42 /* Note that the charger control is done by a current regulator "CHARGER" */
43 static int max8997_battery_get_property(struct power_supply *psy,
44 enum power_supply_property psp,
45 union power_supply_propval *val)
47 struct charger_data *charger = container_of(psy,
48 struct charger_data, battery);
49 struct i2c_client *i2c = charger->iodev->i2c;
54 case POWER_SUPPLY_PROP_STATUS:
56 ret = max8997_read_reg(i2c, MAX8997_REG_STATUS4, ®);
59 if ((reg & (1 << 0)) == 0x1)
60 val->intval = POWER_SUPPLY_STATUS_FULL;
63 case POWER_SUPPLY_PROP_PRESENT:
65 ret = max8997_read_reg(i2c, MAX8997_REG_STATUS4, ®);
68 if ((reg & (1 << 2)) == 0x0)
72 case POWER_SUPPLY_PROP_ONLINE:
74 ret = max8997_read_reg(i2c, MAX8997_REG_STATUS4, ®);
89 static int max8997_battery_probe(struct platform_device *pdev)
92 struct charger_data *charger;
93 struct max8997_dev *iodev = dev_get_drvdata(pdev->dev.parent);
94 struct max8997_platform_data *pdata = dev_get_platdata(iodev->dev);
100 int val = (pdata->eoc_mA - 50) / 10;
106 ret = max8997_update_reg(iodev->i2c,
107 MAX8997_REG_MBCCTRL5, val, 0xf);
109 dev_err(&pdev->dev, "Cannot use i2c bus.\n");
114 switch (pdata->timeout) {
116 ret = max8997_update_reg(iodev->i2c, MAX8997_REG_MBCCTRL1,
120 ret = max8997_update_reg(iodev->i2c, MAX8997_REG_MBCCTRL1,
124 ret = max8997_update_reg(iodev->i2c, MAX8997_REG_MBCCTRL1,
128 ret = max8997_update_reg(iodev->i2c, MAX8997_REG_MBCCTRL1,
132 dev_err(&pdev->dev, "incorrect timeout value (%d)\n",
137 dev_err(&pdev->dev, "Cannot use i2c bus.\n");
141 charger = devm_kzalloc(&pdev->dev, sizeof(struct charger_data),
143 if (charger == NULL) {
144 dev_err(&pdev->dev, "Cannot allocate memory.\n");
148 platform_set_drvdata(pdev, charger);
150 charger->battery.name = "max8997_pmic";
151 charger->battery.type = POWER_SUPPLY_TYPE_BATTERY;
152 charger->battery.get_property = max8997_battery_get_property;
153 charger->battery.properties = max8997_battery_props;
154 charger->battery.num_properties = ARRAY_SIZE(max8997_battery_props);
156 charger->dev = &pdev->dev;
157 charger->iodev = iodev;
159 ret = power_supply_register(&pdev->dev, &charger->battery);
161 dev_err(&pdev->dev, "failed: power supply register\n");
168 static int max8997_battery_remove(struct platform_device *pdev)
170 struct charger_data *charger = platform_get_drvdata(pdev);
172 power_supply_unregister(&charger->battery);
176 static const struct platform_device_id max8997_battery_id[] = {
177 { "max8997-battery", 0 },
181 static struct platform_driver max8997_battery_driver = {
183 .name = "max8997-battery",
184 .owner = THIS_MODULE,
186 .probe = max8997_battery_probe,
187 .remove = max8997_battery_remove,
188 .id_table = max8997_battery_id,
191 static int __init max8997_battery_init(void)
193 return platform_driver_register(&max8997_battery_driver);
195 subsys_initcall(max8997_battery_init);
197 static void __exit max8997_battery_cleanup(void)
199 platform_driver_unregister(&max8997_battery_driver);
201 module_exit(max8997_battery_cleanup);
203 MODULE_DESCRIPTION("MAXIM 8997/8966 battery control driver");
204 MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>");
205 MODULE_LICENSE("GPL");