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 ABC1C4C6A for ; Mon, 14 Nov 2022 13:08:08 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2725EC433D6; Mon, 14 Nov 2022 13:08:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1668431288; bh=IaPUGVXjOs5jmYWG934kEblEBRfTSDgrZBKIiugopg4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=nhJ1PF29Iu8aEJujCSZVym7IWpsiNB6Tcv8dL63lvJONykQchb3DByMXosE1OmCCW z1yGJ7A/gmCyGAsazsNaWvsoAbH5v+lvb58Gnn2CkCsPMKrvF2WuY10n5KeXhMiFxO fXAnxdrbXTvO3AUAtSO56sJEJxjfRHHB4CEgGEkc= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Guchun Chen , Lijo Lazar , Evan Quan , Alex Deucher Subject: [PATCH 6.0 141/190] drm/amdgpu: disable BACO on special BEIGE_GOBY card Date: Mon, 14 Nov 2022 13:46:05 +0100 Message-Id: <20221114124504.958373505@linuxfoundation.org> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221114124458.806324402@linuxfoundation.org> References: <20221114124458.806324402@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Guchun Chen commit 0c85c067c9d9d7a1b2cc2e01a236d5d0d4a872b5 upstream. Still avoid intermittent failure. Signed-off-by: Guchun Chen Reviewed-by: Lijo Lazar Acked-by: Evan Quan Signed-off-by: Alex Deucher Cc: stable@vger.kernel.org Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c +++ b/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c @@ -376,7 +376,9 @@ static void sienna_cichlid_check_bxco_su if (((adev->pdev->device == 0x73A1) && (adev->pdev->revision == 0x00)) || ((adev->pdev->device == 0x73BF) && - (adev->pdev->revision == 0xCF))) + (adev->pdev->revision == 0xCF)) || + ((adev->pdev->device == 0x7422) && + (adev->pdev->revision == 0x00))) smu_baco->platform_support = false; }