dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [git pull] drm fixes for v5.10-rc5
@ 2020-11-20  1:55 Dave Airlie
  2020-11-20 18:40 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Dave Airlie @ 2020-11-20  1:55 UTC (permalink / raw)
  To: Linus Torvalds, Daniel Vetter; +Cc: LKML, dri-devel

Hi Linus,

Weekly fixes pull. This contains some fixes for sun4i/dw-hdmi probing,
then amdgpu enables arcturus hw without experimental flag and two
other fixes and a group of i915 fixes.

It also has a backported from next fix for the warn on reported in
ast/drm_gem_vram_helper code in the rc1 pull request thread. The rc4
PR has a thread which initially looked to be the same problem, but I'm
going to chase that up next week a bit more as I don't think the
bisect landed anywhere useful.

Dave.

drm-fixes-2020-11-20-2:
drm fixes for v5.10-rc5

core:
- vram helper TTM regression fix

amdgpu:
- Pageflip fix for navi1x with 5 or 6 displays
- Remove experimental flag for Arcturus
- Fix regression in atomic commit tail rework

i915:
- Fix tgl power gating issue
- Memory leak fixes
- Selftest fixes
- Display bpc fix
- Fix TGL MOCS for PTE tracking

dw-hdmi:
- probing fix

sun4i:
- probing fix
The following changes since commit 09162bc32c880a791c6c0668ce0745cf7958f576:

  Linux 5.10-rc4 (2020-11-15 16:44:31 -0800)

are available in the Git repository at:

  git://anongit.freedesktop.org/drm/drm tags/drm-fixes-2020-11-20-2

for you to fetch changes up to 6600f9d52213b5c3455481b5c9e61cf5e305c0e6:

  Merge tag 'drm-intel-fixes-2020-11-19' of
git://anongit.freedesktop.org/drm/drm-intel into drm-fixes (2020-11-20
11:21:54 +1000)

----------------------------------------------------------------
drm fixes for v5.10-rc5

core:
- vram helper TTM regression fix

amdgpu:
- Pageflip fix for navi1x with 5 or 6 displays
- Remove experimental flag for Arcturus
- Fix regression in atomic commit tail rework

i915:
- Fix tgl power gating issue
- Memory leak fixes
- Selftest fixes
- Display bpc fix
- Fix TGL MOCS for PTE tracking

dw-hdmi:
- probing fix

sun4i:
- probing fix

----------------------------------------------------------------
Alex Deucher (2):
      drm/amd/display: Add missing pflip irq for dcn2.0
      drm/amdgpu: remove experimental flag from arcturus

Chris Wilson (2):
      drm/i915/gt: Remember to free the virtual breadcrumbs
      drm/i915/gt: Fixup tgl mocs for PTE tracking

Colin Xu (1):
      drm/i915/gvt: Temporarily disable vfio_edid for BXT/APL

Dave Airlie (3):
      Merge tag 'amd-drm-fixes-5.10-2020-11-18' of
git://people.freedesktop.org/~agd5f/linux into drm-fixes
      Merge tag 'drm-misc-fixes-2020-11-19' of
git://anongit.freedesktop.org/drm/drm-misc into drm-fixes
      Merge tag 'drm-intel-fixes-2020-11-19' of
git://anongit.freedesktop.org/drm/drm-intel into drm-fixes

Jonathan Liu (1):
      drm: bridge: dw-hdmi: Avoid resetting force in the detect function

Maxime Ripard (2):
      drm/sun4i: backend: Fix probe failure with multiple backends
      Merge tag 'drm/sun4i-dma-fix-pull-request' of
ssh://gitolite.kernel.org/.../mripard/linux into drm-misc-fixes

Rodrigo Siqueira (1):
      drm/amd/display: Always get CRTC updated constant values inside
commit tail

Rodrigo Vivi (2):
      drm/i915/tgl: Fix Media power gate sequence.
      Merge tag 'gvt-fixes-2020-11-17' of
https://github.com/intel/gvt-linux into drm-intel-fixes

Thomas Zimmermann (1):
      drm/vram-helper: Fix use of top-down placement

Tina Zhang (1):
      drm/i915/gvt: Set ENHANCED_FRAME_CAP bit

Tvrtko Ursulin (1):
      drm/i915: Avoid memory leak with more than 16 workarounds on a list

Ville Syrjälä (1):
      drm/i915: Handle max_bpc==16

Xiongfeng Wang (2):
      drm/i915/gvt: return error when failing to take the module reference
      drm/sun4i: dw-hdmi: fix error return code in sun8i_dw_hdmi_bind()

Zhang Xiaoxu (2):
      drm/i915/selftests: Fix wrong return value of perf_series_engines()
      drm/i915/selftests: Fix wrong return value of perf_request_latency()

 drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c            |  8 ++++----
 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c  |  3 ++-
 .../amd/display/dc/irq/dcn20/irq_service_dcn20.c   |  4 ++--
 drivers/gpu/drm/bridge/synopsys/dw-hdmi.c          |  6 ------
 drivers/gpu/drm/drm_gem_vram_helper.c              |  2 +-
 drivers/gpu/drm/i915/display/intel_display.c       |  3 ++-
 drivers/gpu/drm/i915/gt/intel_lrc.c                |  1 +
 drivers/gpu/drm/i915/gt/intel_mocs.c               |  5 +++--
 drivers/gpu/drm/i915/gt/intel_rc6.c                | 22 +++++++++++++++++-----
 drivers/gpu/drm/i915/gt/intel_workarounds.c        |  4 +++-
 drivers/gpu/drm/i915/gvt/display.c                 |  2 +-
 drivers/gpu/drm/i915/gvt/kvmgt.c                   |  4 +++-
 drivers/gpu/drm/i915/gvt/vgpu.c                    |  3 ++-
 drivers/gpu/drm/i915/i915_reg.h                    | 12 +++++-------
 drivers/gpu/drm/i915/intel_pm.c                    | 13 -------------
 drivers/gpu/drm/i915/selftests/i915_request.c      |  8 ++++++--
 drivers/gpu/drm/sun4i/sun4i_backend.c              |  8 +++++++-
 drivers/gpu/drm/sun4i/sun8i_dw_hdmi.c              |  1 +
 18 files changed, 60 insertions(+), 49 deletions(-)
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [git pull] drm fixes for v5.10-rc5
  2020-11-20  1:55 [git pull] drm fixes for v5.10-rc5 Dave Airlie
@ 2020-11-20 18:40 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2020-11-20 18:40 UTC (permalink / raw)
  To: Dave Airlie; +Cc: Daniel Vetter, Linus Torvalds, LKML, dri-devel

The pull request you sent on Fri, 20 Nov 2020 11:55:49 +1000:

> git://anongit.freedesktop.org/drm/drm tags/drm-fixes-2020-11-20-2

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/46cbc18ed85219d534b4fbb4a39058fe66766e83

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-11-20 18:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-20  1:55 [git pull] drm fixes for v5.10-rc5 Dave Airlie
2020-11-20 18:40 ` 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;
as well as URLs for NNTP newsgroup(s).