drm/nouveau: require reservations for nouveau_fence_sync and nouveau_bo_fence
[deliverable/linux.git] / drivers / gpu / drm / nouveau / nouveau_bo.c
CommitLineData
6ee73861
BS
1/*
2 * Copyright 2007 Dave Airlied
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 "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 */
24/*
25 * Authors: Dave Airlied <airlied@linux.ie>
26 * Ben Skeggs <darktama@iinet.net.au>
27 * Jeremy Kolb <jkolb@brandeis.edu>
28 */
29
fdb751ef 30#include <linux/dma-mapping.h>
3e2b756b 31#include <linux/swiotlb.h>
6ee73861 32
ebb945a9 33#include "nouveau_drm.h"
6ee73861 34#include "nouveau_dma.h"
d375e7d5 35#include "nouveau_fence.h"
6ee73861 36
ebb945a9
BS
37#include "nouveau_bo.h"
38#include "nouveau_ttm.h"
39#include "nouveau_gem.h"
a510604d 40
bc9e7b9a
BS
41/*
42 * NV10-NV40 tiling helpers
43 */
44
45static void
ebb945a9
BS
46nv10_bo_update_tile_region(struct drm_device *dev, struct nouveau_drm_tile *reg,
47 u32 addr, u32 size, u32 pitch, u32 flags)
bc9e7b9a 48{
77145f1c 49 struct nouveau_drm *drm = nouveau_drm(dev);
ebb945a9 50 int i = reg - drm->tile.reg;
967e7bde 51 struct nouveau_fb *pfb = nvkm_fb(&drm->device);
ebb945a9
BS
52 struct nouveau_fb_tile *tile = &pfb->tile.region[i];
53 struct nouveau_engine *engine;
bc9e7b9a 54
ebb945a9 55 nouveau_fence_unref(&reg->fence);
bc9e7b9a
BS
56
57 if (tile->pitch)
ebb945a9 58 pfb->tile.fini(pfb, i, tile);
bc9e7b9a
BS
59
60 if (pitch)
ebb945a9 61 pfb->tile.init(pfb, i, addr, size, pitch, flags, tile);
bc9e7b9a 62
ebb945a9 63 pfb->tile.prog(pfb, i, tile);
bc9e7b9a 64
ebb945a9
BS
65 if ((engine = nouveau_engine(pfb, NVDEV_ENGINE_GR)))
66 engine->tile_prog(engine, i);
67 if ((engine = nouveau_engine(pfb, NVDEV_ENGINE_MPEG)))
68 engine->tile_prog(engine, i);
bc9e7b9a
BS
69}
70
ebb945a9 71static struct nouveau_drm_tile *
bc9e7b9a
BS
72nv10_bo_get_tile_region(struct drm_device *dev, int i)
73{
77145f1c 74 struct nouveau_drm *drm = nouveau_drm(dev);
ebb945a9 75 struct nouveau_drm_tile *tile = &drm->tile.reg[i];
bc9e7b9a 76
ebb945a9 77 spin_lock(&drm->tile.lock);
bc9e7b9a
BS
78
79 if (!tile->used &&
80 (!tile->fence || nouveau_fence_done(tile->fence)))
81 tile->used = true;
82 else
83 tile = NULL;
84
ebb945a9 85 spin_unlock(&drm->tile.lock);
bc9e7b9a
BS
86 return tile;
87}
88
89static void
ebb945a9
BS
90nv10_bo_put_tile_region(struct drm_device *dev, struct nouveau_drm_tile *tile,
91 struct nouveau_fence *fence)
bc9e7b9a 92{
77145f1c 93 struct nouveau_drm *drm = nouveau_drm(dev);
bc9e7b9a
BS
94
95 if (tile) {
ebb945a9 96 spin_lock(&drm->tile.lock);
5d216f60 97 tile->fence = nouveau_fence_ref(fence);
bc9e7b9a 98 tile->used = false;
ebb945a9 99 spin_unlock(&drm->tile.lock);
bc9e7b9a
BS
100 }
101}
102
ebb945a9
BS
103static struct nouveau_drm_tile *
104nv10_bo_set_tiling(struct drm_device *dev, u32 addr,
105 u32 size, u32 pitch, u32 flags)
bc9e7b9a 106{
77145f1c 107 struct nouveau_drm *drm = nouveau_drm(dev);
967e7bde 108 struct nouveau_fb *pfb = nvkm_fb(&drm->device);
ebb945a9 109 struct nouveau_drm_tile *tile, *found = NULL;
bc9e7b9a
BS
110 int i;
111
ebb945a9 112 for (i = 0; i < pfb->tile.regions; i++) {
bc9e7b9a
BS
113 tile = nv10_bo_get_tile_region(dev, i);
114
115 if (pitch && !found) {
116 found = tile;
117 continue;
118
ebb945a9 119 } else if (tile && pfb->tile.region[i].pitch) {
bc9e7b9a
BS
120 /* Kill an unused tile region. */
121 nv10_bo_update_tile_region(dev, tile, 0, 0, 0, 0);
122 }
123
124 nv10_bo_put_tile_region(dev, tile, NULL);
125 }
126
127 if (found)
128 nv10_bo_update_tile_region(dev, found, addr, size,
129 pitch, flags);
130 return found;
131}
132
6ee73861
BS
133static void
134nouveau_bo_del_ttm(struct ttm_buffer_object *bo)
135{
ebb945a9
BS
136 struct nouveau_drm *drm = nouveau_bdev(bo->bdev);
137 struct drm_device *dev = drm->dev;
6ee73861
BS
138 struct nouveau_bo *nvbo = nouveau_bo(bo);
139
55fb74ad 140 if (unlikely(nvbo->gem.filp))
6ee73861 141 DRM_ERROR("bo %p still attached to GEM object\n", bo);
4f385599 142 WARN_ON(nvbo->pin_refcnt > 0);
bc9e7b9a 143 nv10_bo_put_tile_region(dev, nvbo->tile, NULL);
6ee73861
BS
144 kfree(nvbo);
145}
146
a0af9add 147static void
db5c8e29 148nouveau_bo_fixup_align(struct nouveau_bo *nvbo, u32 flags,
f91bac5b 149 int *align, int *size)
a0af9add 150{
ebb945a9 151 struct nouveau_drm *drm = nouveau_bdev(nvbo->bo.bdev);
967e7bde 152 struct nvif_device *device = &drm->device;
a0af9add 153
967e7bde 154 if (device->info.family < NV_DEVICE_INFO_V0_TESLA) {
bfd83aca 155 if (nvbo->tile_mode) {
967e7bde 156 if (device->info.chipset >= 0x40) {
a0af9add 157 *align = 65536;
bfd83aca 158 *size = roundup(*size, 64 * nvbo->tile_mode);
a0af9add 159
967e7bde 160 } else if (device->info.chipset >= 0x30) {
a0af9add 161 *align = 32768;
bfd83aca 162 *size = roundup(*size, 64 * nvbo->tile_mode);
a0af9add 163
967e7bde 164 } else if (device->info.chipset >= 0x20) {
a0af9add 165 *align = 16384;
bfd83aca 166 *size = roundup(*size, 64 * nvbo->tile_mode);
a0af9add 167
967e7bde 168 } else if (device->info.chipset >= 0x10) {
a0af9add 169 *align = 16384;
bfd83aca 170 *size = roundup(*size, 32 * nvbo->tile_mode);
a0af9add
FJ
171 }
172 }
bfd83aca 173 } else {
f91bac5b
BS
174 *size = roundup(*size, (1 << nvbo->page_shift));
175 *align = max((1 << nvbo->page_shift), *align);
a0af9add
FJ
176 }
177
1c7059e4 178 *size = roundup(*size, PAGE_SIZE);
a0af9add
FJ
179}
180
6ee73861 181int
7375c95b
BS
182nouveau_bo_new(struct drm_device *dev, int size, int align,
183 uint32_t flags, uint32_t tile_mode, uint32_t tile_flags,
22b33e8e 184 struct sg_table *sg,
7375c95b 185 struct nouveau_bo **pnvbo)
6ee73861 186{
77145f1c 187 struct nouveau_drm *drm = nouveau_drm(dev);
6ee73861 188 struct nouveau_bo *nvbo;
57de4ba9 189 size_t acc_size;
f91bac5b 190 int ret;
22b33e8e 191 int type = ttm_bo_type_device;
35095f75
ML
192 int lpg_shift = 12;
193 int max_size;
194
3ee6f5b5
BS
195 if (drm->client.vm)
196 lpg_shift = drm->client.vm->vmm->lpg_shift;
35095f75 197 max_size = INT_MAX & ~((1 << lpg_shift) - 1);
0108bc80
ML
198
199 if (size <= 0 || size > max_size) {
fa2bade9 200 NV_WARN(drm, "skipped size %x\n", (u32)size);
0108bc80
ML
201 return -EINVAL;
202 }
22b33e8e
DA
203
204 if (sg)
205 type = ttm_bo_type_sg;
6ee73861
BS
206
207 nvbo = kzalloc(sizeof(struct nouveau_bo), GFP_KERNEL);
208 if (!nvbo)
209 return -ENOMEM;
210 INIT_LIST_HEAD(&nvbo->head);
211 INIT_LIST_HEAD(&nvbo->entry);
fd2871af 212 INIT_LIST_HEAD(&nvbo->vma_list);
6ee73861
BS
213 nvbo->tile_mode = tile_mode;
214 nvbo->tile_flags = tile_flags;
ebb945a9 215 nvbo->bo.bdev = &drm->ttm.bdev;
6ee73861 216
f91bac5b 217 nvbo->page_shift = 12;
3ee6f5b5 218 if (drm->client.vm) {
f91bac5b 219 if (!(flags & TTM_PL_FLAG_TT) && size > 256 * 1024)
3ee6f5b5 220 nvbo->page_shift = drm->client.vm->vmm->lpg_shift;
f91bac5b
BS
221 }
222
223 nouveau_bo_fixup_align(nvbo, flags, &align, &size);
fd2871af
BS
224 nvbo->bo.mem.num_pages = size >> PAGE_SHIFT;
225 nouveau_bo_placement_set(nvbo, flags, 0);
6ee73861 226
ebb945a9 227 acc_size = ttm_bo_dma_acc_size(&drm->ttm.bdev, size,
57de4ba9
JG
228 sizeof(struct nouveau_bo));
229
ebb945a9 230 ret = ttm_bo_init(&drm->ttm.bdev, &nvbo->bo, size,
22b33e8e 231 type, &nvbo->placement,
0b91c4a1 232 align >> PAGE_SHIFT, false, NULL, acc_size, sg,
fd2871af 233 nouveau_bo_del_ttm);
6ee73861
BS
234 if (ret) {
235 /* ttm will call nouveau_bo_del_ttm if it fails.. */
236 return ret;
237 }
238
6ee73861
BS
239 *pnvbo = nvbo;
240 return 0;
241}
242
78ad0f7b 243static void
f1217ed0 244set_placement_list(struct ttm_place *pl, unsigned *n, uint32_t type, uint32_t flags)
78ad0f7b
FJ
245{
246 *n = 0;
247
248 if (type & TTM_PL_FLAG_VRAM)
f1217ed0 249 pl[(*n)++].flags = TTM_PL_FLAG_VRAM | flags;
78ad0f7b 250 if (type & TTM_PL_FLAG_TT)
f1217ed0 251 pl[(*n)++].flags = TTM_PL_FLAG_TT | flags;
78ad0f7b 252 if (type & TTM_PL_FLAG_SYSTEM)
f1217ed0 253 pl[(*n)++].flags = TTM_PL_FLAG_SYSTEM | flags;
78ad0f7b
FJ
254}
255
699ddfd9
FJ
256static void
257set_placement_range(struct nouveau_bo *nvbo, uint32_t type)
258{
ebb945a9 259 struct nouveau_drm *drm = nouveau_bdev(nvbo->bo.bdev);
f392ec4b 260 u32 vram_pages = drm->device.info.ram_size >> PAGE_SHIFT;
f1217ed0 261 unsigned i, fpfn, lpfn;
699ddfd9 262
967e7bde 263 if (drm->device.info.family == NV_DEVICE_INFO_V0_CELSIUS &&
812f219a 264 nvbo->tile_mode && (type & TTM_PL_FLAG_VRAM) &&
4beb116a 265 nvbo->bo.mem.num_pages < vram_pages / 4) {
699ddfd9
FJ
266 /*
267 * Make sure that the color and depth buffers are handled
268 * by independent memory controller units. Up to a 9x
269 * speed up when alpha-blending and depth-test are enabled
270 * at the same time.
271 */
699ddfd9 272 if (nvbo->tile_flags & NOUVEAU_GEM_TILE_ZETA) {
f1217ed0
CK
273 fpfn = vram_pages / 2;
274 lpfn = ~0;
699ddfd9 275 } else {
f1217ed0
CK
276 fpfn = 0;
277 lpfn = vram_pages / 2;
278 }
279 for (i = 0; i < nvbo->placement.num_placement; ++i) {
280 nvbo->placements[i].fpfn = fpfn;
281 nvbo->placements[i].lpfn = lpfn;
282 }
283 for (i = 0; i < nvbo->placement.num_busy_placement; ++i) {
284 nvbo->busy_placements[i].fpfn = fpfn;
285 nvbo->busy_placements[i].lpfn = lpfn;
699ddfd9
FJ
286 }
287 }
288}
289
6ee73861 290void
78ad0f7b 291nouveau_bo_placement_set(struct nouveau_bo *nvbo, uint32_t type, uint32_t busy)
6ee73861 292{
78ad0f7b
FJ
293 struct ttm_placement *pl = &nvbo->placement;
294 uint32_t flags = TTM_PL_MASK_CACHING |
295 (nvbo->pin_refcnt ? TTM_PL_FLAG_NO_EVICT : 0);
296
297 pl->placement = nvbo->placements;
298 set_placement_list(nvbo->placements, &pl->num_placement,
299 type, flags);
300
301 pl->busy_placement = nvbo->busy_placements;
302 set_placement_list(nvbo->busy_placements, &pl->num_busy_placement,
303 type | busy, flags);
699ddfd9
FJ
304
305 set_placement_range(nvbo, type);
6ee73861
BS
306}
307
308int
309nouveau_bo_pin(struct nouveau_bo *nvbo, uint32_t memtype)
310{
ebb945a9 311 struct nouveau_drm *drm = nouveau_bdev(nvbo->bo.bdev);
6ee73861 312 struct ttm_buffer_object *bo = &nvbo->bo;
78ad0f7b 313 int ret;
6ee73861 314
ee3939e0 315 ret = ttm_bo_reserve(bo, false, false, false, NULL);
0ae6d7bc
DV
316 if (ret)
317 goto out;
318
6ee73861 319 if (nvbo->pin_refcnt && !(memtype & (1 << bo->mem.mem_type))) {
ebb945a9 320 NV_ERROR(drm, "bo %p pinned elsewhere: 0x%08x vs 0x%08x\n", bo,
6ee73861 321 1 << bo->mem.mem_type, memtype);
0ae6d7bc
DV
322 ret = -EINVAL;
323 goto out;
6ee73861
BS
324 }
325
326 if (nvbo->pin_refcnt++)
6ee73861
BS
327 goto out;
328
78ad0f7b 329 nouveau_bo_placement_set(nvbo, memtype, 0);
6ee73861 330
97a875cb 331 ret = nouveau_bo_validate(nvbo, false, false);
6ee73861
BS
332 if (ret == 0) {
333 switch (bo->mem.mem_type) {
334 case TTM_PL_VRAM:
ebb945a9 335 drm->gem.vram_available -= bo->mem.size;
6ee73861
BS
336 break;
337 case TTM_PL_TT:
ebb945a9 338 drm->gem.gart_available -= bo->mem.size;
6ee73861
BS
339 break;
340 default:
341 break;
342 }
343 }
6ee73861 344out:
0ae6d7bc 345 ttm_bo_unreserve(bo);
6ee73861
BS
346 return ret;
347}
348
349int
350nouveau_bo_unpin(struct nouveau_bo *nvbo)
351{
ebb945a9 352 struct nouveau_drm *drm = nouveau_bdev(nvbo->bo.bdev);
6ee73861 353 struct ttm_buffer_object *bo = &nvbo->bo;
4f385599 354 int ret, ref;
6ee73861 355
ee3939e0 356 ret = ttm_bo_reserve(bo, false, false, false, NULL);
6ee73861
BS
357 if (ret)
358 return ret;
359
4f385599
ML
360 ref = --nvbo->pin_refcnt;
361 WARN_ON_ONCE(ref < 0);
362 if (ref)
0ae6d7bc
DV
363 goto out;
364
78ad0f7b 365 nouveau_bo_placement_set(nvbo, bo->mem.placement, 0);
6ee73861 366
97a875cb 367 ret = nouveau_bo_validate(nvbo, false, false);
6ee73861
BS
368 if (ret == 0) {
369 switch (bo->mem.mem_type) {
370 case TTM_PL_VRAM:
ebb945a9 371 drm->gem.vram_available += bo->mem.size;
6ee73861
BS
372 break;
373 case TTM_PL_TT:
ebb945a9 374 drm->gem.gart_available += bo->mem.size;
6ee73861
BS
375 break;
376 default:
377 break;
378 }
379 }
380
0ae6d7bc 381out:
6ee73861
BS
382 ttm_bo_unreserve(bo);
383 return ret;
384}
385
386int
387nouveau_bo_map(struct nouveau_bo *nvbo)
388{
389 int ret;
390
ee3939e0 391 ret = ttm_bo_reserve(&nvbo->bo, false, false, false, NULL);
6ee73861
BS
392 if (ret)
393 return ret;
394
395 ret = ttm_bo_kmap(&nvbo->bo, 0, nvbo->bo.mem.num_pages, &nvbo->kmap);
396 ttm_bo_unreserve(&nvbo->bo);
397 return ret;
398}
399
400void
401nouveau_bo_unmap(struct nouveau_bo *nvbo)
402{
9d59e8a1
BS
403 if (nvbo)
404 ttm_bo_kunmap(&nvbo->kmap);
6ee73861
BS
405}
406
7a45d764
BS
407int
408nouveau_bo_validate(struct nouveau_bo *nvbo, bool interruptible,
97a875cb 409 bool no_wait_gpu)
7a45d764
BS
410{
411 int ret;
412
97a875cb
ML
413 ret = ttm_bo_validate(&nvbo->bo, &nvbo->placement,
414 interruptible, no_wait_gpu);
7a45d764
BS
415 if (ret)
416 return ret;
417
418 return 0;
419}
420
6ee73861
BS
421u16
422nouveau_bo_rd16(struct nouveau_bo *nvbo, unsigned index)
423{
424 bool is_iomem;
425 u16 *mem = ttm_kmap_obj_virtual(&nvbo->kmap, &is_iomem);
426 mem = &mem[index];
427 if (is_iomem)
428 return ioread16_native((void __force __iomem *)mem);
429 else
430 return *mem;
431}
432
433void
434nouveau_bo_wr16(struct nouveau_bo *nvbo, unsigned index, u16 val)
435{
436 bool is_iomem;
437 u16 *mem = ttm_kmap_obj_virtual(&nvbo->kmap, &is_iomem);
438 mem = &mem[index];
439 if (is_iomem)
440 iowrite16_native(val, (void __force __iomem *)mem);
441 else
442 *mem = val;
443}
444
445u32
446nouveau_bo_rd32(struct nouveau_bo *nvbo, unsigned index)
447{
448 bool is_iomem;
449 u32 *mem = ttm_kmap_obj_virtual(&nvbo->kmap, &is_iomem);
450 mem = &mem[index];
451 if (is_iomem)
452 return ioread32_native((void __force __iomem *)mem);
453 else
454 return *mem;
455}
456
457void
458nouveau_bo_wr32(struct nouveau_bo *nvbo, unsigned index, u32 val)
459{
460 bool is_iomem;
461 u32 *mem = ttm_kmap_obj_virtual(&nvbo->kmap, &is_iomem);
462 mem = &mem[index];
463 if (is_iomem)
464 iowrite32_native(val, (void __force __iomem *)mem);
465 else
466 *mem = val;
467}
468
649bf3ca 469static struct ttm_tt *
ebb945a9
BS
470nouveau_ttm_tt_create(struct ttm_bo_device *bdev, unsigned long size,
471 uint32_t page_flags, struct page *dummy_read)
6ee73861 472{
df1b4b91 473#if __OS_HAS_AGP
ebb945a9
BS
474 struct nouveau_drm *drm = nouveau_bdev(bdev);
475 struct drm_device *dev = drm->dev;
6ee73861 476
ebb945a9
BS
477 if (drm->agp.stat == ENABLED) {
478 return ttm_agp_tt_create(bdev, dev->agp->bridge, size,
479 page_flags, dummy_read);
6ee73861 480 }
df1b4b91 481#endif
6ee73861 482
ebb945a9 483 return nouveau_sgdma_create_ttm(bdev, size, page_flags, dummy_read);
6ee73861
BS
484}
485
486static int
487nouveau_bo_invalidate_caches(struct ttm_bo_device *bdev, uint32_t flags)
488{
489 /* We'll do this from user space. */
490 return 0;
491}
492
493static int
494nouveau_bo_init_mem_type(struct ttm_bo_device *bdev, uint32_t type,
495 struct ttm_mem_type_manager *man)
496{
ebb945a9 497 struct nouveau_drm *drm = nouveau_bdev(bdev);
6ee73861
BS
498
499 switch (type) {
500 case TTM_PL_SYSTEM:
501 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE;
502 man->available_caching = TTM_PL_MASK_CACHING;
503 man->default_caching = TTM_PL_FLAG_CACHED;
504 break;
505 case TTM_PL_VRAM:
e2a4e78c
AC
506 man->flags = TTM_MEMTYPE_FLAG_FIXED |
507 TTM_MEMTYPE_FLAG_MAPPABLE;
508 man->available_caching = TTM_PL_FLAG_UNCACHED |
509 TTM_PL_FLAG_WC;
510 man->default_caching = TTM_PL_FLAG_WC;
511
967e7bde 512 if (drm->device.info.family >= NV_DEVICE_INFO_V0_TESLA) {
e2a4e78c 513 /* Some BARs do not support being ioremapped WC */
967e7bde 514 if (nvkm_bar(&drm->device)->iomap_uncached) {
e2a4e78c
AC
515 man->available_caching = TTM_PL_FLAG_UNCACHED;
516 man->default_caching = TTM_PL_FLAG_UNCACHED;
517 }
518
573a2a37 519 man->func = &nouveau_vram_manager;
f869ef88
BS
520 man->io_reserve_fastpath = false;
521 man->use_io_reserve_lru = true;
522 } else {
573a2a37 523 man->func = &ttm_bo_manager_func;
f869ef88 524 }
6ee73861
BS
525 break;
526 case TTM_PL_TT:
967e7bde 527 if (drm->device.info.family >= NV_DEVICE_INFO_V0_TESLA)
26c0c9e3 528 man->func = &nouveau_gart_manager;
3863c9bc 529 else
ebb945a9 530 if (drm->agp.stat != ENABLED)
3863c9bc 531 man->func = &nv04_gart_manager;
26c0c9e3
BS
532 else
533 man->func = &ttm_bo_manager_func;
ebb945a9
BS
534
535 if (drm->agp.stat == ENABLED) {
f32f02fd 536 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE;
a3d487ea
FJ
537 man->available_caching = TTM_PL_FLAG_UNCACHED |
538 TTM_PL_FLAG_WC;
539 man->default_caching = TTM_PL_FLAG_WC;
ebb945a9 540 } else {
6ee73861
BS
541 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE |
542 TTM_MEMTYPE_FLAG_CMA;
543 man->available_caching = TTM_PL_MASK_CACHING;
544 man->default_caching = TTM_PL_FLAG_CACHED;
6ee73861 545 }
ebb945a9 546
6ee73861
BS
547 break;
548 default:
6ee73861
BS
549 return -EINVAL;
550 }
551 return 0;
552}
553
554static void
555nouveau_bo_evict_flags(struct ttm_buffer_object *bo, struct ttm_placement *pl)
556{
557 struct nouveau_bo *nvbo = nouveau_bo(bo);
558
559 switch (bo->mem.mem_type) {
22fbd538 560 case TTM_PL_VRAM:
78ad0f7b
FJ
561 nouveau_bo_placement_set(nvbo, TTM_PL_FLAG_TT,
562 TTM_PL_FLAG_SYSTEM);
22fbd538 563 break;
6ee73861 564 default:
78ad0f7b 565 nouveau_bo_placement_set(nvbo, TTM_PL_FLAG_SYSTEM, 0);
6ee73861
BS
566 break;
567 }
22fbd538
FJ
568
569 *pl = nvbo->placement;
6ee73861
BS
570}
571
572
49981046
BS
573static int
574nve0_bo_move_init(struct nouveau_channel *chan, u32 handle)
575{
576 int ret = RING_SPACE(chan, 2);
577 if (ret == 0) {
578 BEGIN_NVC0(chan, NvSubCopy, 0x0000, 1);
00fc6f6f 579 OUT_RING (chan, handle & 0x0000ffff);
49981046
BS
580 FIRE_RING (chan);
581 }
582 return ret;
583}
584
c6b7e895
BS
585static int
586nve0_bo_move_copy(struct nouveau_channel *chan, struct ttm_buffer_object *bo,
587 struct ttm_mem_reg *old_mem, struct ttm_mem_reg *new_mem)
588{
589 struct nouveau_mem *node = old_mem->mm_node;
590 int ret = RING_SPACE(chan, 10);
591 if (ret == 0) {
6d597027 592 BEGIN_NVC0(chan, NvSubCopy, 0x0400, 8);
c6b7e895
BS
593 OUT_RING (chan, upper_32_bits(node->vma[0].offset));
594 OUT_RING (chan, lower_32_bits(node->vma[0].offset));
595 OUT_RING (chan, upper_32_bits(node->vma[1].offset));
596 OUT_RING (chan, lower_32_bits(node->vma[1].offset));
597 OUT_RING (chan, PAGE_SIZE);
598 OUT_RING (chan, PAGE_SIZE);
599 OUT_RING (chan, PAGE_SIZE);
600 OUT_RING (chan, new_mem->num_pages);
6d597027 601 BEGIN_IMC0(chan, NvSubCopy, 0x0300, 0x0386);
c6b7e895
BS
602 }
603 return ret;
604}
605
d1b167e1
BS
606static int
607nvc0_bo_move_init(struct nouveau_channel *chan, u32 handle)
608{
609 int ret = RING_SPACE(chan, 2);
610 if (ret == 0) {
611 BEGIN_NVC0(chan, NvSubCopy, 0x0000, 1);
612 OUT_RING (chan, handle);
613 }
614 return ret;
615}
616
1a46098e
BS
617static int
618nvc0_bo_move_copy(struct nouveau_channel *chan, struct ttm_buffer_object *bo,
619 struct ttm_mem_reg *old_mem, struct ttm_mem_reg *new_mem)
620{
621 struct nouveau_mem *node = old_mem->mm_node;
622 u64 src_offset = node->vma[0].offset;
623 u64 dst_offset = node->vma[1].offset;
624 u32 page_count = new_mem->num_pages;
625 int ret;
626
627 page_count = new_mem->num_pages;
628 while (page_count) {
629 int line_count = (page_count > 8191) ? 8191 : page_count;
630
631 ret = RING_SPACE(chan, 11);
632 if (ret)
633 return ret;
634
635 BEGIN_NVC0(chan, NvSubCopy, 0x030c, 8);
636 OUT_RING (chan, upper_32_bits(src_offset));
637 OUT_RING (chan, lower_32_bits(src_offset));
638 OUT_RING (chan, upper_32_bits(dst_offset));
639 OUT_RING (chan, lower_32_bits(dst_offset));
640 OUT_RING (chan, PAGE_SIZE);
641 OUT_RING (chan, PAGE_SIZE);
642 OUT_RING (chan, PAGE_SIZE);
643 OUT_RING (chan, line_count);
644 BEGIN_NVC0(chan, NvSubCopy, 0x0300, 1);
645 OUT_RING (chan, 0x00000110);
646
647 page_count -= line_count;
648 src_offset += (PAGE_SIZE * line_count);
649 dst_offset += (PAGE_SIZE * line_count);
650 }
651
652 return 0;
653}
654
183720b8
BS
655static int
656nvc0_bo_move_m2mf(struct nouveau_channel *chan, struct ttm_buffer_object *bo,
657 struct ttm_mem_reg *old_mem, struct ttm_mem_reg *new_mem)
658{
d2f96666
BS
659 struct nouveau_mem *node = old_mem->mm_node;
660 u64 src_offset = node->vma[0].offset;
661 u64 dst_offset = node->vma[1].offset;
183720b8
BS
662 u32 page_count = new_mem->num_pages;
663 int ret;
664
183720b8
BS
665 page_count = new_mem->num_pages;
666 while (page_count) {
667 int line_count = (page_count > 2047) ? 2047 : page_count;
668
669 ret = RING_SPACE(chan, 12);
670 if (ret)
671 return ret;
672
d1b167e1 673 BEGIN_NVC0(chan, NvSubCopy, 0x0238, 2);
183720b8
BS
674 OUT_RING (chan, upper_32_bits(dst_offset));
675 OUT_RING (chan, lower_32_bits(dst_offset));
d1b167e1 676 BEGIN_NVC0(chan, NvSubCopy, 0x030c, 6);
183720b8
BS
677 OUT_RING (chan, upper_32_bits(src_offset));
678 OUT_RING (chan, lower_32_bits(src_offset));
679 OUT_RING (chan, PAGE_SIZE); /* src_pitch */
680 OUT_RING (chan, PAGE_SIZE); /* dst_pitch */
681 OUT_RING (chan, PAGE_SIZE); /* line_length */
682 OUT_RING (chan, line_count);
d1b167e1 683 BEGIN_NVC0(chan, NvSubCopy, 0x0300, 1);
183720b8
BS
684 OUT_RING (chan, 0x00100110);
685
686 page_count -= line_count;
687 src_offset += (PAGE_SIZE * line_count);
688 dst_offset += (PAGE_SIZE * line_count);
689 }
690
691 return 0;
692}
693
fdf53241
BS
694static int
695nva3_bo_move_copy(struct nouveau_channel *chan, struct ttm_buffer_object *bo,
696 struct ttm_mem_reg *old_mem, struct ttm_mem_reg *new_mem)
697{
698 struct nouveau_mem *node = old_mem->mm_node;
699 u64 src_offset = node->vma[0].offset;
700 u64 dst_offset = node->vma[1].offset;
701 u32 page_count = new_mem->num_pages;
702 int ret;
703
704 page_count = new_mem->num_pages;
705 while (page_count) {
706 int line_count = (page_count > 8191) ? 8191 : page_count;
707
708 ret = RING_SPACE(chan, 11);
709 if (ret)
710 return ret;
711
712 BEGIN_NV04(chan, NvSubCopy, 0x030c, 8);
713 OUT_RING (chan, upper_32_bits(src_offset));
714 OUT_RING (chan, lower_32_bits(src_offset));
715 OUT_RING (chan, upper_32_bits(dst_offset));
716 OUT_RING (chan, lower_32_bits(dst_offset));
717 OUT_RING (chan, PAGE_SIZE);
718 OUT_RING (chan, PAGE_SIZE);
719 OUT_RING (chan, PAGE_SIZE);
720 OUT_RING (chan, line_count);
721 BEGIN_NV04(chan, NvSubCopy, 0x0300, 1);
722 OUT_RING (chan, 0x00000110);
723
724 page_count -= line_count;
725 src_offset += (PAGE_SIZE * line_count);
726 dst_offset += (PAGE_SIZE * line_count);
727 }
728
729 return 0;
730}
731
5490e5df
BS
732static int
733nv98_bo_move_exec(struct nouveau_channel *chan, struct ttm_buffer_object *bo,
734 struct ttm_mem_reg *old_mem, struct ttm_mem_reg *new_mem)
735{
736 struct nouveau_mem *node = old_mem->mm_node;
737 int ret = RING_SPACE(chan, 7);
738 if (ret == 0) {
739 BEGIN_NV04(chan, NvSubCopy, 0x0320, 6);
740 OUT_RING (chan, upper_32_bits(node->vma[0].offset));
741 OUT_RING (chan, lower_32_bits(node->vma[0].offset));
742 OUT_RING (chan, upper_32_bits(node->vma[1].offset));
743 OUT_RING (chan, lower_32_bits(node->vma[1].offset));
744 OUT_RING (chan, 0x00000000 /* COPY */);
745 OUT_RING (chan, new_mem->num_pages << PAGE_SHIFT);
746 }
747 return ret;
748}
749
4c193d25
BS
750static int
751nv84_bo_move_exec(struct nouveau_channel *chan, struct ttm_buffer_object *bo,
752 struct ttm_mem_reg *old_mem, struct ttm_mem_reg *new_mem)
753{
754 struct nouveau_mem *node = old_mem->mm_node;
755 int ret = RING_SPACE(chan, 7);
756 if (ret == 0) {
757 BEGIN_NV04(chan, NvSubCopy, 0x0304, 6);
758 OUT_RING (chan, new_mem->num_pages << PAGE_SHIFT);
759 OUT_RING (chan, upper_32_bits(node->vma[0].offset));
760 OUT_RING (chan, lower_32_bits(node->vma[0].offset));
761 OUT_RING (chan, upper_32_bits(node->vma[1].offset));
762 OUT_RING (chan, lower_32_bits(node->vma[1].offset));
763 OUT_RING (chan, 0x00000000 /* MODE_COPY, QUERY_NONE */);
764 }
765 return ret;
766}
767
d1b167e1
BS
768static int
769nv50_bo_move_init(struct nouveau_channel *chan, u32 handle)
770{
ebb945a9 771 int ret = RING_SPACE(chan, 6);
d1b167e1 772 if (ret == 0) {
ebb945a9
BS
773 BEGIN_NV04(chan, NvSubCopy, 0x0000, 1);
774 OUT_RING (chan, handle);
775 BEGIN_NV04(chan, NvSubCopy, 0x0180, 3);
f45f55c4
BS
776 OUT_RING (chan, chan->drm->ntfy.handle);
777 OUT_RING (chan, chan->vram.handle);
778 OUT_RING (chan, chan->vram.handle);
d1b167e1
BS
779 }
780
781 return ret;
782}
783
6ee73861 784static int
f1ab0cc9
BS
785nv50_bo_move_m2mf(struct nouveau_channel *chan, struct ttm_buffer_object *bo,
786 struct ttm_mem_reg *old_mem, struct ttm_mem_reg *new_mem)
6ee73861 787{
d2f96666 788 struct nouveau_mem *node = old_mem->mm_node;
f1ab0cc9 789 u64 length = (new_mem->num_pages << PAGE_SHIFT);
d2f96666
BS
790 u64 src_offset = node->vma[0].offset;
791 u64 dst_offset = node->vma[1].offset;
ce8f7699
ML
792 int src_tiled = !!node->memtype;
793 int dst_tiled = !!((struct nouveau_mem *)new_mem->mm_node)->memtype;
6ee73861
BS
794 int ret;
795
f1ab0cc9
BS
796 while (length) {
797 u32 amount, stride, height;
798
ce8f7699
ML
799 ret = RING_SPACE(chan, 18 + 6 * (src_tiled + dst_tiled));
800 if (ret)
801 return ret;
802
5220b3c1
BS
803 amount = min(length, (u64)(4 * 1024 * 1024));
804 stride = 16 * 4;
f1ab0cc9
BS
805 height = amount / stride;
806
ce8f7699 807 if (src_tiled) {
d1b167e1 808 BEGIN_NV04(chan, NvSubCopy, 0x0200, 7);
f1ab0cc9 809 OUT_RING (chan, 0);
5220b3c1 810 OUT_RING (chan, 0);
f1ab0cc9
BS
811 OUT_RING (chan, stride);
812 OUT_RING (chan, height);
813 OUT_RING (chan, 1);
814 OUT_RING (chan, 0);
815 OUT_RING (chan, 0);
816 } else {
d1b167e1 817 BEGIN_NV04(chan, NvSubCopy, 0x0200, 1);
f1ab0cc9
BS
818 OUT_RING (chan, 1);
819 }
ce8f7699 820 if (dst_tiled) {
d1b167e1 821 BEGIN_NV04(chan, NvSubCopy, 0x021c, 7);
f1ab0cc9 822 OUT_RING (chan, 0);
5220b3c1 823 OUT_RING (chan, 0);
f1ab0cc9
BS
824 OUT_RING (chan, stride);
825 OUT_RING (chan, height);
826 OUT_RING (chan, 1);
827 OUT_RING (chan, 0);
828 OUT_RING (chan, 0);
829 } else {
d1b167e1 830 BEGIN_NV04(chan, NvSubCopy, 0x021c, 1);
f1ab0cc9
BS
831 OUT_RING (chan, 1);
832 }
833
d1b167e1 834 BEGIN_NV04(chan, NvSubCopy, 0x0238, 2);
f1ab0cc9
BS
835 OUT_RING (chan, upper_32_bits(src_offset));
836 OUT_RING (chan, upper_32_bits(dst_offset));
d1b167e1 837 BEGIN_NV04(chan, NvSubCopy, 0x030c, 8);
f1ab0cc9
BS
838 OUT_RING (chan, lower_32_bits(src_offset));
839 OUT_RING (chan, lower_32_bits(dst_offset));
840 OUT_RING (chan, stride);
841 OUT_RING (chan, stride);
842 OUT_RING (chan, stride);
843 OUT_RING (chan, height);
844 OUT_RING (chan, 0x00000101);
845 OUT_RING (chan, 0x00000000);
d1b167e1 846 BEGIN_NV04(chan, NvSubCopy, NV_MEMORY_TO_MEMORY_FORMAT_NOP, 1);
f1ab0cc9
BS
847 OUT_RING (chan, 0);
848
849 length -= amount;
850 src_offset += amount;
851 dst_offset += amount;
6ee73861
BS
852 }
853
f1ab0cc9
BS
854 return 0;
855}
856
d1b167e1
BS
857static int
858nv04_bo_move_init(struct nouveau_channel *chan, u32 handle)
859{
ebb945a9 860 int ret = RING_SPACE(chan, 4);
d1b167e1 861 if (ret == 0) {
ebb945a9
BS
862 BEGIN_NV04(chan, NvSubCopy, 0x0000, 1);
863 OUT_RING (chan, handle);
864 BEGIN_NV04(chan, NvSubCopy, 0x0180, 1);
f45f55c4 865 OUT_RING (chan, chan->drm->ntfy.handle);
d1b167e1
BS
866 }
867
868 return ret;
869}
870
a6704788
BS
871static inline uint32_t
872nouveau_bo_mem_ctxdma(struct ttm_buffer_object *bo,
873 struct nouveau_channel *chan, struct ttm_mem_reg *mem)
874{
875 if (mem->mem_type == TTM_PL_TT)
ebb945a9 876 return NvDmaTT;
f45f55c4 877 return chan->vram.handle;
a6704788
BS
878}
879
f1ab0cc9
BS
880static int
881nv04_bo_move_m2mf(struct nouveau_channel *chan, struct ttm_buffer_object *bo,
882 struct ttm_mem_reg *old_mem, struct ttm_mem_reg *new_mem)
883{
d961db75
BS
884 u32 src_offset = old_mem->start << PAGE_SHIFT;
885 u32 dst_offset = new_mem->start << PAGE_SHIFT;
f1ab0cc9
BS
886 u32 page_count = new_mem->num_pages;
887 int ret;
888
889 ret = RING_SPACE(chan, 3);
890 if (ret)
891 return ret;
892
d1b167e1 893 BEGIN_NV04(chan, NvSubCopy, NV_MEMORY_TO_MEMORY_FORMAT_DMA_SOURCE, 2);
f1ab0cc9
BS
894 OUT_RING (chan, nouveau_bo_mem_ctxdma(bo, chan, old_mem));
895 OUT_RING (chan, nouveau_bo_mem_ctxdma(bo, chan, new_mem));
896
6ee73861
BS
897 page_count = new_mem->num_pages;
898 while (page_count) {
899 int line_count = (page_count > 2047) ? 2047 : page_count;
900
6ee73861
BS
901 ret = RING_SPACE(chan, 11);
902 if (ret)
903 return ret;
f1ab0cc9 904
d1b167e1 905 BEGIN_NV04(chan, NvSubCopy,
6ee73861 906 NV_MEMORY_TO_MEMORY_FORMAT_OFFSET_IN, 8);
f1ab0cc9
BS
907 OUT_RING (chan, src_offset);
908 OUT_RING (chan, dst_offset);
909 OUT_RING (chan, PAGE_SIZE); /* src_pitch */
910 OUT_RING (chan, PAGE_SIZE); /* dst_pitch */
911 OUT_RING (chan, PAGE_SIZE); /* line_length */
912 OUT_RING (chan, line_count);
913 OUT_RING (chan, 0x00000101);
914 OUT_RING (chan, 0x00000000);
d1b167e1 915 BEGIN_NV04(chan, NvSubCopy, NV_MEMORY_TO_MEMORY_FORMAT_NOP, 1);
f1ab0cc9 916 OUT_RING (chan, 0);
6ee73861
BS
917
918 page_count -= line_count;
919 src_offset += (PAGE_SIZE * line_count);
920 dst_offset += (PAGE_SIZE * line_count);
921 }
922
f1ab0cc9
BS
923 return 0;
924}
925
d2f96666 926static int
3c57d85d
BS
927nouveau_bo_move_prep(struct nouveau_drm *drm, struct ttm_buffer_object *bo,
928 struct ttm_mem_reg *mem)
d2f96666 929{
3c57d85d
BS
930 struct nouveau_mem *old_node = bo->mem.mm_node;
931 struct nouveau_mem *new_node = mem->mm_node;
932 u64 size = (u64)mem->num_pages << PAGE_SHIFT;
d2f96666
BS
933 int ret;
934
3ee6f5b5 935 ret = nouveau_vm_get(drm->client.vm, size, old_node->page_shift,
3c57d85d 936 NV_MEM_ACCESS_RW, &old_node->vma[0]);
d2f96666
BS
937 if (ret)
938 return ret;
939
3ee6f5b5 940 ret = nouveau_vm_get(drm->client.vm, size, new_node->page_shift,
3c57d85d
BS
941 NV_MEM_ACCESS_RW, &old_node->vma[1]);
942 if (ret) {
943 nouveau_vm_put(&old_node->vma[0]);
944 return ret;
945 }
946
947 nouveau_vm_map(&old_node->vma[0], old_node);
948 nouveau_vm_map(&old_node->vma[1], new_node);
d2f96666
BS
949 return 0;
950}
951
f1ab0cc9
BS
952static int
953nouveau_bo_move_m2mf(struct ttm_buffer_object *bo, int evict, bool intr,
97a875cb 954 bool no_wait_gpu, struct ttm_mem_reg *new_mem)
f1ab0cc9 955{
ebb945a9 956 struct nouveau_drm *drm = nouveau_bdev(bo->bdev);
1934a2ad 957 struct nouveau_channel *chan = drm->ttm.chan;
0ad72863 958 struct nouveau_cli *cli = (void *)nvif_client(&chan->device->base);
35b8141b 959 struct nouveau_fence *fence;
f1ab0cc9
BS
960 int ret;
961
d2f96666
BS
962 /* create temporary vmas for the transfer and attach them to the
963 * old nouveau_mem node, these will get cleaned up after ttm has
964 * destroyed the ttm_mem_reg
3425df48 965 */
967e7bde 966 if (drm->device.info.family >= NV_DEVICE_INFO_V0_TESLA) {
3c57d85d 967 ret = nouveau_bo_move_prep(drm, bo, new_mem);
d2f96666 968 if (ret)
3c57d85d 969 return ret;
3425df48
BS
970 }
971
0ad72863 972 mutex_lock_nested(&cli->mutex, SINGLE_DEPTH_NESTING);
35b8141b 973 ret = nouveau_fence_sync(bo->sync_obj, chan);
6a6b73f2 974 if (ret == 0) {
35b8141b
BS
975 ret = drm->ttm.move(chan, bo, &bo->mem, new_mem);
976 if (ret == 0) {
977 ret = nouveau_fence_new(chan, false, &fence);
978 if (ret == 0) {
979 ret = ttm_bo_move_accel_cleanup(bo, fence,
980 evict,
981 no_wait_gpu,
982 new_mem);
983 nouveau_fence_unref(&fence);
984 }
985 }
6a6b73f2 986 }
0ad72863 987 mutex_unlock(&cli->mutex);
6a6b73f2 988 return ret;
6ee73861
BS
989}
990
d1b167e1 991void
49981046 992nouveau_bo_move_init(struct nouveau_drm *drm)
d1b167e1 993{
d1b167e1
BS
994 static const struct {
995 const char *name;
1a46098e 996 int engine;
d1b167e1
BS
997 u32 oclass;
998 int (*exec)(struct nouveau_channel *,
999 struct ttm_buffer_object *,
1000 struct ttm_mem_reg *, struct ttm_mem_reg *);
1001 int (*init)(struct nouveau_channel *, u32 handle);
1002 } _methods[] = {
00fc6f6f 1003 { "COPY", 4, 0xa0b5, nve0_bo_move_copy, nve0_bo_move_init },
49981046 1004 { "GRCE", 0, 0xa0b5, nve0_bo_move_copy, nvc0_bo_move_init },
1a46098e
BS
1005 { "COPY1", 5, 0x90b8, nvc0_bo_move_copy, nvc0_bo_move_init },
1006 { "COPY0", 4, 0x90b5, nvc0_bo_move_copy, nvc0_bo_move_init },
1007 { "COPY", 0, 0x85b5, nva3_bo_move_copy, nv50_bo_move_init },
1008 { "CRYPT", 0, 0x74c1, nv84_bo_move_exec, nv50_bo_move_init },
1009 { "M2MF", 0, 0x9039, nvc0_bo_move_m2mf, nvc0_bo_move_init },
1010 { "M2MF", 0, 0x5039, nv50_bo_move_m2mf, nv50_bo_move_init },
1011 { "M2MF", 0, 0x0039, nv04_bo_move_m2mf, nv04_bo_move_init },
5490e5df 1012 {},
1a46098e 1013 { "CRYPT", 0, 0x88b4, nv98_bo_move_exec, nv50_bo_move_init },
d1b167e1
BS
1014 }, *mthd = _methods;
1015 const char *name = "CPU";
1016 int ret;
1017
1018 do {
49981046 1019 struct nouveau_channel *chan;
ebb945a9 1020
00fc6f6f 1021 if (mthd->engine)
49981046
BS
1022 chan = drm->cechan;
1023 else
1024 chan = drm->channel;
1025 if (chan == NULL)
1026 continue;
1027
0ad72863
BS
1028 ret = nvif_object_init(chan->object, NULL,
1029 mthd->oclass | (mthd->engine << 16),
1030 mthd->oclass, NULL, 0,
1031 &drm->ttm.copy);
d1b167e1 1032 if (ret == 0) {
0ad72863 1033 ret = mthd->init(chan, drm->ttm.copy.handle);
ebb945a9 1034 if (ret) {
0ad72863 1035 nvif_object_fini(&drm->ttm.copy);
ebb945a9 1036 continue;
d1b167e1 1037 }
ebb945a9
BS
1038
1039 drm->ttm.move = mthd->exec;
1bb3f6a2 1040 drm->ttm.chan = chan;
ebb945a9
BS
1041 name = mthd->name;
1042 break;
d1b167e1
BS
1043 }
1044 } while ((++mthd)->exec);
1045
ebb945a9 1046 NV_INFO(drm, "MM: using %s for buffer copies\n", name);
d1b167e1
BS
1047}
1048
6ee73861
BS
1049static int
1050nouveau_bo_move_flipd(struct ttm_buffer_object *bo, bool evict, bool intr,
97a875cb 1051 bool no_wait_gpu, struct ttm_mem_reg *new_mem)
6ee73861 1052{
f1217ed0
CK
1053 struct ttm_place placement_memtype = {
1054 .fpfn = 0,
1055 .lpfn = 0,
1056 .flags = TTM_PL_FLAG_TT | TTM_PL_MASK_CACHING
1057 };
6ee73861
BS
1058 struct ttm_placement placement;
1059 struct ttm_mem_reg tmp_mem;
1060 int ret;
1061
6ee73861 1062 placement.num_placement = placement.num_busy_placement = 1;
77e2b5ed 1063 placement.placement = placement.busy_placement = &placement_memtype;
6ee73861
BS
1064
1065 tmp_mem = *new_mem;
1066 tmp_mem.mm_node = NULL;
97a875cb 1067 ret = ttm_bo_mem_space(bo, &placement, &tmp_mem, intr, no_wait_gpu);
6ee73861
BS
1068 if (ret)
1069 return ret;
1070
1071 ret = ttm_tt_bind(bo->ttm, &tmp_mem);
1072 if (ret)
1073 goto out;
1074
97a875cb 1075 ret = nouveau_bo_move_m2mf(bo, true, intr, no_wait_gpu, &tmp_mem);
6ee73861
BS
1076 if (ret)
1077 goto out;
1078
97a875cb 1079 ret = ttm_bo_move_ttm(bo, true, no_wait_gpu, new_mem);
6ee73861 1080out:
42311ff9 1081 ttm_bo_mem_put(bo, &tmp_mem);
6ee73861
BS
1082 return ret;
1083}
1084
1085static int
1086nouveau_bo_move_flips(struct ttm_buffer_object *bo, bool evict, bool intr,
97a875cb 1087 bool no_wait_gpu, struct ttm_mem_reg *new_mem)
6ee73861 1088{
f1217ed0
CK
1089 struct ttm_place placement_memtype = {
1090 .fpfn = 0,
1091 .lpfn = 0,
1092 .flags = TTM_PL_FLAG_TT | TTM_PL_MASK_CACHING
1093 };
6ee73861
BS
1094 struct ttm_placement placement;
1095 struct ttm_mem_reg tmp_mem;
1096 int ret;
1097
6ee73861 1098 placement.num_placement = placement.num_busy_placement = 1;
77e2b5ed 1099 placement.placement = placement.busy_placement = &placement_memtype;
6ee73861
BS
1100
1101 tmp_mem = *new_mem;
1102 tmp_mem.mm_node = NULL;
97a875cb 1103 ret = ttm_bo_mem_space(bo, &placement, &tmp_mem, intr, no_wait_gpu);
6ee73861
BS
1104 if (ret)
1105 return ret;
1106
97a875cb 1107 ret = ttm_bo_move_ttm(bo, true, no_wait_gpu, &tmp_mem);
6ee73861
BS
1108 if (ret)
1109 goto out;
1110
97a875cb 1111 ret = nouveau_bo_move_m2mf(bo, true, intr, no_wait_gpu, new_mem);
6ee73861
BS
1112 if (ret)
1113 goto out;
1114
1115out:
42311ff9 1116 ttm_bo_mem_put(bo, &tmp_mem);
6ee73861
BS
1117 return ret;
1118}
1119
a4154bbf
BS
1120static void
1121nouveau_bo_move_ntfy(struct ttm_buffer_object *bo, struct ttm_mem_reg *new_mem)
1122{
a4154bbf 1123 struct nouveau_bo *nvbo = nouveau_bo(bo);
fd2871af
BS
1124 struct nouveau_vma *vma;
1125
9f1feed2
BS
1126 /* ttm can now (stupidly) pass the driver bos it didn't create... */
1127 if (bo->destroy != nouveau_bo_del_ttm)
1128 return;
1129
fd2871af 1130 list_for_each_entry(vma, &nvbo->vma_list, head) {
2e2cfbe6
BS
1131 if (new_mem && new_mem->mem_type != TTM_PL_SYSTEM &&
1132 (new_mem->mem_type == TTM_PL_VRAM ||
1133 nvbo->page_shift != vma->vm->vmm->lpg_shift)) {
fd2871af 1134 nouveau_vm_map(vma, new_mem->mm_node);
fd2871af
BS
1135 } else {
1136 nouveau_vm_unmap(vma);
1137 }
a4154bbf
BS
1138 }
1139}
1140
6ee73861 1141static int
a0af9add 1142nouveau_bo_vm_bind(struct ttm_buffer_object *bo, struct ttm_mem_reg *new_mem,
ebb945a9 1143 struct nouveau_drm_tile **new_tile)
6ee73861 1144{
ebb945a9
BS
1145 struct nouveau_drm *drm = nouveau_bdev(bo->bdev);
1146 struct drm_device *dev = drm->dev;
a0af9add 1147 struct nouveau_bo *nvbo = nouveau_bo(bo);
a4154bbf 1148 u64 offset = new_mem->start << PAGE_SHIFT;
6ee73861 1149
a4154bbf
BS
1150 *new_tile = NULL;
1151 if (new_mem->mem_type != TTM_PL_VRAM)
a0af9add 1152 return 0;
a0af9add 1153
967e7bde 1154 if (drm->device.info.family >= NV_DEVICE_INFO_V0_CELSIUS) {
bc9e7b9a 1155 *new_tile = nv10_bo_set_tiling(dev, offset, new_mem->size,
a5cf68b0
FJ
1156 nvbo->tile_mode,
1157 nvbo->tile_flags);
6ee73861
BS
1158 }
1159
a0af9add
FJ
1160 return 0;
1161}
1162
1163static void
1164nouveau_bo_vm_cleanup(struct ttm_buffer_object *bo,
ebb945a9
BS
1165 struct nouveau_drm_tile *new_tile,
1166 struct nouveau_drm_tile **old_tile)
a0af9add 1167{
ebb945a9
BS
1168 struct nouveau_drm *drm = nouveau_bdev(bo->bdev);
1169 struct drm_device *dev = drm->dev;
a0af9add 1170
bc9e7b9a 1171 nv10_bo_put_tile_region(dev, *old_tile, bo->sync_obj);
a4154bbf 1172 *old_tile = new_tile;
a0af9add
FJ
1173}
1174
1175static int
1176nouveau_bo_move(struct ttm_buffer_object *bo, bool evict, bool intr,
97a875cb 1177 bool no_wait_gpu, struct ttm_mem_reg *new_mem)
a0af9add 1178{
ebb945a9 1179 struct nouveau_drm *drm = nouveau_bdev(bo->bdev);
a0af9add
FJ
1180 struct nouveau_bo *nvbo = nouveau_bo(bo);
1181 struct ttm_mem_reg *old_mem = &bo->mem;
ebb945a9 1182 struct nouveau_drm_tile *new_tile = NULL;
a0af9add
FJ
1183 int ret = 0;
1184
967e7bde 1185 if (drm->device.info.family < NV_DEVICE_INFO_V0_TESLA) {
a4154bbf
BS
1186 ret = nouveau_bo_vm_bind(bo, new_mem, &new_tile);
1187 if (ret)
1188 return ret;
1189 }
a0af9add 1190
a0af9add 1191 /* Fake bo copy. */
6ee73861
BS
1192 if (old_mem->mem_type == TTM_PL_SYSTEM && !bo->ttm) {
1193 BUG_ON(bo->mem.mm_node != NULL);
1194 bo->mem = *new_mem;
1195 new_mem->mm_node = NULL;
a0af9add 1196 goto out;
6ee73861
BS
1197 }
1198
a0af9add 1199 /* Hardware assisted copy. */
cef9e99e
BS
1200 if (drm->ttm.move) {
1201 if (new_mem->mem_type == TTM_PL_SYSTEM)
1202 ret = nouveau_bo_move_flipd(bo, evict, intr,
1203 no_wait_gpu, new_mem);
1204 else if (old_mem->mem_type == TTM_PL_SYSTEM)
1205 ret = nouveau_bo_move_flips(bo, evict, intr,
1206 no_wait_gpu, new_mem);
1207 else
1208 ret = nouveau_bo_move_m2mf(bo, evict, intr,
1209 no_wait_gpu, new_mem);
1210 if (!ret)
1211 goto out;
1212 }
a0af9add
FJ
1213
1214 /* Fallback to software copy. */
cef9e99e
BS
1215 spin_lock(&bo->bdev->fence_lock);
1216 ret = ttm_bo_wait(bo, true, intr, no_wait_gpu);
1217 spin_unlock(&bo->bdev->fence_lock);
1218 if (ret == 0)
1219 ret = ttm_bo_move_memcpy(bo, evict, no_wait_gpu, new_mem);
a0af9add
FJ
1220
1221out:
967e7bde 1222 if (drm->device.info.family < NV_DEVICE_INFO_V0_TESLA) {
a4154bbf
BS
1223 if (ret)
1224 nouveau_bo_vm_cleanup(bo, NULL, &new_tile);
1225 else
1226 nouveau_bo_vm_cleanup(bo, new_tile, &nvbo->tile);
1227 }
a0af9add
FJ
1228
1229 return ret;
6ee73861
BS
1230}
1231
1232static int
1233nouveau_bo_verify_access(struct ttm_buffer_object *bo, struct file *filp)
1234{
acb46527
DH
1235 struct nouveau_bo *nvbo = nouveau_bo(bo);
1236
55fb74ad 1237 return drm_vma_node_verify_access(&nvbo->gem.vma_node, filp);
6ee73861
BS
1238}
1239
f32f02fd
JG
1240static int
1241nouveau_ttm_io_mem_reserve(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
1242{
1243 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
ebb945a9 1244 struct nouveau_drm *drm = nouveau_bdev(bdev);
a5540906 1245 struct nouveau_mem *node = mem->mm_node;
f869ef88 1246 int ret;
f32f02fd
JG
1247
1248 mem->bus.addr = NULL;
1249 mem->bus.offset = 0;
1250 mem->bus.size = mem->num_pages << PAGE_SHIFT;
1251 mem->bus.base = 0;
1252 mem->bus.is_iomem = false;
1253 if (!(man->flags & TTM_MEMTYPE_FLAG_MAPPABLE))
1254 return -EINVAL;
1255 switch (mem->mem_type) {
1256 case TTM_PL_SYSTEM:
1257 /* System memory */
1258 return 0;
1259 case TTM_PL_TT:
1260#if __OS_HAS_AGP
ebb945a9 1261 if (drm->agp.stat == ENABLED) {
d961db75 1262 mem->bus.offset = mem->start << PAGE_SHIFT;
ebb945a9 1263 mem->bus.base = drm->agp.base;
5c13cac1 1264 mem->bus.is_iomem = !drm->dev->agp->cant_use_aperture;
f32f02fd
JG
1265 }
1266#endif
967e7bde 1267 if (drm->device.info.family < NV_DEVICE_INFO_V0_TESLA || !node->memtype)
a5540906
ML
1268 /* untiled */
1269 break;
1270 /* fallthrough, tiled memory */
f32f02fd 1271 case TTM_PL_VRAM:
3863c9bc 1272 mem->bus.offset = mem->start << PAGE_SHIFT;
967e7bde 1273 mem->bus.base = nv_device_resource_start(nvkm_device(&drm->device), 1);
3863c9bc 1274 mem->bus.is_iomem = true;
967e7bde
BS
1275 if (drm->device.info.family >= NV_DEVICE_INFO_V0_TESLA) {
1276 struct nouveau_bar *bar = nvkm_bar(&drm->device);
8984e046 1277
ebb945a9 1278 ret = bar->umap(bar, node, NV_MEM_ACCESS_RW,
3863c9bc
BS
1279 &node->bar_vma);
1280 if (ret)
1281 return ret;
f869ef88 1282
3863c9bc 1283 mem->bus.offset = node->bar_vma.offset;
f869ef88 1284 }
f32f02fd
JG
1285 break;
1286 default:
1287 return -EINVAL;
1288 }
1289 return 0;
1290}
1291
1292static void
1293nouveau_ttm_io_mem_free(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
1294{
ebb945a9 1295 struct nouveau_drm *drm = nouveau_bdev(bdev);
967e7bde 1296 struct nouveau_bar *bar = nvkm_bar(&drm->device);
d5f42394 1297 struct nouveau_mem *node = mem->mm_node;
f869ef88 1298
d5f42394 1299 if (!node->bar_vma.node)
f869ef88
BS
1300 return;
1301
ebb945a9 1302 bar->unmap(bar, &node->bar_vma);
f32f02fd
JG
1303}
1304
1305static int
1306nouveau_ttm_fault_reserve_notify(struct ttm_buffer_object *bo)
1307{
ebb945a9 1308 struct nouveau_drm *drm = nouveau_bdev(bo->bdev);
e1429b4c 1309 struct nouveau_bo *nvbo = nouveau_bo(bo);
967e7bde
BS
1310 struct nvif_device *device = &drm->device;
1311 u32 mappable = nv_device_resource_len(nvkm_device(device), 1) >> PAGE_SHIFT;
f1217ed0 1312 int i, ret;
e1429b4c
BS
1313
1314 /* as long as the bo isn't in vram, and isn't tiled, we've got
1315 * nothing to do here.
1316 */
1317 if (bo->mem.mem_type != TTM_PL_VRAM) {
967e7bde 1318 if (drm->device.info.family < NV_DEVICE_INFO_V0_TESLA ||
f13b3263 1319 !nouveau_bo_tile_layout(nvbo))
e1429b4c 1320 return 0;
a5540906
ML
1321
1322 if (bo->mem.mem_type == TTM_PL_SYSTEM) {
1323 nouveau_bo_placement_set(nvbo, TTM_PL_TT, 0);
1324
1325 ret = nouveau_bo_validate(nvbo, false, false);
1326 if (ret)
1327 return ret;
1328 }
1329 return 0;
e1429b4c
BS
1330 }
1331
1332 /* make sure bo is in mappable vram */
967e7bde 1333 if (drm->device.info.family >= NV_DEVICE_INFO_V0_TESLA ||
a5540906 1334 bo->mem.start + bo->mem.num_pages < mappable)
e1429b4c
BS
1335 return 0;
1336
f1217ed0
CK
1337 for (i = 0; i < nvbo->placement.num_placement; ++i) {
1338 nvbo->placements[i].fpfn = 0;
1339 nvbo->placements[i].lpfn = mappable;
1340 }
1341
1342 for (i = 0; i < nvbo->placement.num_busy_placement; ++i) {
1343 nvbo->busy_placements[i].fpfn = 0;
1344 nvbo->busy_placements[i].lpfn = mappable;
1345 }
e1429b4c 1346
c284815d 1347 nouveau_bo_placement_set(nvbo, TTM_PL_FLAG_VRAM, 0);
97a875cb 1348 return nouveau_bo_validate(nvbo, false, false);
f32f02fd
JG
1349}
1350
3230cfc3
KRW
1351static int
1352nouveau_ttm_tt_populate(struct ttm_tt *ttm)
1353{
8e7e7052 1354 struct ttm_dma_tt *ttm_dma = (void *)ttm;
ebb945a9 1355 struct nouveau_drm *drm;
420b9469 1356 struct nouveau_device *device;
3230cfc3 1357 struct drm_device *dev;
fd1496a0 1358 struct device *pdev;
3230cfc3
KRW
1359 unsigned i;
1360 int r;
22b33e8e 1361 bool slave = !!(ttm->page_flags & TTM_PAGE_FLAG_SG);
3230cfc3
KRW
1362
1363 if (ttm->state != tt_unpopulated)
1364 return 0;
1365
22b33e8e
DA
1366 if (slave && ttm->sg) {
1367 /* make userspace faulting work */
1368 drm_prime_sg_to_page_addr_arrays(ttm->sg, ttm->pages,
1369 ttm_dma->dma_address, ttm->num_pages);
1370 ttm->state = tt_unbound;
1371 return 0;
1372 }
1373
ebb945a9 1374 drm = nouveau_bdev(ttm->bdev);
967e7bde 1375 device = nvkm_device(&drm->device);
ebb945a9 1376 dev = drm->dev;
fd1496a0 1377 pdev = nv_device_base(device);
3230cfc3 1378
dea7e0ac 1379#if __OS_HAS_AGP
ebb945a9 1380 if (drm->agp.stat == ENABLED) {
dea7e0ac
JG
1381 return ttm_agp_tt_populate(ttm);
1382 }
1383#endif
1384
3230cfc3
KRW
1385#ifdef CONFIG_SWIOTLB
1386 if (swiotlb_nr_tbl()) {
8e7e7052 1387 return ttm_dma_populate((void *)ttm, dev->dev);
3230cfc3
KRW
1388 }
1389#endif
1390
1391 r = ttm_pool_populate(ttm);
1392 if (r) {
1393 return r;
1394 }
1395
1396 for (i = 0; i < ttm->num_pages; i++) {
fd1496a0
AC
1397 dma_addr_t addr;
1398
1399 addr = dma_map_page(pdev, ttm->pages[i], 0, PAGE_SIZE,
1400 DMA_BIDIRECTIONAL);
1401
1402 if (dma_mapping_error(pdev, addr)) {
3230cfc3 1403 while (--i) {
fd1496a0
AC
1404 dma_unmap_page(pdev, ttm_dma->dma_address[i],
1405 PAGE_SIZE, DMA_BIDIRECTIONAL);
8e7e7052 1406 ttm_dma->dma_address[i] = 0;
3230cfc3
KRW
1407 }
1408 ttm_pool_unpopulate(ttm);
1409 return -EFAULT;
1410 }
fd1496a0
AC
1411
1412 ttm_dma->dma_address[i] = addr;
3230cfc3
KRW
1413 }
1414 return 0;
1415}
1416
1417static void
1418nouveau_ttm_tt_unpopulate(struct ttm_tt *ttm)
1419{
8e7e7052 1420 struct ttm_dma_tt *ttm_dma = (void *)ttm;
ebb945a9 1421 struct nouveau_drm *drm;
420b9469 1422 struct nouveau_device *device;
3230cfc3 1423 struct drm_device *dev;
fd1496a0 1424 struct device *pdev;
3230cfc3 1425 unsigned i;
22b33e8e
DA
1426 bool slave = !!(ttm->page_flags & TTM_PAGE_FLAG_SG);
1427
1428 if (slave)
1429 return;
3230cfc3 1430
ebb945a9 1431 drm = nouveau_bdev(ttm->bdev);
967e7bde 1432 device = nvkm_device(&drm->device);
ebb945a9 1433 dev = drm->dev;
fd1496a0 1434 pdev = nv_device_base(device);
3230cfc3 1435
dea7e0ac 1436#if __OS_HAS_AGP
ebb945a9 1437 if (drm->agp.stat == ENABLED) {
dea7e0ac
JG
1438 ttm_agp_tt_unpopulate(ttm);
1439 return;
1440 }
1441#endif
1442
3230cfc3
KRW
1443#ifdef CONFIG_SWIOTLB
1444 if (swiotlb_nr_tbl()) {
8e7e7052 1445 ttm_dma_unpopulate((void *)ttm, dev->dev);
3230cfc3
KRW
1446 return;
1447 }
1448#endif
1449
1450 for (i = 0; i < ttm->num_pages; i++) {
8e7e7052 1451 if (ttm_dma->dma_address[i]) {
fd1496a0
AC
1452 dma_unmap_page(pdev, ttm_dma->dma_address[i], PAGE_SIZE,
1453 DMA_BIDIRECTIONAL);
3230cfc3
KRW
1454 }
1455 }
1456
1457 ttm_pool_unpopulate(ttm);
1458}
1459
875ac34a
BS
1460void
1461nouveau_bo_fence(struct nouveau_bo *nvbo, struct nouveau_fence *fence)
1462{
5d216f60 1463 struct nouveau_fence *new_fence = nouveau_fence_ref(fence);
875ac34a
BS
1464 struct nouveau_fence *old_fence = NULL;
1465
bdaf7ddf
ML
1466 lockdep_assert_held(&nvbo->bo.resv->lock.base);
1467
875ac34a
BS
1468 spin_lock(&nvbo->bo.bdev->fence_lock);
1469 old_fence = nvbo->bo.sync_obj;
5d216f60 1470 nvbo->bo.sync_obj = new_fence;
875ac34a
BS
1471 spin_unlock(&nvbo->bo.bdev->fence_lock);
1472
1473 nouveau_fence_unref(&old_fence);
1474}
1475
1476static void
1477nouveau_bo_fence_unref(void **sync_obj)
1478{
1479 nouveau_fence_unref((struct nouveau_fence **)sync_obj);
1480}
1481
1482static void *
1483nouveau_bo_fence_ref(void *sync_obj)
1484{
1485 return nouveau_fence_ref(sync_obj);
1486}
1487
1488static bool
dedfdffd 1489nouveau_bo_fence_signalled(void *sync_obj)
875ac34a 1490{
d375e7d5 1491 return nouveau_fence_done(sync_obj);
875ac34a
BS
1492}
1493
1494static int
dedfdffd 1495nouveau_bo_fence_wait(void *sync_obj, bool lazy, bool intr)
875ac34a
BS
1496{
1497 return nouveau_fence_wait(sync_obj, lazy, intr);
1498}
1499
1500static int
dedfdffd 1501nouveau_bo_fence_flush(void *sync_obj)
875ac34a
BS
1502{
1503 return 0;
1504}
1505
6ee73861 1506struct ttm_bo_driver nouveau_bo_driver = {
649bf3ca 1507 .ttm_tt_create = &nouveau_ttm_tt_create,
3230cfc3
KRW
1508 .ttm_tt_populate = &nouveau_ttm_tt_populate,
1509 .ttm_tt_unpopulate = &nouveau_ttm_tt_unpopulate,
6ee73861
BS
1510 .invalidate_caches = nouveau_bo_invalidate_caches,
1511 .init_mem_type = nouveau_bo_init_mem_type,
1512 .evict_flags = nouveau_bo_evict_flags,
a4154bbf 1513 .move_notify = nouveau_bo_move_ntfy,
6ee73861
BS
1514 .move = nouveau_bo_move,
1515 .verify_access = nouveau_bo_verify_access,
875ac34a
BS
1516 .sync_obj_signaled = nouveau_bo_fence_signalled,
1517 .sync_obj_wait = nouveau_bo_fence_wait,
1518 .sync_obj_flush = nouveau_bo_fence_flush,
1519 .sync_obj_unref = nouveau_bo_fence_unref,
1520 .sync_obj_ref = nouveau_bo_fence_ref,
f32f02fd
JG
1521 .fault_reserve_notify = &nouveau_ttm_fault_reserve_notify,
1522 .io_mem_reserve = &nouveau_ttm_io_mem_reserve,
1523 .io_mem_free = &nouveau_ttm_io_mem_free,
6ee73861
BS
1524};
1525
fd2871af
BS
1526struct nouveau_vma *
1527nouveau_bo_vma_find(struct nouveau_bo *nvbo, struct nouveau_vm *vm)
1528{
1529 struct nouveau_vma *vma;
1530 list_for_each_entry(vma, &nvbo->vma_list, head) {
1531 if (vma->vm == vm)
1532 return vma;
1533 }
1534
1535 return NULL;
1536}
1537
1538int
1539nouveau_bo_vma_add(struct nouveau_bo *nvbo, struct nouveau_vm *vm,
1540 struct nouveau_vma *vma)
1541{
1542 const u32 size = nvbo->bo.mem.num_pages << PAGE_SHIFT;
fd2871af
BS
1543 int ret;
1544
1545 ret = nouveau_vm_get(vm, size, nvbo->page_shift,
1546 NV_MEM_ACCESS_RW, vma);
1547 if (ret)
1548 return ret;
1549
2e2cfbe6
BS
1550 if ( nvbo->bo.mem.mem_type != TTM_PL_SYSTEM &&
1551 (nvbo->bo.mem.mem_type == TTM_PL_VRAM ||
1552 nvbo->page_shift != vma->vm->vmm->lpg_shift))
fd2871af 1553 nouveau_vm_map(vma, nvbo->bo.mem.mm_node);
fd2871af
BS
1554
1555 list_add_tail(&vma->head, &nvbo->vma_list);
2fd3db6f 1556 vma->refcount = 1;
fd2871af
BS
1557 return 0;
1558}
1559
1560void
1561nouveau_bo_vma_del(struct nouveau_bo *nvbo, struct nouveau_vma *vma)
1562{
1563 if (vma->node) {
c4c7044f 1564 if (nvbo->bo.mem.mem_type != TTM_PL_SYSTEM)
fd2871af 1565 nouveau_vm_unmap(vma);
fd2871af
BS
1566 nouveau_vm_put(vma);
1567 list_del(&vma->head);
1568 }
1569}
This page took 0.334953 seconds and 5 git commands to generate.