* [pull] amdgpu drm-fixes-6.18
@ 2025-11-26 20:49 Alex Deucher
2025-11-28 9:48 ` Jani Nikula
0 siblings, 1 reply; 4+ messages in thread
From: Alex Deucher @ 2025-11-26 20:49 UTC (permalink / raw)
To: amd-gfx, dri-devel, airlied, simona.vetter; +Cc: Alex Deucher
Hi Dave, Simona,
Fixes for 6.18.
The following changes since commit ac3fd01e4c1efce8f2c054cdeb2ddd2fc0fb150d:
Linux 6.18-rc7 (2025-11-23 14:53:16 -0800)
are available in the Git repository at:
https://gitlab.freedesktop.org/agd5f/linux.git tags/amd-drm-fixes-6.18-2025-11-26
for you to fetch changes up to 7fa666ab07ba9e08f52f357cb8e1aad753e83ac6:
drm/amdgpu: fix cyan_skillfish2 gpu info fw handling (2025-11-26 12:34:16 -0500)
----------------------------------------------------------------
amd-drm-fixes-6.18-2025-11-26:
amdgpu:
- Unified MES fix
- HDMI fix
- Cursor fix
- Bightness fix
- EDID reading improvement
- UserQ fix
- Cyan Skillfish IP discovery fix
----------------------------------------------------------------
Alex Deucher (2):
Revert "drm/amd/display: Move setup_stream_attribute"
drm/amdgpu: fix cyan_skillfish2 gpu info fw handling
Alex Hung (1):
drm/amd/display: Check NULL before accessing
Mario Limonciello (AMD) (2):
drm/amd/display: Don't change brightness for disabled connectors
drm/amd/display: Increase EDID read retries
Michael Chen (1):
drm/amd/amdgpu: reserve vm invalidation engine for uni_mes
Prike Liang (1):
drm/amdgpu: attach tlb fence to the PTs update
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 2 ++
drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c | 3 +++
drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c | 2 +-
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 15 +++++++++++++++
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c | 8 ++++----
drivers/gpu/drm/amd/display/dc/core/dc_stream.c | 11 ++++++++---
drivers/gpu/drm/amd/display/dc/hwss/dce110/dce110_hwseq.c | 1 -
drivers/gpu/drm/amd/display/dc/hwss/dcn20/dcn20_hwseq.c | 2 --
drivers/gpu/drm/amd/display/dc/hwss/dcn401/dcn401_hwseq.c | 2 --
drivers/gpu/drm/amd/display/dc/link/link_dpms.c | 3 +++
.../drm/amd/display/dc/virtual/virtual_stream_encoder.c | 7 -------
11 files changed, 36 insertions(+), 20 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [pull] amdgpu drm-fixes-6.18
2025-11-26 20:49 [pull] amdgpu drm-fixes-6.18 Alex Deucher
@ 2025-11-28 9:48 ` Jani Nikula
0 siblings, 0 replies; 4+ messages in thread
From: Jani Nikula @ 2025-11-28 9:48 UTC (permalink / raw)
To: Alex Deucher, amd-gfx, dri-devel, airlied, simona.vetter
Cc: Alex Deucher, Borah, Chaitanya Kumar
On Wed, 26 Nov 2025, Alex Deucher <alexander.deucher@amd.com> wrote:
> Hi Dave, Simona,
>
> Fixes for 6.18.
>
> The following changes since commit ac3fd01e4c1efce8f2c054cdeb2ddd2fc0fb150d:
>
> Linux 6.18-rc7 (2025-11-23 14:53:16 -0800)
>
> are available in the Git repository at:
>
> https://gitlab.freedesktop.org/agd5f/linux.git tags/amd-drm-fixes-6.18-2025-11-26
>
> for you to fetch changes up to 7fa666ab07ba9e08f52f357cb8e1aad753e83ac6:
>
> drm/amdgpu: fix cyan_skillfish2 gpu info fw handling (2025-11-26 12:34:16 -0500)
>
> ----------------------------------------------------------------
> amd-drm-fixes-6.18-2025-11-26:
>
> amdgpu:
> - Unified MES fix
> - HDMI fix
> - Cursor fix
> - Bightness fix
> - EDID reading improvement
> - UserQ fix
> - Cyan Skillfish IP discovery fix
>
> ----------------------------------------------------------------
> Alex Deucher (2):
> Revert "drm/amd/display: Move setup_stream_attribute"
> drm/amdgpu: fix cyan_skillfish2 gpu info fw handling
This broke the drm-tip build:
../drivers/gpu/drm/amd/amdgpu/amdgpu_device.c: In function ‘amdgpu_device_parse_gpu_info_fw’:
../drivers/gpu/drm/amd/amdgpu/amdgpu_device.c:2668:31: error: ‘struct amdgpu_mman’ has no member named ‘discovery_bin’
2668 | if (adev->mman.discovery_bin)
| ^
and it's going to need a fixup.
BR,
Jani.
>
> Alex Hung (1):
> drm/amd/display: Check NULL before accessing
>
> Mario Limonciello (AMD) (2):
> drm/amd/display: Don't change brightness for disabled connectors
> drm/amd/display: Increase EDID read retries
>
> Michael Chen (1):
> drm/amd/amdgpu: reserve vm invalidation engine for uni_mes
>
> Prike Liang (1):
> drm/amdgpu: attach tlb fence to the PTs update
>
> drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 2 ++
> drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c | 3 +++
> drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c | 2 +-
> drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 15 +++++++++++++++
> drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c | 8 ++++----
> drivers/gpu/drm/amd/display/dc/core/dc_stream.c | 11 ++++++++---
> drivers/gpu/drm/amd/display/dc/hwss/dce110/dce110_hwseq.c | 1 -
> drivers/gpu/drm/amd/display/dc/hwss/dcn20/dcn20_hwseq.c | 2 --
> drivers/gpu/drm/amd/display/dc/hwss/dcn401/dcn401_hwseq.c | 2 --
> drivers/gpu/drm/amd/display/dc/link/link_dpms.c | 3 +++
> .../drm/amd/display/dc/virtual/virtual_stream_encoder.c | 7 -------
> 11 files changed, 36 insertions(+), 20 deletions(-)
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 4+ messages in thread
* [pull] amdgpu drm-fixes-6.18
@ 2025-10-22 22:20 Alex Deucher
2025-10-24 11:35 ` Simona Vetter
0 siblings, 1 reply; 4+ messages in thread
From: Alex Deucher @ 2025-10-22 22:20 UTC (permalink / raw)
To: amd-gfx, dri-devel, airlied, simona.vetter; +Cc: Alex Deucher
Hi Dave, Simona,
Fixes for 6.18.
The following changes since commit 211ddde0823f1442e4ad052a2f30f050145ccada:
Linux 6.18-rc2 (2025-10-19 15:19:16 -1000)
are available in the Git repository at:
https://gitlab.freedesktop.org/agd5f/linux.git tags/amd-drm-fixes-6.18-2025-10-22
for you to fetch changes up to 72a1eb3cf573ab957ae412f0efb0cf6ff0876234:
drm/amd/display: use GFP_NOWAIT for allocation in interrupt handler (2025-10-21 09:52:06 -0400)
----------------------------------------------------------------
amd-drm-fixes-6.18-2025-10-22:
amdgpu:
- DP MST fix
- Fix DC max link count
- DC interrupt atomic context fix
----------------------------------------------------------------
Aurabindo Pillai (1):
drm/amd/display: use GFP_NOWAIT for allocation in interrupt handler
Charlene Liu (1):
drm/amd/display: increase max link count and fix link->enc NULL pointer access
Meenakshikumar Somasundaram (1):
drm/amd/display: Fix NULL pointer dereference
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 4 ++--
drivers/gpu/drm/amd/display/dc/hwss/dcn401/dcn401_hwseq.c | 3 +++
drivers/gpu/drm/amd/display/dc/inc/hw/hw_shared.h | 8 +++++++-
drivers/gpu/drm/amd/display/dc/link/accessories/link_dp_cts.c | 3 ++-
4 files changed, 14 insertions(+), 4 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [pull] amdgpu drm-fixes-6.18
2025-10-22 22:20 Alex Deucher
@ 2025-10-24 11:35 ` Simona Vetter
0 siblings, 0 replies; 4+ messages in thread
From: Simona Vetter @ 2025-10-24 11:35 UTC (permalink / raw)
To: Alex Deucher; +Cc: amd-gfx, dri-devel, airlied, simona.vetter
On Wed, Oct 22, 2025 at 06:20:05PM -0400, Alex Deucher wrote:
> Hi Dave, Simona,
>
> Fixes for 6.18.
>
> The following changes since commit 211ddde0823f1442e4ad052a2f30f050145ccada:
>
> Linux 6.18-rc2 (2025-10-19 15:19:16 -1000)
>
> are available in the Git repository at:
>
> https://gitlab.freedesktop.org/agd5f/linux.git tags/amd-drm-fixes-6.18-2025-10-22
>
> for you to fetch changes up to 72a1eb3cf573ab957ae412f0efb0cf6ff0876234:
>
> drm/amd/display: use GFP_NOWAIT for allocation in interrupt handler (2025-10-21 09:52:06 -0400)
Pulled into drm-fixes, thanks!
-Sima
>
> ----------------------------------------------------------------
> amd-drm-fixes-6.18-2025-10-22:
>
> amdgpu:
> - DP MST fix
> - Fix DC max link count
> - DC interrupt atomic context fix
>
> ----------------------------------------------------------------
> Aurabindo Pillai (1):
> drm/amd/display: use GFP_NOWAIT for allocation in interrupt handler
>
> Charlene Liu (1):
> drm/amd/display: increase max link count and fix link->enc NULL pointer access
>
> Meenakshikumar Somasundaram (1):
> drm/amd/display: Fix NULL pointer dereference
>
> drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 4 ++--
> drivers/gpu/drm/amd/display/dc/hwss/dcn401/dcn401_hwseq.c | 3 +++
> drivers/gpu/drm/amd/display/dc/inc/hw/hw_shared.h | 8 +++++++-
> drivers/gpu/drm/amd/display/dc/link/accessories/link_dp_cts.c | 3 ++-
> 4 files changed, 14 insertions(+), 4 deletions(-)
--
Simona Vetter
Software Engineer
http://blog.ffwll.ch
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-11-28 9:49 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-26 20:49 [pull] amdgpu drm-fixes-6.18 Alex Deucher
2025-11-28 9:48 ` Jani Nikula
-- strict thread matches above, loose matches on Subject: below --
2025-10-22 22:20 Alex Deucher
2025-10-24 11:35 ` Simona Vetter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox