[PATCH] drm/amdgpu/gfx: delete stray tabs

2025-03-10 Thread Dan Carpenter
These lines are indented one tab too far. Delete the extra tabs. Signed-off-by: Dan Carpenter --- drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c in

RE: [PATCH 01/11] drm/amdgpu: add parameter to disable kernel queues

2025-03-10 Thread Liang, Prike
[Public] Reviewed-by: Prike Liang Regards, Prike > -Original Message- > From: amd-gfx On Behalf Of Alex > Deucher > Sent: Friday, March 7, 2025 11:16 PM > To: amd-gfx@lists.freedesktop.org > Cc: Deucher, Alexander ; Khatri, Sunil > > Subject: [PATCH 01/11] drm/amdgpu: add parame

RE: [PATCH 00/22] DC Patches Mar 10 2025

2025-03-10 Thread Wheeler, Daniel
[Public] Hi all, This week this patchset was tested on 4 systems, two dGPU and two APU based, and tested across multiple display and connection types. APU * Single Display eDP -> 1080p 60hz, 2560x1600 120hz, 1920x1200 165hz * Single Display DP (SST DSC) -> 4k144hz, 4k240hz

[PATCH] drm/amd/amdgpu: Fix MES init sequence

2025-03-10 Thread Shaoyun Liu
When MES is been used , the set_hw_resource_1 API is required to initialize MES internal context correctly Signed-off-by: Shaoyun Liu --- drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h | 6 +-- drivers/gpu/drm/amd/amdgpu/amdgpu_virt.c | 9 ++-- drivers/gpu/drm/amd/amdgpu/mes_v11_0.c | 59 +

RE: [PATCH V7 3/3] drm/amdgpu/sdma_v4_4_2: update VM flush implementation for SDMA

2025-03-10 Thread Zhang, Jesse(Jie)
[AMD Official Use Only - AMD Internal Distribution Only] Ping on this series? -Original Message- From: jesse.zh...@amd.com Sent: Wednesday, March 5, 2025 11:25 AM To: amd-gfx@lists.freedesktop.org Cc: Deucher, Alexander ; Koenig, Christian ; Lazar, Lijo ; Zhu, Jiadong ; Zhang, Jesse(Ji

Re: [PATCH] drm/amd/amdgpu: Fix MES init sequence

2025-03-10 Thread Alex Deucher
On Mon, Mar 10, 2025 at 1:58 PM Shaoyun Liu wrote: > > When MES is been used , the set_hw_resource_1 API is required to > initialize MES internal context correctly > > Signed-off-by: Shaoyun Liu > --- > drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h | 6 +-- > drivers/gpu/drm/amd/amdgpu/amdgpu_virt.c

Re: [PATCH] drm/amdgpu/gfx: delete stray tabs

2025-03-10 Thread SRINIVASAN SHANMUGAM
On 3/10/2025 4:17 PM, Dan Carpenter wrote: These lines are indented one tab too far. Delete the extra tabs. Signed-off-by: Dan Carpenter --- drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.

[PATCH] drm/amdgpu: Use tabs for indenting in amdgpu_sdma_reset_engine()

2025-03-10 Thread Dan Carpenter
This line has a seven space indent instead of a tab. Signed-off-by: Dan Carpenter --- drivers/gpu/drm/amd/amdgpu/amdgpu_sdma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_sdma.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_sdma.c index 39669f8788

[PATCH] drm/amdgpu: correct the runtime deference for mes_userq_mqd_create()

2025-03-10 Thread Prike Liang
When the runtime resume failed, then the runtime uage decreased at free_mqd. So the runtime resume error handler doesn't need to decrease the runtime usage separately. Fixes: 4baa0dcac737 ("drm/amdgpu: validate return value of pm_runtime_get_sync") Signed-off-by: Prike Liang --- drivers/gpu/drm/

Re: [PATCH] drm/amdgpu: NULL-check BO's backing store when determining GFX12 PTE flags

2025-03-10 Thread Alex Deucher
Applied. Thanks! On Mon, Mar 10, 2025 at 2:03 PM Christian König wrote: > > Am 10.03.25 um 18:08 schrieb Natalie Vock: > > PRT BOs may not have any backing store, so bo->tbo.resource will be > > NULL. Check for that before dereferencing. > > > > Fixes: 0cce5f285d9ae8 ("drm/amdkfd: Check correct

Re: [PATCH 2/2] drm/amdgpu: Make use of drm_wedge_app_info

2025-03-10 Thread Alex Deucher
On Mon, Mar 10, 2025 at 5:54 PM André Almeida wrote: > > Em 01/03/2025 03:04, Raag Jadav escreveu: > > On Fri, Feb 28, 2025 at 06:49:43PM -0300, André Almeida wrote: > >> Hi Raag, > >> > >> On 2/28/25 11:58, Raag Jadav wrote: > >>> On Fri, Feb 28, 2025 at 09:13:53AM -0300, André Almeida wrote: > >

Re: [PATCH v3] drm/amdgpu: Trigger a wedged event for ring reset

2025-03-10 Thread Alex Deucher
Applied. Thanks On Tue, Mar 4, 2025 at 4:29 AM Christian König wrote: > > Am 25.02.25 um 02:02 schrieb André Almeida: > > Instead of only triggering a wedged event for complete GPU resets, > > trigger for ring resets. Regardless of the reset, it's useful for > > userspace to know that it happen

Re: [PATCH] drm/amdgpu: correct the runtime deference for mes_userq_mqd_create()

2025-03-10 Thread Alex Deucher
On Mon, Mar 10, 2025 at 9:33 AM Prike Liang wrote: > > When the runtime resume failed, then the runtime uage decreased at > free_mqd. So the runtime resume error handler doesn't need to decrease > the runtime usage separately. > > Fixes: 4baa0dcac737 ("drm/amdgpu: validate return value of > pm_ru