|
@@ -144,6 +144,24 @@ static bool is_extended_socket_device(struct acpi_device *device)
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
+static int acpi_check_extended_socket_status(struct acpi_device *device)
|
|
|
+{
|
|
|
+ unsigned long long sta;
|
|
|
+ acpi_status status;
|
|
|
+
|
|
|
+ status = acpi_evaluate_integer(device->handle, "_STA", NULL, &sta);
|
|
|
+ if (ACPI_FAILURE(status))
|
|
|
+ return -ENODEV;
|
|
|
+
|
|
|
+ if (!((sta & ACPI_STA_DEVICE_PRESENT) &&
|
|
|
+ (sta & ACPI_STA_DEVICE_ENABLED) &&
|
|
|
+ (sta & ACPI_STA_DEVICE_UI) &&
|
|
|
+ (sta & ACPI_STA_DEVICE_FUNCTIONING)))
|
|
|
+ return -ENODEV;
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
static int fjes_acpi_add(struct acpi_device *device)
|
|
|
{
|
|
|
struct platform_device *plat_dev;
|
|
@@ -152,6 +170,9 @@ static int fjes_acpi_add(struct acpi_device *device)
|
|
|
if (!is_extended_socket_device(device))
|
|
|
return -ENODEV;
|
|
|
|
|
|
+ if (acpi_check_extended_socket_status(device))
|
|
|
+ return -ENODEV;
|
|
|
+
|
|
|
status = acpi_walk_resources(device->handle, METHOD_NAME__CRS,
|
|
|
fjes_get_acpi_resource, fjes_resource);
|
|
|
if (ACPI_FAILURE(status))
|
|
@@ -1503,6 +1524,9 @@ acpi_find_extended_socket_device(acpi_handle obj_handle, u32 level,
|
|
|
if (!is_extended_socket_device(device))
|
|
|
return AE_OK;
|
|
|
|
|
|
+ if (acpi_check_extended_socket_status(device))
|
|
|
+ return AE_OK;
|
|
|
+
|
|
|
*found = true;
|
|
|
return AE_CTRL_TERMINATE;
|
|
|
}
|