blob: fac4b6067efd6377f3a2681b9fd050878db21c13 [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
2 * Copyright 2009 Jerome Glisse.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
16 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
17 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
18 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
19 * USE OR OTHER DEALINGS IN THE SOFTWARE.
20 *
21 * The above copyright notice and this permission notice (including the
22 * next paragraph) shall be included in all copies or substantial portions
23 * of the Software.
24 *
25 */
26/*
27 * Authors:
28 * Jerome Glisse <glisse@freedesktop.org>
29 * Thomas Hellstrom <thomas-at-tungstengraphics-dot-com>
30 * Dave Airlie
31 */
32#include <linux/list.h>
33#include <linux/slab.h>
34#include <drm/drmP.h>
35#include <drm/amdgpu_drm.h>
Oded Gabbaya187f172016-01-30 07:59:34 +020036#include <drm/drm_cache.h>
Alex Deucherd38ceaf2015-04-20 16:55:21 -040037#include "amdgpu.h"
38#include "amdgpu_trace.h"
Felix Kuehlinga46a2cd2018-02-06 20:32:38 -050039#include "amdgpu_amdkfd.h"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040040
Alex Deucher6b8f4ee2017-12-15 16:45:02 -050041static bool amdgpu_need_backup(struct amdgpu_device *adev)
42{
43 if (adev->flags & AMD_IS_APU)
44 return false;
45
Christian König4f4b94e2017-12-20 14:21:25 +010046 if (amdgpu_gpu_recovery == 0 ||
47 (amdgpu_gpu_recovery == -1 && !amdgpu_sriov_vf(adev)))
48 return false;
49
50 return true;
Alex Deucher6b8f4ee2017-12-15 16:45:02 -050051}
52
Alex Deucherd38ceaf2015-04-20 16:55:21 -040053static void amdgpu_ttm_bo_destroy(struct ttm_buffer_object *tbo)
54{
Christian Königa7d64de2016-09-15 14:58:48 +020055 struct amdgpu_device *adev = amdgpu_ttm_adev(tbo->bdev);
Andres Rodriguezb82485f2017-09-15 21:05:19 -040056 struct amdgpu_bo *bo = ttm_to_amdgpu_bo(tbo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040057
Felix Kuehlinga46a2cd2018-02-06 20:32:38 -050058 if (bo->kfd_bo)
59 amdgpu_amdkfd_unreserve_system_memory_limit(bo);
60
Christian König6375bbb2017-07-11 17:25:49 +020061 amdgpu_bo_kunmap(bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040062
Christian König7f8fb912018-03-09 14:42:54 +010063 if (bo->gem_base.import_attach)
64 drm_prime_gem_destroy(&bo->gem_base, bo->tbo.sg);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040065 drm_gem_object_release(&bo->gem_base);
Christian König82b9c552015-11-27 16:49:00 +010066 amdgpu_bo_unref(&bo->parent);
Chunming Zhou0c4e7fa2016-08-17 11:41:30 +080067 if (!list_empty(&bo->shadow_list)) {
Christian Königa7d64de2016-09-15 14:58:48 +020068 mutex_lock(&adev->shadow_list_lock);
Chunming Zhou0c4e7fa2016-08-17 11:41:30 +080069 list_del_init(&bo->shadow_list);
Christian Königa7d64de2016-09-15 14:58:48 +020070 mutex_unlock(&adev->shadow_list_lock);
Chunming Zhou0c4e7fa2016-08-17 11:41:30 +080071 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -040072 kfree(bo->metadata);
73 kfree(bo);
74}
75
76bool amdgpu_ttm_bo_is_amdgpu_bo(struct ttm_buffer_object *bo)
77{
78 if (bo->destroy == &amdgpu_ttm_bo_destroy)
79 return true;
80 return false;
81}
82
Christian Königc09312a2017-09-12 10:56:17 +020083void amdgpu_ttm_placement_from_domain(struct amdgpu_bo *abo, u32 domain)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040084{
Christian Königc09312a2017-09-12 10:56:17 +020085 struct amdgpu_device *adev = amdgpu_ttm_adev(abo->tbo.bdev);
86 struct ttm_placement *placement = &abo->placement;
87 struct ttm_place *places = abo->placements;
88 u64 flags = abo->flags;
Christian König6369f6f2016-08-15 14:08:54 +020089 u32 c = 0;
Chunming Zhou7e5a5472015-04-24 17:37:30 +080090
Alex Deucherd38ceaf2015-04-20 16:55:21 -040091 if (domain & AMDGPU_GEM_DOMAIN_VRAM) {
Christian König770d13b2018-01-12 14:52:22 +010092 unsigned visible_pfn = adev->gmc.visible_vram_size >> PAGE_SHIFT;
Christian Königfaceaf62016-08-15 14:06:50 +020093
Christian Königfaceaf62016-08-15 14:06:50 +020094 places[c].fpfn = 0;
Christian König89bb5752017-03-29 13:41:57 +020095 places[c].lpfn = 0;
Christian Königfaceaf62016-08-15 14:06:50 +020096 places[c].flags = TTM_PL_FLAG_WC | TTM_PL_FLAG_UNCACHED |
Chunming Zhou7e5a5472015-04-24 17:37:30 +080097 TTM_PL_FLAG_VRAM;
Christian König89bb5752017-03-29 13:41:57 +020098
Christian Königfaceaf62016-08-15 14:06:50 +020099 if (flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED)
100 places[c].lpfn = visible_pfn;
101 else
102 places[c].flags |= TTM_PL_FLAG_TOPDOWN;
Christian König89bb5752017-03-29 13:41:57 +0200103
104 if (flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS)
105 places[c].flags |= TTM_PL_FLAG_CONTIGUOUS;
Christian Königfaceaf62016-08-15 14:06:50 +0200106 c++;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400107 }
108
109 if (domain & AMDGPU_GEM_DOMAIN_GTT) {
Christian Königfaceaf62016-08-15 14:06:50 +0200110 places[c].fpfn = 0;
Christian Königcf273a52017-08-18 15:50:17 +0200111 if (flags & AMDGPU_GEM_CREATE_SHADOW)
Christian König770d13b2018-01-12 14:52:22 +0100112 places[c].lpfn = adev->gmc.gart_size >> PAGE_SHIFT;
Christian Königcf273a52017-08-18 15:50:17 +0200113 else
114 places[c].lpfn = 0;
Christian Königfaceaf62016-08-15 14:06:50 +0200115 places[c].flags = TTM_PL_FLAG_TT;
116 if (flags & AMDGPU_GEM_CREATE_CPU_GTT_USWC)
117 places[c].flags |= TTM_PL_FLAG_WC |
118 TTM_PL_FLAG_UNCACHED;
119 else
120 places[c].flags |= TTM_PL_FLAG_CACHED;
121 c++;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400122 }
123
124 if (domain & AMDGPU_GEM_DOMAIN_CPU) {
Christian Königfaceaf62016-08-15 14:06:50 +0200125 places[c].fpfn = 0;
126 places[c].lpfn = 0;
127 places[c].flags = TTM_PL_FLAG_SYSTEM;
128 if (flags & AMDGPU_GEM_CREATE_CPU_GTT_USWC)
129 places[c].flags |= TTM_PL_FLAG_WC |
130 TTM_PL_FLAG_UNCACHED;
131 else
132 places[c].flags |= TTM_PL_FLAG_CACHED;
133 c++;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400134 }
135
136 if (domain & AMDGPU_GEM_DOMAIN_GDS) {
Christian Königfaceaf62016-08-15 14:06:50 +0200137 places[c].fpfn = 0;
138 places[c].lpfn = 0;
139 places[c].flags = TTM_PL_FLAG_UNCACHED | AMDGPU_PL_FLAG_GDS;
140 c++;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400141 }
Christian Königfaceaf62016-08-15 14:06:50 +0200142
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400143 if (domain & AMDGPU_GEM_DOMAIN_GWS) {
Christian Königfaceaf62016-08-15 14:06:50 +0200144 places[c].fpfn = 0;
145 places[c].lpfn = 0;
146 places[c].flags = TTM_PL_FLAG_UNCACHED | AMDGPU_PL_FLAG_GWS;
147 c++;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400148 }
Christian Königfaceaf62016-08-15 14:06:50 +0200149
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400150 if (domain & AMDGPU_GEM_DOMAIN_OA) {
Christian Königfaceaf62016-08-15 14:06:50 +0200151 places[c].fpfn = 0;
152 places[c].lpfn = 0;
153 places[c].flags = TTM_PL_FLAG_UNCACHED | AMDGPU_PL_FLAG_OA;
154 c++;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400155 }
156
157 if (!c) {
Christian Königfaceaf62016-08-15 14:06:50 +0200158 places[c].fpfn = 0;
159 places[c].lpfn = 0;
160 places[c].flags = TTM_PL_MASK_CACHING | TTM_PL_FLAG_SYSTEM;
161 c++;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400162 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400163
Christian Königfaceaf62016-08-15 14:06:50 +0200164 placement->num_placement = c;
165 placement->placement = places;
166
167 placement->num_busy_placement = c;
168 placement->busy_placement = places;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400169}
170
Christian König7c204882015-12-14 13:18:01 +0100171/**
Christian König9d903cb2017-07-27 17:08:54 +0200172 * amdgpu_bo_create_reserved - create reserved BO for kernel use
Christian König7c204882015-12-14 13:18:01 +0100173 *
174 * @adev: amdgpu device object
175 * @size: size for the new BO
176 * @align: alignment for the new BO
177 * @domain: where to place it
Andrey Grodzovsky64350f12018-03-14 11:45:22 -0400178 * @bo_ptr: used to initialize BOs in structures
Christian König7c204882015-12-14 13:18:01 +0100179 * @gpu_addr: GPU addr of the pinned BO
180 * @cpu_addr: optional CPU address mapping
181 *
Christian König9d903cb2017-07-27 17:08:54 +0200182 * Allocates and pins a BO for kernel internal use, and returns it still
183 * reserved.
Christian König7c204882015-12-14 13:18:01 +0100184 *
Andrey Grodzovsky64350f12018-03-14 11:45:22 -0400185 * Note: For bo_ptr new BO is only created if bo_ptr points to NULL.
186 *
Christian König7c204882015-12-14 13:18:01 +0100187 * Returns 0 on success, negative error code otherwise.
188 */
Christian König9d903cb2017-07-27 17:08:54 +0200189int amdgpu_bo_create_reserved(struct amdgpu_device *adev,
190 unsigned long size, int align,
191 u32 domain, struct amdgpu_bo **bo_ptr,
192 u64 *gpu_addr, void **cpu_addr)
Christian König7c204882015-12-14 13:18:01 +0100193{
Christian König53766e52017-07-27 14:52:53 +0200194 bool free = false;
Christian König7c204882015-12-14 13:18:01 +0100195 int r;
196
Christian König53766e52017-07-27 14:52:53 +0200197 if (!*bo_ptr) {
Christian Königeab3de22018-03-14 14:48:17 -0500198 r = amdgpu_bo_create(adev, size, align, domain,
Christian König53766e52017-07-27 14:52:53 +0200199 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED |
200 AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS,
Christian Königeab3de22018-03-14 14:48:17 -0500201 ttm_bo_type_kernel, NULL, bo_ptr);
Christian König53766e52017-07-27 14:52:53 +0200202 if (r) {
203 dev_err(adev->dev, "(%d) failed to allocate kernel bo\n",
204 r);
205 return r;
206 }
207 free = true;
Christian König7c204882015-12-14 13:18:01 +0100208 }
209
210 r = amdgpu_bo_reserve(*bo_ptr, false);
211 if (r) {
212 dev_err(adev->dev, "(%d) failed to reserve kernel bo\n", r);
213 goto error_free;
214 }
215
216 r = amdgpu_bo_pin(*bo_ptr, domain, gpu_addr);
217 if (r) {
218 dev_err(adev->dev, "(%d) kernel bo pin failed\n", r);
219 goto error_unreserve;
220 }
221
222 if (cpu_addr) {
223 r = amdgpu_bo_kmap(*bo_ptr, cpu_addr);
224 if (r) {
225 dev_err(adev->dev, "(%d) kernel bo map failed\n", r);
226 goto error_unreserve;
227 }
228 }
229
Christian König7c204882015-12-14 13:18:01 +0100230 return 0;
231
232error_unreserve:
233 amdgpu_bo_unreserve(*bo_ptr);
234
235error_free:
Christian König53766e52017-07-27 14:52:53 +0200236 if (free)
237 amdgpu_bo_unref(bo_ptr);
Christian König7c204882015-12-14 13:18:01 +0100238
239 return r;
240}
241
Junwei Zhangaa1d5622016-09-08 10:13:32 +0800242/**
Christian König9d903cb2017-07-27 17:08:54 +0200243 * amdgpu_bo_create_kernel - create BO for kernel use
244 *
245 * @adev: amdgpu device object
246 * @size: size for the new BO
247 * @align: alignment for the new BO
248 * @domain: where to place it
Andrey Grodzovsky64350f12018-03-14 11:45:22 -0400249 * @bo_ptr: used to initialize BOs in structures
Christian König9d903cb2017-07-27 17:08:54 +0200250 * @gpu_addr: GPU addr of the pinned BO
251 * @cpu_addr: optional CPU address mapping
252 *
253 * Allocates and pins a BO for kernel internal use.
254 *
Andrey Grodzovsky64350f12018-03-14 11:45:22 -0400255 * Note: For bo_ptr new BO is only created if bo_ptr points to NULL.
256 *
Christian König9d903cb2017-07-27 17:08:54 +0200257 * Returns 0 on success, negative error code otherwise.
258 */
259int amdgpu_bo_create_kernel(struct amdgpu_device *adev,
260 unsigned long size, int align,
261 u32 domain, struct amdgpu_bo **bo_ptr,
262 u64 *gpu_addr, void **cpu_addr)
263{
264 int r;
265
266 r = amdgpu_bo_create_reserved(adev, size, align, domain, bo_ptr,
267 gpu_addr, cpu_addr);
268
269 if (r)
270 return r;
271
272 amdgpu_bo_unreserve(*bo_ptr);
273
274 return 0;
275}
276
277/**
Junwei Zhangaa1d5622016-09-08 10:13:32 +0800278 * amdgpu_bo_free_kernel - free BO for kernel use
279 *
280 * @bo: amdgpu BO to free
281 *
282 * unmaps and unpin a BO for kernel internal use.
283 */
284void amdgpu_bo_free_kernel(struct amdgpu_bo **bo, u64 *gpu_addr,
285 void **cpu_addr)
286{
287 if (*bo == NULL)
288 return;
289
Alex Xief3aa7452017-04-24 14:27:00 -0400290 if (likely(amdgpu_bo_reserve(*bo, true) == 0)) {
Junwei Zhangaa1d5622016-09-08 10:13:32 +0800291 if (cpu_addr)
292 amdgpu_bo_kunmap(*bo);
293
294 amdgpu_bo_unpin(*bo);
295 amdgpu_bo_unreserve(*bo);
296 }
297 amdgpu_bo_unref(bo);
298
299 if (gpu_addr)
300 *gpu_addr = 0;
301
302 if (cpu_addr)
303 *cpu_addr = NULL;
304}
305
Andrey Grodzovsky79c63122017-11-10 18:35:56 -0500306/* Validate bo size is bit bigger then the request domain */
307static bool amdgpu_bo_validate_size(struct amdgpu_device *adev,
308 unsigned long size, u32 domain)
309{
310 struct ttm_mem_type_manager *man = NULL;
311
312 /*
313 * If GTT is part of requested domains the check must succeed to
314 * allow fall back to GTT
315 */
316 if (domain & AMDGPU_GEM_DOMAIN_GTT) {
317 man = &adev->mman.bdev.man[TTM_PL_TT];
318
319 if (size < (man->size << PAGE_SHIFT))
320 return true;
321 else
322 goto fail;
323 }
324
325 if (domain & AMDGPU_GEM_DOMAIN_VRAM) {
326 man = &adev->mman.bdev.man[TTM_PL_VRAM];
327
328 if (size < (man->size << PAGE_SHIFT))
329 return true;
330 else
331 goto fail;
332 }
333
334
335 /* TODO add more domains checks, such as AMDGPU_GEM_DOMAIN_CPU */
336 return true;
337
338fail:
Michel Dänzer299c7762017-11-15 11:37:23 +0100339 DRM_DEBUG("BO size %lu > total memory in domain: %llu\n", size,
340 man->size << PAGE_SHIFT);
Andrey Grodzovsky79c63122017-11-10 18:35:56 -0500341 return false;
342}
343
Christian Königeab3de22018-03-14 14:48:17 -0500344static int amdgpu_bo_do_create(struct amdgpu_device *adev, unsigned long size,
345 int byte_align, u32 domain,
346 u64 flags, enum ttm_bo_type type,
Christian Königc09312a2017-09-12 10:56:17 +0200347 struct reservation_object *resv,
Christian Königc09312a2017-09-12 10:56:17 +0200348 struct amdgpu_bo **bo_ptr)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400349{
Roger He92518592017-12-08 13:31:52 +0800350 struct ttm_operation_ctx ctx = {
Christian Königeab3de22018-03-14 14:48:17 -0500351 .interruptible = (type != ttm_bo_type_kernel),
Roger He92518592017-12-08 13:31:52 +0800352 .no_wait_gpu = false,
Roger Hed330fca2018-02-06 11:22:57 +0800353 .resv = resv,
354 .flags = TTM_OPT_FLAG_ALLOW_RES_EVICT
Roger He92518592017-12-08 13:31:52 +0800355 };
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400356 struct amdgpu_bo *bo;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400357 unsigned long page_align;
358 size_t acc_size;
Chunming Zhoucc15dfa2018-03-16 12:29:38 +0800359 u32 domains;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400360 int r;
361
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400362 page_align = roundup(byte_align, PAGE_SIZE) >> PAGE_SHIFT;
363 size = ALIGN(size, PAGE_SIZE);
364
Andrey Grodzovsky79c63122017-11-10 18:35:56 -0500365 if (!amdgpu_bo_validate_size(adev, size, domain))
366 return -ENOMEM;
367
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400368 *bo_ptr = NULL;
369
370 acc_size = ttm_bo_dma_acc_size(&adev->mman.bdev, size,
371 sizeof(struct amdgpu_bo));
372
373 bo = kzalloc(sizeof(struct amdgpu_bo), GFP_KERNEL);
374 if (bo == NULL)
375 return -ENOMEM;
Christian Königc06cc6f2018-02-16 09:52:51 +0100376 drm_gem_private_object_init(adev->ddev, &bo->gem_base, size);
Chunming Zhou0c4e7fa2016-08-17 11:41:30 +0800377 INIT_LIST_HEAD(&bo->shadow_list);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400378 INIT_LIST_HEAD(&bo->va);
Kent Russell6d7d9c52017-08-08 07:58:01 -0400379 bo->preferred_domains = domain & (AMDGPU_GEM_DOMAIN_VRAM |
Christian König1ea863f2015-12-18 22:13:12 +0100380 AMDGPU_GEM_DOMAIN_GTT |
381 AMDGPU_GEM_DOMAIN_CPU |
382 AMDGPU_GEM_DOMAIN_GDS |
383 AMDGPU_GEM_DOMAIN_GWS |
384 AMDGPU_GEM_DOMAIN_OA);
Kent Russell6d7d9c52017-08-08 07:58:01 -0400385 bo->allowed_domains = bo->preferred_domains;
Christian Königeab3de22018-03-14 14:48:17 -0500386 if (type != ttm_bo_type_kernel &&
387 bo->allowed_domains == AMDGPU_GEM_DOMAIN_VRAM)
Christian König1ea863f2015-12-18 22:13:12 +0100388 bo->allowed_domains |= AMDGPU_GEM_DOMAIN_GTT;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400389
390 bo->flags = flags;
Oded Gabbaya187f172016-01-30 07:59:34 +0200391
Nils Hollanda2e2f292017-01-22 20:15:27 +0100392#ifdef CONFIG_X86_32
393 /* XXX: Write-combined CPU mappings of GTT seem broken on 32-bit
394 * See https://bugs.freedesktop.org/show_bug.cgi?id=84627
395 */
396 bo->flags &= ~AMDGPU_GEM_CREATE_CPU_GTT_USWC;
397#elif defined(CONFIG_X86) && !defined(CONFIG_X86_PAT)
398 /* Don't try to enable write-combining when it can't work, or things
399 * may be slow
400 * See https://bugs.freedesktop.org/show_bug.cgi?id=88758
401 */
402
Arnd Bergmann31bb90f2017-02-01 16:59:21 +0100403#ifndef CONFIG_COMPILE_TEST
Nils Hollanda2e2f292017-01-22 20:15:27 +0100404#warning Please enable CONFIG_MTRR and CONFIG_X86_PAT for better performance \
405 thanks to write-combining
Arnd Bergmann31bb90f2017-02-01 16:59:21 +0100406#endif
Nils Hollanda2e2f292017-01-22 20:15:27 +0100407
408 if (bo->flags & AMDGPU_GEM_CREATE_CPU_GTT_USWC)
409 DRM_INFO_ONCE("Please enable CONFIG_MTRR and CONFIG_X86_PAT for "
410 "better performance thanks to write-combining\n");
411 bo->flags &= ~AMDGPU_GEM_CREATE_CPU_GTT_USWC;
412#else
Oded Gabbaya187f172016-01-30 07:59:34 +0200413 /* For architectures that don't support WC memory,
414 * mask out the WC flag from the BO
415 */
416 if (!drm_arch_can_wc_memory())
417 bo->flags &= ~AMDGPU_GEM_CREATE_CPU_GTT_USWC;
Nils Hollanda2e2f292017-01-22 20:15:27 +0100418#endif
Oded Gabbaya187f172016-01-30 07:59:34 +0200419
Christian Königc09312a2017-09-12 10:56:17 +0200420 bo->tbo.bdev = &adev->mman.bdev;
Chunming Zhoucc15dfa2018-03-16 12:29:38 +0800421 domains = bo->preferred_domains;
422retry:
423 amdgpu_ttm_placement_from_domain(bo, domains);
Nicolai Hähnle59c66c92017-02-16 11:01:44 +0100424 r = ttm_bo_init_reserved(&adev->mman.bdev, &bo->tbo, size, type,
Christian König724daa42018-02-22 15:52:31 +0100425 &bo->placement, page_align, &ctx, acc_size,
Christian Königeab3de22018-03-14 14:48:17 -0500426 NULL, resv, &amdgpu_ttm_bo_destroy);
Chunming Zhoucc15dfa2018-03-16 12:29:38 +0800427
428 if (unlikely(r && r != -ERESTARTSYS)) {
429 if (bo->flags & AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED) {
430 bo->flags &= ~AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
431 goto retry;
432 } else if (domains != bo->preferred_domains) {
433 domains = bo->allowed_domains;
434 goto retry;
435 }
436 }
437 if (unlikely(r))
Christian Königa695e432017-10-31 09:36:13 +0100438 return r;
439
Christian König770d13b2018-01-12 14:52:22 +0100440 if (adev->gmc.visible_vram_size < adev->gmc.real_vram_size &&
John Brooks00f06b22017-06-27 22:33:18 -0400441 bo->tbo.mem.mem_type == TTM_PL_VRAM &&
Christian König770d13b2018-01-12 14:52:22 +0100442 bo->tbo.mem.start < adev->gmc.visible_vram_size >> PAGE_SHIFT)
Christian König6af046d2017-04-27 18:20:47 +0200443 amdgpu_cs_report_moved_bytes(adev, ctx.bytes_moved,
444 ctx.bytes_moved);
John Brooks00f06b22017-06-27 22:33:18 -0400445 else
Christian König6af046d2017-04-27 18:20:47 +0200446 amdgpu_cs_report_moved_bytes(adev, ctx.bytes_moved, 0);
Samuel Pitoisetfad06122017-02-09 11:33:37 +0100447
Christian Königeab3de22018-03-14 14:48:17 -0500448 if (type == ttm_bo_type_kernel)
Roger.Hec309cd02017-03-27 19:38:11 +0800449 bo->tbo.priority = 1;
Christian Könige1f055b2017-01-10 17:27:49 +0100450
Flora Cui4fea83f2016-07-20 14:44:38 +0800451 if (flags & AMDGPU_GEM_CREATE_VRAM_CLEARED &&
452 bo->tbo.mem.placement & TTM_PL_FLAG_VRAM) {
Chris Wilsonf54d1862016-10-25 13:00:45 +0100453 struct dma_fence *fence;
Flora Cui4fea83f2016-07-20 14:44:38 +0800454
Christian König8febe612018-01-24 19:55:32 +0100455 r = amdgpu_fill_buffer(bo, 0, bo->tbo.resv, &fence);
Christian Königc3af12582016-11-17 12:16:34 +0100456 if (unlikely(r))
457 goto fail_unreserve;
458
Flora Cui4fea83f2016-07-20 14:44:38 +0800459 amdgpu_bo_fence(bo, fence, false);
Chris Wilsonf54d1862016-10-25 13:00:45 +0100460 dma_fence_put(bo->tbo.moving);
461 bo->tbo.moving = dma_fence_get(fence);
462 dma_fence_put(fence);
Flora Cui4fea83f2016-07-20 14:44:38 +0800463 }
Christian Königf45dc742016-11-17 12:24:48 +0100464 if (!resv)
Nicolai Hähnle59c66c92017-02-16 11:01:44 +0100465 amdgpu_bo_unreserve(bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400466 *bo_ptr = bo;
467
468 trace_amdgpu_bo_create(bo);
469
John Brooks96cf8272017-06-30 11:31:08 -0400470 /* Treat CPU_ACCESS_REQUIRED only as a hint if given by UMD */
471 if (type == ttm_bo_type_device)
472 bo->flags &= ~AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
473
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400474 return 0;
Flora Cui4fea83f2016-07-20 14:44:38 +0800475
476fail_unreserve:
Nicolai Hähnlef1543f52017-01-10 20:36:56 +0100477 if (!resv)
478 ww_mutex_unlock(&bo->tbo.resv->lock);
Flora Cui4fea83f2016-07-20 14:44:38 +0800479 amdgpu_bo_unref(&bo);
480 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400481}
482
Chunming Zhoue7893c42016-07-26 14:13:21 +0800483static int amdgpu_bo_create_shadow(struct amdgpu_device *adev,
484 unsigned long size, int byte_align,
485 struct amdgpu_bo *bo)
486{
Chunming Zhoue7893c42016-07-26 14:13:21 +0800487 int r;
488
489 if (bo->shadow)
490 return 0;
491
Christian Königeab3de22018-03-14 14:48:17 -0500492 r = amdgpu_bo_do_create(adev, size, byte_align, AMDGPU_GEM_DOMAIN_GTT,
Christian Königc09312a2017-09-12 10:56:17 +0200493 AMDGPU_GEM_CREATE_CPU_GTT_USWC |
494 AMDGPU_GEM_CREATE_SHADOW,
Christian Königeab3de22018-03-14 14:48:17 -0500495 ttm_bo_type_kernel,
496 bo->tbo.resv, &bo->shadow);
Chunming Zhou0c4e7fa2016-08-17 11:41:30 +0800497 if (!r) {
Chunming Zhoue7893c42016-07-26 14:13:21 +0800498 bo->shadow->parent = amdgpu_bo_ref(bo);
Chunming Zhou0c4e7fa2016-08-17 11:41:30 +0800499 mutex_lock(&adev->shadow_list_lock);
500 list_add_tail(&bo->shadow_list, &adev->shadow_list);
501 mutex_unlock(&adev->shadow_list_lock);
502 }
Chunming Zhoue7893c42016-07-26 14:13:21 +0800503
504 return r;
505}
506
Christian Königeab3de22018-03-14 14:48:17 -0500507int amdgpu_bo_create(struct amdgpu_device *adev, unsigned long size,
508 int byte_align, u32 domain,
509 u64 flags, enum ttm_bo_type type,
Christian König72d76682015-09-03 17:34:59 +0200510 struct reservation_object *resv,
511 struct amdgpu_bo **bo_ptr)
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800512{
Christian Königcf273a52017-08-18 15:50:17 +0200513 uint64_t parent_flags = flags & ~AMDGPU_GEM_CREATE_SHADOW;
Chunming Zhoue7893c42016-07-26 14:13:21 +0800514 int r;
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800515
Christian Königeab3de22018-03-14 14:48:17 -0500516 r = amdgpu_bo_do_create(adev, size, byte_align, domain,
517 parent_flags, type, resv, bo_ptr);
Chunming Zhoue7893c42016-07-26 14:13:21 +0800518 if (r)
519 return r;
520
Christian Königcf273a52017-08-18 15:50:17 +0200521 if ((flags & AMDGPU_GEM_CREATE_SHADOW) && amdgpu_need_backup(adev)) {
522 if (!resv)
523 WARN_ON(reservation_object_lock((*bo_ptr)->tbo.resv,
524 NULL));
Nicolai Hähnle36ea83d2017-01-10 19:06:00 +0100525
Chunming Zhoue7893c42016-07-26 14:13:21 +0800526 r = amdgpu_bo_create_shadow(adev, size, byte_align, (*bo_ptr));
Nicolai Hähnle36ea83d2017-01-10 19:06:00 +0100527
528 if (!resv)
Christian Königcf273a52017-08-18 15:50:17 +0200529 reservation_object_unlock((*bo_ptr)->tbo.resv);
Nicolai Hähnle36ea83d2017-01-10 19:06:00 +0100530
Chunming Zhoue7893c42016-07-26 14:13:21 +0800531 if (r)
532 amdgpu_bo_unref(bo_ptr);
533 }
534
535 return r;
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800536}
537
Chunming Zhou20f4eff2016-08-04 16:51:18 +0800538int amdgpu_bo_backup_to_shadow(struct amdgpu_device *adev,
539 struct amdgpu_ring *ring,
540 struct amdgpu_bo *bo,
541 struct reservation_object *resv,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100542 struct dma_fence **fence,
Chunming Zhou20f4eff2016-08-04 16:51:18 +0800543 bool direct)
544
545{
546 struct amdgpu_bo *shadow = bo->shadow;
547 uint64_t bo_addr, shadow_addr;
548 int r;
549
550 if (!shadow)
551 return -EINVAL;
552
553 bo_addr = amdgpu_bo_gpu_offset(bo);
554 shadow_addr = amdgpu_bo_gpu_offset(bo->shadow);
555
556 r = reservation_object_reserve_shared(bo->tbo.resv);
557 if (r)
558 goto err;
559
560 r = amdgpu_copy_buffer(ring, bo_addr, shadow_addr,
561 amdgpu_bo_size(bo), resv, fence,
Christian Königfc9c8f52017-06-29 11:46:15 +0200562 direct, false);
Chunming Zhou20f4eff2016-08-04 16:51:18 +0800563 if (!r)
564 amdgpu_bo_fence(bo, *fence, true);
565
566err:
567 return r;
568}
569
Roger.He82521312017-04-21 13:08:43 +0800570int amdgpu_bo_validate(struct amdgpu_bo *bo)
571{
Christian König19be5572017-04-12 14:24:39 +0200572 struct ttm_operation_ctx ctx = { false, false };
Roger.He82521312017-04-21 13:08:43 +0800573 uint32_t domain;
574 int r;
575
576 if (bo->pin_count)
577 return 0;
578
Kent Russell6d7d9c52017-08-08 07:58:01 -0400579 domain = bo->preferred_domains;
Roger.He82521312017-04-21 13:08:43 +0800580
581retry:
582 amdgpu_ttm_placement_from_domain(bo, domain);
Christian König19be5572017-04-12 14:24:39 +0200583 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
Roger.He82521312017-04-21 13:08:43 +0800584 if (unlikely(r == -ENOMEM) && domain != bo->allowed_domains) {
585 domain = bo->allowed_domains;
586 goto retry;
587 }
588
589 return r;
590}
591
Chunming Zhou20f4eff2016-08-04 16:51:18 +0800592int amdgpu_bo_restore_from_shadow(struct amdgpu_device *adev,
593 struct amdgpu_ring *ring,
594 struct amdgpu_bo *bo,
595 struct reservation_object *resv,
Chris Wilsonf54d1862016-10-25 13:00:45 +0100596 struct dma_fence **fence,
Chunming Zhou20f4eff2016-08-04 16:51:18 +0800597 bool direct)
598
599{
600 struct amdgpu_bo *shadow = bo->shadow;
601 uint64_t bo_addr, shadow_addr;
602 int r;
603
604 if (!shadow)
605 return -EINVAL;
606
607 bo_addr = amdgpu_bo_gpu_offset(bo);
608 shadow_addr = amdgpu_bo_gpu_offset(bo->shadow);
609
610 r = reservation_object_reserve_shared(bo->tbo.resv);
611 if (r)
612 goto err;
613
614 r = amdgpu_copy_buffer(ring, shadow_addr, bo_addr,
615 amdgpu_bo_size(bo), resv, fence,
Christian Königfc9c8f52017-06-29 11:46:15 +0200616 direct, false);
Chunming Zhou20f4eff2016-08-04 16:51:18 +0800617 if (!r)
618 amdgpu_bo_fence(bo, *fence, true);
619
620err:
621 return r;
622}
623
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400624int amdgpu_bo_kmap(struct amdgpu_bo *bo, void **ptr)
625{
Christian Königf5e1c742017-07-20 23:45:18 +0200626 void *kptr;
Christian König587f3c72016-03-10 16:21:04 +0100627 long r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400628
Christian König271c8122015-05-13 14:30:53 +0200629 if (bo->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS)
630 return -EPERM;
631
Christian Königf5e1c742017-07-20 23:45:18 +0200632 kptr = amdgpu_bo_kptr(bo);
633 if (kptr) {
634 if (ptr)
635 *ptr = kptr;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400636 return 0;
637 }
Christian König587f3c72016-03-10 16:21:04 +0100638
639 r = reservation_object_wait_timeout_rcu(bo->tbo.resv, false, false,
640 MAX_SCHEDULE_TIMEOUT);
641 if (r < 0)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400642 return r;
Christian König587f3c72016-03-10 16:21:04 +0100643
644 r = ttm_bo_kmap(&bo->tbo, 0, bo->tbo.num_pages, &bo->kmap);
645 if (r)
646 return r;
647
Christian König587f3c72016-03-10 16:21:04 +0100648 if (ptr)
Christian Königf5e1c742017-07-20 23:45:18 +0200649 *ptr = amdgpu_bo_kptr(bo);
Christian König587f3c72016-03-10 16:21:04 +0100650
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400651 return 0;
652}
653
Christian Königf5e1c742017-07-20 23:45:18 +0200654void *amdgpu_bo_kptr(struct amdgpu_bo *bo)
655{
656 bool is_iomem;
657
658 return ttm_kmap_obj_virtual(&bo->kmap, &is_iomem);
659}
660
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400661void amdgpu_bo_kunmap(struct amdgpu_bo *bo)
662{
Christian Königf5e1c742017-07-20 23:45:18 +0200663 if (bo->kmap.bo)
664 ttm_bo_kunmap(&bo->kmap);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400665}
666
667struct amdgpu_bo *amdgpu_bo_ref(struct amdgpu_bo *bo)
668{
669 if (bo == NULL)
670 return NULL;
671
672 ttm_bo_reference(&bo->tbo);
673 return bo;
674}
675
676void amdgpu_bo_unref(struct amdgpu_bo **bo)
677{
678 struct ttm_buffer_object *tbo;
679
680 if ((*bo) == NULL)
681 return;
682
683 tbo = &((*bo)->tbo);
684 ttm_bo_unref(&tbo);
685 if (tbo == NULL)
686 *bo = NULL;
687}
688
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800689int amdgpu_bo_pin_restricted(struct amdgpu_bo *bo, u32 domain,
690 u64 min_offset, u64 max_offset,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400691 u64 *gpu_addr)
692{
Christian Königa7d64de2016-09-15 14:58:48 +0200693 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
Christian König19be5572017-04-12 14:24:39 +0200694 struct ttm_operation_ctx ctx = { false, false };
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400695 int r, i;
696
Christian Königcc325d12016-02-08 11:08:35 +0100697 if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm))
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400698 return -EPERM;
699
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800700 if (WARN_ON_ONCE(min_offset > max_offset))
701 return -EINVAL;
702
Christopher James Halse Rogers803d89a2017-04-03 13:31:22 +1000703 /* A shared bo cannot be migrated to VRAM */
704 if (bo->prime_shared_count && (domain == AMDGPU_GEM_DOMAIN_VRAM))
705 return -EINVAL;
706
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400707 if (bo->pin_count) {
Flora Cui408778e2016-08-18 12:55:13 +0800708 uint32_t mem_type = bo->tbo.mem.mem_type;
709
Christian Königf5318952017-10-23 17:29:36 +0200710 if (!(domain & amdgpu_mem_type_to_domain(mem_type)))
Flora Cui408778e2016-08-18 12:55:13 +0800711 return -EINVAL;
712
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400713 bo->pin_count++;
714 if (gpu_addr)
715 *gpu_addr = amdgpu_bo_gpu_offset(bo);
716
717 if (max_offset != 0) {
Flora Cui27798e02016-08-18 13:18:09 +0800718 u64 domain_start = bo->tbo.bdev->man[mem_type].gpu_offset;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400719 WARN_ON_ONCE(max_offset <
720 (amdgpu_bo_gpu_offset(bo) - domain_start));
721 }
722
723 return 0;
724 }
Christian König03f48dd2016-08-15 17:00:22 +0200725
726 bo->flags |= AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS;
Christian Könige9c75772017-09-11 17:29:26 +0200727 /* force to pin into visible video ram */
728 if (!(bo->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS))
729 bo->flags |= AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400730 amdgpu_ttm_placement_from_domain(bo, domain);
731 for (i = 0; i < bo->placement.num_placement; i++) {
Christian Könige9c75772017-09-11 17:29:26 +0200732 unsigned fpfn, lpfn;
733
734 fpfn = min_offset >> PAGE_SHIFT;
735 lpfn = max_offset >> PAGE_SHIFT;
736
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800737 if (fpfn > bo->placements[i].fpfn)
738 bo->placements[i].fpfn = fpfn;
Christian König78d0e182016-01-19 12:48:14 +0100739 if (!bo->placements[i].lpfn ||
740 (lpfn && lpfn < bo->placements[i].lpfn))
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800741 bo->placements[i].lpfn = lpfn;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400742 bo->placements[i].flags |= TTM_PL_FLAG_NO_EVICT;
743 }
744
Christian König19be5572017-04-12 14:24:39 +0200745 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
Christian König6681c5e2016-08-12 16:50:12 +0200746 if (unlikely(r)) {
Christian Königa7d64de2016-09-15 14:58:48 +0200747 dev_err(adev->dev, "%p pin failed\n", bo);
Christian König6681c5e2016-08-12 16:50:12 +0200748 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400749 }
Christian König6681c5e2016-08-12 16:50:12 +0200750
Christian Königc5835bb2017-10-27 15:43:14 +0200751 r = amdgpu_ttm_alloc_gart(&bo->tbo);
Christian Königead282a2017-10-20 13:12:12 +0200752 if (unlikely(r)) {
753 dev_err(adev->dev, "%p bind failed\n", bo);
754 goto error;
Chunming Zhou07306b42017-07-12 12:36:47 +0800755 }
Christian König5e91fb52017-10-20 13:11:00 +0200756
Christian Königead282a2017-10-20 13:12:12 +0200757 bo->pin_count = 1;
758 if (gpu_addr != NULL)
759 *gpu_addr = amdgpu_bo_gpu_offset(bo);
760
Christian König5e91fb52017-10-20 13:11:00 +0200761 domain = amdgpu_mem_type_to_domain(bo->tbo.mem.mem_type);
Christian König6681c5e2016-08-12 16:50:12 +0200762 if (domain == AMDGPU_GEM_DOMAIN_VRAM) {
Christian Königa7d64de2016-09-15 14:58:48 +0200763 adev->vram_pin_size += amdgpu_bo_size(bo);
Christian König6681c5e2016-08-12 16:50:12 +0200764 if (bo->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS)
Christian Königa7d64de2016-09-15 14:58:48 +0200765 adev->invisible_pin_size += amdgpu_bo_size(bo);
Flora Cui32ab75f2016-08-18 13:17:07 +0800766 } else if (domain == AMDGPU_GEM_DOMAIN_GTT) {
Christian Königa7d64de2016-09-15 14:58:48 +0200767 adev->gart_pin_size += amdgpu_bo_size(bo);
Christian König6681c5e2016-08-12 16:50:12 +0200768 }
769
770error:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400771 return r;
772}
773
774int amdgpu_bo_pin(struct amdgpu_bo *bo, u32 domain, u64 *gpu_addr)
775{
Chunming Zhou7e5a5472015-04-24 17:37:30 +0800776 return amdgpu_bo_pin_restricted(bo, domain, 0, 0, gpu_addr);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400777}
778
779int amdgpu_bo_unpin(struct amdgpu_bo *bo)
780{
Christian Königa7d64de2016-09-15 14:58:48 +0200781 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
Christian König19be5572017-04-12 14:24:39 +0200782 struct ttm_operation_ctx ctx = { false, false };
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400783 int r, i;
784
785 if (!bo->pin_count) {
Christian Königa7d64de2016-09-15 14:58:48 +0200786 dev_warn(adev->dev, "%p unpin not necessary\n", bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400787 return 0;
788 }
789 bo->pin_count--;
790 if (bo->pin_count)
791 return 0;
792 for (i = 0; i < bo->placement.num_placement; i++) {
793 bo->placements[i].lpfn = 0;
794 bo->placements[i].flags &= ~TTM_PL_FLAG_NO_EVICT;
795 }
Christian König19be5572017-04-12 14:24:39 +0200796 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
Christian König6681c5e2016-08-12 16:50:12 +0200797 if (unlikely(r)) {
Christian Königa7d64de2016-09-15 14:58:48 +0200798 dev_err(adev->dev, "%p validate failed for unpin\n", bo);
Christian König6681c5e2016-08-12 16:50:12 +0200799 goto error;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400800 }
Christian König6681c5e2016-08-12 16:50:12 +0200801
802 if (bo->tbo.mem.mem_type == TTM_PL_VRAM) {
Christian Königa7d64de2016-09-15 14:58:48 +0200803 adev->vram_pin_size -= amdgpu_bo_size(bo);
Christian König6681c5e2016-08-12 16:50:12 +0200804 if (bo->flags & AMDGPU_GEM_CREATE_NO_CPU_ACCESS)
Christian Königa7d64de2016-09-15 14:58:48 +0200805 adev->invisible_pin_size -= amdgpu_bo_size(bo);
Flora Cui441f90e2016-09-09 14:15:30 +0800806 } else if (bo->tbo.mem.mem_type == TTM_PL_TT) {
Christian Königa7d64de2016-09-15 14:58:48 +0200807 adev->gart_pin_size -= amdgpu_bo_size(bo);
Christian König6681c5e2016-08-12 16:50:12 +0200808 }
809
810error:
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400811 return r;
812}
813
814int amdgpu_bo_evict_vram(struct amdgpu_device *adev)
815{
816 /* late 2.6.33 fix IGP hibernate - we need pm ops to do this correct */
Jammy Zhou2f7d10b2015-07-22 11:29:01 +0800817 if (0 && (adev->flags & AMD_IS_APU)) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400818 /* Useless to evict on IGP chips */
819 return 0;
820 }
821 return ttm_bo_evict_mm(&adev->mman.bdev, TTM_PL_VRAM);
822}
823
Alex Deucher1f8628c2016-03-31 16:56:22 -0400824static const char *amdgpu_vram_names[] = {
825 "UNKNOWN",
826 "GDDR1",
827 "DDR2",
828 "GDDR3",
829 "GDDR4",
830 "GDDR5",
831 "HBM",
Tom St Denisbc227cf2018-03-09 06:16:55 -0500832 "DDR3",
833 "DDR4",
Alex Deucher1f8628c2016-03-31 16:56:22 -0400834};
835
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400836int amdgpu_bo_init(struct amdgpu_device *adev)
837{
Dave Airlie7cf321d2016-10-24 15:37:48 +1000838 /* reserve PAT memory space to WC for VRAM */
Christian König770d13b2018-01-12 14:52:22 +0100839 arch_io_reserve_memtype_wc(adev->gmc.aper_base,
840 adev->gmc.aper_size);
Dave Airlie7cf321d2016-10-24 15:37:48 +1000841
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400842 /* Add an MTRR for the VRAM */
Christian König770d13b2018-01-12 14:52:22 +0100843 adev->gmc.vram_mtrr = arch_phys_wc_add(adev->gmc.aper_base,
844 adev->gmc.aper_size);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400845 DRM_INFO("Detected VRAM RAM=%lluM, BAR=%lluM\n",
Christian König770d13b2018-01-12 14:52:22 +0100846 adev->gmc.mc_vram_size >> 20,
847 (unsigned long long)adev->gmc.aper_size >> 20);
Alex Deucher1f8628c2016-03-31 16:56:22 -0400848 DRM_INFO("RAM width %dbits %s\n",
Christian König770d13b2018-01-12 14:52:22 +0100849 adev->gmc.vram_width, amdgpu_vram_names[adev->gmc.vram_type]);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400850 return amdgpu_ttm_init(adev);
851}
852
853void amdgpu_bo_fini(struct amdgpu_device *adev)
854{
855 amdgpu_ttm_fini(adev);
Christian König770d13b2018-01-12 14:52:22 +0100856 arch_phys_wc_del(adev->gmc.vram_mtrr);
857 arch_io_free_memtype_wc(adev->gmc.aper_base, adev->gmc.aper_size);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400858}
859
860int amdgpu_bo_fbdev_mmap(struct amdgpu_bo *bo,
861 struct vm_area_struct *vma)
862{
863 return ttm_fbdev_mmap(vma, &bo->tbo);
864}
865
866int amdgpu_bo_set_tiling_flags(struct amdgpu_bo *bo, u64 tiling_flags)
867{
Marek Olšák9079ac72017-03-03 16:03:15 -0500868 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev);
869
870 if (adev->family <= AMDGPU_FAMILY_CZ &&
871 AMDGPU_TILING_GET(tiling_flags, TILE_SPLIT) > 6)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400872 return -EINVAL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400873
874 bo->tiling_flags = tiling_flags;
875 return 0;
876}
877
878void amdgpu_bo_get_tiling_flags(struct amdgpu_bo *bo, u64 *tiling_flags)
879{
880 lockdep_assert_held(&bo->tbo.resv->lock.base);
881
882 if (tiling_flags)
883 *tiling_flags = bo->tiling_flags;
884}
885
886int amdgpu_bo_set_metadata (struct amdgpu_bo *bo, void *metadata,
887 uint32_t metadata_size, uint64_t flags)
888{
889 void *buffer;
890
891 if (!metadata_size) {
892 if (bo->metadata_size) {
893 kfree(bo->metadata);
Dave Airlie0092d3e2016-05-03 12:44:29 +1000894 bo->metadata = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400895 bo->metadata_size = 0;
896 }
897 return 0;
898 }
899
900 if (metadata == NULL)
901 return -EINVAL;
902
Andrzej Hajda71affda2015-09-21 17:34:39 -0400903 buffer = kmemdup(metadata, metadata_size, GFP_KERNEL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400904 if (buffer == NULL)
905 return -ENOMEM;
906
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400907 kfree(bo->metadata);
908 bo->metadata_flags = flags;
909 bo->metadata = buffer;
910 bo->metadata_size = metadata_size;
911
912 return 0;
913}
914
915int amdgpu_bo_get_metadata(struct amdgpu_bo *bo, void *buffer,
916 size_t buffer_size, uint32_t *metadata_size,
917 uint64_t *flags)
918{
919 if (!buffer && !metadata_size)
920 return -EINVAL;
921
922 if (buffer) {
923 if (buffer_size < bo->metadata_size)
924 return -EINVAL;
925
926 if (bo->metadata_size)
927 memcpy(buffer, bo->metadata, bo->metadata_size);
928 }
929
930 if (metadata_size)
931 *metadata_size = bo->metadata_size;
932 if (flags)
933 *flags = bo->metadata_flags;
934
935 return 0;
936}
937
938void amdgpu_bo_move_notify(struct ttm_buffer_object *bo,
Nicolai Hähnle66257db2016-12-15 17:23:49 +0100939 bool evict,
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400940 struct ttm_mem_reg *new_mem)
941{
Christian Königa7d64de2016-09-15 14:58:48 +0200942 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
Christian König765e7fb2016-09-15 15:06:50 +0200943 struct amdgpu_bo *abo;
David Mao15da3012016-06-07 17:48:52 +0800944 struct ttm_mem_reg *old_mem = &bo->mem;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400945
946 if (!amdgpu_ttm_bo_is_amdgpu_bo(bo))
947 return;
948
Andres Rodriguezb82485f2017-09-15 21:05:19 -0400949 abo = ttm_to_amdgpu_bo(bo);
Christian König3f3333f2017-08-03 14:02:13 +0200950 amdgpu_vm_bo_invalidate(adev, abo, evict);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400951
Christian König6375bbb2017-07-11 17:25:49 +0200952 amdgpu_bo_kunmap(abo);
953
Nicolai Hähnle661a7602016-12-15 17:26:42 +0100954 /* remember the eviction */
955 if (evict)
956 atomic64_inc(&adev->num_evictions);
957
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400958 /* update statistics */
959 if (!new_mem)
960 return;
961
962 /* move_notify is called before move happens */
Christian König765e7fb2016-09-15 15:06:50 +0200963 trace_amdgpu_ttm_bo_move(abo, new_mem->mem_type, old_mem->mem_type);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400964}
965
966int amdgpu_bo_fault_reserve_notify(struct ttm_buffer_object *bo)
967{
Christian Königa7d64de2016-09-15 14:58:48 +0200968 struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev);
Christian König19be5572017-04-12 14:24:39 +0200969 struct ttm_operation_ctx ctx = { false, false };
Christian König5fb19412015-05-21 17:03:46 +0200970 struct amdgpu_bo *abo;
John Brooks96cf8272017-06-30 11:31:08 -0400971 unsigned long offset, size;
972 int r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400973
974 if (!amdgpu_ttm_bo_is_amdgpu_bo(bo))
975 return 0;
Christian König5fb19412015-05-21 17:03:46 +0200976
Andres Rodriguezb82485f2017-09-15 21:05:19 -0400977 abo = ttm_to_amdgpu_bo(bo);
John Brooks96cf8272017-06-30 11:31:08 -0400978
979 /* Remember that this BO was accessed by the CPU */
980 abo->flags |= AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED;
981
Christian König5fb19412015-05-21 17:03:46 +0200982 if (bo->mem.mem_type != TTM_PL_VRAM)
983 return 0;
984
985 size = bo->mem.num_pages << PAGE_SHIFT;
986 offset = bo->mem.start << PAGE_SHIFT;
Christian König770d13b2018-01-12 14:52:22 +0100987 if ((offset + size) <= adev->gmc.visible_vram_size)
Christian König5fb19412015-05-21 17:03:46 +0200988 return 0;
989
Michel Dänzer104ece92016-03-28 12:53:02 +0900990 /* Can't move a pinned BO to visible VRAM */
991 if (abo->pin_count > 0)
992 return -EINVAL;
993
Christian König5fb19412015-05-21 17:03:46 +0200994 /* hurrah the memory is not visible ! */
Marek Olšák68e2c5f2017-05-17 20:05:08 +0200995 atomic64_inc(&adev->num_vram_cpu_page_faults);
John Brooks41d9a6a2017-06-27 22:33:21 -0400996 amdgpu_ttm_placement_from_domain(abo, AMDGPU_GEM_DOMAIN_VRAM |
997 AMDGPU_GEM_DOMAIN_GTT);
998
999 /* Avoid costly evictions; only set GTT as a busy placement */
1000 abo->placement.num_busy_placement = 1;
1001 abo->placement.busy_placement = &abo->placements[1];
1002
Christian König19be5572017-04-12 14:24:39 +02001003 r = ttm_bo_validate(bo, &abo->placement, &ctx);
John Brooks41d9a6a2017-06-27 22:33:21 -04001004 if (unlikely(r != 0))
Christian König5fb19412015-05-21 17:03:46 +02001005 return r;
Christian König5fb19412015-05-21 17:03:46 +02001006
1007 offset = bo->mem.start << PAGE_SHIFT;
1008 /* this should never happen */
John Brooks41d9a6a2017-06-27 22:33:21 -04001009 if (bo->mem.mem_type == TTM_PL_VRAM &&
Christian König770d13b2018-01-12 14:52:22 +01001010 (offset + size) > adev->gmc.visible_vram_size)
Christian König5fb19412015-05-21 17:03:46 +02001011 return -EINVAL;
1012
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001013 return 0;
1014}
1015
1016/**
1017 * amdgpu_bo_fence - add fence to buffer object
1018 *
1019 * @bo: buffer object in question
1020 * @fence: fence to add
1021 * @shared: true if fence should be added shared
1022 *
1023 */
Chris Wilsonf54d1862016-10-25 13:00:45 +01001024void amdgpu_bo_fence(struct amdgpu_bo *bo, struct dma_fence *fence,
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001025 bool shared)
1026{
1027 struct reservation_object *resv = bo->tbo.resv;
1028
1029 if (shared)
Chunming Zhoue40a3112015-08-03 11:38:09 +08001030 reservation_object_add_shared_fence(resv, fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001031 else
Chunming Zhoue40a3112015-08-03 11:38:09 +08001032 reservation_object_add_excl_fence(resv, fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001033}
Christian Königcdb7e8f2016-07-25 17:56:18 +02001034
1035/**
1036 * amdgpu_bo_gpu_offset - return GPU offset of bo
1037 * @bo: amdgpu object for which we query the offset
1038 *
1039 * Returns current GPU offset of the object.
1040 *
1041 * Note: object should either be pinned or reserved when calling this
1042 * function, it might be useful to add check for this for debugging.
1043 */
1044u64 amdgpu_bo_gpu_offset(struct amdgpu_bo *bo)
1045{
1046 WARN_ON_ONCE(bo->tbo.mem.mem_type == TTM_PL_SYSTEM);
Christian Königc855e252016-09-05 17:00:57 +02001047 WARN_ON_ONCE(bo->tbo.mem.mem_type == TTM_PL_TT &&
Christian König3da917b2017-10-27 14:17:09 +02001048 !amdgpu_gtt_mgr_has_gart_addr(&bo->tbo.mem));
Christian Königcdb7e8f2016-07-25 17:56:18 +02001049 WARN_ON_ONCE(!ww_mutex_is_locked(&bo->tbo.resv->lock) &&
1050 !bo->pin_count);
Christian König9702d402016-09-07 15:10:44 +02001051 WARN_ON_ONCE(bo->tbo.mem.start == AMDGPU_BO_INVALID_OFFSET);
Christian König03f48dd2016-08-15 17:00:22 +02001052 WARN_ON_ONCE(bo->tbo.mem.mem_type == TTM_PL_VRAM &&
1053 !(bo->flags & AMDGPU_GEM_CREATE_VRAM_CONTIGUOUS));
Christian Königcdb7e8f2016-07-25 17:56:18 +02001054
1055 return bo->tbo.offset;
1056}