From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.88]) by gabe.freedesktop.org (Postfix) with ESMTPS id 2AAC810E231 for ; Mon, 16 Oct 2023 18:09:08 +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: Mon, 16 Oct 2023 23:37:15 +0530 Message-Id: <20231016180716.8513-3-sai.gowtham.ch@intel.com> In-Reply-To: <20231016180716.8513-1-sai.gowtham.ch@intel.com> References: <20231016180716.8513-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 --- 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