mbox series

[PULL] drm-intel-next-fixes

Message ID 20191114085213.GA6440@jlahtine-desk.ger.corp.intel.com (mailing list archive)
State New, archived
Headers show
Series [PULL] drm-intel-next-fixes | expand

Pull-request

git://anongit.freedesktop.org/drm/drm-intel tags/drm-intel-next-fixes-2019-11-14

Message

Joonas Lahtinen Nov. 14, 2019, 8:52 a.m. UTC
Hi Dave & Daniel,

Here comes the set of fixes for drm-intel-next. Quite a few fixes
after a silent last week.

I'll do the backmerge of the BCX fixes from Linus's tree next and
send it as an extra PR.

Regards, Joonas

***

drm-intel-next-fixes-2019-11-14:

- PMU "Frequency" is reported as accumulated cycles
- Avoid OOPS in dumb_create IOCTL when no CRTCs
- Mitigation for userptr put_pages deadlock with trylock_page
- Fix to avoid freeing heartbeat request too early
- Fix LRC coherency issue
- Fix Bugzilla #112212: Avoid screen corruption on MST
- Error path fix to unlock context on failed context VM SETPARAM
- Always consider holding preemption a privileged op in perf/OA
- Preload LUTs if the hw isn't currently using them to avoid color flash on VLV/CHV
- Protect context while grabbing its name for the request
- Don't resize aliasing ppGTT size
- Smaller fixes picked by tooling

The following changes since commit d9dace9438945e7c13d91e62927c5c6c88a37ee5:

  drm/i915/selftests: Add intel_gt_suspend_prepare (2019-11-05 16:06:25 +0200)

are available in the Git repository at:

  git://anongit.freedesktop.org/drm/drm-intel tags/drm-intel-next-fixes-2019-11-14

for you to fetch changes up to 789c4aea3f08026360d026c0ea69b33797ac88c2:

  drm/i915: Split a setting of MSA to MST and SST (2019-11-13 15:00:10 +0200)

----------------------------------------------------------------
- PMU "Frequency" is reported as accumulated cycles
- Avoid OOPS in dumb_create IOCTL when no CRTCs
- Mitigation for userptr put_pages deadlock with trylock_page
- Fix to avoid freeing heartbeat request too early
- Fix LRC coherency issue
- Fix Bugzilla #112212: Avoid screen corruption on MST
- Error path fix to unlock context on failed context VM SETPARAM
- Always consider holding preemption a privileged op in perf/OA
- Preload LUTs if the hw isn't currently using them to avoid color flash on VLV/CHV
- Protect context while grabbing its name for the request
- Don't resize aliasing ppGTT size
- Smaller fixes picked by tooling

----------------------------------------------------------------
Chris Wilson (7):
      drm/i915/gt: Only drop heartbeat.systole if the sole owner
      drm/i915/gem: Fix error path to unlock if the GEM context is closed
      drm/i915: Leave the aliasing-ppgtt size alone
      drm/i915: Protect context while grabbing its name for the request
      drm/i915/pmu: "Frequency" is reported as accumulated cycles
      drm/i915/userptr: Try to acquire the page lock around set_page_dirty()
      drm/i915/execlists: Move reset_active() from schedule-out to schedule-in

Gwan-gyeong Mun (1):
      drm/i915: Split a setting of MSA to MST and SST

Jani Nikula (1):
      drm/i915/display: only include intel_dp_link_training.h where needed

Lionel Landwerlin (1):
      drm/i915/perf: always consider holding preemption a privileged op

Ville Syrjälä (2):
      drm/i915: Don't oops in dumb_create ioctl if we have no crtcs
      drm/i915: Preload LUTs if the hw isn't currently using them

 drivers/gpu/drm/i915/display/intel_atomic.c        |   1 +
 drivers/gpu/drm/i915/display/intel_color.c         |  61 +++++++++++
 drivers/gpu/drm/i915/display/intel_ddi.c           |  10 +-
 drivers/gpu/drm/i915/display/intel_display.c       |  10 ++
 drivers/gpu/drm/i915/display/intel_display.h       |   1 -
 drivers/gpu/drm/i915/display/intel_display_types.h |   1 +
 drivers/gpu/drm/i915/display/intel_dp_mst.c        |   2 +
 drivers/gpu/drm/i915/gem/i915_gem_context.c        |   2 +-
 drivers/gpu/drm/i915/gem/i915_gem_userptr.c        |  22 +++-
 drivers/gpu/drm/i915/gt/intel_engine_cs.c          |   2 +
 drivers/gpu/drm/i915/gt/intel_engine_heartbeat.c   |   4 +-
 drivers/gpu/drm/i915/gt/intel_lrc.c                | 118 +++++++++++----------
 drivers/gpu/drm/i915/i915_gem_gtt.c                |   2 -
 drivers/gpu/drm/i915/i915_perf.c                   |  20 ++--
 drivers/gpu/drm/i915/i915_pmu.c                    |   4 +-
 15 files changed, 181 insertions(+), 79 deletions(-)