|
@@ -79,6 +79,7 @@ static struct workqueue_struct *kacpid_wq;
|
|
|
static struct workqueue_struct *kacpi_notify_wq;
|
|
|
static struct workqueue_struct *kacpi_hotplug_wq;
|
|
|
static bool acpi_os_initialized;
|
|
|
+unsigned int acpi_sci_irq = INVALID_ACPI_IRQ;
|
|
|
|
|
|
/*
|
|
|
* This list of permanent mappings is for memory that may be accessed from
|
|
@@ -854,17 +855,19 @@ acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
|
|
|
acpi_irq_handler = NULL;
|
|
|
return AE_NOT_ACQUIRED;
|
|
|
}
|
|
|
+ acpi_sci_irq = irq;
|
|
|
|
|
|
return AE_OK;
|
|
|
}
|
|
|
|
|
|
-acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler)
|
|
|
+acpi_status acpi_os_remove_interrupt_handler(u32 gsi, acpi_osd_handler handler)
|
|
|
{
|
|
|
- if (irq != acpi_gbl_FADT.sci_interrupt)
|
|
|
+ if (gsi != acpi_gbl_FADT.sci_interrupt || !acpi_sci_irq_valid())
|
|
|
return AE_BAD_PARAMETER;
|
|
|
|
|
|
- free_irq(irq, acpi_irq);
|
|
|
+ free_irq(acpi_sci_irq, acpi_irq);
|
|
|
acpi_irq_handler = NULL;
|
|
|
+ acpi_sci_irq = INVALID_ACPI_IRQ;
|
|
|
|
|
|
return AE_OK;
|
|
|
}
|
|
@@ -1178,8 +1181,8 @@ void acpi_os_wait_events_complete(void)
|
|
|
* Make sure the GPE handler or the fixed event handler is not used
|
|
|
* on another CPU after removal.
|
|
|
*/
|
|
|
- if (acpi_irq_handler)
|
|
|
- synchronize_hardirq(acpi_gbl_FADT.sci_interrupt);
|
|
|
+ if (acpi_sci_irq_valid())
|
|
|
+ synchronize_hardirq(acpi_sci_irq);
|
|
|
flush_workqueue(kacpid_wq);
|
|
|
flush_workqueue(kacpi_notify_wq);
|
|
|
}
|