mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 13:20:52 +07:00
arm/perf: Convert to hotplug state machine
Straight forward conversion w/o bells and whistles. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Anna-Maria Gleixner <anna-maria@linutronix.de> Reviewed-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Will Deacon <will.deacon@arm.com> Cc: rt@linutronix.de Link: http://lkml.kernel.org/r/20160713153335.794097159@linutronix.de Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
parent
e5b61bafe7
commit
7d88eb695a
@ -691,24 +691,15 @@ static int cpu_pmu_request_irq(struct arm_pmu *cpu_pmu, irq_handler_t handler)
|
|||||||
* UNKNOWN at reset, the PMU must be explicitly reset to avoid reading
|
* UNKNOWN at reset, the PMU must be explicitly reset to avoid reading
|
||||||
* junk values out of them.
|
* junk values out of them.
|
||||||
*/
|
*/
|
||||||
static int cpu_pmu_notify(struct notifier_block *b, unsigned long action,
|
static int arm_perf_starting_cpu(unsigned int cpu)
|
||||||
void *hcpu)
|
|
||||||
{
|
{
|
||||||
int cpu = (unsigned long)hcpu;
|
if (!__oprofile_cpu_pmu)
|
||||||
struct arm_pmu *pmu = container_of(b, struct arm_pmu, hotplug_nb);
|
return 0;
|
||||||
|
if (!cpumask_test_cpu(cpu, &__oprofile_cpu_pmu->supported_cpus))
|
||||||
if ((action & ~CPU_TASKS_FROZEN) != CPU_STARTING)
|
return 0;
|
||||||
return NOTIFY_DONE;
|
if (__oprofile_cpu_pmu->reset)
|
||||||
|
__oprofile_cpu_pmu->reset(__oprofile_cpu_pmu);
|
||||||
if (!cpumask_test_cpu(cpu, &pmu->supported_cpus))
|
return 0;
|
||||||
return NOTIFY_DONE;
|
|
||||||
|
|
||||||
if (pmu->reset)
|
|
||||||
pmu->reset(pmu);
|
|
||||||
else
|
|
||||||
return NOTIFY_DONE;
|
|
||||||
|
|
||||||
return NOTIFY_OK;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_CPU_PM
|
#ifdef CONFIG_CPU_PM
|
||||||
@ -819,8 +810,9 @@ static int cpu_pmu_init(struct arm_pmu *cpu_pmu)
|
|||||||
if (!cpu_hw_events)
|
if (!cpu_hw_events)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
cpu_pmu->hotplug_nb.notifier_call = cpu_pmu_notify;
|
err = cpuhp_setup_state_nocalls(CPUHP_AP_PERF_ARM_STARTING,
|
||||||
err = register_cpu_notifier(&cpu_pmu->hotplug_nb);
|
"AP_PERF_ARM_STARTING",
|
||||||
|
arm_perf_starting_cpu, NULL);
|
||||||
if (err)
|
if (err)
|
||||||
goto out_hw_events;
|
goto out_hw_events;
|
||||||
|
|
||||||
@ -858,7 +850,7 @@ static int cpu_pmu_init(struct arm_pmu *cpu_pmu)
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
out_unregister:
|
out_unregister:
|
||||||
unregister_cpu_notifier(&cpu_pmu->hotplug_nb);
|
cpuhp_remove_state_nocalls(CPUHP_AP_PERF_ARM_STARTING);
|
||||||
out_hw_events:
|
out_hw_events:
|
||||||
free_percpu(cpu_hw_events);
|
free_percpu(cpu_hw_events);
|
||||||
return err;
|
return err;
|
||||||
@ -867,7 +859,7 @@ static int cpu_pmu_init(struct arm_pmu *cpu_pmu)
|
|||||||
static void cpu_pmu_destroy(struct arm_pmu *cpu_pmu)
|
static void cpu_pmu_destroy(struct arm_pmu *cpu_pmu)
|
||||||
{
|
{
|
||||||
cpu_pm_pmu_unregister(cpu_pmu);
|
cpu_pm_pmu_unregister(cpu_pmu);
|
||||||
unregister_cpu_notifier(&cpu_pmu->hotplug_nb);
|
cpuhp_remove_state_nocalls(CPUHP_AP_PERF_ARM_STARTING);
|
||||||
free_percpu(cpu_pmu->hw_events);
|
free_percpu(cpu_pmu->hw_events);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1027,6 +1019,8 @@ int arm_pmu_device_probe(struct platform_device *pdev,
|
|||||||
if (ret)
|
if (ret)
|
||||||
goto out_destroy;
|
goto out_destroy;
|
||||||
|
|
||||||
|
WARN(__oprofile_cpu_pmu, "%s(): missing PMU strucure for CPU-hotplug\n",
|
||||||
|
__func__);
|
||||||
if (!__oprofile_cpu_pmu)
|
if (!__oprofile_cpu_pmu)
|
||||||
__oprofile_cpu_pmu = pmu;
|
__oprofile_cpu_pmu = pmu;
|
||||||
|
|
||||||
|
@ -35,6 +35,7 @@ enum cpuhp_state {
|
|||||||
CPUHP_AP_PERF_X86_CSTATE_STARTING,
|
CPUHP_AP_PERF_X86_CSTATE_STARTING,
|
||||||
CPUHP_AP_PERF_XTENSA_STARTING,
|
CPUHP_AP_PERF_XTENSA_STARTING,
|
||||||
CPUHP_AP_ARM_VFP_STARTING,
|
CPUHP_AP_ARM_VFP_STARTING,
|
||||||
|
CPUHP_AP_PERF_ARM_STARTING,
|
||||||
CPUHP_AP_NOTIFY_STARTING,
|
CPUHP_AP_NOTIFY_STARTING,
|
||||||
CPUHP_AP_ONLINE,
|
CPUHP_AP_ONLINE,
|
||||||
CPUHP_TEARDOWN_CPU,
|
CPUHP_TEARDOWN_CPU,
|
||||||
|
@ -109,7 +109,6 @@ struct arm_pmu {
|
|||||||
DECLARE_BITMAP(pmceid_bitmap, ARMV8_PMUV3_MAX_COMMON_EVENTS);
|
DECLARE_BITMAP(pmceid_bitmap, ARMV8_PMUV3_MAX_COMMON_EVENTS);
|
||||||
struct platform_device *plat_device;
|
struct platform_device *plat_device;
|
||||||
struct pmu_hw_events __percpu *hw_events;
|
struct pmu_hw_events __percpu *hw_events;
|
||||||
struct notifier_block hotplug_nb;
|
|
||||||
struct notifier_block cpu_pm_nb;
|
struct notifier_block cpu_pm_nb;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user