linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Dave Airlie <airlied@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>,
	Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: dri-devel <dri-devel@lists.freedesktop.org>,
	LKML <linux-kernel@vger.kernel.org>
Subject: [git pull] drm fixes for 5.4-rc7
Date: Fri, 8 Nov 2019 16:57:59 +1000	[thread overview]
Message-ID: <CAPM=9tzkQsv1s4ZXAyKDNVdXg_T0h4ZDODq68j4dLbACS_w4dw@mail.gmail.com> (raw)

Hi Linus,

Weekly fixes for drm, summary below, amdgpu has a few but they are
pretty scattered fixes, the fbdev one is a build regression fix that
we didn't want to risk leaving out, otherwise a couple of i915, one
radeon and a core atomic fix.

Dave.

The following changes since commit a99d8080aaf358d5d23581244e5da23b35e340b9:

  Linux 5.4-rc6 (2019-11-03 14:07:26 -0800)

are available in the Git repository at:

  git://anongit.freedesktop.org/drm/drm tags/drm-fixes-2019-11-08

for you to fetch changes up to ff9234583d4fb53d4bcf57916ddfb16c53c81c88:

  Merge tag 'drm-fixes-5.4-2019-11-06' of
git://people.freedesktop.org/~agd5f/linux into drm-fixes (2019-11-08
13:07:58 +1000)

----------------------------------------------------------------
drm fixes for 5.4-rc7

core:
- add missing documentation for GEM shmem madvise helpers
- Fix for a state dereference in atomic self-refresh helpers

fbdev:
- One compilation fix for c2p fbdev helpers

amdgpu:
- Fix navi14 display issue root cause and revert workaround
- GPU reset scheduler interaction fix
- Fix fan boost on multi-GPU
- Gfx10 and sdma5 fixes for navi
- GFXOFF fix for renoir
- Add navi14 PCI ID
- GPUVM fix for arcturus

radeon:
- Port an SI power fix from amdgpu

i915:
- Fix HPD poll to avoid kworker consuming a lot of cpu cycles.
- Do not use TBT type for non Type-C ports.

----------------------------------------------------------------
Alex Deucher (3):
      drm/amdgpu/arcturus: properly set BANK_SELECT and FRAGMENT_SIZE
      drm/amdgpu/renoir: move gfxoff handling into gfx9 module
      drm/radeon: fix si_enable_smc_cac() failed issue

Dave Airlie (3):
      Merge tag 'drm-misc-fixes-2019-11-07-1' of
git://anongit.freedesktop.org/drm/drm-misc into drm-fixes
      Merge tag 'drm-intel-fixes-2019-11-06' of
git://anongit.freedesktop.org/drm/drm-intel into drm-fixes
      Merge tag 'drm-fixes-5.4-2019-11-06' of
git://people.freedesktop.org/~agd5f/linux into drm-fixes

Evan Quan (1):
      drm/amdgpu: register gpu instance before fan boost feature enablment

Geert Uytterhoeven (1):
      fbdev: c2p: Fix link failure on non-inlining

Imre Deak (1):
      drm/i915: Avoid HPD poll detect triggering a new detect cycle

José Roberto de Souza (1):
      drm/i915/dp: Do not switch aux to TBT mode for non-TC ports

Kevin Wang (1):
      drm/amd/swSMU: fix smu workload bit map error

Rob Clark (1):
      drm/atomic: fix self-refresh helpers crtc state dereference

Rob Herring (1):
      drm/shmem: Add docbook comments for drm_gem_shmem_object madvise fields

Shirish S (1):
      drm/amdgpu: dont schedule jobs while in reset

Tianci.Yin (1):
      drm/amdgpu: add navi14 PCI ID

Zhan Liu (2):
      drm/amd/display: Add ENGINE_ID_DIGD condition check for Navi14
      Revert "drm/amd/display: setting the DIG_MODE to the correct value."

changzhu (2):
      drm/amdgpu: add dummy read by engines for some GCVM status
registers in gfx10
      drm/amdgpu: add warning for GRBM 1-cycle delay issue in gfx9

 drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c            |  5 ++-
 drivers/gpu/drm/amd/amdgpu/amdgpu_device.c         |  7 ++++
 drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c            |  1 +
 drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.h            |  1 +
 drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c            |  1 -
 drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c             | 48 ++++++++++++++++++++++
 drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c              | 13 ++++++
 drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c             |  8 ++--
 drivers/gpu/drm/amd/amdgpu/mmhub_v9_4.c            |  9 ++++
 drivers/gpu/drm/amd/amdgpu/sdma_v5_0.c             | 13 +++++-
 drivers/gpu/drm/amd/amdgpu/soc15.c                 |  5 ---
 drivers/gpu/drm/amd/display/dc/core/dc_link.c      |  9 ----
 .../gpu/drm/amd/display/dc/dcn20/dcn20_resource.c  |  5 +++
 drivers/gpu/drm/amd/powerplay/navi10_ppt.c         |  2 +-
 drivers/gpu/drm/amd/powerplay/vega20_ppt.c         |  2 +-
 drivers/gpu/drm/drm_atomic_helper.c                | 15 ++++++-
 drivers/gpu/drm/drm_self_refresh_helper.c          | 18 ++++----
 drivers/gpu/drm/i915/display/intel_crt.c           |  7 ++++
 drivers/gpu/drm/i915/display/intel_dp.c            | 12 +++++-
 drivers/gpu/drm/i915/display/intel_hdmi.c          |  6 +++
 drivers/gpu/drm/radeon/si_dpm.c                    |  1 +
 drivers/video/fbdev/c2p_core.h                     |  8 ++--
 include/drm/drm_gem_shmem_helper.h                 | 13 ++++++
 include/drm/drm_self_refresh_helper.h              |  3 +-
 24 files changed, 174 insertions(+), 38 deletions(-)

             reply	other threads:[~2019-11-08  6:58 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-08  6:57 Dave Airlie [this message]
2019-11-08 17:55 ` [git pull] drm fixes for 5.4-rc7 pr-tracker-bot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAPM=9tzkQsv1s4ZXAyKDNVdXg_T0h4ZDODq68j4dLbACS_w4dw@mail.gmail.com' \
    --to=airlied@gmail.com \
    --cc=daniel.vetter@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).