Lines Matching refs:config
121 u64 config)
125 cache_type = (config >> 0) & 0xff;
129 cache_op = (config >> 8) & 0xff;
133 cache_result = (config >> 16) & 0xff;
149 armpmu_map_hw_event(const unsigned (*event_map)[PERF_COUNT_HW_MAX], u64 config)
153 if (config >= PERF_COUNT_HW_MAX)
159 mapping = (*event_map)[config];
164 armpmu_map_raw_event(u32 raw_event_mask, u64 config)
166 return (int)(config & raw_event_mask);
178 u64 config = event->attr.config;
182 return armpmu_map_raw_event(raw_event_mask, config);
186 return armpmu_map_hw_event(event_map, config);
188 return armpmu_map_cache_event(cache_map, config);
190 return armpmu_map_raw_event(raw_event_mask, config);
451 event->attr.config);
463 hwc->config = 0;