* [git pull] drm fixes for 6.5-rc7
@ 2023-08-17 21:36 Dave Airlie
2023-08-18 5:18 ` pr-tracker-bot
0 siblings, 1 reply; 2+ messages in thread
From: Dave Airlie @ 2023-08-17 21:36 UTC (permalink / raw)
To: Linus Torvalds, Daniel Vetter; +Cc: dri-devel, LKML
Hi Linus,
Regular enough week, mostly the usual amdgpu and i915 fixes. Then
qaic, nouveau, qxl and a revert for an EDID patch that had some side
effects, along with a couple of panel fixes.
Dave.
drm-fixes-2023-08-18-1:
drm fixes for 6.5-rc7
edid:
- revert mode parsing fix that had side effects.
i915:
- Fix the flow for ignoring GuC SLPC efficient frequency selection
- Fix SDVO panel_type initialization
- Fix display probe for IVB Q and IVB D GT2 server
nouveau:
- fix use-after-free in connector code
qaic:
- integer overflow check fix
- fix slicing memory leak
panel:
- fix JDI LT070ME05000 probing
- fix AUO G121EAN01 timings
amdgpu:
- SMU 13.x fixes
- Fix mcbp parameter for gfx9
- SMU 11.x fixes
- Temporary fix for large numbers of XCP partitions
- S0ix fixes
- DCN 2.0 fix
qxl:
- fix use after free race in dumb object allocation
The following changes since commit 2ccdd1b13c591d306f0401d98dedc4bdcd02b421:
Linux 6.5-rc6 (2023-08-13 11:29:55 -0700)
are available in the Git repository at:
git://anongit.freedesktop.org/drm/drm tags/drm-fixes-2023-08-18-1
for you to fetch changes up to c611589b4259ed63b9b77be6872b1ce07ec0ac16:
drm/qxl: fix UAF on handle creation (2023-08-18 06:57:38 +1000)
----------------------------------------------------------------
drm fixes for 6.5-rc7
edid:
- revert mode parsing fix that had side effects.
i915:
- Fix the flow for ignoring GuC SLPC efficient frequency selection
- Fix SDVO panel_type initialization
- Fix display probe for IVB Q and IVB D GT2 server
nouveau:
- fix use-after-free in connector code
qaic:
- integer overflow check fix
- fix slicing memory leak
panel:
- fix JDI LT070ME05000 probing
- fix AUO G121EAN01 timings
amdgpu:
- SMU 13.x fixes
- Fix mcbp parameter for gfx9
- SMU 11.x fixes
- Temporary fix for large numbers of XCP partitions
- S0ix fixes
- DCN 2.0 fix
qxl:
- fix use after free race in dumb object allocation
----------------------------------------------------------------
Alex Deucher (1):
Revert "Revert "drm/amdgpu/display: change pipe policy for DCN 2.0""
Asad Kamal (1):
drm/amd/pm: Update pci link width for smu v13.0.6
Dan Carpenter (1):
accel/qaic: Clean up integer overflow checking in map_user_pages()
Dave Airlie (3):
Merge tag 'drm-intel-fixes-2023-08-17' of
git://anongit.freedesktop.org/drm/drm-intel into drm-fixes
Merge tag 'drm-misc-fixes-2023-08-17' of
git://anongit.freedesktop.org/drm/drm-misc into drm-fixes
Merge tag 'amd-drm-fixes-6.5-2023-08-16' of
https://gitlab.freedesktop.org/agd5f/linux into drm-fixes
David Heidelberg (1):
drm/panel: JDI LT070ME05000 simplify with dev_err_probe()
James Zhu (1):
drm/amdgpu: skip xcp drm device allocation when out of drm resource
Jani Nikula (3):
drm/i915/sdvo: fix panel_type initialization
drm/i915: fix display probe for IVB Q and IVB D GT2 server
Revert "drm/edid: Fix csync detailed mode parsing"
Jiadong Zhu (1):
drm/amdgpu: disable mcbp if parameter zero is set
Karol Herbst (1):
drm/nouveau/disp: fix use-after-free in error handling of
nouveau_connector_create
Kenneth Feng (1):
drm/amd/pm: disallow the fan setting if there is no fan on smu 13.0.0
Lijo Lazar (1):
drm/amd/pm: Fix temperature unit of SMU v13.0.6
Luca Ceresoli (1):
drm/panel: simple: Fix AUO G121EAN01 panel timings according to the docs
Mario Limonciello (1):
drm/amd: flush any delayed gfxoff on suspend entry
Pranjal Ramajor Asha Kanojiya (1):
accel/qaic: Fix slicing memory leak
Tim Huang (1):
drm/amdgpu: skip fence GFX interrupts disable/enable for S0ix
Umio Yasuno (1):
drm/amdgpu/pm: fix throttle_status for other than MP1 11.0.7
Vinay Belgaumkar (1):
drm/i915/guc/slpc: Restore efficient freq earlier
Wander Lairson Costa (1):
drm/qxl: fix UAF on handle creation
drivers/accel/qaic/qaic_control.c | 26 +++++++++-----
drivers/accel/qaic/qaic_data.c | 1 +
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 10 +++---
drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c | 41 ++++++++++++++++++++--
drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c | 9 +----
drivers/gpu/drm/amd/amdgpu/amdgpu_ring_mux.c | 2 +-
drivers/gpu/drm/amd/amdgpu/amdgpu_xcp.c | 13 ++++++-
drivers/gpu/drm/amd/amdkfd/kfd_topology.c | 9 ++++-
.../gpu/drm/amd/display/dc/dcn20/dcn20_resource.c | 2 +-
.../drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c | 14 ++++----
.../gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c | 4 +++
.../gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_6_ppt.c | 19 +++++++---
drivers/gpu/drm/drm_edid.c | 29 +++++----------
.../gpu/drm/i915/display/intel_display_device.c | 24 +++++++++++--
drivers/gpu/drm/i915/display/intel_sdvo.c | 2 +-
drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c | 22 +++++++-----
drivers/gpu/drm/nouveau/nouveau_connector.c | 11 +++---
drivers/gpu/drm/panel/panel-jdi-lt070me05000.c | 36 ++++++++-----------
drivers/gpu/drm/panel/panel-simple.c | 24 ++++++-------
drivers/gpu/drm/qxl/qxl_drv.h | 2 +-
drivers/gpu/drm/qxl/qxl_dumb.c | 5 ++-
drivers/gpu/drm/qxl/qxl_gem.c | 25 ++++++++-----
drivers/gpu/drm/qxl/qxl_ioctl.c | 6 ++--
include/drm/drm_edid.h | 12 ++-----
24 files changed, 216 insertions(+), 132 deletions(-)
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [git pull] drm fixes for 6.5-rc7
2023-08-17 21:36 [git pull] drm fixes for 6.5-rc7 Dave Airlie
@ 2023-08-18 5:18 ` pr-tracker-bot
0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2023-08-18 5:18 UTC (permalink / raw)
To: Dave Airlie; +Cc: Linus Torvalds, Daniel Vetter, LKML, dri-devel
The pull request you sent on Fri, 18 Aug 2023 07:36:16 +1000:
> git://anongit.freedesktop.org/drm/drm tags/drm-fixes-2023-08-18-1
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/1ada9c07407d66679967fe5c2cbb7eda2e0addbf
Thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-08-18 5:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-17 21:36 [git pull] drm fixes for 6.5-rc7 Dave Airlie
2023-08-18 5:18 ` pr-tracker-bot
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®