]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drm/amdgpu: remove VI hw bug workaround v3
authorChristian König <christian.koenig@amd.com>
Fri, 7 Aug 2015 18:22:40 +0000 (20:22 +0200)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 17 Aug 2015 20:51:11 +0000 (16:51 -0400)
The workaround simply doesn't work because VM mappings
are controlled by userspace not the kernel.

Additional to that this is just a performance problem
which happens if you have holes in your VM mapping.

v2: adjust virtual addr alignment as well.
v3: fix trivial warning

Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Monk Liu <monk.liu@amd.com> (v1)
Reviewed-by: Jammy Zhou <Jammy.Zhou@amd.com> (v2)
drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c
drivers/gpu/drm/amd/amdgpu/amdgpu_object.c

index 7226def4e8fb1aaea68732888ca545e44b2cf149..87da6b1848fdf2a1cc93474055976109efcc3225 100644 (file)
@@ -455,7 +455,7 @@ static int amdgpu_info_ioctl(struct drm_device *dev, void *data, struct drm_file
                        dev_info.ids_flags |= AMDGPU_IDS_FLAGS_FUSION;
                dev_info.virtual_address_offset = AMDGPU_VA_RESERVED_SIZE;
                dev_info.virtual_address_max = (uint64_t)adev->vm_manager.max_pfn * AMDGPU_GPU_PAGE_SIZE;
-               dev_info.virtual_address_alignment = max(PAGE_SIZE, 0x10000UL);
+               dev_info.virtual_address_alignment = max((int)PAGE_SIZE, AMDGPU_GPU_PAGE_SIZE);
                dev_info.pte_fragment_size = (1 << AMDGPU_LOG2_PAGES_PER_FRAG) *
                                             AMDGPU_GPU_PAGE_SIZE;
                dev_info.gart_page_size = AMDGPU_GPU_PAGE_SIZE;
index 87d67f8c85c96cfce97169ef9401eb4c42ddb6f9..f1f1b6796669eba86d55e379f965554537812374 100644 (file)
@@ -223,18 +223,6 @@ int amdgpu_bo_create_restricted(struct amdgpu_device *adev,
        size_t acc_size;
        int r;
 
-       /* VI has a hw bug where VM PTEs have to be allocated in groups of 8.
-        * do this as a temporary workaround
-        */
-       if (!(domain & (AMDGPU_GEM_DOMAIN_GDS | AMDGPU_GEM_DOMAIN_GWS | AMDGPU_GEM_DOMAIN_OA))) {
-               if ((adev->asic_type >= CHIP_TOPAZ) && (adev->asic_type != CHIP_FIJI)) {
-                       if (byte_align & 0x7fff)
-                               byte_align = ALIGN(byte_align, 0x8000);
-                       if (size & 0x7fff)
-                               size = ALIGN(size, 0x8000);
-               }
-       }
-
        page_align = roundup(byte_align, PAGE_SIZE) >> PAGE_SHIFT;
        size = ALIGN(size, PAGE_SIZE);