blob: d5fdd36190cce3f385011b30a1f5c729a5b6a4dd [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>
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030031#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/proc_fs.h>
33#include <linux/seq_file.h>
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -080034#endif
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +040035#include <linux/power_supply.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <acpi/acpi_bus.h>
37#include <acpi/acpi_drivers.h>
38
Len Browna192a952009-07-28 16:45:54 -040039#define PREFIX "ACPI: "
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define ACPI_AC_CLASS "ac_adapter"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#define ACPI_AC_DEVICE_NAME "AC Adapter"
43#define ACPI_AC_FILE_STATE "state"
44#define ACPI_AC_NOTIFY_STATUS 0x80
45#define ACPI_AC_STATUS_OFFLINE 0x00
46#define ACPI_AC_STATUS_ONLINE 0x01
47#define ACPI_AC_STATUS_UNKNOWN 0xFF
48
49#define _COMPONENT ACPI_AC_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050050ACPI_MODULE_NAME("ac");
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Len Brownf52fd662007-02-12 22:42:12 -050052MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050053MODULE_DESCRIPTION("ACPI AC Adapter Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070054MODULE_LICENSE("GPL");
55
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030056#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -040057extern struct proc_dir_entry *acpi_lock_ac_dir(void);
58extern void *acpi_unlock_ac_dir(struct proc_dir_entry *acpi_ac_dir);
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -080059static int acpi_ac_open_fs(struct inode *inode, struct file *file);
60#endif
Rich Townsend3f86b832006-07-01 11:36:54 -040061
Len Brown4be44fc2005-08-05 00:44:28 -040062static int acpi_ac_add(struct acpi_device *device);
63static int acpi_ac_remove(struct acpi_device *device, int type);
Bjorn Helgaas48fe1122009-04-30 09:35:42 -060064static void acpi_ac_notify(struct acpi_device *device, u32 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Tobias Klauserb299c222008-04-21 22:24:53 +000066static const struct acpi_device_id ac_device_ids[] = {
Thomas Renninger1ba90e32007-07-23 14:44:41 +020067 {"ACPI0003", 0},
68 {"", 0},
69};
70MODULE_DEVICE_TABLE(acpi, ac_device_ids);
71
Rafael J. Wysocki90692402012-08-09 23:00:02 +020072#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockiccda7062012-06-27 23:26:35 +020073static int acpi_ac_resume(struct device *dev);
Rafael J. Wysocki90692402012-08-09 23:00:02 +020074#endif
Rafael J. Wysockiccda7062012-06-27 23:26:35 +020075static SIMPLE_DEV_PM_OPS(acpi_ac_pm, NULL, acpi_ac_resume);
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static struct acpi_driver acpi_ac_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050078 .name = "ac",
Len Brown4be44fc2005-08-05 00:44:28 -040079 .class = ACPI_AC_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020080 .ids = ac_device_ids,
Bjorn Helgaas48fe1122009-04-30 09:35:42 -060081 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
Len Brown4be44fc2005-08-05 00:44:28 -040082 .ops = {
83 .add = acpi_ac_add,
84 .remove = acpi_ac_remove,
Bjorn Helgaas48fe1122009-04-30 09:35:42 -060085 .notify = acpi_ac_notify,
Len Brown4be44fc2005-08-05 00:44:28 -040086 },
Rafael J. Wysockiccda7062012-06-27 23:26:35 +020087 .drv.pm = &acpi_ac_pm,
Linus Torvalds1da177e2005-04-16 15:20:36 -070088};
89
90struct acpi_ac {
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +040091 struct power_supply charger;
Patrick Mochelaf961792006-05-19 16:54:32 -040092 struct acpi_device * device;
Matthew Wilcox27663c52008-10-10 02:22:59 -040093 unsigned long long state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094};
95
Phil Carmody497888c2011-07-14 15:07:13 +030096#define to_acpi_ac(x) container_of(x, struct acpi_ac, charger)
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +040097
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030098#ifdef CONFIG_ACPI_PROCFS_POWER
Arjan van de Vend7508032006-07-04 13:06:00 -040099static const struct file_operations acpi_ac_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700100 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400101 .open = acpi_ac_open_fs,
102 .read = seq_read,
103 .llseek = seq_lseek,
104 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -0800106#endif
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/* --------------------------------------------------------------------------
109 AC Adapter Management
110 -------------------------------------------------------------------------- */
111
Len Brown4be44fc2005-08-05 00:44:28 -0400112static int acpi_ac_get_state(struct acpi_ac *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Len Brown4be44fc2005-08-05 00:44:28 -0400114 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400118 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Patrick Mochela6ba5eb2006-05-19 16:54:41 -0400120 status = acpi_evaluate_integer(ac->device->handle, "_PSR", NULL, &ac->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400122 ACPI_EXCEPTION((AE_INFO, status, "Error reading AC Adapter state"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 ac->state = ACPI_AC_STATUS_UNKNOWN;
Patrick Mocheld550d982006-06-27 00:41:40 -0400124 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
Len Brown4be44fc2005-08-05 00:44:28 -0400126
Patrick Mocheld550d982006-06-27 00:41:40 -0400127 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Zhang Rui3151dbb2010-12-08 10:40:45 +0800130/* --------------------------------------------------------------------------
131 sysfs I/F
132 -------------------------------------------------------------------------- */
133static int get_ac_property(struct power_supply *psy,
134 enum power_supply_property psp,
135 union power_supply_propval *val)
136{
137 struct acpi_ac *ac = to_acpi_ac(psy);
138
139 if (!ac)
140 return -ENODEV;
141
142 if (acpi_ac_get_state(ac))
143 return -ENODEV;
144
145 switch (psp) {
146 case POWER_SUPPLY_PROP_ONLINE:
147 val->intval = ac->state;
148 break;
149 default:
150 return -EINVAL;
151 }
152 return 0;
153}
154
155static enum power_supply_property ac_props[] = {
156 POWER_SUPPLY_PROP_ONLINE,
157};
158
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300159#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160/* --------------------------------------------------------------------------
161 FS Interface (/proc)
162 -------------------------------------------------------------------------- */
163
Len Brown4be44fc2005-08-05 00:44:28 -0400164static struct proc_dir_entry *acpi_ac_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166static int acpi_ac_seq_show(struct seq_file *seq, void *offset)
167{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200168 struct acpi_ac *ac = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400172 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 if (acpi_ac_get_state(ac)) {
175 seq_puts(seq, "ERROR: Unable to read AC Adapter state\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400176 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178
179 seq_puts(seq, "state: ");
180 switch (ac->state) {
181 case ACPI_AC_STATUS_OFFLINE:
182 seq_puts(seq, "off-line\n");
183 break;
184 case ACPI_AC_STATUS_ONLINE:
185 seq_puts(seq, "on-line\n");
186 break;
187 default:
188 seq_puts(seq, "unknown\n");
189 break;
190 }
191
Patrick Mocheld550d982006-06-27 00:41:40 -0400192 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
Len Brown4be44fc2005-08-05 00:44:28 -0400194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195static int acpi_ac_open_fs(struct inode *inode, struct file *file)
196{
197 return single_open(file, acpi_ac_seq_show, PDE(inode)->data);
198}
199
Len Brown4be44fc2005-08-05 00:44:28 -0400200static int acpi_ac_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Len Brown4be44fc2005-08-05 00:44:28 -0400202 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Zhang Rui6d855fc2011-01-10 11:16:30 +0800204 printk(KERN_WARNING PREFIX "Deprecated procfs I/F for AC is loaded,"
205 " please retry with CONFIG_ACPI_PROCFS_POWER cleared\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (!acpi_device_dir(device)) {
207 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400208 acpi_ac_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400210 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212
213 /* 'state' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700214 entry = proc_create_data(ACPI_AC_FILE_STATE,
215 S_IRUGO, acpi_device_dir(device),
216 &acpi_ac_fops, acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400218 return -ENODEV;
Patrick Mocheld550d982006-06-27 00:41:40 -0400219 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Len Brown4be44fc2005-08-05 00:44:28 -0400222static int acpi_ac_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 if (acpi_device_dir(device)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400226 remove_proc_entry(ACPI_AC_FILE_STATE, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 remove_proc_entry(acpi_device_bid(device), acpi_ac_dir);
229 acpi_device_dir(device) = NULL;
230 }
231
Patrick Mocheld550d982006-06-27 00:41:40 -0400232 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -0800234#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236/* --------------------------------------------------------------------------
237 Driver Model
238 -------------------------------------------------------------------------- */
239
Bjorn Helgaas48fe1122009-04-30 09:35:42 -0600240static void acpi_ac_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Bjorn Helgaas48fe1122009-04-30 09:35:42 -0600242 struct acpi_ac *ac = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400246 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 switch (event) {
Len Brownf163ff52008-06-14 01:26:37 -0400249 default:
250 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
251 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 case ACPI_AC_NOTIFY_STATUS:
Christian Lupien03d782522004-08-19 01:26:00 -0400253 case ACPI_NOTIFY_BUS_CHECK:
254 case ACPI_NOTIFY_DEVICE_CHECK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 acpi_ac_get_state(ac);
Len Brown14e04fb2007-08-23 15:20:26 -0400256 acpi_bus_generate_proc_event(device, event, (u32) ac->state);
Zhang Rui962ce8c2007-08-23 01:24:31 +0800257 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100258 dev_name(&device->dev), event,
Zhang Rui962ce8c2007-08-23 01:24:31 +0800259 (u32) ac->state);
Mark Langsdorf68b92b52009-08-11 15:15:42 -0500260 acpi_notifier_call_chain(device, event, (u32) ac->state);
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400261 kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
263
Patrick Mocheld550d982006-06-27 00:41:40 -0400264 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
Len Brown4be44fc2005-08-05 00:44:28 -0400267static int acpi_ac_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Len Brown4be44fc2005-08-05 00:44:28 -0400269 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400270 struct acpi_ac *ac = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400274 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Burman Yan36bcbec2006-12-19 12:56:11 -0800276 ac = kzalloc(sizeof(struct acpi_ac), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400278 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Patrick Mochelaf961792006-05-19 16:54:32 -0400280 ac->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 strcpy(acpi_device_name(device), ACPI_AC_DEVICE_NAME);
282 strcpy(acpi_device_class(device), ACPI_AC_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700283 device->driver_data = ac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 result = acpi_ac_get_state(ac);
286 if (result)
287 goto end;
288
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300289#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 result = acpi_ac_add_fs(device);
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -0800291#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (result)
293 goto end;
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400294 ac->charger.name = acpi_device_bid(device);
295 ac->charger.type = POWER_SUPPLY_TYPE_MAINS;
296 ac->charger.properties = ac_props;
297 ac->charger.num_properties = ARRAY_SIZE(ac_props);
298 ac->charger.get_property = get_ac_property;
Lan Tianyuf197ac12012-07-20 13:29:16 +0800299 result = power_supply_register(&ac->device->dev, &ac->charger);
300 if (result)
301 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Len Brown4be44fc2005-08-05 00:44:28 -0400303 printk(KERN_INFO PREFIX "%s [%s] (%s)\n",
304 acpi_device_name(device), acpi_device_bid(device),
305 ac->state ? "on-line" : "off-line");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Len Brown4be44fc2005-08-05 00:44:28 -0400307 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (result) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300309#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 acpi_ac_remove_fs(device);
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -0800311#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 kfree(ac);
313 }
314
Patrick Mocheld550d982006-06-27 00:41:40 -0400315 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200318#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200319static int acpi_ac_resume(struct device *dev)
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800320{
321 struct acpi_ac *ac;
322 unsigned old_state;
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200323
324 if (!dev)
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800325 return -EINVAL;
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200326
327 ac = acpi_driver_data(to_acpi_device(dev));
328 if (!ac)
329 return -EINVAL;
330
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800331 old_state = ac->state;
332 if (acpi_ac_get_state(ac))
333 return 0;
334 if (old_state != ac->state)
335 kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE);
336 return 0;
337}
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200338#endif
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800339
Len Brown4be44fc2005-08-05 00:44:28 -0400340static int acpi_ac_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
Len Brown4be44fc2005-08-05 00:44:28 -0400342 struct acpi_ac *ac = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400346 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200348 ac = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400350 if (ac->charger.dev)
351 power_supply_unregister(&ac->charger);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300352#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 acpi_ac_remove_fs(device);
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -0800354#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 kfree(ac);
357
Patrick Mocheld550d982006-06-27 00:41:40 -0400358 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
Len Brown4be44fc2005-08-05 00:44:28 -0400361static int __init acpi_ac_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Rich Townsend3f86b832006-07-01 11:36:54 -0400363 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Pavel Machek4d8316d2006-08-14 22:37:22 -0700365 if (acpi_disabled)
366 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300368#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400369 acpi_ac_dir = acpi_lock_ac_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (!acpi_ac_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400371 return -ENODEV;
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -0800372#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 result = acpi_bus_register_driver(&acpi_ac_driver);
375 if (result < 0) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300376#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400377 acpi_unlock_ac_dir(acpi_ac_dir);
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -0800378#endif
Patrick Mocheld550d982006-06-27 00:41:40 -0400379 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381
Patrick Mocheld550d982006-06-27 00:41:40 -0400382 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
Len Brown4be44fc2005-08-05 00:44:28 -0400385static void __exit acpi_ac_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 acpi_bus_unregister_driver(&acpi_ac_driver);
389
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300390#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400391 acpi_unlock_ac_dir(acpi_ac_dir);
Andrey Borzenkov8a246ee2007-11-14 17:00:37 -0800392#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Patrick Mocheld550d982006-06-27 00:41:40 -0400394 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397module_init(acpi_ac_init);
398module_exit(acpi_ac_exit);