AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Lazar, Lijo" <lijo.lazar@amd.com>
To: Le Ma <le.ma@amd.com>, amd-gfx@lists.freedesktop.org
Cc: hawking.zhang@amd.com, Asher.Song@amd.com, alexander.deucher@amd.com
Subject: Re: [PATCH 1/1] drm/amdgpu: drop setting buffer funcs in sdma442
Date: Fri, 15 Mar 2024 15:49:32 +0530	[thread overview]
Message-ID: <e51b0612-e5e3-48e6-a600-983b45c7ba19@amd.com> (raw)
In-Reply-To: <9b808afd-8daa-40e2-a4c9-365ef4bd63cd@amd.com>



On 3/15/2024 3:43 PM, Lazar, Lijo wrote:
> 
> 
> On 3/15/2024 2:46 PM, Le Ma wrote:
>> To fix the entity rq NULL issue. This setting has been moved to upper level.
>>
> 
> Need to call amdgpu_ttm_set_buffer_funcs_status(adev, true/false) in
> mode-2 reset handlers as well.
> 

Please also check if it's required here as well -
amdgpu_device_ip_reinit_late_sriov()

Thanks,
Lijo

> Thanks,
> Lijo
> 
>> Fixes b70438004a14 ("drm/amdgpu: move buffer funcs setting up a level")
>>
>> Signed-off-by: Le Ma <le.ma@amd.com>
>> ---
>>  drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c | 20 +-------------------
>>  1 file changed, 1 insertion(+), 19 deletions(-)
>>
>> 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 eaa4f5f49949..589a734982a7 100644
>> --- a/drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c
>> +++ b/drivers/gpu/drm/amd/amdgpu/sdma_v4_4_2.c
>> @@ -431,16 +431,11 @@ static void sdma_v4_4_2_inst_gfx_stop(struct amdgpu_device *adev,
>>  	struct amdgpu_ring *sdma[AMDGPU_MAX_SDMA_INSTANCES];
>>  	u32 doorbell_offset, doorbell;
>>  	u32 rb_cntl, ib_cntl;
>> -	int i, unset = 0;
>> +	int i;
>>  
>>  	for_each_inst(i, inst_mask) {
>>  		sdma[i] = &adev->sdma.instance[i].ring;
>>  
>> -		if ((adev->mman.buffer_funcs_ring == sdma[i]) && unset != 1) {
>> -			amdgpu_ttm_set_buffer_funcs_status(adev, false);
>> -			unset = 1;
>> -		}
>> -
>>  		rb_cntl = RREG32_SDMA(i, regSDMA_GFX_RB_CNTL);
>>  		rb_cntl = REG_SET_FIELD(rb_cntl, SDMA_GFX_RB_CNTL, RB_ENABLE, 0);
>>  		WREG32_SDMA(i, regSDMA_GFX_RB_CNTL, rb_cntl);
>> @@ -490,17 +485,10 @@ static void sdma_v4_4_2_inst_page_stop(struct amdgpu_device *adev,
>>  	struct amdgpu_ring *sdma[AMDGPU_MAX_SDMA_INSTANCES];
>>  	u32 rb_cntl, ib_cntl;
>>  	int i;
>> -	bool unset = false;
>>  
>>  	for_each_inst(i, inst_mask) {
>>  		sdma[i] = &adev->sdma.instance[i].page;
>>  
>> -		if ((adev->mman.buffer_funcs_ring == sdma[i]) &&
>> -			(!unset)) {
>> -			amdgpu_ttm_set_buffer_funcs_status(adev, false);
>> -			unset = true;
>> -		}
>> -
>>  		rb_cntl = RREG32_SDMA(i, regSDMA_PAGE_RB_CNTL);
>>  		rb_cntl = REG_SET_FIELD(rb_cntl, SDMA_PAGE_RB_CNTL,
>>  					RB_ENABLE, 0);
>> @@ -950,13 +938,7 @@ static int sdma_v4_4_2_inst_start(struct amdgpu_device *adev,
>>  			r = amdgpu_ring_test_helper(page);
>>  			if (r)
>>  				return r;
>> -
>> -			if (adev->mman.buffer_funcs_ring == page)
>> -				amdgpu_ttm_set_buffer_funcs_status(adev, true);
>>  		}
>> -
>> -		if (adev->mman.buffer_funcs_ring == ring)
>> -			amdgpu_ttm_set_buffer_funcs_status(adev, true);
>>  	}
>>  
>>  	return r;

  reply	other threads:[~2024-03-15 10:19 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-15  9:16 [PATCH 1/1] drm/amdgpu: drop setting buffer funcs in sdma442 Le Ma
2024-03-15  9:22 ` Zhang, Hawking
2024-03-15 10:13 ` Lazar, Lijo
2024-03-15 10:19   ` Lazar, Lijo [this message]
2024-03-15 12:15   ` Ma, Le
2024-03-15 12:23     ` Lazar, Lijo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e51b0612-e5e3-48e6-a600-983b45c7ba19@amd.com \
    --to=lijo.lazar@amd.com \
    --cc=Asher.Song@amd.com \
    --cc=alexander.deucher@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=hawking.zhang@amd.com \
    --cc=le.ma@amd.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox