summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.10/0067-ARM-7355-1-perf-clear-overflow-flag-when-disabling-c.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.10/0067-ARM-7355-1-perf-clear-overflow-flag-when-disabling-c.patch')
-rw-r--r--recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.10/0067-ARM-7355-1-perf-clear-overflow-flag-when-disabling-c.patch40
1 files changed, 40 insertions, 0 deletions
diff --git a/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.10/0067-ARM-7355-1-perf-clear-overflow-flag-when-disabling-c.patch b/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.10/0067-ARM-7355-1-perf-clear-overflow-flag-when-disabling-c.patch
new file mode 100644
index 00000000..5d401cb9
--- /dev/null
+++ b/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.10/0067-ARM-7355-1-perf-clear-overflow-flag-when-disabling-c.patch
@@ -0,0 +1,40 @@
1From 54426f627a1b329bda270f1e85f9ee0e01e18573 Mon Sep 17 00:00:00 2001
2From: Will Deacon <will.deacon@arm.com>
3Date: Tue, 6 Mar 2012 17:34:22 +0100
4Subject: [PATCH 67/95] ARM: 7355/1: perf: clear overflow flag when disabling
5 counter on ARMv7 PMU
6
7commit 99c1745b9c76910e195889044f914b4898b7c9a5 upstream.
8
9When disabling a counter on an ARMv7 PMU, we should also clear the
10overflow flag in case an overflow occurred whilst stopping the counter.
11This prevents a spurious overflow being picked up later and leading to
12either false accounting or a NULL dereference.
13
14Reported-by: Ming Lei <tom.leiming@gmail.com>
15Signed-off-by: Will Deacon <will.deacon@arm.com>
16Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
17Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18---
19 arch/arm/kernel/perf_event_v7.c | 5 +++++
20 1 file changed, 5 insertions(+)
21
22diff --git a/arch/arm/kernel/perf_event_v7.c b/arch/arm/kernel/perf_event_v7.c
23index c63a13e..5e1e4f7 100644
24--- a/arch/arm/kernel/perf_event_v7.c
25+++ b/arch/arm/kernel/perf_event_v7.c
26@@ -781,6 +781,11 @@ static inline int armv7_pmnc_disable_intens(int idx)
27
28 counter = ARMV7_IDX_TO_COUNTER(idx);
29 asm volatile("mcr p15, 0, %0, c9, c14, 2" : : "r" (BIT(counter)));
30+ isb();
31+ /* Clear the overflow flag in case an interrupt is pending. */
32+ asm volatile("mcr p15, 0, %0, c9, c12, 3" : : "r" (BIT(counter)));
33+ isb();
34+
35 return idx;
36 }
37
38--
391.7.9.4
40