blob: fe29d604b820cf2f5c82d27738bdb1c77f840a94 [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
46 ret = nouveau_gem_new(dev, NULL, PAGE_SIZE, 0, flags,
Ben Skeggs6ee73862009-12-11 19:24:15 +100047 0, 0x0000, false, true, &ntfy);
48 if (ret)
49 return ret;
50
Ben Skeggsf927b892010-01-27 14:29:05 +100051 ret = nouveau_bo_pin(ntfy, flags);
Ben Skeggs6ee73862009-12-11 19:24:15 +100052 if (ret)
53 goto out_err;
54
55 ret = nouveau_bo_map(ntfy);
56 if (ret)
57 goto out_err;
58
Ben Skeggsb833ac22010-06-01 15:32:24 +100059 ret = drm_mm_init(&chan->notifier_heap, 0, ntfy->bo.mem.size);
Ben Skeggs6ee73862009-12-11 19:24:15 +100060 if (ret)
61 goto out_err;
62
63 chan->notifier_bo = ntfy;
64out_err:
Luca Barbieribc9025b2010-02-09 05:49:12 +000065 if (ret)
66 drm_gem_object_unreference_unlocked(ntfy->gem);
Ben Skeggs6ee73862009-12-11 19:24:15 +100067
68 return ret;
69}
70
71void
72nouveau_notifier_takedown_channel(struct nouveau_channel *chan)
73{
74 struct drm_device *dev = chan->dev;
75
76 if (!chan->notifier_bo)
77 return;
78
79 nouveau_bo_unmap(chan->notifier_bo);
80 mutex_lock(&dev->struct_mutex);
81 nouveau_bo_unpin(chan->notifier_bo);
Ben Skeggs6ee73862009-12-11 19:24:15 +100082 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +000083 drm_gem_object_unreference_unlocked(chan->notifier_bo->gem);
Ben Skeggsb833ac22010-06-01 15:32:24 +100084 drm_mm_takedown(&chan->notifier_heap);
Ben Skeggs6ee73862009-12-11 19:24:15 +100085}
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)
Ben Skeggsb833ac22010-06-01 15:32:24 +100094 drm_mm_put_block(gpuobj->priv);
Ben Skeggs6ee73862009-12-11 19:24:15 +100095}
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;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000102 struct nouveau_gpuobj *nobj = NULL;
Ben Skeggsb833ac22010-06-01 15:32:24 +1000103 struct drm_mm_node *mem;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000104 uint32_t offset;
105 int target, ret;
106
Ben Skeggsb833ac22010-06-01 15:32:24 +1000107 mem = drm_mm_search_free(&chan->notifier_heap, size, 0, 0);
108 if (mem)
109 mem = drm_mm_get_block(mem, size, 0);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000110 if (!mem) {
111 NV_ERROR(dev, "Channel %d notifier block full\n", chan->id);
112 return -ENOMEM;
113 }
114
Ben Skeggs7f4a1952010-11-16 11:50:09 +1000115 if (chan->notifier_bo->bo.mem.mem_type == TTM_PL_VRAM)
116 target = NV_MEM_TARGET_VRAM;
117 else
118 target = NV_MEM_TARGET_GART;
119 offset = chan->notifier_bo->bo.mem.start << PAGE_SHIFT;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000120 offset += mem->start;
121
122 ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY, offset,
Ben Skeggs7f4a1952010-11-16 11:50:09 +1000123 mem->size, NV_MEM_ACCESS_RW, target,
Ben Skeggs6ee73862009-12-11 19:24:15 +1000124 &nobj);
125 if (ret) {
Ben Skeggsb833ac22010-06-01 15:32:24 +1000126 drm_mm_put_block(mem);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000127 NV_ERROR(dev, "Error creating notifier ctxdma: %d\n", ret);
128 return ret;
129 }
Ben Skeggsb833ac22010-06-01 15:32:24 +1000130 nobj->dtor = nouveau_notifier_gpuobj_dtor;
131 nobj->priv = mem;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000132
Ben Skeggsa8eaebc2010-09-01 15:24:31 +1000133 ret = nouveau_ramht_insert(chan, handle, nobj);
134 nouveau_gpuobj_ref(NULL, &nobj);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000135 if (ret) {
Ben Skeggsb833ac22010-06-01 15:32:24 +1000136 drm_mm_put_block(mem);
Ben Skeggsa8eaebc2010-09-01 15:24:31 +1000137 NV_ERROR(dev, "Error adding notifier to ramht: %d\n", ret);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000138 return ret;
139 }
140
141 *b_offset = mem->start;
142 return 0;
143}
144
145int
146nouveau_notifier_offset(struct nouveau_gpuobj *nobj, uint32_t *poffset)
147{
148 if (!nobj || nobj->dtor != nouveau_notifier_gpuobj_dtor)
149 return -EINVAL;
150
151 if (poffset) {
Ben Skeggsb833ac22010-06-01 15:32:24 +1000152 struct drm_mm_node *mem = nobj->priv;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000153
154 if (*poffset >= mem->size)
155 return false;
156
157 *poffset += mem->start;
158 }
159
160 return 0;
161}
162
163int
164nouveau_ioctl_notifier_alloc(struct drm_device *dev, void *data,
165 struct drm_file *file_priv)
166{
Ben Skeggs587107b2010-11-24 10:07:21 +1000167 struct drm_nouveau_private *dev_priv = dev->dev_private;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000168 struct drm_nouveau_notifierobj_alloc *na = data;
169 struct nouveau_channel *chan;
170 int ret;
171
Ben Skeggs587107b2010-11-24 10:07:21 +1000172 /* completely unnecessary for these chipsets... */
173 if (unlikely(dev_priv->card_type >= NV_C0))
174 return -EINVAL;
175
Ben Skeggscff5c132010-10-06 16:16:59 +1000176 chan = nouveau_channel_get(dev, file_priv, na->channel);
177 if (IS_ERR(chan))
178 return PTR_ERR(chan);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000179
180 ret = nouveau_notifier_alloc(chan, na->handle, na->size, &na->offset);
Ben Skeggscff5c132010-10-06 16:16:59 +1000181 nouveau_channel_put(&chan);
182 return ret;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000183}