Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 2 | * battery.c - ACPI Battery Driver (Revision: 2.0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 4 | * Copyright (C) 2007 Alexey Starikovskiy <astarikovskiy@suse.de> |
| 5 | * Copyright (C) 2004-2007 Vladimir Lebedev <vladimir.p.lebedev@intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com> |
| 7 | * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> |
| 8 | * |
| 9 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by |
| 13 | * the Free Software Foundation; either version 2 of the License, or (at |
| 14 | * your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, but |
| 17 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 19 | * General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License along |
| 22 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 23 | * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. |
| 24 | * |
| 25 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 26 | */ |
| 27 | |
| 28 | #include <linux/kernel.h> |
| 29 | #include <linux/module.h> |
| 30 | #include <linux/init.h> |
| 31 | #include <linux/types.h> |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 32 | #include <linux/jiffies.h> |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 33 | |
| 34 | #ifdef CONFIG_ACPI_PROCFS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/proc_fs.h> |
| 36 | #include <linux/seq_file.h> |
| 37 | #include <asm/uaccess.h> |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 38 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
| 40 | #include <acpi/acpi_bus.h> |
| 41 | #include <acpi/acpi_drivers.h> |
| 42 | |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 43 | #include <linux/power_supply.h> |
| 44 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF |
| 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #define ACPI_BATTERY_COMPONENT 0x00040000 |
| 48 | #define ACPI_BATTERY_CLASS "battery" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #define ACPI_BATTERY_DEVICE_NAME "Battery" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #define ACPI_BATTERY_NOTIFY_STATUS 0x80 |
| 51 | #define ACPI_BATTERY_NOTIFY_INFO 0x81 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #define _COMPONENT ACPI_BATTERY_COMPONENT |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 54 | |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 55 | ACPI_MODULE_NAME("battery"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 57 | MODULE_AUTHOR("Paul Diefenbaugh"); |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 58 | MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>"); |
Len Brown | 7cda93e | 2007-02-12 23:50:02 -0500 | [diff] [blame] | 59 | MODULE_DESCRIPTION("ACPI Battery Driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | MODULE_LICENSE("GPL"); |
| 61 | |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 62 | static unsigned int cache_time = 1000; |
| 63 | module_param(cache_time, uint, 0644); |
| 64 | MODULE_PARM_DESC(cache_time, "cache time in milliseconds"); |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 65 | |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 66 | #ifdef CONFIG_ACPI_PROCFS |
Rich Townsend | 3f86b83 | 2006-07-01 11:36:54 -0400 | [diff] [blame] | 67 | extern struct proc_dir_entry *acpi_lock_battery_dir(void); |
| 68 | extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir); |
| 69 | |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 70 | enum acpi_battery_files { |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 71 | info_tag = 0, |
| 72 | state_tag, |
| 73 | alarm_tag, |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 74 | ACPI_BATTERY_NUMFILES, |
| 75 | }; |
| 76 | |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 77 | #endif |
| 78 | |
| 79 | static const struct acpi_device_id battery_device_ids[] = { |
| 80 | {"PNP0C0A", 0}, |
| 81 | {"", 0}, |
| 82 | }; |
| 83 | |
| 84 | MODULE_DEVICE_TABLE(acpi, battery_device_ids); |
| 85 | |
| 86 | |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 87 | struct acpi_battery { |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 88 | struct mutex lock; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 89 | struct power_supply bat; |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 90 | struct acpi_device *device; |
| 91 | unsigned long update_time; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 92 | int current_now; |
| 93 | int capacity_now; |
| 94 | int voltage_now; |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 95 | int design_capacity; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 96 | int full_charge_capacity; |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 97 | int technology; |
| 98 | int design_voltage; |
| 99 | int design_capacity_warning; |
| 100 | int design_capacity_low; |
| 101 | int capacity_granularity_1; |
| 102 | int capacity_granularity_2; |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 103 | int alarm; |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 104 | char model_number[32]; |
| 105 | char serial_number[32]; |
| 106 | char type[32]; |
| 107 | char oem_info[32]; |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 108 | int state; |
| 109 | int power_unit; |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 110 | u8 alarm_present; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | }; |
| 112 | |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 113 | #define to_acpi_battery(x) container_of(x, struct acpi_battery, bat); |
| 114 | |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 115 | inline int acpi_battery_present(struct acpi_battery *battery) |
| 116 | { |
| 117 | return battery->device->status.battery_present; |
| 118 | } |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 119 | |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 120 | static int acpi_battery_technology(struct acpi_battery *battery) |
| 121 | { |
| 122 | if (!strcasecmp("NiCd", battery->type)) |
| 123 | return POWER_SUPPLY_TECHNOLOGY_NiCd; |
| 124 | if (!strcasecmp("NiMH", battery->type)) |
| 125 | return POWER_SUPPLY_TECHNOLOGY_NiMH; |
| 126 | if (!strcasecmp("LION", battery->type)) |
| 127 | return POWER_SUPPLY_TECHNOLOGY_LION; |
Alexey Starikovskiy | 0bde7ee | 2007-10-28 15:33:10 +0300 | [diff] [blame] | 128 | if (!strcasecmp("LI-ION", battery->type)) |
| 129 | return POWER_SUPPLY_TECHNOLOGY_LION; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 130 | if (!strcasecmp("LiP", battery->type)) |
| 131 | return POWER_SUPPLY_TECHNOLOGY_LIPO; |
| 132 | return POWER_SUPPLY_TECHNOLOGY_UNKNOWN; |
| 133 | } |
| 134 | |
Alexey Starikovskiy | b19073a | 2007-10-25 17:10:47 -0400 | [diff] [blame] | 135 | static int acpi_battery_update(struct acpi_battery *battery); |
| 136 | |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 137 | static int acpi_battery_get_property(struct power_supply *psy, |
| 138 | enum power_supply_property psp, |
| 139 | union power_supply_propval *val) |
| 140 | { |
| 141 | struct acpi_battery *battery = to_acpi_battery(psy); |
| 142 | |
| 143 | if ((!acpi_battery_present(battery)) && |
| 144 | psp != POWER_SUPPLY_PROP_PRESENT) |
| 145 | return -ENODEV; |
Alexey Starikovskiy | b19073a | 2007-10-25 17:10:47 -0400 | [diff] [blame] | 146 | acpi_battery_update(battery); |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 147 | switch (psp) { |
| 148 | case POWER_SUPPLY_PROP_STATUS: |
| 149 | if (battery->state & 0x01) |
| 150 | val->intval = POWER_SUPPLY_STATUS_DISCHARGING; |
| 151 | else if (battery->state & 0x02) |
| 152 | val->intval = POWER_SUPPLY_STATUS_CHARGING; |
| 153 | else if (battery->state == 0) |
| 154 | val->intval = POWER_SUPPLY_STATUS_FULL; |
Roland Dreier | 4c41d3a | 2007-11-07 15:09:09 -0800 | [diff] [blame^] | 155 | else |
| 156 | val->intval = POWER_SUPPLY_STATUS_UNKNOWN; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 157 | break; |
| 158 | case POWER_SUPPLY_PROP_PRESENT: |
| 159 | val->intval = acpi_battery_present(battery); |
| 160 | break; |
| 161 | case POWER_SUPPLY_PROP_TECHNOLOGY: |
| 162 | val->intval = acpi_battery_technology(battery); |
| 163 | break; |
| 164 | case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN: |
| 165 | val->intval = battery->design_voltage * 1000; |
| 166 | break; |
| 167 | case POWER_SUPPLY_PROP_VOLTAGE_NOW: |
| 168 | val->intval = battery->voltage_now * 1000; |
| 169 | break; |
| 170 | case POWER_SUPPLY_PROP_CURRENT_NOW: |
| 171 | val->intval = battery->current_now * 1000; |
| 172 | break; |
| 173 | case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN: |
| 174 | case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN: |
| 175 | val->intval = battery->design_capacity * 1000; |
| 176 | break; |
| 177 | case POWER_SUPPLY_PROP_CHARGE_FULL: |
| 178 | case POWER_SUPPLY_PROP_ENERGY_FULL: |
| 179 | val->intval = battery->full_charge_capacity * 1000; |
| 180 | break; |
| 181 | case POWER_SUPPLY_PROP_CHARGE_NOW: |
| 182 | case POWER_SUPPLY_PROP_ENERGY_NOW: |
| 183 | val->intval = battery->capacity_now * 1000; |
| 184 | break; |
| 185 | case POWER_SUPPLY_PROP_MODEL_NAME: |
| 186 | val->strval = battery->model_number; |
| 187 | break; |
| 188 | case POWER_SUPPLY_PROP_MANUFACTURER: |
| 189 | val->strval = battery->oem_info; |
| 190 | break; |
| 191 | default: |
| 192 | return -EINVAL; |
| 193 | } |
| 194 | return 0; |
| 195 | } |
| 196 | |
| 197 | static enum power_supply_property charge_battery_props[] = { |
| 198 | POWER_SUPPLY_PROP_STATUS, |
| 199 | POWER_SUPPLY_PROP_PRESENT, |
| 200 | POWER_SUPPLY_PROP_TECHNOLOGY, |
| 201 | POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN, |
| 202 | POWER_SUPPLY_PROP_VOLTAGE_NOW, |
| 203 | POWER_SUPPLY_PROP_CURRENT_NOW, |
| 204 | POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN, |
| 205 | POWER_SUPPLY_PROP_CHARGE_FULL, |
| 206 | POWER_SUPPLY_PROP_CHARGE_NOW, |
| 207 | POWER_SUPPLY_PROP_MODEL_NAME, |
| 208 | POWER_SUPPLY_PROP_MANUFACTURER, |
| 209 | }; |
| 210 | |
| 211 | static enum power_supply_property energy_battery_props[] = { |
| 212 | POWER_SUPPLY_PROP_STATUS, |
| 213 | POWER_SUPPLY_PROP_PRESENT, |
| 214 | POWER_SUPPLY_PROP_TECHNOLOGY, |
| 215 | POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN, |
| 216 | POWER_SUPPLY_PROP_VOLTAGE_NOW, |
| 217 | POWER_SUPPLY_PROP_CURRENT_NOW, |
| 218 | POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN, |
| 219 | POWER_SUPPLY_PROP_ENERGY_FULL, |
| 220 | POWER_SUPPLY_PROP_ENERGY_NOW, |
| 221 | POWER_SUPPLY_PROP_MODEL_NAME, |
| 222 | POWER_SUPPLY_PROP_MANUFACTURER, |
| 223 | }; |
| 224 | |
| 225 | #ifdef CONFIG_ACPI_PROCFS |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 226 | inline char *acpi_battery_units(struct acpi_battery *battery) |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 227 | { |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 228 | return (battery->power_unit)?"mA":"mW"; |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 229 | } |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 230 | #endif |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 231 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | /* -------------------------------------------------------------------------- |
| 233 | Battery Management |
| 234 | -------------------------------------------------------------------------- */ |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 235 | struct acpi_offsets { |
| 236 | size_t offset; /* offset inside struct acpi_sbs_battery */ |
| 237 | u8 mode; /* int or string? */ |
| 238 | }; |
| 239 | |
| 240 | static struct acpi_offsets state_offsets[] = { |
| 241 | {offsetof(struct acpi_battery, state), 0}, |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 242 | {offsetof(struct acpi_battery, current_now), 0}, |
| 243 | {offsetof(struct acpi_battery, capacity_now), 0}, |
| 244 | {offsetof(struct acpi_battery, voltage_now), 0}, |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 245 | }; |
| 246 | |
| 247 | static struct acpi_offsets info_offsets[] = { |
| 248 | {offsetof(struct acpi_battery, power_unit), 0}, |
| 249 | {offsetof(struct acpi_battery, design_capacity), 0}, |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 250 | {offsetof(struct acpi_battery, full_charge_capacity), 0}, |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 251 | {offsetof(struct acpi_battery, technology), 0}, |
| 252 | {offsetof(struct acpi_battery, design_voltage), 0}, |
| 253 | {offsetof(struct acpi_battery, design_capacity_warning), 0}, |
| 254 | {offsetof(struct acpi_battery, design_capacity_low), 0}, |
| 255 | {offsetof(struct acpi_battery, capacity_granularity_1), 0}, |
| 256 | {offsetof(struct acpi_battery, capacity_granularity_2), 0}, |
| 257 | {offsetof(struct acpi_battery, model_number), 1}, |
| 258 | {offsetof(struct acpi_battery, serial_number), 1}, |
| 259 | {offsetof(struct acpi_battery, type), 1}, |
| 260 | {offsetof(struct acpi_battery, oem_info), 1}, |
| 261 | }; |
| 262 | |
| 263 | static int extract_package(struct acpi_battery *battery, |
| 264 | union acpi_object *package, |
| 265 | struct acpi_offsets *offsets, int num) |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 266 | { |
Alexey Starikovskiy | 106449e | 2007-10-29 23:29:40 +0300 | [diff] [blame] | 267 | int i; |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 268 | union acpi_object *element; |
| 269 | if (package->type != ACPI_TYPE_PACKAGE) |
| 270 | return -EFAULT; |
| 271 | for (i = 0; i < num; ++i) { |
| 272 | if (package->package.count <= i) |
| 273 | return -EFAULT; |
| 274 | element = &package->package.elements[i]; |
| 275 | if (offsets[i].mode) { |
Alexey Starikovskiy | 106449e | 2007-10-29 23:29:40 +0300 | [diff] [blame] | 276 | u8 *ptr = (u8 *)battery + offsets[i].offset; |
| 277 | if (element->type == ACPI_TYPE_STRING || |
| 278 | element->type == ACPI_TYPE_BUFFER) |
| 279 | strncpy(ptr, element->string.pointer, 32); |
| 280 | else if (element->type == ACPI_TYPE_INTEGER) { |
| 281 | strncpy(ptr, (u8 *)&element->integer.value, |
| 282 | sizeof(acpi_integer)); |
| 283 | ptr[sizeof(acpi_integer)] = 0; |
| 284 | } else return -EFAULT; |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 285 | } else { |
Alexey Starikovskiy | 106449e | 2007-10-29 23:29:40 +0300 | [diff] [blame] | 286 | if (element->type == ACPI_TYPE_INTEGER) { |
| 287 | int *x = (int *)((u8 *)battery + |
| 288 | offsets[i].offset); |
| 289 | *x = element->integer.value; |
| 290 | } else return -EFAULT; |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 291 | } |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 292 | } |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 293 | return 0; |
| 294 | } |
| 295 | |
| 296 | static int acpi_battery_get_status(struct acpi_battery *battery) |
| 297 | { |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 298 | if (acpi_bus_get_status(battery->device)) { |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 299 | ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA")); |
| 300 | return -ENODEV; |
| 301 | } |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 302 | return 0; |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | static int acpi_battery_get_info(struct acpi_battery *battery) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | { |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 307 | int result = -EFAULT; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 308 | acpi_status status = 0; |
| 309 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 311 | if (!acpi_battery_present(battery)) |
| 312 | return 0; |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 313 | mutex_lock(&battery->lock); |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 314 | status = acpi_evaluate_object(battery->device->handle, "_BIF", |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 315 | NULL, &buffer); |
| 316 | mutex_unlock(&battery->lock); |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 317 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | if (ACPI_FAILURE(status)) { |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 319 | ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF")); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 320 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | } |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 322 | |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 323 | result = extract_package(battery, buffer.pointer, |
| 324 | info_offsets, ARRAY_SIZE(info_offsets)); |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 325 | kfree(buffer.pointer); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 326 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | } |
| 328 | |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 329 | static int acpi_battery_get_state(struct acpi_battery *battery) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 331 | int result = 0; |
| 332 | acpi_status status = 0; |
| 333 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 335 | if (!acpi_battery_present(battery)) |
| 336 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 338 | if (battery->update_time && |
| 339 | time_before(jiffies, battery->update_time + |
| 340 | msecs_to_jiffies(cache_time))) |
| 341 | return 0; |
| 342 | |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 343 | mutex_lock(&battery->lock); |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 344 | status = acpi_evaluate_object(battery->device->handle, "_BST", |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 345 | NULL, &buffer); |
| 346 | mutex_unlock(&battery->lock); |
Len Brown | 5b31d89 | 2007-08-15 00:19:26 -0400 | [diff] [blame] | 347 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | if (ACPI_FAILURE(status)) { |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 349 | ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST")); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 350 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | } |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 352 | |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 353 | result = extract_package(battery, buffer.pointer, |
| 354 | state_offsets, ARRAY_SIZE(state_offsets)); |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 355 | battery->update_time = jiffies; |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 356 | kfree(buffer.pointer); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 357 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | } |
| 359 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 360 | static int acpi_battery_set_alarm(struct acpi_battery *battery) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 362 | acpi_status status = 0; |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 363 | union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER }; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 364 | struct acpi_object_list arg_list = { 1, &arg0 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 366 | if (!acpi_battery_present(battery)|| !battery->alarm_present) |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 367 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 369 | arg0.integer.value = battery->alarm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 371 | mutex_lock(&battery->lock); |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 372 | status = acpi_evaluate_object(battery->device->handle, "_BTP", |
| 373 | &arg_list, NULL); |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 374 | mutex_unlock(&battery->lock); |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 375 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | if (ACPI_FAILURE(status)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 377 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 379 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm)); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 380 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | } |
| 382 | |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 383 | static int acpi_battery_init_alarm(struct acpi_battery *battery) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 385 | acpi_status status = AE_OK; |
| 386 | acpi_handle handle = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 388 | /* See if alarms are supported, and if so, set default */ |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 389 | status = acpi_get_handle(battery->device->handle, "_BTP", &handle); |
| 390 | if (ACPI_FAILURE(status)) { |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 391 | battery->alarm_present = 0; |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 392 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | } |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 394 | battery->alarm_present = 1; |
| 395 | if (!battery->alarm) |
| 396 | battery->alarm = battery->design_capacity_warning; |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 397 | return acpi_battery_set_alarm(battery); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | } |
| 399 | |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 400 | static ssize_t acpi_battery_alarm_show(struct device *dev, |
| 401 | struct device_attribute *attr, |
| 402 | char *buf) |
| 403 | { |
| 404 | struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev)); |
| 405 | return sprintf(buf, "%d\n", battery->alarm * 1000); |
| 406 | } |
| 407 | |
| 408 | static ssize_t acpi_battery_alarm_store(struct device *dev, |
| 409 | struct device_attribute *attr, |
| 410 | const char *buf, size_t count) |
| 411 | { |
| 412 | unsigned long x; |
| 413 | struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev)); |
| 414 | if (sscanf(buf, "%ld\n", &x) == 1) |
| 415 | battery->alarm = x/1000; |
| 416 | if (acpi_battery_present(battery)) |
| 417 | acpi_battery_set_alarm(battery); |
| 418 | return count; |
| 419 | } |
| 420 | |
| 421 | static struct device_attribute alarm_attr = { |
| 422 | .attr = {.name = "alarm", .mode = 0644, .owner = THIS_MODULE}, |
| 423 | .show = acpi_battery_alarm_show, |
| 424 | .store = acpi_battery_alarm_store, |
| 425 | }; |
| 426 | |
| 427 | static int sysfs_add_battery(struct acpi_battery *battery) |
| 428 | { |
| 429 | int result; |
| 430 | |
| 431 | battery->update_time = 0; |
| 432 | result = acpi_battery_get_info(battery); |
| 433 | acpi_battery_init_alarm(battery); |
| 434 | if (result) |
| 435 | return result; |
| 436 | if (battery->power_unit) { |
| 437 | battery->bat.properties = charge_battery_props; |
| 438 | battery->bat.num_properties = |
| 439 | ARRAY_SIZE(charge_battery_props); |
| 440 | } else { |
| 441 | battery->bat.properties = energy_battery_props; |
| 442 | battery->bat.num_properties = |
| 443 | ARRAY_SIZE(energy_battery_props); |
| 444 | } |
| 445 | |
| 446 | battery->bat.name = acpi_device_bid(battery->device); |
| 447 | battery->bat.type = POWER_SUPPLY_TYPE_BATTERY; |
| 448 | battery->bat.get_property = acpi_battery_get_property; |
| 449 | |
| 450 | result = power_supply_register(&battery->device->dev, &battery->bat); |
| 451 | if (result) |
| 452 | return result; |
| 453 | return device_create_file(battery->bat.dev, &alarm_attr); |
| 454 | } |
| 455 | |
| 456 | static void sysfs_remove_battery(struct acpi_battery *battery) |
| 457 | { |
| 458 | if (!battery->bat.dev) |
| 459 | return; |
| 460 | device_remove_file(battery->bat.dev, &alarm_attr); |
| 461 | power_supply_unregister(&battery->bat); |
| 462 | } |
| 463 | |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 464 | static int acpi_battery_update(struct acpi_battery *battery) |
Vladimir Lebedev | 4bd35cd | 2007-02-10 01:43:48 -0500 | [diff] [blame] | 465 | { |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 466 | int result = acpi_battery_get_status(battery); |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 467 | if (result) |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 468 | return result; |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 469 | if (!acpi_battery_present(battery)) { |
| 470 | sysfs_remove_battery(battery); |
| 471 | return 0; |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 472 | } |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 473 | if (!battery->bat.dev) |
| 474 | sysfs_add_battery(battery); |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 475 | return acpi_battery_get_state(battery); |
Vladimir Lebedev | 4bd35cd | 2007-02-10 01:43:48 -0500 | [diff] [blame] | 476 | } |
| 477 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | /* -------------------------------------------------------------------------- |
| 479 | FS Interface (/proc) |
| 480 | -------------------------------------------------------------------------- */ |
| 481 | |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 482 | #ifdef CONFIG_ACPI_PROCFS |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 483 | static struct proc_dir_entry *acpi_battery_dir; |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 484 | |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 485 | static int acpi_battery_print_info(struct seq_file *seq, int result) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 487 | struct acpi_battery *battery = seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 489 | if (result) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | goto end; |
| 491 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 492 | seq_printf(seq, "present: %s\n", |
| 493 | acpi_battery_present(battery)?"yes":"no"); |
| 494 | if (!acpi_battery_present(battery)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | goto end; |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 496 | if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | seq_printf(seq, "design capacity: unknown\n"); |
| 498 | else |
| 499 | seq_printf(seq, "design capacity: %d %sh\n", |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 500 | battery->design_capacity, |
| 501 | acpi_battery_units(battery)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 503 | if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | seq_printf(seq, "last full capacity: unknown\n"); |
| 505 | else |
| 506 | seq_printf(seq, "last full capacity: %d %sh\n", |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 507 | battery->full_charge_capacity, |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 508 | acpi_battery_units(battery)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 510 | seq_printf(seq, "battery technology: %srechargeable\n", |
| 511 | (!battery->technology)?"non-":""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 513 | if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | seq_printf(seq, "design voltage: unknown\n"); |
| 515 | else |
| 516 | seq_printf(seq, "design voltage: %d mV\n", |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 517 | battery->design_voltage); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 518 | seq_printf(seq, "design capacity warning: %d %sh\n", |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 519 | battery->design_capacity_warning, |
| 520 | acpi_battery_units(battery)); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 521 | seq_printf(seq, "design capacity low: %d %sh\n", |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 522 | battery->design_capacity_low, |
| 523 | acpi_battery_units(battery)); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 524 | seq_printf(seq, "capacity granularity 1: %d %sh\n", |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 525 | battery->capacity_granularity_1, |
| 526 | acpi_battery_units(battery)); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 527 | seq_printf(seq, "capacity granularity 2: %d %sh\n", |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 528 | battery->capacity_granularity_2, |
| 529 | acpi_battery_units(battery)); |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 530 | seq_printf(seq, "model number: %s\n", battery->model_number); |
| 531 | seq_printf(seq, "serial number: %s\n", battery->serial_number); |
| 532 | seq_printf(seq, "battery type: %s\n", battery->type); |
| 533 | seq_printf(seq, "OEM info: %s\n", battery->oem_info); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 534 | end: |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 535 | if (result) |
| 536 | seq_printf(seq, "ERROR: Unable to read battery info\n"); |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 537 | return result; |
| 538 | } |
| 539 | |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 540 | static int acpi_battery_print_state(struct seq_file *seq, int result) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 542 | struct acpi_battery *battery = seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 544 | if (result) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | goto end; |
| 546 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 547 | seq_printf(seq, "present: %s\n", |
| 548 | acpi_battery_present(battery)?"yes":"no"); |
| 549 | if (!acpi_battery_present(battery)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | goto end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 552 | seq_printf(seq, "capacity state: %s\n", |
| 553 | (battery->state & 0x04)?"critical":"ok"); |
| 554 | if ((battery->state & 0x01) && (battery->state & 0x02)) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 555 | seq_printf(seq, |
| 556 | "charging state: charging/discharging\n"); |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 557 | else if (battery->state & 0x01) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | seq_printf(seq, "charging state: discharging\n"); |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 559 | else if (battery->state & 0x02) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | seq_printf(seq, "charging state: charging\n"); |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 561 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | seq_printf(seq, "charging state: charged\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 564 | if (battery->current_now == ACPI_BATTERY_VALUE_UNKNOWN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | seq_printf(seq, "present rate: unknown\n"); |
| 566 | else |
| 567 | seq_printf(seq, "present rate: %d %s\n", |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 568 | battery->current_now, acpi_battery_units(battery)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 570 | if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | seq_printf(seq, "remaining capacity: unknown\n"); |
| 572 | else |
| 573 | seq_printf(seq, "remaining capacity: %d %sh\n", |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 574 | battery->capacity_now, acpi_battery_units(battery)); |
| 575 | if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | seq_printf(seq, "present voltage: unknown\n"); |
| 577 | else |
| 578 | seq_printf(seq, "present voltage: %d mV\n", |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 579 | battery->voltage_now); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 580 | end: |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 581 | if (result) |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 582 | seq_printf(seq, "ERROR: Unable to read battery state\n"); |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 583 | |
| 584 | return result; |
| 585 | } |
| 586 | |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 587 | static int acpi_battery_print_alarm(struct seq_file *seq, int result) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 589 | struct acpi_battery *battery = seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 591 | if (result) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | goto end; |
| 593 | |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 594 | if (!acpi_battery_present(battery)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | seq_printf(seq, "present: no\n"); |
| 596 | goto end; |
| 597 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | seq_printf(seq, "alarm: "); |
| 599 | if (!battery->alarm) |
| 600 | seq_printf(seq, "unsupported\n"); |
| 601 | else |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 602 | seq_printf(seq, "%u %sh\n", battery->alarm, |
| 603 | acpi_battery_units(battery)); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 604 | end: |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 605 | if (result) |
| 606 | seq_printf(seq, "ERROR: Unable to read battery alarm\n"); |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 607 | return result; |
| 608 | } |
| 609 | |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 610 | static ssize_t acpi_battery_write_alarm(struct file *file, |
| 611 | const char __user * buffer, |
| 612 | size_t count, loff_t * ppos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 614 | int result = 0; |
| 615 | char alarm_string[12] = { '\0' }; |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 616 | struct seq_file *m = file->private_data; |
| 617 | struct acpi_battery *battery = m->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | if (!battery || (count > sizeof(alarm_string) - 1)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 620 | return -EINVAL; |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 621 | if (!acpi_battery_present(battery)) { |
| 622 | result = -ENODEV; |
| 623 | goto end; |
| 624 | } |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 625 | if (copy_from_user(alarm_string, buffer, count)) { |
| 626 | result = -EFAULT; |
| 627 | goto end; |
| 628 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | alarm_string[count] = '\0'; |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 630 | battery->alarm = simple_strtol(alarm_string, NULL, 0); |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 631 | result = acpi_battery_set_alarm(battery); |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 632 | end: |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 633 | if (!result) |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 634 | return count; |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 635 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | } |
| 637 | |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 638 | typedef int(*print_func)(struct seq_file *seq, int result); |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 639 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 640 | static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = { |
| 641 | acpi_battery_print_info, |
| 642 | acpi_battery_print_state, |
| 643 | acpi_battery_print_alarm, |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 644 | }; |
| 645 | |
| 646 | static int acpi_battery_read(int fid, struct seq_file *seq) |
| 647 | { |
| 648 | struct acpi_battery *battery = seq->private; |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 649 | int result = acpi_battery_update(battery); |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 650 | return acpi_print_funcs[fid](seq, result); |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 651 | } |
| 652 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 653 | #define DECLARE_FILE_FUNCTIONS(_name) \ |
| 654 | static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \ |
| 655 | { \ |
| 656 | return acpi_battery_read(_name##_tag, seq); \ |
| 657 | } \ |
| 658 | static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \ |
| 659 | { \ |
| 660 | return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \ |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 661 | } |
| 662 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 663 | DECLARE_FILE_FUNCTIONS(info); |
| 664 | DECLARE_FILE_FUNCTIONS(state); |
| 665 | DECLARE_FILE_FUNCTIONS(alarm); |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 666 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 667 | #undef DECLARE_FILE_FUNCTIONS |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 668 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 669 | #define FILE_DESCRIPTION_RO(_name) \ |
| 670 | { \ |
| 671 | .name = __stringify(_name), \ |
| 672 | .mode = S_IRUGO, \ |
| 673 | .ops = { \ |
| 674 | .open = acpi_battery_##_name##_open_fs, \ |
| 675 | .read = seq_read, \ |
| 676 | .llseek = seq_lseek, \ |
| 677 | .release = single_release, \ |
| 678 | .owner = THIS_MODULE, \ |
| 679 | }, \ |
| 680 | } |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 681 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 682 | #define FILE_DESCRIPTION_RW(_name) \ |
| 683 | { \ |
| 684 | .name = __stringify(_name), \ |
| 685 | .mode = S_IFREG | S_IRUGO | S_IWUSR, \ |
| 686 | .ops = { \ |
| 687 | .open = acpi_battery_##_name##_open_fs, \ |
| 688 | .read = seq_read, \ |
| 689 | .llseek = seq_lseek, \ |
| 690 | .write = acpi_battery_write_##_name, \ |
| 691 | .release = single_release, \ |
| 692 | .owner = THIS_MODULE, \ |
| 693 | }, \ |
| 694 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 696 | static struct battery_file { |
| 697 | struct file_operations ops; |
| 698 | mode_t mode; |
| 699 | char *name; |
| 700 | } acpi_battery_file[] = { |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 701 | FILE_DESCRIPTION_RO(info), |
| 702 | FILE_DESCRIPTION_RO(state), |
| 703 | FILE_DESCRIPTION_RW(alarm), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | }; |
| 705 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 706 | #undef FILE_DESCRIPTION_RO |
| 707 | #undef FILE_DESCRIPTION_RW |
| 708 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 709 | static int acpi_battery_add_fs(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 711 | struct proc_dir_entry *entry = NULL; |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 712 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | if (!acpi_device_dir(device)) { |
| 715 | acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device), |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 716 | acpi_battery_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | if (!acpi_device_dir(device)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 718 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | acpi_device_dir(device)->owner = THIS_MODULE; |
| 720 | } |
| 721 | |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 722 | for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) { |
| 723 | entry = create_proc_entry(acpi_battery_file[i].name, |
| 724 | acpi_battery_file[i].mode, acpi_device_dir(device)); |
| 725 | if (!entry) |
| 726 | return -ENODEV; |
| 727 | else { |
| 728 | entry->proc_fops = &acpi_battery_file[i].ops; |
| 729 | entry->data = acpi_driver_data(device); |
| 730 | entry->owner = THIS_MODULE; |
| 731 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | } |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 733 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | } |
| 735 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 736 | static void acpi_battery_remove_fs(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | { |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 738 | int i; |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 739 | if (!acpi_device_dir(device)) |
| 740 | return; |
| 741 | for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) |
| 742 | remove_proc_entry(acpi_battery_file[i].name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 745 | remove_proc_entry(acpi_device_bid(device), acpi_battery_dir); |
| 746 | acpi_device_dir(device) = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | } |
| 748 | |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 749 | #endif |
Alexey Starikovskiy | 3e58ea0 | 2007-09-26 19:43:11 +0400 | [diff] [blame] | 750 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | /* -------------------------------------------------------------------------- |
| 752 | Driver Interface |
| 753 | -------------------------------------------------------------------------- */ |
| 754 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 755 | static void acpi_battery_notify(acpi_handle handle, u32 event, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 757 | struct acpi_battery *battery = data; |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 758 | struct acpi_device *device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | if (!battery) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 760 | return; |
Patrick Mochel | 145def8 | 2006-05-19 16:54:39 -0400 | [diff] [blame] | 761 | device = battery->device; |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 762 | acpi_battery_update(battery); |
| 763 | acpi_bus_generate_proc_event(device, event, |
| 764 | acpi_battery_present(battery)); |
| 765 | acpi_bus_generate_netlink_event(device->pnp.device_class, |
| 766 | device->dev.bus_id, event, |
Vladimir Lebedev | 9ea7d57 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 767 | acpi_battery_present(battery)); |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 768 | /* acpi_batter_update could remove power_supply object */ |
| 769 | if (battery->bat.dev) |
| 770 | kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | } |
| 772 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 773 | static int acpi_battery_add(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 775 | int result = 0; |
| 776 | acpi_status status = 0; |
| 777 | struct acpi_battery *battery = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | if (!device) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 779 | return -EINVAL; |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 780 | battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | if (!battery) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 782 | return -ENOMEM; |
Patrick Mochel | 145def8 | 2006-05-19 16:54:39 -0400 | [diff] [blame] | 783 | battery->device = device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME); |
| 785 | strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS); |
| 786 | acpi_driver_data(device) = battery; |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 787 | mutex_init(&battery->lock); |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 788 | acpi_battery_update(battery); |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 789 | #ifdef CONFIG_ACPI_PROCFS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | result = acpi_battery_add_fs(device); |
| 791 | if (result) |
| 792 | goto end; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 793 | #endif |
Patrick Mochel | 3b073ec | 2006-05-19 16:54:41 -0400 | [diff] [blame] | 794 | status = acpi_install_notify_handler(device->handle, |
Vladimir Lebedev | 9fdae72 | 2006-06-27 04:49:00 -0400 | [diff] [blame] | 795 | ACPI_ALL_NOTIFY, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 796 | acpi_battery_notify, battery); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | if (ACPI_FAILURE(status)) { |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 798 | ACPI_EXCEPTION((AE_INFO, status, "Installing notify handler")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | result = -ENODEV; |
| 800 | goto end; |
| 801 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 803 | ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device), |
| 804 | device->status.battery_present ? "present" : "absent"); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 805 | end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | if (result) { |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 807 | #ifdef CONFIG_ACPI_PROCFS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | acpi_battery_remove_fs(device); |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 809 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | kfree(battery); |
| 811 | } |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 812 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | } |
| 814 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 815 | static int acpi_battery_remove(struct acpi_device *device, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 817 | acpi_status status = 0; |
| 818 | struct acpi_battery *battery = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | if (!device || !acpi_driver_data(device)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 821 | return -EINVAL; |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 822 | battery = acpi_driver_data(device); |
Patrick Mochel | 3b073ec | 2006-05-19 16:54:41 -0400 | [diff] [blame] | 823 | status = acpi_remove_notify_handler(device->handle, |
Vladimir Lebedev | 9fdae72 | 2006-06-27 04:49:00 -0400 | [diff] [blame] | 824 | ACPI_ALL_NOTIFY, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 825 | acpi_battery_notify); |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 826 | #ifdef CONFIG_ACPI_PROCFS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | acpi_battery_remove_fs(device); |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 828 | #endif |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 829 | sysfs_remove_battery(battery); |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 830 | mutex_destroy(&battery->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | kfree(battery); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 832 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | } |
| 834 | |
Jiri Kosina | 34c4415 | 2006-10-10 14:20:41 -0700 | [diff] [blame] | 835 | /* this is needed to learn about changes made in suspended state */ |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 836 | static int acpi_battery_resume(struct acpi_device *device) |
Jiri Kosina | 34c4415 | 2006-10-10 14:20:41 -0700 | [diff] [blame] | 837 | { |
| 838 | struct acpi_battery *battery; |
Jiri Kosina | 34c4415 | 2006-10-10 14:20:41 -0700 | [diff] [blame] | 839 | if (!device) |
| 840 | return -EINVAL; |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 841 | battery = acpi_driver_data(device); |
| 842 | battery->update_time = 0; |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 843 | acpi_battery_update(battery); |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 844 | return 0; |
Jiri Kosina | 34c4415 | 2006-10-10 14:20:41 -0700 | [diff] [blame] | 845 | } |
| 846 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 847 | static struct acpi_driver acpi_battery_driver = { |
| 848 | .name = "battery", |
| 849 | .class = ACPI_BATTERY_CLASS, |
| 850 | .ids = battery_device_ids, |
| 851 | .ops = { |
| 852 | .add = acpi_battery_add, |
| 853 | .resume = acpi_battery_resume, |
| 854 | .remove = acpi_battery_remove, |
| 855 | }, |
| 856 | }; |
| 857 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 858 | static int __init acpi_battery_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | { |
Pavel Machek | 4d8316d | 2006-08-14 22:37:22 -0700 | [diff] [blame] | 860 | if (acpi_disabled) |
| 861 | return -ENODEV; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 862 | #ifdef CONFIG_ACPI_PROCFS |
Rich Townsend | 3f86b83 | 2006-07-01 11:36:54 -0400 | [diff] [blame] | 863 | acpi_battery_dir = acpi_lock_battery_dir(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | if (!acpi_battery_dir) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 865 | return -ENODEV; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 866 | #endif |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 867 | if (acpi_bus_register_driver(&acpi_battery_driver) < 0) { |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 868 | #ifdef CONFIG_ACPI_PROCFS |
Rich Townsend | 3f86b83 | 2006-07-01 11:36:54 -0400 | [diff] [blame] | 869 | acpi_unlock_battery_dir(acpi_battery_dir); |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 870 | #endif |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 871 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | } |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 873 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | } |
| 875 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 876 | static void __exit acpi_battery_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | acpi_bus_unregister_driver(&acpi_battery_driver); |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 879 | #ifdef CONFIG_ACPI_PROCFS |
Rich Townsend | 3f86b83 | 2006-07-01 11:36:54 -0400 | [diff] [blame] | 880 | acpi_unlock_battery_dir(acpi_battery_dir); |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 881 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | } |
| 883 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | module_init(acpi_battery_init); |
| 885 | module_exit(acpi_battery_exit); |