Module: Mesa Branch: master Commit: 449af48f42a78f4fdca34bfe8f014d963dfce3ff URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=449af48f42a78f4fdca34bfe8f014d963dfce3ff
Author: Iago Toral Quiroga <[email protected]> Date: Thu Feb 11 10:29:12 2021 +0100 broadcom/compiler: add V3D_QPU_WADDR_UNIFA This only exists in V3D 4.x and aliases V3D_QPU_WADDR_TMU from V3D 3.x. Reviewed-by: Alejandro PiƱeiro <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8980> --- src/broadcom/qpu/qpu_instr.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/broadcom/qpu/qpu_instr.h b/src/broadcom/qpu/qpu_instr.h index 76329c8864b..c0374c16d1b 100644 --- a/src/broadcom/qpu/qpu_instr.h +++ b/src/broadcom/qpu/qpu_instr.h @@ -98,7 +98,8 @@ enum v3d_qpu_waddr { V3D_QPU_WADDR_NOP = 6, V3D_QPU_WADDR_TLB = 7, V3D_QPU_WADDR_TLBU = 8, - V3D_QPU_WADDR_TMU = 9, + V3D_QPU_WADDR_TMU = 9, /* V3D 3.x */ + V3D_QPU_WADDR_UNIFA = 9, /* V3D 4.x */ V3D_QPU_WADDR_TMUL = 10, V3D_QPU_WADDR_TMUD = 11, V3D_QPU_WADDR_TMUA = 12, _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
