|
@@ -785,6 +785,13 @@ static int acpi_idle_enter_simple(struct cpuidle_device *dev,
|
|
|
if (unlikely(!pr))
|
|
|
return -EINVAL;
|
|
|
|
|
|
+#ifdef CONFIG_HOTPLUG_CPU
|
|
|
+ if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
|
|
|
+ !pr->flags.has_cst &&
|
|
|
+ !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
|
|
|
+ return acpi_idle_enter_c1(dev, drv, CPUIDLE_DRIVER_STATE_START);
|
|
|
+#endif
|
|
|
+
|
|
|
if (cx->entry_method == ACPI_CSTATE_FFH) {
|
|
|
if (current_set_polling_and_test())
|
|
|
return -EINVAL;
|
|
@@ -831,6 +838,13 @@ static int acpi_idle_enter_bm(struct cpuidle_device *dev,
|
|
|
if (unlikely(!pr))
|
|
|
return -EINVAL;
|
|
|
|
|
|
+#ifdef CONFIG_HOTPLUG_CPU
|
|
|
+ if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
|
|
|
+ !pr->flags.has_cst &&
|
|
|
+ !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
|
|
|
+ return acpi_idle_enter_c1(dev, drv, CPUIDLE_DRIVER_STATE_START);
|
|
|
+#endif
|
|
|
+
|
|
|
if (!cx->bm_sts_skip && acpi_idle_bm_check()) {
|
|
|
if (drv->safe_state_index >= 0) {
|
|
|
return drv->states[drv->safe_state_index].enter(dev,
|
|
@@ -932,12 +946,6 @@ static int acpi_processor_setup_cpuidle_cx(struct acpi_processor *pr,
|
|
|
if (!cx->valid)
|
|
|
continue;
|
|
|
|
|
|
-#ifdef CONFIG_HOTPLUG_CPU
|
|
|
- if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
|
|
|
- !pr->flags.has_cst &&
|
|
|
- !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
|
|
|
- continue;
|
|
|
-#endif
|
|
|
per_cpu(acpi_cstate[count], dev->cpu) = cx;
|
|
|
|
|
|
count++;
|
|
@@ -987,13 +995,6 @@ static int acpi_processor_setup_cpuidle_states(struct acpi_processor *pr)
|
|
|
if (!cx->valid)
|
|
|
continue;
|
|
|
|
|
|
-#ifdef CONFIG_HOTPLUG_CPU
|
|
|
- if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
|
|
|
- !pr->flags.has_cst &&
|
|
|
- !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
|
|
|
- continue;
|
|
|
-#endif
|
|
|
-
|
|
|
state = &drv->states[count];
|
|
|
snprintf(state->name, CPUIDLE_NAME_LEN, "C%d", i);
|
|
|
strncpy(state->desc, cx->desc, CPUIDLE_DESC_LEN);
|