]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/nouveau/nouveau_bo.c
drm/nouveau: fix thinkos in mem timing table recordlen check
[mirror_ubuntu-bionic-kernel.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
30#include "drmP.h"
31
32#include "nouveau_drm.h"
33#include "nouveau_drv.h"
34#include "nouveau_dma.h"
35
a510604d 36#include <linux/log2.h>
5a0e3ad6 37#include <linux/slab.h>
a510604d 38
6ee73861
BS
39static void
40nouveau_bo_del_ttm(struct ttm_buffer_object *bo)
41{
42 struct drm_nouveau_private *dev_priv = nouveau_bdev(bo->bdev);
a0af9add 43 struct drm_device *dev = dev_priv->dev;
6ee73861
BS
44 struct nouveau_bo *nvbo = nouveau_bo(bo);
45
6ee73861
BS
46 if (unlikely(nvbo->gem))
47 DRM_ERROR("bo %p still attached to GEM object\n", bo);
48
a0af9add
FJ
49 if (nvbo->tile)
50 nv10_mem_expire_tiling(dev, nvbo->tile, NULL);
51
6ee73861
BS
52 kfree(nvbo);
53}
54
a0af9add
FJ
55static void
56nouveau_bo_fixup_align(struct drm_device *dev,
57 uint32_t tile_mode, uint32_t tile_flags,
58 int *align, int *size)
59{
60 struct drm_nouveau_private *dev_priv = dev->dev_private;
61
62 /*
63 * Some of the tile_flags have a periodic structure of N*4096 bytes,
eb1dba0e
MM
64 * align to to that as well as the page size. Align the size to the
65 * appropriate boundaries. This does imply that sizes are rounded up
66 * 3-7 pages, so be aware of this and do not waste memory by allocating
67 * many small buffers.
a0af9add
FJ
68 */
69 if (dev_priv->card_type == NV_50) {
a76fb4e8 70 uint32_t block_size = dev_priv->vram_size >> 15;
a510604d
MM
71 int i;
72
a0af9add
FJ
73 switch (tile_flags) {
74 case 0x1800:
75 case 0x2800:
76 case 0x4800:
77 case 0x7a00:
a510604d 78 if (is_power_of_2(block_size)) {
a510604d
MM
79 for (i = 1; i < 10; i++) {
80 *align = 12 * i * block_size;
81 if (!(*align % 65536))
82 break;
83 }
a0af9add 84 } else {
a510604d
MM
85 for (i = 1; i < 10; i++) {
86 *align = 8 * i * block_size;
87 if (!(*align % 65536))
88 break;
89 }
a0af9add 90 }
eb1dba0e 91 *size = roundup(*size, *align);
a0af9add
FJ
92 break;
93 default:
94 break;
95 }
96
97 } else {
98 if (tile_mode) {
99 if (dev_priv->chipset >= 0x40) {
100 *align = 65536;
101 *size = roundup(*size, 64 * tile_mode);
102
103 } else if (dev_priv->chipset >= 0x30) {
104 *align = 32768;
105 *size = roundup(*size, 64 * tile_mode);
106
107 } else if (dev_priv->chipset >= 0x20) {
108 *align = 16384;
109 *size = roundup(*size, 64 * tile_mode);
110
111 } else if (dev_priv->chipset >= 0x10) {
112 *align = 16384;
113 *size = roundup(*size, 32 * tile_mode);
114 }
115 }
116 }
117
1c7059e4
MM
118 /* ALIGN works only on powers of two. */
119 *size = roundup(*size, PAGE_SIZE);
a0af9add
FJ
120
121 if (dev_priv->card_type == NV_50) {
1c7059e4 122 *size = roundup(*size, 65536);
a0af9add
FJ
123 *align = max(65536, *align);
124 }
125}
126
6ee73861
BS
127int
128nouveau_bo_new(struct drm_device *dev, struct nouveau_channel *chan,
129 int size, int align, uint32_t flags, uint32_t tile_mode,
130 uint32_t tile_flags, bool no_vm, bool mappable,
131 struct nouveau_bo **pnvbo)
132{
133 struct drm_nouveau_private *dev_priv = dev->dev_private;
134 struct nouveau_bo *nvbo;
8dea4a19 135 int ret = 0;
6ee73861
BS
136
137 nvbo = kzalloc(sizeof(struct nouveau_bo), GFP_KERNEL);
138 if (!nvbo)
139 return -ENOMEM;
140 INIT_LIST_HEAD(&nvbo->head);
141 INIT_LIST_HEAD(&nvbo->entry);
142 nvbo->mappable = mappable;
143 nvbo->no_vm = no_vm;
144 nvbo->tile_mode = tile_mode;
145 nvbo->tile_flags = tile_flags;
146
a0af9add 147 nouveau_bo_fixup_align(dev, tile_mode, tile_flags, &align, &size);
6ee73861
BS
148 align >>= PAGE_SHIFT;
149
78ad0f7b 150 nouveau_bo_placement_set(nvbo, flags, 0);
6ee73861
BS
151
152 nvbo->channel = chan;
6ee73861
BS
153 ret = ttm_bo_init(&dev_priv->ttm.bdev, &nvbo->bo, size,
154 ttm_bo_type_device, &nvbo->placement, align, 0,
155 false, NULL, size, nouveau_bo_del_ttm);
6ee73861
BS
156 if (ret) {
157 /* ttm will call nouveau_bo_del_ttm if it fails.. */
158 return ret;
159 }
90af89b9 160 nvbo->channel = NULL;
6ee73861 161
6ee73861
BS
162 *pnvbo = nvbo;
163 return 0;
164}
165
78ad0f7b
FJ
166static void
167set_placement_list(uint32_t *pl, unsigned *n, uint32_t type, uint32_t flags)
168{
169 *n = 0;
170
171 if (type & TTM_PL_FLAG_VRAM)
172 pl[(*n)++] = TTM_PL_FLAG_VRAM | flags;
173 if (type & TTM_PL_FLAG_TT)
174 pl[(*n)++] = TTM_PL_FLAG_TT | flags;
175 if (type & TTM_PL_FLAG_SYSTEM)
176 pl[(*n)++] = TTM_PL_FLAG_SYSTEM | flags;
177}
178
6ee73861 179void
78ad0f7b 180nouveau_bo_placement_set(struct nouveau_bo *nvbo, uint32_t type, uint32_t busy)
6ee73861 181{
78ad0f7b
FJ
182 struct ttm_placement *pl = &nvbo->placement;
183 uint32_t flags = TTM_PL_MASK_CACHING |
184 (nvbo->pin_refcnt ? TTM_PL_FLAG_NO_EVICT : 0);
185
186 pl->placement = nvbo->placements;
187 set_placement_list(nvbo->placements, &pl->num_placement,
188 type, flags);
189
190 pl->busy_placement = nvbo->busy_placements;
191 set_placement_list(nvbo->busy_placements, &pl->num_busy_placement,
192 type | busy, flags);
6ee73861
BS
193}
194
195int
196nouveau_bo_pin(struct nouveau_bo *nvbo, uint32_t memtype)
197{
198 struct drm_nouveau_private *dev_priv = nouveau_bdev(nvbo->bo.bdev);
199 struct ttm_buffer_object *bo = &nvbo->bo;
78ad0f7b 200 int ret;
6ee73861
BS
201
202 if (nvbo->pin_refcnt && !(memtype & (1 << bo->mem.mem_type))) {
203 NV_ERROR(nouveau_bdev(bo->bdev)->dev,
204 "bo %p pinned elsewhere: 0x%08x vs 0x%08x\n", bo,
205 1 << bo->mem.mem_type, memtype);
206 return -EINVAL;
207 }
208
209 if (nvbo->pin_refcnt++)
210 return 0;
211
212 ret = ttm_bo_reserve(bo, false, false, false, 0);
213 if (ret)
214 goto out;
215
78ad0f7b 216 nouveau_bo_placement_set(nvbo, memtype, 0);
6ee73861 217
9d87fa21 218 ret = ttm_bo_validate(bo, &nvbo->placement, false, false, false);
6ee73861
BS
219 if (ret == 0) {
220 switch (bo->mem.mem_type) {
221 case TTM_PL_VRAM:
222 dev_priv->fb_aper_free -= bo->mem.size;
223 break;
224 case TTM_PL_TT:
225 dev_priv->gart_info.aper_free -= bo->mem.size;
226 break;
227 default:
228 break;
229 }
230 }
231 ttm_bo_unreserve(bo);
232out:
233 if (unlikely(ret))
234 nvbo->pin_refcnt--;
235 return ret;
236}
237
238int
239nouveau_bo_unpin(struct nouveau_bo *nvbo)
240{
241 struct drm_nouveau_private *dev_priv = nouveau_bdev(nvbo->bo.bdev);
242 struct ttm_buffer_object *bo = &nvbo->bo;
78ad0f7b 243 int ret;
6ee73861
BS
244
245 if (--nvbo->pin_refcnt)
246 return 0;
247
248 ret = ttm_bo_reserve(bo, false, false, false, 0);
249 if (ret)
250 return ret;
251
78ad0f7b 252 nouveau_bo_placement_set(nvbo, bo->mem.placement, 0);
6ee73861 253
9d87fa21 254 ret = ttm_bo_validate(bo, &nvbo->placement, false, false, false);
6ee73861
BS
255 if (ret == 0) {
256 switch (bo->mem.mem_type) {
257 case TTM_PL_VRAM:
258 dev_priv->fb_aper_free += bo->mem.size;
259 break;
260 case TTM_PL_TT:
261 dev_priv->gart_info.aper_free += bo->mem.size;
262 break;
263 default:
264 break;
265 }
266 }
267
268 ttm_bo_unreserve(bo);
269 return ret;
270}
271
272int
273nouveau_bo_map(struct nouveau_bo *nvbo)
274{
275 int ret;
276
277 ret = ttm_bo_reserve(&nvbo->bo, false, false, false, 0);
278 if (ret)
279 return ret;
280
281 ret = ttm_bo_kmap(&nvbo->bo, 0, nvbo->bo.mem.num_pages, &nvbo->kmap);
282 ttm_bo_unreserve(&nvbo->bo);
283 return ret;
284}
285
286void
287nouveau_bo_unmap(struct nouveau_bo *nvbo)
288{
9d59e8a1
BS
289 if (nvbo)
290 ttm_bo_kunmap(&nvbo->kmap);
6ee73861
BS
291}
292
293u16
294nouveau_bo_rd16(struct nouveau_bo *nvbo, unsigned index)
295{
296 bool is_iomem;
297 u16 *mem = ttm_kmap_obj_virtual(&nvbo->kmap, &is_iomem);
298 mem = &mem[index];
299 if (is_iomem)
300 return ioread16_native((void __force __iomem *)mem);
301 else
302 return *mem;
303}
304
305void
306nouveau_bo_wr16(struct nouveau_bo *nvbo, unsigned index, u16 val)
307{
308 bool is_iomem;
309 u16 *mem = ttm_kmap_obj_virtual(&nvbo->kmap, &is_iomem);
310 mem = &mem[index];
311 if (is_iomem)
312 iowrite16_native(val, (void __force __iomem *)mem);
313 else
314 *mem = val;
315}
316
317u32
318nouveau_bo_rd32(struct nouveau_bo *nvbo, unsigned index)
319{
320 bool is_iomem;
321 u32 *mem = ttm_kmap_obj_virtual(&nvbo->kmap, &is_iomem);
322 mem = &mem[index];
323 if (is_iomem)
324 return ioread32_native((void __force __iomem *)mem);
325 else
326 return *mem;
327}
328
329void
330nouveau_bo_wr32(struct nouveau_bo *nvbo, unsigned index, u32 val)
331{
332 bool is_iomem;
333 u32 *mem = ttm_kmap_obj_virtual(&nvbo->kmap, &is_iomem);
334 mem = &mem[index];
335 if (is_iomem)
336 iowrite32_native(val, (void __force __iomem *)mem);
337 else
338 *mem = val;
339}
340
341static struct ttm_backend *
342nouveau_bo_create_ttm_backend_entry(struct ttm_bo_device *bdev)
343{
344 struct drm_nouveau_private *dev_priv = nouveau_bdev(bdev);
345 struct drm_device *dev = dev_priv->dev;
346
347 switch (dev_priv->gart_info.type) {
b694dfb2 348#if __OS_HAS_AGP
6ee73861
BS
349 case NOUVEAU_GART_AGP:
350 return ttm_agp_backend_init(bdev, dev->agp->bridge);
b694dfb2 351#endif
6ee73861
BS
352 case NOUVEAU_GART_SGDMA:
353 return nouveau_sgdma_init_ttm(dev);
354 default:
355 NV_ERROR(dev, "Unknown GART type %d\n",
356 dev_priv->gart_info.type);
357 break;
358 }
359
360 return NULL;
361}
362
363static int
364nouveau_bo_invalidate_caches(struct ttm_bo_device *bdev, uint32_t flags)
365{
366 /* We'll do this from user space. */
367 return 0;
368}
369
370static int
371nouveau_bo_init_mem_type(struct ttm_bo_device *bdev, uint32_t type,
372 struct ttm_mem_type_manager *man)
373{
374 struct drm_nouveau_private *dev_priv = nouveau_bdev(bdev);
375 struct drm_device *dev = dev_priv->dev;
376
377 switch (type) {
378 case TTM_PL_SYSTEM:
379 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE;
380 man->available_caching = TTM_PL_MASK_CACHING;
381 man->default_caching = TTM_PL_FLAG_CACHED;
382 break;
383 case TTM_PL_VRAM:
384 man->flags = TTM_MEMTYPE_FLAG_FIXED |
f32f02fd 385 TTM_MEMTYPE_FLAG_MAPPABLE;
6ee73861
BS
386 man->available_caching = TTM_PL_FLAG_UNCACHED |
387 TTM_PL_FLAG_WC;
388 man->default_caching = TTM_PL_FLAG_WC;
fbd2895e
BS
389 if (dev_priv->card_type == NV_50)
390 man->gpu_offset = 0x40000000;
391 else
392 man->gpu_offset = 0;
6ee73861
BS
393 break;
394 case TTM_PL_TT:
395 switch (dev_priv->gart_info.type) {
396 case NOUVEAU_GART_AGP:
f32f02fd 397 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE;
6ee73861
BS
398 man->available_caching = TTM_PL_FLAG_UNCACHED;
399 man->default_caching = TTM_PL_FLAG_UNCACHED;
400 break;
401 case NOUVEAU_GART_SGDMA:
402 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE |
403 TTM_MEMTYPE_FLAG_CMA;
404 man->available_caching = TTM_PL_MASK_CACHING;
405 man->default_caching = TTM_PL_FLAG_CACHED;
406 break;
407 default:
408 NV_ERROR(dev, "Unknown GART type: %d\n",
409 dev_priv->gart_info.type);
410 return -EINVAL;
411 }
6ee73861
BS
412 man->gpu_offset = dev_priv->vm_gart_base;
413 break;
414 default:
415 NV_ERROR(dev, "Unsupported memory type %u\n", (unsigned)type);
416 return -EINVAL;
417 }
418 return 0;
419}
420
421static void
422nouveau_bo_evict_flags(struct ttm_buffer_object *bo, struct ttm_placement *pl)
423{
424 struct nouveau_bo *nvbo = nouveau_bo(bo);
425
426 switch (bo->mem.mem_type) {
22fbd538 427 case TTM_PL_VRAM:
78ad0f7b
FJ
428 nouveau_bo_placement_set(nvbo, TTM_PL_FLAG_TT,
429 TTM_PL_FLAG_SYSTEM);
22fbd538 430 break;
6ee73861 431 default:
78ad0f7b 432 nouveau_bo_placement_set(nvbo, TTM_PL_FLAG_SYSTEM, 0);
6ee73861
BS
433 break;
434 }
22fbd538
FJ
435
436 *pl = nvbo->placement;
6ee73861
BS
437}
438
439
440/* GPU-assisted copy using NV_MEMORY_TO_MEMORY_FORMAT, can access
441 * TTM_PL_{VRAM,TT} directly.
442 */
a0af9add 443
6ee73861
BS
444static int
445nouveau_bo_move_accel_cleanup(struct nouveau_channel *chan,
9d87fa21
JG
446 struct nouveau_bo *nvbo, bool evict,
447 bool no_wait_reserve, bool no_wait_gpu,
6ee73861
BS
448 struct ttm_mem_reg *new_mem)
449{
450 struct nouveau_fence *fence = NULL;
451 int ret;
452
453 ret = nouveau_fence_new(chan, &fence, true);
454 if (ret)
455 return ret;
456
64798817
FJ
457 if (nvbo->channel) {
458 ret = nouveau_fence_sync(fence, nvbo->channel);
459 if (ret)
460 goto out;
461 }
462
463 ret = ttm_bo_move_accel_cleanup(&nvbo->bo, fence, NULL, evict,
311ab694 464 no_wait_reserve, no_wait_gpu, new_mem);
64798817 465out:
6ee73861
BS
466 nouveau_fence_unref((void *)&fence);
467 return ret;
468}
469
470static inline uint32_t
f1ab0cc9
BS
471nouveau_bo_mem_ctxdma(struct ttm_buffer_object *bo,
472 struct nouveau_channel *chan, struct ttm_mem_reg *mem)
6ee73861 473{
f1ab0cc9
BS
474 struct nouveau_bo *nvbo = nouveau_bo(bo);
475
476 if (nvbo->no_vm) {
6ee73861
BS
477 if (mem->mem_type == TTM_PL_TT)
478 return NvDmaGART;
479 return NvDmaVRAM;
480 }
481
482 if (mem->mem_type == TTM_PL_TT)
483 return chan->gart_handle;
484 return chan->vram_handle;
485}
486
487static int
f1ab0cc9
BS
488nv50_bo_move_m2mf(struct nouveau_channel *chan, struct ttm_buffer_object *bo,
489 struct ttm_mem_reg *old_mem, struct ttm_mem_reg *new_mem)
6ee73861 490{
6ee73861 491 struct drm_nouveau_private *dev_priv = nouveau_bdev(bo->bdev);
f1ab0cc9
BS
492 struct nouveau_bo *nvbo = nouveau_bo(bo);
493 u64 length = (new_mem->num_pages << PAGE_SHIFT);
494 u64 src_offset, dst_offset;
6ee73861
BS
495 int ret;
496
6ee73861
BS
497 src_offset = old_mem->mm_node->start << PAGE_SHIFT;
498 dst_offset = new_mem->mm_node->start << PAGE_SHIFT;
f1ab0cc9
BS
499 if (!nvbo->no_vm) {
500 if (old_mem->mem_type == TTM_PL_VRAM)
6ee73861 501 src_offset += dev_priv->vm_vram_base;
6ee73861 502 else
f1ab0cc9
BS
503 src_offset += dev_priv->vm_gart_base;
504
505 if (new_mem->mem_type == TTM_PL_VRAM)
6ee73861 506 dst_offset += dev_priv->vm_vram_base;
f1ab0cc9
BS
507 else
508 dst_offset += dev_priv->vm_gart_base;
6ee73861
BS
509 }
510
511 ret = RING_SPACE(chan, 3);
512 if (ret)
513 return ret;
6ee73861 514
f1ab0cc9
BS
515 BEGIN_RING(chan, NvSubM2MF, 0x0184, 2);
516 OUT_RING (chan, nouveau_bo_mem_ctxdma(bo, chan, old_mem));
517 OUT_RING (chan, nouveau_bo_mem_ctxdma(bo, chan, new_mem));
518
519 while (length) {
520 u32 amount, stride, height;
521
5220b3c1
BS
522 amount = min(length, (u64)(4 * 1024 * 1024));
523 stride = 16 * 4;
f1ab0cc9
BS
524 height = amount / stride;
525
526 if (new_mem->mem_type == TTM_PL_VRAM && nvbo->tile_flags) {
527 ret = RING_SPACE(chan, 8);
528 if (ret)
529 return ret;
530
531 BEGIN_RING(chan, NvSubM2MF, 0x0200, 7);
532 OUT_RING (chan, 0);
5220b3c1 533 OUT_RING (chan, 0);
f1ab0cc9
BS
534 OUT_RING (chan, stride);
535 OUT_RING (chan, height);
536 OUT_RING (chan, 1);
537 OUT_RING (chan, 0);
538 OUT_RING (chan, 0);
539 } else {
540 ret = RING_SPACE(chan, 2);
541 if (ret)
542 return ret;
543
544 BEGIN_RING(chan, NvSubM2MF, 0x0200, 1);
545 OUT_RING (chan, 1);
546 }
547 if (old_mem->mem_type == TTM_PL_VRAM && nvbo->tile_flags) {
548 ret = RING_SPACE(chan, 8);
549 if (ret)
550 return ret;
551
552 BEGIN_RING(chan, NvSubM2MF, 0x021c, 7);
553 OUT_RING (chan, 0);
5220b3c1 554 OUT_RING (chan, 0);
f1ab0cc9
BS
555 OUT_RING (chan, stride);
556 OUT_RING (chan, height);
557 OUT_RING (chan, 1);
558 OUT_RING (chan, 0);
559 OUT_RING (chan, 0);
560 } else {
561 ret = RING_SPACE(chan, 2);
562 if (ret)
563 return ret;
564
565 BEGIN_RING(chan, NvSubM2MF, 0x021c, 1);
566 OUT_RING (chan, 1);
567 }
568
569 ret = RING_SPACE(chan, 14);
6ee73861
BS
570 if (ret)
571 return ret;
f1ab0cc9
BS
572
573 BEGIN_RING(chan, NvSubM2MF, 0x0238, 2);
574 OUT_RING (chan, upper_32_bits(src_offset));
575 OUT_RING (chan, upper_32_bits(dst_offset));
576 BEGIN_RING(chan, NvSubM2MF, 0x030c, 8);
577 OUT_RING (chan, lower_32_bits(src_offset));
578 OUT_RING (chan, lower_32_bits(dst_offset));
579 OUT_RING (chan, stride);
580 OUT_RING (chan, stride);
581 OUT_RING (chan, stride);
582 OUT_RING (chan, height);
583 OUT_RING (chan, 0x00000101);
584 OUT_RING (chan, 0x00000000);
585 BEGIN_RING(chan, NvSubM2MF, NV_MEMORY_TO_MEMORY_FORMAT_NOP, 1);
586 OUT_RING (chan, 0);
587
588 length -= amount;
589 src_offset += amount;
590 dst_offset += amount;
6ee73861
BS
591 }
592
f1ab0cc9
BS
593 return 0;
594}
595
596static int
597nv04_bo_move_m2mf(struct nouveau_channel *chan, struct ttm_buffer_object *bo,
598 struct ttm_mem_reg *old_mem, struct ttm_mem_reg *new_mem)
599{
600 u32 src_offset = old_mem->mm_node->start << PAGE_SHIFT;
601 u32 dst_offset = new_mem->mm_node->start << PAGE_SHIFT;
602 u32 page_count = new_mem->num_pages;
603 int ret;
604
605 ret = RING_SPACE(chan, 3);
606 if (ret)
607 return ret;
608
609 BEGIN_RING(chan, NvSubM2MF, NV_MEMORY_TO_MEMORY_FORMAT_DMA_SOURCE, 2);
610 OUT_RING (chan, nouveau_bo_mem_ctxdma(bo, chan, old_mem));
611 OUT_RING (chan, nouveau_bo_mem_ctxdma(bo, chan, new_mem));
612
6ee73861
BS
613 page_count = new_mem->num_pages;
614 while (page_count) {
615 int line_count = (page_count > 2047) ? 2047 : page_count;
616
6ee73861
BS
617 ret = RING_SPACE(chan, 11);
618 if (ret)
619 return ret;
f1ab0cc9 620
6ee73861
BS
621 BEGIN_RING(chan, NvSubM2MF,
622 NV_MEMORY_TO_MEMORY_FORMAT_OFFSET_IN, 8);
f1ab0cc9
BS
623 OUT_RING (chan, src_offset);
624 OUT_RING (chan, dst_offset);
625 OUT_RING (chan, PAGE_SIZE); /* src_pitch */
626 OUT_RING (chan, PAGE_SIZE); /* dst_pitch */
627 OUT_RING (chan, PAGE_SIZE); /* line_length */
628 OUT_RING (chan, line_count);
629 OUT_RING (chan, 0x00000101);
630 OUT_RING (chan, 0x00000000);
6ee73861 631 BEGIN_RING(chan, NvSubM2MF, NV_MEMORY_TO_MEMORY_FORMAT_NOP, 1);
f1ab0cc9 632 OUT_RING (chan, 0);
6ee73861
BS
633
634 page_count -= line_count;
635 src_offset += (PAGE_SIZE * line_count);
636 dst_offset += (PAGE_SIZE * line_count);
637 }
638
f1ab0cc9
BS
639 return 0;
640}
641
642static int
643nouveau_bo_move_m2mf(struct ttm_buffer_object *bo, int evict, bool intr,
644 bool no_wait_reserve, bool no_wait_gpu,
645 struct ttm_mem_reg *new_mem)
646{
647 struct drm_nouveau_private *dev_priv = nouveau_bdev(bo->bdev);
648 struct nouveau_bo *nvbo = nouveau_bo(bo);
649 struct nouveau_channel *chan;
650 int ret;
651
652 chan = nvbo->channel;
653 if (!chan || nvbo->no_vm)
654 chan = dev_priv->channel;
655
656 if (dev_priv->card_type < NV_50)
657 ret = nv04_bo_move_m2mf(chan, bo, &bo->mem, new_mem);
658 else
659 ret = nv50_bo_move_m2mf(chan, bo, &bo->mem, new_mem);
660 if (ret)
661 return ret;
662
9d87fa21 663 return nouveau_bo_move_accel_cleanup(chan, nvbo, evict, no_wait_reserve, no_wait_gpu, new_mem);
6ee73861
BS
664}
665
666static int
667nouveau_bo_move_flipd(struct ttm_buffer_object *bo, bool evict, bool intr,
9d87fa21
JG
668 bool no_wait_reserve, bool no_wait_gpu,
669 struct ttm_mem_reg *new_mem)
6ee73861
BS
670{
671 u32 placement_memtype = TTM_PL_FLAG_TT | TTM_PL_MASK_CACHING;
672 struct ttm_placement placement;
673 struct ttm_mem_reg tmp_mem;
674 int ret;
675
676 placement.fpfn = placement.lpfn = 0;
677 placement.num_placement = placement.num_busy_placement = 1;
77e2b5ed 678 placement.placement = placement.busy_placement = &placement_memtype;
6ee73861
BS
679
680 tmp_mem = *new_mem;
681 tmp_mem.mm_node = NULL;
9d87fa21 682 ret = ttm_bo_mem_space(bo, &placement, &tmp_mem, intr, no_wait_reserve, no_wait_gpu);
6ee73861
BS
683 if (ret)
684 return ret;
685
686 ret = ttm_tt_bind(bo->ttm, &tmp_mem);
687 if (ret)
688 goto out;
689
9d87fa21 690 ret = nouveau_bo_move_m2mf(bo, true, intr, no_wait_reserve, no_wait_gpu, &tmp_mem);
6ee73861
BS
691 if (ret)
692 goto out;
693
9d87fa21 694 ret = ttm_bo_move_ttm(bo, evict, no_wait_reserve, no_wait_gpu, new_mem);
6ee73861
BS
695out:
696 if (tmp_mem.mm_node) {
697 spin_lock(&bo->bdev->glob->lru_lock);
698 drm_mm_put_block(tmp_mem.mm_node);
699 spin_unlock(&bo->bdev->glob->lru_lock);
700 }
701
702 return ret;
703}
704
705static int
706nouveau_bo_move_flips(struct ttm_buffer_object *bo, bool evict, bool intr,
9d87fa21
JG
707 bool no_wait_reserve, bool no_wait_gpu,
708 struct ttm_mem_reg *new_mem)
6ee73861
BS
709{
710 u32 placement_memtype = TTM_PL_FLAG_TT | TTM_PL_MASK_CACHING;
711 struct ttm_placement placement;
712 struct ttm_mem_reg tmp_mem;
713 int ret;
714
715 placement.fpfn = placement.lpfn = 0;
716 placement.num_placement = placement.num_busy_placement = 1;
77e2b5ed 717 placement.placement = placement.busy_placement = &placement_memtype;
6ee73861
BS
718
719 tmp_mem = *new_mem;
720 tmp_mem.mm_node = NULL;
9d87fa21 721 ret = ttm_bo_mem_space(bo, &placement, &tmp_mem, intr, no_wait_reserve, no_wait_gpu);
6ee73861
BS
722 if (ret)
723 return ret;
724
9d87fa21 725 ret = ttm_bo_move_ttm(bo, evict, no_wait_reserve, no_wait_gpu, &tmp_mem);
6ee73861
BS
726 if (ret)
727 goto out;
728
9d87fa21 729 ret = nouveau_bo_move_m2mf(bo, evict, intr, no_wait_reserve, no_wait_gpu, new_mem);
6ee73861
BS
730 if (ret)
731 goto out;
732
733out:
734 if (tmp_mem.mm_node) {
735 spin_lock(&bo->bdev->glob->lru_lock);
736 drm_mm_put_block(tmp_mem.mm_node);
737 spin_unlock(&bo->bdev->glob->lru_lock);
738 }
739
740 return ret;
741}
742
743static int
a0af9add
FJ
744nouveau_bo_vm_bind(struct ttm_buffer_object *bo, struct ttm_mem_reg *new_mem,
745 struct nouveau_tile_reg **new_tile)
6ee73861
BS
746{
747 struct drm_nouveau_private *dev_priv = nouveau_bdev(bo->bdev);
6ee73861 748 struct drm_device *dev = dev_priv->dev;
a0af9add
FJ
749 struct nouveau_bo *nvbo = nouveau_bo(bo);
750 uint64_t offset;
6ee73861
BS
751 int ret;
752
a0af9add
FJ
753 if (nvbo->no_vm || new_mem->mem_type != TTM_PL_VRAM) {
754 /* Nothing to do. */
755 *new_tile = NULL;
756 return 0;
757 }
758
759 offset = new_mem->mm_node->start << PAGE_SHIFT;
6ee73861 760
a0af9add 761 if (dev_priv->card_type == NV_50) {
6ee73861
BS
762 ret = nv50_mem_vm_bind_linear(dev,
763 offset + dev_priv->vm_vram_base,
764 new_mem->size, nvbo->tile_flags,
765 offset);
766 if (ret)
767 return ret;
a0af9add
FJ
768
769 } else if (dev_priv->card_type >= NV_10) {
770 *new_tile = nv10_mem_set_tiling(dev, offset, new_mem->size,
771 nvbo->tile_mode);
6ee73861
BS
772 }
773
a0af9add
FJ
774 return 0;
775}
776
777static void
778nouveau_bo_vm_cleanup(struct ttm_buffer_object *bo,
779 struct nouveau_tile_reg *new_tile,
780 struct nouveau_tile_reg **old_tile)
781{
782 struct drm_nouveau_private *dev_priv = nouveau_bdev(bo->bdev);
783 struct drm_device *dev = dev_priv->dev;
784
785 if (dev_priv->card_type >= NV_10 &&
786 dev_priv->card_type < NV_50) {
787 if (*old_tile)
788 nv10_mem_expire_tiling(dev, *old_tile, bo->sync_obj);
789
790 *old_tile = new_tile;
791 }
792}
793
794static int
795nouveau_bo_move(struct ttm_buffer_object *bo, bool evict, bool intr,
9d87fa21
JG
796 bool no_wait_reserve, bool no_wait_gpu,
797 struct ttm_mem_reg *new_mem)
a0af9add
FJ
798{
799 struct drm_nouveau_private *dev_priv = nouveau_bdev(bo->bdev);
800 struct nouveau_bo *nvbo = nouveau_bo(bo);
801 struct ttm_mem_reg *old_mem = &bo->mem;
802 struct nouveau_tile_reg *new_tile = NULL;
803 int ret = 0;
804
805 ret = nouveau_bo_vm_bind(bo, new_mem, &new_tile);
806 if (ret)
807 return ret;
808
a0af9add 809 /* Fake bo copy. */
6ee73861
BS
810 if (old_mem->mem_type == TTM_PL_SYSTEM && !bo->ttm) {
811 BUG_ON(bo->mem.mm_node != NULL);
812 bo->mem = *new_mem;
813 new_mem->mm_node = NULL;
a0af9add 814 goto out;
6ee73861
BS
815 }
816
b8a6a804
BS
817 /* Software copy if the card isn't up and running yet. */
818 if (!dev_priv->channel) {
819 ret = ttm_bo_move_memcpy(bo, evict, no_wait_reserve, no_wait_gpu, new_mem);
820 goto out;
821 }
822
a0af9add
FJ
823 /* Hardware assisted copy. */
824 if (new_mem->mem_type == TTM_PL_SYSTEM)
9d87fa21 825 ret = nouveau_bo_move_flipd(bo, evict, intr, no_wait_reserve, no_wait_gpu, new_mem);
a0af9add 826 else if (old_mem->mem_type == TTM_PL_SYSTEM)
9d87fa21 827 ret = nouveau_bo_move_flips(bo, evict, intr, no_wait_reserve, no_wait_gpu, new_mem);
a0af9add 828 else
9d87fa21 829 ret = nouveau_bo_move_m2mf(bo, evict, intr, no_wait_reserve, no_wait_gpu, new_mem);
6ee73861 830
a0af9add
FJ
831 if (!ret)
832 goto out;
833
834 /* Fallback to software copy. */
9d87fa21 835 ret = ttm_bo_move_memcpy(bo, evict, no_wait_reserve, no_wait_gpu, new_mem);
a0af9add
FJ
836
837out:
838 if (ret)
839 nouveau_bo_vm_cleanup(bo, NULL, &new_tile);
840 else
841 nouveau_bo_vm_cleanup(bo, new_tile, &nvbo->tile);
842
843 return ret;
6ee73861
BS
844}
845
846static int
847nouveau_bo_verify_access(struct ttm_buffer_object *bo, struct file *filp)
848{
849 return 0;
850}
851
f32f02fd
JG
852static int
853nouveau_ttm_io_mem_reserve(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
854{
855 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type];
856 struct drm_nouveau_private *dev_priv = nouveau_bdev(bdev);
857 struct drm_device *dev = dev_priv->dev;
858
859 mem->bus.addr = NULL;
860 mem->bus.offset = 0;
861 mem->bus.size = mem->num_pages << PAGE_SHIFT;
862 mem->bus.base = 0;
863 mem->bus.is_iomem = false;
864 if (!(man->flags & TTM_MEMTYPE_FLAG_MAPPABLE))
865 return -EINVAL;
866 switch (mem->mem_type) {
867 case TTM_PL_SYSTEM:
868 /* System memory */
869 return 0;
870 case TTM_PL_TT:
871#if __OS_HAS_AGP
872 if (dev_priv->gart_info.type == NOUVEAU_GART_AGP) {
873 mem->bus.offset = mem->mm_node->start << PAGE_SHIFT;
874 mem->bus.base = dev_priv->gart_info.aper_base;
875 mem->bus.is_iomem = true;
876 }
877#endif
878 break;
879 case TTM_PL_VRAM:
880 mem->bus.offset = mem->mm_node->start << PAGE_SHIFT;
01d73a69 881 mem->bus.base = pci_resource_start(dev->pdev, 1);
f32f02fd
JG
882 mem->bus.is_iomem = true;
883 break;
884 default:
885 return -EINVAL;
886 }
887 return 0;
888}
889
890static void
891nouveau_ttm_io_mem_free(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem)
892{
893}
894
895static int
896nouveau_ttm_fault_reserve_notify(struct ttm_buffer_object *bo)
897{
e1429b4c
BS
898 struct drm_nouveau_private *dev_priv = nouveau_bdev(bo->bdev);
899 struct nouveau_bo *nvbo = nouveau_bo(bo);
900
901 /* as long as the bo isn't in vram, and isn't tiled, we've got
902 * nothing to do here.
903 */
904 if (bo->mem.mem_type != TTM_PL_VRAM) {
9bb5863a 905 if (dev_priv->card_type < NV_50 || !nvbo->tile_flags)
e1429b4c
BS
906 return 0;
907 }
908
909 /* make sure bo is in mappable vram */
910 if (bo->mem.mm_node->start + bo->mem.num_pages < dev_priv->fb_mappable_pages)
911 return 0;
912
913
914 nvbo->placement.fpfn = 0;
915 nvbo->placement.lpfn = dev_priv->fb_mappable_pages;
916 nouveau_bo_placement_set(nvbo, TTM_PL_VRAM, 0);
917 return ttm_bo_validate(bo, &nvbo->placement, false, true, false);
f32f02fd
JG
918}
919
6ee73861
BS
920struct ttm_bo_driver nouveau_bo_driver = {
921 .create_ttm_backend_entry = nouveau_bo_create_ttm_backend_entry,
922 .invalidate_caches = nouveau_bo_invalidate_caches,
923 .init_mem_type = nouveau_bo_init_mem_type,
924 .evict_flags = nouveau_bo_evict_flags,
925 .move = nouveau_bo_move,
926 .verify_access = nouveau_bo_verify_access,
927 .sync_obj_signaled = nouveau_fence_signalled,
928 .sync_obj_wait = nouveau_fence_wait,
929 .sync_obj_flush = nouveau_fence_flush,
930 .sync_obj_unref = nouveau_fence_unref,
931 .sync_obj_ref = nouveau_fence_ref,
f32f02fd
JG
932 .fault_reserve_notify = &nouveau_ttm_fault_reserve_notify,
933 .io_mem_reserve = &nouveau_ttm_io_mem_reserve,
934 .io_mem_free = &nouveau_ttm_io_mem_free,
6ee73861
BS
935};
936