]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/gpu/drm/nouveau/nouveau_notifier.c
Merge branch 'v4l_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab...
[net-next-2.6.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"
31
32int
33nouveau_notifier_init_channel(struct nouveau_channel *chan)
34{
35 struct drm_device *dev = chan->dev;
36 struct nouveau_bo *ntfy = NULL;
f927b890 37 uint32_t flags;
6ee73861
BS
38 int ret;
39
f927b890
BS
40 if (nouveau_vram_notify)
41 flags = TTM_PL_FLAG_VRAM;
42 else
43 flags = TTM_PL_FLAG_TT;
44
45 ret = nouveau_gem_new(dev, NULL, PAGE_SIZE, 0, flags,
6ee73861
BS
46 0, 0x0000, false, true, &ntfy);
47 if (ret)
48 return ret;
49
f927b890 50 ret = nouveau_bo_pin(ntfy, flags);
6ee73861
BS
51 if (ret)
52 goto out_err;
53
54 ret = nouveau_bo_map(ntfy);
55 if (ret)
56 goto out_err;
57
b833ac26 58 ret = drm_mm_init(&chan->notifier_heap, 0, ntfy->bo.mem.size);
6ee73861
BS
59 if (ret)
60 goto out_err;
61
62 chan->notifier_bo = ntfy;
63out_err:
bc9025bd
LB
64 if (ret)
65 drm_gem_object_unreference_unlocked(ntfy->gem);
6ee73861
BS
66
67 return ret;
68}
69
70void
71nouveau_notifier_takedown_channel(struct nouveau_channel *chan)
72{
73 struct drm_device *dev = chan->dev;
74
75 if (!chan->notifier_bo)
76 return;
77
78 nouveau_bo_unmap(chan->notifier_bo);
79 mutex_lock(&dev->struct_mutex);
80 nouveau_bo_unpin(chan->notifier_bo);
6ee73861 81 mutex_unlock(&dev->struct_mutex);
29d08b3e 82 drm_gem_object_handle_unreference_unlocked(chan->notifier_bo->gem);
bc9025bd 83 drm_gem_object_unreference_unlocked(chan->notifier_bo->gem);
b833ac26 84 drm_mm_takedown(&chan->notifier_heap);
6ee73861
BS
85}
86
87static void
88nouveau_notifier_gpuobj_dtor(struct drm_device *dev,
89 struct nouveau_gpuobj *gpuobj)
90{
91 NV_DEBUG(dev, "\n");
92
93 if (gpuobj->priv)
b833ac26 94 drm_mm_put_block(gpuobj->priv);
6ee73861
BS
95}
96
97int
98nouveau_notifier_alloc(struct nouveau_channel *chan, uint32_t handle,
99 int size, uint32_t *b_offset)
100{
101 struct drm_device *dev = chan->dev;
102 struct drm_nouveau_private *dev_priv = dev->dev_private;
103 struct nouveau_gpuobj *nobj = NULL;
b833ac26 104 struct drm_mm_node *mem;
6ee73861
BS
105 uint32_t offset;
106 int target, ret;
107
b833ac26
BS
108 mem = drm_mm_search_free(&chan->notifier_heap, size, 0, 0);
109 if (mem)
110 mem = drm_mm_get_block(mem, size, 0);
6ee73861
BS
111 if (!mem) {
112 NV_ERROR(dev, "Channel %d notifier block full\n", chan->id);
113 return -ENOMEM;
114 }
115
116 offset = chan->notifier_bo->bo.mem.mm_node->start << PAGE_SHIFT;
117 if (chan->notifier_bo->bo.mem.mem_type == TTM_PL_VRAM) {
118 target = NV_DMA_TARGET_VIDMEM;
119 } else
120 if (chan->notifier_bo->bo.mem.mem_type == TTM_PL_TT) {
121 if (dev_priv->gart_info.type == NOUVEAU_GART_SGDMA &&
122 dev_priv->card_type < NV_50) {
123 ret = nouveau_sgdma_get_page(dev, offset, &offset);
124 if (ret)
125 return ret;
126 target = NV_DMA_TARGET_PCI;
127 } else {
128 target = NV_DMA_TARGET_AGP;
f927b890
BS
129 if (dev_priv->card_type >= NV_50)
130 offset += dev_priv->vm_gart_base;
6ee73861
BS
131 }
132 } else {
133 NV_ERROR(dev, "Bad DMA target, mem_type %d!\n",
134 chan->notifier_bo->bo.mem.mem_type);
135 return -EINVAL;
136 }
137 offset += mem->start;
138
139 ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY, offset,
140 mem->size, NV_DMA_ACCESS_RW, target,
141 &nobj);
142 if (ret) {
b833ac26 143 drm_mm_put_block(mem);
6ee73861
BS
144 NV_ERROR(dev, "Error creating notifier ctxdma: %d\n", ret);
145 return ret;
146 }
b833ac26
BS
147 nobj->dtor = nouveau_notifier_gpuobj_dtor;
148 nobj->priv = mem;
6ee73861
BS
149
150 ret = nouveau_gpuobj_ref_add(dev, chan, handle, nobj, NULL);
151 if (ret) {
152 nouveau_gpuobj_del(dev, &nobj);
b833ac26 153 drm_mm_put_block(mem);
6ee73861
BS
154 NV_ERROR(dev, "Error referencing notifier ctxdma: %d\n", ret);
155 return ret;
156 }
157
158 *b_offset = mem->start;
159 return 0;
160}
161
162int
163nouveau_notifier_offset(struct nouveau_gpuobj *nobj, uint32_t *poffset)
164{
165 if (!nobj || nobj->dtor != nouveau_notifier_gpuobj_dtor)
166 return -EINVAL;
167
168 if (poffset) {
b833ac26 169 struct drm_mm_node *mem = nobj->priv;
6ee73861
BS
170
171 if (*poffset >= mem->size)
172 return false;
173
174 *poffset += mem->start;
175 }
176
177 return 0;
178}
179
180int
181nouveau_ioctl_notifier_alloc(struct drm_device *dev, void *data,
182 struct drm_file *file_priv)
183{
184 struct drm_nouveau_notifierobj_alloc *na = data;
185 struct nouveau_channel *chan;
186 int ret;
187
6ee73861
BS
188 NOUVEAU_GET_USER_CHANNEL_WITH_RETURN(na->channel, file_priv, chan);
189
190 ret = nouveau_notifier_alloc(chan, na->handle, na->size, &na->offset);
191 if (ret)
192 return ret;
193
194 return 0;
195}