aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bus/arm-cci.c
diff options
context:
space:
mode:
authorSuzuki K. Poulose <suzuki.poulose@arm.com>2015-03-18 08:24:42 -0400
committerWill Deacon <will.deacon@arm.com>2015-03-27 09:45:02 -0400
commit874c571414d5617f4042298986b6a826816ee885 (patch)
tree3098e8962b192f2669845b09fab68d553fa168f6 /drivers/bus/arm-cci.c
parentee8e5d5fbec0e880b18bbdbfe12de53ab1dec21f (diff)
arm-cci: Fix CCI PMU event validation
We mask the event with the CCI_PMU_EVENT_MASK, before passing the config to pmu_validate_hw_event(), which causes extra bits to be ignored and qualifies an invalid event code as valid. e.g, $ perf stat -a -C 0 -e CCI_400/config=0x1ff,name=cycles/ sleep 1 Performance counter stats for 'system wide': 506951142 cycles 1.013879626 seconds time elapsed where, cycles has an event coding of 0xff. This patch also removes the unnecessary 'event' mask in pmu_write_register, since the config_base is set by the pmu code after the event is validated. Acked-by: Punit Agrawal <punit.agrawal@arm.com> Reviewed-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Suzuki K. Poulose <suzuki.poulose@arm.com> Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'drivers/bus/arm-cci.c')
-rw-r--r--drivers/bus/arm-cci.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/drivers/bus/arm-cci.c b/drivers/bus/arm-cci.c
index 054df84562c2..b854125e4831 100644
--- a/drivers/bus/arm-cci.c
+++ b/drivers/bus/arm-cci.c
@@ -81,7 +81,7 @@ static const struct of_device_id arm_cci_matches[] = {
81 81
82#define CCI_PMU_CNTR_MASK ((1ULL << 32) -1) 82#define CCI_PMU_CNTR_MASK ((1ULL << 32) -1)
83 83
84#define CCI_PMU_EVENT_MASK 0xff 84#define CCI_PMU_EVENT_MASK 0xffUL
85#define CCI_PMU_EVENT_SOURCE(event) ((event >> 5) & 0x7) 85#define CCI_PMU_EVENT_SOURCE(event) ((event >> 5) & 0x7)
86#define CCI_PMU_EVENT_CODE(event) (event & 0x1f) 86#define CCI_PMU_EVENT_CODE(event) (event & 0x1f)
87 87
@@ -179,12 +179,15 @@ enum cci400_perf_events {
179#define CCI_REV_R1_MASTER_PORT_MIN_EV 0x00 179#define CCI_REV_R1_MASTER_PORT_MIN_EV 0x00
180#define CCI_REV_R1_MASTER_PORT_MAX_EV 0x11 180#define CCI_REV_R1_MASTER_PORT_MAX_EV 0x11
181 181
182static int pmu_validate_hw_event(u8 hw_event) 182static int pmu_validate_hw_event(unsigned long hw_event)
183{ 183{
184 u8 ev_source = CCI_PMU_EVENT_SOURCE(hw_event); 184 u8 ev_source = CCI_PMU_EVENT_SOURCE(hw_event);
185 u8 ev_code = CCI_PMU_EVENT_CODE(hw_event); 185 u8 ev_code = CCI_PMU_EVENT_CODE(hw_event);
186 int if_type; 186 int if_type;
187 187
188 if (hw_event & ~CCI_PMU_EVENT_MASK)
189 return -ENOENT;
190
188 switch (ev_source) { 191 switch (ev_source) {
189 case CCI_PORT_S0: 192 case CCI_PORT_S0:
190 case CCI_PORT_S1: 193 case CCI_PORT_S1:
@@ -258,7 +261,6 @@ static void pmu_enable_counter(int idx)
258 261
259static void pmu_set_event(int idx, unsigned long event) 262static void pmu_set_event(int idx, unsigned long event)
260{ 263{
261 event &= CCI_PMU_EVENT_MASK;
262 pmu_write_register(event, idx, CCI_PMU_EVT_SEL); 264 pmu_write_register(event, idx, CCI_PMU_EVT_SEL);
263} 265}
264 266
@@ -275,7 +277,7 @@ static int pmu_get_event_idx(struct cci_pmu_hw_events *hw, struct perf_event *ev
275{ 277{
276 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu); 278 struct cci_pmu *cci_pmu = to_cci_pmu(event->pmu);
277 struct hw_perf_event *hw_event = &event->hw; 279 struct hw_perf_event *hw_event = &event->hw;
278 unsigned long cci_event = hw_event->config_base & CCI_PMU_EVENT_MASK; 280 unsigned long cci_event = hw_event->config_base;
279 int idx; 281 int idx;
280 282
281 if (cci_event == CCI_PMU_CYCLES) { 283 if (cci_event == CCI_PMU_CYCLES) {
@@ -296,7 +298,7 @@ static int pmu_get_event_idx(struct cci_pmu_hw_events *hw, struct perf_event *ev
296static int pmu_map_event(struct perf_event *event) 298static int pmu_map_event(struct perf_event *event)
297{ 299{
298 int mapping; 300 int mapping;
299 u8 config = event->attr.config & CCI_PMU_EVENT_MASK; 301 unsigned long config = event->attr.config;
300 302
301 if (event->attr.type < PERF_TYPE_MAX) 303 if (event->attr.type < PERF_TYPE_MAX)
302 return -ENOENT; 304 return -ENOENT;