blob: 141d11dfede042d6a1868f9af95531e241786ad5 [file] [log] [blame]
Oded Gabbay130e0372015-06-12 21:35:14 +03001/*
2 * Copyright 2014 Advanced Micro Devices, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 */
22
23#include "amdgpu_amdkfd.h"
Jammy Zhou2f7d10b2015-07-22 11:29:01 +080024#include "amd_shared.h"
Oded Gabbay130e0372015-06-12 21:35:14 +030025#include <drm/drmP.h>
26#include "amdgpu.h"
Alex Deucher2db0cdb2017-06-07 12:59:29 -040027#include "amdgpu_gfx.h"
Oded Gabbay130e0372015-06-12 21:35:14 +030028#include <linux/module.h>
29
Oded Gabbay130e0372015-06-12 21:35:14 +030030const struct kgd2kfd_calls *kgd2kfd;
Kent Russell8eabaf52017-08-15 23:00:04 -040031bool (*kgd2kfd_init_p)(unsigned int, const struct kgd2kfd_calls**);
Oded Gabbay130e0372015-06-12 21:35:14 +030032
Oded Gabbayefb1c652016-02-09 13:30:12 +020033int amdgpu_amdkfd_init(void)
Oded Gabbay130e0372015-06-12 21:35:14 +030034{
Oded Gabbayefb1c652016-02-09 13:30:12 +020035 int ret;
36
Oded Gabbay130e0372015-06-12 21:35:14 +030037#if defined(CONFIG_HSA_AMD_MODULE)
Kent Russell8eabaf52017-08-15 23:00:04 -040038 int (*kgd2kfd_init_p)(unsigned int, const struct kgd2kfd_calls**);
Oded Gabbay130e0372015-06-12 21:35:14 +030039
40 kgd2kfd_init_p = symbol_request(kgd2kfd_init);
41
42 if (kgd2kfd_init_p == NULL)
Oded Gabbayefb1c652016-02-09 13:30:12 +020043 return -ENOENT;
44
45 ret = kgd2kfd_init_p(KFD_INTERFACE_VERSION, &kgd2kfd);
46 if (ret) {
47 symbol_put(kgd2kfd_init);
48 kgd2kfd = NULL;
49 }
50
51#elif defined(CONFIG_HSA_AMD)
52 ret = kgd2kfd_init(KFD_INTERFACE_VERSION, &kgd2kfd);
53 if (ret)
54 kgd2kfd = NULL;
55
56#else
57 ret = -ENOENT;
Oded Gabbay130e0372015-06-12 21:35:14 +030058#endif
Oded Gabbayefb1c652016-02-09 13:30:12 +020059
60 return ret;
Oded Gabbay130e0372015-06-12 21:35:14 +030061}
62
Oded Gabbay130e0372015-06-12 21:35:14 +030063void amdgpu_amdkfd_fini(void)
64{
65 if (kgd2kfd) {
66 kgd2kfd->exit();
67 symbol_put(kgd2kfd_init);
68 }
69}
70
Andres Rodriguezdc102c42017-02-01 17:02:13 -050071void amdgpu_amdkfd_device_probe(struct amdgpu_device *adev)
Oded Gabbay130e0372015-06-12 21:35:14 +030072{
Felix Kuehling5c33f212017-07-28 16:54:54 -040073 const struct kfd2kgd_calls *kfd2kgd;
74
75 if (!kgd2kfd)
76 return;
77
78 switch (adev->asic_type) {
79#ifdef CONFIG_DRM_AMDGPU_CIK
80 case CHIP_KAVERI:
Felix Kuehling30d13422018-01-04 17:17:48 -050081 case CHIP_HAWAII:
Felix Kuehling5c33f212017-07-28 16:54:54 -040082 kfd2kgd = amdgpu_amdkfd_gfx_7_get_functions();
83 break;
84#endif
85 case CHIP_CARRIZO:
Felix Kuehling30d13422018-01-04 17:17:48 -050086 case CHIP_TONGA:
87 case CHIP_FIJI:
88 case CHIP_POLARIS10:
89 case CHIP_POLARIS11:
Felix Kuehling5c33f212017-07-28 16:54:54 -040090 kfd2kgd = amdgpu_amdkfd_gfx_8_0_get_functions();
91 break;
92 default:
pding9953b722017-10-26 09:30:38 +080093 dev_dbg(adev->dev, "kfd not supported on this ASIC\n");
Felix Kuehling5c33f212017-07-28 16:54:54 -040094 return;
95 }
96
97 adev->kfd = kgd2kfd->probe((struct kgd_dev *)adev,
98 adev->pdev, kfd2kgd);
Oded Gabbay130e0372015-06-12 21:35:14 +030099}
100
Alex Deucher22cb0162017-12-14 16:27:11 -0500101/**
102 * amdgpu_doorbell_get_kfd_info - Report doorbell configuration required to
103 * setup amdkfd
104 *
105 * @adev: amdgpu_device pointer
106 * @aperture_base: output returning doorbell aperture base physical address
107 * @aperture_size: output returning doorbell aperture size in bytes
108 * @start_offset: output returning # of doorbell bytes reserved for amdgpu.
109 *
110 * amdgpu and amdkfd share the doorbell aperture. amdgpu sets it up,
111 * takes doorbells required for its own rings and reports the setup to amdkfd.
112 * amdgpu reserved doorbells are at the start of the doorbell aperture.
113 */
114static void amdgpu_doorbell_get_kfd_info(struct amdgpu_device *adev,
115 phys_addr_t *aperture_base,
116 size_t *aperture_size,
117 size_t *start_offset)
118{
119 /*
120 * The first num_doorbells are used by amdgpu.
121 * amdkfd takes whatever's left in the aperture.
122 */
123 if (adev->doorbell.size > adev->doorbell.num_doorbells * sizeof(u32)) {
124 *aperture_base = adev->doorbell.base;
125 *aperture_size = adev->doorbell.size;
126 *start_offset = adev->doorbell.num_doorbells * sizeof(u32);
127 } else {
128 *aperture_base = 0;
129 *aperture_size = 0;
130 *start_offset = 0;
131 }
132}
133
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500134void amdgpu_amdkfd_device_init(struct amdgpu_device *adev)
Oded Gabbay130e0372015-06-12 21:35:14 +0300135{
Andres Rodriguezd0b63bb32017-02-03 16:28:48 -0500136 int i;
137 int last_valid_bit;
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500138 if (adev->kfd) {
Oded Gabbay130e0372015-06-12 21:35:14 +0300139 struct kgd2kfd_shared_resources gpu_resources = {
140 .compute_vmid_bitmap = 0xFF00,
Andres Rodriguezd0b63bb32017-02-03 16:28:48 -0500141 .num_pipe_per_mec = adev->gfx.mec.num_pipe_per_mec,
142 .num_queue_per_pipe = adev->gfx.mec.num_queue_per_pipe
Oded Gabbay130e0372015-06-12 21:35:14 +0300143 };
144
Andres Rodriguezd0b63bb32017-02-03 16:28:48 -0500145 /* this is going to have a few of the MSBs set that we need to
146 * clear */
147 bitmap_complement(gpu_resources.queue_bitmap,
148 adev->gfx.mec.queue_bitmap,
149 KGD_MAX_QUEUES);
150
Andres Rodriguez7b2124a2017-04-06 00:10:53 -0400151 /* remove the KIQ bit as well */
152 if (adev->gfx.kiq.ring.ready)
Alex Deucher2db0cdb2017-06-07 12:59:29 -0400153 clear_bit(amdgpu_gfx_queue_to_bit(adev,
154 adev->gfx.kiq.ring.me - 1,
155 adev->gfx.kiq.ring.pipe,
156 adev->gfx.kiq.ring.queue),
Andres Rodriguez7b2124a2017-04-06 00:10:53 -0400157 gpu_resources.queue_bitmap);
158
Andres Rodriguezd0b63bb32017-02-03 16:28:48 -0500159 /* According to linux/bitmap.h we shouldn't use bitmap_clear if
160 * nbits is not compile time constant */
Jay Cornwall3447d222017-07-13 20:21:53 -0500161 last_valid_bit = 1 /* only first MEC can have compute queues */
Andres Rodriguezd0b63bb32017-02-03 16:28:48 -0500162 * adev->gfx.mec.num_pipe_per_mec
163 * adev->gfx.mec.num_queue_per_pipe;
164 for (i = last_valid_bit; i < KGD_MAX_QUEUES; ++i)
165 clear_bit(i, gpu_resources.queue_bitmap);
166
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500167 amdgpu_doorbell_get_kfd_info(adev,
Oded Gabbay130e0372015-06-12 21:35:14 +0300168 &gpu_resources.doorbell_physical_address,
169 &gpu_resources.doorbell_aperture_size,
170 &gpu_resources.doorbell_start_offset);
171
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500172 kgd2kfd->device_init(adev->kfd, &gpu_resources);
Oded Gabbay130e0372015-06-12 21:35:14 +0300173 }
174}
175
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500176void amdgpu_amdkfd_device_fini(struct amdgpu_device *adev)
Oded Gabbay130e0372015-06-12 21:35:14 +0300177{
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500178 if (adev->kfd) {
179 kgd2kfd->device_exit(adev->kfd);
180 adev->kfd = NULL;
Oded Gabbay130e0372015-06-12 21:35:14 +0300181 }
182}
183
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500184void amdgpu_amdkfd_interrupt(struct amdgpu_device *adev,
Oded Gabbay130e0372015-06-12 21:35:14 +0300185 const void *ih_ring_entry)
186{
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500187 if (adev->kfd)
188 kgd2kfd->interrupt(adev->kfd, ih_ring_entry);
Oded Gabbay130e0372015-06-12 21:35:14 +0300189}
190
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500191void amdgpu_amdkfd_suspend(struct amdgpu_device *adev)
Oded Gabbay130e0372015-06-12 21:35:14 +0300192{
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500193 if (adev->kfd)
194 kgd2kfd->suspend(adev->kfd);
Oded Gabbay130e0372015-06-12 21:35:14 +0300195}
196
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500197int amdgpu_amdkfd_resume(struct amdgpu_device *adev)
Oded Gabbay130e0372015-06-12 21:35:14 +0300198{
199 int r = 0;
200
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500201 if (adev->kfd)
202 r = kgd2kfd->resume(adev->kfd);
Oded Gabbay130e0372015-06-12 21:35:14 +0300203
204 return r;
205}
206
Oded Gabbay130e0372015-06-12 21:35:14 +0300207int alloc_gtt_mem(struct kgd_dev *kgd, size_t size,
208 void **mem_obj, uint64_t *gpu_addr,
209 void **cpu_ptr)
210{
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500211 struct amdgpu_device *adev = (struct amdgpu_device *)kgd;
Yong Zhao473fee42018-02-06 20:32:31 -0500212 struct amdgpu_bo *bo = NULL;
Oded Gabbay130e0372015-06-12 21:35:14 +0300213 int r;
Yong Zhao473fee42018-02-06 20:32:31 -0500214 uint64_t gpu_addr_tmp = 0;
215 void *cpu_ptr_tmp = NULL;
Oded Gabbay130e0372015-06-12 21:35:14 +0300216
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500217 r = amdgpu_bo_create(adev, size, PAGE_SIZE, true, AMDGPU_GEM_DOMAIN_GTT,
Yong Zhao473fee42018-02-06 20:32:31 -0500218 AMDGPU_GEM_CREATE_CPU_GTT_USWC, NULL, NULL, &bo);
Oded Gabbay130e0372015-06-12 21:35:14 +0300219 if (r) {
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500220 dev_err(adev->dev,
Oded Gabbay130e0372015-06-12 21:35:14 +0300221 "failed to allocate BO for amdkfd (%d)\n", r);
222 return r;
223 }
224
225 /* map the buffer */
Yong Zhao473fee42018-02-06 20:32:31 -0500226 r = amdgpu_bo_reserve(bo, true);
Oded Gabbay130e0372015-06-12 21:35:14 +0300227 if (r) {
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500228 dev_err(adev->dev, "(%d) failed to reserve bo for amdkfd\n", r);
Oded Gabbay130e0372015-06-12 21:35:14 +0300229 goto allocate_mem_reserve_bo_failed;
230 }
231
Yong Zhao473fee42018-02-06 20:32:31 -0500232 r = amdgpu_bo_pin(bo, AMDGPU_GEM_DOMAIN_GTT,
233 &gpu_addr_tmp);
Oded Gabbay130e0372015-06-12 21:35:14 +0300234 if (r) {
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500235 dev_err(adev->dev, "(%d) failed to pin bo for amdkfd\n", r);
Oded Gabbay130e0372015-06-12 21:35:14 +0300236 goto allocate_mem_pin_bo_failed;
237 }
Oded Gabbay130e0372015-06-12 21:35:14 +0300238
Yong Zhao473fee42018-02-06 20:32:31 -0500239 r = amdgpu_bo_kmap(bo, &cpu_ptr_tmp);
Oded Gabbay130e0372015-06-12 21:35:14 +0300240 if (r) {
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500241 dev_err(adev->dev,
Oded Gabbay130e0372015-06-12 21:35:14 +0300242 "(%d) failed to map bo to kernel for amdkfd\n", r);
243 goto allocate_mem_kmap_bo_failed;
244 }
Oded Gabbay130e0372015-06-12 21:35:14 +0300245
Yong Zhao473fee42018-02-06 20:32:31 -0500246 *mem_obj = bo;
247 *gpu_addr = gpu_addr_tmp;
248 *cpu_ptr = cpu_ptr_tmp;
249
250 amdgpu_bo_unreserve(bo);
Oded Gabbay130e0372015-06-12 21:35:14 +0300251
252 return 0;
253
254allocate_mem_kmap_bo_failed:
Yong Zhao473fee42018-02-06 20:32:31 -0500255 amdgpu_bo_unpin(bo);
Oded Gabbay130e0372015-06-12 21:35:14 +0300256allocate_mem_pin_bo_failed:
Yong Zhao473fee42018-02-06 20:32:31 -0500257 amdgpu_bo_unreserve(bo);
Oded Gabbay130e0372015-06-12 21:35:14 +0300258allocate_mem_reserve_bo_failed:
Yong Zhao473fee42018-02-06 20:32:31 -0500259 amdgpu_bo_unref(&bo);
Oded Gabbay130e0372015-06-12 21:35:14 +0300260
261 return r;
262}
263
264void free_gtt_mem(struct kgd_dev *kgd, void *mem_obj)
265{
Yong Zhao473fee42018-02-06 20:32:31 -0500266 struct amdgpu_bo *bo = (struct amdgpu_bo *) mem_obj;
Oded Gabbay130e0372015-06-12 21:35:14 +0300267
Yong Zhao473fee42018-02-06 20:32:31 -0500268 amdgpu_bo_reserve(bo, true);
269 amdgpu_bo_kunmap(bo);
270 amdgpu_bo_unpin(bo);
271 amdgpu_bo_unreserve(bo);
272 amdgpu_bo_unref(&(bo));
Oded Gabbay130e0372015-06-12 21:35:14 +0300273}
274
Harish Kasiviswanathan30f1c042017-12-08 23:08:42 -0500275void get_local_mem_info(struct kgd_dev *kgd,
276 struct kfd_local_mem_info *mem_info)
277{
278 struct amdgpu_device *adev = (struct amdgpu_device *)kgd;
279 uint64_t address_mask = adev->dev->dma_mask ? ~*adev->dev->dma_mask :
280 ~((1ULL << 32) - 1);
Christian König770d13b2018-01-12 14:52:22 +0100281 resource_size_t aper_limit = adev->gmc.aper_base + adev->gmc.aper_size;
Harish Kasiviswanathan30f1c042017-12-08 23:08:42 -0500282
283 memset(mem_info, 0, sizeof(*mem_info));
Christian König770d13b2018-01-12 14:52:22 +0100284 if (!(adev->gmc.aper_base & address_mask || aper_limit & address_mask)) {
285 mem_info->local_mem_size_public = adev->gmc.visible_vram_size;
286 mem_info->local_mem_size_private = adev->gmc.real_vram_size -
287 adev->gmc.visible_vram_size;
Harish Kasiviswanathan30f1c042017-12-08 23:08:42 -0500288 } else {
289 mem_info->local_mem_size_public = 0;
Christian König770d13b2018-01-12 14:52:22 +0100290 mem_info->local_mem_size_private = adev->gmc.real_vram_size;
Harish Kasiviswanathan30f1c042017-12-08 23:08:42 -0500291 }
Christian König770d13b2018-01-12 14:52:22 +0100292 mem_info->vram_width = adev->gmc.vram_width;
Harish Kasiviswanathan30f1c042017-12-08 23:08:42 -0500293
Arnd Bergmannfb8baef2018-01-08 13:53:56 +0100294 pr_debug("Address base: %pap limit %pap public 0x%llx private 0x%llx\n",
Christian König770d13b2018-01-12 14:52:22 +0100295 &adev->gmc.aper_base, &aper_limit,
Harish Kasiviswanathan30f1c042017-12-08 23:08:42 -0500296 mem_info->local_mem_size_public,
297 mem_info->local_mem_size_private);
298
Shaoyun Liu4a2ba392018-02-05 16:41:33 -0500299 if (amdgpu_emu_mode == 1) {
300 mem_info->mem_clk_max = 100;
301 return;
302 }
303
Harish Kasiviswanathan30f1c042017-12-08 23:08:42 -0500304 if (amdgpu_sriov_vf(adev))
305 mem_info->mem_clk_max = adev->clock.default_mclk / 100;
306 else
307 mem_info->mem_clk_max = amdgpu_dpm_get_mclk(adev, false) / 100;
308}
309
Oded Gabbay130e0372015-06-12 21:35:14 +0300310uint64_t get_gpu_clock_counter(struct kgd_dev *kgd)
311{
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500312 struct amdgpu_device *adev = (struct amdgpu_device *)kgd;
Oded Gabbay130e0372015-06-12 21:35:14 +0300313
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500314 if (adev->gfx.funcs->get_gpu_clock_counter)
315 return adev->gfx.funcs->get_gpu_clock_counter(adev);
Oded Gabbay130e0372015-06-12 21:35:14 +0300316 return 0;
317}
318
319uint32_t get_max_engine_clock_in_mhz(struct kgd_dev *kgd)
320{
Andres Rodriguezdc102c42017-02-01 17:02:13 -0500321 struct amdgpu_device *adev = (struct amdgpu_device *)kgd;
Oded Gabbay130e0372015-06-12 21:35:14 +0300322
Felix Kuehlinga9efcc12017-11-27 18:29:43 -0500323 /* the sclk is in quantas of 10kHz */
Shaoyun Liu4a2ba392018-02-05 16:41:33 -0500324 if (amdgpu_emu_mode == 1)
325 return 100;
326
Felix Kuehlinga9efcc12017-11-27 18:29:43 -0500327 if (amdgpu_sriov_vf(adev))
328 return adev->clock.default_sclk / 100;
329
330 return amdgpu_dpm_get_sclk(adev, false) / 100;
Oded Gabbay130e0372015-06-12 21:35:14 +0300331}
Flora Cuiebdebf42017-12-08 23:08:40 -0500332
333void get_cu_info(struct kgd_dev *kgd, struct kfd_cu_info *cu_info)
334{
335 struct amdgpu_device *adev = (struct amdgpu_device *)kgd;
336 struct amdgpu_cu_info acu_info = adev->gfx.cu_info;
337
338 memset(cu_info, 0, sizeof(*cu_info));
339 if (sizeof(cu_info->cu_bitmap) != sizeof(acu_info.bitmap))
340 return;
341
342 cu_info->cu_active_number = acu_info.number;
343 cu_info->cu_ao_mask = acu_info.ao_cu_mask;
344 memcpy(&cu_info->cu_bitmap[0], &acu_info.bitmap[0],
345 sizeof(acu_info.bitmap));
346 cu_info->num_shader_engines = adev->gfx.config.max_shader_engines;
347 cu_info->num_shader_arrays_per_engine = adev->gfx.config.max_sh_per_se;
348 cu_info->num_cu_per_sh = adev->gfx.config.max_cu_per_sh;
349 cu_info->simd_per_cu = acu_info.simd_per_cu;
350 cu_info->max_waves_per_simd = acu_info.max_waves_per_simd;
351 cu_info->wave_front_size = acu_info.wave_front_size;
352 cu_info->max_scratch_slots_per_cu = acu_info.max_scratch_slots_per_cu;
353 cu_info->lds_size = acu_info.lds_size;
354}
Kent Russell9f0a0b42017-12-08 23:09:05 -0500355
356uint64_t amdgpu_amdkfd_get_vram_usage(struct kgd_dev *kgd)
357{
358 struct amdgpu_device *adev = (struct amdgpu_device *)kgd;
359
360 return amdgpu_vram_mgr_usage(&adev->mman.bdev.man[TTM_PL_VRAM]);
361}