drm/amdgpu: Added a few comments for gart
authorOak Zeng <Oak.Zeng@amd.com>
Wed, 24 Oct 2018 02:58:04 +0000 (22:58 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 5 Nov 2018 19:21:16 +0000 (14:21 -0500)
Signed-off-by: Oak Zeng <Oak.Zeng@amd.com>
Reviewed-by: Christian Konig <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_gart.c
drivers/gpu/drm/amd/amdgpu/amdgpu_gart.h

index 9a212aa..6d11e17 100644 (file)
@@ -259,6 +259,8 @@ int amdgpu_gart_unbind(struct amdgpu_device *adev, uint64_t offset,
  * @offset: offset into the GPU's gart aperture
  * @pages: number of pages to bind
  * @dma_addr: DMA addresses of pages
+ * @flags: page table entry flags
+ * @dst: CPU address of the gart table
  *
  * Map the dma_addresses into GART entries (all asics).
  * Returns 0 for success, -EINVAL for failure.
index 9ff6288..afa2e28 100644 (file)
@@ -41,6 +41,7 @@ struct amdgpu_bo;
 
 struct amdgpu_gart {
        struct amdgpu_bo                *bo;
+       /* CPU kmapped address of gart table */
        void                            *ptr;
        unsigned                        num_gpu_pages;
        unsigned                        num_cpu_pages;