Re: [Intel-gfx] [PATCH RFC 2/5] cgroup: Add mechanism to register vendor specific DRM devices

2018-12-02 Thread Ho, Kenny
Hey Matt, On Fri, Nov 30, 2018 at 5:22 PM Matt Roper wrote: > I think Joonas is describing something closer in > design to the cgroup-v2 "cpu" controller, which partitions the general > time/usage allocated to via cgroup; afaiu, "cpu" doesn't really care > which specific core the tasks run on, ju

Re: [PATCH 02/11] dma-buf: add new dma_fence_chain container v2

2018-12-02 Thread zhoucm1
On 2018年11月28日 22:50, Christian König wrote: Lockless container implementation similar to a dma_fence_array, but with only two elements per node and automatic garbage collection. v2: properly document dma_fence_chain_for_each, add dma_fence_chain_find_seqno, drop prev reference during gar

Re: [PATCH 3/3] drm/amd/powerplay: support SoftMin/Max setting for some specific DPM

2018-12-02 Thread Alex Deucher
On Wed, Nov 28, 2018 at 3:53 AM Evan Quan wrote: > > For some case, no need to force SoftMin/Max settings for all DPMs. > It's OK to force on some specific DPM only. > > Change-Id: Ic5c7658b794ec47c815aae8616bbf0a9bf01fd17 > Signed-off-by: Evan Quan Series is: Acked-by: Alex Deucher > --- > .

RE: [PATCH 3/3] drm/amd/powerplay: support SoftMin/Max setting for some specific DPM

2018-12-02 Thread Quan, Evan
Ping... > -Original Message- > From: Evan Quan > Sent: 2018年11月28日 16:54 > To: amd-gfx@lists.freedesktop.org > Cc: Quan, Evan > Subject: [PATCH 3/3] drm/amd/powerplay: support SoftMin/Max setting for > some specific DPM > > For some case, no need to force SoftMin/Max settings for all DP

RE: [PATCH 2/3] drm/amd/powerplay: issue pre-display settings for display change event

2018-12-02 Thread Quan, Evan
Ping ... > -Original Message- > From: Evan Quan > Sent: 2018年11月28日 16:54 > To: amd-gfx@lists.freedesktop.org > Cc: Quan, Evan > Subject: [PATCH 2/3] drm/amd/powerplay: issue pre-display settings for > display change event > > For display config change event only, pre-display config set

RE: [PATCH 1/3] drm/amd/powerplay: support new pptable upload on Vega20

2018-12-02 Thread Quan, Evan
Ping... > -Original Message- > From: Evan Quan > Sent: 2018年11月28日 16:54 > To: amd-gfx@lists.freedesktop.org > Cc: Quan, Evan > Subject: [PATCH 1/3] drm/amd/powerplay: support new pptable upload on > Vega20 > > New pptable upload through sysfs interface is supported. > > Change-Id: Idb

[PATCH] drm/amdgpu: enlarge maximum waiting time of KIQ

2018-12-02 Thread wentalou
KIQ in VF’s init delayed by another VF’s reset, which would cause late_init failed occasionally. MAX_KIQ_REG_TRY enlarged from 20 to 80 would fix this issue. Change-Id: Iac680af3cbd6afe4f8e408785f0795e1b23dba83 Signed-off-by: wentalou --- drivers/gpu/drm/amd/amdgpu/amdgpu.h | 2 +- 1 file change

[PATCH] drm/amdgpu: NULL check before some freeing functions is not needed.

2018-12-02 Thread Thomas Meyer
NULL check before some freeing functions is not needed. Signed-off-by: Thomas Meyer --- diff -u -p a/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c @@ -816,6 +816,5

[PATCH] drm/amdgpu/si: fix SI after doorbell rework

2018-12-02 Thread Alex Deucher
SI does not use doorbells, move asic doorbell init later asic check. Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=108920 Signed-off-by: Alex Deucher --- drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/amd