Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 28 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/init.h> |
| 30 | #include <linux/types.h> |
Lan Tianyu | 0ab5bb6 | 2013-05-08 07:28:46 +0000 | [diff] [blame] | 31 | #include <linux/dmi.h> |
| 32 | #include <linux/delay.h> |
Lan Tianyu | e63f6e2 | 2014-07-07 01:13:46 +0200 | [diff] [blame] | 33 | #ifdef CONFIG_ACPI_PROCFS_POWER |
| 34 | #include <linux/proc_fs.h> |
| 35 | #include <linux/seq_file.h> |
| 36 | #endif |
Zhang Rui | cc8ef52 | 2013-09-25 20:39:45 +0800 | [diff] [blame] | 37 | #include <linux/platform_device.h> |
Alexey Starikovskiy | d5b4a3d | 2007-09-26 19:44:06 +0400 | [diff] [blame] | 38 | #include <linux/power_supply.h> |
Lv Zheng | 8b48463 | 2013-12-03 08:49:16 +0800 | [diff] [blame] | 39 | #include <linux/acpi.h> |
Alexander Mezin | 4eee4f0 | 2014-03-12 00:58:48 +0700 | [diff] [blame] | 40 | #include "battery.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Len Brown | a192a95 | 2009-07-28 16:45:54 -0400 | [diff] [blame] | 42 | #define PREFIX "ACPI: " |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #define ACPI_AC_CLASS "ac_adapter" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #define ACPI_AC_DEVICE_NAME "AC Adapter" |
| 46 | #define ACPI_AC_FILE_STATE "state" |
| 47 | #define ACPI_AC_NOTIFY_STATUS 0x80 |
| 48 | #define ACPI_AC_STATUS_OFFLINE 0x00 |
| 49 | #define ACPI_AC_STATUS_ONLINE 0x01 |
| 50 | #define ACPI_AC_STATUS_UNKNOWN 0xFF |
| 51 | |
| 52 | #define _COMPONENT ACPI_AC_COMPONENT |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 53 | ACPI_MODULE_NAME("ac"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 55 | MODULE_AUTHOR("Paul Diefenbaugh"); |
Len Brown | 7cda93e | 2007-02-12 23:50:02 -0500 | [diff] [blame] | 56 | MODULE_DESCRIPTION("ACPI AC Adapter Driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | MODULE_LICENSE("GPL"); |
| 58 | |
Lan Tianyu | e63f6e2 | 2014-07-07 01:13:46 +0200 | [diff] [blame] | 59 | |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 60 | static int acpi_ac_add(struct acpi_device *device); |
| 61 | static int acpi_ac_remove(struct acpi_device *device); |
| 62 | static void acpi_ac_notify(struct acpi_device *device, u32 event); |
| 63 | |
| 64 | static const struct acpi_device_id ac_device_ids[] = { |
| 65 | {"ACPI0003", 0}, |
| 66 | {"", 0}, |
| 67 | }; |
| 68 | MODULE_DEVICE_TABLE(acpi, ac_device_ids); |
| 69 | |
| 70 | #ifdef CONFIG_PM_SLEEP |
| 71 | static int acpi_ac_resume(struct device *dev); |
| 72 | #endif |
| 73 | static SIMPLE_DEV_PM_OPS(acpi_ac_pm, NULL, acpi_ac_resume); |
| 74 | |
Lan Tianyu | e63f6e2 | 2014-07-07 01:13:46 +0200 | [diff] [blame] | 75 | #ifdef CONFIG_ACPI_PROCFS_POWER |
| 76 | extern struct proc_dir_entry *acpi_lock_ac_dir(void); |
| 77 | extern void *acpi_unlock_ac_dir(struct proc_dir_entry *acpi_ac_dir); |
| 78 | static int acpi_ac_open_fs(struct inode *inode, struct file *file); |
| 79 | #endif |
| 80 | |
| 81 | |
Lan Tianyu | 0ab5bb6 | 2013-05-08 07:28:46 +0000 | [diff] [blame] | 82 | static int ac_sleep_before_get_state_ms; |
| 83 | |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 84 | static struct acpi_driver acpi_ac_driver = { |
| 85 | .name = "ac", |
| 86 | .class = ACPI_AC_CLASS, |
| 87 | .ids = ac_device_ids, |
| 88 | .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS, |
| 89 | .ops = { |
| 90 | .add = acpi_ac_add, |
| 91 | .remove = acpi_ac_remove, |
| 92 | .notify = acpi_ac_notify, |
| 93 | }, |
| 94 | .drv.pm = &acpi_ac_pm, |
| 95 | }; |
| 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | struct acpi_ac { |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 98 | struct power_supply *charger; |
| 99 | struct power_supply_desc charger_desc; |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 100 | struct acpi_device * device; |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 101 | unsigned long long state; |
Alexander Mezin | 4eee4f0 | 2014-03-12 00:58:48 +0700 | [diff] [blame] | 102 | struct notifier_block battery_nb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | }; |
| 104 | |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 105 | #define to_acpi_ac(x) power_supply_get_drvdata(x) |
Alexey Starikovskiy | d5b4a3d | 2007-09-26 19:44:06 +0400 | [diff] [blame] | 106 | |
Lan Tianyu | e63f6e2 | 2014-07-07 01:13:46 +0200 | [diff] [blame] | 107 | #ifdef CONFIG_ACPI_PROCFS_POWER |
| 108 | static const struct file_operations acpi_ac_fops = { |
| 109 | .owner = THIS_MODULE, |
| 110 | .open = acpi_ac_open_fs, |
| 111 | .read = seq_read, |
| 112 | .llseek = seq_lseek, |
| 113 | .release = single_release, |
| 114 | }; |
| 115 | #endif |
| 116 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | /* -------------------------------------------------------------------------- |
| 118 | AC Adapter Management |
| 119 | -------------------------------------------------------------------------- */ |
| 120 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 121 | static int acpi_ac_get_state(struct acpi_ac *ac) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | { |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 123 | acpi_status status = AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 125 | if (!ac) |
| 126 | return -EINVAL; |
| 127 | |
| 128 | status = acpi_evaluate_integer(ac->device->handle, "_PSR", NULL, |
Zhang Rui | cc8ef52 | 2013-09-25 20:39:45 +0800 | [diff] [blame] | 129 | &ac->state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | if (ACPI_FAILURE(status)) { |
Zhang Rui | cc8ef52 | 2013-09-25 20:39:45 +0800 | [diff] [blame] | 131 | ACPI_EXCEPTION((AE_INFO, status, |
| 132 | "Error reading AC Adapter state")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | ac->state = ACPI_AC_STATUS_UNKNOWN; |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 134 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 136 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 137 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | } |
| 139 | |
Zhang Rui | 3151dbb | 2010-12-08 10:40:45 +0800 | [diff] [blame] | 140 | /* -------------------------------------------------------------------------- |
| 141 | sysfs I/F |
| 142 | -------------------------------------------------------------------------- */ |
| 143 | static int get_ac_property(struct power_supply *psy, |
| 144 | enum power_supply_property psp, |
| 145 | union power_supply_propval *val) |
| 146 | { |
| 147 | struct acpi_ac *ac = to_acpi_ac(psy); |
| 148 | |
| 149 | if (!ac) |
| 150 | return -ENODEV; |
| 151 | |
| 152 | if (acpi_ac_get_state(ac)) |
| 153 | return -ENODEV; |
| 154 | |
| 155 | switch (psp) { |
| 156 | case POWER_SUPPLY_PROP_ONLINE: |
| 157 | val->intval = ac->state; |
| 158 | break; |
| 159 | default: |
| 160 | return -EINVAL; |
| 161 | } |
| 162 | return 0; |
| 163 | } |
| 164 | |
| 165 | static enum power_supply_property ac_props[] = { |
| 166 | POWER_SUPPLY_PROP_ONLINE, |
| 167 | }; |
| 168 | |
Lan Tianyu | e63f6e2 | 2014-07-07 01:13:46 +0200 | [diff] [blame] | 169 | #ifdef CONFIG_ACPI_PROCFS_POWER |
| 170 | /* -------------------------------------------------------------------------- |
| 171 | FS Interface (/proc) |
| 172 | -------------------------------------------------------------------------- */ |
| 173 | |
| 174 | static struct proc_dir_entry *acpi_ac_dir; |
| 175 | |
| 176 | static int acpi_ac_seq_show(struct seq_file *seq, void *offset) |
| 177 | { |
| 178 | struct acpi_ac *ac = seq->private; |
| 179 | |
| 180 | |
| 181 | if (!ac) |
| 182 | return 0; |
| 183 | |
| 184 | if (acpi_ac_get_state(ac)) { |
| 185 | seq_puts(seq, "ERROR: Unable to read AC Adapter state\n"); |
| 186 | return 0; |
| 187 | } |
| 188 | |
| 189 | seq_puts(seq, "state: "); |
| 190 | switch (ac->state) { |
| 191 | case ACPI_AC_STATUS_OFFLINE: |
| 192 | seq_puts(seq, "off-line\n"); |
| 193 | break; |
| 194 | case ACPI_AC_STATUS_ONLINE: |
| 195 | seq_puts(seq, "on-line\n"); |
| 196 | break; |
| 197 | default: |
| 198 | seq_puts(seq, "unknown\n"); |
| 199 | break; |
| 200 | } |
| 201 | |
| 202 | return 0; |
| 203 | } |
| 204 | |
| 205 | static int acpi_ac_open_fs(struct inode *inode, struct file *file) |
| 206 | { |
| 207 | return single_open(file, acpi_ac_seq_show, PDE_DATA(inode)); |
| 208 | } |
| 209 | |
| 210 | static int acpi_ac_add_fs(struct acpi_ac *ac) |
| 211 | { |
| 212 | struct proc_dir_entry *entry = NULL; |
| 213 | |
| 214 | printk(KERN_WARNING PREFIX "Deprecated procfs I/F for AC is loaded," |
| 215 | " please retry with CONFIG_ACPI_PROCFS_POWER cleared\n"); |
| 216 | if (!acpi_device_dir(ac->device)) { |
| 217 | acpi_device_dir(ac->device) = |
| 218 | proc_mkdir(acpi_device_bid(ac->device), acpi_ac_dir); |
| 219 | if (!acpi_device_dir(ac->device)) |
| 220 | return -ENODEV; |
| 221 | } |
| 222 | |
| 223 | /* 'state' [R] */ |
| 224 | entry = proc_create_data(ACPI_AC_FILE_STATE, |
| 225 | S_IRUGO, acpi_device_dir(ac->device), |
| 226 | &acpi_ac_fops, ac); |
| 227 | if (!entry) |
| 228 | return -ENODEV; |
| 229 | return 0; |
| 230 | } |
| 231 | |
| 232 | static int acpi_ac_remove_fs(struct acpi_ac *ac) |
| 233 | { |
| 234 | |
| 235 | if (acpi_device_dir(ac->device)) { |
| 236 | remove_proc_entry(ACPI_AC_FILE_STATE, |
| 237 | acpi_device_dir(ac->device)); |
| 238 | remove_proc_entry(acpi_device_bid(ac->device), acpi_ac_dir); |
| 239 | acpi_device_dir(ac->device) = NULL; |
| 240 | } |
| 241 | |
| 242 | return 0; |
| 243 | } |
| 244 | #endif |
| 245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | /* -------------------------------------------------------------------------- |
| 247 | Driver Model |
| 248 | -------------------------------------------------------------------------- */ |
| 249 | |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 250 | static void acpi_ac_notify(struct acpi_device *device, u32 event) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | { |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 252 | struct acpi_ac *ac = acpi_driver_data(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | |
| 254 | if (!ac) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 255 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | switch (event) { |
Len Brown | f163ff5 | 2008-06-14 01:26:37 -0400 | [diff] [blame] | 258 | default: |
| 259 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 260 | "Unsupported event [0x%x]\n", event)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | case ACPI_AC_NOTIFY_STATUS: |
Christian Lupien | 03d78252 | 2004-08-19 01:26:00 -0400 | [diff] [blame] | 262 | case ACPI_NOTIFY_BUS_CHECK: |
| 263 | case ACPI_NOTIFY_DEVICE_CHECK: |
Lan Tianyu | 0ab5bb6 | 2013-05-08 07:28:46 +0000 | [diff] [blame] | 264 | /* |
| 265 | * A buggy BIOS may notify AC first and then sleep for |
| 266 | * a specific time before doing actual operations in the |
| 267 | * EC event handler (_Qxx). This will cause the AC state |
| 268 | * reported by the ACPI event to be incorrect, so wait for a |
| 269 | * specific time for the EC event handler to make progress. |
| 270 | */ |
| 271 | if (ac_sleep_before_get_state_ms > 0) |
| 272 | msleep(ac_sleep_before_get_state_ms); |
| 273 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | acpi_ac_get_state(ac); |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 275 | acpi_bus_generate_netlink_event(device->pnp.device_class, |
| 276 | dev_name(&device->dev), event, |
| 277 | (u32) ac->state); |
| 278 | acpi_notifier_call_chain(device, event, (u32) ac->state); |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 279 | kobject_uevent(&ac->charger->dev.kobj, KOBJ_CHANGE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | } |
| 281 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 282 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | } |
| 284 | |
Alexander Mezin | 4eee4f0 | 2014-03-12 00:58:48 +0700 | [diff] [blame] | 285 | static int acpi_ac_battery_notify(struct notifier_block *nb, |
| 286 | unsigned long action, void *data) |
| 287 | { |
| 288 | struct acpi_ac *ac = container_of(nb, struct acpi_ac, battery_nb); |
| 289 | struct acpi_bus_event *event = (struct acpi_bus_event *)data; |
| 290 | |
| 291 | /* |
| 292 | * On HP Pavilion dv6-6179er AC status notifications aren't triggered |
| 293 | * when adapter is plugged/unplugged. However, battery status |
| 294 | * notifcations are triggered when battery starts charging or |
| 295 | * discharging. Re-reading AC status triggers lost AC notifications, |
| 296 | * if AC status has changed. |
| 297 | */ |
| 298 | if (strcmp(event->device_class, ACPI_BATTERY_CLASS) == 0 && |
| 299 | event->type == ACPI_BATTERY_NOTIFY_STATUS) |
| 300 | acpi_ac_get_state(ac); |
| 301 | |
| 302 | return NOTIFY_OK; |
| 303 | } |
| 304 | |
Lan Tianyu | 0ab5bb6 | 2013-05-08 07:28:46 +0000 | [diff] [blame] | 305 | static int thinkpad_e530_quirk(const struct dmi_system_id *d) |
| 306 | { |
| 307 | ac_sleep_before_get_state_ms = 1000; |
| 308 | return 0; |
| 309 | } |
| 310 | |
| 311 | static struct dmi_system_id ac_dmi_table[] = { |
| 312 | { |
| 313 | .callback = thinkpad_e530_quirk, |
| 314 | .ident = "thinkpad e530", |
| 315 | .matches = { |
| 316 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), |
| 317 | DMI_MATCH(DMI_PRODUCT_NAME, "32597CG"), |
| 318 | }, |
| 319 | }, |
| 320 | {}, |
| 321 | }; |
| 322 | |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 323 | static int acpi_ac_add(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | { |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 325 | struct power_supply_config psy_cfg = {}; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 326 | int result = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 327 | struct acpi_ac *ac = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 329 | |
| 330 | if (!device) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 331 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 333 | ac = kzalloc(sizeof(struct acpi_ac), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | if (!ac) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 335 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 337 | ac->device = device; |
| 338 | strcpy(acpi_device_name(device), ACPI_AC_DEVICE_NAME); |
| 339 | strcpy(acpi_device_class(device), ACPI_AC_CLASS); |
| 340 | device->driver_data = ac; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | |
| 342 | result = acpi_ac_get_state(ac); |
| 343 | if (result) |
| 344 | goto end; |
| 345 | |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 346 | psy_cfg.drv_data = ac; |
| 347 | |
| 348 | ac->charger_desc.name = acpi_device_bid(device); |
Lan Tianyu | e63f6e2 | 2014-07-07 01:13:46 +0200 | [diff] [blame] | 349 | #ifdef CONFIG_ACPI_PROCFS_POWER |
| 350 | result = acpi_ac_add_fs(ac); |
| 351 | if (result) |
| 352 | goto end; |
| 353 | #endif |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 354 | ac->charger_desc.type = POWER_SUPPLY_TYPE_MAINS; |
| 355 | ac->charger_desc.properties = ac_props; |
| 356 | ac->charger_desc.num_properties = ARRAY_SIZE(ac_props); |
| 357 | ac->charger_desc.get_property = get_ac_property; |
| 358 | ac->charger = power_supply_register(&ac->device->dev, |
| 359 | &ac->charger_desc, &psy_cfg); |
| 360 | if (IS_ERR(ac->charger)) { |
| 361 | result = PTR_ERR(ac->charger); |
Lan Tianyu | f197ac1 | 2012-07-20 13:29:16 +0800 | [diff] [blame] | 362 | goto end; |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 363 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 365 | printk(KERN_INFO PREFIX "%s [%s] (%s)\n", |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 366 | acpi_device_name(device), acpi_device_bid(device), |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 367 | ac->state ? "on-line" : "off-line"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
Alexander Mezin | 4eee4f0 | 2014-03-12 00:58:48 +0700 | [diff] [blame] | 369 | ac->battery_nb.notifier_call = acpi_ac_battery_notify; |
| 370 | register_acpi_notifier(&ac->battery_nb); |
Lan Tianyu | ab0fd67 | 2013-10-12 21:04:48 +0800 | [diff] [blame] | 371 | end: |
Lan Tianyu | e63f6e2 | 2014-07-07 01:13:46 +0200 | [diff] [blame] | 372 | if (result) { |
| 373 | #ifdef CONFIG_ACPI_PROCFS_POWER |
| 374 | acpi_ac_remove_fs(ac); |
| 375 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | kfree(ac); |
Lan Tianyu | e63f6e2 | 2014-07-07 01:13:46 +0200 | [diff] [blame] | 377 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | |
Lan Tianyu | 0ab5bb6 | 2013-05-08 07:28:46 +0000 | [diff] [blame] | 379 | dmi_check_system(ac_dmi_table); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 380 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | } |
| 382 | |
Rafael J. Wysocki | 9069240 | 2012-08-09 23:00:02 +0200 | [diff] [blame] | 383 | #ifdef CONFIG_PM_SLEEP |
Rafael J. Wysocki | ccda706 | 2012-06-27 23:26:35 +0200 | [diff] [blame] | 384 | static int acpi_ac_resume(struct device *dev) |
Alexey Starikovskiy | 5bfeca3 | 2007-11-14 17:00:39 -0800 | [diff] [blame] | 385 | { |
| 386 | struct acpi_ac *ac; |
| 387 | unsigned old_state; |
Rafael J. Wysocki | ccda706 | 2012-06-27 23:26:35 +0200 | [diff] [blame] | 388 | |
| 389 | if (!dev) |
Alexey Starikovskiy | 5bfeca3 | 2007-11-14 17:00:39 -0800 | [diff] [blame] | 390 | return -EINVAL; |
Rafael J. Wysocki | ccda706 | 2012-06-27 23:26:35 +0200 | [diff] [blame] | 391 | |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 392 | ac = acpi_driver_data(to_acpi_device(dev)); |
Rafael J. Wysocki | ccda706 | 2012-06-27 23:26:35 +0200 | [diff] [blame] | 393 | if (!ac) |
| 394 | return -EINVAL; |
| 395 | |
Alexey Starikovskiy | 5bfeca3 | 2007-11-14 17:00:39 -0800 | [diff] [blame] | 396 | old_state = ac->state; |
| 397 | if (acpi_ac_get_state(ac)) |
| 398 | return 0; |
| 399 | if (old_state != ac->state) |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 400 | kobject_uevent(&ac->charger->dev.kobj, KOBJ_CHANGE); |
Alexey Starikovskiy | 5bfeca3 | 2007-11-14 17:00:39 -0800 | [diff] [blame] | 401 | return 0; |
| 402 | } |
Shuah Khan | 06521c2 | 2014-02-12 20:19:05 -0700 | [diff] [blame] | 403 | #else |
| 404 | #define acpi_ac_resume NULL |
Rafael J. Wysocki | 9069240 | 2012-08-09 23:00:02 +0200 | [diff] [blame] | 405 | #endif |
Alexey Starikovskiy | 5bfeca3 | 2007-11-14 17:00:39 -0800 | [diff] [blame] | 406 | |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 407 | static int acpi_ac_remove(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | { |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 409 | struct acpi_ac *ac = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 411 | |
| 412 | if (!device || !acpi_driver_data(device)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 413 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 415 | ac = acpi_driver_data(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 417 | power_supply_unregister(ac->charger); |
Alexander Mezin | 4eee4f0 | 2014-03-12 00:58:48 +0700 | [diff] [blame] | 418 | unregister_acpi_notifier(&ac->battery_nb); |
Zhang Rui | cc8ef52 | 2013-09-25 20:39:45 +0800 | [diff] [blame] | 419 | |
Lan Tianyu | e63f6e2 | 2014-07-07 01:13:46 +0200 | [diff] [blame] | 420 | #ifdef CONFIG_ACPI_PROCFS_POWER |
| 421 | acpi_ac_remove_fs(ac); |
| 422 | #endif |
| 423 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | kfree(ac); |
| 425 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 426 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | } |
| 428 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 429 | static int __init acpi_ac_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | { |
Rich Townsend | 3f86b83 | 2006-07-01 11:36:54 -0400 | [diff] [blame] | 431 | int result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | |
Pavel Machek | 4d8316d | 2006-08-14 22:37:22 -0700 | [diff] [blame] | 433 | if (acpi_disabled) |
| 434 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | |
Lan Tianyu | e63f6e2 | 2014-07-07 01:13:46 +0200 | [diff] [blame] | 436 | #ifdef CONFIG_ACPI_PROCFS_POWER |
| 437 | acpi_ac_dir = acpi_lock_ac_dir(); |
| 438 | if (!acpi_ac_dir) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 439 | return -ENODEV; |
Lan Tianyu | e63f6e2 | 2014-07-07 01:13:46 +0200 | [diff] [blame] | 440 | #endif |
| 441 | |
| 442 | |
| 443 | result = acpi_bus_register_driver(&acpi_ac_driver); |
| 444 | if (result < 0) { |
| 445 | #ifdef CONFIG_ACPI_PROCFS_POWER |
| 446 | acpi_unlock_ac_dir(acpi_ac_dir); |
| 447 | #endif |
| 448 | return -ENODEV; |
| 449 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 451 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | } |
| 453 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 454 | static void __exit acpi_ac_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | { |
Guenter Roeck | 9801284 | 2014-05-06 19:18:28 -0700 | [diff] [blame] | 456 | acpi_bus_unregister_driver(&acpi_ac_driver); |
Lan Tianyu | e63f6e2 | 2014-07-07 01:13:46 +0200 | [diff] [blame] | 457 | #ifdef CONFIG_ACPI_PROCFS_POWER |
| 458 | acpi_unlock_ac_dir(acpi_ac_dir); |
| 459 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | module_init(acpi_ac_init); |
| 462 | module_exit(acpi_ac_exit); |