All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/amdgpu: Quit RAS initialization earlier if RAS is disabled
@ 2021-05-07  1:14 Oak Zeng
  2021-05-07 13:05 ` Zhang, Hawking
  0 siblings, 1 reply; 4+ messages in thread
From: Oak Zeng @ 2021-05-07  1:14 UTC (permalink / raw)
  To: amd-gfx; +Cc: mukul.joshi, Oak Zeng, lijo.lazar, John.clements, hawking.zhang

If RAS is disabled through amdgpu_ras_enable kernel parameter,
we should quit the RAS initialization eariler to avoid initialization
of some RAS data structure such as sysfs etc.

Signed-off-by: Oak Zeng <Oak.Zeng@amd.com>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
index ebbe2c5..7e65b35 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
@@ -2155,7 +2155,7 @@ int amdgpu_ras_init(struct amdgpu_device *adev)
 
 	amdgpu_ras_check_supported(adev, &con->hw_supported,
 			&con->supported);
-	if (!con->hw_supported || (adev->asic_type == CHIP_VEGA10)) {
+	if (!adev->ras_features || (adev->asic_type == CHIP_VEGA10)) {
 		/* set gfx block ras context feature for VEGA20 Gaming
 		 * send ras disable cmd to ras ta during ras late init.
 		 */
-- 
2.7.4

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

* RE: [PATCH] drm/amdgpu: Quit RAS initialization earlier if RAS is disabled
  2021-05-07  1:14 [PATCH] drm/amdgpu: Quit RAS initialization earlier if RAS is disabled Oak Zeng
@ 2021-05-07 13:05 ` Zhang, Hawking
  2021-05-07 19:12   ` Zeng, Oak
  0 siblings, 1 reply; 4+ messages in thread
From: Zhang, Hawking @ 2021-05-07 13:05 UTC (permalink / raw)
  To: Zeng, Oak, amd-gfx; +Cc: Joshi, Mukul, Lazar, Lijo, Clements, John

[AMD Public Use]

Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>

Regards,
Hawking
-----Original Message-----
From: Zeng, Oak <Oak.Zeng@amd.com> 
Sent: Friday, May 7, 2021 09:15
To: amd-gfx@lists.freedesktop.org
Cc: Zhang, Hawking <Hawking.Zhang@amd.com>; Lazar, Lijo <Lijo.Lazar@amd.com>; Clements, John <John.Clements@amd.com>; Joshi, Mukul <Mukul.Joshi@amd.com>; Zeng, Oak <Oak.Zeng@amd.com>
Subject: [PATCH] drm/amdgpu: Quit RAS initialization earlier if RAS is disabled

If RAS is disabled through amdgpu_ras_enable kernel parameter, we should quit the RAS initialization eariler to avoid initialization of some RAS data structure such as sysfs etc.

Signed-off-by: Oak Zeng <Oak.Zeng@amd.com>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
index ebbe2c5..7e65b35 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
@@ -2155,7 +2155,7 @@ int amdgpu_ras_init(struct amdgpu_device *adev)
 
 	amdgpu_ras_check_supported(adev, &con->hw_supported,
 			&con->supported);
-	if (!con->hw_supported || (adev->asic_type == CHIP_VEGA10)) {
+	if (!adev->ras_features || (adev->asic_type == CHIP_VEGA10)) {
 		/* set gfx block ras context feature for VEGA20 Gaming
 		 * send ras disable cmd to ras ta during ras late init.
 		 */
--
2.7.4
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

* Re: [PATCH] drm/amdgpu: Quit RAS initialization earlier if RAS is disabled
  2021-05-07 13:05 ` Zhang, Hawking
@ 2021-05-07 19:12   ` Zeng, Oak
  2021-05-08  8:45     ` Zhang, Hawking
  0 siblings, 1 reply; 4+ messages in thread
From: Zeng, Oak @ 2021-05-07 19:12 UTC (permalink / raw)
  To: Zhang, Hawking, amd-gfx; +Cc: Joshi, Mukul, Lazar, Lijo, Clements, John

Thank you Hawking for reviewing this. I made a mistake when I pushed this in. I forgot to add " Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>". 

Regards,
Oak 

 

On 2021-05-07, 9:05 AM, "Zhang, Hawking" <Hawking.Zhang@amd.com> wrote:

    [AMD Public Use]

    Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>

    Regards,
    Hawking
    -----Original Message-----
    From: Zeng, Oak <Oak.Zeng@amd.com> 
    Sent: Friday, May 7, 2021 09:15
    To: amd-gfx@lists.freedesktop.org
    Cc: Zhang, Hawking <Hawking.Zhang@amd.com>; Lazar, Lijo <Lijo.Lazar@amd.com>; Clements, John <John.Clements@amd.com>; Joshi, Mukul <Mukul.Joshi@amd.com>; Zeng, Oak <Oak.Zeng@amd.com>
    Subject: [PATCH] drm/amdgpu: Quit RAS initialization earlier if RAS is disabled

    If RAS is disabled through amdgpu_ras_enable kernel parameter, we should quit the RAS initialization eariler to avoid initialization of some RAS data structure such as sysfs etc.

    Signed-off-by: Oak Zeng <Oak.Zeng@amd.com>
    ---
     drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c | 2 +-
     1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
    index ebbe2c5..7e65b35 100644
    --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
    +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
    @@ -2155,7 +2155,7 @@ int amdgpu_ras_init(struct amdgpu_device *adev)

     	amdgpu_ras_check_supported(adev, &con->hw_supported,
     			&con->supported);
    -	if (!con->hw_supported || (adev->asic_type == CHIP_VEGA10)) {
    +	if (!adev->ras_features || (adev->asic_type == CHIP_VEGA10)) {
     		/* set gfx block ras context feature for VEGA20 Gaming
     		 * send ras disable cmd to ras ta during ras late init.
     		 */
    --
    2.7.4

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

* RE: [PATCH] drm/amdgpu: Quit RAS initialization earlier if RAS is disabled
  2021-05-07 19:12   ` Zeng, Oak
@ 2021-05-08  8:45     ` Zhang, Hawking
  0 siblings, 0 replies; 4+ messages in thread
From: Zhang, Hawking @ 2021-05-08  8:45 UTC (permalink / raw)
  To: Zeng, Oak, amd-gfx; +Cc: Joshi, Mukul, Lazar, Lijo, Clements, John

[AMD Public Use]

No worry. I made similar mistake before.

Regards,
Hawking

-----Original Message-----
From: Zeng, Oak <Oak.Zeng@amd.com> 
Sent: Saturday, May 8, 2021 03:13
To: Zhang, Hawking <Hawking.Zhang@amd.com>; amd-gfx@lists.freedesktop.org
Cc: Lazar, Lijo <Lijo.Lazar@amd.com>; Clements, John <John.Clements@amd.com>; Joshi, Mukul <Mukul.Joshi@amd.com>
Subject: Re: [PATCH] drm/amdgpu: Quit RAS initialization earlier if RAS is disabled

Thank you Hawking for reviewing this. I made a mistake when I pushed this in. I forgot to add " Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>". 

Regards,
Oak 

 

On 2021-05-07, 9:05 AM, "Zhang, Hawking" <Hawking.Zhang@amd.com> wrote:

    [AMD Public Use]

    Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>

    Regards,
    Hawking
    -----Original Message-----
    From: Zeng, Oak <Oak.Zeng@amd.com> 
    Sent: Friday, May 7, 2021 09:15
    To: amd-gfx@lists.freedesktop.org
    Cc: Zhang, Hawking <Hawking.Zhang@amd.com>; Lazar, Lijo <Lijo.Lazar@amd.com>; Clements, John <John.Clements@amd.com>; Joshi, Mukul <Mukul.Joshi@amd.com>; Zeng, Oak <Oak.Zeng@amd.com>
    Subject: [PATCH] drm/amdgpu: Quit RAS initialization earlier if RAS is disabled

    If RAS is disabled through amdgpu_ras_enable kernel parameter, we should quit the RAS initialization eariler to avoid initialization of some RAS data structure such as sysfs etc.

    Signed-off-by: Oak Zeng <Oak.Zeng@amd.com>
    ---
     drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c | 2 +-
     1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
    index ebbe2c5..7e65b35 100644
    --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
    +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
    @@ -2155,7 +2155,7 @@ int amdgpu_ras_init(struct amdgpu_device *adev)

     	amdgpu_ras_check_supported(adev, &con->hw_supported,
     			&con->supported);
    -	if (!con->hw_supported || (adev->asic_type == CHIP_VEGA10)) {
    +	if (!adev->ras_features || (adev->asic_type == CHIP_VEGA10)) {
     		/* set gfx block ras context feature for VEGA20 Gaming
     		 * send ras disable cmd to ras ta during ras late init.
     		 */
    --
    2.7.4
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

end of thread, other threads:[~2021-05-08  8:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-07  1:14 [PATCH] drm/amdgpu: Quit RAS initialization earlier if RAS is disabled Oak Zeng
2021-05-07 13:05 ` Zhang, Hawking
2021-05-07 19:12   ` Zeng, Oak
2021-05-08  8:45     ` Zhang, Hawking

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.