All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/amdgpu: correct amdgpu ip block rev info
@ 2023-10-31  2:50 Yang Wang
  2023-10-31  3:07 ` Feng, Kenneth
  2023-10-31  4:06 ` Lazar, Lijo
  0 siblings, 2 replies; 3+ messages in thread
From: Yang Wang @ 2023-10-31  2:50 UTC (permalink / raw)
  To: amd-gfx; +Cc: Yang Wang

correct following amdgpu ip block version information:
- gfx_v9_4_3
- sdma_v4_4_2

Signed-off-by: Yang Wang <kevinyang.wang@amd.com>
---
 drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c  | 2 +-
 drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c
index b3d4458e3889..1c46d205c0ac 100644
--- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c
+++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c
@@ -4295,7 +4295,7 @@ const struct amdgpu_ip_block_version gfx_v9_4_3_ip_block = {
 	.type = AMD_IP_BLOCK_TYPE_GFX,
 	.major = 9,
 	.minor = 4,
-	.rev = 0,
+	.rev = 3,
 	.funcs = &gfx_v9_4_3_ip_funcs,
 };
 
diff --git a/drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c b/drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c
index c46bc6aa4f48..c851413ba6b5 100644
--- a/drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c
+++ b/drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c
@@ -2048,7 +2048,7 @@ const struct amdgpu_ip_block_version sdma_v4_4_2_ip_block = {
 	.type = AMD_IP_BLOCK_TYPE_SDMA,
 	.major = 4,
 	.minor = 4,
-	.rev = 0,
+	.rev = 2,
 	.funcs = &sdma_v4_4_2_ip_funcs,
 };
 
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* RE: [PATCH] drm/amdgpu: correct amdgpu ip block rev info
  2023-10-31  2:50 [PATCH] drm/amdgpu: correct amdgpu ip block rev info Yang Wang
@ 2023-10-31  3:07 ` Feng, Kenneth
  2023-10-31  4:06 ` Lazar, Lijo
  1 sibling, 0 replies; 3+ messages in thread
From: Feng, Kenneth @ 2023-10-31  3:07 UTC (permalink / raw)
  To: Wang, Yang(Kevin), amd-gfx@lists.freedesktop.org; +Cc: Wang, Yang(Kevin)

[AMD Official Use Only - General]

Reviewed-by: Kenneth Feng <kenneth.feng@amd.com>


-----Original Message-----
From: amd-gfx <amd-gfx-bounces@lists.freedesktop.org> On Behalf Of Yang Wang
Sent: Tuesday, October 31, 2023 10:50 AM
To: amd-gfx@lists.freedesktop.org
Cc: Wang, Yang(Kevin) <KevinYang.Wang@amd.com>
Subject: [PATCH] drm/amdgpu: correct amdgpu ip block rev info

Caution: This message originated from an External Source. Use proper caution when opening attachments, clicking links, or responding.


correct following amdgpu ip block version information:
- gfx_v9_4_3
- sdma_v4_4_2

Signed-off-by: Yang Wang <kevinyang.wang@amd.com>
---
 drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c  | 2 +-  drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c
index b3d4458e3889..1c46d205c0ac 100644
--- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c
+++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c
@@ -4295,7 +4295,7 @@ const struct amdgpu_ip_block_version gfx_v9_4_3_ip_block = {
        .type = AMD_IP_BLOCK_TYPE_GFX,
        .major = 9,
        .minor = 4,
-       .rev = 0,
+       .rev = 3,
        .funcs = &gfx_v9_4_3_ip_funcs,
 };

diff --git a/drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c b/drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c
index c46bc6aa4f48..c851413ba6b5 100644
--- a/drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c
+++ b/drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c
@@ -2048,7 +2048,7 @@ const struct amdgpu_ip_block_version sdma_v4_4_2_ip_block = {
        .type = AMD_IP_BLOCK_TYPE_SDMA,
        .major = 4,
        .minor = 4,
-       .rev = 0,
+       .rev = 2,
        .funcs = &sdma_v4_4_2_ip_funcs,
 };

--
2.34.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] drm/amdgpu: correct amdgpu ip block rev info
  2023-10-31  2:50 [PATCH] drm/amdgpu: correct amdgpu ip block rev info Yang Wang
  2023-10-31  3:07 ` Feng, Kenneth
@ 2023-10-31  4:06 ` Lazar, Lijo
  1 sibling, 0 replies; 3+ messages in thread
From: Lazar, Lijo @ 2023-10-31  4:06 UTC (permalink / raw)
  To: Yang Wang, amd-gfx



On 10/31/2023 8:20 AM, Yang Wang wrote:
> correct following amdgpu ip block version information:
> - gfx_v9_4_3
> - sdma_v4_4_2
> 
> Signed-off-by: Yang Wang <kevinyang.wang@amd.com>

Reviewed-by: Lijo Lazar <lijo.lazar@amd.com>

Thanks,
Lijo

> ---
>   drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c  | 2 +-
>   drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c
> index b3d4458e3889..1c46d205c0ac 100644
> --- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c
> +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c
> @@ -4295,7 +4295,7 @@ const struct amdgpu_ip_block_version gfx_v9_4_3_ip_block = {
>   	.type = AMD_IP_BLOCK_TYPE_GFX,
>   	.major = 9,
>   	.minor = 4,
> -	.rev = 0,
> +	.rev = 3,
>   	.funcs = &gfx_v9_4_3_ip_funcs,
>   };
>   
> diff --git a/drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c b/drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c
> index c46bc6aa4f48..c851413ba6b5 100644
> --- a/drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c
> +++ b/drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c
> @@ -2048,7 +2048,7 @@ const struct amdgpu_ip_block_version sdma_v4_4_2_ip_block = {
>   	.type = AMD_IP_BLOCK_TYPE_SDMA,
>   	.major = 4,
>   	.minor = 4,
> -	.rev = 0,
> +	.rev = 2,
>   	.funcs = &sdma_v4_4_2_ip_funcs,
>   };
>   

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-10-31  4:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-31  2:50 [PATCH] drm/amdgpu: correct amdgpu ip block rev info Yang Wang
2023-10-31  3:07 ` Feng, Kenneth
2023-10-31  4:06 ` Lazar, Lijo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.