blob: 206f56d2aa3a0623e76ba8d1a12bc89f69e03ab4 [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>
28#include <linux/init.h>
29#include <linux/types.h>
30#include <linux/proc_fs.h>
31#include <linux/seq_file.h>
32#include <acpi/acpi_bus.h>
33#include <acpi/acpi_drivers.h>
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#define ACPI_AC_COMPONENT 0x00020000
36#define ACPI_AC_CLASS "ac_adapter"
37#define ACPI_AC_HID "ACPI0003"
38#define ACPI_AC_DRIVER_NAME "ACPI AC Adapter Driver"
39#define ACPI_AC_DEVICE_NAME "AC Adapter"
40#define ACPI_AC_FILE_STATE "state"
41#define ACPI_AC_NOTIFY_STATUS 0x80
42#define ACPI_AC_STATUS_OFFLINE 0x00
43#define ACPI_AC_STATUS_ONLINE 0x01
44#define ACPI_AC_STATUS_UNKNOWN 0xFF
45
46#define _COMPONENT ACPI_AC_COMPONENT
Len Brown4be44fc2005-08-05 00:44:28 -040047ACPI_MODULE_NAME("acpi_ac")
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Len Brown4be44fc2005-08-05 00:44:28 -040049 MODULE_AUTHOR("Paul Diefenbaugh");
Linus Torvalds1da177e2005-04-16 15:20:36 -070050MODULE_DESCRIPTION(ACPI_AC_DRIVER_NAME);
51MODULE_LICENSE("GPL");
52
Len Brown4be44fc2005-08-05 00:44:28 -040053static int acpi_ac_add(struct acpi_device *device);
54static int acpi_ac_remove(struct acpi_device *device, int type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static int acpi_ac_open_fs(struct inode *inode, struct file *file);
56
57static struct acpi_driver acpi_ac_driver = {
Len Brown4be44fc2005-08-05 00:44:28 -040058 .name = ACPI_AC_DRIVER_NAME,
59 .class = ACPI_AC_CLASS,
60 .ids = ACPI_AC_HID,
61 .ops = {
62 .add = acpi_ac_add,
63 .remove = acpi_ac_remove,
64 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070065};
66
67struct acpi_ac {
Len Brown4be44fc2005-08-05 00:44:28 -040068 acpi_handle handle;
Patrick Mochelaf961792006-05-19 16:54:32 -040069 struct acpi_device * device;
Len Brown4be44fc2005-08-05 00:44:28 -040070 unsigned long state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
73static struct file_operations acpi_ac_fops = {
Len Brown4be44fc2005-08-05 00:44:28 -040074 .open = acpi_ac_open_fs,
75 .read = seq_read,
76 .llseek = seq_lseek,
77 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -070078};
79
80/* --------------------------------------------------------------------------
81 AC Adapter Management
82 -------------------------------------------------------------------------- */
83
Len Brown4be44fc2005-08-05 00:44:28 -040084static int acpi_ac_get_state(struct acpi_ac *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Len Brown4be44fc2005-08-05 00:44:28 -040086 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -040090 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 status = acpi_evaluate_integer(ac->handle, "_PSR", NULL, &ac->state);
93 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -040094 ACPI_EXCEPTION((AE_INFO, status, "Error reading AC Adapter state"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 ac->state = ACPI_AC_STATUS_UNKNOWN;
Patrick Mocheld550d982006-06-27 00:41:40 -040096 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
Len Brown4be44fc2005-08-05 00:44:28 -040098
Patrick Mocheld550d982006-06-27 00:41:40 -040099 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/* --------------------------------------------------------------------------
103 FS Interface (/proc)
104 -------------------------------------------------------------------------- */
105
Len Brown4be44fc2005-08-05 00:44:28 -0400106static struct proc_dir_entry *acpi_ac_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108static int acpi_ac_seq_show(struct seq_file *seq, void *offset)
109{
Len Brown4be44fc2005-08-05 00:44:28 -0400110 struct acpi_ac *ac = (struct acpi_ac *)seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400114 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 if (acpi_ac_get_state(ac)) {
117 seq_puts(seq, "ERROR: Unable to read AC Adapter state\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400118 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
120
121 seq_puts(seq, "state: ");
122 switch (ac->state) {
123 case ACPI_AC_STATUS_OFFLINE:
124 seq_puts(seq, "off-line\n");
125 break;
126 case ACPI_AC_STATUS_ONLINE:
127 seq_puts(seq, "on-line\n");
128 break;
129 default:
130 seq_puts(seq, "unknown\n");
131 break;
132 }
133
Patrick Mocheld550d982006-06-27 00:41:40 -0400134 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
Len Brown4be44fc2005-08-05 00:44:28 -0400136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137static int acpi_ac_open_fs(struct inode *inode, struct file *file)
138{
139 return single_open(file, acpi_ac_seq_show, PDE(inode)->data);
140}
141
Len Brown4be44fc2005-08-05 00:44:28 -0400142static int acpi_ac_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Len Brown4be44fc2005-08-05 00:44:28 -0400144 struct proc_dir_entry *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 if (!acpi_device_dir(device)) {
148 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400149 acpi_ac_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400151 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 acpi_device_dir(device)->owner = THIS_MODULE;
153 }
154
155 /* 'state' [R] */
156 entry = create_proc_entry(ACPI_AC_FILE_STATE,
Len Brown4be44fc2005-08-05 00:44:28 -0400157 S_IRUGO, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400159 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 else {
161 entry->proc_fops = &acpi_ac_fops;
162 entry->data = acpi_driver_data(device);
163 entry->owner = THIS_MODULE;
164 }
165
Patrick Mocheld550d982006-06-27 00:41:40 -0400166 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
Len Brown4be44fc2005-08-05 00:44:28 -0400169static int acpi_ac_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 if (acpi_device_dir(device)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400173 remove_proc_entry(ACPI_AC_FILE_STATE, acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 remove_proc_entry(acpi_device_bid(device), acpi_ac_dir);
176 acpi_device_dir(device) = NULL;
177 }
178
Patrick Mocheld550d982006-06-27 00:41:40 -0400179 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182/* --------------------------------------------------------------------------
183 Driver Model
184 -------------------------------------------------------------------------- */
185
Len Brown4be44fc2005-08-05 00:44:28 -0400186static void acpi_ac_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Len Brown4be44fc2005-08-05 00:44:28 -0400188 struct acpi_ac *ac = (struct acpi_ac *)data;
189 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400193 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Patrick Mochelaf961792006-05-19 16:54:32 -0400195 device = ac->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 switch (event) {
197 case ACPI_AC_NOTIFY_STATUS:
198 acpi_ac_get_state(ac);
199 acpi_bus_generate_event(device, event, (u32) ac->state);
200 break;
201 default:
202 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400203 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 break;
205 }
206
Patrick Mocheld550d982006-06-27 00:41:40 -0400207 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
Len Brown4be44fc2005-08-05 00:44:28 -0400210static int acpi_ac_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Len Brown4be44fc2005-08-05 00:44:28 -0400212 int result = 0;
213 acpi_status status = AE_OK;
214 struct acpi_ac *ac = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400218 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 ac = kmalloc(sizeof(struct acpi_ac), GFP_KERNEL);
221 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400222 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 memset(ac, 0, sizeof(struct acpi_ac));
224
225 ac->handle = device->handle;
Patrick Mochelaf961792006-05-19 16:54:32 -0400226 ac->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 strcpy(acpi_device_name(device), ACPI_AC_DEVICE_NAME);
228 strcpy(acpi_device_class(device), ACPI_AC_CLASS);
229 acpi_driver_data(device) = ac;
230
231 result = acpi_ac_get_state(ac);
232 if (result)
233 goto end;
234
235 result = acpi_ac_add_fs(device);
236 if (result)
237 goto end;
238
239 status = acpi_install_notify_handler(ac->handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400240 ACPI_DEVICE_NOTIFY, acpi_ac_notify,
241 ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 result = -ENODEV;
244 goto end;
245 }
246
Len Brown4be44fc2005-08-05 00:44:28 -0400247 printk(KERN_INFO PREFIX "%s [%s] (%s)\n",
248 acpi_device_name(device), acpi_device_bid(device),
249 ac->state ? "on-line" : "off-line");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Len Brown4be44fc2005-08-05 00:44:28 -0400251 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (result) {
253 acpi_ac_remove_fs(device);
254 kfree(ac);
255 }
256
Patrick Mocheld550d982006-06-27 00:41:40 -0400257 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
Len Brown4be44fc2005-08-05 00:44:28 -0400260static int acpi_ac_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Len Brown4be44fc2005-08-05 00:44:28 -0400262 acpi_status status = AE_OK;
263 struct acpi_ac *ac = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400267 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Len Brown4be44fc2005-08-05 00:44:28 -0400269 ac = (struct acpi_ac *)acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 status = acpi_remove_notify_handler(ac->handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400272 ACPI_DEVICE_NOTIFY, acpi_ac_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 acpi_ac_remove_fs(device);
275
276 kfree(ac);
277
Patrick Mocheld550d982006-06-27 00:41:40 -0400278 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
Len Brown4be44fc2005-08-05 00:44:28 -0400281static int __init acpi_ac_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Len Brown4be44fc2005-08-05 00:44:28 -0400283 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 acpi_ac_dir = proc_mkdir(ACPI_AC_CLASS, acpi_root_dir);
287 if (!acpi_ac_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400288 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 acpi_ac_dir->owner = THIS_MODULE;
290
291 result = acpi_bus_register_driver(&acpi_ac_driver);
292 if (result < 0) {
293 remove_proc_entry(ACPI_AC_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -0400294 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
296
Patrick Mocheld550d982006-06-27 00:41:40 -0400297 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
Len Brown4be44fc2005-08-05 00:44:28 -0400300static void __exit acpi_ac_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 acpi_bus_unregister_driver(&acpi_ac_driver);
304
305 remove_proc_entry(ACPI_AC_CLASS, acpi_root_dir);
306
Patrick Mocheld550d982006-06-27 00:41:40 -0400307 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310module_init(acpi_ac_init);
311module_exit(acpi_ac_exit);