From: Alyssa Rosenzweig Date: Thu, 20 May 2021 23:25:00 +0000 (-0400) Subject: panfrost: Elucidate thread group split field X-Git-Tag: upstream/21.2.3~2641 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ae93796cc0ad147cef0d7ba25062a5a4b1a1c2d3;p=platform%2Fupstream%2Fmesa.git panfrost: Elucidate thread group split field Last unknown field in the XML :-) Signed-off-by: Alyssa Rosenzweig Part-of: --- diff --git a/src/gallium/drivers/panfrost/pan_context.c b/src/gallium/drivers/panfrost/pan_context.c index c258020..238bca7 100644 --- a/src/gallium/drivers/panfrost/pan_context.c +++ b/src/gallium/drivers/panfrost/pan_context.c @@ -553,7 +553,7 @@ panfrost_direct_draw(struct panfrost_batch *batch, cfg.workgroups_x_shift = 0; cfg.workgroups_y_shift = 0; cfg.workgroups_z_shift = 32; - cfg.unknown_shift = 2; + cfg.thread_group_split = MALI_SPLIT_MIN_EFFICIENT; } } diff --git a/src/panfrost/lib/midgard.xml b/src/panfrost/lib/midgard.xml index 1f52695..f27a9ef 100644 --- a/src/panfrost/lib/midgard.xml +++ b/src/panfrost/lib/midgard.xml @@ -626,7 +626,9 @@ - + + + diff --git a/src/panfrost/lib/pan_invocation.c b/src/panfrost/lib/pan_invocation.c index c92296f..6c0843e 100644 --- a/src/panfrost/lib/pan_invocation.c +++ b/src/panfrost/lib/pan_invocation.c @@ -98,9 +98,11 @@ panfrost_pack_work_groups_compute( if (quirk_graphics && (num_z <= 1)) cfg.workgroups_z_shift = 32; - /* Quirk: for graphics, >= 2. For compute, 2 without barriers - * but equal to workgroups_x_shift with barriers */ + /* For graphics, set to the minimum efficient value. For + * compute, must equal the workgroup X shift for barriers to + * function correctly */ - cfg.unknown_shift = quirk_graphics ? 2 : cfg.workgroups_x_shift; + cfg.thread_group_split = quirk_graphics ? + MALI_SPLIT_MIN_EFFICIENT : cfg.workgroups_x_shift; } }