* [PATCH] drm/amdgpu/si: Call amdgpu_ttm_set_active_vram_size from si_dma_start/stop
@ 2016-09-07 2:52 Michel Dänzer
[not found] ` <20160907025232.5963-1-michel-otUistvHUpPR7s880joybQ@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Michel Dänzer @ 2016-09-07 2:52 UTC (permalink / raw)
To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW
From: Michel Dänzer <michel.daenzer@amd.com>
Without this, we were only ever using the first 256MB of VRAM.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=97593
Tested-by: Konstantin A. Lepikhov <lakostis@altlinux.org>
Tested-by: Arek Ruśniak <arek.rusi@gmail.com>
Signed-off-by: Michel Dänzer <michel.daenzer@amd.com>
---
drivers/gpu/drm/amd/amdgpu/si_dma.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/gpu/drm/amd/amdgpu/si_dma.c b/drivers/gpu/drm/amd/amdgpu/si_dma.c
index 377f4ae..b0f41cc 100644
--- a/drivers/gpu/drm/amd/amdgpu/si_dma.c
+++ b/drivers/gpu/drm/amd/amdgpu/si_dma.c
@@ -137,6 +137,8 @@ static void si_dma_stop(struct amdgpu_device *adev)
rb_cntl &= ~DMA_RB_ENABLE;
WREG32(DMA_RB_CNTL + sdma_offsets[i], rb_cntl);
+ if (adev->mman.buffer_funcs_ring == ring)
+ amdgpu_ttm_set_active_vram_size(adev, adev->mc.visible_vram_size);
ring->ready = false;
}
}
@@ -198,6 +200,9 @@ static int si_dma_start(struct amdgpu_device *adev)
ring->ready = false;
return r;
}
+
+ if (adev->mman.buffer_funcs_ring == ring)
+ amdgpu_ttm_set_active_vram_size(adev, adev->mc.real_vram_size);
}
return 0;
--
2.9.3
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx
^ permalink raw reply related [flat|nested] 2+ messages in thread
* RE: [PATCH] drm/amdgpu/si: Call amdgpu_ttm_set_active_vram_size from si_dma_start/stop
[not found] ` <20160907025232.5963-1-michel-otUistvHUpPR7s880joybQ@public.gmane.org>
@ 2016-09-07 15:02 ` Deucher, Alexander
0 siblings, 0 replies; 2+ messages in thread
From: Deucher, Alexander @ 2016-09-07 15:02 UTC (permalink / raw)
To: 'Michel Dänzer',
amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
> -----Original Message-----
> From: amd-gfx [mailto:amd-gfx-bounces@lists.freedesktop.org] On Behalf
> Of Michel Dänzer
> Sent: Tuesday, September 06, 2016 10:53 PM
> To: amd-gfx@lists.freedesktop.org
> Subject: [PATCH] drm/amdgpu/si: Call amdgpu_ttm_set_active_vram_size
> from si_dma_start/stop
>
> From: Michel Dänzer <michel.daenzer@amd.com>
>
> Without this, we were only ever using the first 256MB of VRAM.
>
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=97593
> Tested-by: Konstantin A. Lepikhov <lakostis@altlinux.org>
> Tested-by: Arek Ruśniak <arek.rusi@gmail.com>
> Signed-off-by: Michel Dänzer <michel.daenzer@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
> ---
> drivers/gpu/drm/amd/amdgpu/si_dma.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/si_dma.c
> b/drivers/gpu/drm/amd/amdgpu/si_dma.c
> index 377f4ae..b0f41cc 100644
> --- a/drivers/gpu/drm/amd/amdgpu/si_dma.c
> +++ b/drivers/gpu/drm/amd/amdgpu/si_dma.c
> @@ -137,6 +137,8 @@ static void si_dma_stop(struct amdgpu_device
> *adev)
> rb_cntl &= ~DMA_RB_ENABLE;
> WREG32(DMA_RB_CNTL + sdma_offsets[i], rb_cntl);
>
> + if (adev->mman.buffer_funcs_ring == ring)
> + amdgpu_ttm_set_active_vram_size(adev, adev-
> >mc.visible_vram_size);
> ring->ready = false;
> }
> }
> @@ -198,6 +200,9 @@ static int si_dma_start(struct amdgpu_device *adev)
> ring->ready = false;
> return r;
> }
> +
> + if (adev->mman.buffer_funcs_ring == ring)
> + amdgpu_ttm_set_active_vram_size(adev, adev-
> >mc.real_vram_size);
> }
>
> return 0;
> --
> 2.9.3
>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-09-07 15:02 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-07 2:52 [PATCH] drm/amdgpu/si: Call amdgpu_ttm_set_active_vram_size from si_dma_start/stop Michel Dänzer
[not found] ` <20160907025232.5963-1-michel-otUistvHUpPR7s880joybQ@public.gmane.org>
2016-09-07 15:02 ` Deucher, Alexander
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox