* [PATCH] drm/amdgpu: disable page queue support for Vega12
@ 2018-11-21 14:54 Alex Deucher
[not found] ` <20181121145440.4626-1-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Alex Deucher @ 2018-11-21 14:54 UTC (permalink / raw)
To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Alex Deucher
Keep it disabled until we confirm it's ready.
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
---
drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c b/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c
index e6cb2c399957..a973dea7b242 100644
--- a/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c
@@ -1455,9 +1455,10 @@ static bool sdma_v4_0_fw_support_paging_queue(struct amdgpu_device *adev)
case CHIP_VEGA10:
return fw_version >= 430;
case CHIP_VEGA12:
- return fw_version >= 31;
+ /*return fw_version >= 31;*/
+ return false;
case CHIP_VEGA20:
- //return fw_version >= 115;
+ /*return fw_version >= 115;*/
return false;
default:
return false;
--
2.13.6
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx
^ permalink raw reply related [flat|nested] 3+ messages in thread[parent not found: <20181121145440.4626-1-alexander.deucher-5C7GfCeVMHo@public.gmane.org>]
* Re: [PATCH] drm/amdgpu: disable page queue support for Vega12 [not found] ` <20181121145440.4626-1-alexander.deucher-5C7GfCeVMHo@public.gmane.org> @ 2018-11-21 15:04 ` Yang, Philip [not found] ` <1e279bbd-dd7d-2c1e-ae71-5f5ac89a255c-5C7GfCeVMHo@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Yang, Philip @ 2018-11-21 15:04 UTC (permalink / raw) To: Alex Deucher, amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org Cc: Deucher, Alexander Reviewed-by: Philip Yang <philip.yang@amd.com> On 2018-11-21 9:54 a.m., Alex Deucher wrote: > Keep it disabled until we confirm it's ready. > > Signed-off-by: Alex Deucher <alexander.deucher@amd.com> > --- > drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c b/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c > index e6cb2c399957..a973dea7b242 100644 > --- a/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c > +++ b/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c > @@ -1455,9 +1455,10 @@ static bool sdma_v4_0_fw_support_paging_queue(struct amdgpu_device *adev) > case CHIP_VEGA10: > return fw_version >= 430; > case CHIP_VEGA12: > - return fw_version >= 31; > + /*return fw_version >= 31;*/ > + return false; > case CHIP_VEGA20: > - //return fw_version >= 115; > + /*return fw_version >= 115;*/ > return false; > default: > return false; _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply [flat|nested] 3+ messages in thread
[parent not found: <1e279bbd-dd7d-2c1e-ae71-5f5ac89a255c-5C7GfCeVMHo@public.gmane.org>]
* Re: [PATCH] drm/amdgpu: disable page queue support for Vega12 [not found] ` <1e279bbd-dd7d-2c1e-ae71-5f5ac89a255c-5C7GfCeVMHo@public.gmane.org> @ 2018-11-22 9:16 ` Christian König 0 siblings, 0 replies; 3+ messages in thread From: Christian König @ 2018-11-22 9:16 UTC (permalink / raw) To: Yang, Philip, Alex Deucher, amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org Cc: Deucher, Alexander Reviewed-by: Christian König <christian.koenig@amd.com> Am 21.11.18 um 16:04 schrieb Yang, Philip: > Reviewed-by: Philip Yang <philip.yang@amd.com> > > > On 2018-11-21 9:54 a.m., Alex Deucher wrote: >> Keep it disabled until we confirm it's ready. >> >> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> >> --- >> drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c | 5 +++-- >> 1 file changed, 3 insertions(+), 2 deletions(-) >> >> diff --git a/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c b/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c >> index e6cb2c399957..a973dea7b242 100644 >> --- a/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c >> +++ b/drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c >> @@ -1455,9 +1455,10 @@ static bool sdma_v4_0_fw_support_paging_queue(struct amdgpu_device *adev) >> case CHIP_VEGA10: >> return fw_version >= 430; >> case CHIP_VEGA12: >> - return fw_version >= 31; >> + /*return fw_version >= 31;*/ >> + return false; >> case CHIP_VEGA20: >> - //return fw_version >= 115; >> + /*return fw_version >= 115;*/ >> return false; >> default: >> return false; > _______________________________________________ > 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] 3+ messages in thread
end of thread, other threads:[~2018-11-22 9:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-21 14:54 [PATCH] drm/amdgpu: disable page queue support for Vega12 Alex Deucher
[not found] ` <20181121145440.4626-1-alexander.deucher-5C7GfCeVMHo@public.gmane.org>
2018-11-21 15:04 ` Yang, Philip
[not found] ` <1e279bbd-dd7d-2c1e-ae71-5f5ac89a255c-5C7GfCeVMHo@public.gmane.org>
2018-11-22 9:16 ` Christian König
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox