]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/acpi/ac.c
ACPI: allow drivers to request both device and system notify events
[mirror_ubuntu-bionic-kernel.git] / drivers / acpi / ac.c
CommitLineData
1da177e4
LT
1/*
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>
fdcedbba 30#ifdef CONFIG_ACPI_PROCFS_POWER
1da177e4
LT
31#include <linux/proc_fs.h>
32#include <linux/seq_file.h>
8a246ee4 33#endif
97749cd9 34#ifdef CONFIG_ACPI_SYSFS_POWER
d5b4a3d0 35#include <linux/power_supply.h>
97749cd9 36#endif
1da177e4
LT
37#include <acpi/acpi_bus.h>
38#include <acpi/acpi_drivers.h>
39
1da177e4 40#define ACPI_AC_CLASS "ac_adapter"
1da177e4
LT
41#define ACPI_AC_DEVICE_NAME "AC Adapter"
42#define ACPI_AC_FILE_STATE "state"
43#define ACPI_AC_NOTIFY_STATUS 0x80
44#define ACPI_AC_STATUS_OFFLINE 0x00
45#define ACPI_AC_STATUS_ONLINE 0x01
46#define ACPI_AC_STATUS_UNKNOWN 0xFF
47
48#define _COMPONENT ACPI_AC_COMPONENT
f52fd66d 49ACPI_MODULE_NAME("ac");
1da177e4 50
f52fd66d 51MODULE_AUTHOR("Paul Diefenbaugh");
7cda93e0 52MODULE_DESCRIPTION("ACPI AC Adapter Driver");
1da177e4
LT
53MODULE_LICENSE("GPL");
54
fdcedbba 55#ifdef CONFIG_ACPI_PROCFS_POWER
3f86b832
RT
56extern struct proc_dir_entry *acpi_lock_ac_dir(void);
57extern void *acpi_unlock_ac_dir(struct proc_dir_entry *acpi_ac_dir);
8a246ee4
AB
58static int acpi_ac_open_fs(struct inode *inode, struct file *file);
59#endif
3f86b832 60
4be44fcd
LB
61static int acpi_ac_add(struct acpi_device *device);
62static int acpi_ac_remove(struct acpi_device *device, int type);
5bfeca31 63static int acpi_ac_resume(struct acpi_device *device);
1da177e4 64
b299c22c 65static const struct acpi_device_id ac_device_ids[] = {
1ba90e3a
TR
66 {"ACPI0003", 0},
67 {"", 0},
68};
69MODULE_DEVICE_TABLE(acpi, ac_device_ids);
70
1da177e4 71static struct acpi_driver acpi_ac_driver = {
c2b6705b 72 .name = "ac",
4be44fcd 73 .class = ACPI_AC_CLASS,
1ba90e3a 74 .ids = ac_device_ids,
4be44fcd
LB
75 .ops = {
76 .add = acpi_ac_add,
77 .remove = acpi_ac_remove,
5bfeca31 78 .resume = acpi_ac_resume,
4be44fcd 79 },
1da177e4
LT
80};
81
82struct acpi_ac {
97749cd9 83#ifdef CONFIG_ACPI_SYSFS_POWER
d5b4a3d0 84 struct power_supply charger;
97749cd9 85#endif
af96179a 86 struct acpi_device * device;
27663c58 87 unsigned long long state;
1da177e4
LT
88};
89
d5b4a3d0
AS
90#define to_acpi_ac(x) container_of(x, struct acpi_ac, charger);
91
fdcedbba 92#ifdef CONFIG_ACPI_PROCFS_POWER
d7508032 93static const struct file_operations acpi_ac_fops = {
cf7acfab 94 .owner = THIS_MODULE,
4be44fcd
LB
95 .open = acpi_ac_open_fs,
96 .read = seq_read,
97 .llseek = seq_lseek,
98 .release = single_release,
1da177e4 99};
8a246ee4 100#endif
97749cd9 101#ifdef CONFIG_ACPI_SYSFS_POWER
d5b4a3d0
AS
102static int get_ac_property(struct power_supply *psy,
103 enum power_supply_property psp,
104 union power_supply_propval *val)
105{
106 struct acpi_ac *ac = to_acpi_ac(psy);
107 switch (psp) {
108 case POWER_SUPPLY_PROP_ONLINE:
109 val->intval = ac->state;
110 break;
111 default:
112 return -EINVAL;
113 }
114 return 0;
115}
116
117static enum power_supply_property ac_props[] = {
118 POWER_SUPPLY_PROP_ONLINE,
119};
97749cd9 120#endif
1da177e4
LT
121/* --------------------------------------------------------------------------
122 AC Adapter Management
123 -------------------------------------------------------------------------- */
124
4be44fcd 125static int acpi_ac_get_state(struct acpi_ac *ac)
1da177e4 126{
4be44fcd 127 acpi_status status = AE_OK;
1da177e4 128
1da177e4
LT
129
130 if (!ac)
d550d98d 131 return -EINVAL;
1da177e4 132
a6ba5ebe 133 status = acpi_evaluate_integer(ac->device->handle, "_PSR", NULL, &ac->state);
1da177e4 134 if (ACPI_FAILURE(status)) {
a6fc6720 135 ACPI_EXCEPTION((AE_INFO, status, "Error reading AC Adapter state"));
1da177e4 136 ac->state = ACPI_AC_STATUS_UNKNOWN;
d550d98d 137 return -ENODEV;
1da177e4 138 }
4be44fcd 139
d550d98d 140 return 0;
1da177e4
LT
141}
142
fdcedbba 143#ifdef CONFIG_ACPI_PROCFS_POWER
1da177e4
LT
144/* --------------------------------------------------------------------------
145 FS Interface (/proc)
146 -------------------------------------------------------------------------- */
147
4be44fcd 148static struct proc_dir_entry *acpi_ac_dir;
1da177e4
LT
149
150static int acpi_ac_seq_show(struct seq_file *seq, void *offset)
151{
50dd0969 152 struct acpi_ac *ac = seq->private;
1da177e4 153
1da177e4
LT
154
155 if (!ac)
d550d98d 156 return 0;
1da177e4
LT
157
158 if (acpi_ac_get_state(ac)) {
159 seq_puts(seq, "ERROR: Unable to read AC Adapter state\n");
d550d98d 160 return 0;
1da177e4
LT
161 }
162
163 seq_puts(seq, "state: ");
164 switch (ac->state) {
165 case ACPI_AC_STATUS_OFFLINE:
166 seq_puts(seq, "off-line\n");
167 break;
168 case ACPI_AC_STATUS_ONLINE:
169 seq_puts(seq, "on-line\n");
170 break;
171 default:
172 seq_puts(seq, "unknown\n");
173 break;
174 }
175
d550d98d 176 return 0;
1da177e4 177}
4be44fcd 178
1da177e4
LT
179static int acpi_ac_open_fs(struct inode *inode, struct file *file)
180{
181 return single_open(file, acpi_ac_seq_show, PDE(inode)->data);
182}
183
4be44fcd 184static int acpi_ac_add_fs(struct acpi_device *device)
1da177e4 185{
4be44fcd 186 struct proc_dir_entry *entry = NULL;
1da177e4 187
1da177e4
LT
188
189 if (!acpi_device_dir(device)) {
190 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
4be44fcd 191 acpi_ac_dir);
1da177e4 192 if (!acpi_device_dir(device))
d550d98d 193 return -ENODEV;
1da177e4
LT
194 }
195
196 /* 'state' [R] */
cf7acfab
DL
197 entry = proc_create_data(ACPI_AC_FILE_STATE,
198 S_IRUGO, acpi_device_dir(device),
199 &acpi_ac_fops, acpi_driver_data(device));
1da177e4 200 if (!entry)
d550d98d 201 return -ENODEV;
d550d98d 202 return 0;
1da177e4
LT
203}
204
4be44fcd 205static int acpi_ac_remove_fs(struct acpi_device *device)
1da177e4 206{
1da177e4
LT
207
208 if (acpi_device_dir(device)) {
4be44fcd 209 remove_proc_entry(ACPI_AC_FILE_STATE, acpi_device_dir(device));
1da177e4
LT
210
211 remove_proc_entry(acpi_device_bid(device), acpi_ac_dir);
212 acpi_device_dir(device) = NULL;
213 }
214
d550d98d 215 return 0;
1da177e4 216}
8a246ee4 217#endif
1da177e4 218
1da177e4
LT
219/* --------------------------------------------------------------------------
220 Driver Model
221 -------------------------------------------------------------------------- */
222
4be44fcd 223static void acpi_ac_notify(acpi_handle handle, u32 event, void *data)
1da177e4 224{
50dd0969 225 struct acpi_ac *ac = data;
4be44fcd 226 struct acpi_device *device = NULL;
1da177e4 227
1da177e4
LT
228
229 if (!ac)
d550d98d 230 return;
1da177e4 231
af96179a 232 device = ac->device;
1da177e4 233 switch (event) {
f163ff51
LB
234 default:
235 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
236 "Unsupported event [0x%x]\n", event));
1da177e4 237 case ACPI_AC_NOTIFY_STATUS:
03d78252
CL
238 case ACPI_NOTIFY_BUS_CHECK:
239 case ACPI_NOTIFY_DEVICE_CHECK:
1da177e4 240 acpi_ac_get_state(ac);
14e04fb3 241 acpi_bus_generate_proc_event(device, event, (u32) ac->state);
962ce8ca 242 acpi_bus_generate_netlink_event(device->pnp.device_class,
0794469d 243 dev_name(&device->dev), event,
962ce8ca 244 (u32) ac->state);
97749cd9 245#ifdef CONFIG_ACPI_SYSFS_POWER
d5b4a3d0 246 kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE);
97749cd9 247#endif
1da177e4
LT
248 }
249
d550d98d 250 return;
1da177e4
LT
251}
252
4be44fcd 253static int acpi_ac_add(struct acpi_device *device)
1da177e4 254{
4be44fcd
LB
255 int result = 0;
256 acpi_status status = AE_OK;
257 struct acpi_ac *ac = NULL;
1da177e4 258
1da177e4
LT
259
260 if (!device)
d550d98d 261 return -EINVAL;
1da177e4 262
36bcbec7 263 ac = kzalloc(sizeof(struct acpi_ac), GFP_KERNEL);
1da177e4 264 if (!ac)
d550d98d 265 return -ENOMEM;
1da177e4 266
af96179a 267 ac->device = device;
1da177e4
LT
268 strcpy(acpi_device_name(device), ACPI_AC_DEVICE_NAME);
269 strcpy(acpi_device_class(device), ACPI_AC_CLASS);
db89b4f0 270 device->driver_data = ac;
1da177e4
LT
271
272 result = acpi_ac_get_state(ac);
273 if (result)
274 goto end;
275
fdcedbba 276#ifdef CONFIG_ACPI_PROCFS_POWER
1da177e4 277 result = acpi_ac_add_fs(device);
8a246ee4 278#endif
1da177e4
LT
279 if (result)
280 goto end;
97749cd9 281#ifdef CONFIG_ACPI_SYSFS_POWER
d5b4a3d0
AS
282 ac->charger.name = acpi_device_bid(device);
283 ac->charger.type = POWER_SUPPLY_TYPE_MAINS;
284 ac->charger.properties = ac_props;
285 ac->charger.num_properties = ARRAY_SIZE(ac_props);
286 ac->charger.get_property = get_ac_property;
287 power_supply_register(&ac->device->dev, &ac->charger);
97749cd9 288#endif
a6ba5ebe 289 status = acpi_install_notify_handler(device->handle,
03d78252 290 ACPI_ALL_NOTIFY, acpi_ac_notify,
4be44fcd 291 ac);
1da177e4 292 if (ACPI_FAILURE(status)) {
1da177e4
LT
293 result = -ENODEV;
294 goto end;
295 }
296
4be44fcd
LB
297 printk(KERN_INFO PREFIX "%s [%s] (%s)\n",
298 acpi_device_name(device), acpi_device_bid(device),
299 ac->state ? "on-line" : "off-line");
1da177e4 300
4be44fcd 301 end:
1da177e4 302 if (result) {
fdcedbba 303#ifdef CONFIG_ACPI_PROCFS_POWER
1da177e4 304 acpi_ac_remove_fs(device);
8a246ee4 305#endif
1da177e4
LT
306 kfree(ac);
307 }
308
d550d98d 309 return result;
1da177e4
LT
310}
311
5bfeca31
AS
312static int acpi_ac_resume(struct acpi_device *device)
313{
314 struct acpi_ac *ac;
315 unsigned old_state;
316 if (!device || !acpi_driver_data(device))
317 return -EINVAL;
318 ac = acpi_driver_data(device);
319 old_state = ac->state;
320 if (acpi_ac_get_state(ac))
321 return 0;
97749cd9 322#ifdef CONFIG_ACPI_SYSFS_POWER
5bfeca31
AS
323 if (old_state != ac->state)
324 kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE);
97749cd9 325#endif
5bfeca31
AS
326 return 0;
327}
328
4be44fcd 329static int acpi_ac_remove(struct acpi_device *device, int type)
1da177e4 330{
4be44fcd
LB
331 acpi_status status = AE_OK;
332 struct acpi_ac *ac = NULL;
1da177e4 333
1da177e4
LT
334
335 if (!device || !acpi_driver_data(device))
d550d98d 336 return -EINVAL;
1da177e4 337
50dd0969 338 ac = acpi_driver_data(device);
1da177e4 339
a6ba5ebe 340 status = acpi_remove_notify_handler(device->handle,
03d78252 341 ACPI_ALL_NOTIFY, acpi_ac_notify);
97749cd9 342#ifdef CONFIG_ACPI_SYSFS_POWER
d5b4a3d0
AS
343 if (ac->charger.dev)
344 power_supply_unregister(&ac->charger);
97749cd9 345#endif
fdcedbba 346#ifdef CONFIG_ACPI_PROCFS_POWER
1da177e4 347 acpi_ac_remove_fs(device);
8a246ee4 348#endif
1da177e4
LT
349
350 kfree(ac);
351
d550d98d 352 return 0;
1da177e4
LT
353}
354
4be44fcd 355static int __init acpi_ac_init(void)
1da177e4 356{
3f86b832 357 int result;
1da177e4 358
4d8316d5
PM
359 if (acpi_disabled)
360 return -ENODEV;
1da177e4 361
fdcedbba 362#ifdef CONFIG_ACPI_PROCFS_POWER
3f86b832 363 acpi_ac_dir = acpi_lock_ac_dir();
1da177e4 364 if (!acpi_ac_dir)
d550d98d 365 return -ENODEV;
8a246ee4 366#endif
1da177e4
LT
367
368 result = acpi_bus_register_driver(&acpi_ac_driver);
369 if (result < 0) {
fdcedbba 370#ifdef CONFIG_ACPI_PROCFS_POWER
3f86b832 371 acpi_unlock_ac_dir(acpi_ac_dir);
8a246ee4 372#endif
d550d98d 373 return -ENODEV;
1da177e4
LT
374 }
375
d550d98d 376 return 0;
1da177e4
LT
377}
378
4be44fcd 379static void __exit acpi_ac_exit(void)
1da177e4 380{
1da177e4
LT
381
382 acpi_bus_unregister_driver(&acpi_ac_driver);
383
fdcedbba 384#ifdef CONFIG_ACPI_PROCFS_POWER
3f86b832 385 acpi_unlock_ac_dir(acpi_ac_dir);
8a246ee4 386#endif
1da177e4 387
d550d98d 388 return;
1da177e4
LT
389}
390
1da177e4
LT
391module_init(acpi_ac_init);
392module_exit(acpi_ac_exit);