|
@@ -154,6 +154,21 @@ acpi_status __init acpi_enable_subsystem(u32 flags)
|
|
*/
|
|
*/
|
|
acpi_gbl_early_initialization = FALSE;
|
|
acpi_gbl_early_initialization = FALSE;
|
|
|
|
|
|
|
|
+ /*
|
|
|
|
+ * Install the default operation region handlers. These are the
|
|
|
|
+ * handlers that are defined by the ACPI specification to be
|
|
|
|
+ * "always accessible" -- namely, system_memory, system_IO, and
|
|
|
|
+ * PCI_Config. This also means that no _REG methods need to be
|
|
|
|
+ * run for these address spaces. We need to have these handlers
|
|
|
|
+ * installed before any AML code can be executed, especially any
|
|
|
|
+ * module-level code (11/2015).
|
|
|
|
+ */
|
|
|
|
+ status = acpi_ev_install_region_handlers();
|
|
|
|
+ if (ACPI_FAILURE(status)) {
|
|
|
|
+ ACPI_EXCEPTION((AE_INFO, status,
|
|
|
|
+ "During Region initialization"));
|
|
|
|
+ return_ACPI_STATUS(status);
|
|
|
|
+ }
|
|
#if (!ACPI_REDUCED_HARDWARE)
|
|
#if (!ACPI_REDUCED_HARDWARE)
|
|
|
|
|
|
/* Enable ACPI mode */
|
|
/* Enable ACPI mode */
|
|
@@ -182,23 +197,7 @@ acpi_status __init acpi_enable_subsystem(u32 flags)
|
|
return_ACPI_STATUS(status);
|
|
return_ACPI_STATUS(status);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-#endif /* !ACPI_REDUCED_HARDWARE */
|
|
|
|
|
|
|
|
- /*
|
|
|
|
- * Install the default op_region handlers. These are installed unless
|
|
|
|
- * other handlers have already been installed via the
|
|
|
|
- * install_address_space_handler interface.
|
|
|
|
- */
|
|
|
|
- if (!(flags & ACPI_NO_ADDRESS_SPACE_INIT)) {
|
|
|
|
- ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
|
|
|
|
- "[Init] Installing default address space handlers\n"));
|
|
|
|
-
|
|
|
|
- status = acpi_ev_install_region_handlers();
|
|
|
|
- if (ACPI_FAILURE(status)) {
|
|
|
|
- return_ACPI_STATUS(status);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-#if (!ACPI_REDUCED_HARDWARE)
|
|
|
|
/*
|
|
/*
|
|
* Initialize ACPI Event handling (Fixed and General Purpose)
|
|
* Initialize ACPI Event handling (Fixed and General Purpose)
|
|
*
|
|
*
|