1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * acpi_bus.c - ACPI Bus Driver ($Revision: 80 $) 4 * 5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> 6 */ 7 8 #define pr_fmt(fmt) "ACPI: " fmt 9 10 #include <linux/module.h> 11 #include <linux/init.h> 12 #include <linux/ioport.h> 13 #include <linux/kernel.h> 14 #include <linux/list.h> 15 #include <linux/sched.h> 16 #include <linux/pm.h> 17 #include <linux/device.h> 18 #include <linux/proc_fs.h> 19 #include <linux/acpi.h> 20 #include <linux/slab.h> 21 #include <linux/regulator/machine.h> 22 #include <linux/workqueue.h> 23 #include <linux/reboot.h> 24 #include <linux/delay.h> 25 #ifdef CONFIG_X86 26 #include <asm/mpspec.h> 27 #include <linux/dmi.h> 28 #endif 29 #include <linux/acpi_viot.h> 30 #include <linux/pci.h> 31 #include <acpi/apei.h> 32 #include <linux/suspend.h> 33 #include <linux/prmt.h> 34 35 #include "internal.h" 36 37 struct acpi_device *acpi_root; 38 struct proc_dir_entry *acpi_root_dir; 39 EXPORT_SYMBOL(acpi_root_dir); 40 41 #ifdef CONFIG_X86 42 #ifdef CONFIG_ACPI_CUSTOM_DSDT 43 static inline int set_copy_dsdt(const struct dmi_system_id *id) 44 { 45 return 0; 46 } 47 #else 48 static int set_copy_dsdt(const struct dmi_system_id *id) 49 { 50 pr_notice("%s detected - force copy of DSDT to local memory\n", id->ident); 51 acpi_gbl_copy_dsdt_locally = 1; 52 return 0; 53 } 54 #endif 55 56 static const struct dmi_system_id dsdt_dmi_table[] __initconst = { 57 /* 58 * Invoke DSDT corruption work-around on all Toshiba Satellite. 59 * https://bugzilla.kernel.org/show_bug.cgi?id=14679 60 */ 61 { 62 .callback = set_copy_dsdt, 63 .ident = "TOSHIBA Satellite", 64 .matches = { 65 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), 66 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite"), 67 }, 68 }, 69 {} 70 }; 71 #endif 72 73 /* -------------------------------------------------------------------------- 74 Device Management 75 -------------------------------------------------------------------------- */ 76 77 acpi_status acpi_bus_get_status_handle(acpi_handle handle, 78 unsigned long long *sta) 79 { 80 acpi_status status; 81 82 status = acpi_evaluate_integer(handle, "_STA", NULL, sta); 83 if (ACPI_SUCCESS(status)) 84 return AE_OK; 85 86 if (status == AE_NOT_FOUND) { 87 *sta = ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED | 88 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING; 89 return AE_OK; 90 } 91 return status; 92 } 93 EXPORT_SYMBOL_GPL(acpi_bus_get_status_handle); 94 95 int acpi_bus_get_status(struct acpi_device *device) 96 { 97 acpi_status status; 98 unsigned long long sta; 99 100 if (acpi_device_override_status(device, &sta)) { 101 acpi_set_device_status(device, sta); 102 return 0; 103 } 104 105 /* Battery devices must have their deps met before calling _STA */ 106 if (acpi_device_is_battery(device) && device->dep_unmet) { 107 acpi_set_device_status(device, 0); 108 return 0; 109 } 110 111 status = acpi_bus_get_status_handle(device->handle, &sta); 112 if (ACPI_FAILURE(status)) 113 return -ENODEV; 114 115 acpi_set_device_status(device, sta); 116 117 if (device->status.functional && !device->status.present) { 118 pr_debug("Device [%s] status [%08x]: functional but not present\n", 119 device->pnp.bus_id, (u32)sta); 120 } 121 122 pr_debug("Device [%s] status [%08x]\n", device->pnp.bus_id, (u32)sta); 123 return 0; 124 } 125 EXPORT_SYMBOL(acpi_bus_get_status); 126 127 void acpi_bus_private_data_handler(acpi_handle handle, 128 void *context) 129 { 130 return; 131 } 132 EXPORT_SYMBOL(acpi_bus_private_data_handler); 133 134 int acpi_bus_attach_private_data(acpi_handle handle, void *data) 135 { 136 acpi_status status; 137 138 status = acpi_attach_data(handle, 139 acpi_bus_private_data_handler, data); 140 if (ACPI_FAILURE(status)) { 141 acpi_handle_debug(handle, "Error attaching device data\n"); 142 return -ENODEV; 143 } 144 145 return 0; 146 } 147 EXPORT_SYMBOL_GPL(acpi_bus_attach_private_data); 148 149 int acpi_bus_get_private_data(acpi_handle handle, void **data) 150 { 151 acpi_status status; 152 153 if (!data) 154 return -EINVAL; 155 156 status = acpi_get_data(handle, acpi_bus_private_data_handler, data); 157 if (ACPI_FAILURE(status)) { 158 acpi_handle_debug(handle, "No context for object\n"); 159 return -ENODEV; 160 } 161 162 return 0; 163 } 164 EXPORT_SYMBOL_GPL(acpi_bus_get_private_data); 165 166 void acpi_bus_detach_private_data(acpi_handle handle) 167 { 168 acpi_detach_data(handle, acpi_bus_private_data_handler); 169 } 170 EXPORT_SYMBOL_GPL(acpi_bus_detach_private_data); 171 172 static void acpi_print_osc_error(acpi_handle handle, 173 struct acpi_osc_context *context, char *error) 174 { 175 int i; 176 177 acpi_handle_debug(handle, "(%s): %s\n", context->uuid_str, error); 178 179 pr_debug("_OSC request data:"); 180 for (i = 0; i < context->cap.length; i += sizeof(u32)) 181 pr_debug(" %x", *((u32 *)(context->cap.pointer + i))); 182 183 pr_debug("\n"); 184 } 185 186 acpi_status acpi_run_osc(acpi_handle handle, struct acpi_osc_context *context) 187 { 188 acpi_status status; 189 struct acpi_object_list input; 190 union acpi_object in_params[4]; 191 union acpi_object *out_obj; 192 guid_t guid; 193 u32 errors; 194 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL}; 195 196 if (!context) 197 return AE_ERROR; 198 if (guid_parse(context->uuid_str, &guid)) 199 return AE_ERROR; 200 context->ret.length = ACPI_ALLOCATE_BUFFER; 201 context->ret.pointer = NULL; 202 203 /* Setting up input parameters */ 204 input.count = 4; 205 input.pointer = in_params; 206 in_params[0].type = ACPI_TYPE_BUFFER; 207 in_params[0].buffer.length = 16; 208 in_params[0].buffer.pointer = (u8 *)&guid; 209 in_params[1].type = ACPI_TYPE_INTEGER; 210 in_params[1].integer.value = context->rev; 211 in_params[2].type = ACPI_TYPE_INTEGER; 212 in_params[2].integer.value = context->cap.length/sizeof(u32); 213 in_params[3].type = ACPI_TYPE_BUFFER; 214 in_params[3].buffer.length = context->cap.length; 215 in_params[3].buffer.pointer = context->cap.pointer; 216 217 status = acpi_evaluate_object(handle, "_OSC", &input, &output); 218 if (ACPI_FAILURE(status)) 219 return status; 220 221 if (!output.length) 222 return AE_NULL_OBJECT; 223 224 out_obj = output.pointer; 225 if (out_obj->type != ACPI_TYPE_BUFFER 226 || out_obj->buffer.length != context->cap.length) { 227 acpi_print_osc_error(handle, context, 228 "_OSC evaluation returned wrong type"); 229 status = AE_TYPE; 230 goto out_kfree; 231 } 232 /* Need to ignore the bit0 in result code */ 233 errors = *((u32 *)out_obj->buffer.pointer) & ~(1 << 0); 234 if (errors) { 235 if (errors & OSC_REQUEST_ERROR) 236 acpi_print_osc_error(handle, context, 237 "_OSC request failed"); 238 if (errors & OSC_INVALID_UUID_ERROR) 239 acpi_print_osc_error(handle, context, 240 "_OSC invalid UUID"); 241 if (errors & OSC_INVALID_REVISION_ERROR) 242 acpi_print_osc_error(handle, context, 243 "_OSC invalid revision"); 244 if (errors & OSC_CAPABILITIES_MASK_ERROR) { 245 if (((u32 *)context->cap.pointer)[OSC_QUERY_DWORD] 246 & OSC_QUERY_ENABLE) 247 goto out_success; 248 status = AE_SUPPORT; 249 goto out_kfree; 250 } 251 status = AE_ERROR; 252 goto out_kfree; 253 } 254 out_success: 255 context->ret.length = out_obj->buffer.length; 256 context->ret.pointer = kmemdup(out_obj->buffer.pointer, 257 context->ret.length, GFP_KERNEL); 258 if (!context->ret.pointer) { 259 status = AE_NO_MEMORY; 260 goto out_kfree; 261 } 262 status = AE_OK; 263 264 out_kfree: 265 kfree(output.pointer); 266 return status; 267 } 268 EXPORT_SYMBOL(acpi_run_osc); 269 270 bool osc_sb_apei_support_acked; 271 272 /* 273 * ACPI 6.0 Section 8.4.4.2 Idle State Coordination 274 * OSPM supports platform coordinated low power idle(LPI) states 275 */ 276 bool osc_pc_lpi_support_confirmed; 277 EXPORT_SYMBOL_GPL(osc_pc_lpi_support_confirmed); 278 279 /* 280 * ACPI 6.2 Section 6.2.11.2 'Platform-Wide OSPM Capabilities': 281 * Starting with ACPI Specification 6.2, all _CPC registers can be in 282 * PCC, System Memory, System IO, or Functional Fixed Hardware address 283 * spaces. OSPM support for this more flexible register space scheme is 284 * indicated by the “Flexible Address Space for CPPC Registers” _OSC bit. 285 * 286 * Otherwise (cf ACPI 6.1, s8.4.7.1.1.X), _CPC registers must be in: 287 * - PCC or Functional Fixed Hardware address space if defined 288 * - SystemMemory address space (NULL register) if not defined 289 */ 290 bool osc_cpc_flexible_adr_space_confirmed; 291 EXPORT_SYMBOL_GPL(osc_cpc_flexible_adr_space_confirmed); 292 293 /* 294 * ACPI 6.4 Operating System Capabilities for USB. 295 */ 296 bool osc_sb_native_usb4_support_confirmed; 297 EXPORT_SYMBOL_GPL(osc_sb_native_usb4_support_confirmed); 298 299 bool osc_sb_cppc2_support_acked; 300 301 static u8 sb_uuid_str[] = "0811B06E-4A27-44F9-8D60-3CBBC22E7B48"; 302 static void acpi_bus_osc_negotiate_platform_control(void) 303 { 304 u32 capbuf[2], *capbuf_ret; 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 313 capbuf[OSC_QUERY_DWORD] = OSC_QUERY_ENABLE; 314 capbuf[OSC_SUPPORT_DWORD] = OSC_SB_PR3_SUPPORT; /* _PR3 is in use */ 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; 319 320 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_HOTPLUG_OST_SUPPORT; 321 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_PCLPI_SUPPORT; 322 if (IS_ENABLED(CONFIG_ACPI_PRMT)) 323 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_PRM_SUPPORT; 324 if (IS_ENABLED(CONFIG_ACPI_FFH)) 325 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_FFH_OPR_SUPPORT; 326 327 #ifdef CONFIG_ARM64 328 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_GENERIC_INITIATOR_SUPPORT; 329 #endif 330 #ifdef CONFIG_X86 331 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_GENERIC_INITIATOR_SUPPORT; 332 #endif 333 334 #ifdef CONFIG_ACPI_CPPC_LIB 335 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_CPC_SUPPORT; 336 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_CPCV2_SUPPORT; 337 #endif 338 339 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_CPC_FLEXIBLE_ADR_SPACE; 340 341 if (IS_ENABLED(CONFIG_SCHED_MC_PRIO)) 342 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_CPC_DIVERSE_HIGH_SUPPORT; 343 344 if (IS_ENABLED(CONFIG_USB4)) 345 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_NATIVE_USB4_SUPPORT; 346 347 if (!ghes_disable) 348 capbuf[OSC_SUPPORT_DWORD] |= OSC_SB_APEI_SUPPORT; 349 if (ACPI_FAILURE(acpi_get_handle(NULL, "\\_SB", &handle))) 350 return; 351 352 if (ACPI_FAILURE(acpi_run_osc(handle, &context))) 353 return; 354 355 capbuf_ret = context.ret.pointer; 356 if (context.ret.length <= OSC_SUPPORT_DWORD) { 357 kfree(context.ret.pointer); 358 return; 359 } 360 361 /* 362 * Now run _OSC again with query flag clear and with the caps 363 * supported by both the OS and the platform. 364 */ 365 capbuf[OSC_QUERY_DWORD] = 0; 366 capbuf[OSC_SUPPORT_DWORD] = capbuf_ret[OSC_SUPPORT_DWORD]; 367 kfree(context.ret.pointer); 368 369 if (ACPI_FAILURE(acpi_run_osc(handle, &context))) 370 return; 371 372 capbuf_ret = context.ret.pointer; 373 if (context.ret.length > OSC_SUPPORT_DWORD) { 374 #ifdef CONFIG_ACPI_CPPC_LIB 375 osc_sb_cppc2_support_acked = capbuf_ret[OSC_SUPPORT_DWORD] & OSC_SB_CPCV2_SUPPORT; 376 #endif 377 378 osc_sb_apei_support_acked = 379 capbuf_ret[OSC_SUPPORT_DWORD] & OSC_SB_APEI_SUPPORT; 380 osc_pc_lpi_support_confirmed = 381 capbuf_ret[OSC_SUPPORT_DWORD] & OSC_SB_PCLPI_SUPPORT; 382 osc_sb_native_usb4_support_confirmed = 383 capbuf_ret[OSC_SUPPORT_DWORD] & OSC_SB_NATIVE_USB4_SUPPORT; 384 osc_cpc_flexible_adr_space_confirmed = 385 capbuf_ret[OSC_SUPPORT_DWORD] & OSC_SB_CPC_FLEXIBLE_ADR_SPACE; 386 } 387 388 kfree(context.ret.pointer); 389 } 390 391 /* 392 * Native control of USB4 capabilities. If any of the tunneling bits is 393 * set it means OS is in control and we use software based connection 394 * manager. 395 */ 396 u32 osc_sb_native_usb4_control; 397 EXPORT_SYMBOL_GPL(osc_sb_native_usb4_control); 398 399 static void acpi_bus_decode_usb_osc(const char *msg, u32 bits) 400 { 401 pr_info("%s USB3%c DisplayPort%c PCIe%c XDomain%c\n", msg, 402 (bits & OSC_USB_USB3_TUNNELING) ? '+' : '-', 403 (bits & OSC_USB_DP_TUNNELING) ? '+' : '-', 404 (bits & OSC_USB_PCIE_TUNNELING) ? '+' : '-', 405 (bits & OSC_USB_XDOMAIN) ? '+' : '-'); 406 } 407 408 static u8 sb_usb_uuid_str[] = "23A0D13A-26AB-486C-9C5F-0FFA525A575A"; 409 static void acpi_bus_osc_negotiate_usb_control(void) 410 { 411 u32 capbuf[3]; 412 struct acpi_osc_context context = { 413 .uuid_str = sb_usb_uuid_str, 414 .rev = 1, 415 .cap.length = sizeof(capbuf), 416 .cap.pointer = capbuf, 417 }; 418 acpi_handle handle; 419 acpi_status status; 420 u32 control; 421 422 if (!osc_sb_native_usb4_support_confirmed) 423 return; 424 425 if (ACPI_FAILURE(acpi_get_handle(NULL, "\\_SB", &handle))) 426 return; 427 428 control = OSC_USB_USB3_TUNNELING | OSC_USB_DP_TUNNELING | 429 OSC_USB_PCIE_TUNNELING | OSC_USB_XDOMAIN; 430 431 capbuf[OSC_QUERY_DWORD] = 0; 432 capbuf[OSC_SUPPORT_DWORD] = 0; 433 capbuf[OSC_CONTROL_DWORD] = control; 434 435 status = acpi_run_osc(handle, &context); 436 if (ACPI_FAILURE(status)) 437 return; 438 439 if (context.ret.length != sizeof(capbuf)) { 440 pr_info("USB4 _OSC: returned invalid length buffer\n"); 441 goto out_free; 442 } 443 444 osc_sb_native_usb4_control = 445 control & acpi_osc_ctx_get_pci_control(&context); 446 447 acpi_bus_decode_usb_osc("USB4 _OSC: OS supports", control); 448 acpi_bus_decode_usb_osc("USB4 _OSC: OS controls", 449 osc_sb_native_usb4_control); 450 451 out_free: 452 kfree(context.ret.pointer); 453 } 454 455 /* -------------------------------------------------------------------------- 456 Notification Handling 457 -------------------------------------------------------------------------- */ 458 459 /** 460 * acpi_bus_notify - Global system-level (0x00-0x7F) notifications handler 461 * @handle: Target ACPI object. 462 * @type: Notification type. 463 * @data: Ignored. 464 * 465 * This only handles notifications related to device hotplug. 466 */ 467 static void acpi_bus_notify(acpi_handle handle, u32 type, void *data) 468 { 469 struct acpi_device *adev; 470 471 switch (type) { 472 case ACPI_NOTIFY_BUS_CHECK: 473 acpi_handle_debug(handle, "ACPI_NOTIFY_BUS_CHECK event\n"); 474 break; 475 476 case ACPI_NOTIFY_DEVICE_CHECK: 477 acpi_handle_debug(handle, "ACPI_NOTIFY_DEVICE_CHECK event\n"); 478 break; 479 480 case ACPI_NOTIFY_DEVICE_WAKE: 481 acpi_handle_debug(handle, "ACPI_NOTIFY_DEVICE_WAKE event\n"); 482 return; 483 484 case ACPI_NOTIFY_EJECT_REQUEST: 485 acpi_handle_debug(handle, "ACPI_NOTIFY_EJECT_REQUEST event\n"); 486 break; 487 488 case ACPI_NOTIFY_DEVICE_CHECK_LIGHT: 489 acpi_handle_debug(handle, "ACPI_NOTIFY_DEVICE_CHECK_LIGHT event\n"); 490 /* TBD: Exactly what does 'light' mean? */ 491 return; 492 493 case ACPI_NOTIFY_FREQUENCY_MISMATCH: 494 acpi_handle_err(handle, "Device cannot be configured due " 495 "to a frequency mismatch\n"); 496 return; 497 498 case ACPI_NOTIFY_BUS_MODE_MISMATCH: 499 acpi_handle_err(handle, "Device cannot be configured due " 500 "to a bus mode mismatch\n"); 501 return; 502 503 case ACPI_NOTIFY_POWER_FAULT: 504 acpi_handle_err(handle, "Device has suffered a power fault\n"); 505 return; 506 507 default: 508 acpi_handle_debug(handle, "Unknown event type 0x%x\n", type); 509 return; 510 } 511 512 adev = acpi_get_acpi_dev(handle); 513 514 if (adev && ACPI_SUCCESS(acpi_hotplug_schedule(adev, type))) 515 return; 516 517 acpi_put_acpi_dev(adev); 518 519 acpi_evaluate_ost(handle, type, ACPI_OST_SC_NON_SPECIFIC_FAILURE, NULL); 520 } 521 522 static void acpi_notify_device(acpi_handle handle, u32 event, void *data) 523 { 524 struct acpi_device *device = data; 525 struct acpi_driver *acpi_drv = to_acpi_driver(device->dev.driver); 526 527 acpi_drv->ops.notify(device, event); 528 } 529 530 static int acpi_device_install_notify_handler(struct acpi_device *device, 531 struct acpi_driver *acpi_drv) 532 { 533 u32 type = acpi_drv->flags & ACPI_DRIVER_ALL_NOTIFY_EVENTS ? 534 ACPI_ALL_NOTIFY : ACPI_DEVICE_NOTIFY; 535 acpi_status status; 536 537 status = acpi_install_notify_handler(device->handle, type, 538 acpi_notify_device, device); 539 if (ACPI_FAILURE(status)) 540 return -EINVAL; 541 542 return 0; 543 } 544 545 static void acpi_device_remove_notify_handler(struct acpi_device *device, 546 struct acpi_driver *acpi_drv) 547 { 548 u32 type = acpi_drv->flags & ACPI_DRIVER_ALL_NOTIFY_EVENTS ? 549 ACPI_ALL_NOTIFY : ACPI_DEVICE_NOTIFY; 550 551 acpi_remove_notify_handler(device->handle, type, 552 acpi_notify_device); 553 554 acpi_os_wait_events_complete(); 555 } 556 557 /* Handle events targeting \_SB device (at present only graceful shutdown) */ 558 559 #define ACPI_SB_NOTIFY_SHUTDOWN_REQUEST 0x81 560 #define ACPI_SB_INDICATE_INTERVAL 10000 561 562 static void sb_notify_work(struct work_struct *dummy) 563 { 564 acpi_handle sb_handle; 565 566 orderly_poweroff(true); 567 568 /* 569 * After initiating graceful shutdown, the ACPI spec requires OSPM 570 * to evaluate _OST method once every 10seconds to indicate that 571 * the shutdown is in progress 572 */ 573 acpi_get_handle(NULL, "\\_SB", &sb_handle); 574 while (1) { 575 pr_info("Graceful shutdown in progress.\n"); 576 acpi_evaluate_ost(sb_handle, ACPI_OST_EC_OSPM_SHUTDOWN, 577 ACPI_OST_SC_OS_SHUTDOWN_IN_PROGRESS, NULL); 578 msleep(ACPI_SB_INDICATE_INTERVAL); 579 } 580 } 581 582 static void acpi_sb_notify(acpi_handle handle, u32 event, void *data) 583 { 584 static DECLARE_WORK(acpi_sb_work, sb_notify_work); 585 586 if (event == ACPI_SB_NOTIFY_SHUTDOWN_REQUEST) { 587 if (!work_busy(&acpi_sb_work)) 588 schedule_work(&acpi_sb_work); 589 } else { 590 pr_warn("event %x is not supported by \\_SB device\n", event); 591 } 592 } 593 594 static int __init acpi_setup_sb_notify_handler(void) 595 { 596 acpi_handle sb_handle; 597 598 if (ACPI_FAILURE(acpi_get_handle(NULL, "\\_SB", &sb_handle))) 599 return -ENXIO; 600 601 if (ACPI_FAILURE(acpi_install_notify_handler(sb_handle, ACPI_DEVICE_NOTIFY, 602 acpi_sb_notify, NULL))) 603 return -EINVAL; 604 605 return 0; 606 } 607 608 /* -------------------------------------------------------------------------- 609 Device Matching 610 -------------------------------------------------------------------------- */ 611 612 /** 613 * acpi_get_first_physical_node - Get first physical node of an ACPI device 614 * @adev: ACPI device in question 615 * 616 * Return: First physical node of ACPI device @adev 617 */ 618 struct device *acpi_get_first_physical_node(struct acpi_device *adev) 619 { 620 struct mutex *physical_node_lock = &adev->physical_node_lock; 621 struct device *phys_dev; 622 623 mutex_lock(physical_node_lock); 624 if (list_empty(&adev->physical_node_list)) { 625 phys_dev = NULL; 626 } else { 627 const struct acpi_device_physical_node *node; 628 629 node = list_first_entry(&adev->physical_node_list, 630 struct acpi_device_physical_node, node); 631 632 phys_dev = node->dev; 633 } 634 mutex_unlock(physical_node_lock); 635 return phys_dev; 636 } 637 EXPORT_SYMBOL_GPL(acpi_get_first_physical_node); 638 639 static struct acpi_device *acpi_primary_dev_companion(struct acpi_device *adev, 640 const struct device *dev) 641 { 642 const struct device *phys_dev = acpi_get_first_physical_node(adev); 643 644 return phys_dev && phys_dev == dev ? adev : NULL; 645 } 646 647 /** 648 * acpi_device_is_first_physical_node - Is given dev first physical node 649 * @adev: ACPI companion device 650 * @dev: Physical device to check 651 * 652 * Function checks if given @dev is the first physical devices attached to 653 * the ACPI companion device. This distinction is needed in some cases 654 * where the same companion device is shared between many physical devices. 655 * 656 * Note that the caller have to provide valid @adev pointer. 657 */ 658 bool acpi_device_is_first_physical_node(struct acpi_device *adev, 659 const struct device *dev) 660 { 661 return !!acpi_primary_dev_companion(adev, dev); 662 } 663 664 /* 665 * acpi_companion_match() - Can we match via ACPI companion device 666 * @dev: Device in question 667 * 668 * Check if the given device has an ACPI companion and if that companion has 669 * a valid list of PNP IDs, and if the device is the first (primary) physical 670 * device associated with it. Return the companion pointer if that's the case 671 * or NULL otherwise. 672 * 673 * If multiple physical devices are attached to a single ACPI companion, we need 674 * to be careful. The usage scenario for this kind of relationship is that all 675 * of the physical devices in question use resources provided by the ACPI 676 * companion. A typical case is an MFD device where all the sub-devices share 677 * the parent's ACPI companion. In such cases we can only allow the primary 678 * (first) physical device to be matched with the help of the companion's PNP 679 * IDs. 680 * 681 * Additional physical devices sharing the ACPI companion can still use 682 * resources available from it but they will be matched normally using functions 683 * provided by their bus types (and analogously for their modalias). 684 */ 685 struct acpi_device *acpi_companion_match(const struct device *dev) 686 { 687 struct acpi_device *adev; 688 689 adev = ACPI_COMPANION(dev); 690 if (!adev) 691 return NULL; 692 693 if (list_empty(&adev->pnp.ids)) 694 return NULL; 695 696 return acpi_primary_dev_companion(adev, dev); 697 } 698 699 /** 700 * acpi_of_match_device - Match device object using the "compatible" property. 701 * @adev: ACPI device object to match. 702 * @of_match_table: List of device IDs to match against. 703 * @of_id: OF ID if matched 704 * 705 * If @dev has an ACPI companion which has ACPI_DT_NAMESPACE_HID in its list of 706 * identifiers and a _DSD object with the "compatible" property, use that 707 * property to match against the given list of identifiers. 708 */ 709 static bool acpi_of_match_device(struct acpi_device *adev, 710 const struct of_device_id *of_match_table, 711 const struct of_device_id **of_id) 712 { 713 const union acpi_object *of_compatible, *obj; 714 int i, nval; 715 716 if (!adev) 717 return false; 718 719 of_compatible = adev->data.of_compatible; 720 if (!of_match_table || !of_compatible) 721 return false; 722 723 if (of_compatible->type == ACPI_TYPE_PACKAGE) { 724 nval = of_compatible->package.count; 725 obj = of_compatible->package.elements; 726 } else { /* Must be ACPI_TYPE_STRING. */ 727 nval = 1; 728 obj = of_compatible; 729 } 730 /* Now we can look for the driver DT compatible strings */ 731 for (i = 0; i < nval; i++, obj++) { 732 const struct of_device_id *id; 733 734 for (id = of_match_table; id->compatible[0]; id++) 735 if (!strcasecmp(obj->string.pointer, id->compatible)) { 736 if (of_id) 737 *of_id = id; 738 return true; 739 } 740 } 741 742 return false; 743 } 744 745 static bool acpi_of_modalias(struct acpi_device *adev, 746 char *modalias, size_t len) 747 { 748 const union acpi_object *of_compatible; 749 const union acpi_object *obj; 750 const char *str, *chr; 751 752 of_compatible = adev->data.of_compatible; 753 if (!of_compatible) 754 return false; 755 756 if (of_compatible->type == ACPI_TYPE_PACKAGE) 757 obj = of_compatible->package.elements; 758 else /* Must be ACPI_TYPE_STRING. */ 759 obj = of_compatible; 760 761 str = obj->string.pointer; 762 chr = strchr(str, ','); 763 strscpy(modalias, chr ? chr + 1 : str, len); 764 765 return true; 766 } 767 768 /** 769 * acpi_set_modalias - Set modalias using "compatible" property or supplied ID 770 * @adev: ACPI device object to match 771 * @default_id: ID string to use as default if no compatible string found 772 * @modalias: Pointer to buffer that modalias value will be copied into 773 * @len: Length of modalias buffer 774 * 775 * This is a counterpart of of_alias_from_compatible() for struct acpi_device 776 * objects. If there is a compatible string for @adev, it will be copied to 777 * @modalias with the vendor prefix stripped; otherwise, @default_id will be 778 * used. 779 */ 780 void acpi_set_modalias(struct acpi_device *adev, const char *default_id, 781 char *modalias, size_t len) 782 { 783 if (!acpi_of_modalias(adev, modalias, len)) 784 strscpy(modalias, default_id, len); 785 } 786 EXPORT_SYMBOL_GPL(acpi_set_modalias); 787 788 static bool __acpi_match_device_cls(const struct acpi_device_id *id, 789 struct acpi_hardware_id *hwid) 790 { 791 int i, msk, byte_shift; 792 char buf[3]; 793 794 if (!id->cls) 795 return false; 796 797 /* Apply class-code bitmask, before checking each class-code byte */ 798 for (i = 1; i <= 3; i++) { 799 byte_shift = 8 * (3 - i); 800 msk = (id->cls_msk >> byte_shift) & 0xFF; 801 if (!msk) 802 continue; 803 804 sprintf(buf, "%02x", (id->cls >> byte_shift) & msk); 805 if (strncmp(buf, &hwid->id[(i - 1) * 2], 2)) 806 return false; 807 } 808 return true; 809 } 810 811 static bool __acpi_match_device(struct acpi_device *device, 812 const struct acpi_device_id *acpi_ids, 813 const struct of_device_id *of_ids, 814 const struct acpi_device_id **acpi_id, 815 const struct of_device_id **of_id) 816 { 817 const struct acpi_device_id *id; 818 struct acpi_hardware_id *hwid; 819 820 /* 821 * If the device is not present, it is unnecessary to load device 822 * driver for it. 823 */ 824 if (!device || !device->status.present) 825 return false; 826 827 list_for_each_entry(hwid, &device->pnp.ids, list) { 828 /* First, check the ACPI/PNP IDs provided by the caller. */ 829 if (acpi_ids) { 830 for (id = acpi_ids; id->id[0] || id->cls; id++) { 831 if (id->id[0] && !strcmp((char *)id->id, hwid->id)) 832 goto out_acpi_match; 833 if (id->cls && __acpi_match_device_cls(id, hwid)) 834 goto out_acpi_match; 835 } 836 } 837 838 /* 839 * Next, check ACPI_DT_NAMESPACE_HID and try to match the 840 * "compatible" property if found. 841 */ 842 if (!strcmp(ACPI_DT_NAMESPACE_HID, hwid->id)) 843 return acpi_of_match_device(device, of_ids, of_id); 844 } 845 return false; 846 847 out_acpi_match: 848 if (acpi_id) 849 *acpi_id = id; 850 return true; 851 } 852 853 /** 854 * acpi_match_device - Match a struct device against a given list of ACPI IDs 855 * @ids: Array of struct acpi_device_id object to match against. 856 * @dev: The device structure to match. 857 * 858 * Check if @dev has a valid ACPI handle and if there is a struct acpi_device 859 * object for that handle and use that object to match against a given list of 860 * device IDs. 861 * 862 * Return a pointer to the first matching ID on success or %NULL on failure. 863 */ 864 const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids, 865 const struct device *dev) 866 { 867 const struct acpi_device_id *id = NULL; 868 869 __acpi_match_device(acpi_companion_match(dev), ids, NULL, &id, NULL); 870 return id; 871 } 872 EXPORT_SYMBOL_GPL(acpi_match_device); 873 874 static const void *acpi_of_device_get_match_data(const struct device *dev) 875 { 876 struct acpi_device *adev = ACPI_COMPANION(dev); 877 const struct of_device_id *match = NULL; 878 879 if (!acpi_of_match_device(adev, dev->driver->of_match_table, &match)) 880 return NULL; 881 882 return match->data; 883 } 884 885 const void *acpi_device_get_match_data(const struct device *dev) 886 { 887 const struct acpi_device_id *acpi_ids = dev->driver->acpi_match_table; 888 const struct acpi_device_id *match; 889 890 if (!acpi_ids) 891 return acpi_of_device_get_match_data(dev); 892 893 match = acpi_match_device(acpi_ids, dev); 894 if (!match) 895 return NULL; 896 897 return (const void *)match->driver_data; 898 } 899 EXPORT_SYMBOL_GPL(acpi_device_get_match_data); 900 901 int acpi_match_device_ids(struct acpi_device *device, 902 const struct acpi_device_id *ids) 903 { 904 return __acpi_match_device(device, ids, NULL, NULL, NULL) ? 0 : -ENOENT; 905 } 906 EXPORT_SYMBOL(acpi_match_device_ids); 907 908 bool acpi_driver_match_device(struct device *dev, 909 const struct device_driver *drv) 910 { 911 const struct acpi_device_id *acpi_ids = drv->acpi_match_table; 912 const struct of_device_id *of_ids = drv->of_match_table; 913 914 if (!acpi_ids) 915 return acpi_of_match_device(ACPI_COMPANION(dev), of_ids, NULL); 916 917 return __acpi_match_device(acpi_companion_match(dev), acpi_ids, of_ids, NULL, NULL); 918 } 919 EXPORT_SYMBOL_GPL(acpi_driver_match_device); 920 921 /* -------------------------------------------------------------------------- 922 ACPI Driver Management 923 -------------------------------------------------------------------------- */ 924 925 /** 926 * acpi_bus_register_driver - register a driver with the ACPI bus 927 * @driver: driver being registered 928 * 929 * Registers a driver with the ACPI bus. Searches the namespace for all 930 * devices that match the driver's criteria and binds. Returns zero for 931 * success or a negative error status for failure. 932 */ 933 int acpi_bus_register_driver(struct acpi_driver *driver) 934 { 935 if (acpi_disabled) 936 return -ENODEV; 937 driver->drv.name = driver->name; 938 driver->drv.bus = &acpi_bus_type; 939 driver->drv.owner = driver->owner; 940 941 return driver_register(&driver->drv); 942 } 943 944 EXPORT_SYMBOL(acpi_bus_register_driver); 945 946 /** 947 * acpi_bus_unregister_driver - unregisters a driver with the ACPI bus 948 * @driver: driver to unregister 949 * 950 * Unregisters a driver with the ACPI bus. Searches the namespace for all 951 * devices that match the driver's criteria and unbinds. 952 */ 953 void acpi_bus_unregister_driver(struct acpi_driver *driver) 954 { 955 driver_unregister(&driver->drv); 956 } 957 958 EXPORT_SYMBOL(acpi_bus_unregister_driver); 959 960 /* -------------------------------------------------------------------------- 961 ACPI Bus operations 962 -------------------------------------------------------------------------- */ 963 964 static int acpi_bus_match(struct device *dev, struct device_driver *drv) 965 { 966 struct acpi_device *acpi_dev = to_acpi_device(dev); 967 struct acpi_driver *acpi_drv = to_acpi_driver(drv); 968 969 return acpi_dev->flags.match_driver 970 && !acpi_match_device_ids(acpi_dev, acpi_drv->ids); 971 } 972 973 static int acpi_device_uevent(const struct device *dev, struct kobj_uevent_env *env) 974 { 975 return __acpi_device_uevent_modalias(to_acpi_device(dev), env); 976 } 977 978 static int acpi_device_probe(struct device *dev) 979 { 980 struct acpi_device *acpi_dev = to_acpi_device(dev); 981 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver); 982 int ret; 983 984 if (acpi_dev->handler && !acpi_is_pnp_device(acpi_dev)) 985 return -EINVAL; 986 987 if (!acpi_drv->ops.add) 988 return -ENOSYS; 989 990 ret = acpi_drv->ops.add(acpi_dev); 991 if (ret) 992 return ret; 993 994 pr_debug("Driver [%s] successfully bound to device [%s]\n", 995 acpi_drv->name, acpi_dev->pnp.bus_id); 996 997 if (acpi_drv->ops.notify) { 998 ret = acpi_device_install_notify_handler(acpi_dev, acpi_drv); 999 if (ret) { 1000 if (acpi_drv->ops.remove) 1001 acpi_drv->ops.remove(acpi_dev); 1002 1003 acpi_dev->driver_data = NULL; 1004 return ret; 1005 } 1006 } 1007 1008 pr_debug("Found driver [%s] for device [%s]\n", acpi_drv->name, 1009 acpi_dev->pnp.bus_id); 1010 1011 get_device(dev); 1012 return 0; 1013 } 1014 1015 static void acpi_device_remove(struct device *dev) 1016 { 1017 struct acpi_device *acpi_dev = to_acpi_device(dev); 1018 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver); 1019 1020 if (acpi_drv->ops.notify) 1021 acpi_device_remove_notify_handler(acpi_dev, acpi_drv); 1022 1023 if (acpi_drv->ops.remove) 1024 acpi_drv->ops.remove(acpi_dev); 1025 1026 acpi_dev->driver_data = NULL; 1027 1028 put_device(dev); 1029 } 1030 1031 struct bus_type acpi_bus_type = { 1032 .name = "acpi", 1033 .match = acpi_bus_match, 1034 .probe = acpi_device_probe, 1035 .remove = acpi_device_remove, 1036 .uevent = acpi_device_uevent, 1037 }; 1038 1039 int acpi_bus_for_each_dev(int (*fn)(struct device *, void *), void *data) 1040 { 1041 return bus_for_each_dev(&acpi_bus_type, NULL, data, fn); 1042 } 1043 EXPORT_SYMBOL_GPL(acpi_bus_for_each_dev); 1044 1045 struct acpi_dev_walk_context { 1046 int (*fn)(struct acpi_device *, void *); 1047 void *data; 1048 }; 1049 1050 static int acpi_dev_for_one_check(struct device *dev, void *context) 1051 { 1052 struct acpi_dev_walk_context *adwc = context; 1053 1054 if (dev->bus != &acpi_bus_type) 1055 return 0; 1056 1057 return adwc->fn(to_acpi_device(dev), adwc->data); 1058 } 1059 EXPORT_SYMBOL_GPL(acpi_dev_for_each_child); 1060 1061 int acpi_dev_for_each_child(struct acpi_device *adev, 1062 int (*fn)(struct acpi_device *, void *), void *data) 1063 { 1064 struct acpi_dev_walk_context adwc = { 1065 .fn = fn, 1066 .data = data, 1067 }; 1068 1069 return device_for_each_child(&adev->dev, &adwc, acpi_dev_for_one_check); 1070 } 1071 1072 int acpi_dev_for_each_child_reverse(struct acpi_device *adev, 1073 int (*fn)(struct acpi_device *, void *), 1074 void *data) 1075 { 1076 struct acpi_dev_walk_context adwc = { 1077 .fn = fn, 1078 .data = data, 1079 }; 1080 1081 return device_for_each_child_reverse(&adev->dev, &adwc, acpi_dev_for_one_check); 1082 } 1083 1084 /* -------------------------------------------------------------------------- 1085 Initialization/Cleanup 1086 -------------------------------------------------------------------------- */ 1087 1088 static int __init acpi_bus_init_irq(void) 1089 { 1090 acpi_status status; 1091 char *message = NULL; 1092 1093 1094 /* 1095 * Let the system know what interrupt model we are using by 1096 * evaluating the \_PIC object, if exists. 1097 */ 1098 1099 switch (acpi_irq_model) { 1100 case ACPI_IRQ_MODEL_PIC: 1101 message = "PIC"; 1102 break; 1103 case ACPI_IRQ_MODEL_IOAPIC: 1104 message = "IOAPIC"; 1105 break; 1106 case ACPI_IRQ_MODEL_IOSAPIC: 1107 message = "IOSAPIC"; 1108 break; 1109 case ACPI_IRQ_MODEL_GIC: 1110 message = "GIC"; 1111 break; 1112 case ACPI_IRQ_MODEL_PLATFORM: 1113 message = "platform specific model"; 1114 break; 1115 case ACPI_IRQ_MODEL_LPIC: 1116 message = "LPIC"; 1117 break; 1118 default: 1119 pr_info("Unknown interrupt routing model\n"); 1120 return -ENODEV; 1121 } 1122 1123 pr_info("Using %s for interrupt routing\n", message); 1124 1125 status = acpi_execute_simple_method(NULL, "\\_PIC", acpi_irq_model); 1126 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) { 1127 pr_info("_PIC evaluation failed: %s\n", acpi_format_exception(status)); 1128 return -ENODEV; 1129 } 1130 1131 return 0; 1132 } 1133 1134 /** 1135 * acpi_early_init - Initialize ACPICA and populate the ACPI namespace. 1136 * 1137 * The ACPI tables are accessible after this, but the handling of events has not 1138 * been initialized and the global lock is not available yet, so AML should not 1139 * be executed at this point. 1140 * 1141 * Doing this before switching the EFI runtime services to virtual mode allows 1142 * the EfiBootServices memory to be freed slightly earlier on boot. 1143 */ 1144 void __init acpi_early_init(void) 1145 { 1146 acpi_status status; 1147 1148 if (acpi_disabled) 1149 return; 1150 1151 pr_info("Core revision %08x\n", ACPI_CA_VERSION); 1152 1153 /* enable workarounds, unless strict ACPI spec. compliance */ 1154 if (!acpi_strict) 1155 acpi_gbl_enable_interpreter_slack = TRUE; 1156 1157 acpi_permanent_mmap = true; 1158 1159 #ifdef CONFIG_X86 1160 /* 1161 * If the machine falls into the DMI check table, 1162 * DSDT will be copied to memory. 1163 * Note that calling dmi_check_system() here on other architectures 1164 * would not be OK because only x86 initializes dmi early enough. 1165 * Thankfully only x86 systems need such quirks for now. 1166 */ 1167 dmi_check_system(dsdt_dmi_table); 1168 #endif 1169 1170 status = acpi_reallocate_root_table(); 1171 if (ACPI_FAILURE(status)) { 1172 pr_err("Unable to reallocate ACPI tables\n"); 1173 goto error0; 1174 } 1175 1176 status = acpi_initialize_subsystem(); 1177 if (ACPI_FAILURE(status)) { 1178 pr_err("Unable to initialize the ACPI Interpreter\n"); 1179 goto error0; 1180 } 1181 1182 #ifdef CONFIG_X86 1183 if (!acpi_ioapic) { 1184 /* compatible (0) means level (3) */ 1185 if (!(acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)) { 1186 acpi_sci_flags &= ~ACPI_MADT_TRIGGER_MASK; 1187 acpi_sci_flags |= ACPI_MADT_TRIGGER_LEVEL; 1188 } 1189 /* Set PIC-mode SCI trigger type */ 1190 acpi_pic_sci_set_trigger(acpi_gbl_FADT.sci_interrupt, 1191 (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2); 1192 } else { 1193 /* 1194 * now that acpi_gbl_FADT is initialized, 1195 * update it with result from INT_SRC_OVR parsing 1196 */ 1197 acpi_gbl_FADT.sci_interrupt = acpi_sci_override_gsi; 1198 } 1199 #endif 1200 return; 1201 1202 error0: 1203 disable_acpi(); 1204 } 1205 1206 /** 1207 * acpi_subsystem_init - Finalize the early initialization of ACPI. 1208 * 1209 * Switch over the platform to the ACPI mode (if possible). 1210 * 1211 * Doing this too early is generally unsafe, but at the same time it needs to be 1212 * done before all things that really depend on ACPI. The right spot appears to 1213 * be before finalizing the EFI initialization. 1214 */ 1215 void __init acpi_subsystem_init(void) 1216 { 1217 acpi_status status; 1218 1219 if (acpi_disabled) 1220 return; 1221 1222 status = acpi_enable_subsystem(~ACPI_NO_ACPI_ENABLE); 1223 if (ACPI_FAILURE(status)) { 1224 pr_err("Unable to enable ACPI\n"); 1225 disable_acpi(); 1226 } else { 1227 /* 1228 * If the system is using ACPI then we can be reasonably 1229 * confident that any regulators are managed by the firmware 1230 * so tell the regulator core it has everything it needs to 1231 * know. 1232 */ 1233 regulator_has_full_constraints(); 1234 } 1235 } 1236 1237 static acpi_status acpi_bus_table_handler(u32 event, void *table, void *context) 1238 { 1239 if (event == ACPI_TABLE_EVENT_LOAD) 1240 acpi_scan_table_notify(); 1241 1242 return acpi_sysfs_table_handler(event, table, context); 1243 } 1244 1245 static int __init acpi_bus_init(void) 1246 { 1247 int result; 1248 acpi_status status; 1249 1250 acpi_os_initialize1(); 1251 1252 status = acpi_load_tables(); 1253 if (ACPI_FAILURE(status)) { 1254 pr_err("Unable to load the System Description Tables\n"); 1255 goto error1; 1256 } 1257 1258 /* 1259 * ACPI 2.0 requires the EC driver to be loaded and work before the EC 1260 * device is found in the namespace. 1261 * 1262 * This is accomplished by looking for the ECDT table and getting the EC 1263 * parameters out of that. 1264 * 1265 * Do that before calling acpi_initialize_objects() which may trigger EC 1266 * address space accesses. 1267 */ 1268 acpi_ec_ecdt_probe(); 1269 1270 status = acpi_enable_subsystem(ACPI_NO_ACPI_ENABLE); 1271 if (ACPI_FAILURE(status)) { 1272 pr_err("Unable to start the ACPI Interpreter\n"); 1273 goto error1; 1274 } 1275 1276 status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION); 1277 if (ACPI_FAILURE(status)) { 1278 pr_err("Unable to initialize ACPI objects\n"); 1279 goto error1; 1280 } 1281 1282 /* Set capability bits for _OSC under processor scope */ 1283 acpi_early_processor_osc(); 1284 1285 /* 1286 * _OSC method may exist in module level code, 1287 * so it must be run after ACPI_FULL_INITIALIZATION 1288 */ 1289 acpi_bus_osc_negotiate_platform_control(); 1290 acpi_bus_osc_negotiate_usb_control(); 1291 1292 /* 1293 * _PDC control method may load dynamic SSDT tables, 1294 * and we need to install the table handler before that. 1295 */ 1296 status = acpi_install_table_handler(acpi_bus_table_handler, NULL); 1297 1298 acpi_sysfs_init(); 1299 1300 acpi_early_processor_set_pdc(); 1301 1302 /* 1303 * Maybe EC region is required at bus_scan/acpi_get_devices. So it 1304 * is necessary to enable it as early as possible. 1305 */ 1306 acpi_ec_dsdt_probe(); 1307 1308 pr_info("Interpreter enabled\n"); 1309 1310 /* Initialize sleep structures */ 1311 acpi_sleep_init(); 1312 1313 /* 1314 * Get the system interrupt model and evaluate \_PIC. 1315 */ 1316 result = acpi_bus_init_irq(); 1317 if (result) 1318 goto error1; 1319 1320 /* 1321 * Register the for all standard device notifications. 1322 */ 1323 status = 1324 acpi_install_notify_handler(ACPI_ROOT_OBJECT, ACPI_SYSTEM_NOTIFY, 1325 &acpi_bus_notify, NULL); 1326 if (ACPI_FAILURE(status)) { 1327 pr_err("Unable to register for system notifications\n"); 1328 goto error1; 1329 } 1330 1331 /* 1332 * Create the top ACPI proc directory 1333 */ 1334 acpi_root_dir = proc_mkdir(ACPI_BUS_FILE_ROOT, NULL); 1335 1336 result = bus_register(&acpi_bus_type); 1337 if (!result) 1338 return 0; 1339 1340 /* Mimic structured exception handling */ 1341 error1: 1342 acpi_terminate(); 1343 return -ENODEV; 1344 } 1345 1346 struct kobject *acpi_kobj; 1347 EXPORT_SYMBOL_GPL(acpi_kobj); 1348 1349 static int __init acpi_init(void) 1350 { 1351 int result; 1352 1353 if (acpi_disabled) { 1354 pr_info("Interpreter disabled.\n"); 1355 return -ENODEV; 1356 } 1357 1358 acpi_kobj = kobject_create_and_add("acpi", firmware_kobj); 1359 if (!acpi_kobj) 1360 pr_debug("%s: kset create error\n", __func__); 1361 1362 init_prmt(); 1363 acpi_init_pcc(); 1364 result = acpi_bus_init(); 1365 if (result) { 1366 kobject_put(acpi_kobj); 1367 disable_acpi(); 1368 return result; 1369 } 1370 acpi_init_ffh(); 1371 1372 pci_mmcfg_late_init(); 1373 acpi_arm_init(); 1374 acpi_viot_early_init(); 1375 acpi_hest_init(); 1376 acpi_ghes_init(); 1377 acpi_scan_init(); 1378 acpi_ec_init(); 1379 acpi_debugfs_init(); 1380 acpi_sleep_proc_init(); 1381 acpi_wakeup_device_init(); 1382 acpi_debugger_init(); 1383 acpi_setup_sb_notify_handler(); 1384 acpi_viot_init(); 1385 return 0; 1386 } 1387 1388 subsys_initcall(acpi_init); 1389