mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 02:50:49 +09:00
cpufreq: intel_pstate: Make hwp_notify_lock a raw spinlock
commit 8b4865cd904650cbed7f2407e653934c621b8127 upstream. notify_hwp_interrupt() is called via sysvec_thermal() -> smp_thermal_vector() -> intel_thermal_interrupt() in hard irq context. For this reason it must not use a simple spin_lock that sleeps with PREEMPT_RT enabled. So convert it to a raw spinlock. Reported-by: xiao sheng wen <atzlinux@sina.com> Link: https://bugs.debian.org/1076483 Signed-off-by: Uwe Kleine-König <ukleinek@debian.org> Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Acked-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Tested-by: xiao sheng wen <atzlinux@sina.com> Link: https://patch.msgid.link/20240919081121.10784-2-ukleinek@debian.org Cc: All applicable <stable@vger.kernel.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> [ukleinek: Backport to v6.6.y] Signed-off-by: Uwe Kleine-König <ukleinek@debian.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
722d2d8fc4
commit
90ebc392ad
@@ -1596,7 +1596,7 @@ static void intel_pstate_notify_work(struct work_struct *work)
|
|||||||
wrmsrl_on_cpu(cpudata->cpu, MSR_HWP_STATUS, 0);
|
wrmsrl_on_cpu(cpudata->cpu, MSR_HWP_STATUS, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static DEFINE_SPINLOCK(hwp_notify_lock);
|
static DEFINE_RAW_SPINLOCK(hwp_notify_lock);
|
||||||
static cpumask_t hwp_intr_enable_mask;
|
static cpumask_t hwp_intr_enable_mask;
|
||||||
|
|
||||||
void notify_hwp_interrupt(void)
|
void notify_hwp_interrupt(void)
|
||||||
@@ -1613,7 +1613,7 @@ void notify_hwp_interrupt(void)
|
|||||||
if (!(value & 0x01))
|
if (!(value & 0x01))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
spin_lock_irqsave(&hwp_notify_lock, flags);
|
raw_spin_lock_irqsave(&hwp_notify_lock, flags);
|
||||||
|
|
||||||
if (!cpumask_test_cpu(this_cpu, &hwp_intr_enable_mask))
|
if (!cpumask_test_cpu(this_cpu, &hwp_intr_enable_mask))
|
||||||
goto ack_intr;
|
goto ack_intr;
|
||||||
@@ -1637,13 +1637,13 @@ void notify_hwp_interrupt(void)
|
|||||||
|
|
||||||
schedule_delayed_work(&cpudata->hwp_notify_work, msecs_to_jiffies(10));
|
schedule_delayed_work(&cpudata->hwp_notify_work, msecs_to_jiffies(10));
|
||||||
|
|
||||||
spin_unlock_irqrestore(&hwp_notify_lock, flags);
|
raw_spin_unlock_irqrestore(&hwp_notify_lock, flags);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
ack_intr:
|
ack_intr:
|
||||||
wrmsrl_safe(MSR_HWP_STATUS, 0);
|
wrmsrl_safe(MSR_HWP_STATUS, 0);
|
||||||
spin_unlock_irqrestore(&hwp_notify_lock, flags);
|
raw_spin_unlock_irqrestore(&hwp_notify_lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void intel_pstate_disable_hwp_interrupt(struct cpudata *cpudata)
|
static void intel_pstate_disable_hwp_interrupt(struct cpudata *cpudata)
|
||||||
@@ -1656,10 +1656,10 @@ static void intel_pstate_disable_hwp_interrupt(struct cpudata *cpudata)
|
|||||||
/* wrmsrl_on_cpu has to be outside spinlock as this can result in IPC */
|
/* wrmsrl_on_cpu has to be outside spinlock as this can result in IPC */
|
||||||
wrmsrl_on_cpu(cpudata->cpu, MSR_HWP_INTERRUPT, 0x00);
|
wrmsrl_on_cpu(cpudata->cpu, MSR_HWP_INTERRUPT, 0x00);
|
||||||
|
|
||||||
spin_lock_irqsave(&hwp_notify_lock, flags);
|
raw_spin_lock_irqsave(&hwp_notify_lock, flags);
|
||||||
if (cpumask_test_and_clear_cpu(cpudata->cpu, &hwp_intr_enable_mask))
|
if (cpumask_test_and_clear_cpu(cpudata->cpu, &hwp_intr_enable_mask))
|
||||||
cancel_delayed_work(&cpudata->hwp_notify_work);
|
cancel_delayed_work(&cpudata->hwp_notify_work);
|
||||||
spin_unlock_irqrestore(&hwp_notify_lock, flags);
|
raw_spin_unlock_irqrestore(&hwp_notify_lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void intel_pstate_enable_hwp_interrupt(struct cpudata *cpudata)
|
static void intel_pstate_enable_hwp_interrupt(struct cpudata *cpudata)
|
||||||
@@ -1668,10 +1668,10 @@ static void intel_pstate_enable_hwp_interrupt(struct cpudata *cpudata)
|
|||||||
if (boot_cpu_has(X86_FEATURE_HWP_NOTIFY)) {
|
if (boot_cpu_has(X86_FEATURE_HWP_NOTIFY)) {
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
spin_lock_irqsave(&hwp_notify_lock, flags);
|
raw_spin_lock_irqsave(&hwp_notify_lock, flags);
|
||||||
INIT_DELAYED_WORK(&cpudata->hwp_notify_work, intel_pstate_notify_work);
|
INIT_DELAYED_WORK(&cpudata->hwp_notify_work, intel_pstate_notify_work);
|
||||||
cpumask_set_cpu(cpudata->cpu, &hwp_intr_enable_mask);
|
cpumask_set_cpu(cpudata->cpu, &hwp_intr_enable_mask);
|
||||||
spin_unlock_irqrestore(&hwp_notify_lock, flags);
|
raw_spin_unlock_irqrestore(&hwp_notify_lock, flags);
|
||||||
|
|
||||||
/* wrmsrl_on_cpu has to be outside spinlock as this can result in IPC */
|
/* wrmsrl_on_cpu has to be outside spinlock as this can result in IPC */
|
||||||
wrmsrl_on_cpu(cpudata->cpu, MSR_HWP_INTERRUPT, 0x01);
|
wrmsrl_on_cpu(cpudata->cpu, MSR_HWP_INTERRUPT, 0x01);
|
||||||
@@ -3101,10 +3101,10 @@ static void intel_pstate_driver_cleanup(void)
|
|||||||
if (intel_pstate_driver == &intel_pstate)
|
if (intel_pstate_driver == &intel_pstate)
|
||||||
intel_pstate_clear_update_util_hook(cpu);
|
intel_pstate_clear_update_util_hook(cpu);
|
||||||
|
|
||||||
spin_lock(&hwp_notify_lock);
|
raw_spin_lock(&hwp_notify_lock);
|
||||||
kfree(all_cpu_data[cpu]);
|
kfree(all_cpu_data[cpu]);
|
||||||
WRITE_ONCE(all_cpu_data[cpu], NULL);
|
WRITE_ONCE(all_cpu_data[cpu], NULL);
|
||||||
spin_unlock(&hwp_notify_lock);
|
raw_spin_unlock(&hwp_notify_lock);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
cpus_read_unlock();
|
cpus_read_unlock();
|
||||||
|
|||||||
Reference in New Issue
Block a user