Merge tag 'for-linus-20180830' of git://git.kernel.dk/linux-block
[linux-2.6-block.git] / drivers / acpi / bus.c
CommitLineData
1da177e4
LT
1/*
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 *
1da177e4
LT
18 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19 */
20
21#include <linux/module.h>
22#include <linux/init.h>
23#include <linux/ioport.h>
d568df84 24#include <linux/kernel.h>
1da177e4
LT
25#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>
6697c052 30#include <linux/acpi.h>
5a0e3ad6 31#include <linux/slab.h>
49a12877 32#include <linux/regulator/machine.h>
baa0c019
PP
33#include <linux/workqueue.h>
34#include <linux/reboot.h>
35#include <linux/delay.h>
1da177e4
LT
36#ifdef CONFIG_X86
37#include <asm/mpspec.h>
38#endif
88ef16d8 39#include <linux/acpi_iort.h>
7752d5cf 40#include <linux/pci.h>
eccddd32 41#include <acpi/apei.h>
eb27cae8 42#include <linux/dmi.h>
cd51e61c 43#include <linux/suspend.h>
1da177e4 44
e60cc7a6
BH
45#include "internal.h"
46
1da177e4 47#define _COMPONENT ACPI_BUS_COMPONENT
f52fd66d 48ACPI_MODULE_NAME("bus");
1da177e4 49
4be44fcd
LB
50struct acpi_device *acpi_root;
51struct proc_dir_entry *acpi_root_dir;
1da177e4
LT
52EXPORT_SYMBOL(acpi_root_dir);
53
cce4f632 54#ifdef CONFIG_X86
73577d1d
LZ
55#ifdef CONFIG_ACPI_CUSTOM_DSDT
56static inline int set_copy_dsdt(const struct dmi_system_id *id)
57{
58 return 0;
59}
60#else
aa2110cb
LM
61static 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}
73577d1d 68#endif
aa2110cb 69
ae976358 70static const struct dmi_system_id dsdt_dmi_table[] __initconst = {
aa2110cb 71 /*
100cf877 72 * Invoke DSDT corruption work-around on all Toshiba Satellite.
aa2110cb
LM
73 * https://bugzilla.kernel.org/show_bug.cgi?id=14679
74 */
75 {
76 .callback = set_copy_dsdt,
100cf877 77 .ident = "TOSHIBA Satellite",
aa2110cb
LM
78 .matches = {
79 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
100cf877 80 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite"),
aa2110cb 81 },
cce4f632
LM
82 },
83 {}
aa2110cb 84};
cce4f632 85#else
ae976358 86static const struct dmi_system_id dsdt_dmi_table[] __initconst = {
cce4f632
LM
87 {}
88};
89#endif
aa2110cb 90
1da177e4
LT
91/* --------------------------------------------------------------------------
92 Device Management
93 -------------------------------------------------------------------------- */
94
402ac536
BH
95acpi_status acpi_bus_get_status_handle(acpi_handle handle,
96 unsigned long long *sta)
1da177e4 97{
402ac536 98 acpi_status status;
4be44fcd 99
402ac536
BH
100 status = acpi_evaluate_integer(handle, "_STA", NULL, sta);
101 if (ACPI_SUCCESS(status))
102 return AE_OK;
1da177e4 103
402ac536
BH
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;
1da177e4 108 }
402ac536
BH
109 return status;
110}
5a98231f 111EXPORT_SYMBOL_GPL(acpi_bus_get_status_handle);
1da177e4 112
402ac536
BH
113int acpi_bus_get_status(struct acpi_device *device)
114{
115 acpi_status status;
116 unsigned long long sta;
117
b7ecf663
HG
118 if (acpi_device_always_present(device)) {
119 acpi_set_device_status(device, ACPI_STA_DEFAULT);
120 return 0;
121 }
122
54ddce70
HG
123 /* 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
402ac536
BH
129 status = acpi_bus_get_status_handle(device->handle, &sta);
130 if (ACPI_FAILURE(status))
131 return -ENODEV;
132
25db115b 133 acpi_set_device_status(device, sta);
1da177e4
LT
134
135 if (device->status.functional && !device->status.present) {
39a0ad87
ZY
136 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]: "
137 "functional but not present;\n",
25db115b 138 device->pnp.bus_id, (u32)sta));
1da177e4
LT
139 }
140
4be44fcd 141 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]\n",
25db115b 142 device->pnp.bus_id, (u32)sta));
d550d98d 143 return 0;
1da177e4 144}
4be44fcd 145EXPORT_SYMBOL(acpi_bus_get_status);
1da177e4 146
20733939 147void acpi_bus_private_data_handler(acpi_handle handle,
8e4319c4 148 void *context)
20733939
ZR
149{
150 return;
151}
152EXPORT_SYMBOL(acpi_bus_private_data_handler);
153
72013795
LT
154int 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
20733939
ZR
169int acpi_bus_get_private_data(acpi_handle handle, void **data)
170{
6a8c0af6 171 acpi_status status;
20733939
ZR
172
173 if (!*data)
174 return -EINVAL;
175
176 status = acpi_get_data(handle, acpi_bus_private_data_handler, data);
72013795
LT
177 if (ACPI_FAILURE(status)) {
178 acpi_handle_debug(handle, "No context for object\n");
20733939
ZR
179 return -ENODEV;
180 }
181
182 return 0;
183}
72013795
LT
184EXPORT_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);
20733939 191
70023de8 192static void acpi_print_osc_error(acpi_handle handle,
f26f5c8b 193 struct acpi_osc_context *context, char *error)
70023de8 194{
70023de8
SL
195 int i;
196
f26f5c8b
RW
197 acpi_handle_debug(handle, "(%s): %s\n", context->uuid_str, error);
198
199 pr_debug("_OSC request data:");
70023de8 200 for (i = 0; i < context->cap.length; i += sizeof(u32))
f26f5c8b
RW
201 pr_debug(" %x", *((u32 *)(context->cap.pointer + i)));
202
203 pr_debug("\n");
70023de8
SL
204}
205
70023de8
SL
206acpi_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;
dfcaad8f 212 guid_t guid;
70023de8 213 u32 errors;
9dc130fc 214 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
70023de8
SL
215
216 if (!context)
217 return AE_ERROR;
dfcaad8f 218 if (guid_parse(context->uuid_str, &guid))
70023de8
SL
219 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;
dfcaad8f 228 in_params[0].buffer.pointer = (u8 *)&guid;
70023de8
SL
229 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
9dc130fc 237 status = acpi_evaluate_object(handle, "_OSC", &input, &output);
70023de8
SL
238 if (ACPI_FAILURE(status))
239 return status;
240
9dc130fc 241 if (!output.length)
70023de8
SL
242 return AE_NULL_OBJECT;
243
9dc130fc
SL
244 out_obj = output.pointer;
245 if (out_obj->type != ACPI_TYPE_BUFFER
246 || out_obj->buffer.length != context->cap.length) {
70023de8
SL
247 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) {
b938a229 265 if (((u32 *)context->cap.pointer)[OSC_QUERY_DWORD]
70023de8
SL
266 & 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:
9dc130fc 275 context->ret.length = out_obj->buffer.length;
e2cb5f08
AE
276 context->ret.pointer = kmemdup(out_obj->buffer.pointer,
277 context->ret.length, GFP_KERNEL);
9dc130fc
SL
278 if (!context->ret.pointer) {
279 status = AE_NO_MEMORY;
280 goto out_kfree;
281 }
9dc130fc 282 status = AE_OK;
70023de8
SL
283
284out_kfree:
9dc130fc
SL
285 kfree(output.pointer);
286 if (status != AE_OK)
287 context->ret.pointer = NULL;
70023de8
SL
288 return status;
289}
290EXPORT_SYMBOL(acpi_run_osc);
291
eccddd32 292bool osc_sb_apei_support_acked;
a36a7fec
SH
293
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
3563ff96
SL
301static 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
b938a229
BH
313 capbuf[OSC_QUERY_DWORD] = OSC_QUERY_ENABLE;
314 capbuf[OSC_SUPPORT_DWORD] = OSC_SB_PR3_SUPPORT; /* _PR3 is in use */
bcb2b0b2
SH
315 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;
eccddd32 319
b938a229 320 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_HOTPLUG_OST_SUPPORT;
a36a7fec 321 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_PCLPI_SUPPORT;
c2f4191a 322
5c2832e9
SP
323#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
de966cf4 330 if (IS_ENABLED(CONFIG_SCHED_MC_PRIO))
8b533a0e
SP
331 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_CPC_DIVERSE_HIGH_SUPPORT;
332
eccddd32 333 if (!ghes_disable)
b938a229 334 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_APEI_SUPPORT;
3563ff96
SL
335 if (ACPI_FAILURE(acpi_get_handle(NULL, "\\_SB", &handle)))
336 return;
eccddd32
HY
337 if (ACPI_SUCCESS(acpi_run_osc(handle, &context))) {
338 u32 *capbuf_ret = context.ret.pointer;
a36a7fec 339 if (context.ret.length > OSC_SUPPORT_DWORD) {
eccddd32 340 osc_sb_apei_support_acked =
b938a229 341 capbuf_ret[OSC_SUPPORT_DWORD] & OSC_SB_APEI_SUPPORT;
a36a7fec
SH
342 osc_pc_lpi_support_confirmed =
343 capbuf_ret[OSC_SUPPORT_DWORD] & OSC_SB_PCLPI_SUPPORT;
344 }
3563ff96 345 kfree(context.ret.pointer);
eccddd32
HY
346 }
347 /* do we need to check other returned cap? Sounds no */
3563ff96
SL
348}
349
1da177e4
LT
350/* --------------------------------------------------------------------------
351 Notification Handling
352 -------------------------------------------------------------------------- */
353
1da177e4
LT
354/**
355 * acpi_bus_notify
356 * ---------------
357 * Callback for all 'system-level' device notifications (values 0x00-0x7F).
358 */
4be44fcd 359static void acpi_bus_notify(acpi_handle handle, u32 type, void *data)
1da177e4 360{
1a699476 361 struct acpi_device *adev;
6d278131 362 struct acpi_driver *driver;
1a699476 363 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
d0103387 364 bool hotplug_event = false;
02c37bd8 365
1da177e4 366 switch (type) {
1da177e4 367 case ACPI_NOTIFY_BUS_CHECK:
1a699476 368 acpi_handle_debug(handle, "ACPI_NOTIFY_BUS_CHECK event\n");
d0103387 369 hotplug_event = true;
1da177e4
LT
370 break;
371
372 case ACPI_NOTIFY_DEVICE_CHECK:
1a699476 373 acpi_handle_debug(handle, "ACPI_NOTIFY_DEVICE_CHECK event\n");
d0103387 374 hotplug_event = true;
1da177e4
LT
375 break;
376
377 case ACPI_NOTIFY_DEVICE_WAKE:
1a699476 378 acpi_handle_debug(handle, "ACPI_NOTIFY_DEVICE_WAKE event\n");
1da177e4
LT
379 break;
380
381 case ACPI_NOTIFY_EJECT_REQUEST:
1a699476 382 acpi_handle_debug(handle, "ACPI_NOTIFY_EJECT_REQUEST event\n");
d0103387 383 hotplug_event = true;
1da177e4
LT
384 break;
385
386 case ACPI_NOTIFY_DEVICE_CHECK_LIGHT:
1a699476 387 acpi_handle_debug(handle, "ACPI_NOTIFY_DEVICE_CHECK_LIGHT event\n");
1da177e4
LT
388 /* TBD: Exactly what does 'light' mean? */
389 break;
390
391 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
1a699476
RW
392 acpi_handle_err(handle, "Device cannot be configured due "
393 "to a frequency mismatch\n");
1da177e4
LT
394 break;
395
396 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
1a699476
RW
397 acpi_handle_err(handle, "Device cannot be configured due "
398 "to a bus mode mismatch\n");
1da177e4
LT
399 break;
400
401 case ACPI_NOTIFY_POWER_FAULT:
1a699476 402 acpi_handle_err(handle, "Device has suffered a power fault\n");
1da177e4
LT
403 break;
404
405 default:
f66abe92
RW
406 acpi_handle_debug(handle, "Unknown event type 0x%x\n", type);
407 break;
1da177e4
LT
408 }
409
1a699476
RW
410 adev = acpi_bus_get_acpi_device(handle);
411 if (!adev)
412 goto err;
78ea4639 413
1a699476
RW
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
9a4d8d60
LCY
419 if (!hotplug_event) {
420 acpi_bus_put_acpi_device(adev);
421 return;
422 }
423
424 if (ACPI_SUCCESS(acpi_hotplug_schedule(adev, type)))
d0103387
RW
425 return;
426
1a699476 427 acpi_bus_put_acpi_device(adev);
1a699476
RW
428
429 err:
700b8422 430 acpi_evaluate_ost(handle, type, ost_code, NULL);
1da177e4
LT
431}
432
5894b0c4
RW
433static 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
baa0c019
PP
492/* 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
68c6b148
RW
542/* --------------------------------------------------------------------------
543 Device Matching
544 -------------------------------------------------------------------------- */
545
3b95bd16
AM
546/**
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)
e91a398c
RW
553{
554 struct mutex *physical_node_lock = &adev->physical_node_lock;
3b95bd16 555 struct device *phys_dev;
e91a398c
RW
556
557 mutex_lock(physical_node_lock);
558 if (list_empty(&adev->physical_node_list)) {
3b95bd16 559 phys_dev = NULL;
e91a398c
RW
560 } 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);
3b95bd16
AM
565
566 phys_dev = node->dev;
e91a398c
RW
567 }
568 mutex_unlock(physical_node_lock);
3b95bd16
AM
569 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;
e91a398c
RW
578}
579
3431e490
RW
580/**
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{
e91a398c 594 return !!acpi_primary_dev_companion(adev, dev);
3431e490
RW
595}
596
68c6b148
RW
597/*
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;
68c6b148
RW
621
622 adev = ACPI_COMPANION(dev);
623 if (!adev)
624 return NULL;
625
626 if (list_empty(&adev->pnp.ids))
627 return NULL;
628
e91a398c 629 return acpi_primary_dev_companion(adev, dev);
68c6b148
RW
630}
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.
4222f38c 636 * @of_id: OF ID if matched
68c6b148
RW
637 *
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,
4222f38c
AS
643 const struct of_device_id *of_match_table,
644 const struct of_device_id **of_id)
68c6b148
RW
645{
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++)
4222f38c
AS
668 if (!strcasecmp(obj->string.pointer, id->compatible)) {
669 if (of_id)
670 *of_id = id;
68c6b148 671 return true;
4222f38c 672 }
68c6b148
RW
673 }
674
675 return false;
676}
677
51ede5d9
DD
678static 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
68c6b148
RW
720static 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
4222f38c
AS
743static 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)
68c6b148
RW
748{
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)
4222f38c 757 return false;
68c6b148
RW
758
759 list_for_each_entry(hwid, &device->pnp.ids, list) {
760 /* First, check the ACPI/PNP IDs provided by the caller. */
4222f38c
AS
761 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 }
68c6b148
RW
768 }
769
770 /*
771 * Next, check ACPI_DT_NAMESPACE_HID and try to match the
772 * "compatible" property if found.
68c6b148 773 */
4222f38c
AS
774 if (!strcmp(ACPI_DT_NAMESPACE_HID, hwid->id))
775 return acpi_of_match_device(device, of_ids, of_id);
68c6b148 776 }
4222f38c
AS
777 return false;
778
779out_acpi_match:
780 if (acpi_id)
781 *acpi_id = id;
782 return true;
68c6b148
RW
783}
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{
4222f38c
AS
799 const struct acpi_device_id *id = NULL;
800
801 __acpi_match_device(acpi_companion_match(dev), ids, NULL, &id, NULL);
802 return id;
68c6b148
RW
803}
804EXPORT_SYMBOL_GPL(acpi_match_device);
805
67dcc26d 806const void *acpi_device_get_match_data(const struct device *dev)
80212a16
SK
807{
808 const struct acpi_device_id *match;
809
80212a16
SK
810 match = acpi_match_device(dev->driver->acpi_match_table, dev);
811 if (!match)
812 return NULL;
813
67dcc26d 814 return (const void *)match->driver_data;
80212a16 815}
29d5325a 816EXPORT_SYMBOL_GPL(acpi_device_get_match_data);
80212a16 817
68c6b148
RW
818int acpi_match_device_ids(struct acpi_device *device,
819 const struct acpi_device_id *ids)
820{
4222f38c 821 return __acpi_match_device(device, ids, NULL, NULL, NULL) ? 0 : -ENOENT;
68c6b148
RW
822}
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),
4222f38c
AS
830 drv->of_match_table,
831 NULL);
68c6b148 832
4222f38c
AS
833 return __acpi_match_device(acpi_companion_match(dev),
834 drv->acpi_match_table, drv->of_match_table,
835 NULL, NULL);
68c6b148
RW
836}
837EXPORT_SYMBOL_GPL(acpi_driver_match_device);
838
5894b0c4
RW
839/* --------------------------------------------------------------------------
840 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
67fbd0a3 938static int acpi_device_remove(struct device *dev)
5894b0c4
RW
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
1da177e4
LT
964/* --------------------------------------------------------------------------
965 Initialization/Cleanup
966 -------------------------------------------------------------------------- */
967
4be44fcd 968static int __init acpi_bus_init_irq(void)
1da177e4 969{
6a8c0af6 970 acpi_status status;
4be44fcd 971 char *message = NULL;
1da177e4 972
1da177e4 973
aafbcd16 974 /*
1da177e4
LT
975 * 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;
fbe61ec7
HG
989 case ACPI_IRQ_MODEL_GIC:
990 message = "GIC";
991 break;
3948ec94
JK
992 case ACPI_IRQ_MODEL_PLATFORM:
993 message = "platform specific model";
994 break;
1da177e4
LT
995 default:
996 printk(KERN_WARNING PREFIX "Unknown interrupt routing model\n");
d550d98d 997 return -ENODEV;
1da177e4
LT
998 }
999
1000 printk(KERN_INFO PREFIX "Using %s for interrupt routing\n", message);
1001
0db98202 1002 status = acpi_execute_simple_method(NULL, "\\_PIC", acpi_irq_model);
1da177e4 1003 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
a6fc6720 1004 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PIC"));
d550d98d 1005 return -ENODEV;
1da177e4
LT
1006 }
1007
d550d98d 1008 return 0;
1da177e4
LT
1009}
1010
b064a8fa
RW
1011/**
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 */
4be44fcd 1021void __init acpi_early_init(void)
1da177e4 1022{
6a8c0af6 1023 acpi_status status;
1da177e4
LT
1024
1025 if (acpi_disabled)
d550d98d 1026 return;
1da177e4 1027
61686124
BM
1028 printk(KERN_INFO PREFIX "Core revision %08x\n", ACPI_CA_VERSION);
1029
1da177e4
LT
1030 /* enable workarounds, unless strict ACPI spec. compliance */
1031 if (!acpi_strict)
1032 acpi_gbl_enable_interpreter_slack = TRUE;
1033
8d3523fb 1034 acpi_permanent_mmap = true;
ad71860a 1035
ae976358
KHF
1036 /*
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);
aa2110cb 1041
ad71860a
AS
1042 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
1da177e4
LT
1049 status = acpi_initialize_subsystem();
1050 if (ACPI_FAILURE(status)) {
4be44fcd
LB
1051 printk(KERN_ERR PREFIX
1052 "Unable to initialize the ACPI Interpreter\n");
1da177e4
LT
1053 goto error0;
1054 }
1055
e7d970f6 1056 if (!acpi_gbl_execute_tables_as_methods &&
1ef35668 1057 acpi_gbl_group_module_level_code) {
fe6cbea0
LZ
1058 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 }
1da177e4
LT
1064 }
1065
1da177e4
LT
1066#ifdef CONFIG_X86
1067 if (!acpi_ioapic) {
1da177e4 1068 /* compatible (0) means level (3) */
5f3b1a8b
AS
1069 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 }
1da177e4 1073 /* Set PIC-mode SCI trigger type */
cee324b1 1074 acpi_pic_sci_set_trigger(acpi_gbl_FADT.sci_interrupt,
5f3b1a8b 1075 (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
1da177e4 1076 } else {
1da177e4 1077 /*
cee324b1 1078 * now that acpi_gbl_FADT is initialized,
1da177e4
LT
1079 * update it with result from INT_SRC_OVR parsing
1080 */
cee324b1 1081 acpi_gbl_FADT.sci_interrupt = acpi_sci_override_gsi;
1da177e4
LT
1082 }
1083#endif
b064a8fa
RW
1084 return;
1085
1086 error0:
1087 disable_acpi();
1088}
1089
1090/**
1091 * acpi_subsystem_init - Finalize the early initialization of ACPI.
1092 *
3af03f77 1093 * Switch over the platform to the ACPI mode (if possible).
b064a8fa
RW
1094 *
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;
1da177e4 1105
4505a201 1106 status = acpi_enable_subsystem(~ACPI_NO_ACPI_ENABLE);
1da177e4
LT
1107 if (ACPI_FAILURE(status)) {
1108 printk(KERN_ERR PREFIX "Unable to enable ACPI\n");
b064a8fa
RW
1109 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();
1da177e4 1118 }
1da177e4
LT
1119}
1120
68bdb677
OP
1121static 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
4be44fcd 1128static int __init acpi_bus_init(void)
1da177e4 1129{
6a8c0af6
BH
1130 int result;
1131 acpi_status status;
1da177e4 1132
176f9c18 1133 acpi_os_initialize1();
1da177e4 1134
1da177e4
LT
1135 /*
1136 * ACPI 2.0 requires the EC driver to be loaded and work before
fe6cbea0
LZ
1137 * the EC device is found in the namespace (i.e. before
1138 * acpi_load_tables() is called).
1da177e4 1139 *
aafbcd16 1140 * This is accomplished by looking for the ECDT table, and getting
1da177e4
LT
1141 * the EC parameters out of that.
1142 */
1143 status = acpi_ec_ecdt_probe();
1144 /* Ignore result. Not having an ECDT is not fatal. */
1da177e4 1145
e7d970f6 1146 if (acpi_gbl_execute_tables_as_methods ||
1ef35668 1147 !acpi_gbl_group_module_level_code) {
fe6cbea0
LZ
1148 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
1da177e4
LT
1163 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
a2121167
SP
1169 /* Set capability bits for _OSC under processor scope */
1170 acpi_early_processor_osc();
1171
fc54ab72
LM
1172 /*
1173 * _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
b1d248d9
ZR
1178 /*
1179 * _PDC control method may load dynamic SSDT tables,
1180 * and we need to install the table handler before that.
1181 */
68bdb677
OP
1182 status = acpi_install_table_handler(acpi_bus_table_handler, NULL);
1183
b1d248d9
ZR
1184 acpi_sysfs_init();
1185
78f16996
AC
1186 acpi_early_processor_set_pdc();
1187
455c8793
ZY
1188 /*
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 */
dcf15cbd 1192 acpi_ec_dsdt_probe();
455c8793 1193
1da177e4
LT
1194 printk(KERN_INFO PREFIX "Interpreter enabled\n");
1195
aafbcd16
AS
1196 /* Initialize sleep structures */
1197 acpi_sleep_init();
1198
1da177e4
LT
1199 /*
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 */
4be44fcd
LB
1209 status =
1210 acpi_install_notify_handler(ACPI_ROOT_OBJECT, ACPI_SYSTEM_NOTIFY,
1211 &acpi_bus_notify, NULL);
1da177e4 1212 if (ACPI_FAILURE(status)) {
4be44fcd
LB
1213 printk(KERN_ERR PREFIX
1214 "Unable to register for device notifications\n");
1da177e4
LT
1215 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
1dcc3d33
RW
1223 result = bus_register(&acpi_bus_type);
1224 if (!result)
1225 return 0;
1da177e4
LT
1226
1227 /* Mimic structured exception handling */
4be44fcd 1228 error1:
1da177e4 1229 acpi_terminate();
d550d98d 1230 return -ENODEV;
1da177e4
LT
1231}
1232
99e0d2fc 1233struct kobject *acpi_kobj;
f2d4753f 1234EXPORT_SYMBOL_GPL(acpi_kobj);
1da177e4 1235
4be44fcd 1236static int __init acpi_init(void)
1da177e4 1237{
6831c6ed 1238 int result;
1da177e4 1239
1da177e4
LT
1240 if (acpi_disabled) {
1241 printk(KERN_INFO PREFIX "Interpreter disabled.\n");
d550d98d 1242 return -ENODEV;
1da177e4
LT
1243 }
1244
f62ed9e3 1245 acpi_kobj = kobject_create_and_add("acpi", firmware_kobj);
99e0d2fc 1246 if (!acpi_kobj) {
96b2dd1f 1247 printk(KERN_WARNING "%s: kset create error\n", __func__);
99e0d2fc
GKH
1248 acpi_kobj = NULL;
1249 }
1da177e4 1250
0e46517d 1251 init_acpi_device_notify();
1da177e4 1252 result = acpi_bus_init();
6831c6ed 1253 if (result) {
1da177e4 1254 disable_acpi();
81d0273d 1255 return result;
6831c6ed 1256 }
81d0273d 1257
6831c6ed 1258 pci_mmcfg_late_init();
88ef16d8 1259 acpi_iort_init();
e747f274 1260 acpi_scan_init();
a5f820fe 1261 acpi_ec_init();
a25ee920 1262 acpi_debugfs_init();
9cee43e0 1263 acpi_sleep_proc_init();
201b8c65 1264 acpi_wakeup_device_init();
836d0830 1265 acpi_debugger_init();
baa0c019 1266 acpi_setup_sb_notify_handler();
6831c6ed 1267 return 0;
1da177e4
LT
1268}
1269
1270subsys_initcall(acpi_init);