Message ID | 20181212211259.2961-1-alexander.deucher@amd.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [pull] amdgpu drm-next-4.21 | expand |
On Thu, 13 Dec 2018 at 07:13, Alex Deucher <alexdeucher@gmail.com> wrote: > > Hi Dave, > > Updates for 4.21: > - Powerplay updates for newer polaris variants > - Add cursor plane update fast path > - Enable gpu reset by default on CI parts > - Fix config with KFD/HSA not enabled > - Misc bug fixes > Either this or the previous one broke the etnaviv build, I see two reports on the list of this breakage from the kbuild robot but no mention of it, can you guys either stick some arm cross compiles in your build paths or keep an eye on the kbuild robot emails for your branches. I created my own fix and pushed it in the merge commit. Dave. > The following changes since commit 22666cc1481ae3814d9c7718418cc4a3aa7d90c3: > > drm/amdgpu: move IV prescreening into the GMC code (2018-12-07 18:14:26 -0500) > > are available in the git repository at: > > git://people.freedesktop.org/~agd5f/linux drm-next-4.21 > > for you to fetch changes up to 674e78acae0dfb4beb56132e41cbae5b60f7d662: > > drm/amd/display: Add fast path for cursor plane updates (2018-12-12 15:32:10 -0500) > > ---------------------------------------------------------------- > Alex Deucher (1): > drm/amdgpu/powerplay: Add special avfs cases for some polaris asics (v3) > > Andrey Grodzovsky (1): > drm/amdgpu: Enable GPU recovery by default for CI > > Kuehling, Felix (1): > drm/amdgpu: Fix stub function name > > Nicholas Kazlauskas (4): > Revert "drm/amd/display: Set RMX_ASPECT as default" > drm/amd/display: Fix unintialized max_bpc state values > drm/amd/display: Fix duplicating scaling/underscan connector state > drm/amd/display: Add fast path for cursor plane updates > > Rex Zhu (1): > drm/amdgpu: Limit vm max ctx number to 4096 > > Tiecheng Zhou (1): > drm/amdgpu: bypass RLC init under sriov for Tonga (v2) > > YueHaibing (1): > drm/amdgpu: remove set but not used variable 'grbm_soft_reset' > > drivers/gpu/drm/amd/amdgpu/amdgpu.h | 1 + > drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c | 2 +- > drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c | 2 +- > drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 2 + > drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c | 11 +-- > drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 79 ++++++++++++++++++++-- > drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h | 8 +++ > .../drm/amd/powerplay/smumgr/polaris10_smumgr.c | 54 +++++++++++++++ > 8 files changed, 147 insertions(+), 12 deletions(-)
On Wed, Dec 12, 2018 at 7:08 PM Dave Airlie <airlied@gmail.com> wrote: > > On Thu, 13 Dec 2018 at 07:13, Alex Deucher <alexdeucher@gmail.com> wrote: > > > > Hi Dave, > > > > Updates for 4.21: > > - Powerplay updates for newer polaris variants > > - Add cursor plane update fast path > > - Enable gpu reset by default on CI parts > > - Fix config with KFD/HSA not enabled > > - Misc bug fixes > > > > Either this or the previous one broke the etnaviv build, I see two > reports on the list of this breakage from the kbuild robot but no > mention of it, can you guys either stick some arm cross compiles in > your build paths or keep an eye on the kbuild robot emails for your > branches. > > I created my own fix and pushed it in the merge commit. Sorry about that. I did see it, but I mixed it up with another issue on drm-misc which was already fixed and thought it was a result of the last drm-next merge into my tree. I'll pay closer attention next time. Alex > > Dave. > > > The following changes since commit 22666cc1481ae3814d9c7718418cc4a3aa7d90c3: > > > > drm/amdgpu: move IV prescreening into the GMC code (2018-12-07 18:14:26 -0500) > > > > are available in the git repository at: > > > > git://people.freedesktop.org/~agd5f/linux drm-next-4.21 > > > > for you to fetch changes up to 674e78acae0dfb4beb56132e41cbae5b60f7d662: > > > > drm/amd/display: Add fast path for cursor plane updates (2018-12-12 15:32:10 -0500) > > > > ---------------------------------------------------------------- > > Alex Deucher (1): > > drm/amdgpu/powerplay: Add special avfs cases for some polaris asics (v3) > > > > Andrey Grodzovsky (1): > > drm/amdgpu: Enable GPU recovery by default for CI > > > > Kuehling, Felix (1): > > drm/amdgpu: Fix stub function name > > > > Nicholas Kazlauskas (4): > > Revert "drm/amd/display: Set RMX_ASPECT as default" > > drm/amd/display: Fix unintialized max_bpc state values > > drm/amd/display: Fix duplicating scaling/underscan connector state > > drm/amd/display: Add fast path for cursor plane updates > > > > Rex Zhu (1): > > drm/amdgpu: Limit vm max ctx number to 4096 > > > > Tiecheng Zhou (1): > > drm/amdgpu: bypass RLC init under sriov for Tonga (v2) > > > > YueHaibing (1): > > drm/amdgpu: remove set but not used variable 'grbm_soft_reset' > > > > drivers/gpu/drm/amd/amdgpu/amdgpu.h | 1 + > > drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c | 2 +- > > drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c | 2 +- > > drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 2 + > > drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c | 11 +-- > > drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 79 ++++++++++++++++++++-- > > drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h | 8 +++ > > .../drm/amd/powerplay/smumgr/polaris10_smumgr.c | 54 +++++++++++++++ > > 8 files changed, 147 insertions(+), 12 deletions(-)