mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 17:10:11 +01:00
iris: implement WaEnableStateCacheRedirectToCS
This 3d performance workaround was initially put in the kernel but the media driver requires different settings so the register has been whitelisted in i915 [1] and userspace drivers are left initializing it as they wish. [1] : https://patchwork.freedesktop.org/series/59494/ Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
This commit is contained in:
parent
c2b8fb9a81
commit
d1be67db39
2 changed files with 12 additions and 0 deletions
|
|
@ -721,6 +721,13 @@ iris_init_render_context(struct iris_screen *screen,
|
|||
}
|
||||
iris_emit_lri(batch, COMMON_SLICE_CHICKEN3, reg_val);
|
||||
|
||||
iris_pack_state(GENX(SLICE_COMMON_ECO_CHICKEN1), ®_val, reg) {
|
||||
reg.StateCacheRedirectToCSSectionEnable = true;
|
||||
reg.StateCacheRedirectToCSSectionEnableMask = true;
|
||||
}
|
||||
iris_emit_lri(batch, SLICE_COMMON_ECO_CHICKEN1, reg_val);
|
||||
|
||||
|
||||
// XXX: 3D_MODE?
|
||||
#endif
|
||||
|
||||
|
|
|
|||
|
|
@ -7015,6 +7015,11 @@
|
|||
<field name="SFBE Done" start="25" end="25" type="bool"/>
|
||||
</register>
|
||||
|
||||
<register name="SLICE_COMMON_ECO_CHICKEN1" length="1" num="0x731c">
|
||||
<field name="State Cache Redirect To CS Section Enable" start="11" end="11" type="bool"/>
|
||||
<field name="State Cache Redirect To CS Section Enable Mask" start="27" end="27" type="bool"/>
|
||||
</register>
|
||||
|
||||
<register name="SO_NUM_PRIMS_WRITTEN0" length="2" num="0x5200">
|
||||
<field name="Num Prims Written Count" start="0" end="63" type="uint"/>
|
||||
</register>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue