Searched refs:g2h_len_dw (Results 1 – 3 of 3) sorted by relevance
/Linux-v6.1/drivers/gpu/drm/i915/gt/uc/ |
D | intel_guc.h | 269 u32 g2h_len_dw) in intel_guc_send_nb() argument 272 MAKE_SEND_FLAGS(g2h_len_dw)); in intel_guc_send_nb() 286 u32 g2h_len_dw, in intel_guc_send_busy_loop() argument 304 err = intel_guc_send_nb(guc, action, len, g2h_len_dw); in intel_guc_send_busy_loop()
|
D | intel_guc_ct.c | 528 static inline bool g2h_has_room(struct intel_guc_ct *ct, u32 g2h_len_dw) in g2h_has_room() argument 536 return !g2h_len_dw || atomic_read(&ctb->space) >= g2h_len_dw; in g2h_has_room() 539 static inline void g2h_reserve_space(struct intel_guc_ct *ct, u32 g2h_len_dw) in g2h_reserve_space() argument 543 GEM_BUG_ON(!g2h_has_room(ct, g2h_len_dw)); in g2h_reserve_space() 545 if (g2h_len_dw) in g2h_reserve_space() 546 atomic_sub(g2h_len_dw, &ct->ctbs.recv.space); in g2h_reserve_space() 549 static inline void g2h_release_space(struct intel_guc_ct *ct, u32 g2h_len_dw) in g2h_release_space() argument 551 atomic_add(g2h_len_dw, &ct->ctbs.recv.space); in g2h_release_space() 617 u32 g2h_len_dw = G2H_LEN_DW(flags); in ct_send_nb() local 623 ret = has_room_nb(ct, len + GUC_CTB_HDR_LEN, g2h_len_dw); in ct_send_nb() [all …]
|
D | intel_guc_submission.c | 602 u32 g2h_len_dw, in guc_submission_send_busy_loop() argument 610 GEM_BUG_ON(g2h_len_dw && !loop); in guc_submission_send_busy_loop() 612 if (g2h_len_dw) in guc_submission_send_busy_loop() 615 return intel_guc_send_busy_loop(guc, action, len, g2h_len_dw, loop); in guc_submission_send_busy_loop() 678 u32 g2h_len_dw = 0; in __guc_add_request() local 720 g2h_len_dw = G2H_LEN_DW_SCHED_CONTEXT_MODE_SET; in __guc_add_request() 726 err = intel_guc_send_nb(guc, action, len, g2h_len_dw); in __guc_add_request()
|