summaryrefslogtreecommitdiffstats
path: root/src/intel/genxml/gen8.xml
diff options
context:
space:
mode:
authorLionel Landwerlin <[email protected]>2018-08-14 11:22:12 +0100
committerLionel Landwerlin <[email protected]>2018-08-24 23:10:08 +0100
commitf430a37fa75f534c3a114b0ec546fa14f05f5da1 (patch)
tree0467ded580a9c3181567e992e9701d495b55409f /src/intel/genxml/gen8.xml
parent7f745c19c198cf175b6c932d236e08931f302b72 (diff)
intel: decoder: unify MI_BB_START field naming
The batch decoder looks for a field with a particular name to decide whether an MI_BB_START leads into a second batch buffer level. Because the names are different between Gen7.5/8 and the newer generation we fail that test and keep on reading (invalid) instructions. Signed-off-by: Lionel Landwerlin <[email protected]> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=107544 Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/genxml/gen8.xml')
-rw-r--r--src/intel/genxml/gen8.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/intel/genxml/gen8.xml b/src/intel/genxml/gen8.xml
index 4ed41d15612..330366b7ed0 100644
--- a/src/intel/genxml/gen8.xml
+++ b/src/intel/genxml/gen8.xml
@@ -2553,9 +2553,9 @@
<instruction name="MI_BATCH_BUFFER_START" bias="2" length="3">
<field name="Command Type" start="29" end="31" type="uint" default="0"/>
<field name="MI Command Opcode" start="23" end="28" type="uint" default="49"/>
- <field name="2nd Level Batch Buffer" start="22" end="22" type="uint">
- <value name="1st level batch" value="0"/>
- <value name="2nd level batch" value="1"/>
+ <field name="Second Level Batch Buffer" start="22" end="22" type="uint">
+ <value name="First level batch" value="0"/>
+ <value name="Second level batch" value="1"/>
</field>
<field name="Add Offset Enable" start="16" end="16" type="bool"/>
<field name="Predication Enable" start="15" end="15" type="bool"/>