Home
last modified time | relevance | path

Searched refs:db_id (Results 1 – 16 of 16) sorted by relevance

/Linux-v4.19/tools/perf/util/
Ddb-export.c100 if (evsel->db_id) in db_export__evsel()
103 evsel->db_id = ++dbe->evsel_last_db_id; in db_export__evsel()
113 if (machine->db_id) in db_export__machine()
116 machine->db_id = ++dbe->machine_last_db_id; in db_export__machine()
131 if (thread->db_id) in db_export__thread()
134 thread->db_id = ++dbe->thread_last_db_id; in db_export__thread()
155 main_thread_db_id = main_thread->db_id; in db_export__thread()
176 if (comm->db_id) in db_export__comm()
179 comm->db_id = ++dbe->comm_last_db_id; in db_export__comm()
196 u64 db_id; in db_export__comm_thread() local
[all …]
Ddb-export.h39 u64 db_id; member
56 int (*export_comm_thread)(struct db_export *dbe, u64 db_id,
Dcomm.h18 u64 db_id; member
Dcall-path.h41 u64 db_id; member
Dthread-stack.h66 u64 db_id; member
Dcall-path.c28 cp->db_id = 0; in call_path__init()
Dthread.h36 u64 db_id; member
Ddso.h194 u64 db_id; member
Dmachine.h57 u64 db_id; member
Devsel.h109 u64 db_id; member
Dthread-stack.c170 .db_id = 0, in thread_stack__call_return()
/Linux-v4.19/drivers/gpu/drm/i915/selftests/
Dintel_guc.c55 u16 db_id; in check_all_doorbells() local
58 for (db_id = 0; db_id < GUC_NUM_DOORBELLS; ++db_id) { in check_all_doorbells()
59 if (!doorbell_ok(guc, db_id)) { in check_all_doorbells()
60 pr_err("doorbell %d, not ok\n", db_id); in check_all_doorbells()
252 u16 db_id; in igt_guc_doorbells() local
316 db_id = clients[i]->doorbell_id; in igt_guc_doorbells()
325 if (db_id != clients[i]->doorbell_id) { in igt_guc_doorbells()
327 i, db_id, clients[i]->doorbell_id); in igt_guc_doorbells()
/Linux-v4.19/tools/perf/util/scripting-engines/
Dtrace-event-python.c956 tuple_set_u64(t, 0, evsel->db_id); in python_export_evsel()
974 tuple_set_u64(t, 0, machine->db_id); in python_export_machine()
993 tuple_set_u64(t, 0, thread->db_id); in python_export_thread()
994 tuple_set_u64(t, 1, machine->db_id); in python_export_thread()
1013 tuple_set_u64(t, 0, comm->db_id); in python_export_comm()
1023 static int python_export_comm_thread(struct db_export *dbe, u64 db_id, in python_export_comm_thread() argument
1031 tuple_set_u64(t, 0, db_id); in python_export_comm_thread()
1032 tuple_set_u64(t, 1, comm->db_id); in python_export_comm_thread()
1033 tuple_set_u64(t, 2, thread->db_id); in python_export_comm_thread()
1053 tuple_set_u64(t, 0, dso->db_id); in python_export_dso()
[all …]
/Linux-v4.19/drivers/gpu/drm/i915/
Dintel_guc_submission.c187 desc->db_id = new_id; in __update_doorbell_desc()
208 u16 db_id = client->doorbell_id; in __destroy_doorbell() local
218 if (wait_for_us(!(I915_READ(GEN8_DRBREGL(db_id)) & GEN8_DRB_VALID), 10)) in __destroy_doorbell()
364 desc->db_id = client->doorbell_id; in guc_stage_desc_init()
852 static bool doorbell_ok(struct intel_guc *guc, u16 db_id) in doorbell_ok() argument
858 GEM_BUG_ON(db_id >= GUC_DOORBELL_INVALID); in doorbell_ok()
860 drbregl = I915_READ(GEN8_DRBREGL(db_id)); in doorbell_ok()
863 if (test_bit(db_id, guc->doorbell_bitmap) == valid) in doorbell_ok()
867 db_id, drbregl, yesno(valid)); in doorbell_ok()
874 u16 db_id; in guc_verify_doorbells() local
[all …]
Dintel_guc_fwif.h300 u16 db_id; member
Di915_debugfs.c2460 seq_printf(m, "\tDoorbell id: %d\n", desc->db_id); in i915_guc_stage_pool()