Lines Matching refs:perf

20 alloc_empty_config(struct i915_perf *perf)  in alloc_empty_config()  argument
28 oa_config->perf = perf; in alloc_empty_config()
33 mutex_lock(&perf->metrics_lock); in alloc_empty_config()
35 oa_config->id = idr_alloc(&perf->metrics_idr, oa_config, 2, 0, GFP_KERNEL); in alloc_empty_config()
37 mutex_unlock(&perf->metrics_lock); in alloc_empty_config()
42 mutex_unlock(&perf->metrics_lock); in alloc_empty_config()
48 destroy_empty_config(struct i915_perf *perf) in destroy_empty_config() argument
53 mutex_lock(&perf->metrics_lock); in destroy_empty_config()
55 idr_for_each_entry(&perf->metrics_idr, tmp, id) { in destroy_empty_config()
63 idr_remove(&perf->metrics_idr, oa_config->id); in destroy_empty_config()
65 mutex_unlock(&perf->metrics_lock); in destroy_empty_config()
72 get_empty_config(struct i915_perf *perf) in get_empty_config() argument
77 mutex_lock(&perf->metrics_lock); in get_empty_config()
79 idr_for_each_entry(&perf->metrics_idr, tmp, id) { in get_empty_config()
86 mutex_unlock(&perf->metrics_lock); in get_empty_config()
92 test_stream(struct i915_perf *perf) in test_stream() argument
95 struct i915_oa_config *oa_config = get_empty_config(perf); in test_stream()
97 .engine = intel_engine_lookup_user(perf->i915, in test_stream()
101 .oa_format = GRAPHICS_VER(perf->i915) == 12 ? in test_stream()
123 stream->perf = perf; in test_stream()
125 mutex_lock(&gt->perf.lock); in test_stream()
130 mutex_unlock(&gt->perf.lock); in test_stream()
141 mutex_lock(&gt->perf.lock); in stream_destroy()
143 mutex_unlock(&gt->perf.lock); in stream_destroy()
153 stream = test_stream(&i915->perf); in live_sanitycheck()
210 stream = test_stream(&i915->perf); in live_noa_delay()
214 expected = atomic64_read(&stream->perf->noa_programming_delay); in live_noa_delay()
303 stream = test_stream(&i915->perf); in live_noa_gpr()
427 struct i915_perf *perf = &i915->perf; in i915_perf_live_selftests() local
430 if (!perf->metrics_kobj || !perf->ops.enable_metric_set) in i915_perf_live_selftests()
436 err = alloc_empty_config(&i915->perf); in i915_perf_live_selftests()
442 destroy_empty_config(&i915->perf); in i915_perf_live_selftests()