AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Zhang, Jerry (Junwei)" <Jerry.Zhang-5C7GfCeVMHo@public.gmane.org>
To: christian.koenig-5C7GfCeVMHo@public.gmane.org,
	amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
Subject: Re: [PATCH] drm/amdgpu: correct GART location info
Date: Tue, 19 Jun 2018 15:08:57 +0800	[thread overview]
Message-ID: <5B28AC09.9030205@amd.com> (raw)
In-Reply-To: <476e59ac-1cba-d3ca-2670-6be0d8af4b82-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

On 06/19/2018 03:04 PM, Christian König wrote:
> We need a commit message, something like "Avoid confusing the GART with the GTT
> domain.".

Yeah, will add such kind of info.

>
> Am 19.06.2018 um 06:41 schrieb Junwei Zhang:
>> Signed-off-by: Junwei Zhang <Jerry.Zhang@amd.com>
>> ---
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 14 +++++++-------
>>   1 file changed, 7 insertions(+), 7 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>> b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>> index f77b07b..f9fe8d3 100644
>> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
>> @@ -676,17 +676,17 @@ void amdgpu_device_vram_location(struct amdgpu_device
>> *adev,
>>   }
>>   /**
>> - * amdgpu_device_gart_location - try to find GTT location
>> + * amdgpu_device_gart_location - try to find GART location
>>    *
>>    * @adev: amdgpu device structure holding all necessary informations
>>    * @mc: memory controller structure holding memory informations
>>    *
>> - * Function will place try to place GTT before or after VRAM.
>> + * Function will place try to place GART before or after VRAM.
>>    *
>> - * If GTT size is bigger than space left then we ajust GTT size.
>> + * If GART size is bigger than space left then we ajust GART size.
>>    * Thus function will never fails.
>>    *
>> - * FIXME: when reducing GTT size align new size on power of 2.
>> + * FIXME: when reducing GART size align new size on power of 2.
>
> Please just drop this line. IIRC we actually don't align the gartsize parameter
> to power of two any more either.

Got it.
Thanks.

Jerry
>
> With that fixed the patch is Reviewed-by: Christian König
> <christian.koenig@amd.com>.
>
> Thanks,
> Christian.
>
>>    */
>>   void amdgpu_device_gart_location(struct amdgpu_device *adev,
>>                    struct amdgpu_gmc *mc)
>> @@ -699,13 +699,13 @@ void amdgpu_device_gart_location(struct amdgpu_device
>> *adev,
>>       size_bf = mc->vram_start;
>>       if (size_bf > size_af) {
>>           if (mc->gart_size > size_bf) {
>> -            dev_warn(adev->dev, "limiting GTT\n");
>> +            dev_warn(adev->dev, "limiting GART\n");
>>               mc->gart_size = size_bf;
>>           }
>>           mc->gart_start = 0;
>>       } else {
>>           if (mc->gart_size > size_af) {
>> -            dev_warn(adev->dev, "limiting GTT\n");
>> +            dev_warn(adev->dev, "limiting GART\n");
>>               mc->gart_size = size_af;
>>           }
>>           /* VCE doesn't like it when BOs cross a 4GB segment, so align
>> @@ -714,7 +714,7 @@ void amdgpu_device_gart_location(struct amdgpu_device *adev,
>>           mc->gart_start = ALIGN(mc->vram_end + 1, 0x100000000ULL);
>>       }
>>       mc->gart_end = mc->gart_start + mc->gart_size - 1;
>> -    dev_info(adev->dev, "GTT: %lluM 0x%016llX - 0x%016llX\n",
>> +    dev_info(adev->dev, "GART: %lluM 0x%016llX - 0x%016llX\n",
>>               mc->gart_size >> 20, mc->gart_start, mc->gart_end);
>>   }
>
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

      parent reply	other threads:[~2018-06-19  7:08 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-19  4:41 [PATCH] drm/amdgpu: correct GART location info Junwei Zhang
     [not found] ` <1529383295-10431-1-git-send-email-Jerry.Zhang-5C7GfCeVMHo@public.gmane.org>
2018-06-19  7:04   ` Christian König
     [not found]     ` <476e59ac-1cba-d3ca-2670-6be0d8af4b82-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2018-06-19  7:08       ` Zhang, Jerry (Junwei) [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=5B28AC09.9030205@amd.com \
    --to=jerry.zhang-5c7gfcevmho@public.gmane.org \
    --cc=amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
    --cc=christian.koenig-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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox