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 478974C6A for ; Mon, 14 Nov 2022 13:00:01 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B81E4C433D6; Mon, 14 Nov 2022 13:00:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1668430801; bh=EKK+cQkENJ4wpzTdHj2dvsQi9RXLghP6wWj40bHFOjs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=GwzLwD7n7miF6zED3Qy4dNNLF8tfonUIx/AjnjGJVfVm3MMQKckUjjRlyZUuLOt7M o4vHOpYllFe6+FELWQbzP6YPZAHYfmwIzOWcFGs2LAW6l79Fd1ZRbfOT3D5fzImMlC JfYG7hKACk+gvmIPmPZCP/uO6QtXzy6NtEHCLhGQ= 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 5.15 101/131] drm/amdgpu: disable BACO on special BEIGE_GOBY card Date: Mon, 14 Nov 2022 13:46:10 +0100 Message-Id: <20221114124452.989878848@linuxfoundation.org> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221114124448.729235104@linuxfoundation.org> References: <20221114124448.729235104@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 @@ -366,7 +366,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; }