]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
drop a drm add/revert pair
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 9 Jan 2025 11:33:01 +0000 (12:33 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 9 Jan 2025 11:33:01 +0000 (12:33 +0100)
not really needed

queue-6.6/drm-radeon-delay-connector-detecting-when-hpd-singal.patch [deleted file]
queue-6.6/revert-drm-radeon-delay-connector-detecting-when-hpd.patch [deleted file]
queue-6.6/series

diff --git a/queue-6.6/drm-radeon-delay-connector-detecting-when-hpd-singal.patch b/queue-6.6/drm-radeon-delay-connector-detecting-when-hpd-singal.patch
deleted file mode 100644 (file)
index 509fdbd..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-From 20430c3e75a06c4736598de02404f768653d953a Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Thu, 9 May 2024 16:57:58 +0800
-Subject: drm/radeon: Delay Connector detecting when HPD singals is unstable
-
-From: Shixiong Ou <oushixiong@kylinos.cn>
-
-[ Upstream commit 949658cb9b69ab9d22a42a662b2fdc7085689ed8 ]
-
-In some causes, HPD signals will jitter when plugging in
-or unplugging HDMI.
-
-Rescheduling the hotplug work for a second when EDID may still be
-readable but HDP is disconnected, and fixes this issue.
-
-Signed-off-by: Shixiong Ou <oushixiong@kylinos.cn>
-Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-Stable-dep-of: 979bfe291b5b ("Revert "drm/radeon: Delay Connector detecting when HPD singals is unstable"")
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/gpu/drm/radeon/radeon_connectors.c | 10 ++++++++++
- 1 file changed, 10 insertions(+)
-
-diff --git a/drivers/gpu/drm/radeon/radeon_connectors.c b/drivers/gpu/drm/radeon/radeon_connectors.c
-index b84b58926106..cf0114ca59a4 100644
---- a/drivers/gpu/drm/radeon/radeon_connectors.c
-+++ b/drivers/gpu/drm/radeon/radeon_connectors.c
-@@ -1267,6 +1267,16 @@ radeon_dvi_detect(struct drm_connector *connector, bool force)
-                       goto exit;
-               }
-       }
-+
-+      if (dret && radeon_connector->hpd.hpd != RADEON_HPD_NONE &&
-+          !radeon_hpd_sense(rdev, radeon_connector->hpd.hpd) &&
-+          connector->connector_type == DRM_MODE_CONNECTOR_HDMIA) {
-+              DRM_DEBUG_KMS("EDID is readable when HPD disconnected\n");
-+              schedule_delayed_work(&rdev->hotplug_work, msecs_to_jiffies(1000));
-+              ret = connector_status_disconnected;
-+              goto exit;
-+      }
-+
-       if (dret) {
-               radeon_connector->detected_by_load = false;
-               radeon_connector_free_edid(connector);
--- 
-2.39.5
-
diff --git a/queue-6.6/revert-drm-radeon-delay-connector-detecting-when-hpd.patch b/queue-6.6/revert-drm-radeon-delay-connector-detecting-when-hpd.patch
deleted file mode 100644 (file)
index 8b3929b..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-From ed888cd3d1240ac7f5a6a6324f49f689967a9633 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Thu, 14 Nov 2024 16:23:45 -0500
-Subject: Revert "drm/radeon: Delay Connector detecting when HPD singals is
- unstable"
-
-From: Alex Deucher <alexander.deucher@amd.com>
-
-[ Upstream commit 979bfe291b5b30a9132c2fd433247e677b24c6aa ]
-
-This reverts commit 949658cb9b69ab9d22a42a662b2fdc7085689ed8.
-
-This causes a blank screen on boot.
-
-Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/3696
-Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-Cc: Shixiong Ou <oushixiong@kylinos.cn>
-Cc: stable@vger.kernel.org
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- drivers/gpu/drm/radeon/radeon_connectors.c | 10 ----------
- 1 file changed, 10 deletions(-)
-
-diff --git a/drivers/gpu/drm/radeon/radeon_connectors.c b/drivers/gpu/drm/radeon/radeon_connectors.c
-index cf0114ca59a4..b84b58926106 100644
---- a/drivers/gpu/drm/radeon/radeon_connectors.c
-+++ b/drivers/gpu/drm/radeon/radeon_connectors.c
-@@ -1267,16 +1267,6 @@ radeon_dvi_detect(struct drm_connector *connector, bool force)
-                       goto exit;
-               }
-       }
--
--      if (dret && radeon_connector->hpd.hpd != RADEON_HPD_NONE &&
--          !radeon_hpd_sense(rdev, radeon_connector->hpd.hpd) &&
--          connector->connector_type == DRM_MODE_CONNECTOR_HDMIA) {
--              DRM_DEBUG_KMS("EDID is readable when HPD disconnected\n");
--              schedule_delayed_work(&rdev->hotplug_work, msecs_to_jiffies(1000));
--              ret = connector_status_disconnected;
--              goto exit;
--      }
--
-       if (dret) {
-               radeon_connector->detected_by_load = false;
-               radeon_connector_free_edid(connector);
--- 
-2.39.5
-
index ed0d742907adcc795329eff85e746591cad5373b..d7e7e9e7638dfe767a176cea5530637983e9eb15 100644 (file)
@@ -11,8 +11,6 @@ smb-client-stop-flooding-dmesg-in-smb2_calc_signatur.patch
 smb-client-fix-use-after-free-of-signing-key.patch
 usb-dwc3-gadget-add-missing-check-for-single-port-ra.patch
 sched-initialize-idle-tasks-only-once.patch
-drm-radeon-delay-connector-detecting-when-hpd-singal.patch
-revert-drm-radeon-delay-connector-detecting-when-hpd.patch
 rust-relax-most-deny-level-lints-to-warnings.patch
 rust-allow-clippy-needless_lifetimes.patch
 numa-optimize-detection-of-memory-with-no-node-id-as.patch