From: "Christian König" <christian.koenig@amd.com>
To: Rosen Penev <rosenp@gmail.com>, stable@vger.kernel.org
Cc: "Alex Deucher" <alexander.deucher@amd.com>,
"Pan, Xinhui" <Xinhui.Pan@amd.com>,
"David Airlie" <airlied@gmail.com>,
"Daniel Vetter" <daniel@ffwll.ch>,
"Harry Wentland" <harry.wentland@amd.com>,
"Leo Li" <sunpeng.li@amd.com>,
"Rodrigo Siqueira" <Rodrigo.Siqueira@amd.com>,
"Evan Quan" <evan.quan@amd.com>,
"Mario Limonciello" <mario.limonciello@amd.com>,
"Sasha Levin" <sashal@kernel.org>,
"Lijo Lazar" <lijo.lazar@amd.com>, "Ma Jun" <Jun.Ma2@amd.com>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
"Srinivasan Shanmugam" <srinivasan.shanmugam@amd.com>,
"Mario Limonciello (AMD)" <superm1@kernel.org>,
"Zhigang Luo" <Zhigang.Luo@amd.com>,
"Bert Karwatzki" <spasswolf@web.de>, "Ray Wu" <ray.wu@amd.com>,
"Wayne Lin" <Wayne.Lin@amd.com>, "Roman Li" <Roman.Li@amd.com>,
"Hersen Wu" <hersenxs.wu@amd.com>,
"Timur Kristóf" <timur.kristof@gmail.com>,
"Alex Hung" <alex.hung@amd.com>, decce6 <decce6@proton.me>,
"Wentao Liang" <vulab@iscas.ac.cn>,
"open list:RADEON and AMDGPU DRM DRIVERS"
<amd-gfx@lists.freedesktop.org>,
"open list:DRM DRIVERS" <dri-devel@lists.freedesktop.org>,
"open list" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCHv3 for 6.1 0/4] amdgpu: fix panic on old GPUs
Date: Mon, 23 Mar 2026 10:29:04 +0100 [thread overview]
Message-ID: <0c0fcc34-a3b5-4c9a-9095-854eb6475abc@amd.com> (raw)
In-Reply-To: <20260321054453.19683-1-rosenp@gmail.com>
On 3/21/26 06:44, Rosen Penev wrote:
> Because of incomplete backports to stable kernels, DC ended up breaking
> on older GCN 1 GPUs. This patchset adds the missing upstream commits to
> at least fix the panic/black screen on boot.
>
> They are applicable to 6.12, 6.6, and 6.1 as those are the currently
> supported kernels that 7009e3af0474aca5f64262b3c72fb6e23b232f9b got
> backported to.
>
> 6.1 needs two extra backports for these two commits to be cherry-picked
> cleanly. Those are
>
> 96ce96f8773da4814622fd97e5226915a2c30706
> d09ef243035b75a6d403ebfeb7e87fa20d7e25c6
Acked-by: Christian König <christian.koenig@amd.com> for backporting this series and those two additional patches.
Regards,
Christian.
>
> v3: Add those commits to this series and sign them off.
> v2: Add Signed-off-by.
>
> Alex Deucher (2):
> drm/amdgpu: use proper DC check in amdgpu_display_supported_domains()
> drm/amdgpu: clarify DC checks
>
> Timur Kristóf (2):
> drm/amd/display: Add pixel_clock to amd_pp_display_configuration
> drm/amd/pm: Use pm_display_cfg in legacy DPM (v2)
>
> drivers/gpu/drm/amd/amdgpu/amdgpu.h | 1 +
> drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c | 2 +-
> drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c | 2 +-
> drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 32 ++++-----
> drivers/gpu/drm/amd/amdgpu/amdgpu_display.c | 4 +-
> drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 2 +-
> .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 1 +
> .../amd/display/amdgpu_dm/amdgpu_dm_pp_smu.c | 1 +
> .../dc/clk_mgr/dce110/dce110_clk_mgr.c | 2 +-
> .../drm/amd/display/dc/dm_services_types.h | 2 +-
> drivers/gpu/drm/amd/include/dm_pp_interface.h | 1 +
> drivers/gpu/drm/amd/pm/amdgpu_dpm_internal.c | 67 +++++++++++++++++++
> .../gpu/drm/amd/pm/inc/amdgpu_dpm_internal.h | 2 +
> drivers/gpu/drm/amd/pm/legacy-dpm/kv_dpm.c | 4 +-
> .../gpu/drm/amd/pm/legacy-dpm/legacy_dpm.c | 6 +-
> drivers/gpu/drm/amd/pm/legacy-dpm/si_dpm.c | 65 ++++++------------
> .../gpu/drm/amd/pm/powerplay/amd_powerplay.c | 13 +---
> 17 files changed, 126 insertions(+), 81 deletions(-)
>
> --
> 2.53.0
>
prev parent reply other threads:[~2026-03-23 9:29 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-21 5:44 Rosen Penev
2026-03-21 5:44 ` [PATCHv3 for 6.1 1/4] drm/amdgpu: use proper DC check in amdgpu_display_supported_domains() Rosen Penev
2026-03-21 5:44 ` [PATCHv3 for 6.1 2/4] drm/amdgpu: clarify DC checks Rosen Penev
2026-03-21 5:44 ` [PATCHv3 for 6.1 3/4] drm/amd/display: Add pixel_clock to amd_pp_display_configuration Rosen Penev
2026-03-21 5:44 ` [PATCHv3 for 6.1 4/4] drm/amd/pm: Use pm_display_cfg in legacy DPM (v2) Rosen Penev
2026-03-23 9:29 ` Christian König [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=0c0fcc34-a3b5-4c9a-9095-854eb6475abc@amd.com \
--to=christian.koenig@amd.com \
--cc=Jun.Ma2@amd.com \
--cc=Rodrigo.Siqueira@amd.com \
--cc=Roman.Li@amd.com \
--cc=Wayne.Lin@amd.com \
--cc=Xinhui.Pan@amd.com \
--cc=Zhigang.Luo@amd.com \
--cc=airlied@gmail.com \
--cc=alex.hung@amd.com \
--cc=alexander.deucher@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=daniel@ffwll.ch \
--cc=decce6@proton.me \
--cc=dri-devel@lists.freedesktop.org \
--cc=evan.quan@amd.com \
--cc=gregkh@linuxfoundation.org \
--cc=harry.wentland@amd.com \
--cc=hersenxs.wu@amd.com \
--cc=lijo.lazar@amd.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mario.limonciello@amd.com \
--cc=ray.wu@amd.com \
--cc=rosenp@gmail.com \
--cc=sashal@kernel.org \
--cc=spasswolf@web.de \
--cc=srinivasan.shanmugam@amd.com \
--cc=stable@vger.kernel.org \
--cc=sunpeng.li@amd.com \
--cc=superm1@kernel.org \
--cc=timur.kristof@gmail.com \
--cc=vulab@iscas.ac.cn \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®