From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.43]) by gabe.freedesktop.org (Postfix) with ESMTPS id ADC2D10E2FE for ; Tue, 17 Oct 2023 14:07:21 +0000 (UTC) From: sai.gowtham.ch@intel.com To: igt-dev@lists.freedesktop.org, zbigniew.kempczynski@intel.com, karolina.stolarek@intel.com, sai.gowtham.ch@intel.com Date: Tue, 17 Oct 2023 19:35:29 +0530 Message-Id: <20231017140530.547-3-sai.gowtham.ch@intel.com> In-Reply-To: <20231017140530.547-1-sai.gowtham.ch@intel.com> References: <20231017140530.547-1-sai.gowtham.ch@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t 2/3] lib/intel_cmds_info: Add M_MATRIX in mem_copy as it is supported for PVC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: From: Sai Gowtham Ch Adding M_MATRIX copy type in MEM_COPY as it is supported for PVC Cc: Zbigniew Kempczyński Signed-off-by: Sai Gowtham Ch Reviewed-by: Zbigniew Kempczyński --- lib/intel_cmds_info.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/intel_cmds_info.c b/lib/intel_cmds_info.c index 1bf13fdc1..2e51ec081 100644 --- a/lib/intel_cmds_info.c +++ b/lib/intel_cmds_info.c @@ -84,7 +84,8 @@ static const struct blt_cmd_info static const struct blt_cmd_info pvc_mem_copy = BLT_INFO(MEM_COPY, - BIT(M_LINEAR)); + BIT(M_LINEAR) | + BIT(M_MATRIX)); static const struct blt_cmd_info pvc_mem_set = BLT_INFO(MEM_SET, -- 2.39.1