From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id DE55E228CB5; Mon, 23 Jun 2025 22:11:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750716711; cv=none; b=pcrHFM0tvT+H3X+qK5NnGjWL+czUFGiQBfmZlz6283/lBm073oxuNTwLiNq07sltoPtTvn7fjSD9NNn4HwQBIs9qqztdUfQ+FrgM0hYHOhLDXWAx3JSO6iCYyLBrlvOTpuAEsC4l247+33moPlm2QsUgC1bzzFOg6C494JkhN7w= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750716711; c=relaxed/simple; bh=ltL6AN9XZC2RfwcCmt0zh0sPqWzk5G0QWQ0IasuIeLg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=biqL+nYiyPx+O9Wz5HzrMJbyWxyGKdIuFgoASgoqqcluNYCIy6Oc1J35/kCfj1JUTfomG0qYIYdzThTZPdLHK9NKRhGfGxjet6WBmIQTHYZdlnCOv0hyl+Se/rtGxqGcguU8yTV8QlTBL2qvKbkQgLo/zImFmf1VsnDnHMRQWpo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=AwOiVc2x; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="AwOiVc2x" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 74815C4CEF1; Mon, 23 Jun 2025 22:11:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1750716710; bh=ltL6AN9XZC2RfwcCmt0zh0sPqWzk5G0QWQ0IasuIeLg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=AwOiVc2x5AlBw6azP0wIMLkvCjbGlm12dQtJCZuQ5ilg1Lfs2Ss5rtQFtASeyoXrD MXarwWheBuT7igNlwrdu+qYrsWN6PFxzrEsr5+455o9Dx2r7YBz613rFDO76uJA/s+ h2PrB3ZRYMFhtAADfYBZ2FB338E4MBH923e+bJYQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Matthew Auld , Vinay Belgaumkar , Lucas De Marchi , =?UTF-8?q?Thomas=20Hellstr=C3=B6m?= , Sasha Levin Subject: [PATCH 6.15 549/592] drm/xe/bmg: Update Wa_16023588340 Date: Mon, 23 Jun 2025 15:08:27 +0200 Message-ID: <20250623130713.502230217@linuxfoundation.org> X-Mailer: git-send-email 2.50.0 In-Reply-To: <20250623130700.210182694@linuxfoundation.org> References: <20250623130700.210182694@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Vinay Belgaumkar [ Upstream commit 16c1241b08751a67cd7a0221ea9f82b0b02806f4 ] This allows for additional L2 caching modes. Fixes: 01570b446939 ("drm/xe/bmg: implement Wa_16023588340") Cc: Matthew Auld Reviewed-by: Matthew Auld Signed-off-by: Vinay Belgaumkar Link: https://lore.kernel.org/r/20250612-wa-14022085890-v4-2-94ba5dcc1e30@intel.com Signed-off-by: Lucas De Marchi (cherry picked from commit 6ab42fa03d4c88a0ddf5e56e62794853b198e7bf) Signed-off-by: Thomas Hellström Signed-off-by: Sasha Levin --- drivers/gpu/drm/xe/xe_gt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/xe/xe_gt.c b/drivers/gpu/drm/xe/xe_gt.c index 66198cf2662c5..4bad8894fa12c 100644 --- a/drivers/gpu/drm/xe/xe_gt.c +++ b/drivers/gpu/drm/xe/xe_gt.c @@ -116,7 +116,7 @@ static void xe_gt_enable_host_l2_vram(struct xe_gt *gt) xe_gt_mcr_multicast_write(gt, XE2_GAMREQSTRM_CTRL, reg); } - xe_gt_mcr_multicast_write(gt, XEHPC_L3CLOS_MASK(3), 0x3); + xe_gt_mcr_multicast_write(gt, XEHPC_L3CLOS_MASK(3), 0xF); xe_force_wake_put(gt_to_fw(gt), fw_ref); } -- 2.39.5