Symbol: GUC_KLV_LEN_MIN
drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
199
CLASS(xe_guc_buf, buf)(&gt->uc.guc.buf, GUC_KLV_LEN_MIN + GUC_MAX_SCHED_GROUPS);
drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
212
return pf_push_vf_buf_klvs(gt, vfid, 1, buf, GUC_KLV_LEN_MIN + count);
drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
3174
while (num_dwords >= GUC_KLV_LEN_MIN) {
drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
3178
klvs += GUC_KLV_LEN_MIN;
drivers/gpu/drm/xe/xe_gt_sriov_pf_config.c
3179
num_dwords -= GUC_KLV_LEN_MIN;
drivers/gpu/drm/xe/xe_gt_sriov_pf_policy.c
111
CLASS(xe_guc_buf, buf)(&gt->uc.guc.buf, GUC_KLV_LEN_MIN + num_dwords);
drivers/gpu/drm/xe/xe_gt_sriov_pf_policy.c
123
return pf_push_policy_buf_klvs(gt, 1, buf, GUC_KLV_LEN_MIN + num_dwords);
drivers/gpu/drm/xe/xe_guc_klv_helpers.c
130
BUILD_BUG_ON(GUC_KLV_LEN_MIN > 1);
drivers/gpu/drm/xe/xe_guc_klv_helpers.c
145
while (num_dwords >= GUC_KLV_LEN_MIN) {
drivers/gpu/drm/xe/xe_guc_klv_helpers.c
148
if (num_dwords < len + GUC_KLV_LEN_MIN)
drivers/gpu/drm/xe/xe_guc_klv_helpers.c
151
klvs += GUC_KLV_LEN_MIN + len;
drivers/gpu/drm/xe/xe_guc_klv_helpers.c
152
num_dwords -= GUC_KLV_LEN_MIN + len;
drivers/gpu/drm/xe/xe_guc_klv_helpers.c
89
while (num_dwords >= GUC_KLV_LEN_MIN) {
drivers/gpu/drm/xe/xe_guc_klv_helpers.c
93
klvs += GUC_KLV_LEN_MIN;
drivers/gpu/drm/xe/xe_guc_klv_helpers.c
94
num_dwords -= GUC_KLV_LEN_MIN;
drivers/gpu/drm/xe/xe_sriov_packet.c
360
#define MIGRATION_DESCRIPTOR_DWORDS (GUC_KLV_LEN_MIN + MIGRATION_KLV_DEVICE_DEVID_LEN + \
drivers/gpu/drm/xe/xe_sriov_packet.c
361
GUC_KLV_LEN_MIN + MIGRATION_KLV_DEVICE_REVID_LEN)
drivers/gpu/drm/xe/xe_sriov_packet.c
421
while (num_dwords >= GUC_KLV_LEN_MIN) {
drivers/gpu/drm/xe/xe_sriov_packet.c
425
klvs += GUC_KLV_LEN_MIN;
drivers/gpu/drm/xe/xe_sriov_packet.c
426
num_dwords -= GUC_KLV_LEN_MIN;