Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * acpi_bus.h - ACPI Bus Driver ($Revision: 22 $) |
| 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 | #ifndef __ACPI_BUS_H__ |
| 27 | #define __ACPI_BUS_H__ |
| 28 | |
Patrick Mochel | 5b32726 | 2006-05-10 10:33:00 -0400 | [diff] [blame] | 29 | #include <linux/device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
| 31 | #include <acpi/acpi.h> |
| 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | /* TBD: Make dynamic */ |
| 34 | #define ACPI_MAX_HANDLES 10 |
| 35 | struct acpi_handle_list { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 36 | u32 count; |
| 37 | acpi_handle handles[ACPI_MAX_HANDLES]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | }; |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | /* acpi_utils.h */ |
| 41 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 42 | acpi_extract_package(union acpi_object *package, |
| 43 | struct acpi_buffer *format, struct acpi_buffer *buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 45 | acpi_evaluate_integer(acpi_handle handle, |
| 46 | acpi_string pathname, |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 47 | struct acpi_object_list *arguments, unsigned long long *data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 49 | acpi_evaluate_reference(acpi_handle handle, |
| 50 | acpi_string pathname, |
| 51 | struct acpi_object_list *arguments, |
| 52 | struct acpi_handle_list *list); |
Toshi Kani | 275c58d | 2012-05-23 20:25:19 -0600 | [diff] [blame] | 53 | acpi_status |
| 54 | acpi_evaluate_hotplug_ost(acpi_handle handle, u32 source_event, |
| 55 | u32 status_code, struct acpi_buffer *status_buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Matthew Garrett | 38ac0f1 | 2012-05-11 16:08:26 +0800 | [diff] [blame] | 57 | acpi_status |
Feng Tang | 8ede06a | 2012-08-21 09:56:58 +0800 | [diff] [blame] | 58 | acpi_get_physical_device_location(acpi_handle handle, struct acpi_pld_info **pld); |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 59 | |
| 60 | bool acpi_has_method(acpi_handle handle, char *name); |
Jiang Liu | 0db9820 | 2013-06-29 00:24:39 +0800 | [diff] [blame] | 61 | acpi_status acpi_execute_simple_method(acpi_handle handle, char *method, |
| 62 | u64 arg); |
Jiang Liu | 7d2421f | 2013-06-29 00:24:40 +0800 | [diff] [blame] | 63 | acpi_status acpi_evaluate_ej0(acpi_handle handle); |
| 64 | acpi_status acpi_evaluate_lck(acpi_handle handle, int lock); |
Jiang Liu | ebf4df8 | 2013-06-29 00:24:41 +0800 | [diff] [blame] | 65 | bool acpi_ata_match(acpi_handle handle); |
| 66 | bool acpi_bay_match(acpi_handle handle); |
| 67 | bool acpi_dock_match(acpi_handle handle); |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 68 | |
Len Brown | 76f5858 | 2005-08-24 12:10:49 -0400 | [diff] [blame] | 69 | #ifdef CONFIG_ACPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
| 71 | #include <linux/proc_fs.h> |
| 72 | |
| 73 | #define ACPI_BUS_FILE_ROOT "acpi" |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 74 | extern struct proc_dir_entry *acpi_root_dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | enum acpi_bus_device_type { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 77 | ACPI_BUS_TYPE_DEVICE = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | ACPI_BUS_TYPE_POWER, |
| 79 | ACPI_BUS_TYPE_PROCESSOR, |
| 80 | ACPI_BUS_TYPE_THERMAL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | ACPI_BUS_TYPE_POWER_BUTTON, |
| 82 | ACPI_BUS_TYPE_SLEEP_BUTTON, |
| 83 | ACPI_BUS_DEVICE_TYPE_COUNT |
| 84 | }; |
| 85 | |
| 86 | struct acpi_driver; |
| 87 | struct acpi_device; |
| 88 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | /* |
Rafael J. Wysocki | ca589f9 | 2013-01-30 14:27:29 +0100 | [diff] [blame] | 90 | * ACPI Scan Handler |
| 91 | * ----------------- |
| 92 | */ |
| 93 | |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 94 | enum acpi_hotplug_mode { |
| 95 | AHM_GENERIC = 0, |
| 96 | AHM_CONTAINER, |
| 97 | AHM_COUNT |
| 98 | }; |
| 99 | |
| 100 | struct acpi_hotplug_profile { |
Rafael J. Wysocki | 3f8055c | 2013-03-03 23:08:16 +0100 | [diff] [blame] | 101 | struct kobject kobj; |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 102 | bool enabled:1; |
Toshi Kani | ca499fc | 2013-11-20 14:25:34 +0100 | [diff] [blame] | 103 | bool ignore:1; |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 104 | enum acpi_hotplug_mode mode; |
| 105 | }; |
| 106 | |
Rafael J. Wysocki | 3f8055c | 2013-03-03 23:08:16 +0100 | [diff] [blame] | 107 | static inline struct acpi_hotplug_profile *to_acpi_hotplug_profile( |
| 108 | struct kobject *kobj) |
| 109 | { |
| 110 | return container_of(kobj, struct acpi_hotplug_profile, kobj); |
| 111 | } |
| 112 | |
Rafael J. Wysocki | ca589f9 | 2013-01-30 14:27:29 +0100 | [diff] [blame] | 113 | struct acpi_scan_handler { |
| 114 | const struct acpi_device_id *ids; |
| 115 | struct list_head list_node; |
| 116 | int (*attach)(struct acpi_device *dev, const struct acpi_device_id *id); |
| 117 | void (*detach)(struct acpi_device *dev); |
Rafael J. Wysocki | a33ec39 | 2013-03-03 23:05:29 +0100 | [diff] [blame] | 118 | struct acpi_hotplug_profile hotplug; |
Rafael J. Wysocki | ca589f9 | 2013-01-30 14:27:29 +0100 | [diff] [blame] | 119 | }; |
| 120 | |
| 121 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | * ACPI Driver |
| 123 | * ----------- |
| 124 | */ |
| 125 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 126 | typedef int (*acpi_op_add) (struct acpi_device * device); |
Rafael J. Wysocki | 51fac83 | 2013-01-24 00:24:48 +0100 | [diff] [blame] | 127 | typedef int (*acpi_op_remove) (struct acpi_device * device); |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 128 | typedef void (*acpi_op_notify) (struct acpi_device * device, u32 event); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
| 130 | struct acpi_device_ops { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 131 | acpi_op_add add; |
| 132 | acpi_op_remove remove; |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 133 | acpi_op_notify notify; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | }; |
| 135 | |
Bjorn Helgaas | 6d27813 | 2009-04-30 09:35:37 -0600 | [diff] [blame] | 136 | #define ACPI_DRIVER_ALL_NOTIFY_EVENTS 0x1 /* system AND device events */ |
| 137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | struct acpi_driver { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 139 | char name[80]; |
| 140 | char class[80]; |
Thomas Renninger | 8c8eb78 | 2007-07-23 14:43:32 +0200 | [diff] [blame] | 141 | const struct acpi_device_id *ids; /* Supported Hardware IDs */ |
Bjorn Helgaas | 6d27813 | 2009-04-30 09:35:37 -0600 | [diff] [blame] | 142 | unsigned int flags; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 143 | struct acpi_device_ops ops; |
Patrick Mochel | d43ec68 | 2006-12-07 20:56:23 +0800 | [diff] [blame] | 144 | struct device_driver drv; |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 145 | struct module *owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | }; |
| 147 | |
| 148 | /* |
| 149 | * ACPI Device |
| 150 | * ----------- |
| 151 | */ |
| 152 | |
| 153 | /* Status (_STA) */ |
| 154 | |
| 155 | struct acpi_device_status { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 156 | u32 present:1; |
| 157 | u32 enabled:1; |
| 158 | u32 show_in_ui:1; |
| 159 | u32 functional:1; |
| 160 | u32 battery_present:1; |
| 161 | u32 reserved:27; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | }; |
| 163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | /* Flags */ |
| 165 | |
| 166 | struct acpi_device_flags { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 167 | u32 dynamic_status:1; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 168 | u32 removable:1; |
| 169 | u32 ejectable:1; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 170 | u32 power_manageable:1; |
Rafael J. Wysocki | 209d3b1 | 2012-12-21 00:36:48 +0100 | [diff] [blame] | 171 | u32 match_driver:1; |
Rafael J. Wysocki | f943db4 | 2013-08-28 21:41:07 +0200 | [diff] [blame] | 172 | u32 reserved:27; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | }; |
| 174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | /* File System */ |
| 176 | |
| 177 | struct acpi_device_dir { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 178 | struct proc_dir_entry *entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | }; |
| 180 | |
| 181 | #define acpi_device_dir(d) ((d)->dir.entry) |
| 182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | /* Plug and Play */ |
| 184 | |
Zhao Yakui | 24c5c4c | 2009-05-21 16:25:35 +0800 | [diff] [blame] | 185 | typedef char acpi_bus_id[8]; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 186 | typedef unsigned long acpi_bus_address; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 187 | typedef char acpi_device_name[40]; |
| 188 | typedef char acpi_device_class[20]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 190 | struct acpi_hardware_id { |
| 191 | struct list_head list; |
| 192 | char *id; |
| 193 | }; |
| 194 | |
Toshi Kani | d4e1a69 | 2013-03-04 21:30:41 +0000 | [diff] [blame] | 195 | struct acpi_pnp_type { |
| 196 | u32 hardware_id:1; |
| 197 | u32 bus_address:1; |
| 198 | u32 reserved:30; |
| 199 | }; |
| 200 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | struct acpi_device_pnp { |
Toshi Kani | d4e1a69 | 2013-03-04 21:30:41 +0000 | [diff] [blame] | 202 | acpi_bus_id bus_id; /* Object name */ |
| 203 | struct acpi_pnp_type type; /* ID type */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 204 | acpi_bus_address bus_address; /* _ADR */ |
Toshi Kani | d4e1a69 | 2013-03-04 21:30:41 +0000 | [diff] [blame] | 205 | char *unique_id; /* _UID */ |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 206 | struct list_head ids; /* _HID and _CIDs */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 207 | acpi_device_name device_name; /* Driver-determined */ |
| 208 | acpi_device_class device_class; /* " */ |
Lance Ortiz | d1efe3c | 2012-10-02 12:43:23 -0600 | [diff] [blame] | 209 | union acpi_object *str_obj; /* unicode string for _STR method */ |
Yasuaki Ishimatsu | bb74ac2 | 2012-11-16 02:56:59 +0100 | [diff] [blame] | 210 | unsigned long sun; /* _SUN */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | }; |
| 212 | |
| 213 | #define acpi_device_bid(d) ((d)->pnp.bus_id) |
| 214 | #define acpi_device_adr(d) ((d)->pnp.bus_address) |
Thomas Renninger | 620e112 | 2010-10-01 10:54:00 +0200 | [diff] [blame] | 215 | const char *acpi_device_hid(struct acpi_device *device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | #define acpi_device_name(d) ((d)->pnp.device_name) |
| 217 | #define acpi_device_class(d) ((d)->pnp.device_class) |
| 218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | /* Power Management */ |
| 220 | |
| 221 | struct acpi_device_power_flags { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 222 | u32 explicit_get:1; /* _PSC present? */ |
| 223 | u32 power_resources:1; /* Power resources */ |
| 224 | u32 inrush_current:1; /* Serialize Dx->D0 */ |
| 225 | u32 power_removed:1; /* Optimize Dx->D0 */ |
Mika Westerberg | 644f17a | 2013-10-10 13:28:46 +0300 | [diff] [blame] | 226 | u32 ignore_parent:1; /* Power is independent of parent power state */ |
| 227 | u32 reserved:27; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | }; |
| 229 | |
| 230 | struct acpi_device_power_state { |
| 231 | struct { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 232 | u8 valid:1; |
Aaron Lu | 1399dfc | 2012-11-21 23:33:40 +0100 | [diff] [blame] | 233 | u8 os_accessible:1; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 234 | u8 explicit_set:1; /* _PSx present? */ |
| 235 | u8 reserved:6; |
| 236 | } flags; |
| 237 | int power; /* % Power (compared to D0) */ |
| 238 | int latency; /* Dx->D0 time (microseconds) */ |
Rafael J. Wysocki | 0b22452 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 239 | struct list_head resources; /* Power resources referenced */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | }; |
| 241 | |
| 242 | struct acpi_device_power { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 243 | int state; /* Current state */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | struct acpi_device_power_flags flags; |
Lin Ming | b4a03b9 | 2011-06-01 23:54:02 +0800 | [diff] [blame] | 245 | struct acpi_device_power_state states[ACPI_D_STATE_COUNT]; /* Power states (D0-D3Cold) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | }; |
| 247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | /* Performance Management */ |
| 249 | |
| 250 | struct acpi_device_perf_flags { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 251 | u8 reserved:8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | }; |
| 253 | |
| 254 | struct acpi_device_perf_state { |
| 255 | struct { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 256 | u8 valid:1; |
| 257 | u8 reserved:7; |
| 258 | } flags; |
| 259 | u8 power; /* % Power (compared to P0) */ |
| 260 | u8 performance; /* % Performance ( " ) */ |
| 261 | int latency; /* Px->P0 time (microseconds) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | }; |
| 263 | |
| 264 | struct acpi_device_perf { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 265 | int state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | struct acpi_device_perf_flags flags; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 267 | int state_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | struct acpi_device_perf_state *states; |
| 269 | }; |
| 270 | |
| 271 | /* Wakeup Management */ |
| 272 | struct acpi_device_wakeup_flags { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 273 | u8 valid:1; /* Can successfully enable wakeup? */ |
| 274 | u8 run_wake:1; /* Run-Wake GPE devices */ |
Rafael J. Wysocki | b67ea76 | 2010-02-17 23:44:09 +0100 | [diff] [blame] | 275 | u8 notifier_present:1; /* Wake-up notify handler has been installed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | }; |
| 277 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | struct acpi_device_wakeup { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 279 | acpi_handle gpe_device; |
Lin Ming | 439913f | 2010-01-28 10:53:19 +0800 | [diff] [blame] | 280 | u64 gpe_number; |
| 281 | u64 sleep_state; |
Rafael J. Wysocki | 993cbe5 | 2013-01-17 14:11:06 +0100 | [diff] [blame] | 282 | struct list_head resources; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 283 | struct acpi_device_wakeup_flags flags; |
Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 284 | int prepare_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | }; |
| 286 | |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 287 | struct acpi_device_physical_node { |
Rafael J. Wysocki | 007ccfc | 2013-08-06 14:32:54 +0200 | [diff] [blame] | 288 | unsigned int node_id; |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 289 | struct list_head node; |
| 290 | struct device *dev; |
Rafael J. Wysocki | 683058e | 2013-05-03 00:26:16 +0200 | [diff] [blame] | 291 | bool put_online:1; |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 292 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 294 | /* Device */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | struct acpi_device { |
Bjorn Helgaas | caaa6ef | 2009-09-21 19:29:10 +0000 | [diff] [blame] | 296 | int device_type; |
| 297 | acpi_handle handle; /* no handle for fixed hardware */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 298 | struct acpi_device *parent; |
| 299 | struct list_head children; |
| 300 | struct list_head node; |
| 301 | struct list_head wakeup_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | struct acpi_device_status status; |
| 303 | struct acpi_device_flags flags; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 304 | struct acpi_device_pnp pnp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | struct acpi_device_power power; |
| 306 | struct acpi_device_wakeup wakeup; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 307 | struct acpi_device_perf performance; |
| 308 | struct acpi_device_dir dir; |
Rafael J. Wysocki | ca589f9 | 2013-01-30 14:27:29 +0100 | [diff] [blame] | 309 | struct acpi_scan_handler *handler; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 310 | struct acpi_driver *driver; |
| 311 | void *driver_data; |
Patrick Mochel | 5b32726 | 2006-05-10 10:33:00 -0400 | [diff] [blame] | 312 | struct device dev; |
Rafael J. Wysocki | 007ccfc | 2013-08-06 14:32:54 +0200 | [diff] [blame] | 313 | unsigned int physical_node_count; |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 314 | struct list_head physical_node_list; |
| 315 | struct mutex physical_node_lock; |
Rafael J. Wysocki | b1c0f99 | 2013-01-24 12:50:09 +0100 | [diff] [blame] | 316 | void (*remove)(struct acpi_device *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | }; |
| 318 | |
Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 319 | static inline void *acpi_driver_data(struct acpi_device *d) |
| 320 | { |
| 321 | return d->driver_data; |
| 322 | } |
| 323 | |
Patrick Mochel | d43ec68 | 2006-12-07 20:56:23 +0800 | [diff] [blame] | 324 | #define to_acpi_device(d) container_of(d, struct acpi_device, dev) |
| 325 | #define to_acpi_driver(d) container_of(d, struct acpi_driver, drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | |
David Brownell | 55955aa | 2007-05-08 00:28:35 -0700 | [diff] [blame] | 327 | /* acpi_device.dev.bus == &acpi_bus_type */ |
| 328 | extern struct bus_type acpi_bus_type; |
| 329 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | /* |
| 331 | * Events |
| 332 | * ------ |
| 333 | */ |
| 334 | |
| 335 | struct acpi_bus_event { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 336 | struct list_head node; |
| 337 | acpi_device_class device_class; |
| 338 | acpi_bus_id bus_id; |
| 339 | u32 type; |
| 340 | u32 data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | }; |
| 342 | |
Greg Kroah-Hartman | 99e0d2f | 2007-11-02 16:19:59 -0700 | [diff] [blame] | 343 | extern struct kobject *acpi_kobj; |
Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 344 | extern int acpi_bus_generate_netlink_event(const char*, const char*, u8, int); |
Bob Moore | 8e4319c | 2009-06-29 13:43:27 +0800 | [diff] [blame] | 345 | void acpi_bus_private_data_handler(acpi_handle, void *); |
Zhang Rui | 2073393 | 2008-01-17 15:51:21 +0800 | [diff] [blame] | 346 | int acpi_bus_get_private_data(acpi_handle, void **); |
Zhang Rui | 9ee8524 | 2008-01-25 14:48:06 +0800 | [diff] [blame] | 347 | extern int acpi_notifier_call_chain(struct acpi_device *, u32, u32); |
| 348 | extern int register_acpi_notifier(struct notifier_block *); |
| 349 | extern int unregister_acpi_notifier(struct notifier_block *); |
Shaohua Li | 6bd00a6 | 2008-08-28 10:04:29 +0800 | [diff] [blame] | 350 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | /* |
| 352 | * External Functions |
| 353 | */ |
| 354 | |
| 355 | int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device); |
Bjorn Helgaas | 402ac53 | 2009-09-21 19:30:01 +0000 | [diff] [blame] | 356 | acpi_status acpi_bus_get_status_handle(acpi_handle handle, |
| 357 | unsigned long long *sta); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 358 | int acpi_bus_get_status(struct acpi_device *device); |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 359 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 360 | int acpi_bus_set_power(acpi_handle handle, int state); |
Rafael J. Wysocki | 96bfd3c | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 361 | const char *acpi_power_state_string(int state); |
Rafael J. Wysocki | ad0c3b0 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 362 | int acpi_device_get_power(struct acpi_device *device, int *state); |
Rafael J. Wysocki | 078eb12 | 2012-11-02 01:40:45 +0100 | [diff] [blame] | 363 | int acpi_device_set_power(struct acpi_device *device, int state); |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 364 | int acpi_bus_init_power(struct acpi_device *device); |
Rafael J. Wysocki | b9e95fc | 2013-06-19 00:45:34 +0200 | [diff] [blame] | 365 | int acpi_device_fix_up_power(struct acpi_device *device); |
Rafael J. Wysocki | 25eed40 | 2010-11-25 00:09:15 +0100 | [diff] [blame] | 366 | int acpi_bus_update_power(acpi_handle handle, int *state_p); |
Rafael J. Wysocki | 3737b2b | 2008-07-07 03:30:55 +0200 | [diff] [blame] | 367 | bool acpi_bus_power_manageable(acpi_handle handle); |
Rafael J. Wysocki | ec4602a | 2013-05-16 22:29:28 +0200 | [diff] [blame] | 368 | |
| 369 | #ifdef CONFIG_PM |
Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 370 | bool acpi_bus_can_wakeup(acpi_handle handle); |
Rafael J. Wysocki | ec4602a | 2013-05-16 22:29:28 +0200 | [diff] [blame] | 371 | #else |
| 372 | static inline bool acpi_bus_can_wakeup(acpi_handle handle) { return false; } |
| 373 | #endif |
Rafael J. Wysocki | 9ce4e60 | 2013-01-17 14:11:08 +0100 | [diff] [blame] | 374 | |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 375 | void acpi_scan_lock_acquire(void); |
| 376 | void acpi_scan_lock_release(void); |
Rafael J. Wysocki | ca589f9 | 2013-01-30 14:27:29 +0100 | [diff] [blame] | 377 | int acpi_scan_add_handler(struct acpi_scan_handler *handler); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 378 | int acpi_bus_register_driver(struct acpi_driver *driver); |
Bjorn Helgaas | 06ea8e08 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 379 | void acpi_bus_unregister_driver(struct acpi_driver *driver); |
Rafael J. Wysocki | b8bd759 | 2013-01-19 01:27:35 +0100 | [diff] [blame] | 380 | int acpi_bus_scan(acpi_handle handle); |
Rafael J. Wysocki | bfee26d | 2013-01-26 00:27:44 +0100 | [diff] [blame] | 381 | void acpi_bus_trim(struct acpi_device *start); |
Len Brown | fd35094 | 2007-05-09 23:34:35 -0400 | [diff] [blame] | 382 | acpi_status acpi_bus_get_ejd(acpi_handle handle, acpi_handle * ejd); |
Thomas Renninger | 8c8eb78 | 2007-07-23 14:43:32 +0200 | [diff] [blame] | 383 | int acpi_match_device_ids(struct acpi_device *device, |
| 384 | const struct acpi_device_id *ids); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | int acpi_create_dir(struct acpi_device *); |
| 386 | void acpi_remove_dir(struct acpi_device *); |
| 387 | |
Rafael J. Wysocki | 7b98118 | 2013-11-07 01:45:40 +0100 | [diff] [blame] | 388 | typedef void (*acpi_hp_callback)(void *data, u32 src); |
| 389 | |
| 390 | acpi_status acpi_hotplug_execute(acpi_hp_callback func, void *data, u32 src); |
Mika Westerberg | 0d2cf8f | 2012-09-07 10:31:38 +0300 | [diff] [blame] | 391 | |
| 392 | /** |
| 393 | * module_acpi_driver(acpi_driver) - Helper macro for registering an ACPI driver |
| 394 | * @__acpi_driver: acpi_driver struct |
| 395 | * |
| 396 | * Helper macro for ACPI drivers which do not do anything special in module |
| 397 | * init/exit. This eliminates a lot of boilerplate. Each module may only |
| 398 | * use this macro once, and calling it replaces module_init() and module_exit() |
| 399 | */ |
| 400 | #define module_acpi_driver(__acpi_driver) \ |
| 401 | module_driver(__acpi_driver, acpi_bus_register_driver, \ |
| 402 | acpi_bus_unregister_driver) |
| 403 | |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 404 | /* |
| 405 | * Bind physical devices with ACPI devices |
| 406 | */ |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 407 | struct acpi_bus_type { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 408 | struct list_head list; |
Rafael J. Wysocki | 5354009 | 2013-03-03 22:35:20 +0100 | [diff] [blame] | 409 | const char *name; |
| 410 | bool (*match)(struct device *dev); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 411 | int (*find_device) (struct device *, acpi_handle *); |
Rafael J. Wysocki | 11909ca | 2012-12-23 00:02:13 +0100 | [diff] [blame] | 412 | void (*setup)(struct device *); |
| 413 | void (*cleanup)(struct device *); |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 414 | }; |
| 415 | int register_acpi_bus_type(struct acpi_bus_type *); |
| 416 | int unregister_acpi_bus_type(struct acpi_bus_type *); |
Thomas Renninger | 22c13f9 | 2008-08-01 17:37:54 +0200 | [diff] [blame] | 417 | |
Alex Chiang | 76d56de | 2009-07-23 17:03:00 -0600 | [diff] [blame] | 418 | struct acpi_pci_root { |
Alex Chiang | 76d56de | 2009-07-23 17:03:00 -0600 | [diff] [blame] | 419 | struct acpi_device * device; |
Alex Chiang | 76d56de | 2009-07-23 17:03:00 -0600 | [diff] [blame] | 420 | struct pci_bus *bus; |
| 421 | u16 segment; |
Bjorn Helgaas | 6ad9551 | 2010-03-11 12:20:06 -0700 | [diff] [blame] | 422 | struct resource secondary; /* downstream bus range */ |
Alex Chiang | 76d56de | 2009-07-23 17:03:00 -0600 | [diff] [blame] | 423 | |
| 424 | u32 osc_support_set; /* _OSC state of support bits */ |
| 425 | u32 osc_control_set; /* _OSC state of control bits */ |
Jiang Liu | f4b57a3 | 2012-06-22 14:55:16 +0800 | [diff] [blame] | 426 | phys_addr_t mcfg_addr; |
Alex Chiang | 76d56de | 2009-07-23 17:03:00 -0600 | [diff] [blame] | 427 | }; |
| 428 | |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 429 | /* helper */ |
Rafael J. Wysocki | 60f75b8 | 2013-08-07 22:55:00 +0200 | [diff] [blame] | 430 | acpi_handle acpi_find_child(acpi_handle, u64, bool); |
| 431 | static inline acpi_handle acpi_get_child(acpi_handle handle, u64 addr) |
| 432 | { |
| 433 | return acpi_find_child(handle, addr, false); |
| 434 | } |
Rafael J. Wysocki | 7b19981 | 2013-11-11 22:41:56 +0100 | [diff] [blame] | 435 | void acpi_preset_companion(struct device *dev, acpi_handle parent, u64 addr); |
Alexander Chiang | 2755820 | 2009-06-10 19:55:14 +0000 | [diff] [blame] | 436 | int acpi_is_root_bridge(acpi_handle); |
Alex Chiang | 76d56de | 2009-07-23 17:03:00 -0600 | [diff] [blame] | 437 | struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle); |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 438 | |
Rafael J. Wysocki | b67ea76 | 2010-02-17 23:44:09 +0100 | [diff] [blame] | 439 | int acpi_enable_wakeup_device_power(struct acpi_device *dev, int state); |
| 440 | int acpi_disable_wakeup_device_power(struct acpi_device *dev); |
| 441 | |
Rafael J. Wysocki | aa33860 | 2011-02-11 00:06:54 +0100 | [diff] [blame] | 442 | #ifdef CONFIG_PM |
Rafael J. Wysocki | ec2cd81 | 2012-11-02 01:40:09 +0100 | [diff] [blame] | 443 | acpi_status acpi_add_pm_notifier(struct acpi_device *adev, |
| 444 | acpi_notify_handler handler, void *context); |
| 445 | acpi_status acpi_remove_pm_notifier(struct acpi_device *adev, |
| 446 | acpi_notify_handler handler); |
Huang Ying | ee85f54 | 2012-06-23 10:23:48 +0800 | [diff] [blame] | 447 | int acpi_pm_device_sleep_state(struct device *, int *, int); |
Rafael J. Wysocki | 761afb8 | 2010-10-14 23:24:13 +0200 | [diff] [blame] | 448 | #else |
Rafael J. Wysocki | ec2cd81 | 2012-11-02 01:40:09 +0100 | [diff] [blame] | 449 | static inline acpi_status acpi_add_pm_notifier(struct acpi_device *adev, |
| 450 | acpi_notify_handler handler, |
| 451 | void *context) |
| 452 | { |
| 453 | return AE_SUPPORT; |
| 454 | } |
| 455 | static inline acpi_status acpi_remove_pm_notifier(struct acpi_device *adev, |
| 456 | acpi_notify_handler handler) |
| 457 | { |
| 458 | return AE_SUPPORT; |
| 459 | } |
Rafael J. Wysocki | b25c77e | 2013-06-16 00:37:42 +0200 | [diff] [blame] | 460 | static inline int acpi_pm_device_sleep_state(struct device *d, int *p, int m) |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 461 | { |
| 462 | if (p) |
| 463 | *p = ACPI_STATE_D0; |
Rafael J. Wysocki | b25c77e | 2013-06-16 00:37:42 +0200 | [diff] [blame] | 464 | |
Rafael J. Wysocki | 8ad928d | 2013-07-30 14:36:20 +0200 | [diff] [blame] | 465 | return (m >= ACPI_STATE_D0 && m <= ACPI_STATE_D3_COLD) ? |
| 466 | m : ACPI_STATE_D0; |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 467 | } |
Rafael J. Wysocki | 761afb8 | 2010-10-14 23:24:13 +0200 | [diff] [blame] | 468 | #endif |
| 469 | |
Rafael J. Wysocki | bdda27f | 2012-10-26 13:40:04 +0200 | [diff] [blame] | 470 | #ifdef CONFIG_PM_RUNTIME |
Rafael J. Wysocki | dee8370 | 2012-11-02 01:40:36 +0100 | [diff] [blame] | 471 | int __acpi_device_run_wake(struct acpi_device *, bool); |
Lin Ming | b24e509 | 2012-03-27 15:43:25 +0800 | [diff] [blame] | 472 | int acpi_pm_device_run_wake(struct device *, bool); |
Rafael J. Wysocki | 761afb8 | 2010-10-14 23:24:13 +0200 | [diff] [blame] | 473 | #else |
Rafael J. Wysocki | dee8370 | 2012-11-02 01:40:36 +0100 | [diff] [blame] | 474 | static inline int __acpi_device_run_wake(struct acpi_device *adev, bool en) |
| 475 | { |
| 476 | return -ENODEV; |
| 477 | } |
Lin Ming | b24e509 | 2012-03-27 15:43:25 +0800 | [diff] [blame] | 478 | static inline int acpi_pm_device_run_wake(struct device *dev, bool enable) |
| 479 | { |
| 480 | return -ENODEV; |
| 481 | } |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 482 | #endif |
| 483 | |
| 484 | #ifdef CONFIG_PM_SLEEP |
Rafael J. Wysocki | dee8370 | 2012-11-02 01:40:36 +0100 | [diff] [blame] | 485 | int __acpi_device_sleep_wake(struct acpi_device *, u32, bool); |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 486 | int acpi_pm_device_sleep_wake(struct device *, bool); |
David Howells | f7a1b86 | 2008-07-08 15:00:54 +0100 | [diff] [blame] | 487 | #else |
Rafael J. Wysocki | dee8370 | 2012-11-02 01:40:36 +0100 | [diff] [blame] | 488 | static inline int __acpi_device_sleep_wake(struct acpi_device *adev, |
| 489 | u32 target_state, bool enable) |
David Howells | f7a1b86 | 2008-07-08 15:00:54 +0100 | [diff] [blame] | 490 | { |
| 491 | return -ENODEV; |
Rafael J. Wysocki | 761afb8 | 2010-10-14 23:24:13 +0200 | [diff] [blame] | 492 | } |
Shaohua Li | fd4aff1 | 2007-07-17 22:40:25 +0200 | [diff] [blame] | 493 | static inline int acpi_pm_device_sleep_wake(struct device *dev, bool enable) |
Len Brown | fd35094 | 2007-05-09 23:34:35 -0400 | [diff] [blame] | 494 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | return -ENODEV; |
| 496 | } |
| 497 | #endif |
| 498 | |
David Rientjes | 99926a8 | 2012-11-10 22:48:33 +0100 | [diff] [blame] | 499 | #ifdef CONFIG_ACPI_SLEEP |
| 500 | u32 acpi_target_system_state(void); |
| 501 | #else |
| 502 | static inline u32 acpi_target_system_state(void) { return ACPI_STATE_S0; } |
| 503 | #endif |
| 504 | |
Rafael J. Wysocki | 078eb12 | 2012-11-02 01:40:45 +0100 | [diff] [blame] | 505 | static inline bool acpi_device_power_manageable(struct acpi_device *adev) |
| 506 | { |
| 507 | return adev->flags.power_manageable; |
| 508 | } |
| 509 | |
| 510 | static inline bool acpi_device_can_wakeup(struct acpi_device *adev) |
| 511 | { |
| 512 | return adev->wakeup.flags.valid; |
| 513 | } |
| 514 | |
Aaron Lu | 1399dfc | 2012-11-21 23:33:40 +0100 | [diff] [blame] | 515 | static inline bool acpi_device_can_poweroff(struct acpi_device *adev) |
| 516 | { |
| 517 | return adev->power.states[ACPI_STATE_D3_COLD].flags.os_accessible; |
| 518 | } |
| 519 | |
Matthew Garrett | 66886d6 | 2012-05-11 16:08:25 +0800 | [diff] [blame] | 520 | #else /* CONFIG_ACPI */ |
| 521 | |
Len Brown | 7ae3098 | 2012-06-04 00:29:11 -0400 | [diff] [blame] | 522 | static inline int register_acpi_bus_type(void *bus) { return 0; } |
| 523 | static inline int unregister_acpi_bus_type(void *bus) { return 0; } |
Matthew Garrett | 66886d6 | 2012-05-11 16:08:25 +0800 | [diff] [blame] | 524 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | #endif /* CONFIG_ACPI */ |
| 526 | |
| 527 | #endif /*__ACPI_BUS_H__*/ |