diff options
author | Kenneth Graunke <[email protected]> | 2017-11-15 23:06:27 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2017-11-16 11:01:50 -0800 |
commit | f274687413cadb5f7cf2242f85e27c11c5753dfa (patch) | |
tree | 9bd87d8824f6b84967f4193a0ae1358f4d63febf /src/intel/genxml/gen45.xml | |
parent | 9b0223046668593deb9c0be0b557994bb5218788 (diff) |
genxml: Fix PIPELINE_SELECT on G45/Ironlake.
Original 965 sets bits 28:27 to 0, while G45 and later set it to 1.
Note that the G45 docs are incorrect in this regard - see the DevCTG+
note in the Ironlake PRMs.
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/genxml/gen45.xml')
-rw-r--r-- | src/intel/genxml/gen45.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/genxml/gen45.xml b/src/intel/genxml/gen45.xml index c91085831ea..136cc6f68a3 100644 --- a/src/intel/genxml/gen45.xml +++ b/src/intel/genxml/gen45.xml @@ -1162,7 +1162,7 @@ <instruction name="PIPELINE_SELECT" bias="1" length="1"> <field name="Command Type" start="29" end="31" type="uint" default="3"/> - <field name="Command SubType" start="27" end="28" type="uint" default="0"/> + <field name="Command SubType" start="27" end="28" type="uint" default="1"/> <field name="3D Command Opcode" start="24" end="26" type="uint" default="1"/> <field name="3D Command Sub Opcode" start="16" end="23" type="uint" default="4"/> <field name="Pipeline Selection" start="0" end="1" type="uint"> |