Home
last modified time | relevance | path

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

/Linux-v5.4/tools/perf/util/
Ddb-export.c38 if (evsel->db_id) in db_export__evsel()
41 evsel->db_id = ++dbe->evsel_last_db_id; in db_export__evsel()
51 if (machine->db_id) in db_export__machine()
54 machine->db_id = ++dbe->machine_last_db_id; in db_export__machine()
67 if (thread->db_id) in db_export__thread()
70 thread->db_id = ++dbe->thread_last_db_id; in db_export__thread()
73 main_thread_db_id = main_thread->db_id; in db_export__thread()
85 comm->db_id = ++dbe->comm_last_db_id; in __db_export__comm()
96 if (comm->db_id) in db_export__comm()
113 if (comm->db_id) in db_export__exec_comm()
[all …]
Ddb-export.h30 u64 db_id; member
48 int (*export_comm_thread)(struct db_export *dbe, u64 db_id,
60 int (*export_context_switch)(struct db_export *dbe, u64 db_id,
Dcomm.h18 u64 db_id; member
Dcall-path.h32 u64 db_id; member
Dthread-stack.c60 u64 db_id; member
284 .db_id = 0, in thread_stack__call_return()
295 cr.db_id = tse->db_id; in thread_stack__call_return()
310 parent_db_id = idx ? &(tse - 1)->db_id : NULL; in thread_stack__call_return()
556 tse->db_id = 0; in thread_stack__push_cp()
Dthread-stack.h65 u64 db_id; member
Dcall-path.c20 cp->db_id = 0; in call_path__init()
Dthread.h41 u64 db_id; member
Ddso.h196 u64 db_id; member
Dmachine.h59 u64 db_id; member
Devsel.h59 u64 db_id; member
/Linux-v5.4/drivers/gpu/drm/i915/gt/uc/
Dselftest_guc.c37 u16 db_id; in check_all_doorbells() local
40 for (db_id = 0; db_id < GUC_NUM_DOORBELLS; ++db_id) { in check_all_doorbells()
41 if (!doorbell_ok(guc, db_id)) { in check_all_doorbells()
42 pr_err("doorbell %d, not ok\n", db_id); in check_all_doorbells()
208 u16 db_id; in igt_guc_doorbells() local
269 db_id = clients[i]->doorbell_id; in igt_guc_doorbells()
278 if (db_id != clients[i]->doorbell_id) { in igt_guc_doorbells()
280 i, db_id, clients[i]->doorbell_id); in igt_guc_doorbells()
Dintel_guc_submission.c178 desc->db_id = new_id; in __update_doorbell_desc()
186 static bool __doorbell_valid(struct intel_guc *guc, u16 db_id) in __doorbell_valid() argument
190 GEM_BUG_ON(db_id >= GUC_NUM_DOORBELLS); in __doorbell_valid()
191 return intel_uncore_read(uncore, GEN8_DRBREGL(db_id)) & GEN8_DRB_VALID; in __doorbell_valid()
206 u16 db_id = client->doorbell_id; in __fini_doorbell() local
215 if (wait_for_us(!__doorbell_valid(client->guc, db_id), 10)) in __fini_doorbell()
363 desc->db_id = client->doorbell_id; in guc_stage_desc_init()
758 static bool doorbell_ok(struct intel_guc *guc, u16 db_id) in doorbell_ok() argument
762 GEM_BUG_ON(db_id >= GUC_NUM_DOORBELLS); in doorbell_ok()
764 valid = __doorbell_valid(guc, db_id); in doorbell_ok()
[all …]
Dintel_guc_fwif.h166 u16 db_id; member
/Linux-v5.4/tools/perf/util/scripting-engines/
Dtrace-event-python.c965 tuple_set_u64(t, 0, evsel->db_id); in python_export_evsel()
983 tuple_set_u64(t, 0, machine->db_id); in python_export_machine()
1002 tuple_set_u64(t, 0, thread->db_id); in python_export_thread()
1003 tuple_set_u64(t, 1, machine->db_id); in python_export_thread()
1023 tuple_set_u64(t, 0, comm->db_id); in python_export_comm()
1025 tuple_set_u64(t, 2, thread->db_id); in python_export_comm()
1036 static int python_export_comm_thread(struct db_export *dbe, u64 db_id, in python_export_comm_thread() argument
1044 tuple_set_u64(t, 0, db_id); in python_export_comm_thread()
1045 tuple_set_u64(t, 1, comm->db_id); in python_export_comm_thread()
1046 tuple_set_u64(t, 2, thread->db_id); in python_export_comm_thread()
[all …]
/Linux-v5.4/drivers/gpu/drm/i915/
Di915_debugfs.c1933 seq_printf(m, "\tDoorbell id: %d\n", desc->db_id); in i915_guc_stage_pool()