No empty .Rs/.Re
[netbsd-mini2440.git] / sys / external / bsd / drm / dist / shared-core / nouveau_object.c
blob19325f3725e811ab440128beb4a213016ce6ebab
1 /*
2 * Copyright (C) 2006 Ben Skeggs.
4 * All Rights Reserved.
6 * Permission is hereby granted, free of charge, to any person obtaining
7 * a copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sublicense, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial
16 * portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
22 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 * Authors:
30 * Ben Skeggs <darktama@iinet.net.au>
33 #include "drmP.h"
34 #include "drm.h"
35 #include "nouveau_drv.h"
36 #include "nouveau_drm.h"
38 /* NVidia uses context objects to drive drawing operations.
40 Context objects can be selected into 8 subchannels in the FIFO,
41 and then used via DMA command buffers.
43 A context object is referenced by a user defined handle (CARD32). The HW
44 looks up graphics objects in a hash table in the instance RAM.
46 An entry in the hash table consists of 2 CARD32. The first CARD32 contains
47 the handle, the second one a bitfield, that contains the address of the
48 object in instance RAM.
50 The format of the second CARD32 seems to be:
52 NV4 to NV30:
54 15: 0 instance_addr >> 4
55 17:16 engine (here uses 1 = graphics)
56 28:24 channel id (here uses 0)
57 31 valid (use 1)
59 NV40:
61 15: 0 instance_addr >> 4 (maybe 19-0)
62 21:20 engine (here uses 1 = graphics)
63 I'm unsure about the other bits, but using 0 seems to work.
65 The key into the hash table depends on the object handle and channel id and
66 is given as:
68 static uint32_t
69 nouveau_ramht_hash_handle(struct drm_device *dev, int channel, uint32_t handle)
71 struct drm_nouveau_private *dev_priv=dev->dev_private;
72 uint32_t hash = 0;
73 int i;
75 DRM_DEBUG("ch%d handle=0x%08x\n", channel, handle);
77 for (i=32;i>0;i-=dev_priv->ramht_bits) {
78 hash ^= (handle & ((1 << dev_priv->ramht_bits) - 1));
79 handle >>= dev_priv->ramht_bits;
81 if (dev_priv->card_type < NV_50)
82 hash ^= channel << (dev_priv->ramht_bits - 4);
83 hash <<= 3;
85 DRM_DEBUG("hash=0x%08x\n", hash);
86 return hash;
89 static int
90 nouveau_ramht_entry_valid(struct drm_device *dev, struct nouveau_gpuobj *ramht,
91 uint32_t offset)
93 struct drm_nouveau_private *dev_priv=dev->dev_private;
94 uint32_t ctx = INSTANCE_RD(ramht, (offset + 4)/4);
96 if (dev_priv->card_type < NV_40)
97 return ((ctx & NV_RAMHT_CONTEXT_VALID) != 0);
98 return (ctx != 0);
101 static int
102 nouveau_ramht_insert(struct drm_device *dev, struct nouveau_gpuobj_ref *ref)
104 struct drm_nouveau_private *dev_priv=dev->dev_private;
105 struct nouveau_channel *chan = dev_priv->fifos[ref->channel];
106 struct nouveau_gpuobj *ramht = chan->ramht ? chan->ramht->gpuobj : NULL;
107 struct nouveau_gpuobj *gpuobj = ref->gpuobj;
108 uint32_t ctx, co, ho;
110 if (!ramht) {
111 DRM_ERROR("No hash table!\n");
112 return -EINVAL;
115 if (dev_priv->card_type < NV_40) {
116 ctx = NV_RAMHT_CONTEXT_VALID | (ref->instance >> 4) |
117 (ref->channel << NV_RAMHT_CONTEXT_CHANNEL_SHIFT) |
118 (gpuobj->engine << NV_RAMHT_CONTEXT_ENGINE_SHIFT);
119 } else
120 if (dev_priv->card_type < NV_50) {
121 ctx = (ref->instance >> 4) |
122 (ref->channel << NV40_RAMHT_CONTEXT_CHANNEL_SHIFT) |
123 (gpuobj->engine << NV40_RAMHT_CONTEXT_ENGINE_SHIFT);
124 } else {
125 ctx = (ref->instance >> 4) |
126 (gpuobj->engine << NV40_RAMHT_CONTEXT_ENGINE_SHIFT);
129 co = ho = nouveau_ramht_hash_handle(dev, ref->channel, ref->handle);
130 do {
131 if (!nouveau_ramht_entry_valid(dev, ramht, co)) {
132 DRM_DEBUG("insert ch%d 0x%08x: h=0x%08x, c=0x%08x\n",
133 ref->channel, co, ref->handle, ctx);
134 INSTANCE_WR(ramht, (co + 0)/4, ref->handle);
135 INSTANCE_WR(ramht, (co + 4)/4, ctx);
137 list_add_tail(&ref->list, &chan->ramht_refs);
138 return 0;
140 DRM_DEBUG("collision ch%d 0x%08x: h=0x%08x\n",
141 ref->channel, co, INSTANCE_RD(ramht, co/4));
143 co += 8;
144 if (co >= dev_priv->ramht_size)
145 co = 0;
146 } while (co != ho);
148 DRM_ERROR("RAMHT space exhausted. ch=%d\n", ref->channel);
149 return -ENOMEM;
152 static void
153 nouveau_ramht_remove(struct drm_device *dev, struct nouveau_gpuobj_ref *ref)
155 struct drm_nouveau_private *dev_priv = dev->dev_private;
156 struct nouveau_channel *chan = dev_priv->fifos[ref->channel];
157 struct nouveau_gpuobj *ramht = chan->ramht ? chan->ramht->gpuobj : NULL;
158 uint32_t co, ho;
160 if (!ramht) {
161 DRM_ERROR("No hash table!\n");
162 return;
165 co = ho = nouveau_ramht_hash_handle(dev, ref->channel, ref->handle);
166 do {
167 if (nouveau_ramht_entry_valid(dev, ramht, co) &&
168 (ref->handle == INSTANCE_RD(ramht, (co/4)))) {
169 DRM_DEBUG("remove ch%d 0x%08x: h=0x%08x, c=0x%08x\n",
170 ref->channel, co, ref->handle,
171 INSTANCE_RD(ramht, (co + 4)));
172 INSTANCE_WR(ramht, (co + 0)/4, 0x00000000);
173 INSTANCE_WR(ramht, (co + 4)/4, 0x00000000);
175 list_del(&ref->list);
176 return;
179 co += 8;
180 if (co >= dev_priv->ramht_size)
181 co = 0;
182 } while (co != ho);
184 DRM_ERROR("RAMHT entry not found. ch=%d, handle=0x%08x\n",
185 ref->channel, ref->handle);
189 nouveau_gpuobj_new(struct drm_device *dev, struct nouveau_channel *chan,
190 int size, int align, uint32_t flags,
191 struct nouveau_gpuobj **gpuobj_ret)
193 struct drm_nouveau_private *dev_priv = dev->dev_private;
194 struct nouveau_engine *engine = &dev_priv->Engine;
195 struct nouveau_gpuobj *gpuobj;
196 struct mem_block *pramin = NULL;
197 int ret;
199 DRM_DEBUG("ch%d size=%d align=%d flags=0x%08x\n",
200 chan ? chan->id : -1, size, align, flags);
202 if (!dev_priv || !gpuobj_ret || *gpuobj_ret != NULL)
203 return -EINVAL;
205 gpuobj = drm_calloc(1, sizeof(*gpuobj), DRM_MEM_DRIVER);
206 if (!gpuobj)
207 return -ENOMEM;
208 DRM_DEBUG("gpuobj %p\n", gpuobj);
209 gpuobj->flags = flags;
210 gpuobj->im_channel = chan ? chan->id : -1;
212 list_add_tail(&gpuobj->list, &dev_priv->gpuobj_list);
214 /* Choose between global instmem heap, and per-channel private
215 * instmem heap. On <NV50 allow requests for private instmem
216 * to be satisfied from global heap if no per-channel area
217 * available.
219 if (chan) {
220 if (chan->ramin_heap) {
221 DRM_DEBUG("private heap\n");
222 pramin = chan->ramin_heap;
223 } else
224 if (dev_priv->card_type < NV_50) {
225 DRM_DEBUG("global heap fallback\n");
226 pramin = dev_priv->ramin_heap;
228 } else {
229 DRM_DEBUG("global heap\n");
230 pramin = dev_priv->ramin_heap;
233 if (!pramin) {
234 DRM_ERROR("No PRAMIN heap!\n");
235 return -EINVAL;
238 if (!chan && (ret = engine->instmem.populate(dev, gpuobj, &size))) {
239 nouveau_gpuobj_del(dev, &gpuobj);
240 return ret;
243 /* Allocate a chunk of the PRAMIN aperture */
244 gpuobj->im_pramin = nouveau_mem_alloc_block(pramin, size,
245 drm_order(align),
246 (struct drm_file *)-2, 0);
247 if (!gpuobj->im_pramin) {
248 nouveau_gpuobj_del(dev, &gpuobj);
249 return -ENOMEM;
251 gpuobj->im_pramin->flags = NOUVEAU_MEM_INSTANCE;
253 if (!chan && (ret = engine->instmem.bind(dev, gpuobj))) {
254 nouveau_gpuobj_del(dev, &gpuobj);
255 return ret;
258 if (gpuobj->flags & NVOBJ_FLAG_ZERO_ALLOC) {
259 int i;
261 for (i = 0; i < gpuobj->im_pramin->size; i += 4)
262 INSTANCE_WR(gpuobj, i/4, 0);
265 *gpuobj_ret = gpuobj;
266 return 0;
270 nouveau_gpuobj_early_init(struct drm_device *dev)
272 struct drm_nouveau_private *dev_priv = dev->dev_private;
274 DRM_DEBUG("\n");
276 INIT_LIST_HEAD(&dev_priv->gpuobj_list);
278 return 0;
282 nouveau_gpuobj_init(struct drm_device *dev)
284 struct drm_nouveau_private *dev_priv = dev->dev_private;
285 int ret;
287 DRM_DEBUG("\n");
289 if (dev_priv->card_type < NV_50) {
290 if ((ret = nouveau_gpuobj_new_fake(dev, dev_priv->ramht_offset,
291 ~0, dev_priv->ramht_size,
292 NVOBJ_FLAG_ZERO_ALLOC |
293 NVOBJ_FLAG_ALLOW_NO_REFS,
294 &dev_priv->ramht, NULL)))
295 return ret;
298 return 0;
301 void
302 nouveau_gpuobj_takedown(struct drm_device *dev)
304 struct drm_nouveau_private *dev_priv = dev->dev_private;
306 DRM_DEBUG("\n");
308 nouveau_gpuobj_del(dev, &dev_priv->ramht);
311 void
312 nouveau_gpuobj_late_takedown(struct drm_device *dev)
314 struct drm_nouveau_private *dev_priv = dev->dev_private;
315 struct nouveau_gpuobj *gpuobj = NULL;
316 struct list_head *entry, *tmp;
318 DRM_DEBUG("\n");
320 list_for_each_safe(entry, tmp, &dev_priv->gpuobj_list) {
321 gpuobj = list_entry(entry, struct nouveau_gpuobj, list);
323 DRM_ERROR("gpuobj %p still exists at takedown, refs=%d\n",
324 gpuobj, gpuobj->refcount);
325 gpuobj->refcount = 0;
326 nouveau_gpuobj_del(dev, &gpuobj);
331 nouveau_gpuobj_del(struct drm_device *dev, struct nouveau_gpuobj **pgpuobj)
333 struct drm_nouveau_private *dev_priv = dev->dev_private;
334 struct nouveau_engine *engine = &dev_priv->Engine;
335 struct nouveau_gpuobj *gpuobj;
337 DRM_DEBUG("gpuobj %p\n", pgpuobj ? *pgpuobj : NULL);
339 if (!dev_priv || !pgpuobj || !(*pgpuobj))
340 return -EINVAL;
341 gpuobj = *pgpuobj;
343 if (gpuobj->refcount != 0) {
344 DRM_ERROR("gpuobj refcount is %d\n", gpuobj->refcount);
345 return -EINVAL;
348 if (gpuobj->dtor)
349 gpuobj->dtor(dev, gpuobj);
351 if (gpuobj->im_backing) {
352 if (gpuobj->flags & NVOBJ_FLAG_FAKE)
353 drm_free(gpuobj->im_backing,
354 sizeof(*gpuobj->im_backing), DRM_MEM_DRIVER);
355 else
356 engine->instmem.clear(dev, gpuobj);
359 if (gpuobj->im_pramin) {
360 if (gpuobj->flags & NVOBJ_FLAG_FAKE)
361 drm_free(gpuobj->im_pramin, sizeof(*gpuobj->im_pramin),
362 DRM_MEM_DRIVER);
363 else
364 nouveau_mem_free_block(gpuobj->im_pramin);
367 list_del(&gpuobj->list);
369 *pgpuobj = NULL;
370 drm_free(gpuobj, sizeof(*gpuobj), DRM_MEM_DRIVER);
371 return 0;
374 static int
375 nouveau_gpuobj_instance_get(struct drm_device *dev,
376 struct nouveau_channel *chan,
377 struct nouveau_gpuobj *gpuobj, uint32_t *inst)
379 struct drm_nouveau_private *dev_priv = dev->dev_private;
380 struct nouveau_gpuobj *cpramin;
382 /* <NV50 use PRAMIN address everywhere */
383 if (dev_priv->card_type < NV_50) {
384 *inst = gpuobj->im_pramin->start;
385 return 0;
388 if (chan && gpuobj->im_channel != chan->id) {
389 DRM_ERROR("Channel mismatch: obj %d, ref %d\n",
390 gpuobj->im_channel, chan->id);
391 return -EINVAL;
394 /* NV50 channel-local instance */
395 if (chan > 0) {
396 cpramin = chan->ramin->gpuobj;
397 *inst = gpuobj->im_pramin->start - cpramin->im_pramin->start;
398 return 0;
401 /* NV50 global (VRAM) instance */
402 if (gpuobj->im_channel < 0) {
403 /* ...from global heap */
404 if (!gpuobj->im_backing) {
405 DRM_ERROR("AII, no VRAM backing gpuobj\n");
406 return -EINVAL;
408 *inst = gpuobj->im_backing->start;
409 return 0;
410 } else {
411 /* ...from local heap */
412 cpramin = dev_priv->fifos[gpuobj->im_channel]->ramin->gpuobj;
413 *inst = cpramin->im_backing->start +
414 (gpuobj->im_pramin->start - cpramin->im_pramin->start);
415 return 0;
418 return -EINVAL;
422 nouveau_gpuobj_ref_add(struct drm_device *dev, struct nouveau_channel *chan,
423 uint32_t handle, struct nouveau_gpuobj *gpuobj,
424 struct nouveau_gpuobj_ref **ref_ret)
426 struct drm_nouveau_private *dev_priv = dev->dev_private;
427 struct nouveau_gpuobj_ref *ref;
428 uint32_t instance;
429 int ret;
431 DRM_DEBUG("ch%d h=0x%08x gpuobj=%p\n",
432 chan ? chan->id : -1, handle, gpuobj);
434 if (!dev_priv || !gpuobj || (ref_ret && *ref_ret != NULL))
435 return -EINVAL;
437 if (!chan && !ref_ret)
438 return -EINVAL;
440 ret = nouveau_gpuobj_instance_get(dev, chan, gpuobj, &instance);
441 if (ret)
442 return ret;
444 ref = drm_calloc(1, sizeof(*ref), DRM_MEM_DRIVER);
445 if (!ref)
446 return -ENOMEM;
447 ref->gpuobj = gpuobj;
448 ref->channel = chan ? chan->id : -1;
449 ref->instance = instance;
451 if (!ref_ret) {
452 ref->handle = handle;
454 ret = nouveau_ramht_insert(dev, ref);
455 if (ret) {
456 drm_free(ref, sizeof(*ref), DRM_MEM_DRIVER);
457 return ret;
459 } else {
460 ref->handle = ~0;
461 *ref_ret = ref;
464 ref->gpuobj->refcount++;
465 return 0;
468 int nouveau_gpuobj_ref_del(struct drm_device *dev, struct nouveau_gpuobj_ref **pref)
470 struct nouveau_gpuobj_ref *ref;
472 DRM_DEBUG("ref %p\n", pref ? *pref : NULL);
474 if (!dev || !pref || *pref == NULL)
475 return -EINVAL;
476 ref = *pref;
478 if (ref->handle != ~0)
479 nouveau_ramht_remove(dev, ref);
481 if (ref->gpuobj) {
482 ref->gpuobj->refcount--;
484 if (ref->gpuobj->refcount == 0) {
485 if (!(ref->gpuobj->flags & NVOBJ_FLAG_ALLOW_NO_REFS))
486 nouveau_gpuobj_del(dev, &ref->gpuobj);
490 *pref = NULL;
491 drm_free(ref, sizeof(ref), DRM_MEM_DRIVER);
492 return 0;
496 nouveau_gpuobj_new_ref(struct drm_device *dev,
497 struct nouveau_channel *oc, struct nouveau_channel *rc,
498 uint32_t handle, int size, int align, uint32_t flags,
499 struct nouveau_gpuobj_ref **ref)
501 struct nouveau_gpuobj *gpuobj = NULL;
502 int ret;
504 if ((ret = nouveau_gpuobj_new(dev, oc, size, align, flags, &gpuobj)))
505 return ret;
507 if ((ret = nouveau_gpuobj_ref_add(dev, rc, handle, gpuobj, ref))) {
508 nouveau_gpuobj_del(dev, &gpuobj);
509 return ret;
512 return 0;
516 nouveau_gpuobj_ref_find(struct nouveau_channel *chan, uint32_t handle,
517 struct nouveau_gpuobj_ref **ref_ret)
519 struct nouveau_gpuobj_ref *ref;
520 struct list_head *entry, *tmp;
522 list_for_each_safe(entry, tmp, &chan->ramht_refs) {
523 ref = list_entry(entry, struct nouveau_gpuobj_ref, list);
525 if (ref->handle == handle) {
526 if (ref_ret)
527 *ref_ret = ref;
528 return 0;
532 return -EINVAL;
536 nouveau_gpuobj_new_fake(struct drm_device *dev, uint32_t p_offset,
537 uint32_t b_offset, uint32_t size,
538 uint32_t flags, struct nouveau_gpuobj **pgpuobj,
539 struct nouveau_gpuobj_ref **pref)
541 struct drm_nouveau_private *dev_priv = dev->dev_private;
542 struct nouveau_gpuobj *gpuobj = NULL;
543 int i;
545 DRM_DEBUG("p_offset=0x%08x b_offset=0x%08x size=0x%08x flags=0x%08x\n",
546 p_offset, b_offset, size, flags);
548 gpuobj = drm_calloc(1, sizeof(*gpuobj), DRM_MEM_DRIVER);
549 if (!gpuobj)
550 return -ENOMEM;
551 DRM_DEBUG("gpuobj %p\n", gpuobj);
552 gpuobj->im_channel = -1;
553 gpuobj->flags = flags | NVOBJ_FLAG_FAKE;
555 list_add_tail(&gpuobj->list, &dev_priv->gpuobj_list);
557 if (p_offset != ~0) {
558 gpuobj->im_pramin = drm_calloc(1, sizeof(struct mem_block),
559 DRM_MEM_DRIVER);
560 if (!gpuobj->im_pramin) {
561 nouveau_gpuobj_del(dev, &gpuobj);
562 return -ENOMEM;
564 gpuobj->im_pramin->start = p_offset;
565 gpuobj->im_pramin->size = size;
568 if (b_offset != ~0) {
569 gpuobj->im_backing = drm_calloc(1, sizeof(struct mem_block),
570 DRM_MEM_DRIVER);
571 if (!gpuobj->im_backing) {
572 nouveau_gpuobj_del(dev, &gpuobj);
573 return -ENOMEM;
575 gpuobj->im_backing->start = b_offset;
576 gpuobj->im_backing->size = size;
579 if (gpuobj->flags & NVOBJ_FLAG_ZERO_ALLOC) {
580 for (i = 0; i < gpuobj->im_pramin->size; i += 4)
581 INSTANCE_WR(gpuobj, i/4, 0);
584 if (pref) {
585 if ((i = nouveau_gpuobj_ref_add(dev, NULL, 0, gpuobj, pref))) {
586 nouveau_gpuobj_del(dev, &gpuobj);
587 return i;
591 if (pgpuobj)
592 *pgpuobj = gpuobj;
593 return 0;
597 static int
598 nouveau_gpuobj_class_instmem_size(struct drm_device *dev, int class)
600 struct drm_nouveau_private *dev_priv = dev->dev_private;
602 /*XXX: dodgy hack for now */
603 if (dev_priv->card_type >= NV_50)
604 return 24;
605 if (dev_priv->card_type >= NV_40)
606 return 32;
607 return 16;
611 DMA objects are used to reference a piece of memory in the
612 framebuffer, PCI or AGP address space. Each object is 16 bytes big
613 and looks as follows:
615 entry[0]
616 11:0 class (seems like I can always use 0 here)
617 12 page table present?
618 13 page entry linear?
619 15:14 access: 0 rw, 1 ro, 2 wo
620 17:16 target: 0 NV memory, 1 NV memory tiled, 2 PCI, 3 AGP
621 31:20 dma adjust (bits 0-11 of the address)
622 entry[1]
623 dma limit (size of transfer)
624 entry[X]
625 1 0 readonly, 1 readwrite
626 31:12 dma frame address of the page (bits 12-31 of the address)
627 entry[N]
628 page table terminator, same value as the first pte, as does nvidia
629 rivatv uses 0xffffffff
631 Non linear page tables need a list of frame addresses afterwards,
632 the rivatv project has some info on this.
634 The method below creates a DMA object in instance RAM and returns a handle
635 to it that can be used to set up context objects.
638 nouveau_gpuobj_dma_new(struct nouveau_channel *chan, int class,
639 uint64_t offset, uint64_t size, int access,
640 int target, struct nouveau_gpuobj **gpuobj)
642 struct drm_device *dev = chan->dev;
643 struct drm_nouveau_private *dev_priv = dev->dev_private;
644 int ret;
645 uint32_t is_scatter_gather = 0;
647 /* Total number of pages covered by the request.
649 const unsigned int page_count = (size + PAGE_SIZE - 1) / PAGE_SIZE;
652 DRM_DEBUG("ch%d class=0x%04x offset=0x%llx size=0x%llx\n",
653 chan->id, class, offset, size);
654 DRM_DEBUG("access=%d target=%d\n", access, target);
656 switch (target) {
657 case NV_DMA_TARGET_AGP:
658 offset += dev_priv->gart_info.aper_base;
659 break;
660 case NV_DMA_TARGET_PCI_NONLINEAR:
661 /*assume the "offset" is a virtual memory address*/
662 is_scatter_gather = 1;
663 /*put back the right value*/
664 target = NV_DMA_TARGET_PCI;
665 break;
666 default:
667 break;
670 ret = nouveau_gpuobj_new(dev, chan,
671 is_scatter_gather ? ((page_count << 2) + 12) : nouveau_gpuobj_class_instmem_size(dev, class),
673 NVOBJ_FLAG_ZERO_ALLOC | NVOBJ_FLAG_ZERO_FREE,
674 gpuobj);
675 if (ret) {
676 DRM_ERROR("Error creating gpuobj: %d\n", ret);
677 return ret;
680 if (dev_priv->card_type < NV_50) {
681 uint32_t frame, adjust, pte_flags = 0;
682 adjust = offset & 0x00000fff;
683 if (access != NV_DMA_ACCESS_RO)
684 pte_flags |= (1<<1);
686 if ( ! is_scatter_gather )
688 frame = offset & ~0x00000fff;
690 INSTANCE_WR(*gpuobj, 0, ((1<<12) | (1<<13) |
691 (adjust << 20) |
692 (access << 14) |
693 (target << 16) |
694 class));
695 INSTANCE_WR(*gpuobj, 1, size - 1);
696 INSTANCE_WR(*gpuobj, 2, frame | pte_flags);
697 INSTANCE_WR(*gpuobj, 3, frame | pte_flags);
699 else
701 /* Intial page entry in the scatter-gather area that
702 * corresponds to the base offset
704 unsigned int idx = offset / PAGE_SIZE;
706 uint32_t instance_offset;
707 unsigned int i;
709 if ((idx + page_count) > dev->sg->pages) {
710 DRM_ERROR("Requested page range exceedes "
711 "allocated scatter-gather range!");
712 return -E2BIG;
715 DRM_DEBUG("Creating PCI DMA object using virtual zone starting at %#llx, size %d\n", offset, (uint32_t)size);
716 INSTANCE_WR(*gpuobj, 0, ((1<<12) | (0<<13) |
717 (adjust << 20) |
718 (access << 14) |
719 (target << 16) |
720 class));
721 INSTANCE_WR(*gpuobj, 1, (uint32_t) size-1);
724 /*write starting at the third dword*/
725 instance_offset = 2;
727 /*for each PAGE, get its bus address, fill in the page table entry, and advance*/
728 for (i = 0; i < page_count; i++) {
729 if (dev->sg->busaddr[idx] == 0) {
730 dev->sg->busaddr[idx] =
731 pci_map_page(dev->pdev,
732 dev->sg->pagelist[idx],
734 PAGE_SIZE,
735 DMA_BIDIRECTIONAL);
737 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27))
738 /* Not a 100% sure this is the right kdev in all cases. */
739 if (dma_mapping_error(&dev->primary->kdev, dev->sg->busaddr[idx])) {
740 #else
741 if (dma_mapping_error(dev->sg->busaddr[idx])) {
742 #endif
743 return -ENOMEM;
747 frame = (uint32_t) dev->sg->busaddr[idx];
748 INSTANCE_WR(*gpuobj, instance_offset,
749 frame | pte_flags);
751 idx++;
752 instance_offset ++;
755 } else {
756 uint32_t flags0, flags5;
758 if (target == NV_DMA_TARGET_VIDMEM) {
759 flags0 = 0x00190000;
760 flags5 = 0x00010000;
761 } else {
762 flags0 = 0x7fc00000;
763 flags5 = 0x00080000;
766 INSTANCE_WR(*gpuobj, 0, flags0 | class);
767 INSTANCE_WR(*gpuobj, 1, offset + size - 1);
768 INSTANCE_WR(*gpuobj, 2, offset);
769 INSTANCE_WR(*gpuobj, 5, flags5);
772 (*gpuobj)->engine = NVOBJ_ENGINE_SW;
773 (*gpuobj)->class = class;
774 return 0;
778 nouveau_gpuobj_gart_dma_new(struct nouveau_channel *chan,
779 uint64_t offset, uint64_t size, int access,
780 struct nouveau_gpuobj **gpuobj,
781 uint32_t *o_ret)
783 struct drm_device *dev = chan->dev;
784 struct drm_nouveau_private *dev_priv = dev->dev_private;
785 int ret;
787 if (dev_priv->gart_info.type == NOUVEAU_GART_AGP ||
788 (dev_priv->card_type >= NV_50 &&
789 dev_priv->gart_info.type == NOUVEAU_GART_SGDMA)) {
790 ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY,
791 offset, size, access,
792 NV_DMA_TARGET_AGP, gpuobj);
793 if (o_ret)
794 *o_ret = 0;
795 } else
796 if (dev_priv->gart_info.type == NOUVEAU_GART_SGDMA) {
797 *gpuobj = dev_priv->gart_info.sg_ctxdma;
798 if (offset & ~0xffffffffULL) {
799 DRM_ERROR("obj offset exceeds 32-bits\n");
800 return -EINVAL;
802 if (o_ret)
803 *o_ret = (uint32_t)offset;
804 ret = (*gpuobj != NULL) ? 0 : -EINVAL;
805 } else {
806 DRM_ERROR("Invalid GART type %d\n", dev_priv->gart_info.type);
807 return -EINVAL;
810 return ret;
813 /* Context objects in the instance RAM have the following structure.
814 * On NV40 they are 32 byte long, on NV30 and smaller 16 bytes.
816 NV4 - NV30:
818 entry[0]
819 11:0 class
820 12 chroma key enable
821 13 user clip enable
822 14 swizzle enable
823 17:15 patch config:
824 scrcopy_and, rop_and, blend_and, scrcopy, srccopy_pre, blend_pre
825 18 synchronize enable
826 19 endian: 1 big, 0 little
827 21:20 dither mode
828 23 single step enable
829 24 patch status: 0 invalid, 1 valid
830 25 context_surface 0: 1 valid
831 26 context surface 1: 1 valid
832 27 context pattern: 1 valid
833 28 context rop: 1 valid
834 29,30 context beta, beta4
835 entry[1]
836 7:0 mono format
837 15:8 color format
838 31:16 notify instance address
839 entry[2]
840 15:0 dma 0 instance address
841 31:16 dma 1 instance address
842 entry[3]
843 dma method traps
845 NV40:
846 No idea what the exact format is. Here's what can be deducted:
848 entry[0]:
849 11:0 class (maybe uses more bits here?)
850 17 user clip enable
851 21:19 patch config
852 25 patch status valid ?
853 entry[1]:
854 15:0 DMA notifier (maybe 20:0)
855 entry[2]:
856 15:0 DMA 0 instance (maybe 20:0)
857 24 big endian
858 entry[3]:
859 15:0 DMA 1 instance (maybe 20:0)
860 entry[4]:
861 entry[5]:
862 set to 0?
865 nouveau_gpuobj_gr_new(struct nouveau_channel *chan, int class,
866 struct nouveau_gpuobj **gpuobj)
868 struct drm_device *dev = chan->dev;
869 struct drm_nouveau_private *dev_priv = dev->dev_private;
870 int ret;
872 DRM_DEBUG("ch%d class=0x%04x\n", chan->id, class);
874 ret = nouveau_gpuobj_new(dev, chan,
875 nouveau_gpuobj_class_instmem_size(dev, class),
877 NVOBJ_FLAG_ZERO_ALLOC | NVOBJ_FLAG_ZERO_FREE,
878 gpuobj);
879 if (ret) {
880 DRM_ERROR("Error creating gpuobj: %d\n", ret);
881 return ret;
884 if (dev_priv->card_type >= NV_50) {
885 INSTANCE_WR(*gpuobj, 0, class);
886 INSTANCE_WR(*gpuobj, 5, 0x00010000);
887 } else {
888 switch (class) {
889 case NV_CLASS_NULL:
890 INSTANCE_WR(*gpuobj, 0, 0x00001030);
891 INSTANCE_WR(*gpuobj, 1, 0xFFFFFFFF);
892 break;
893 default:
894 if (dev_priv->card_type >= NV_40) {
895 INSTANCE_WR(*gpuobj, 0, class);
896 #ifdef __BIG_ENDIAN
897 INSTANCE_WR(*gpuobj, 2, 0x01000000);
898 #endif
899 } else {
900 #ifdef __BIG_ENDIAN
901 INSTANCE_WR(*gpuobj, 0, class | 0x00080000);
902 #else
903 INSTANCE_WR(*gpuobj, 0, class);
904 #endif
909 (*gpuobj)->engine = NVOBJ_ENGINE_GR;
910 (*gpuobj)->class = class;
911 return 0;
914 static int
915 nouveau_gpuobj_channel_init_pramin(struct nouveau_channel *chan)
917 struct drm_device *dev = chan->dev;
918 struct drm_nouveau_private *dev_priv = dev->dev_private;
919 struct nouveau_gpuobj *pramin = NULL;
920 int size, base, ret;
922 DRM_DEBUG("ch%d\n", chan->id);
924 /* Base amount for object storage (4KiB enough?) */
925 size = 0x1000;
926 base = 0;
928 /* PGRAPH context */
930 if (dev_priv->card_type == NV_50) {
931 /* Various fixed table thingos */
932 size += 0x1400; /* mostly unknown stuff */
933 size += 0x4000; /* vm pd */
934 base = 0x6000;
935 /* RAMHT, not sure about setting size yet, 32KiB to be safe */
936 size += 0x8000;
937 /* RAMFC */
938 size += 0x1000;
939 /* PGRAPH context */
940 size += 0x70000;
943 DRM_DEBUG("ch%d PRAMIN size: 0x%08x bytes, base alloc=0x%08x\n",
944 chan->id, size, base);
945 ret = nouveau_gpuobj_new_ref(dev, NULL, NULL, 0, size, 0x1000, 0,
946 &chan->ramin);
947 if (ret) {
948 DRM_ERROR("Error allocating channel PRAMIN: %d\n", ret);
949 return ret;
951 pramin = chan->ramin->gpuobj;
953 ret = nouveau_mem_init_heap(&chan->ramin_heap,
954 pramin->im_pramin->start + base, size);
955 if (ret) {
956 DRM_ERROR("Error creating PRAMIN heap: %d\n", ret);
957 nouveau_gpuobj_ref_del(dev, &chan->ramin);
958 return ret;
961 return 0;
965 nouveau_gpuobj_channel_init(struct nouveau_channel *chan,
966 uint32_t vram_h, uint32_t tt_h)
968 struct drm_device *dev = chan->dev;
969 struct drm_nouveau_private *dev_priv = dev->dev_private;
970 struct nouveau_gpuobj *vram = NULL, *tt = NULL;
971 int ret, i;
973 INIT_LIST_HEAD(&chan->ramht_refs);
975 DRM_DEBUG("ch%d vram=0x%08x tt=0x%08x\n", chan->id, vram_h, tt_h);
977 /* Reserve a block of PRAMIN for the channel
978 *XXX: maybe on <NV50 too at some point
980 if (0 || dev_priv->card_type == NV_50) {
981 ret = nouveau_gpuobj_channel_init_pramin(chan);
982 if (ret)
983 return ret;
986 /* NV50 VM
987 * - Allocate per-channel page-directory
988 * - Point offset 0-512MiB at shared PCIEGART table
989 * - Point offset 512-1024MiB at shared VRAM table
991 if (dev_priv->card_type >= NV_50) {
992 uint32_t vm_offset;
994 vm_offset = (dev_priv->chipset & 0xf0) == 0x50 ? 0x1400 : 0x200;
995 vm_offset += chan->ramin->gpuobj->im_pramin->start;
996 if ((ret = nouveau_gpuobj_new_fake(dev, vm_offset, ~0, 0x4000,
997 0, &chan->vm_pd, NULL)))
998 return ret;
999 for (i=0; i<0x4000; i+=8) {
1000 INSTANCE_WR(chan->vm_pd, (i+0)/4, 0x00000000);
1001 INSTANCE_WR(chan->vm_pd, (i+4)/4, 0xdeadcafe);
1004 if ((ret = nouveau_gpuobj_ref_add(dev, NULL, 0,
1005 dev_priv->gart_info.sg_ctxdma,
1006 &chan->vm_gart_pt)))
1007 return ret;
1008 INSTANCE_WR(chan->vm_pd, (0+0)/4,
1009 chan->vm_gart_pt->instance | 0x03);
1010 INSTANCE_WR(chan->vm_pd, (0+4)/4, 0x00000000);
1012 if ((ret = nouveau_gpuobj_ref_add(dev, NULL, 0,
1013 dev_priv->vm_vram_pt,
1014 &chan->vm_vram_pt)))
1015 return ret;
1016 INSTANCE_WR(chan->vm_pd, (8+0)/4,
1017 chan->vm_vram_pt->instance | 0x61);
1018 INSTANCE_WR(chan->vm_pd, (8+4)/4, 0x00000000);
1021 /* RAMHT */
1022 if (dev_priv->card_type < NV_50) {
1023 ret = nouveau_gpuobj_ref_add(dev, NULL, 0, dev_priv->ramht,
1024 &chan->ramht);
1025 if (ret)
1026 return ret;
1027 } else {
1028 ret = nouveau_gpuobj_new_ref(dev, chan, chan, 0,
1029 0x8000, 16,
1030 NVOBJ_FLAG_ZERO_ALLOC,
1031 &chan->ramht);
1032 if (ret)
1033 return ret;
1036 /* VRAM ctxdma */
1037 if (dev_priv->card_type >= NV_50) {
1038 ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY,
1039 0, 0x100000000ULL,
1040 NV_DMA_ACCESS_RW,
1041 NV_DMA_TARGET_AGP, &vram);
1042 if (ret) {
1043 DRM_ERROR("Error creating VRAM ctxdma: %d\n", ret);
1044 return ret;
1046 } else
1047 if ((ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY,
1048 0, dev_priv->fb_available_size,
1049 NV_DMA_ACCESS_RW,
1050 NV_DMA_TARGET_VIDMEM, &vram))) {
1051 DRM_ERROR("Error creating VRAM ctxdma: %d\n", ret);
1052 return ret;
1055 if ((ret = nouveau_gpuobj_ref_add(dev, chan, vram_h, vram, NULL))) {
1056 DRM_ERROR("Error referencing VRAM ctxdma: %d\n", ret);
1057 return ret;
1060 /* TT memory ctxdma */
1061 if (dev_priv->card_type >= NV_50) {
1062 tt = vram;
1063 } else
1064 if (dev_priv->gart_info.type != NOUVEAU_GART_NONE) {
1065 ret = nouveau_gpuobj_gart_dma_new(chan, 0,
1066 dev_priv->gart_info.aper_size,
1067 NV_DMA_ACCESS_RW, &tt, NULL);
1068 } else
1069 if (dev_priv->pci_heap) {
1070 ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY,
1071 0, dev->sg->pages * PAGE_SIZE,
1072 NV_DMA_ACCESS_RW,
1073 NV_DMA_TARGET_PCI_NONLINEAR, &tt);
1074 } else {
1075 DRM_ERROR("Invalid GART type %d\n", dev_priv->gart_info.type);
1076 ret = -EINVAL;
1079 if (ret) {
1080 DRM_ERROR("Error creating TT ctxdma: %d\n", ret);
1081 return ret;
1084 ret = nouveau_gpuobj_ref_add(dev, chan, tt_h, tt, NULL);
1085 if (ret) {
1086 DRM_ERROR("Error referencing TT ctxdma: %d\n", ret);
1087 return ret;
1090 return 0;
1093 void
1094 nouveau_gpuobj_channel_takedown(struct nouveau_channel *chan)
1096 struct drm_device *dev = chan->dev;
1097 struct list_head *entry, *tmp;
1098 struct nouveau_gpuobj_ref *ref;
1100 DRM_DEBUG("ch%d\n", chan->id);
1102 list_for_each_safe(entry, tmp, &chan->ramht_refs) {
1103 ref = list_entry(entry, struct nouveau_gpuobj_ref, list);
1105 nouveau_gpuobj_ref_del(dev, &ref);
1108 nouveau_gpuobj_ref_del(dev, &chan->ramht);
1110 nouveau_gpuobj_del(dev, &chan->vm_pd);
1111 nouveau_gpuobj_ref_del(dev, &chan->vm_gart_pt);
1112 nouveau_gpuobj_ref_del(dev, &chan->vm_vram_pt);
1114 if (chan->ramin_heap)
1115 nouveau_mem_takedown(&chan->ramin_heap);
1116 if (chan->ramin)
1117 nouveau_gpuobj_ref_del(dev, &chan->ramin);
1121 int nouveau_ioctl_grobj_alloc(struct drm_device *dev, void *data,
1122 struct drm_file *file_priv)
1124 struct nouveau_channel *chan;
1125 struct drm_nouveau_grobj_alloc *init = data;
1126 struct nouveau_gpuobj *gr = NULL;
1127 int ret;
1129 NOUVEAU_CHECK_INITIALISED_WITH_RETURN;
1130 NOUVEAU_GET_USER_CHANNEL_WITH_RETURN(init->channel, file_priv, chan);
1132 //FIXME: check args, only allow trusted objects to be created
1134 if (init->handle == ~0)
1135 return -EINVAL;
1137 if (nouveau_gpuobj_ref_find(chan, init->handle, NULL) == 0)
1138 return -EEXIST;
1140 ret = nouveau_gpuobj_gr_new(chan, init->class, &gr);
1141 if (ret) {
1142 DRM_ERROR("Error creating gr object: %d (%d/0x%08x)\n",
1143 ret, init->channel, init->handle);
1144 return ret;
1147 if ((ret = nouveau_gpuobj_ref_add(dev, chan, init->handle, gr, NULL))) {
1148 DRM_ERROR("Error referencing gr object: %d (%d/0x%08x\n)",
1149 ret, init->channel, init->handle);
1150 nouveau_gpuobj_del(dev, &gr);
1151 return ret;
1154 return 0;
1157 int nouveau_ioctl_gpuobj_free(struct drm_device *dev, void *data,
1158 struct drm_file *file_priv)
1160 struct drm_nouveau_gpuobj_free *objfree = data;
1161 struct nouveau_gpuobj_ref *ref;
1162 struct nouveau_channel *chan;
1163 int ret;
1165 NOUVEAU_CHECK_INITIALISED_WITH_RETURN;
1166 NOUVEAU_GET_USER_CHANNEL_WITH_RETURN(objfree->channel, file_priv, chan);
1168 if ((ret = nouveau_gpuobj_ref_find(chan, objfree->handle, &ref)))
1169 return ret;
1170 nouveau_gpuobj_ref_del(dev, &ref);
1172 return 0;