[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAPM=9tyyyQ-0QkKquLX4q=7=pjGeRxhhP=z7rfLjEbX7mSrh5A@mail.gmail.com>
Date: Fri, 11 Jun 2021 13:41:34 +1000
From: Dave Airlie <airlied@...il.com>
To: Linus Torvalds <torvalds@...ux-foundation.org>,
Daniel Vetter <daniel.vetter@...ll.ch>
Cc: dri-devel <dri-devel@...ts.freedesktop.org>,
LKML <linux-kernel@...r.kernel.org>
Subject: [git pull] drm fixes for 5.13-rc6
Hey Linus,
Another week of fixes, nothing too crazy, but a few all over the
place, two locking fixes in the core/ttm area, a couple of small
driver fixes (radeon, sun4i, mcde, vc4). Then msm and amdgpu have a
set of fixes each, mostly for smaller things, though the msm has a DSI
fix for a black screen. I haven't seen any intel fixes next week so
they may have a few that may or may not wait for next week.
Dave.
drm-fixes-2021-06-11:
drm fixes for 5.13-rc6
drm:
- auth locking fix
ttm:
- locking fix
amdgpu:
- Use kvzmalloc in amdgu_bo_create
- Use drm_dbg_kms for reporting failure to get a GEM FB
- Fix some register offsets for Sienna Cichlid
- Fix fall-through warning
radeon:
- memcpy_to/from_io fixes
msm:
- NULL ptr deref fix
- CP_PROTECT reg programming fix
- incorrect register shift fix
- DSI blank screen fix
sun4i:
- hdmi output probing fix
mcde:
- DSI pipeline calc fix
vc4:
- out of bounds fix
The following changes since commit 614124bea77e452aa6df7a8714e8bc820b489922:
Linux 5.13-rc5 (2021-06-06 15:47:27 -0700)
are available in the Git repository at:
git://anongit.freedesktop.org/drm/drm tags/drm-fixes-2021-06-11
for you to fetch changes up to 7de5c0d70c779454785dd2431707df5b841eaeaf:
Merge tag 'amd-drm-fixes-5.13-2021-06-09' of
https://gitlab.freedesktop.org/agd5f/linux into drm-fixes (2021-06-11
11:17:10 +1000)
----------------------------------------------------------------
drm fixes for 5.13-rc6
drm:
- auth locking fix
ttm:
- locking fix
amdgpu:
- Use kvzmalloc in amdgu_bo_create
- Use drm_dbg_kms for reporting failure to get a GEM FB
- Fix some register offsets for Sienna Cichlid
- Fix fall-through warning
radeon:
- memcpy_to/from_io fixes
msm:
- NULL ptr deref fix
- CP_PROTECT reg programming fix
- incorrect register shift fix
- DSI blank screen fix
sun4i:
- hdmi output probing fix
mcde:
- DSI pipeline calc fix
vc4:
- out of bounds fix
----------------------------------------------------------------
Alexey Minnekhanov (1):
drm/msm: Init mm_list before accessing it for use_vram path
Changfeng (1):
drm/amdgpu: switch kzalloc to kvzalloc in amdgpu_bo_create
Chen Li (1):
radeon: use memcpy_to/fromio for UVD fw upload
Christian König (1):
drm/ttm: fix deref of bo->ttm without holding the lock v2
Dave Airlie (3):
Merge tag 'drm-msm-fixes-2021-06-10' of
https://gitlab.freedesktop.org/drm/msm into drm-fixes
Merge tag 'drm-misc-fixes-2021-06-10' of
git://anongit.freedesktop.org/drm/drm-misc into drm-fixes
Merge tag 'amd-drm-fixes-5.13-2021-06-09' of
https://gitlab.freedesktop.org/agd5f/linux into drm-fixes
Desmond Cheong Zhi Xi (2):
drm: Fix use-after-free read in drm_getunique()
drm: Lock pointer access in drm_master_release()
Gustavo A. R. Silva (1):
drm/amd/pm: Fix fall-through warning for Clang
Jonathan Marek (3):
drm/msm/a6xx: update/fix CP_PROTECT initialization
drm/msm/a6xx: fix incorrectly set uavflagprd_inv field for A650
drm/msm/a6xx: avoid shadow NULL reference in failure path
Linus Walleij (1):
drm/mcde: Fix off by 10^3 in calculation
Mark Rutland (1):
drm/vc4: fix vc4_atomic_commit_tail() logic
Michel Dänzer (1):
drm/amdgpu: Use drm_dbg_kms for reporting failure to get a GEM FB
Rohit Khaire (1):
drm/amdgpu: Fix incorrect register offsets for Sienna Cichlid
Saravana Kannan (1):
drm/sun4i: dw-hdmi: Make HDMI PHY into a platform device
Stephen Boyd (1):
drm/msm/dsi: Stash away calculated vco frequency on recalc
drivers/gpu/drm/amd/amdgpu/amdgpu_display.c | 4 +-
drivers/gpu/drm/amd/amdgpu/amdgpu_object.c | 4 +-
drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c | 26 +++-
.../gpu/drm/amd/pm/powerplay/hwmgr/smu10_hwmgr.c | 1 +
drivers/gpu/drm/drm_auth.c | 3 +-
drivers/gpu/drm/drm_ioctl.c | 9 +-
drivers/gpu/drm/mcde/mcde_dsi.c | 2 +-
drivers/gpu/drm/msm/adreno/a6xx_gpu.c | 155 +++++++++++++++------
drivers/gpu/drm/msm/adreno/a6xx_gpu.h | 2 +-
drivers/gpu/drm/msm/dsi/phy/dsi_phy_10nm.c | 1 +
drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c | 1 +
drivers/gpu/drm/msm/msm_gem.c | 7 +
drivers/gpu/drm/radeon/radeon_uvd.c | 4 +-
drivers/gpu/drm/sun4i/sun8i_dw_hdmi.c | 31 ++++-
drivers/gpu/drm/sun4i/sun8i_dw_hdmi.h | 5 +-
drivers/gpu/drm/sun4i/sun8i_hdmi_phy.c | 41 +++++-
drivers/gpu/drm/ttm/ttm_bo.c | 5 +-
drivers/gpu/drm/ttm/ttm_device.c | 8 +-
drivers/gpu/drm/vc4/vc4_kms.c | 2 +-
19 files changed, 232 insertions(+), 79 deletions(-)
Powered by blists - more mailing lists