summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpica
diff options
context:
space:
mode:
authoravg <avg@FreeBSD.org>2010-09-22 06:10:22 +0000
committeravg <avg@FreeBSD.org>2010-09-22 06:10:22 +0000
commit4cccdc71390803142b8cc0867784eb3d3c52017d (patch)
tree6ebc4770c69e13d2ae34a1a4d162d6e7d3c258a4 /sys/dev/acpica
parent351da3e73cc97345b431bd52a65d6bc21844734b (diff)
downloadFreeBSD-src-4cccdc71390803142b8cc0867784eb3d3c52017d.zip
FreeBSD-src-4cccdc71390803142b8cc0867784eb3d3c52017d.tar.gz
acpi_attach: do not explicitly install default handlers for default
address spaces There has been no need to do that starting with ACPICA 20040427 as AcpiEnableSubsystem() installs the handlers automatically. Additionaly, explicitly calling AcpiInstallAddressSpaceHandler before AcpiEnableSubsystem is not supported by ACPICA and leads to too early execution of _REG methods in some DSDTs, which may result in problems. Big thanks to Robert Moore of ACPICA/Intel for explaining the above. Reported by: Daniel Bilik <daniel.bilik@neosystem.cz> Tested by: Daniel Bilik <daniel.bilik@neosystem.cz> Reviewed by: jkim Suggested by: "Moore, Robert" <robert.moore@intel.com> MFC after: 1 week
Diffstat (limited to 'sys/dev/acpica')
-rw-r--r--sys/dev/acpica/acpi.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c
index 5cccc9e..fa73818 100644
--- a/sys/dev/acpica/acpi.c
+++ b/sys/dev/acpica/acpi.c
@@ -494,29 +494,6 @@ acpi_attach(device_t dev)
acpi_enable_pcie();
#endif
- /* Install the default address space handlers. */
- status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
- ACPI_ADR_SPACE_SYSTEM_MEMORY, ACPI_DEFAULT_HANDLER, NULL, NULL);
- if (ACPI_FAILURE(status)) {
- device_printf(dev, "Could not initialise SystemMemory handler: %s\n",
- AcpiFormatException(status));
- goto out;
- }
- status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
- ACPI_ADR_SPACE_SYSTEM_IO, ACPI_DEFAULT_HANDLER, NULL, NULL);
- if (ACPI_FAILURE(status)) {
- device_printf(dev, "Could not initialise SystemIO handler: %s\n",
- AcpiFormatException(status));
- goto out;
- }
- status = AcpiInstallAddressSpaceHandler(ACPI_ROOT_OBJECT,
- ACPI_ADR_SPACE_PCI_CONFIG, ACPI_DEFAULT_HANDLER, NULL, NULL);
- if (ACPI_FAILURE(status)) {
- device_printf(dev, "could not initialise PciConfig handler: %s\n",
- AcpiFormatException(status));
- goto out;
- }
-
/*
* Note that some systems (specifically, those with namespace evaluation
* issues that require the avoidance of parts of the namespace) must
OpenPOWER on IntegriCloud