pan/genxml: correct size of field

The field here is 8 bit wide according to the spec. However, because all
values that takes more than two bits are reserved, this doesn't actually
lead to any misbehavior. But let's make this consistent with the spec
and newer XML files.

Reviewed-by: Lars-Ivar Hesselberg Simonsen <lars-ivar.simonsen@arm.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41721>
This commit is contained in:
Erik Faye-Lund 2026-05-21 11:51:37 +02:00 committed by Marge Bot
parent eea7834ddb
commit 9b936e649b

View file

@ -775,7 +775,7 @@
<!-- Iter status is written at [Address + 4], 0 == NO_FAULT, 1 == FAULT -->
<field name="Offset" size="16" start="0" type="int"/>
<field name="Wait mask" size="16" start="16" type="hex"/>
<field name="State" size="2" start="32" type="CS State"/>
<field name="State" size="8" start="32" type="CS State"/>
<field name="Address" size="8" start="40" type="uint"/>
<field name="Signal slot" size="4" start="48" type="hex"/>
<field name="Opcode" size="8" start="56" type="CS Opcode" default="STORE_STATE"/>