All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eric Huang <jinhuieric.huang-5C7GfCeVMHo@public.gmane.org>
To: Felix Kuehling <felix.kuehling-5C7GfCeVMHo@public.gmane.org>,
	Yong Zhao <yong.zhao-5C7GfCeVMHo@public.gmane.org>,
	amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
Subject: Re: [PATCH] drm/amdgpu: Update MMHUB power gating register settings
Date: Thu, 11 Jan 2018 13:20:55 -0500	[thread overview]
Message-ID: <677ed724-e0ff-b8cd-8772-ebb29f209ea7@amd.com> (raw)
In-Reply-To: <4e0b1510-e0b3-20c0-98c6-809b0fe07511-5C7GfCeVMHo@public.gmane.org>

The fix makes sense to me.

Acked-by: Eric Huang <JinhuiEric.Huang@amd.com>


On 2018-01-11 01:00 PM, Felix Kuehling wrote:
> [+Eric]
>
> Acked-by: Felix Kuehling <Felix.Kuehling@amd.com>
>
> I'm not familiar with the details of what this does. I'm hoping Eric can
> also review this with more power-management experience.
>
> Regards,
>    Felix
>
>
> On 2018-01-10 03:10 PM, Yong Zhao wrote:
>> The new register settings are needed to fix a tlb invalidation issue
>> when MMHUB power gating is turned on for Raven.
>>
>> Change-Id: I846befbb2fcbddf40ca4ecbdc06da1cd442e3554
>> Signed-off-by: Yong Zhao <yong.zhao@amd.com>
>> ---
>>   drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c | 61 ++++++++++++++++++---------------
>>   1 file changed, 33 insertions(+), 28 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c b/drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c
>> index ffd5b7e..bdf94c6 100644
>> --- a/drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c
>> +++ b/drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c
>> @@ -272,21 +272,21 @@ static const struct pctl_data pctl0_data[] = {
>>   	{0x11, 0x6a684},
>>   	{0x19, 0xea68e},
>>   	{0x29, 0xa69e},
>> -	{0x2b, 0x34a6c0},
>> -	{0x61, 0x83a707},
>> -	{0xe6, 0x8a7a4},
>> -	{0xf0, 0x1a7b8},
>> -	{0xf3, 0xfa7cc},
>> -	{0x104, 0x17a7dd},
>> -	{0x11d, 0xa7dc},
>> -	{0x11f, 0x12a7f5},
>> -	{0x133, 0xa808},
>> -	{0x135, 0x12a810},
>> -	{0x149, 0x7a82c}
>> +	{0x2b, 0x0010a6c0},
>> +	{0x3d, 0x83a707},
>> +	{0xc2, 0x8a7a4},
>> +	{0xcc, 0x1a7b8},
>> +	{0xcf, 0xfa7cc},
>> +	{0xe0, 0x17a7dd},
>> +	{0xf9, 0xa7dc},
>> +	{0xfb, 0x12a7f5},
>> +	{0x10f, 0xa808},
>> +	{0x111, 0x12a810},
>> +	{0x125, 0x7a82c}
>>   };
>>   #define PCTL0_DATA_LEN (ARRAY_SIZE(pctl0_data))
>>   
>> -#define PCTL0_RENG_EXEC_END_PTR 0x151
>> +#define PCTL0_RENG_EXEC_END_PTR 0x12d
>>   #define PCTL0_STCTRL_REG_SAVE_RANGE0_BASE  0xa640
>>   #define PCTL0_STCTRL_REG_SAVE_RANGE0_LIMIT 0xa833
>>   
>> @@ -385,10 +385,9 @@ void mmhub_v1_0_initialize_power_gating(struct amdgpu_device *adev)
>>   	if (amdgpu_sriov_vf(adev))
>>   		return;
>>   
>> +	/****************** pctl0 **********************/
>>   	pctl0_misc = RREG32_SOC15(MMHUB, 0, mmPCTL0_MISC);
>>   	pctl0_reng_execute = RREG32_SOC15(MMHUB, 0, mmPCTL0_RENG_EXECUTE);
>> -	pctl1_misc = RREG32_SOC15(MMHUB, 0, mmPCTL1_MISC);
>> -	pctl1_reng_execute = RREG32_SOC15(MMHUB, 0, mmPCTL1_RENG_EXECUTE);
>>   
>>   	/* Light sleep must be disabled before writing to pctl0 registers */
>>   	pctl0_misc &= ~PCTL0_MISC__RENG_MEM_LS_ENABLE_MASK;
>> @@ -402,12 +401,13 @@ void mmhub_v1_0_initialize_power_gating(struct amdgpu_device *adev)
>>   			pctl0_data[i].data);
>>           }
>>   
>> -	/* Set the reng execute end ptr for pctl0 */
>> -	pctl0_reng_execute = REG_SET_FIELD(pctl0_reng_execute,
>> -					PCTL0_RENG_EXECUTE,
>> -					RENG_EXECUTE_END_PTR,
>> -					PCTL0_RENG_EXEC_END_PTR);
>> -	WREG32_SOC15(MMHUB, 0, mmPCTL0_RENG_EXECUTE, pctl0_reng_execute);
>> +	/* Re-enable light sleep */
>> +	pctl0_misc |= PCTL0_MISC__RENG_MEM_LS_ENABLE_MASK;
>> +	WREG32_SOC15(MMHUB, 0, mmPCTL0_MISC, pctl0_misc);
>> +
>> +	/****************** pctl1 **********************/
>> +	pctl1_misc = RREG32_SOC15(MMHUB, 0, mmPCTL1_MISC);
>> +	pctl1_reng_execute = RREG32_SOC15(MMHUB, 0, mmPCTL1_RENG_EXECUTE);
>>   
>>   	/* Light sleep must be disabled before writing to pctl1 registers */
>>   	pctl1_misc &= ~PCTL1_MISC__RENG_MEM_LS_ENABLE_MASK;
>> @@ -421,20 +421,25 @@ void mmhub_v1_0_initialize_power_gating(struct amdgpu_device *adev)
>>   			pctl1_data[i].data);
>>           }
>>   
>> +	/* Re-enable light sleep */
>> +	pctl1_misc |= PCTL1_MISC__RENG_MEM_LS_ENABLE_MASK;
>> +	WREG32_SOC15(MMHUB, 0, mmPCTL1_MISC, pctl1_misc);
>> +
>> +	mmhub_v1_0_power_gating_write_save_ranges(adev);
>> +
>> +	/* Set the reng execute end ptr for pctl0 */
>> +	pctl0_reng_execute = REG_SET_FIELD(pctl0_reng_execute,
>> +					PCTL0_RENG_EXECUTE,
>> +					RENG_EXECUTE_END_PTR,
>> +					PCTL0_RENG_EXEC_END_PTR);
>> +	WREG32_SOC15(MMHUB, 0, mmPCTL0_RENG_EXECUTE, pctl0_reng_execute);
>> +
>>   	/* Set the reng execute end ptr for pctl1 */
>>   	pctl1_reng_execute = REG_SET_FIELD(pctl1_reng_execute,
>>   					PCTL1_RENG_EXECUTE,
>>   					RENG_EXECUTE_END_PTR,
>>   					PCTL1_RENG_EXEC_END_PTR);
>>   	WREG32_SOC15(MMHUB, 0, mmPCTL1_RENG_EXECUTE, pctl1_reng_execute);
>> -
>> -	mmhub_v1_0_power_gating_write_save_ranges(adev);
>> -
>> -	/* Re-enable light sleep */
>> -	pctl0_misc |= PCTL0_MISC__RENG_MEM_LS_ENABLE_MASK;
>> -	WREG32_SOC15(MMHUB, 0, mmPCTL0_MISC, pctl0_misc);
>> -	pctl1_misc |= PCTL1_MISC__RENG_MEM_LS_ENABLE_MASK;
>> -	WREG32_SOC15(MMHUB, 0, mmPCTL1_MISC, pctl1_misc);
>>   }
>>   
>>   void mmhub_v1_0_update_power_gating(struct amdgpu_device *adev,

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

  parent reply	other threads:[~2018-01-11 18:20 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-10 20:10 [PATCH] drm/amdgpu: Update MMHUB power gating register settings Yong Zhao
     [not found] ` <1515615038-22385-1-git-send-email-yong.zhao-5C7GfCeVMHo@public.gmane.org>
2018-01-10 21:49   ` Alex Deucher
2018-01-11 18:00   ` Felix Kuehling
     [not found]     ` <4e0b1510-e0b3-20c0-98c6-809b0fe07511-5C7GfCeVMHo@public.gmane.org>
2018-01-11 18:20       ` Eric Huang [this message]
     [not found]         ` <677ed724-e0ff-b8cd-8772-ebb29f209ea7-5C7GfCeVMHo@public.gmane.org>
2018-01-11 19:09           ` Yong Zhao

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=677ed724-e0ff-b8cd-8772-ebb29f209ea7@amd.com \
    --to=jinhuieric.huang-5c7gfcevmho@public.gmane.org \
    --cc=amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
    --cc=felix.kuehling-5C7GfCeVMHo@public.gmane.org \
    --cc=yong.zhao-5C7GfCeVMHo@public.gmane.org \
    /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 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.