diff options
author | Marc Zyngier <marc.zyngier@arm.com> | 2017-04-04 12:05:16 -0400 |
---|---|---|
committer | Marc Zyngier <marc.zyngier@arm.com> | 2017-04-07 06:22:09 -0400 |
commit | bee67c53a990452c4f3c7a0e9cebfecb5acfbde3 (patch) | |
tree | 914ae967997294a833ccb2a7533eab045edf1eee /drivers/clocksource/arm_arch_timer.c | |
parent | 992dd16f6528bd3f378dbcda43688d374be02943 (diff) |
arm64: arch_timer: Save cntkctl_el1 as a per-cpu variable
As we're about to allow per CPU cntkctl_el1 configuration, we cannot
rely on the register value to be common when performing power
management.
Let's turn saved_cntkctl into a per-cpu variable.
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'drivers/clocksource/arm_arch_timer.c')
-rw-r--r-- | drivers/clocksource/arm_arch_timer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/clocksource/arm_arch_timer.c b/drivers/clocksource/arm_arch_timer.c index 395f5d95a737..5c114da0ed71 100644 --- a/drivers/clocksource/arm_arch_timer.c +++ b/drivers/clocksource/arm_arch_timer.c | |||
@@ -839,14 +839,14 @@ static int arch_timer_dying_cpu(unsigned int cpu) | |||
839 | } | 839 | } |
840 | 840 | ||
841 | #ifdef CONFIG_CPU_PM | 841 | #ifdef CONFIG_CPU_PM |
842 | static unsigned int saved_cntkctl; | 842 | static DEFINE_PER_CPU(unsigned long, saved_cntkctl); |
843 | static int arch_timer_cpu_pm_notify(struct notifier_block *self, | 843 | static int arch_timer_cpu_pm_notify(struct notifier_block *self, |
844 | unsigned long action, void *hcpu) | 844 | unsigned long action, void *hcpu) |
845 | { | 845 | { |
846 | if (action == CPU_PM_ENTER) | 846 | if (action == CPU_PM_ENTER) |
847 | saved_cntkctl = arch_timer_get_cntkctl(); | 847 | __this_cpu_write(saved_cntkctl, arch_timer_get_cntkctl()); |
848 | else if (action == CPU_PM_ENTER_FAILED || action == CPU_PM_EXIT) | 848 | else if (action == CPU_PM_ENTER_FAILED || action == CPU_PM_EXIT) |
849 | arch_timer_set_cntkctl(saved_cntkctl); | 849 | arch_timer_set_cntkctl(__this_cpu_read(saved_cntkctl)); |
850 | return NOTIFY_OK; | 850 | return NOTIFY_OK; |
851 | } | 851 | } |
852 | 852 | ||