drm/nvc0-/gr: generate grctx template at init time, not first context ctor
[deliverable/linux.git] / drivers / gpu / drm / nouveau / nouveau_notifier.c
CommitLineData
6ee73861
BS
1/*
2 * Copyright (C) 2007 Ben Skeggs.
3 *
4 * All Rights Reserved.
5 *
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:
13 *
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.
17 *
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.
25 *
26 */
27
28#include "drmP.h"
29#include "drm.h"
30#include "nouveau_drv.h"
02a841d4 31#include <core/ramht.h>
6ee73861
BS
32
33int
34nouveau_notifier_init_channel(struct nouveau_channel *chan)
35{
36 struct drm_device *dev = chan->dev;
0b718733 37 struct drm_nouveau_private *dev_priv = dev->dev_private;
6ee73861 38 struct nouveau_bo *ntfy = NULL;
11dea1a2 39 uint32_t flags, ttmpl;
6ee73861
BS
40 int ret;
41
11dea1a2 42 if (nouveau_vram_notify) {
6ba9a683 43 flags = NOUVEAU_GEM_DOMAIN_VRAM;
11dea1a2
BS
44 ttmpl = TTM_PL_FLAG_VRAM;
45 } else {
6ba9a683 46 flags = NOUVEAU_GEM_DOMAIN_GART;
11dea1a2
BS
47 ttmpl = TTM_PL_FLAG_TT;
48 }
f927b890 49
f6d4e621 50 ret = nouveau_gem_new(dev, PAGE_SIZE, 0, flags, 0, 0, &ntfy);
6ee73861
BS
51 if (ret)
52 return ret;
53
11dea1a2 54 ret = nouveau_bo_pin(ntfy, ttmpl);
6ee73861
BS
55 if (ret)
56 goto out_err;
57
58 ret = nouveau_bo_map(ntfy);
59 if (ret)
60 goto out_err;
61
0b718733
BS
62 if (dev_priv->card_type >= NV_50) {
63 ret = nouveau_bo_vma_add(ntfy, chan->vm, &chan->notifier_vma);
64 if (ret)
65 goto out_err;
66 }
67
b833ac26 68 ret = drm_mm_init(&chan->notifier_heap, 0, ntfy->bo.mem.size);
6ee73861
BS
69 if (ret)
70 goto out_err;
71
72 chan->notifier_bo = ntfy;
73out_err:
0b718733
BS
74 if (ret) {
75 nouveau_bo_vma_del(ntfy, &chan->notifier_vma);
bc9025bd 76 drm_gem_object_unreference_unlocked(ntfy->gem);
0b718733 77 }
6ee73861
BS
78
79 return ret;
80}
81
82void
83nouveau_notifier_takedown_channel(struct nouveau_channel *chan)
84{
85 struct drm_device *dev = chan->dev;
86
87 if (!chan->notifier_bo)
88 return;
89
0b718733 90 nouveau_bo_vma_del(chan->notifier_bo, &chan->notifier_vma);
6ee73861
BS
91 nouveau_bo_unmap(chan->notifier_bo);
92 mutex_lock(&dev->struct_mutex);
93 nouveau_bo_unpin(chan->notifier_bo);
6ee73861 94 mutex_unlock(&dev->struct_mutex);
bc9025bd 95 drm_gem_object_unreference_unlocked(chan->notifier_bo->gem);
b833ac26 96 drm_mm_takedown(&chan->notifier_heap);
6ee73861
BS
97}
98
6ee73861
BS
99int
100nouveau_notifier_alloc(struct nouveau_channel *chan, uint32_t handle,
73412c38
BS
101 int size, uint32_t start, uint32_t end,
102 uint32_t *b_offset)
6ee73861
BS
103{
104 struct drm_device *dev = chan->dev;
26c0c9e3 105 struct drm_nouveau_private *dev_priv = dev->dev_private;
6ee73861 106 struct nouveau_gpuobj *nobj = NULL;
b833ac26 107 struct drm_mm_node *mem;
b2e0d195 108 uint64_t offset;
6ee73861
BS
109 int target, ret;
110
73412c38
BS
111 mem = drm_mm_search_free_in_range(&chan->notifier_heap, size, 0,
112 start, end, 0);
b833ac26 113 if (mem)
73412c38 114 mem = drm_mm_get_block_range(mem, size, 0, start, end);
6ee73861
BS
115 if (!mem) {
116 NV_ERROR(dev, "Channel %d notifier block full\n", chan->id);
117 return -ENOMEM;
118 }
119
26c0c9e3
BS
120 if (dev_priv->card_type < NV_50) {
121 if (chan->notifier_bo->bo.mem.mem_type == TTM_PL_VRAM)
122 target = NV_MEM_TARGET_VRAM;
123 else
124 target = NV_MEM_TARGET_GART;
180cc306 125 offset = chan->notifier_bo->bo.offset;
26c0c9e3
BS
126 } else {
127 target = NV_MEM_TARGET_VM;
0b718733 128 offset = chan->notifier_vma.offset;
26c0c9e3 129 }
6ee73861
BS
130 offset += mem->start;
131
132 ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY, offset,
7f4a195f 133 mem->size, NV_MEM_ACCESS_RW, target,
6ee73861
BS
134 &nobj);
135 if (ret) {
b833ac26 136 drm_mm_put_block(mem);
6ee73861
BS
137 NV_ERROR(dev, "Error creating notifier ctxdma: %d\n", ret);
138 return ret;
139 }
6ee73861 140
a8eaebc6
BS
141 ret = nouveau_ramht_insert(chan, handle, nobj);
142 nouveau_gpuobj_ref(NULL, &nobj);
6ee73861 143 if (ret) {
b833ac26 144 drm_mm_put_block(mem);
a8eaebc6 145 NV_ERROR(dev, "Error adding notifier to ramht: %d\n", ret);
6ee73861
BS
146 return ret;
147 }
148
149 *b_offset = mem->start;
150 return 0;
151}
This page took 0.410577 seconds and 5 git commands to generate.