blob: f37beaa32750106dffdf9fd7aeac764f1f0094f2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * acpi_ac.c - ACPI AC Adapter Driver ($Revision: 27 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 *
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 */
25
26#include <linux/kernel.h>
27#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/init.h>
30#include <linux/types.h>
Lan Tianyu0ab5bb62013-05-08 07:28:46 +000031#include <linux/dmi.h>
32#include <linux/delay.h>
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030033#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/proc_fs.h>
35#include <linux/seq_file.h>
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -080036#endif
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +040037#include <linux/power_supply.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <acpi/acpi_bus.h>
39#include <acpi/acpi_drivers.h>
40
Len Browna192a952009-07-28 16:45:54 -040041#define PREFIX "ACPI: "
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#define ACPI_AC_CLASS "ac_adapter"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define ACPI_AC_DEVICE_NAME "AC Adapter"
45#define ACPI_AC_FILE_STATE "state"
46#define ACPI_AC_NOTIFY_STATUS 0x80
47#define ACPI_AC_STATUS_OFFLINE 0x00
48#define ACPI_AC_STATUS_ONLINE 0x01
49#define ACPI_AC_STATUS_UNKNOWN 0xFF
50
51#define _COMPONENT ACPI_AC_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050052ACPI_MODULE_NAME("ac");
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Len Brownf52fd662007-02-12 22:42:12 -050054MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050055MODULE_DESCRIPTION("ACPI AC Adapter Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070056MODULE_LICENSE("GPL");
57
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030058#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -040059extern struct proc_dir_entry *acpi_lock_ac_dir(void);
60extern void *acpi_unlock_ac_dir(struct proc_dir_entry *acpi_ac_dir);
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -080061static int acpi_ac_open_fs(struct inode *inode, struct file *file);
62#endif
Rich Townsend3f86b832006-07-01 11:36:54 -040063
Len Brown4be44fc2005-08-05 00:44:28 -040064static int acpi_ac_add(struct acpi_device *device);
Rafael J. Wysocki51fac832013-01-24 00:24:48 +010065static int acpi_ac_remove(struct acpi_device *device);
Bjorn Helgaas48fe1122009-04-30 09:35:42 -060066static void acpi_ac_notify(struct acpi_device *device, u32 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Tobias Klauserb299c222008-04-21 22:24:53 +000068static const struct acpi_device_id ac_device_ids[] = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020069 {"ACPI0003", 0},
70 {"", 0},
71};
72MODULE_DEVICE_TABLE(acpi, ac_device_ids);
73
Rafael J. Wysocki90692402012-08-09 23:00:02 +020074#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockiccda7062012-06-27 23:26:35 +020075static int acpi_ac_resume(struct device *dev);
Rafael J. Wysocki90692402012-08-09 23:00:02 +020076#endif
Rafael J. Wysockiccda7062012-06-27 23:26:35 +020077static SIMPLE_DEV_PM_OPS(acpi_ac_pm, NULL, acpi_ac_resume);
78
Lan Tianyu0ab5bb62013-05-08 07:28:46 +000079static int ac_sleep_before_get_state_ms;
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static struct acpi_driver acpi_ac_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050082 .name = "ac",
Len Brown4be44fc2005-08-05 00:44:28 -040083 .class = ACPI_AC_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020084 .ids = ac_device_ids,
Bjorn Helgaas48fe1122009-04-30 09:35:42 -060085 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
Len Brown4be44fc2005-08-05 00:44:28 -040086 .ops = {
87 .add = acpi_ac_add,
88 .remove = acpi_ac_remove,
Bjorn Helgaas48fe1122009-04-30 09:35:42 -060089 .notify = acpi_ac_notify,
Len Brown4be44fc2005-08-05 00:44:28 -040090 },
Rafael J. Wysockiccda7062012-06-27 23:26:35 +020091 .drv.pm = &acpi_ac_pm,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092};
93
94struct acpi_ac {
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +040095 struct power_supply charger;
Patrick Mochelaf961792006-05-19 16:54:32 -040096 struct acpi_device * device;
Matthew Wilcox27663c52008-10-10 02:22:59 -040097 unsigned long long state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098};
99
Phil Carmody497888c2011-07-14 15:07:13 +0300100#define to_acpi_ac(x) container_of(x, struct acpi_ac, charger)
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400101
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300102#ifdef CONFIG_ACPI_PROCFS_POWER
Arjan van de Vend7508032006-07-04 13:06:00 -0400103static const struct file_operations acpi_ac_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700104 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400105 .open = acpi_ac_open_fs,
106 .read = seq_read,
107 .llseek = seq_lseek,
108 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109};
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -0800110#endif
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/* --------------------------------------------------------------------------
113 AC Adapter Management
114 -------------------------------------------------------------------------- */
115
Len Brown4be44fc2005-08-05 00:44:28 -0400116static int acpi_ac_get_state(struct acpi_ac *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Len Brown4be44fc2005-08-05 00:44:28 -0400118 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400122 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Patrick Mochela6ba5eb2006-05-19 16:54:41 -0400124 status = acpi_evaluate_integer(ac->device->handle, "_PSR", NULL, &ac->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400126 ACPI_EXCEPTION((AE_INFO, status, "Error reading AC Adapter state"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 ac->state = ACPI_AC_STATUS_UNKNOWN;
Patrick Mocheld550d982006-06-27 00:41:40 -0400128 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
Len Brown4be44fc2005-08-05 00:44:28 -0400130
Patrick Mocheld550d982006-06-27 00:41:40 -0400131 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Zhang Rui3151dbb2010-12-08 10:40:45 +0800134/* --------------------------------------------------------------------------
135 sysfs I/F
136 -------------------------------------------------------------------------- */
137static int get_ac_property(struct power_supply *psy,
138 enum power_supply_property psp,
139 union power_supply_propval *val)
140{
141 struct acpi_ac *ac = to_acpi_ac(psy);
142
143 if (!ac)
144 return -ENODEV;
145
146 if (acpi_ac_get_state(ac))
147 return -ENODEV;
148
149 switch (psp) {
150 case POWER_SUPPLY_PROP_ONLINE:
151 val->intval = ac->state;
152 break;
153 default:
154 return -EINVAL;
155 }
156 return 0;
157}
158
159static enum power_supply_property ac_props[] = {
160 POWER_SUPPLY_PROP_ONLINE,
161};
162
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300163#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164/* --------------------------------------------------------------------------
165 FS Interface (/proc)
166 -------------------------------------------------------------------------- */
167
Len Brown4be44fc2005-08-05 00:44:28 -0400168static struct proc_dir_entry *acpi_ac_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170static int acpi_ac_seq_show(struct seq_file *seq, void *offset)
171{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200172 struct acpi_ac *ac = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400176 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 if (acpi_ac_get_state(ac)) {
179 seq_puts(seq, "ERROR: Unable to read AC Adapter state\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400180 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
182
183 seq_puts(seq, "state: ");
184 switch (ac->state) {
185 case ACPI_AC_STATUS_OFFLINE:
186 seq_puts(seq, "off-line\n");
187 break;
188 case ACPI_AC_STATUS_ONLINE:
189 seq_puts(seq, "on-line\n");
190 break;
191 default:
192 seq_puts(seq, "unknown\n");
193 break;
194 }
195
Patrick Mocheld550d982006-06-27 00:41:40 -0400196 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
Len Brown4be44fc2005-08-05 00:44:28 -0400198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199static int acpi_ac_open_fs(struct inode *inode, struct file *file)
200{
Al Virod9dda782013-03-31 18:16:14 -0400201 return single_open(file, acpi_ac_seq_show, PDE_DATA(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
Len Brown4be44fc2005-08-05 00:44:28 -0400204static int acpi_ac_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Len Brown4be44fc2005-08-05 00:44:28 -0400206 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Zhang Rui6d855fc2011-01-10 11:16:30 +0800208 printk(KERN_WARNING PREFIX "Deprecated procfs I/F for AC is loaded,"
209 " please retry with CONFIG_ACPI_PROCFS_POWER cleared\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (!acpi_device_dir(device)) {
211 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400212 acpi_ac_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400214 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216
217 /* 'state' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700218 entry = proc_create_data(ACPI_AC_FILE_STATE,
219 S_IRUGO, acpi_device_dir(device),
220 &acpi_ac_fops, acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400222 return -ENODEV;
Patrick Mocheld550d982006-06-27 00:41:40 -0400223 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Len Brown4be44fc2005-08-05 00:44:28 -0400226static int acpi_ac_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 if (acpi_device_dir(device)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400230 remove_proc_entry(ACPI_AC_FILE_STATE, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 remove_proc_entry(acpi_device_bid(device), acpi_ac_dir);
233 acpi_device_dir(device) = NULL;
234 }
235
Patrick Mocheld550d982006-06-27 00:41:40 -0400236 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -0800238#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240/* --------------------------------------------------------------------------
241 Driver Model
242 -------------------------------------------------------------------------- */
243
Bjorn Helgaas48fe1122009-04-30 09:35:42 -0600244static void acpi_ac_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Bjorn Helgaas48fe1122009-04-30 09:35:42 -0600246 struct acpi_ac *ac = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400250 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 switch (event) {
Len Brownf163ff52008-06-14 01:26:37 -0400253 default:
254 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
255 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 case ACPI_AC_NOTIFY_STATUS:
Christian Lupien03d782522004-08-19 01:26:00 -0400257 case ACPI_NOTIFY_BUS_CHECK:
258 case ACPI_NOTIFY_DEVICE_CHECK:
Lan Tianyu0ab5bb62013-05-08 07:28:46 +0000259 /*
260 * A buggy BIOS may notify AC first and then sleep for
261 * a specific time before doing actual operations in the
262 * EC event handler (_Qxx). This will cause the AC state
263 * reported by the ACPI event to be incorrect, so wait for a
264 * specific time for the EC event handler to make progress.
265 */
266 if (ac_sleep_before_get_state_ms > 0)
267 msleep(ac_sleep_before_get_state_ms);
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 acpi_ac_get_state(ac);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800270 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100271 dev_name(&device->dev), event,
Zhang Rui962ce8c2007-08-23 01:24:31 +0800272 (u32) ac->state);
Mark Langsdorf68b92b52009-08-11 15:15:42 -0500273 acpi_notifier_call_chain(device, event, (u32) ac->state);
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400274 kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 }
276
Patrick Mocheld550d982006-06-27 00:41:40 -0400277 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
Lan Tianyu0ab5bb62013-05-08 07:28:46 +0000280static int thinkpad_e530_quirk(const struct dmi_system_id *d)
281{
282 ac_sleep_before_get_state_ms = 1000;
283 return 0;
284}
285
286static struct dmi_system_id ac_dmi_table[] = {
287 {
288 .callback = thinkpad_e530_quirk,
289 .ident = "thinkpad e530",
290 .matches = {
291 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
292 DMI_MATCH(DMI_PRODUCT_NAME, "32597CG"),
293 },
294 },
295 {},
296};
297
Len Brown4be44fc2005-08-05 00:44:28 -0400298static int acpi_ac_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Len Brown4be44fc2005-08-05 00:44:28 -0400300 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400301 struct acpi_ac *ac = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400305 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Burman Yan36bcbec2006-12-19 12:56:11 -0800307 ac = kzalloc(sizeof(struct acpi_ac), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400309 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Patrick Mochelaf961792006-05-19 16:54:32 -0400311 ac->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 strcpy(acpi_device_name(device), ACPI_AC_DEVICE_NAME);
313 strcpy(acpi_device_class(device), ACPI_AC_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700314 device->driver_data = ac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 result = acpi_ac_get_state(ac);
317 if (result)
318 goto end;
319
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300320#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 result = acpi_ac_add_fs(device);
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -0800322#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (result)
324 goto end;
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400325 ac->charger.name = acpi_device_bid(device);
326 ac->charger.type = POWER_SUPPLY_TYPE_MAINS;
327 ac->charger.properties = ac_props;
328 ac->charger.num_properties = ARRAY_SIZE(ac_props);
329 ac->charger.get_property = get_ac_property;
Lan Tianyuf197ac12012-07-20 13:29:16 +0800330 result = power_supply_register(&ac->device->dev, &ac->charger);
331 if (result)
332 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Len Brown4be44fc2005-08-05 00:44:28 -0400334 printk(KERN_INFO PREFIX "%s [%s] (%s)\n",
335 acpi_device_name(device), acpi_device_bid(device),
336 ac->state ? "on-line" : "off-line");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Len Brown4be44fc2005-08-05 00:44:28 -0400338 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (result) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300340#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 acpi_ac_remove_fs(device);
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -0800342#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 kfree(ac);
344 }
345
Lan Tianyu0ab5bb62013-05-08 07:28:46 +0000346 dmi_check_system(ac_dmi_table);
Patrick Mocheld550d982006-06-27 00:41:40 -0400347 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200350#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200351static int acpi_ac_resume(struct device *dev)
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800352{
353 struct acpi_ac *ac;
354 unsigned old_state;
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200355
356 if (!dev)
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800357 return -EINVAL;
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200358
359 ac = acpi_driver_data(to_acpi_device(dev));
360 if (!ac)
361 return -EINVAL;
362
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800363 old_state = ac->state;
364 if (acpi_ac_get_state(ac))
365 return 0;
366 if (old_state != ac->state)
367 kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE);
368 return 0;
369}
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200370#endif
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800371
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100372static int acpi_ac_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Len Brown4be44fc2005-08-05 00:44:28 -0400374 struct acpi_ac *ac = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400378 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200380 ac = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400382 if (ac->charger.dev)
383 power_supply_unregister(&ac->charger);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300384#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 acpi_ac_remove_fs(device);
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -0800386#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 kfree(ac);
389
Patrick Mocheld550d982006-06-27 00:41:40 -0400390 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
Len Brown4be44fc2005-08-05 00:44:28 -0400393static int __init acpi_ac_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Rich Townsend3f86b832006-07-01 11:36:54 -0400395 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Pavel Machek4d8316d2006-08-14 22:37:22 -0700397 if (acpi_disabled)
398 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300400#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400401 acpi_ac_dir = acpi_lock_ac_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (!acpi_ac_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400403 return -ENODEV;
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -0800404#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 result = acpi_bus_register_driver(&acpi_ac_driver);
407 if (result < 0) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300408#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400409 acpi_unlock_ac_dir(acpi_ac_dir);
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -0800410#endif
Patrick Mocheld550d982006-06-27 00:41:40 -0400411 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413
Patrick Mocheld550d982006-06-27 00:41:40 -0400414 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
Len Brown4be44fc2005-08-05 00:44:28 -0400417static void __exit acpi_ac_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 acpi_bus_unregister_driver(&acpi_ac_driver);
421
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300422#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400423 acpi_unlock_ac_dir(acpi_ac_dir);
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -0800424#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Patrick Mocheld550d982006-06-27 00:41:40 -0400426 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429module_init(acpi_ac_init);
430module_exit(acpi_ac_exit);