iris: Better handle decoder base addresses
authorKenneth Graunke <kenneth@whitecape.org>
Fri, 12 Jul 2019 20:52:35 +0000 (13:52 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Mon, 15 Jul 2019 18:49:19 +0000 (11:49 -0700)
commit5e76c9992317f20f89fafe3aab03026ca550766e
treeecdf3a9a212ebf2db1f1aff77dca985ae1bcb8ec
parented12be1b8fb2fddafdbc9abb4614697a660d3d6c
iris: Better handle decoder base addresses

It can be useful to call the decoder on a single batch.  But, that batch
may not contain STATE_BASE_ADDRESS, at which point the decoder will have
no idea how to find any buffers.  We can initialize the two static bases
at the beginning of time, so it has them even if it never sees SBA.

Surface base address changes dynamically, possibly in the middle of a
batch.  So we update it at the start of each batch, making it always
start at the value we inherited from the previous one.  SBA commands
inside the batch can update it to a proper value.

Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
src/gallium/drivers/iris/iris_batch.c