lkml.org 
[lkml]   [2020]   [Jul]   [9]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
Subject[git pull] drm fixes for 5.8-rc5
Hi Linus,

I've been off most of the week, but some fixes have piled up. Seems a
bit busier than last week, but they are pretty spread out across a
bunch of drivers, none of them seem that big or worried me too much.

Regards,
Dave.

drm-fixes-2020-07-10:
drm fixes for 5.8-rc5

amdgpu:
- Fix a suspend/resume issue with PSP
- Backlight fix for Renoir
- Fix for gpu recovery debugging

radeon:
- Fix a double free in error path

i915:
- fbc fencing fix
- debugfs panic fix
- gem vma constuction fix
- gem pin under vm->nutex fix

nouveau:
- SVM fixes
- display fixes

meson:
- OSD burst length fixes

hibmc:
- runtime warning fix

mediatek:
- cmdq, mmsys fixes
- visibility check fixes
The following changes since commit dcb7fd82c75ee2d6e6f9d8cc71c52519ed52e258:

Linux 5.8-rc4 (2020-07-05 16:20:22 -0700)

are available in the Git repository at:

git://anongit.freedesktop.org/drm/drm tags/drm-fixes-2020-07-10

for you to fetch changes up to 38794a5465b752118098e36cf95c59083f9f1f88:

Merge tag 'amd-drm-fixes-5.8-2020-07-09' of
git://people.freedesktop.org/~agd5f/linux into drm-fixes (2020-07-10
07:02:02 +1000)

----------------------------------------------------------------
drm fixes for 5.8-rc5

amdgpu:
- Fix a suspend/resume issue with PSP
- Backlight fix for Renoir
- Fix for gpu recovery debugging

radeon:
- Fix a double free in error path

i915:
- fbc fencing fix
- debugfs panic fix
- gem vma constuction fix
- gem pin under vm->nutex fix

nouveau:
- SVM fixes
- display fixes

meson:
- OSD burst length fixes

hibmc:
- runtime warning fix

mediatek:
- cmdq, mmsys fixes
- visibility check fixes

----------------------------------------------------------------
Aaron Ma (1):
drm/amd/display: add dmcub check on RENOIR

Ben Skeggs (2):
drm/nouveau/kms/nv50-: bail from nv50_audio_disable() early if
audio not enabled
drm/nouveau/i2c/g94-: increase NV_PMGR_DP_AUXCTL_TRANSACTREQ timeout

Bernard Zhao (1):
drm/mediatek: Remove unnecessary conversion to bool

Chris Wilson (4):
drm/i915: Skip stale object handle for debugfs per-file-stats
drm/i915: Drop vm.ref for duplicate vma on construction
drm/i915: Also drop vm.ref along error paths for vma construction
drm/i915/gt: Pin the rings before marking active

Dave Airlie (5):
Merge tag 'mediatek-drm-fixes-5.8' of
https://git.kernel.org/.../chunkuang.hu/linux into drm-fixes
Merge tag 'drm-misc-fixes-2020-07-08' of
git://anongit.freedesktop.org/drm/drm-misc into drm-fixes
Merge branch 'linux-5.8' of git://github.com/skeggsb/linux into drm-fixes
Merge tag 'drm-intel-fixes-2020-07-08' of
git://anongit.freedesktop.org/drm/drm-intel into drm-fixes
Merge tag 'amd-drm-fixes-5.8-2020-07-09' of
git://people.freedesktop.org/~agd5f/linux into drm-fixes

Enric Balletbo i Serra (3):
drm/mediatek: Remove debug messages for function calls
drm/mediatek: mtk_mt8173_hdmi_phy: Remove unnused const variables
drm/mediatek: mtk_hdmi: Remove debug messages for function calls

Hsin-Yi Wang (2):
drm/mediatek: Fix device passed to cmdq
drm/mediatek: Check plane visibility in atomic_update

Huang Rui (2):
drm/amdgpu: asd function needs to be unloaded in suspend phase
drm/amdgpu: add TMR destory function for psp

Marek Olšák (1):
drm/amdgpu: don't do soft recovery if gpu_recovery=0

Martin Blumenstingl (1):
drm/meson: viu: fix setting the OSD burst length in
VIU_OSD1_FIFO_CTRL_STAT

Matthias Brugger (1):
drm/mediatek: Delete not used of_device_get_match_data

Ralph Campbell (2):
drm/nouveau/svm: fix migrate page regression
drm/nouveau/nouveau: fix page fault on device private memory

Tom Rix (1):
drm/radeon: fix double free

Ville Syrjälä (1):
drm/i915/fbc: Fix fence_y_offset handling

YueHaibing (1):
drm/mediatek: Fix Kconfig warning

Zenghui Yu (1):
drm/hisilicon/hibmc: Move drm_fbdev_generic_setup() down to
avoid the splat

drivers/gpu/drm/amd/amdgpu/amdgpu_job.c | 3 +-
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | 63 ++++++++++++++++++++--
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 2 +-
drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_drv.c | 5 +-
drivers/gpu/drm/i915/display/intel_display.c | 11 ++++
drivers/gpu/drm/i915/display/intel_display.h | 1 +
drivers/gpu/drm/i915/display/intel_fbc.c | 32 ++++-------
drivers/gpu/drm/i915/gt/intel_context.c | 12 ++---
drivers/gpu/drm/i915/i915_debugfs.c | 2 +-
drivers/gpu/drm/i915/i915_drv.h | 6 +--
drivers/gpu/drm/i915/i915_vma.c | 15 +++---
drivers/gpu/drm/mediatek/Kconfig | 2 +-
drivers/gpu/drm/mediatek/mtk_drm_crtc.c | 8 +--
drivers/gpu/drm/mediatek/mtk_drm_drv.c | 6 +--
drivers/gpu/drm/mediatek/mtk_drm_plane.c | 25 +++++----
drivers/gpu/drm/mediatek/mtk_dsi.c | 5 +-
drivers/gpu/drm/mediatek/mtk_hdmi.c | 12 +----
drivers/gpu/drm/mediatek/mtk_mt8173_hdmi_phy.c | 52 ------------------
drivers/gpu/drm/meson/meson_registers.h | 6 +++
drivers/gpu/drm/meson/meson_viu.c | 11 +---
drivers/gpu/drm/nouveau/dispnv50/disp.c | 3 ++
drivers/gpu/drm/nouveau/nouveau_dmem.c | 2 +-
drivers/gpu/drm/nouveau/nouveau_svm.c | 1 +
drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.c | 4 +-
drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c | 4 +-
drivers/gpu/drm/radeon/ci_dpm.c | 7 ++-
26 files changed, 145 insertions(+), 155 deletions(-)

\
 
 \ /
  Last update: 2020-07-10 03:15    [W:0.049 / U:0.440 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site