2 * Battery class driver for Apple PMU
4 * Copyright © 2006 David Woodhouse <dwmw2@infradead.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/module.h>
12 #include <linux/platform_device.h>
13 #include <linux/err.h>
14 #include <linux/power_supply.h>
15 #include <linux/adb.h>
16 #include <linux/pmu.h>
17 #include <linux/slab.h>
19 static struct pmu_battery_dev {
20 struct power_supply *bat;
21 struct power_supply_desc bat_desc;
22 struct pmu_battery_info *pbi;
25 } *pbats[PMU_MAX_BATTERIES];
27 #define to_pmu_battery_dev(x) power_supply_get_drvdata(x)
29 /*********************************************************************
31 *********************************************************************/
33 static int pmu_get_ac_prop(struct power_supply *psy,
34 enum power_supply_property psp,
35 union power_supply_propval *val)
38 case POWER_SUPPLY_PROP_ONLINE:
39 val->intval = (!!(pmu_power_flags & PMU_PWR_AC_PRESENT)) ||
40 (pmu_battery_count == 0);
49 static enum power_supply_property pmu_ac_props[] = {
50 POWER_SUPPLY_PROP_ONLINE,
53 static const struct power_supply_desc pmu_ac_desc = {
55 .type = POWER_SUPPLY_TYPE_MAINS,
56 .properties = pmu_ac_props,
57 .num_properties = ARRAY_SIZE(pmu_ac_props),
58 .get_property = pmu_get_ac_prop,
61 static struct power_supply *pmu_ac;
63 /*********************************************************************
65 *********************************************************************/
67 static char *pmu_batt_types[] = {
68 "Smart", "Comet", "Hooper", "Unknown"
71 static char *pmu_bat_get_model_name(struct pmu_battery_info *pbi)
73 switch (pbi->flags & PMU_BATT_TYPE_MASK) {
74 case PMU_BATT_TYPE_SMART:
75 return pmu_batt_types[0];
76 case PMU_BATT_TYPE_COMET:
77 return pmu_batt_types[1];
78 case PMU_BATT_TYPE_HOOPER:
79 return pmu_batt_types[2];
82 return pmu_batt_types[3];
85 static int pmu_bat_get_property(struct power_supply *psy,
86 enum power_supply_property psp,
87 union power_supply_propval *val)
89 struct pmu_battery_dev *pbat = to_pmu_battery_dev(psy);
90 struct pmu_battery_info *pbi = pbat->pbi;
93 case POWER_SUPPLY_PROP_STATUS:
94 if (pbi->flags & PMU_BATT_CHARGING)
95 val->intval = POWER_SUPPLY_STATUS_CHARGING;
96 else if (pmu_power_flags & PMU_PWR_AC_PRESENT)
97 val->intval = POWER_SUPPLY_STATUS_FULL;
99 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
101 case POWER_SUPPLY_PROP_PRESENT:
102 val->intval = !!(pbi->flags & PMU_BATT_PRESENT);
104 case POWER_SUPPLY_PROP_MODEL_NAME:
105 val->strval = pmu_bat_get_model_name(pbi);
107 case POWER_SUPPLY_PROP_ENERGY_AVG:
108 val->intval = pbi->charge * 1000; /* mWh -> µWh */
110 case POWER_SUPPLY_PROP_ENERGY_FULL:
111 val->intval = pbi->max_charge * 1000; /* mWh -> µWh */
113 case POWER_SUPPLY_PROP_CURRENT_AVG:
114 val->intval = pbi->amperage * 1000; /* mA -> µA */
116 case POWER_SUPPLY_PROP_VOLTAGE_AVG:
117 val->intval = pbi->voltage * 1000; /* mV -> µV */
119 case POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG:
120 val->intval = pbi->time_remaining;
129 static enum power_supply_property pmu_bat_props[] = {
130 POWER_SUPPLY_PROP_STATUS,
131 POWER_SUPPLY_PROP_PRESENT,
132 POWER_SUPPLY_PROP_MODEL_NAME,
133 POWER_SUPPLY_PROP_ENERGY_AVG,
134 POWER_SUPPLY_PROP_ENERGY_FULL,
135 POWER_SUPPLY_PROP_CURRENT_AVG,
136 POWER_SUPPLY_PROP_VOLTAGE_AVG,
137 POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG,
140 /*********************************************************************
142 *********************************************************************/
144 static struct platform_device *bat_pdev;
146 static int __init pmu_bat_init(void)
151 bat_pdev = platform_device_register_simple("pmu-battery",
153 if (IS_ERR(bat_pdev)) {
154 ret = PTR_ERR(bat_pdev);
155 goto pdev_register_failed;
158 pmu_ac = power_supply_register(&bat_pdev->dev, &pmu_ac_desc, NULL);
159 if (IS_ERR(pmu_ac)) {
160 ret = PTR_ERR(pmu_ac);
161 goto ac_register_failed;
164 for (i = 0; i < pmu_battery_count; i++) {
165 struct power_supply_config psy_cfg = {};
166 struct pmu_battery_dev *pbat = kzalloc(sizeof(*pbat),
171 sprintf(pbat->name, "PMU_battery_%d", i);
172 pbat->bat_desc.name = pbat->name;
173 pbat->bat_desc.properties = pmu_bat_props;
174 pbat->bat_desc.num_properties = ARRAY_SIZE(pmu_bat_props);
175 pbat->bat_desc.get_property = pmu_bat_get_property;
176 pbat->pbi = &pmu_batteries[i];
177 psy_cfg.drv_data = pbat;
179 pbat->bat = power_supply_register(&bat_pdev->dev,
182 if (IS_ERR(pbat->bat)) {
183 ret = PTR_ERR(pbat->bat);
185 goto battery_register_failed;
192 battery_register_failed:
196 power_supply_unregister(pbats[i]->bat);
199 power_supply_unregister(pmu_ac);
201 platform_device_unregister(bat_pdev);
202 pdev_register_failed:
207 static void __exit pmu_bat_exit(void)
211 for (i = 0; i < PMU_MAX_BATTERIES; i++) {
214 power_supply_unregister(pbats[i]->bat);
217 power_supply_unregister(pmu_ac);
218 platform_device_unregister(bat_pdev);
221 module_init(pmu_bat_init);
222 module_exit(pmu_bat_exit);
224 MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
225 MODULE_LICENSE("GPL");
226 MODULE_DESCRIPTION("PMU battery driver");