]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/i915: Whitelist COMMON_SLICE_CHICKEN2
authorKenneth Graunke <kenneth@whitecape.org>
Wed, 11 Sep 2019 01:48:01 +0000 (18:48 -0700)
committerChris Wilson <chris@chris-wilson.co.uk>
Wed, 11 Sep 2019 07:59:48 +0000 (08:59 +0100)
This allows userspace to use "legacy" mode for push constants, where
they are committed at 3DPRIMITIVE or flush time, rather than being
committed at 3DSTATE_BINDING_TABLE_POINTERS_XS time.  Gen6-8 and Gen11
both use the "legacy" behavior - only Gen9 works in the "new" way.

Conflating push constants with binding tables is painful for userspace,
we would like to be able to avoid doing so.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Cc: stable@vger.kernel.org
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20190911014801.26821-1-kenneth@whitecape.org
drivers/gpu/drm/i915/gt/intel_workarounds.c

index 243d3f77be13f10c7428c16d638d9032e77eb565..41d0f786e06d76a29da777bd3f8dbd14beacebdb 100644 (file)
@@ -1062,6 +1062,9 @@ static void gen9_whitelist_build(struct i915_wa_list *w)
 
        /* WaAllowUMDToModifyHDCChicken1:skl,bxt,kbl,glk,cfl */
        whitelist_reg(w, GEN8_HDC_CHICKEN1);
+
+       /* WaSendPushConstantsFromMMIO:skl,bxt */
+       whitelist_reg(w, COMMON_SLICE_CHICKEN2);
 }
 
 static void skl_whitelist_build(struct intel_engine_cs *engine)