Re: [PATCH 1/2] amdgpu: add the amdgpu_vm ptr in the vm_bo_map/unmap events

2024-06-05 Thread Pelloux-Prayer, Pierre-Eric
oenig, Christian ; Pelloux-Prayer, Pierre-Eric ; Deucher, Alexander ; amd-gfx@lists.freedesktop.org Subject: Re: [PATCH 1/2] amdgpu: add the amdgpu_vm ptr in the vm_bo_map/unmap events Am 03.06.24 um 13:52 schrieb Pierre-Eric Pelloux-Prayer: > Hi Christia, > > Le 03/06/2024 à 11

Re: [PATCH] drm/amdgpu: add VISIBLE info in amdgpu_bo_print_info

2023-06-26 Thread Pelloux-Prayer, Pierre-Eric
[Public] Thanks Christian for the review. I'll remove the leading blanks before submitting the patch. Pierre-Eric From: Koenig, Christian Sent: Wednesday, June 21, 2023 5:00 PM To: Pelloux-Prayer, Pierre-Eric ; amd-gfx@lists.freedesktop.org Subjec

Re: [PATCH] drm/amdgpu/sdma5: do not execute 0-sized IBs (v2)

2019-10-23 Thread Pelloux-prayer, Pierre-eric
Hi Alex, On 23/10/2019 14:50, Deucher, Alexander wrote: >> -Original Message- >> From: amd-gfx On Behalf Of >> Christian König >> Sent: Wednesday, October 23, 2019 3:33 AM >> To: Pelloux-prayer, Pierre-eric ; amd- >> g...@lists.freedesktop.org >>

[PATCH] drm/amdgpu: call amdgpu_vm_prt_fini before deleting the root PD

2019-10-23 Thread Pelloux-prayer, Pierre-eric
amdgpu_vm_prt_fini uses "vm->root.base.bo" so it must still be valid when we call it. Fixes: b65709a92156 ("drm/amdgpu: reserve the root PD while freeing PASIDs") Signed-off-by: Pierre-Eric Pelloux-Prayer --- drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c | 19 ++- 1 file changed, 10 ins

[PATCH] drm/amdgpu/sdma5: do not execute 0-sized IBs (v2)

2019-10-22 Thread Pelloux-prayer, Pierre-eric
This seems to help with https://bugs.freedesktop.org/show_bug.cgi?id=111481. v2: insert a NOP instead of skipping all 0-sized IBs to avoid breaking older hw Signed-off-by: Pierre-Eric Pelloux-Prayer --- drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c | 1 + 1 file changed, 1 insertion(+) diff --git a/d

Re: [PATCH] drm/amdgpu: do not execute 0-sized IBs

2019-10-03 Thread Pelloux-prayer, Pierre-eric
------------- > *From:* amd-gfx on behalf of > Pelloux-prayer, Pierre-eric > *Sent:* Thursday, October 3, 2019 4:25 AM > *To:* Koenig, Christian ; > amd-gfx@lists.freedesktop.org > *Subject:* Re: [PATCH] drm/amdgpu: do not execute 0

Re: [PATCH] drm/amdgpu: do not execute 0-sized IBs

2019-10-03 Thread Pelloux-prayer, Pierre-eric
On 03/10/2019 10:09, Christian König wrote: > Am 03.10.19 um 10:03 schrieb Pelloux-prayer, Pierre-eric: >> This can be safely skipped entirely. >> This seems to help with https://bugs.freedesktop.org/show_bug.cgi?id=111481. > > NAK, please instead fix gmc_v10_0_flush_gpu_tl

[PATCH] drm/amdgpu: do not execute 0-sized IBs

2019-10-03 Thread Pelloux-prayer, Pierre-eric
This can be safely skipped entirely. This seems to help with https://bugs.freedesktop.org/show_bug.cgi?id=111481. Signed-off-by: Pierre-Eric Pelloux-Prayer --- drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c | 5 + 1 file changed, 5 insertions(+) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c

[PATCH] drm/amdgpu: fix gfx9 soft recovery

2019-08-07 Thread Pelloux-prayer, Pierre-eric
The SOC15_REG_OFFSET() macro wasn't used, making the soft recovery fail. v2: use WREG32_SOC15 instead of WREG32 + SOC15_REG_OFFSET Signed-off-by: Pierre-Eric Pelloux-Prayer Reviewed-by: Alex Deucher --- drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[PATCH] drm/amdgpu: fix gfx9 soft recovery

2019-08-06 Thread Pelloux-prayer, Pierre-eric
The SOC15_REG_OFFSET() macro wasn't used, making the soft recovery fail. Signed-off-by: Pierre-Eric Pelloux-Prayer --- drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx

Re: [PATCH 10/10] drm/amdgpu: stop removing BOs from the LRU v3

2019-05-29 Thread Pelloux-prayer, Pierre-eric
Hi Christian, The series is: Tested-by: Pierre-Eric Pelloux-Prayer Pierre-Eric On 29/05/2019 14:27, Christian König wrote: > This avoids OOM situations when we have lots of threads > submitting at the same time. > > v3: apply this to the whole driver, not just CS >