amd-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
From: Luben Tuikov <luben.tuikov@amd.com>
To: Alex Deucher <alexdeucher@gmail.com>, Tianci Yin <tianci.yin@amd.com>
Cc: Long Gang <Gang.Long@amd.com>, Guchun Chen <guchun.chen@amd.com>,
	Feifei Xu <Feifei.Xu@amd.com>,
	amd-gfx list <amd-gfx@lists.freedesktop.org>,
	Deucher Alexander <Alexander.Deucher@amd.com>,
	Flora Cui <flora.cui@amd.com>,
	Hawking Zhang <Hawking.Zhang@amd.com>
Subject: Re: [PATCH 2/2] drm/amdgpu: disable DCN and VCN for navi10 blockchain SKU(v3)
Date: Thu, 22 Oct 2020 23:16:02 -0400	[thread overview]
Message-ID: <64937339-912e-ee16-4071-846b465cedc2@amd.com> (raw)
In-Reply-To: <CADnq5_MeJxe5VO1o-+x7rL-UvJGEKy3PrE7zrNzb4hxZ30Rkmg@mail.gmail.com>

On 2020-10-21 23:45, Alex Deucher wrote:
> On Wed, Oct 21, 2020 at 11:43 PM Tianci Yin <tianci.yin@amd.com> wrote:
>>
>> From: "Tianci.Yin" <tianci.yin@amd.com>
>>
>> The blockchain SKU has no display and video support, remove them.
>>
>> Change-Id: I419cfae8b00125f3bff18c0a8cd92f3266d5f04a
>> Signed-off-by: Tianci.Yin <tianci.yin@amd.com>
>> ---
>>  drivers/gpu/drm/amd/amdgpu/nv.c | 14 ++++++++++++--
>>  1 file changed, 12 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/amd/amdgpu/nv.c b/drivers/gpu/drm/amd/amdgpu/nv.c
>> index ce787489aaeb..26702c85caf8 100644
>> --- a/drivers/gpu/drm/amd/amdgpu/nv.c
>> +++ b/drivers/gpu/drm/amd/amdgpu/nv.c
>> @@ -497,6 +497,14 @@ void nv_set_virt_ops(struct amdgpu_device *adev)
>>         adev->virt.ops = &xgpu_nv_virt_ops;
>>  }
>>
>> +bool nv_is_blockchain_sku(struct pci_dev *pdev)
> 
> This can be static.  With that fixed, the series is:
> Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
> 
>> +{
>> +       if (pdev->device == 0x731E &&
>> +           (pdev->revision == 0xC6 || pdev->revision == 0xC7))
>> +               return true;
>> +       return false;
>> +}

Not only can this function be static, but this function
can simply be

{
	return pdev->device == 0x731E &&
		(pdev->revision == 0xC6 || pdev->revision == 0xC7);
}

:-)

Regards,
Luben

>> +
>>  int nv_set_ip_blocks(struct amdgpu_device *adev)
>>  {
>>         int r;
>> @@ -530,7 +538,8 @@ int nv_set_ip_blocks(struct amdgpu_device *adev)
>>                 if (adev->enable_virtual_display || amdgpu_sriov_vf(adev))
>>                         amdgpu_device_ip_block_add(adev, &dce_virtual_ip_block);
>>  #if defined(CONFIG_DRM_AMD_DC)
>> -               else if (amdgpu_device_has_dc_support(adev))
>> +               else if (amdgpu_device_has_dc_support(adev) &&
>> +                        !nv_is_blockchain_sku(adev->pdev))
>>                         amdgpu_device_ip_block_add(adev, &dm_ip_block);
>>  #endif
>>                 amdgpu_device_ip_block_add(adev, &gfx_v10_0_ip_block);
>> @@ -538,7 +547,8 @@ int nv_set_ip_blocks(struct amdgpu_device *adev)
>>                 if (adev->firmware.load_type == AMDGPU_FW_LOAD_DIRECT &&
>>                     !amdgpu_sriov_vf(adev))
>>                         amdgpu_device_ip_block_add(adev, &smu_v11_0_ip_block);
>> -               amdgpu_device_ip_block_add(adev, &vcn_v2_0_ip_block);
>> +               if (!nv_is_blockchain_sku(adev->pdev))
>> +                       amdgpu_device_ip_block_add(adev, &vcn_v2_0_ip_block);
>>                 amdgpu_device_ip_block_add(adev, &jpeg_v2_0_ip_block);
>>                 if (adev->enable_mes)
>>                         amdgpu_device_ip_block_add(adev, &mes_v10_1_ip_block);
>> --
>> 2.17.1
>>
>> _______________________________________________
>> amd-gfx mailing list
>> amd-gfx@lists.freedesktop.org
>> https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.freedesktop.org%2Fmailman%2Flistinfo%2Famd-gfx&amp;data=04%7C01%7CLuben.Tuikov%40amd.com%7C69a8d879c10a4a95df8408d8763d00da%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637389351678043728%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=rW2Fz1NGYDoUQ3TlHAXmoDC9zDhBrBmxMtKtrsK0Fhk%3D&amp;reserved=0

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

      parent reply	other threads:[~2020-10-23  3:16 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-22  3:43 [PATCH 1/2] drm/amdgpu: add DID for navi10 blockchain SKU Tianci Yin
2020-10-22  3:43 ` [PATCH 2/2] drm/amdgpu: disable DCN and VCN for navi10 blockchain SKU(v3) Tianci Yin
2020-10-22  3:45   ` Alex Deucher
2020-10-22  3:47     ` Yin, Tianci (Rico)
2020-10-23  3:16     ` Luben Tuikov [this message]

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=64937339-912e-ee16-4071-846b465cedc2@amd.com \
    --to=luben.tuikov@amd.com \
    --cc=Alexander.Deucher@amd.com \
    --cc=Feifei.Xu@amd.com \
    --cc=Gang.Long@amd.com \
    --cc=Hawking.Zhang@amd.com \
    --cc=alexdeucher@gmail.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=flora.cui@amd.com \
    --cc=guchun.chen@amd.com \
    --cc=tianci.yin@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;
as well as URLs for NNTP newsgroup(s).