blob: f61f8927d8437e688d649111bfbc33153bf6ef1c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * acpi_bus.c - ACPI Bus Driver ($Revision: 80 $)
3 *
4 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
5 *
6 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or (at
11 * your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19 */
20
21#include <linux/module.h>
22#include <linux/init.h>
23#include <linux/ioport.h>
Randy Dunlapd568df82006-07-12 01:47:00 -040024#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/list.h>
26#include <linux/sched.h>
27#include <linux/pm.h>
28#include <linux/device.h>
29#include <linux/proc_fs.h>
Harvey Harrison6697c052008-02-09 23:24:08 +010030#include <linux/acpi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Mark Brown49a12872014-01-27 00:32:14 +000032#include <linux/regulator/machine.h>
Prakash, Prashanthbaa0c012016-06-23 12:24:26 -060033#include <linux/workqueue.h>
34#include <linux/reboot.h>
35#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#ifdef CONFIG_X86
37#include <asm/mpspec.h>
38#endif
Tomasz Nowicki88ef16d2016-09-12 20:54:20 +020039#include <linux/acpi_iort.h>
Robert Hancock7752d5c2008-02-15 01:27:20 -080040#include <linux/pci.h>
Huang Yingeccddd32011-07-13 13:14:20 +080041#include <acpi/apei.h>
Len Browneb27cae2009-07-06 23:40:19 -040042#include <linux/dmi.h>
Rafael J. Wysockicd51e61c2011-02-11 00:04:52 +010043#include <linux/suspend.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Bjorn Helgaase60cc7a2009-03-13 12:08:26 -060045#include "internal.h"
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define _COMPONENT ACPI_BUS_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050048ACPI_MODULE_NAME("bus");
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Len Brown4be44fc2005-08-05 00:44:28 -040050struct acpi_device *acpi_root;
51struct proc_dir_entry *acpi_root_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052EXPORT_SYMBOL(acpi_root_dir);
53
Lin Mingcce4f632010-05-12 09:26:48 +080054#ifdef CONFIG_X86
Lv Zheng73577d12014-05-12 15:50:16 +080055#ifdef CONFIG_ACPI_CUSTOM_DSDT
56static inline int set_copy_dsdt(const struct dmi_system_id *id)
57{
58 return 0;
59}
60#else
Lin Mingaa2110c2010-04-08 14:34:27 +080061static int set_copy_dsdt(const struct dmi_system_id *id)
62{
63 printk(KERN_NOTICE "%s detected - "
64 "force copy of DSDT to local memory\n", id->ident);
65 acpi_gbl_copy_dsdt_locally = 1;
66 return 0;
67}
Lv Zheng73577d12014-05-12 15:50:16 +080068#endif
Lin Mingaa2110c2010-04-08 14:34:27 +080069
Kai Heng Fengae976352018-07-19 19:00:30 +080070static const struct dmi_system_id dsdt_dmi_table[] __initconst = {
Lin Mingaa2110c2010-04-08 14:34:27 +080071 /*
Len Brown100cf872010-09-28 22:57:02 -040072 * Invoke DSDT corruption work-around on all Toshiba Satellite.
Lin Mingaa2110c2010-04-08 14:34:27 +080073 * https://bugzilla.kernel.org/show_bug.cgi?id=14679
74 */
75 {
76 .callback = set_copy_dsdt,
Len Brown100cf872010-09-28 22:57:02 -040077 .ident = "TOSHIBA Satellite",
Lin Mingaa2110c2010-04-08 14:34:27 +080078 .matches = {
79 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
Len Brown100cf872010-09-28 22:57:02 -040080 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite"),
Lin Mingaa2110c2010-04-08 14:34:27 +080081 },
Lin Mingcce4f632010-05-12 09:26:48 +080082 },
83 {}
Lin Mingaa2110c2010-04-08 14:34:27 +080084};
Lin Mingcce4f632010-05-12 09:26:48 +080085#else
Kai Heng Fengae976352018-07-19 19:00:30 +080086static const struct dmi_system_id dsdt_dmi_table[] __initconst = {
Lin Mingcce4f632010-05-12 09:26:48 +080087 {}
88};
89#endif
Lin Mingaa2110c2010-04-08 14:34:27 +080090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/* --------------------------------------------------------------------------
92 Device Management
93 -------------------------------------------------------------------------- */
94
Bjorn Helgaas402ac532009-09-21 19:30:01 +000095acpi_status acpi_bus_get_status_handle(acpi_handle handle,
96 unsigned long long *sta)
97{
98 acpi_status status;
99
100 status = acpi_evaluate_integer(handle, "_STA", NULL, sta);
101 if (ACPI_SUCCESS(status))
102 return AE_OK;
103
104 if (status == AE_NOT_FOUND) {
105 *sta = ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED |
106 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING;
107 return AE_OK;
108 }
109 return status;
110}
Hans de Goede5a98231f2018-01-26 16:02:56 +0100111EXPORT_SYMBOL_GPL(acpi_bus_get_status_handle);
Bjorn Helgaas402ac532009-09-21 19:30:01 +0000112
Len Brown4be44fc2005-08-05 00:44:28 -0400113int acpi_bus_get_status(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Bjorn Helgaas402ac532009-09-21 19:30:01 +0000115 acpi_status status;
116 unsigned long long sta;
Len Brown4be44fc2005-08-05 00:44:28 -0400117
Hans de Goedeb7ecf662017-04-21 12:47:40 +0200118 if (acpi_device_always_present(device)) {
119 acpi_set_device_status(device, ACPI_STA_DEFAULT);
120 return 0;
121 }
122
Hans de Goede54ddce72018-01-26 16:02:58 +0100123 /* Battery devices must have their deps met before calling _STA */
124 if (acpi_device_is_battery(device) && device->dep_unmet) {
125 acpi_set_device_status(device, 0);
126 return 0;
127 }
128
Bjorn Helgaas402ac532009-09-21 19:30:01 +0000129 status = acpi_bus_get_status_handle(device->handle, &sta);
130 if (ACPI_FAILURE(status))
131 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Rafael J. Wysocki25db1152013-11-22 21:56:06 +0100133 acpi_set_device_status(device, sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 if (device->status.functional && !device->status.present) {
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800136 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]: "
137 "functional but not present;\n",
Rafael J. Wysocki25db1152013-11-22 21:56:06 +0100138 device->pnp.bus_id, (u32)sta));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140
Len Brown4be44fc2005-08-05 00:44:28 -0400141 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]\n",
Rafael J. Wysocki25db1152013-11-22 21:56:06 +0100142 device->pnp.bus_id, (u32)sta));
Patrick Mocheld550d982006-06-27 00:41:40 -0400143 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
Len Brown4be44fc2005-08-05 00:44:28 -0400145EXPORT_SYMBOL(acpi_bus_get_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Zhang Rui20733932008-01-17 15:51:21 +0800147void acpi_bus_private_data_handler(acpi_handle handle,
Bob Moore8e4319c2009-06-29 13:43:27 +0800148 void *context)
Zhang Rui20733932008-01-17 15:51:21 +0800149{
150 return;
151}
152EXPORT_SYMBOL(acpi_bus_private_data_handler);
153
Lan Tianyu72013792014-05-20 20:59:21 +0800154int acpi_bus_attach_private_data(acpi_handle handle, void *data)
155{
156 acpi_status status;
157
158 status = acpi_attach_data(handle,
159 acpi_bus_private_data_handler, data);
160 if (ACPI_FAILURE(status)) {
161 acpi_handle_debug(handle, "Error attaching device data\n");
162 return -ENODEV;
163 }
164
165 return 0;
166}
167EXPORT_SYMBOL_GPL(acpi_bus_attach_private_data);
168
Zhang Rui20733932008-01-17 15:51:21 +0800169int acpi_bus_get_private_data(acpi_handle handle, void **data)
170{
Bjorn Helgaas6a8c0af2013-06-03 18:20:24 +0000171 acpi_status status;
Zhang Rui20733932008-01-17 15:51:21 +0800172
173 if (!*data)
174 return -EINVAL;
175
176 status = acpi_get_data(handle, acpi_bus_private_data_handler, data);
Lan Tianyu72013792014-05-20 20:59:21 +0800177 if (ACPI_FAILURE(status)) {
178 acpi_handle_debug(handle, "No context for object\n");
Zhang Rui20733932008-01-17 15:51:21 +0800179 return -ENODEV;
180 }
181
182 return 0;
183}
Lan Tianyu72013792014-05-20 20:59:21 +0800184EXPORT_SYMBOL_GPL(acpi_bus_get_private_data);
185
186void acpi_bus_detach_private_data(acpi_handle handle)
187{
188 acpi_detach_data(handle, acpi_bus_private_data_handler);
189}
190EXPORT_SYMBOL_GPL(acpi_bus_detach_private_data);
Zhang Rui20733932008-01-17 15:51:21 +0800191
Shaohua Li70023de2009-10-29 11:04:28 +0800192static void acpi_print_osc_error(acpi_handle handle,
Rafael J. Wysockif26f5c82016-06-16 17:23:09 +0200193 struct acpi_osc_context *context, char *error)
Shaohua Li70023de2009-10-29 11:04:28 +0800194{
Shaohua Li70023de2009-10-29 11:04:28 +0800195 int i;
196
Rafael J. Wysockif26f5c82016-06-16 17:23:09 +0200197 acpi_handle_debug(handle, "(%s): %s\n", context->uuid_str, error);
198
199 pr_debug("_OSC request data:");
Shaohua Li70023de2009-10-29 11:04:28 +0800200 for (i = 0; i < context->cap.length; i += sizeof(u32))
Rafael J. Wysockif26f5c82016-06-16 17:23:09 +0200201 pr_debug(" %x", *((u32 *)(context->cap.pointer + i)));
202
203 pr_debug("\n");
Shaohua Li70023de2009-10-29 11:04:28 +0800204}
205
Shaohua Li70023de2009-10-29 11:04:28 +0800206acpi_status acpi_run_osc(acpi_handle handle, struct acpi_osc_context *context)
207{
208 acpi_status status;
209 struct acpi_object_list input;
210 union acpi_object in_params[4];
211 union acpi_object *out_obj;
Andy Shevchenkodfcaad82017-06-05 19:40:44 +0300212 guid_t guid;
Shaohua Li70023de2009-10-29 11:04:28 +0800213 u32 errors;
Shaohua Li9dc130f2009-12-23 17:04:11 +0800214 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
Shaohua Li70023de2009-10-29 11:04:28 +0800215
216 if (!context)
217 return AE_ERROR;
Andy Shevchenkodfcaad82017-06-05 19:40:44 +0300218 if (guid_parse(context->uuid_str, &guid))
Shaohua Li70023de2009-10-29 11:04:28 +0800219 return AE_ERROR;
220 context->ret.length = ACPI_ALLOCATE_BUFFER;
221 context->ret.pointer = NULL;
222
223 /* Setting up input parameters */
224 input.count = 4;
225 input.pointer = in_params;
226 in_params[0].type = ACPI_TYPE_BUFFER;
227 in_params[0].buffer.length = 16;
Andy Shevchenkodfcaad82017-06-05 19:40:44 +0300228 in_params[0].buffer.pointer = (u8 *)&guid;
Shaohua Li70023de2009-10-29 11:04:28 +0800229 in_params[1].type = ACPI_TYPE_INTEGER;
230 in_params[1].integer.value = context->rev;
231 in_params[2].type = ACPI_TYPE_INTEGER;
232 in_params[2].integer.value = context->cap.length/sizeof(u32);
233 in_params[3].type = ACPI_TYPE_BUFFER;
234 in_params[3].buffer.length = context->cap.length;
235 in_params[3].buffer.pointer = context->cap.pointer;
236
Shaohua Li9dc130f2009-12-23 17:04:11 +0800237 status = acpi_evaluate_object(handle, "_OSC", &input, &output);
Shaohua Li70023de2009-10-29 11:04:28 +0800238 if (ACPI_FAILURE(status))
239 return status;
240
Shaohua Li9dc130f2009-12-23 17:04:11 +0800241 if (!output.length)
Shaohua Li70023de2009-10-29 11:04:28 +0800242 return AE_NULL_OBJECT;
243
Shaohua Li9dc130f2009-12-23 17:04:11 +0800244 out_obj = output.pointer;
245 if (out_obj->type != ACPI_TYPE_BUFFER
246 || out_obj->buffer.length != context->cap.length) {
Shaohua Li70023de2009-10-29 11:04:28 +0800247 acpi_print_osc_error(handle, context,
248 "_OSC evaluation returned wrong type");
249 status = AE_TYPE;
250 goto out_kfree;
251 }
252 /* Need to ignore the bit0 in result code */
253 errors = *((u32 *)out_obj->buffer.pointer) & ~(1 << 0);
254 if (errors) {
255 if (errors & OSC_REQUEST_ERROR)
256 acpi_print_osc_error(handle, context,
257 "_OSC request failed");
258 if (errors & OSC_INVALID_UUID_ERROR)
259 acpi_print_osc_error(handle, context,
260 "_OSC invalid UUID");
261 if (errors & OSC_INVALID_REVISION_ERROR)
262 acpi_print_osc_error(handle, context,
263 "_OSC invalid revision");
264 if (errors & OSC_CAPABILITIES_MASK_ERROR) {
Bjorn Helgaasb938a222013-09-05 15:05:54 -0600265 if (((u32 *)context->cap.pointer)[OSC_QUERY_DWORD]
Shaohua Li70023de2009-10-29 11:04:28 +0800266 & OSC_QUERY_ENABLE)
267 goto out_success;
268 status = AE_SUPPORT;
269 goto out_kfree;
270 }
271 status = AE_ERROR;
272 goto out_kfree;
273 }
274out_success:
Shaohua Li9dc130f2009-12-23 17:04:11 +0800275 context->ret.length = out_obj->buffer.length;
Andrei Epuree2cb5f02013-03-11 08:20:16 +0000276 context->ret.pointer = kmemdup(out_obj->buffer.pointer,
277 context->ret.length, GFP_KERNEL);
Shaohua Li9dc130f2009-12-23 17:04:11 +0800278 if (!context->ret.pointer) {
279 status = AE_NO_MEMORY;
280 goto out_kfree;
281 }
Shaohua Li9dc130f2009-12-23 17:04:11 +0800282 status = AE_OK;
Shaohua Li70023de2009-10-29 11:04:28 +0800283
284out_kfree:
Shaohua Li9dc130f2009-12-23 17:04:11 +0800285 kfree(output.pointer);
286 if (status != AE_OK)
287 context->ret.pointer = NULL;
Shaohua Li70023de2009-10-29 11:04:28 +0800288 return status;
289}
290EXPORT_SYMBOL(acpi_run_osc);
291
Huang Yingeccddd32011-07-13 13:14:20 +0800292bool osc_sb_apei_support_acked;
Sudeep Hollaa36a7fe2016-07-21 17:18:07 +0100293
294/*
295 * ACPI 6.0 Section 8.4.4.2 Idle State Coordination
296 * OSPM supports platform coordinated low power idle(LPI) states
297 */
298bool osc_pc_lpi_support_confirmed;
299EXPORT_SYMBOL_GPL(osc_pc_lpi_support_confirmed);
300
Shaohua Li3563ff92009-10-29 11:05:05 +0800301static u8 sb_uuid_str[] = "0811B06E-4A27-44F9-8D60-3CBBC22E7B48";
302static void acpi_bus_osc_support(void)
303{
304 u32 capbuf[2];
305 struct acpi_osc_context context = {
306 .uuid_str = sb_uuid_str,
307 .rev = 1,
308 .cap.length = 8,
309 .cap.pointer = capbuf,
310 };
311 acpi_handle handle;
312
Bjorn Helgaasb938a222013-09-05 15:05:54 -0600313 capbuf[OSC_QUERY_DWORD] = OSC_QUERY_ENABLE;
314 capbuf[OSC_SUPPORT_DWORD] = OSC_SB_PR3_SUPPORT; /* _PR3 is in use */
Sudeep Hollabcb2b0b2015-09-14 16:01:55 +0100315 if (IS_ENABLED(CONFIG_ACPI_PROCESSOR_AGGREGATOR))
316 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_PAD_SUPPORT;
317 if (IS_ENABLED(CONFIG_ACPI_PROCESSOR))
318 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_PPC_OST_SUPPORT;
Huang Yingeccddd32011-07-13 13:14:20 +0800319
Bjorn Helgaasb938a222013-09-05 15:05:54 -0600320 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_HOTPLUG_OST_SUPPORT;
Sudeep Hollaa36a7fe2016-07-21 17:18:07 +0100321 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_PCLPI_SUPPORT;
Toshi Kanic2f41912012-05-23 20:25:24 -0600322
Srinivas Pandruvada5c2832e2016-11-22 12:23:58 -0800323#ifdef CONFIG_X86
324 if (boot_cpu_has(X86_FEATURE_HWP)) {
325 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_CPC_SUPPORT;
326 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_CPCV2_SUPPORT;
327 }
328#endif
329
Tim Chende966cf2016-11-29 10:43:27 -0800330 if (IS_ENABLED(CONFIG_SCHED_MC_PRIO))
Srinivas Pandruvada8b533a02016-11-22 12:23:59 -0800331 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_CPC_DIVERSE_HIGH_SUPPORT;
332
Huang Yingeccddd32011-07-13 13:14:20 +0800333 if (!ghes_disable)
Bjorn Helgaasb938a222013-09-05 15:05:54 -0600334 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_APEI_SUPPORT;
Shaohua Li3563ff92009-10-29 11:05:05 +0800335 if (ACPI_FAILURE(acpi_get_handle(NULL, "\\_SB", &handle)))
336 return;
Huang Yingeccddd32011-07-13 13:14:20 +0800337 if (ACPI_SUCCESS(acpi_run_osc(handle, &context))) {
338 u32 *capbuf_ret = context.ret.pointer;
Sudeep Hollaa36a7fe2016-07-21 17:18:07 +0100339 if (context.ret.length > OSC_SUPPORT_DWORD) {
Huang Yingeccddd32011-07-13 13:14:20 +0800340 osc_sb_apei_support_acked =
Bjorn Helgaasb938a222013-09-05 15:05:54 -0600341 capbuf_ret[OSC_SUPPORT_DWORD] & OSC_SB_APEI_SUPPORT;
Sudeep Hollaa36a7fe2016-07-21 17:18:07 +0100342 osc_pc_lpi_support_confirmed =
343 capbuf_ret[OSC_SUPPORT_DWORD] & OSC_SB_PCLPI_SUPPORT;
344 }
Shaohua Li3563ff92009-10-29 11:05:05 +0800345 kfree(context.ret.pointer);
Huang Yingeccddd32011-07-13 13:14:20 +0800346 }
347 /* do we need to check other returned cap? Sounds no */
Shaohua Li3563ff92009-10-29 11:05:05 +0800348}
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 Notification Handling
352 -------------------------------------------------------------------------- */
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354/**
355 * acpi_bus_notify
356 * ---------------
357 * Callback for all 'system-level' device notifications (values 0x00-0x7F).
358 */
Len Brown4be44fc2005-08-05 00:44:28 -0400359static void acpi_bus_notify(acpi_handle handle, u32 type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Rafael J. Wysocki1a699472014-02-06 13:58:13 +0100361 struct acpi_device *adev;
Bjorn Helgaas6d278132009-04-30 09:35:37 -0600362 struct acpi_driver *driver;
Rafael J. Wysocki1a699472014-02-06 13:58:13 +0100363 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
Rafael J. Wysockid0103382014-05-01 01:16:06 +0200364 bool hotplug_event = false;
Bjorn Helgaas02c37bd2009-05-22 11:43:41 -0600365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 switch (type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 case ACPI_NOTIFY_BUS_CHECK:
Rafael J. Wysocki1a699472014-02-06 13:58:13 +0100368 acpi_handle_debug(handle, "ACPI_NOTIFY_BUS_CHECK event\n");
Rafael J. Wysockid0103382014-05-01 01:16:06 +0200369 hotplug_event = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 break;
371
372 case ACPI_NOTIFY_DEVICE_CHECK:
Rafael J. Wysocki1a699472014-02-06 13:58:13 +0100373 acpi_handle_debug(handle, "ACPI_NOTIFY_DEVICE_CHECK event\n");
Rafael J. Wysockid0103382014-05-01 01:16:06 +0200374 hotplug_event = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 break;
376
377 case ACPI_NOTIFY_DEVICE_WAKE:
Rafael J. Wysocki1a699472014-02-06 13:58:13 +0100378 acpi_handle_debug(handle, "ACPI_NOTIFY_DEVICE_WAKE event\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 break;
380
381 case ACPI_NOTIFY_EJECT_REQUEST:
Rafael J. Wysocki1a699472014-02-06 13:58:13 +0100382 acpi_handle_debug(handle, "ACPI_NOTIFY_EJECT_REQUEST event\n");
Rafael J. Wysockid0103382014-05-01 01:16:06 +0200383 hotplug_event = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 break;
385
386 case ACPI_NOTIFY_DEVICE_CHECK_LIGHT:
Rafael J. Wysocki1a699472014-02-06 13:58:13 +0100387 acpi_handle_debug(handle, "ACPI_NOTIFY_DEVICE_CHECK_LIGHT event\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 /* TBD: Exactly what does 'light' mean? */
389 break;
390
391 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
Rafael J. Wysocki1a699472014-02-06 13:58:13 +0100392 acpi_handle_err(handle, "Device cannot be configured due "
393 "to a frequency mismatch\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 break;
395
396 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
Rafael J. Wysocki1a699472014-02-06 13:58:13 +0100397 acpi_handle_err(handle, "Device cannot be configured due "
398 "to a bus mode mismatch\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 break;
400
401 case ACPI_NOTIFY_POWER_FAULT:
Rafael J. Wysocki1a699472014-02-06 13:58:13 +0100402 acpi_handle_err(handle, "Device has suffered a power fault\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 break;
404
405 default:
Rafael J. Wysockif66abe92014-04-24 19:27:49 +0200406 acpi_handle_debug(handle, "Unknown event type 0x%x\n", type);
407 break;
Rafael J. Wysocki1a699472014-02-06 13:58:13 +0100408 }
409
410 adev = acpi_bus_get_acpi_device(handle);
411 if (!adev)
412 goto err;
413
414 driver = adev->driver;
415 if (driver && driver->ops.notify &&
416 (driver->flags & ACPI_DRIVER_ALL_NOTIFY_EVENTS))
417 driver->ops.notify(adev, type);
418
Lee, Chun-Yi9a4d8d62017-06-30 15:25:38 +0800419 if (!hotplug_event) {
420 acpi_bus_put_acpi_device(adev);
421 return;
422 }
423
424 if (ACPI_SUCCESS(acpi_hotplug_schedule(adev, type)))
Rafael J. Wysockid0103382014-05-01 01:16:06 +0200425 return;
426
Rafael J. Wysocki1a699472014-02-06 13:58:13 +0100427 acpi_bus_put_acpi_device(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Rafael J. Wysocki1a699472014-02-06 13:58:13 +0100429 err:
Rafael J. Wysocki700b8422014-02-21 01:07:17 +0100430 acpi_evaluate_ost(handle, type, ost_code, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
Rafael J. Wysocki5894b0c2015-07-17 22:54:01 +0200433static void acpi_device_notify(acpi_handle handle, u32 event, void *data)
434{
435 struct acpi_device *device = data;
436
437 device->driver->ops.notify(device, event);
438}
439
440static void acpi_device_notify_fixed(void *data)
441{
442 struct acpi_device *device = data;
443
444 /* Fixed hardware devices have no handles */
445 acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device);
446}
447
448static u32 acpi_device_fixed_event(void *data)
449{
450 acpi_os_execute(OSL_NOTIFY_HANDLER, acpi_device_notify_fixed, data);
451 return ACPI_INTERRUPT_HANDLED;
452}
453
454static int acpi_device_install_notify_handler(struct acpi_device *device)
455{
456 acpi_status status;
457
458 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
459 status =
460 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
461 acpi_device_fixed_event,
462 device);
463 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
464 status =
465 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
466 acpi_device_fixed_event,
467 device);
468 else
469 status = acpi_install_notify_handler(device->handle,
470 ACPI_DEVICE_NOTIFY,
471 acpi_device_notify,
472 device);
473
474 if (ACPI_FAILURE(status))
475 return -EINVAL;
476 return 0;
477}
478
479static void acpi_device_remove_notify_handler(struct acpi_device *device)
480{
481 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
482 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
483 acpi_device_fixed_event);
484 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
485 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
486 acpi_device_fixed_event);
487 else
488 acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
489 acpi_device_notify);
490}
491
Prakash, Prashanthbaa0c012016-06-23 12:24:26 -0600492/* Handle events targeting \_SB device (at present only graceful shutdown) */
493
494#define ACPI_SB_NOTIFY_SHUTDOWN_REQUEST 0x81
495#define ACPI_SB_INDICATE_INTERVAL 10000
496
497static void sb_notify_work(struct work_struct *dummy)
498{
499 acpi_handle sb_handle;
500
501 orderly_poweroff(true);
502
503 /*
504 * After initiating graceful shutdown, the ACPI spec requires OSPM
505 * to evaluate _OST method once every 10seconds to indicate that
506 * the shutdown is in progress
507 */
508 acpi_get_handle(NULL, "\\_SB", &sb_handle);
509 while (1) {
510 pr_info("Graceful shutdown in progress.\n");
511 acpi_evaluate_ost(sb_handle, ACPI_OST_EC_OSPM_SHUTDOWN,
512 ACPI_OST_SC_OS_SHUTDOWN_IN_PROGRESS, NULL);
513 msleep(ACPI_SB_INDICATE_INTERVAL);
514 }
515}
516
517static void acpi_sb_notify(acpi_handle handle, u32 event, void *data)
518{
519 static DECLARE_WORK(acpi_sb_work, sb_notify_work);
520
521 if (event == ACPI_SB_NOTIFY_SHUTDOWN_REQUEST) {
522 if (!work_busy(&acpi_sb_work))
523 schedule_work(&acpi_sb_work);
524 } else
525 pr_warn("event %x is not supported by \\_SB device\n", event);
526}
527
528static int __init acpi_setup_sb_notify_handler(void)
529{
530 acpi_handle sb_handle;
531
532 if (ACPI_FAILURE(acpi_get_handle(NULL, "\\_SB", &sb_handle)))
533 return -ENXIO;
534
535 if (ACPI_FAILURE(acpi_install_notify_handler(sb_handle, ACPI_DEVICE_NOTIFY,
536 acpi_sb_notify, NULL)))
537 return -EINVAL;
538
539 return 0;
540}
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542/* --------------------------------------------------------------------------
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200543 Device Matching
544 -------------------------------------------------------------------------- */
545
Aleksey Makarov3b95bd12016-02-16 15:52:38 +0300546/**
547 * acpi_get_first_physical_node - Get first physical node of an ACPI device
548 * @adev: ACPI device in question
549 *
550 * Return: First physical node of ACPI device @adev
551 */
552struct device *acpi_get_first_physical_node(struct acpi_device *adev)
Rafael J. Wysockie91a3982015-08-01 02:39:43 +0200553{
554 struct mutex *physical_node_lock = &adev->physical_node_lock;
Aleksey Makarov3b95bd12016-02-16 15:52:38 +0300555 struct device *phys_dev;
Rafael J. Wysockie91a3982015-08-01 02:39:43 +0200556
557 mutex_lock(physical_node_lock);
558 if (list_empty(&adev->physical_node_list)) {
Aleksey Makarov3b95bd12016-02-16 15:52:38 +0300559 phys_dev = NULL;
Rafael J. Wysockie91a3982015-08-01 02:39:43 +0200560 } else {
561 const struct acpi_device_physical_node *node;
562
563 node = list_first_entry(&adev->physical_node_list,
564 struct acpi_device_physical_node, node);
Aleksey Makarov3b95bd12016-02-16 15:52:38 +0300565
566 phys_dev = node->dev;
Rafael J. Wysockie91a3982015-08-01 02:39:43 +0200567 }
568 mutex_unlock(physical_node_lock);
Aleksey Makarov3b95bd12016-02-16 15:52:38 +0300569 return phys_dev;
570}
571
572static struct acpi_device *acpi_primary_dev_companion(struct acpi_device *adev,
573 const struct device *dev)
574{
575 const struct device *phys_dev = acpi_get_first_physical_node(adev);
576
577 return phys_dev && phys_dev == dev ? adev : NULL;
Rafael J. Wysockie91a3982015-08-01 02:39:43 +0200578}
579
Rafael J. Wysocki3431e492015-07-29 23:57:51 +0200580/**
581 * acpi_device_is_first_physical_node - Is given dev first physical node
582 * @adev: ACPI companion device
583 * @dev: Physical device to check
584 *
585 * Function checks if given @dev is the first physical devices attached to
586 * the ACPI companion device. This distinction is needed in some cases
587 * where the same companion device is shared between many physical devices.
588 *
589 * Note that the caller have to provide valid @adev pointer.
590 */
591bool acpi_device_is_first_physical_node(struct acpi_device *adev,
592 const struct device *dev)
593{
Rafael J. Wysockie91a3982015-08-01 02:39:43 +0200594 return !!acpi_primary_dev_companion(adev, dev);
Rafael J. Wysocki3431e492015-07-29 23:57:51 +0200595}
596
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200597/*
598 * acpi_companion_match() - Can we match via ACPI companion device
599 * @dev: Device in question
600 *
601 * Check if the given device has an ACPI companion and if that companion has
602 * a valid list of PNP IDs, and if the device is the first (primary) physical
603 * device associated with it. Return the companion pointer if that's the case
604 * or NULL otherwise.
605 *
606 * If multiple physical devices are attached to a single ACPI companion, we need
607 * to be careful. The usage scenario for this kind of relationship is that all
608 * of the physical devices in question use resources provided by the ACPI
609 * companion. A typical case is an MFD device where all the sub-devices share
610 * the parent's ACPI companion. In such cases we can only allow the primary
611 * (first) physical device to be matched with the help of the companion's PNP
612 * IDs.
613 *
614 * Additional physical devices sharing the ACPI companion can still use
615 * resources available from it but they will be matched normally using functions
616 * provided by their bus types (and analogously for their modalias).
617 */
618struct acpi_device *acpi_companion_match(const struct device *dev)
619{
620 struct acpi_device *adev;
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200621
622 adev = ACPI_COMPANION(dev);
623 if (!adev)
624 return NULL;
625
626 if (list_empty(&adev->pnp.ids))
627 return NULL;
628
Rafael J. Wysockie91a3982015-08-01 02:39:43 +0200629 return acpi_primary_dev_companion(adev, dev);
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200630}
631
632/**
633 * acpi_of_match_device - Match device object using the "compatible" property.
634 * @adev: ACPI device object to match.
635 * @of_match_table: List of device IDs to match against.
Andy Shevchenko4222f382018-02-09 17:38:33 +0200636 * @of_id: OF ID if matched
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200637 *
638 * If @dev has an ACPI companion which has ACPI_DT_NAMESPACE_HID in its list of
639 * identifiers and a _DSD object with the "compatible" property, use that
640 * property to match against the given list of identifiers.
641 */
642static bool acpi_of_match_device(struct acpi_device *adev,
Andy Shevchenko4222f382018-02-09 17:38:33 +0200643 const struct of_device_id *of_match_table,
644 const struct of_device_id **of_id)
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200645{
646 const union acpi_object *of_compatible, *obj;
647 int i, nval;
648
649 if (!adev)
650 return false;
651
652 of_compatible = adev->data.of_compatible;
653 if (!of_match_table || !of_compatible)
654 return false;
655
656 if (of_compatible->type == ACPI_TYPE_PACKAGE) {
657 nval = of_compatible->package.count;
658 obj = of_compatible->package.elements;
659 } else { /* Must be ACPI_TYPE_STRING. */
660 nval = 1;
661 obj = of_compatible;
662 }
663 /* Now we can look for the driver DT compatible strings */
664 for (i = 0; i < nval; i++, obj++) {
665 const struct of_device_id *id;
666
667 for (id = of_match_table; id->compatible[0]; id++)
Andy Shevchenko4222f382018-02-09 17:38:33 +0200668 if (!strcasecmp(obj->string.pointer, id->compatible)) {
669 if (of_id)
670 *of_id = id;
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200671 return true;
Andy Shevchenko4222f382018-02-09 17:38:33 +0200672 }
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200673 }
674
675 return false;
676}
677
Dan O'Donovan51ede5d2017-02-05 16:30:12 +0000678static bool acpi_of_modalias(struct acpi_device *adev,
679 char *modalias, size_t len)
680{
681 const union acpi_object *of_compatible;
682 const union acpi_object *obj;
683 const char *str, *chr;
684
685 of_compatible = adev->data.of_compatible;
686 if (!of_compatible)
687 return false;
688
689 if (of_compatible->type == ACPI_TYPE_PACKAGE)
690 obj = of_compatible->package.elements;
691 else /* Must be ACPI_TYPE_STRING. */
692 obj = of_compatible;
693
694 str = obj->string.pointer;
695 chr = strchr(str, ',');
696 strlcpy(modalias, chr ? chr + 1 : str, len);
697
698 return true;
699}
700
701/**
702 * acpi_set_modalias - Set modalias using "compatible" property or supplied ID
703 * @adev: ACPI device object to match
704 * @default_id: ID string to use as default if no compatible string found
705 * @modalias: Pointer to buffer that modalias value will be copied into
706 * @len: Length of modalias buffer
707 *
708 * This is a counterpart of of_modalias_node() for struct acpi_device objects.
709 * If there is a compatible string for @adev, it will be copied to @modalias
710 * with the vendor prefix stripped; otherwise, @default_id will be used.
711 */
712void acpi_set_modalias(struct acpi_device *adev, const char *default_id,
713 char *modalias, size_t len)
714{
715 if (!acpi_of_modalias(adev, modalias, len))
716 strlcpy(modalias, default_id, len);
717}
718EXPORT_SYMBOL_GPL(acpi_set_modalias);
719
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200720static bool __acpi_match_device_cls(const struct acpi_device_id *id,
721 struct acpi_hardware_id *hwid)
722{
723 int i, msk, byte_shift;
724 char buf[3];
725
726 if (!id->cls)
727 return false;
728
729 /* Apply class-code bitmask, before checking each class-code byte */
730 for (i = 1; i <= 3; i++) {
731 byte_shift = 8 * (3 - i);
732 msk = (id->cls_msk >> byte_shift) & 0xFF;
733 if (!msk)
734 continue;
735
736 sprintf(buf, "%02x", (id->cls >> byte_shift) & msk);
737 if (strncmp(buf, &hwid->id[(i - 1) * 2], 2))
738 return false;
739 }
740 return true;
741}
742
Andy Shevchenko4222f382018-02-09 17:38:33 +0200743static bool __acpi_match_device(struct acpi_device *device,
744 const struct acpi_device_id *acpi_ids,
745 const struct of_device_id *of_ids,
746 const struct acpi_device_id **acpi_id,
747 const struct of_device_id **of_id)
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200748{
749 const struct acpi_device_id *id;
750 struct acpi_hardware_id *hwid;
751
752 /*
753 * If the device is not present, it is unnecessary to load device
754 * driver for it.
755 */
756 if (!device || !device->status.present)
Andy Shevchenko4222f382018-02-09 17:38:33 +0200757 return false;
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200758
759 list_for_each_entry(hwid, &device->pnp.ids, list) {
760 /* First, check the ACPI/PNP IDs provided by the caller. */
Andy Shevchenko4222f382018-02-09 17:38:33 +0200761 if (acpi_ids) {
762 for (id = acpi_ids; id->id[0] || id->cls; id++) {
763 if (id->id[0] && !strcmp((char *)id->id, hwid->id))
764 goto out_acpi_match;
765 if (id->cls && __acpi_match_device_cls(id, hwid))
766 goto out_acpi_match;
767 }
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200768 }
769
770 /*
771 * Next, check ACPI_DT_NAMESPACE_HID and try to match the
772 * "compatible" property if found.
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200773 */
Andy Shevchenko4222f382018-02-09 17:38:33 +0200774 if (!strcmp(ACPI_DT_NAMESPACE_HID, hwid->id))
775 return acpi_of_match_device(device, of_ids, of_id);
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200776 }
Andy Shevchenko4222f382018-02-09 17:38:33 +0200777 return false;
778
779out_acpi_match:
780 if (acpi_id)
781 *acpi_id = id;
782 return true;
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200783}
784
785/**
786 * acpi_match_device - Match a struct device against a given list of ACPI IDs
787 * @ids: Array of struct acpi_device_id object to match against.
788 * @dev: The device structure to match.
789 *
790 * Check if @dev has a valid ACPI handle and if there is a struct acpi_device
791 * object for that handle and use that object to match against a given list of
792 * device IDs.
793 *
794 * Return a pointer to the first matching ID on success or %NULL on failure.
795 */
796const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids,
797 const struct device *dev)
798{
Andy Shevchenko4222f382018-02-09 17:38:33 +0200799 const struct acpi_device_id *id = NULL;
800
801 __acpi_match_device(acpi_companion_match(dev), ids, NULL, &id, NULL);
802 return id;
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200803}
804EXPORT_SYMBOL_GPL(acpi_match_device);
805
Andy Shevchenko67dcc262018-02-09 17:38:36 +0200806const void *acpi_device_get_match_data(const struct device *dev)
Sinan Kaya80212a12017-12-13 02:20:48 -0500807{
808 const struct acpi_device_id *match;
809
Sinan Kaya80212a12017-12-13 02:20:48 -0500810 match = acpi_match_device(dev->driver->acpi_match_table, dev);
811 if (!match)
812 return NULL;
813
Andy Shevchenko67dcc262018-02-09 17:38:36 +0200814 return (const void *)match->driver_data;
Sinan Kaya80212a12017-12-13 02:20:48 -0500815}
Andy Shevchenko29d53252018-02-09 17:38:35 +0200816EXPORT_SYMBOL_GPL(acpi_device_get_match_data);
Sinan Kaya80212a12017-12-13 02:20:48 -0500817
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200818int acpi_match_device_ids(struct acpi_device *device,
819 const struct acpi_device_id *ids)
820{
Andy Shevchenko4222f382018-02-09 17:38:33 +0200821 return __acpi_match_device(device, ids, NULL, NULL, NULL) ? 0 : -ENOENT;
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200822}
823EXPORT_SYMBOL(acpi_match_device_ids);
824
825bool acpi_driver_match_device(struct device *dev,
826 const struct device_driver *drv)
827{
828 if (!drv->acpi_match_table)
829 return acpi_of_match_device(ACPI_COMPANION(dev),
Andy Shevchenko4222f382018-02-09 17:38:33 +0200830 drv->of_match_table,
831 NULL);
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200832
Andy Shevchenko4222f382018-02-09 17:38:33 +0200833 return __acpi_match_device(acpi_companion_match(dev),
834 drv->acpi_match_table, drv->of_match_table,
835 NULL, NULL);
Rafael J. Wysocki68c6b142015-07-17 22:53:52 +0200836}
837EXPORT_SYMBOL_GPL(acpi_driver_match_device);
838
839/* --------------------------------------------------------------------------
Rafael J. Wysocki5894b0c2015-07-17 22:54:01 +0200840 ACPI Driver Management
841 -------------------------------------------------------------------------- */
842
843/**
844 * acpi_bus_register_driver - register a driver with the ACPI bus
845 * @driver: driver being registered
846 *
847 * Registers a driver with the ACPI bus. Searches the namespace for all
848 * devices that match the driver's criteria and binds. Returns zero for
849 * success or a negative error status for failure.
850 */
851int acpi_bus_register_driver(struct acpi_driver *driver)
852{
853 int ret;
854
855 if (acpi_disabled)
856 return -ENODEV;
857 driver->drv.name = driver->name;
858 driver->drv.bus = &acpi_bus_type;
859 driver->drv.owner = driver->owner;
860
861 ret = driver_register(&driver->drv);
862 return ret;
863}
864
865EXPORT_SYMBOL(acpi_bus_register_driver);
866
867/**
868 * acpi_bus_unregister_driver - unregisters a driver with the ACPI bus
869 * @driver: driver to unregister
870 *
871 * Unregisters a driver with the ACPI bus. Searches the namespace for all
872 * devices that match the driver's criteria and unbinds.
873 */
874void acpi_bus_unregister_driver(struct acpi_driver *driver)
875{
876 driver_unregister(&driver->drv);
877}
878
879EXPORT_SYMBOL(acpi_bus_unregister_driver);
880
881/* --------------------------------------------------------------------------
882 ACPI Bus operations
883 -------------------------------------------------------------------------- */
884
885static int acpi_bus_match(struct device *dev, struct device_driver *drv)
886{
887 struct acpi_device *acpi_dev = to_acpi_device(dev);
888 struct acpi_driver *acpi_drv = to_acpi_driver(drv);
889
890 return acpi_dev->flags.match_driver
891 && !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
892}
893
894static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env)
895{
896 return __acpi_device_uevent_modalias(to_acpi_device(dev), env);
897}
898
899static int acpi_device_probe(struct device *dev)
900{
901 struct acpi_device *acpi_dev = to_acpi_device(dev);
902 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
903 int ret;
904
905 if (acpi_dev->handler && !acpi_is_pnp_device(acpi_dev))
906 return -EINVAL;
907
908 if (!acpi_drv->ops.add)
909 return -ENOSYS;
910
911 ret = acpi_drv->ops.add(acpi_dev);
912 if (ret)
913 return ret;
914
915 acpi_dev->driver = acpi_drv;
916 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
917 "Driver [%s] successfully bound to device [%s]\n",
918 acpi_drv->name, acpi_dev->pnp.bus_id));
919
920 if (acpi_drv->ops.notify) {
921 ret = acpi_device_install_notify_handler(acpi_dev);
922 if (ret) {
923 if (acpi_drv->ops.remove)
924 acpi_drv->ops.remove(acpi_dev);
925
926 acpi_dev->driver = NULL;
927 acpi_dev->driver_data = NULL;
928 return ret;
929 }
930 }
931
932 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found driver [%s] for device [%s]\n",
933 acpi_drv->name, acpi_dev->pnp.bus_id));
934 get_device(dev);
935 return 0;
936}
937
938static int acpi_device_remove(struct device * dev)
939{
940 struct acpi_device *acpi_dev = to_acpi_device(dev);
941 struct acpi_driver *acpi_drv = acpi_dev->driver;
942
943 if (acpi_drv) {
944 if (acpi_drv->ops.notify)
945 acpi_device_remove_notify_handler(acpi_dev);
946 if (acpi_drv->ops.remove)
947 acpi_drv->ops.remove(acpi_dev);
948 }
949 acpi_dev->driver = NULL;
950 acpi_dev->driver_data = NULL;
951
952 put_device(dev);
953 return 0;
954}
955
956struct bus_type acpi_bus_type = {
957 .name = "acpi",
958 .match = acpi_bus_match,
959 .probe = acpi_device_probe,
960 .remove = acpi_device_remove,
961 .uevent = acpi_device_uevent,
962};
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964/* --------------------------------------------------------------------------
965 Initialization/Cleanup
966 -------------------------------------------------------------------------- */
967
Len Brown4be44fc2005-08-05 00:44:28 -0400968static int __init acpi_bus_init_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
Bjorn Helgaas6a8c0af2013-06-03 18:20:24 +0000970 acpi_status status;
Len Brown4be44fc2005-08-05 00:44:28 -0400971 char *message = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500974 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 * Let the system know what interrupt model we are using by
976 * evaluating the \_PIC object, if exists.
977 */
978
979 switch (acpi_irq_model) {
980 case ACPI_IRQ_MODEL_PIC:
981 message = "PIC";
982 break;
983 case ACPI_IRQ_MODEL_IOAPIC:
984 message = "IOAPIC";
985 break;
986 case ACPI_IRQ_MODEL_IOSAPIC:
987 message = "IOSAPIC";
988 break;
Hanjun Guofbe61ec2015-03-24 14:02:48 +0000989 case ACPI_IRQ_MODEL_GIC:
990 message = "GIC";
991 break;
John Keller3948ec92006-12-22 11:50:04 -0600992 case ACPI_IRQ_MODEL_PLATFORM:
993 message = "platform specific model";
994 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 default:
996 printk(KERN_WARNING PREFIX "Unknown interrupt routing model\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400997 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
999
1000 printk(KERN_INFO PREFIX "Using %s for interrupt routing\n", message);
1001
Jiang Liu0db98202013-06-29 00:24:39 +08001002 status = acpi_execute_simple_method(NULL, "\\_PIC", acpi_irq_model);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001004 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PIC"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001005 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 }
1007
Patrick Mocheld550d982006-06-27 00:41:40 -04001008 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
1010
Rafael J. Wysockib064a8f2015-06-10 01:33:36 +02001011/**
1012 * acpi_early_init - Initialize ACPICA and populate the ACPI namespace.
1013 *
1014 * The ACPI tables are accessible after this, but the handling of events has not
1015 * been initialized and the global lock is not available yet, so AML should not
1016 * be executed at this point.
1017 *
1018 * Doing this before switching the EFI runtime services to virtual mode allows
1019 * the EfiBootServices memory to be freed slightly earlier on boot.
1020 */
Len Brown4be44fc2005-08-05 00:44:28 -04001021void __init acpi_early_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
Bjorn Helgaas6a8c0af2013-06-03 18:20:24 +00001023 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -04001026 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Bob Moore616861242006-03-17 16:44:00 -05001028 printk(KERN_INFO PREFIX "Core revision %08x\n", ACPI_CA_VERSION);
1029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 /* enable workarounds, unless strict ACPI spec. compliance */
1031 if (!acpi_strict)
1032 acpi_gbl_enable_interpreter_slack = TRUE;
1033
Lv Zheng8d3523f2016-12-14 15:04:46 +08001034 acpi_permanent_mmap = true;
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +03001035
Kai Heng Fengae976352018-07-19 19:00:30 +08001036 /*
1037 * If the machine falls into the DMI check table,
1038 * DSDT will be copied to memory
1039 */
1040 dmi_check_system(dsdt_dmi_table);
Lin Mingaa2110c2010-04-08 14:34:27 +08001041
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +03001042 status = acpi_reallocate_root_table();
1043 if (ACPI_FAILURE(status)) {
1044 printk(KERN_ERR PREFIX
1045 "Unable to reallocate ACPI tables\n");
1046 goto error0;
1047 }
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 status = acpi_initialize_subsystem();
1050 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -04001051 printk(KERN_ERR PREFIX
1052 "Unable to initialize the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 goto error0;
1054 }
1055
Bob Mooree7d970f2018-03-14 16:13:06 -07001056 if (!acpi_gbl_execute_tables_as_methods &&
Lv Zheng1ef35662016-09-23 11:26:49 +08001057 acpi_gbl_group_module_level_code) {
Lv Zhengfe6cbea2016-03-24 10:43:00 +08001058 status = acpi_load_tables();
1059 if (ACPI_FAILURE(status)) {
1060 printk(KERN_ERR PREFIX
1061 "Unable to load the System Description Tables\n");
1062 goto error0;
1063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 }
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066#ifdef CONFIG_X86
1067 if (!acpi_ioapic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 /* compatible (0) means level (3) */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001069 if (!(acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)) {
1070 acpi_sci_flags &= ~ACPI_MADT_TRIGGER_MASK;
1071 acpi_sci_flags |= ACPI_MADT_TRIGGER_LEVEL;
1072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 /* Set PIC-mode SCI trigger type */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001074 acpi_pic_sci_set_trigger(acpi_gbl_FADT.sci_interrupt,
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +03001075 (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 /*
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001078 * now that acpi_gbl_FADT is initialized,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 * update it with result from INT_SRC_OVR parsing
1080 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001081 acpi_gbl_FADT.sci_interrupt = acpi_sci_override_gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 }
1083#endif
Rafael J. Wysockib064a8f2015-06-10 01:33:36 +02001084 return;
1085
1086 error0:
1087 disable_acpi();
1088}
1089
1090/**
1091 * acpi_subsystem_init - Finalize the early initialization of ACPI.
1092 *
Baoquan He3af03f72016-07-04 11:13:59 +08001093 * Switch over the platform to the ACPI mode (if possible).
Rafael J. Wysockib064a8f2015-06-10 01:33:36 +02001094 *
1095 * Doing this too early is generally unsafe, but at the same time it needs to be
1096 * done before all things that really depend on ACPI. The right spot appears to
1097 * be before finalizing the EFI initialization.
1098 */
1099void __init acpi_subsystem_init(void)
1100{
1101 acpi_status status;
1102
1103 if (acpi_disabled)
1104 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Rafael J. Wysocki4505a202011-11-06 14:20:42 +01001106 status = acpi_enable_subsystem(~ACPI_NO_ACPI_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 if (ACPI_FAILURE(status)) {
1108 printk(KERN_ERR PREFIX "Unable to enable ACPI\n");
Rafael J. Wysockib064a8f2015-06-10 01:33:36 +02001109 disable_acpi();
1110 } else {
1111 /*
1112 * If the system is using ACPI then we can be reasonably
1113 * confident that any regulators are managed by the firmware
1114 * so tell the regulator core it has everything it needs to
1115 * know.
1116 */
1117 regulator_has_full_constraints();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119}
1120
Octavian Purdila68bdb672016-07-08 19:13:09 +03001121static acpi_status acpi_bus_table_handler(u32 event, void *table, void *context)
1122{
1123 acpi_scan_table_handler(event, table, context);
1124
1125 return acpi_sysfs_table_handler(event, table, context);
1126}
1127
Len Brown4be44fc2005-08-05 00:44:28 -04001128static int __init acpi_bus_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
Bjorn Helgaas6a8c0af2013-06-03 18:20:24 +00001130 int result;
1131 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Jiri Slaby176f9c12009-03-04 11:55:27 -08001133 acpi_os_initialize1();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 /*
1136 * ACPI 2.0 requires the EC driver to be loaded and work before
Lv Zhengfe6cbea2016-03-24 10:43:00 +08001137 * the EC device is found in the namespace (i.e. before
1138 * acpi_load_tables() is called).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 *
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -05001140 * This is accomplished by looking for the ECDT table, and getting
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 * the EC parameters out of that.
1142 */
1143 status = acpi_ec_ecdt_probe();
1144 /* Ignore result. Not having an ECDT is not fatal. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Bob Mooree7d970f2018-03-14 16:13:06 -07001146 if (acpi_gbl_execute_tables_as_methods ||
Lv Zheng1ef35662016-09-23 11:26:49 +08001147 !acpi_gbl_group_module_level_code) {
Lv Zhengfe6cbea2016-03-24 10:43:00 +08001148 status = acpi_load_tables();
1149 if (ACPI_FAILURE(status)) {
1150 printk(KERN_ERR PREFIX
1151 "Unable to load the System Description Tables\n");
1152 goto error1;
1153 }
1154 }
1155
1156 status = acpi_enable_subsystem(ACPI_NO_ACPI_ENABLE);
1157 if (ACPI_FAILURE(status)) {
1158 printk(KERN_ERR PREFIX
1159 "Unable to start the ACPI Interpreter\n");
1160 goto error1;
1161 }
1162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION);
1164 if (ACPI_FAILURE(status)) {
1165 printk(KERN_ERR PREFIX "Unable to initialize ACPI objects\n");
1166 goto error1;
1167 }
1168
Srinivas Pandruvadaa2121162016-03-23 21:07:39 -07001169 /* Set capability bits for _OSC under processor scope */
1170 acpi_early_processor_osc();
1171
Zhang Ruib1d248d2010-10-26 10:06:54 +08001172 /*
Lin Mingfc54ab72012-07-16 16:30:21 +08001173 * _OSC method may exist in module level code,
1174 * so it must be run after ACPI_FULL_INITIALIZATION
1175 */
1176 acpi_bus_osc_support();
1177
1178 /*
Zhang Ruib1d248d2010-10-26 10:06:54 +08001179 * _PDC control method may load dynamic SSDT tables,
1180 * and we need to install the table handler before that.
1181 */
Octavian Purdila68bdb672016-07-08 19:13:09 +03001182 status = acpi_install_table_handler(acpi_bus_table_handler, NULL);
1183
Zhang Ruib1d248d2010-10-26 10:06:54 +08001184 acpi_sysfs_init();
1185
Alex Chiang78f16992009-12-20 12:19:09 -07001186 acpi_early_processor_set_pdc();
1187
Zhao Yakui455c8792008-10-06 10:31:36 +08001188 /*
1189 * Maybe EC region is required at bus_scan/acpi_get_devices. So it
1190 * is necessary to enable it as early as possible.
1191 */
Lv Zhengdcf15cb2016-06-03 10:26:12 +08001192 acpi_ec_dsdt_probe();
Zhao Yakui455c8792008-10-06 10:31:36 +08001193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 printk(KERN_INFO PREFIX "Interpreter enabled\n");
1195
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -05001196 /* Initialize sleep structures */
1197 acpi_sleep_init();
1198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 /*
1200 * Get the system interrupt model and evaluate \_PIC.
1201 */
1202 result = acpi_bus_init_irq();
1203 if (result)
1204 goto error1;
1205
1206 /*
1207 * Register the for all standard device notifications.
1208 */
Len Brown4be44fc2005-08-05 00:44:28 -04001209 status =
1210 acpi_install_notify_handler(ACPI_ROOT_OBJECT, ACPI_SYSTEM_NOTIFY,
1211 &acpi_bus_notify, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -04001213 printk(KERN_ERR PREFIX
1214 "Unable to register for device notifications\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 goto error1;
1216 }
1217
1218 /*
1219 * Create the top ACPI proc directory
1220 */
1221 acpi_root_dir = proc_mkdir(ACPI_BUS_FILE_ROOT, NULL);
1222
Rafael J. Wysocki1dcc3d32015-07-17 22:54:09 +02001223 result = bus_register(&acpi_bus_type);
1224 if (!result)
1225 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227 /* Mimic structured exception handling */
Len Brown4be44fc2005-08-05 00:44:28 -04001228 error1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 acpi_terminate();
Patrick Mocheld550d982006-06-27 00:41:40 -04001230 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231}
1232
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -07001233struct kobject *acpi_kobj;
Matthew Garrettf2d47532012-01-31 13:19:19 -05001234EXPORT_SYMBOL_GPL(acpi_kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Len Brown4be44fc2005-08-05 00:44:28 -04001236static int __init acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237{
Rafael J. Wysocki6831c6e2011-02-15 21:22:24 +01001238 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 if (acpi_disabled) {
1241 printk(KERN_INFO PREFIX "Interpreter disabled.\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001242 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 }
1244
Greg Kroah-Hartmanf62ed9e2007-11-05 13:16:15 -08001245 acpi_kobj = kobject_create_and_add("acpi", firmware_kobj);
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -07001246 if (!acpi_kobj) {
Harvey Harrison96b2dd12008-03-05 18:24:51 -08001247 printk(KERN_WARNING "%s: kset create error\n", __func__);
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -07001248 acpi_kobj = NULL;
1249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Bjorn Helgaas0e465172009-03-24 16:50:09 -06001251 init_acpi_device_notify();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 result = acpi_bus_init();
Rafael J. Wysocki6831c6e2011-02-15 21:22:24 +01001253 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 disable_acpi();
Bjorn Helgaas81d02732009-03-24 16:49:38 -06001255 return result;
Rafael J. Wysocki6831c6e2011-02-15 21:22:24 +01001256 }
Bjorn Helgaas81d02732009-03-24 16:49:38 -06001257
Rafael J. Wysocki6831c6e2011-02-15 21:22:24 +01001258 pci_mmcfg_late_init();
Tomasz Nowicki88ef16d2016-09-12 20:54:20 +02001259 acpi_iort_init();
Bjorn Helgaase747f272009-03-24 16:49:43 -06001260 acpi_scan_init();
Bjorn Helgaasa5f820f2009-03-24 16:49:48 -06001261 acpi_ec_init();
Zhang Ruia25ee922010-07-15 10:46:15 +08001262 acpi_debugfs_init();
Bjorn Helgaas9cee43e2009-03-24 16:50:14 -06001263 acpi_sleep_proc_init();
Bjorn Helgaas201b8c62009-03-24 16:50:19 -06001264 acpi_wakeup_device_init();
Lv Zheng836d083012015-12-03 10:43:14 +08001265 acpi_debugger_init();
Prakash, Prashanthbaa0c012016-06-23 12:24:26 -06001266 acpi_setup_sb_notify_handler();
Rafael J. Wysocki6831c6e2011-02-15 21:22:24 +01001267 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268}
1269
1270subsys_initcall(acpi_init);