amd-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Remove stable HAINAN board from max_sclk override check in radeon and amdgpu modules
@ 2020-03-17  7:51 Yassine Oudjana
  2020-03-19 19:30 ` Alex Deucher
  0 siblings, 1 reply; 2+ messages in thread
From: Yassine Oudjana @ 2020-03-17  7:51 UTC (permalink / raw)
  To: alexander.deucher, christian.koenig, David1.Zhou, amd-gfx,
	dri-devel, airlied, daniel

Signed-off-by: Yassine Oudjana <y.oudjana@protonmail.com>
---
 drivers/gpu/drm/amd/amdgpu/si_dpm.c | 1 -
 drivers/gpu/drm/radeon/si_dpm.c     | 1 -
 2 files changed, 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/si_dpm.c b/drivers/gpu/drm/amd/amdgpu/si_dpm.c
index 4cb4c891120b..0860e85a2d35 100644
--- a/drivers/gpu/drm/amd/amdgpu/si_dpm.c
+++ b/drivers/gpu/drm/amd/amdgpu/si_dpm.c
@@ -3439,7 +3439,6 @@ static void si_apply_state_adjust_rules(struct amdgpu_device *adev,

 	if (adev->asic_type == CHIP_HAINAN) {
 		if ((adev->pdev->revision == 0x81) ||
-		    (adev->pdev->revision == 0x83) ||
 		    (adev->pdev->revision == 0xC3) ||
 		    (adev->pdev->device == 0x6664) ||
 		    (adev->pdev->device == 0x6665) ||
diff --git a/drivers/gpu/drm/radeon/si_dpm.c b/drivers/gpu/drm/radeon/si_dpm.c
index 05e8b4d0af3f..2cb85dbe728f 100644
--- a/drivers/gpu/drm/radeon/si_dpm.c
+++ b/drivers/gpu/drm/radeon/si_dpm.c
@@ -2979,7 +2979,6 @@ static void si_apply_state_adjust_rules(struct radeon_device *rdev,

 	if (rdev->family == CHIP_HAINAN) {
 		if ((rdev->pdev->revision == 0x81) ||
-		    (rdev->pdev->revision == 0x83) ||
 		    (rdev->pdev->revision == 0xC3) ||
 		    (rdev->pdev->device == 0x6664) ||
 		    (rdev->pdev->device == 0x6665) ||
--
2.25.1

_______________________________________________
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] Remove stable HAINAN board from max_sclk override check in radeon and amdgpu modules
  2020-03-17  7:51 [PATCH] Remove stable HAINAN board from max_sclk override check in radeon and amdgpu modules Yassine Oudjana
@ 2020-03-19 19:30 ` Alex Deucher
  0 siblings, 0 replies; 2+ messages in thread
From: Alex Deucher @ 2020-03-19 19:30 UTC (permalink / raw)
  To: Yassine Oudjana
  Cc: David1.Zhou, airlied, dri-devel, amd-gfx, daniel,
	alexander.deucher, christian.koenig

On Tue, Mar 17, 2020 at 9:50 AM Yassine Oudjana
<y.oudjana@protonmail.com> wrote:
>
> Signed-off-by: Yassine Oudjana <y.oudjana@protonmail.com>

Applied.  Thanks!

Alex

> ---
>  drivers/gpu/drm/amd/amdgpu/si_dpm.c | 1 -
>  drivers/gpu/drm/radeon/si_dpm.c     | 1 -
>  2 files changed, 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/si_dpm.c b/drivers/gpu/drm/amd/amdgpu/si_dpm.c
> index 4cb4c891120b..0860e85a2d35 100644
> --- a/drivers/gpu/drm/amd/amdgpu/si_dpm.c
> +++ b/drivers/gpu/drm/amd/amdgpu/si_dpm.c
> @@ -3439,7 +3439,6 @@ static void si_apply_state_adjust_rules(struct amdgpu_device *adev,
>
>         if (adev->asic_type == CHIP_HAINAN) {
>                 if ((adev->pdev->revision == 0x81) ||
> -                   (adev->pdev->revision == 0x83) ||
>                     (adev->pdev->revision == 0xC3) ||
>                     (adev->pdev->device == 0x6664) ||
>                     (adev->pdev->device == 0x6665) ||
> diff --git a/drivers/gpu/drm/radeon/si_dpm.c b/drivers/gpu/drm/radeon/si_dpm.c
> index 05e8b4d0af3f..2cb85dbe728f 100644
> --- a/drivers/gpu/drm/radeon/si_dpm.c
> +++ b/drivers/gpu/drm/radeon/si_dpm.c
> @@ -2979,7 +2979,6 @@ static void si_apply_state_adjust_rules(struct radeon_device *rdev,
>
>         if (rdev->family == CHIP_HAINAN) {
>                 if ((rdev->pdev->revision == 0x81) ||
> -                   (rdev->pdev->revision == 0x83) ||
>                     (rdev->pdev->revision == 0xC3) ||
>                     (rdev->pdev->device == 0x6664) ||
>                     (rdev->pdev->device == 0x6665) ||
> --
> 2.25.1
>
> _______________________________________________
> 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:[~2020-03-19 19:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-17  7:51 [PATCH] Remove stable HAINAN board from max_sclk override check in radeon and amdgpu modules Yassine Oudjana
2020-03-19 19:30 ` Alex Deucher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).