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 39F5726A1B6; Tue, 11 Nov 2025 01:36:33 +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=1762824994; cv=none; b=ghJ0LVkfcfYLHH2Xbg8VntvtwxbIqJJ+mvH3njgsQ6r1+fttFAMVSgOHgHu5Yojk5GqJqxBfmROWHZ/Dk7UyuGImJrAjvnYEm3H/Poi5YekumDJs5RLGm6Jl1AmtVdcpzRa8Ryt51EFV4vygj3lEdY68GC+ojc/+KEtUIAPAoos= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762824994; c=relaxed/simple; bh=BdAAq4TkgPI1oiWc11kKNtNgmB5dSbho9kcfmUH5YhU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=m3qAabI56oqW+7ki/nwfDW0wL/iFsop37iZRFiFKwUjlyFTHP5XQFEJCaSeKfwIXvEjfSSOCh4ayjTGxNsuBhITh5oxZX9zWHWMhB5qmkvIVeS8f2xXD8YNmCaKQ8OIDSd2GhmkBBDYJ0supO7L9h2eOR5flmHhyIbBFNcWssI4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=HYpkKxkR; 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="HYpkKxkR" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 80AD3C16AAE; Tue, 11 Nov 2025 01:36:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1762824993; bh=BdAAq4TkgPI1oiWc11kKNtNgmB5dSbho9kcfmUH5YhU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HYpkKxkRPypRNBxaRLFulcnKzMtWWCb0wjUJD0A+A/+YnIpD6jH+fNPlVhx4AHrvN vsRK+RD/KvrpPvFTu4XpMIfe81f8yZVwHJOzbSOzYgENYfXJMGoz7GTDKQgFN6LBQh NESpcP63Q1QUJ5A/uCSS2vt8K//u5/nr61dGLU9U= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, =?UTF-8?q?Timur=20Krist=C3=B3f?= , Harry Wentland , Alex Hung , Ray Wu , Daniel Wheeler , Alex Deucher Subject: [PATCH 6.12 564/565] drm/amd/display: Fix black screen with HDMI outputs Date: Tue, 11 Nov 2025 09:47:00 +0900 Message-ID: <20251111004539.710298652@linuxfoundation.org> X-Mailer: git-send-email 2.51.2 In-Reply-To: <20251111004526.816196597@linuxfoundation.org> References: <20251111004526.816196597@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore 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 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Alex Hung commit fdc93beeadc2439e5e85d056a8fe681dcced09da upstream. [Why & How] This fixes the black screen issue on certain APUs with HDMI, accompanied by the following messages: amdgpu 0000:c4:00.0: amdgpu: [drm] Failed to setup vendor info frame on connector DP-1: -22 amdgpu 0000:c4:00.0: [drm] Cannot find any crtc or sizes [drm] Cannot find any crtc or sizes Fixes: 489f0f600ce2 ("drm/amd/display: Fix DVI-D/HDMI adapters") Suggested-by: Timur Kristóf Reviewed-by: Harry Wentland Signed-off-by: Alex Hung Signed-off-by: Ray Wu Tested-by: Daniel Wheeler Signed-off-by: Alex Deucher (cherry picked from commit 678c901443a6d2e909e3b51331a20f9d8f84ce82) Signed-off-by: Greg Kroah-Hartman --- drivers/gpu/drm/amd/display/dc/link/link_detection.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/gpu/drm/amd/display/dc/link/link_detection.c +++ b/drivers/gpu/drm/amd/display/dc/link/link_detection.c @@ -1133,6 +1133,7 @@ static bool detect_link_and_local_sink(s !sink->edid_caps.edid_hdmi) sink->sink_signal = SIGNAL_TYPE_DVI_SINGLE_LINK; else if (dc_is_dvi_signal(sink->sink_signal) && + dc_is_dvi_signal(link->connector_signal) && aud_support->hdmi_audio_native && sink->edid_caps.edid_hdmi) sink->sink_signal = SIGNAL_TYPE_HDMI_TYPE_A;