]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
Revert "drm/radeon: Report doorbell configuration to amdkfd"
authorMichel Dänzer <michel.daenzer@amd.com>
Wed, 20 Dec 2017 09:45:36 +0000 (10:45 +0100)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 20 Dec 2017 17:00:01 +0000 (12:00 -0500)
This reverts commit ebff8453d3a57a2405c4d96d9f9c4f4acc7d4d79. Unused
since amdkfd is no longer supported with radeon.

Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Michel Dänzer <michel@daenzer.net>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/radeon/radeon.h
drivers/gpu/drm/radeon/radeon_device.c

index b808c3bdcfd8d69112a4fe4d5e6e458f0f71fcb0..d34887873deaf7b72aba80acf2a8e7b0037087c2 100644 (file)
@@ -731,10 +731,6 @@ struct radeon_doorbell {
 
 int radeon_doorbell_get(struct radeon_device *rdev, u32 *page);
 void radeon_doorbell_free(struct radeon_device *rdev, u32 doorbell);
-void radeon_doorbell_get_kfd_info(struct radeon_device *rdev,
-                                 phys_addr_t *aperture_base,
-                                 size_t *aperture_size,
-                                 size_t *start_offset);
 
 /*
  * IRQS.
index e0b9fa4aaa9f3468700eb61bfe7f70f4aefdb41c..8d3e3d2e0090938c2ec895d0836871622fad0bd7 100644 (file)
@@ -392,37 +392,6 @@ void radeon_doorbell_free(struct radeon_device *rdev, u32 doorbell)
                __clear_bit(doorbell, rdev->doorbell.used);
 }
 
-/**
- * radeon_doorbell_get_kfd_info - Report doorbell configuration required to
- *                                setup KFD
- *
- * @rdev: radeon_device pointer
- * @aperture_base: output returning doorbell aperture base physical address
- * @aperture_size: output returning doorbell aperture size in bytes
- * @start_offset: output returning # of doorbell bytes reserved for radeon.
- *
- * Radeon and the KFD share the doorbell aperture. Radeon sets it up,
- * takes doorbells required for its own rings and reports the setup to KFD.
- * Radeon reserved doorbells are at the start of the doorbell aperture.
- */
-void radeon_doorbell_get_kfd_info(struct radeon_device *rdev,
-                                 phys_addr_t *aperture_base,
-                                 size_t *aperture_size,
-                                 size_t *start_offset)
-{
-       /* The first num_doorbells are used by radeon.
-        * KFD takes whatever's left in the aperture. */
-       if (rdev->doorbell.size > rdev->doorbell.num_doorbells * sizeof(u32)) {
-               *aperture_base = rdev->doorbell.base;
-               *aperture_size = rdev->doorbell.size;
-               *start_offset = rdev->doorbell.num_doorbells * sizeof(u32);
-       } else {
-               *aperture_base = 0;
-               *aperture_size = 0;
-               *start_offset = 0;
-       }
-}
-
 /*
  * radeon_wb_*()
  * Writeback is the the method by which the the GPU updates special pages