From c4fb6b0c8110e8f9dc861ab890ad200b7b820acd Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Thu, 7 Feb 2019 17:45:51 -0600 Subject: intel/eu: Add an EOT parameter to send_indirect_[split]_message For split indirect sends we have to put the EOT parameter in the extended descriptor as well as the instruction itself so just calling brw_inst_set_eot is insufficient. Moving the EOT handling handling into the send_indirect_[split]_message helper lets us handle it properly. --- src/intel/compiler/brw_eu.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/intel/compiler/brw_eu.h') diff --git a/src/intel/compiler/brw_eu.h b/src/intel/compiler/brw_eu.h index 104cbece9b3..ac8ff69a7e0 100644 --- a/src/intel/compiler/brw_eu.h +++ b/src/intel/compiler/brw_eu.h @@ -911,7 +911,8 @@ brw_send_indirect_message(struct brw_codegen *p, struct brw_reg dst, struct brw_reg payload, struct brw_reg desc, - unsigned desc_imm); + unsigned desc_imm, + bool eot); void brw_send_indirect_split_message(struct brw_codegen *p, @@ -922,7 +923,8 @@ brw_send_indirect_split_message(struct brw_codegen *p, struct brw_reg desc, unsigned desc_imm, struct brw_reg ex_desc, - unsigned ex_desc_imm); + unsigned ex_desc_imm, + bool eot); void brw_ff_sync(struct brw_codegen *p, struct brw_reg dest, -- cgit v1.2.3