lkml.org 
[lkml]   [2020]   [Jun]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
Subject[git pull] drm next fixes for 5.7-rc1
Hey Linus,

This are the fixes from last week for the stuff merged in the merge
window. It got a bunch of nouveau fixes for HDA audio on some new
GPUs, some i915 and some amdpgu fixes.

I've got another pull request with Rob's msm next stuff in it I'll
send along after this, it was in -next all along, but it needed a
revert before I merged it, and it also was on a different base, so
I'll sent a separate pull from my fixes branch to avoid me having to
backmerge anything here yet.

Dave.

drm-next-2020-06-08:
drm fixes for 5.7-rc1

i915:
- gvt: Fix one clang warning on debug only function
Use ARRAY_SIZE for coccicheck warn
- Use after free fix for display global state.
- Whitelisting context-local timestamp on Gen9
and two scheduler fixes with deps (Cc: stable)
- Removal of write flag from sysfs files where
ineffective

nouveau:
- HDMI/DP audio HDA fixes
- display hang fix for Volta/Turing
- GK20A regression fix.

amdgpu:
- Prevent hwmon accesses while GPU is in reset
- CTF interrupt fix
- Backlight fix for renoir
- Fix for display sync groups
- Display bandwidth validation workaround
The following changes since commit 9ca1f474cea0edc14a1d7ec933e5472c0ff115d3:

Merge tag 'amd-drm-next-5.8-2020-05-27' of
git://people.freedesktop.org/~agd5f/linux into drm-next (2020-05-28
16:10:17 +1000)

are available in the Git repository at:

git://anongit.freedesktop.org/drm/drm tags/drm-next-2020-06-08

for you to fetch changes up to 8d286e2ff4400d313955b4203fc640ca6fd9228b:

Merge tag 'drm-intel-next-fixes-2020-06-04' of
git://anongit.freedesktop.org/drm/drm-intel into drm-next (2020-06-08
11:59:57 +1000)

----------------------------------------------------------------
drm fixes for 5.7-rc1

i915:
- gvt: Fix one clang warning on debug only function
Use ARRAY_SIZE for coccicheck warn
- Use after free fix for display global state.
- Whitelisting context-local timestamp on Gen9
and two scheduler fixes with deps (Cc: stable)
- Removal of write flag from sysfs files where
ineffective

nouveau:
- HDMI/DP audio HDA fixes
- display hang fix for Volta/Turing
- GK20A regression fix.

amdgpu:
- Prevent hwmon accesses while GPU is in reset
- CTF interrupt fix
- Backlight fix for renoir
- Fix for display sync groups
- Display bandwidth validation workaround

----------------------------------------------------------------
Aishwarya Ramakrishnan (1):
drm/i915/gvt: Use ARRAY_SIZE for vgpu_types

Alex Deucher (2):
drm/amdgpu/pm: return an error during GPU reset or suspend (v2)
drm/amdgpu/display: use blanked rather than plane state for sync groups

Ben Skeggs (8):
drm/nouveau/disp/gm200-: fix NV_PDISP_SOR_HDMI2_CTRL(n) selection
drm/nouveau/kms/gt215-: fix race with audio driver runpm
drm/nouveau/disp: provide hint to OR allocation about HDA requirements
drm/nouveau/disp: split part of OR allocation logic into a function
drm/nouveau/disp: modify OR allocation policy to account for HDA
requirements
drm/nouveau/disp/gp100: split SOR implementation from gm200
drm/nouveau/disp/gm200-: detect and potentially disable HDA
support on some SORs
drm/nouveau/kms/nv50-: clear SW state of disabled windows harder

Chris Wilson (9):
drm/i915: Don't set queue-priority hint when supressing the reschedule
drm/i915/gt: Remove errant assertion in __intel_context_do_pin
drm/i915: Disable semaphore inter-engine sync without timeslicing
drm/i915: Avoid using rq->engine after free during i915_fence_release
drm/i915/gem: Avoid iterating an empty list
drm/i915: Reorder await_execution before await_request
drm/i915/gt: Do not schedule normal requests immediately along virtual
drm/i915: Check for awaits on still currently executing requests
drm/i915: Whitelist context-local timestamp in the gen9 cmdparser

Dave Airlie (3):
Merge branch 'linux-5.8' of git://github.com/skeggsb/linux into drm-next
Merge tag 'amd-drm-fixes-5.8-2020-06-04' of
git://people.freedesktop.org/~agd5f/linux into drm-next
Merge tag 'drm-intel-next-fixes-2020-06-04' of
git://anongit.freedesktop.org/drm/drm-intel into drm-next

Evan Quan (1):
drm/amd/powerplay: ack the SMUToHost interrupt on receive V2

Harry Wentland (1):
Revert "drm/amd/display: disable dcn20 abm feature for bring up"

Jani Nikula (2):
drm/i915/params: don't expose inject_probe_failure in debugfs
drm/i915/params: fix i915.fake_lmem_start module param sysfs permissions

Joonas Lahtinen (1):
Merge tag 'gvt-next-fixes-2020-05-28' of
https://github.com/intel/gvt-linux into drm-intel-next-fixes

Nathan Chancellor (1):
drm/i915: Mark check_shadow_context_ppgtt as maybe unused

Nicholas Kazlauskas (1):
drm/amd/display: Revalidate bandwidth before commiting DC updates

Thierry Reding (1):
drm/nouveau: gr/gk20a: Use firmware version 0

Ville Syrjälä (1):
drm/i915: Fix global state use-after-frees with a refcount

drivers/gpu/drm/amd/amdgpu/amdgpu_pm.c | 171 ++++++++++
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 11 +-
drivers/gpu/drm/amd/display/dc/core/dc.c | 30 +-
drivers/gpu/drm/amd/powerplay/smu_v11_0.c | 6 +
drivers/gpu/drm/i915/display/intel_global_state.c | 45 ++-
drivers/gpu/drm/i915/display/intel_global_state.h | 3 +
drivers/gpu/drm/i915/gem/i915_gem_context.c | 4 +-
drivers/gpu/drm/i915/gem/i915_gem_shmem.c | 15 +-
drivers/gpu/drm/i915/gt/intel_context.c | 2 -
drivers/gpu/drm/i915/gvt/vgpu.c | 2 +-
drivers/gpu/drm/i915/i915_cmd_parser.c | 4 +
drivers/gpu/drm/i915/i915_params.c | 2 +-
drivers/gpu/drm/i915/i915_params.h | 2 +-
drivers/gpu/drm/i915/i915_request.c | 359 +++++++++++++--------
drivers/gpu/drm/i915/i915_scheduler.c | 16 +-
drivers/gpu/drm/nouveau/dispnv50/disp.c | 21 +-
drivers/gpu/drm/nouveau/dispnv50/wndw.c | 5 +-
drivers/gpu/drm/nouveau/include/nvif/cl5070.h | 3 +-
drivers/gpu/drm/nouveau/nouveau_encoder.h | 1 +
drivers/gpu/drm/nouveau/nvkm/engine/disp/Kbuild | 1 +
drivers/gpu/drm/nouveau/nvkm/engine/disp/gp100.c | 2 +-
drivers/gpu/drm/nouveau/nvkm/engine/disp/gp102.c | 2 +-
.../gpu/drm/nouveau/nvkm/engine/disp/hdmigm200.c | 4 +-
drivers/gpu/drm/nouveau/nvkm/engine/disp/ior.h | 1 +
drivers/gpu/drm/nouveau/nvkm/engine/disp/outp.c | 73 +++--
drivers/gpu/drm/nouveau/nvkm/engine/disp/outp.h | 2 +-
.../gpu/drm/nouveau/nvkm/engine/disp/rootnv50.c | 4 +-
.../gpu/drm/nouveau/nvkm/engine/disp/sorgm200.c | 36 ++-
.../gpu/drm/nouveau/nvkm/engine/disp/sorgp100.c | 93 ++++++
.../gpu/drm/nouveau/nvkm/engine/disp/sorgv100.c | 35 +-
.../gpu/drm/nouveau/nvkm/engine/disp/sortu102.c | 32 +-
drivers/gpu/drm/nouveau/nvkm/engine/gr/gk20a.c | 2 +-
32 files changed, 778 insertions(+), 211 deletions(-)
create mode 100644 drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgp100.c

\
 
 \ /
  Last update: 2020-06-08 05:16    [W:0.282 / U:0.068 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site