v3d: instructions with the ldtlb and ldtlbu signals are tlb instructions

Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
Iago Toral Quiroga 2019-07-03 12:02:11 +02:00
parent 83a66e10de
commit 4793e2c888

View file

@ -128,6 +128,9 @@ add_write_dep(struct schedule_state *state,
static bool
qpu_inst_is_tlb(const struct v3d_qpu_instr *inst)
{
if (inst->sig.ldtlb || inst->sig.ldtlbu)
return true;
if (inst->type != V3D_QPU_INSTR_TYPE_ALU)
return false;