Lines Matching refs:config
125 u64 config)
129 cache_type = (config >> 0) & 0xff;
133 cache_op = (config >> 8) & 0xff;
137 cache_result = (config >> 16) & 0xff;
153 armpmu_map_hw_event(const unsigned (*event_map)[PERF_COUNT_HW_MAX], u64 config)
157 if (config >= PERF_COUNT_HW_MAX)
163 mapping = (*event_map)[config];
168 armpmu_map_raw_event(u32 raw_event_mask, u64 config)
170 return (int)(config & raw_event_mask);
182 u64 config = event->attr.config;
186 return armpmu_map_raw_event(raw_event_mask, config);
190 return armpmu_map_hw_event(event_map, config);
192 return armpmu_map_cache_event(cache_map, config);
194 return armpmu_map_raw_event(raw_event_mask, config);
455 event->attr.config);
467 hwc->config = 0;