blob: 92c029920efe122b6781be542c1abfd7c5ae3c74 [file] [log] [blame]
Ben Skeggs6ee73862009-12-11 19:24:15 +10001/*
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"
Ben Skeggsa8eaebc2010-09-01 15:24:31 +100031#include "nouveau_ramht.h"
Ben Skeggs6ee73862009-12-11 19:24:15 +100032
33int
34nouveau_notifier_init_channel(struct nouveau_channel *chan)
35{
36 struct drm_device *dev = chan->dev;
37 struct nouveau_bo *ntfy = NULL;
Ben Skeggsf927b892010-01-27 14:29:05 +100038 uint32_t flags;
Ben Skeggs6ee73862009-12-11 19:24:15 +100039 int ret;
40
Ben Skeggsf927b892010-01-27 14:29:05 +100041 if (nouveau_vram_notify)
42 flags = TTM_PL_FLAG_VRAM;
43 else
44 flags = TTM_PL_FLAG_TT;
45
Ben Skeggsd550c412011-02-16 08:41:56 +100046 ret = nouveau_gem_new(dev, NULL, PAGE_SIZE, 0, flags, 0, 0, &ntfy);
Ben Skeggs6ee73862009-12-11 19:24:15 +100047 if (ret)
48 return ret;
49
Ben Skeggsf927b892010-01-27 14:29:05 +100050 ret = nouveau_bo_pin(ntfy, flags);
Ben Skeggs6ee73862009-12-11 19:24:15 +100051 if (ret)
52 goto out_err;
53
54 ret = nouveau_bo_map(ntfy);
55 if (ret)
56 goto out_err;
57
Ben Skeggsb833ac22010-06-01 15:32:24 +100058 ret = drm_mm_init(&chan->notifier_heap, 0, ntfy->bo.mem.size);
Ben Skeggs6ee73862009-12-11 19:24:15 +100059 if (ret)
60 goto out_err;
61
62 chan->notifier_bo = ntfy;
63out_err:
Luca Barbieribc9025b2010-02-09 05:49:12 +000064 if (ret)
65 drm_gem_object_unreference_unlocked(ntfy->gem);
Ben Skeggs6ee73862009-12-11 19:24:15 +100066
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);
Ben Skeggs6ee73862009-12-11 19:24:15 +100081 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +000082 drm_gem_object_unreference_unlocked(chan->notifier_bo->gem);
Ben Skeggsb833ac22010-06-01 15:32:24 +100083 drm_mm_takedown(&chan->notifier_heap);
Ben Skeggs6ee73862009-12-11 19:24:15 +100084}
85
86static void
87nouveau_notifier_gpuobj_dtor(struct drm_device *dev,
88 struct nouveau_gpuobj *gpuobj)
89{
90 NV_DEBUG(dev, "\n");
91
92 if (gpuobj->priv)
Ben Skeggsb833ac22010-06-01 15:32:24 +100093 drm_mm_put_block(gpuobj->priv);
Ben Skeggs6ee73862009-12-11 19:24:15 +100094}
95
96int
97nouveau_notifier_alloc(struct nouveau_channel *chan, uint32_t handle,
98 int size, uint32_t *b_offset)
99{
100 struct drm_device *dev = chan->dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000101 struct nouveau_gpuobj *nobj = NULL;
Ben Skeggsb833ac22010-06-01 15:32:24 +1000102 struct drm_mm_node *mem;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000103 uint32_t offset;
104 int target, ret;
105
Ben Skeggsb833ac22010-06-01 15:32:24 +1000106 mem = drm_mm_search_free(&chan->notifier_heap, size, 0, 0);
107 if (mem)
108 mem = drm_mm_get_block(mem, size, 0);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000109 if (!mem) {
110 NV_ERROR(dev, "Channel %d notifier block full\n", chan->id);
111 return -ENOMEM;
112 }
113
Ben Skeggs7f4a1952010-11-16 11:50:09 +1000114 if (chan->notifier_bo->bo.mem.mem_type == TTM_PL_VRAM)
115 target = NV_MEM_TARGET_VRAM;
116 else
117 target = NV_MEM_TARGET_GART;
118 offset = chan->notifier_bo->bo.mem.start << PAGE_SHIFT;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000119 offset += mem->start;
120
121 ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY, offset,
Ben Skeggs7f4a1952010-11-16 11:50:09 +1000122 mem->size, NV_MEM_ACCESS_RW, target,
Ben Skeggs6ee73862009-12-11 19:24:15 +1000123 &nobj);
124 if (ret) {
Ben Skeggsb833ac22010-06-01 15:32:24 +1000125 drm_mm_put_block(mem);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000126 NV_ERROR(dev, "Error creating notifier ctxdma: %d\n", ret);
127 return ret;
128 }
Ben Skeggsb833ac22010-06-01 15:32:24 +1000129 nobj->dtor = nouveau_notifier_gpuobj_dtor;
130 nobj->priv = mem;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000131
Ben Skeggsa8eaebc2010-09-01 15:24:31 +1000132 ret = nouveau_ramht_insert(chan, handle, nobj);
133 nouveau_gpuobj_ref(NULL, &nobj);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000134 if (ret) {
Ben Skeggsb833ac22010-06-01 15:32:24 +1000135 drm_mm_put_block(mem);
Ben Skeggsa8eaebc2010-09-01 15:24:31 +1000136 NV_ERROR(dev, "Error adding notifier to ramht: %d\n", ret);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000137 return ret;
138 }
139
140 *b_offset = mem->start;
141 return 0;
142}
143
144int
145nouveau_notifier_offset(struct nouveau_gpuobj *nobj, uint32_t *poffset)
146{
147 if (!nobj || nobj->dtor != nouveau_notifier_gpuobj_dtor)
148 return -EINVAL;
149
150 if (poffset) {
Ben Skeggsb833ac22010-06-01 15:32:24 +1000151 struct drm_mm_node *mem = nobj->priv;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000152
153 if (*poffset >= mem->size)
154 return false;
155
156 *poffset += mem->start;
157 }
158
159 return 0;
160}
161
162int
163nouveau_ioctl_notifier_alloc(struct drm_device *dev, void *data,
164 struct drm_file *file_priv)
165{
Ben Skeggs587107b2010-11-24 10:07:21 +1000166 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000167 struct drm_nouveau_notifierobj_alloc *na = data;
168 struct nouveau_channel *chan;
169 int ret;
170
Ben Skeggs587107b2010-11-24 10:07:21 +1000171 /* completely unnecessary for these chipsets... */
172 if (unlikely(dev_priv->card_type >= NV_C0))
173 return -EINVAL;
174
Ben Skeggscff5c132010-10-06 16:16:59 +1000175 chan = nouveau_channel_get(dev, file_priv, na->channel);
176 if (IS_ERR(chan))
177 return PTR_ERR(chan);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000178
179 ret = nouveau_notifier_alloc(chan, na->handle, na->size, &na->offset);
Ben Skeggscff5c132010-10-06 16:16:59 +1000180 nouveau_channel_put(&chan);
181 return ret;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000182}