mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
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 <lionel.g.landwerlin@intel.com>
This commit is contained in:
parent
9b02230466
commit
f274687413
2 changed files with 2 additions and 2 deletions
|
|
@ -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">
|
||||
|
|
|
|||
|
|
@ -1253,7 +1253,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">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue