<div dir="ltr"><div dir="ltr"><br></div><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Nov 23, 2022 at 2:46 PM Kamil Konieczny <<a href="mailto:kamil.konieczny@linux.intel.com">kamil.konieczny@linux.intel.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi Daniil,<br>
<br>
On 2022-11-18 at 01:59:07 +0300, Daniil Tatianin wrote:<br>
> The GTT iteration loop would erroneously check "< gtt_size" as an<br>
> indicator for when it should stop, which would make it exit the loop<br>
> right after dumping 2-8 mib of address space depending on the<br>
> GPU generation.<br>
> <br>
> Calculate the actual size of GTT in 'gtt_max_addr', and rewrite the<br>
> iteration loop to use it. While at it, also make virtual addresses<br>
> 64-bit so that they don't wrap around at the 4GiB mark.<br>
> <br>
> Signed-off-by: Daniil Tatianin <<a href="mailto:99danilt@gmail.com" target="_blank">99danilt@gmail.com</a>><br>
<br>
There is only one concern - this programm assumes 4KB page size<br></blockquote><div>Right, I think this entire utility assumes 4KB page size. Is that not always the case?<br>I think that it should be a separate patch if we're going to get rid of that assumption, as<br>it basically has that constant all over the place.<br> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
and uses unsigned instead of unsigned int (or uint64_t).<br></blockquote><div>Oops, my bad</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
Reviewed-by: Kamil Konieczny <<a href="mailto:kamil.konieczny@linux.intel.com" target="_blank">kamil.konieczny@linux.intel.com</a>><br>
<br>
> ---<br>
>  tools/intel_gtt.c | 32 ++++++++++++++++++--------------<br>
>  1 file changed, 18 insertions(+), 14 deletions(-)<br>
> <br>
> diff --git a/tools/intel_gtt.c b/tools/intel_gtt.c<br>
> index 311694ba..c0f3d16a 100644<br>
> --- a/tools/intel_gtt.c<br>
> +++ b/tools/intel_gtt.c<br>
> @@ -96,6 +96,11 @@ static uint64_t get_phys(uint32_t pt_offset)<br>
>       return (phys | pae) & ~0xfff;<br>
>  }<br>
> <br>
> +static int get_pte_size(void)<br>
> +{<br>
> +     return intel_gen(devid) < 8 ? 4 : 8;<br>
> +}<br>
> +<br>
>  static void pte_dump(int size, uint32_t offset) {<br>
>       int pte_size;<br>
>       int entries;<br>
> @@ -105,11 +110,7 @@ static void pte_dump(int size, uint32_t offset) {<br>
>       if (size % 16)<br>
>               size = (size + 16) & ~0xffff;<br>
> <br>
> -     if (intel_gen(devid) < 8)<br>
> -             pte_size = 4;<br>
> -     else<br>
> -             pte_size = 8;<br>
> -<br>
> +     pte_size = get_pte_size();<br>
>       entries = size / pte_size;<br>
> <br>
>       printf("GTT offset   |                 %d PTEs (%d MB)\n", entries,<br>
> @@ -139,7 +140,8 @@ static void pte_dump(int size, uint32_t offset) {<br>
>  int main(int argc, char **argv)<br>
>  {<br>
>       struct pci_device *pci_dev;<br>
> -     unsigned int start, gtt_size;<br>
> +     unsigned gtt_size;<br>
> +     uint64_t start, gtt_max_addr;<br>
>       int flag[] = {<br>
>               PCI_DEV_MAP_FLAG_WRITE_COMBINE,<br>
>               PCI_DEV_MAP_FLAG_WRITABLE,<br>
> @@ -190,14 +192,15 @@ int main(int argc, char **argv)<br>
>               return 0;<br>
>       }<br>
> <br>
> -     for (start = 0; start < gtt_size; start += KB(4)) {<br>
> -             uint64_t start_phys = get_phys(start);<br>
> -             uint32_t end;<br>
> +     gtt_max_addr = (gtt_size / get_pte_size()) * KB(4ull);<br>
> +<br>
> +     for (start = 0; start < gtt_max_addr; start += KB(4)) {<br>
> +             uint64_t end, start_phys = get_phys(start);<br>
>               int constant_length = 0;<br>
>               int linear_length = 0;<br>
> <br>
>               /* Check if it's a linear sequence */<br>
> -             for (end = start + KB(4); end < gtt_size; end += KB(4)) {<br>
> +             for (end = start + KB(4); end < gtt_max_addr; end += KB(4)) {<br>
>                       uint64_t end_phys = get_phys(end);<br>
>                       if (end_phys == start_phys + (end - start))<br>
>                               linear_length++;<br>
> @@ -205,7 +208,7 @@ int main(int argc, char **argv)<br>
>                               break;<br>
>               }<br>
>               if (linear_length > 0) {<br>
> -                     printf("0x%08x - 0x%08x: linear from "<br>
> +                     printf("0x%08" PRIx64 "- 0x%08" PRIx64 ": linear from "<br>
>                              "0x%" PRIx64 " to 0x%" PRIx64 "\n",<br>
>                              start, end - KB(4),<br>
>                              start_phys, start_phys + (end - start) - KB(4));<br>
> @@ -214,7 +217,7 @@ int main(int argc, char **argv)<br>
>               }<br>
> <br>
>               /* Check if it's a constant sequence */<br>
> -             for (end = start + KB(4); end < gtt_size; end += KB(4)) {<br>
> +             for (end = start + KB(4); end < gtt_max_addr; end += KB(4)) {<br>
>                       uint64_t end_phys = get_phys(end);<br>
>                       if (end_phys == start_phys)<br>
>                               constant_length++;<br>
> @@ -222,13 +225,14 @@ int main(int argc, char **argv)<br>
>                               break;<br>
>               }<br>
>               if (constant_length > 0) {<br>
> -                     printf("0x%08x - 0x%08x: constant 0x%" PRIx64 "\n",<br>
> +                     printf("0x%08" PRIx64 " - 0x%08" PRIx64<br>
> +                             ": constant 0x%" PRIx64 "\n",<br>
>                              start, end - KB(4), start_phys);<br>
>                       start = end - KB(4);<br>
>                       continue;<br>
>               }<br>
> <br>
> -             printf("0x%08x: 0x%" PRIx64 "\n", start, start_phys);<br>
> +             printf("0x%08" PRIx64 ": 0x%" PRIx64 "\n", start, start_phys);<br>
>       }<br>
> <br>
>       return 0;<br>
> --<br>
> 2.36.1.windows.1<br>
></blockquote><div>Thanks! </div></div></div>