Browse Source

genxml: Put append counter fields before MCS in RENDER_SURFACE_STATE on gen7

The pack header generation scripts can't handle the case where you have
two addresses in the same dword; they just take whatever is the last one.
This meant that the MCS address wasn't properly getting handled.  Since we
don't care about append counters, we can just re-arrange the XML for now.

Reviewed-by: Chad Versace <chad.versace@intel.com>
Cc: "12.0" <mesa-stable@lists.freedesktop.org>
tags/13.0-branchpoint
Jason Ekstrand 9 years ago
parent
commit
89ded099f8
2 changed files with 4 additions and 4 deletions
  1. 2
    2
      src/intel/genxml/gen7.xml
  2. 2
    2
      src/intel/genxml/gen75.xml

+ 2
- 2
src/intel/genxml/gen7.xml View File

@@ -394,10 +394,10 @@
<field name="MOCS" start="176" end="179" type="uint"/>
<field name="Surface Min LOD" start="164" end="167" type="uint"/>
<field name="MIP Count / LOD" start="160" end="163" type="uint"/>
<field name="MCS Base Address" start="204" end="223" type="address"/>
<field name="MCS Surface Pitch" start="195" end="203" type="uint"/>
<field name="Append Counter Address" start="198" end="223" type="address"/>
<field name="Append Counter Enable" start="193" end="193" type="bool"/>
<field name="MCS Base Address" start="204" end="223" type="address"/>
<field name="MCS Surface Pitch" start="195" end="203" type="uint"/>
<field name="MCS Enable" start="192" end="192" type="bool"/>
<field name="Reserved: MBZ" start="222" end="223" type="uint"/>
<field name="X Offset for UV Plane" start="208" end="221" type="uint"/>

+ 2
- 2
src/intel/genxml/gen75.xml View File

@@ -405,10 +405,10 @@
<field name="MOCS" start="176" end="179" type="uint"/>
<field name="Surface Min LOD" start="164" end="167" type="uint"/>
<field name="MIP Count / LOD" start="160" end="163" type="uint"/>
<field name="MCS Base Address" start="204" end="223" type="address"/>
<field name="MCS Surface Pitch" start="195" end="203" type="uint"/>
<field name="Append Counter Address" start="198" end="223" type="address"/>
<field name="Append Counter Enable" start="193" end="193" type="bool"/>
<field name="MCS Base Address" start="204" end="223" type="address"/>
<field name="MCS Surface Pitch" start="195" end="203" type="uint"/>
<field name="MCS Enable" start="192" end="192" type="bool"/>
<field name="Reserved: MBZ" start="222" end="223" type="uint"/>
<field name="X Offset for UV Plane" start="208" end="221" type="uint"/>

Loading…
Cancel
Save