]>
Commit | Line | Data |
---|---|---|
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" | |
a8eaebc6 | 31 | #include "nouveau_ramht.h" |
6ee73861 BS |
32 | |
33 | int | |
34 | nouveau_notifier_init_channel(struct nouveau_channel *chan) | |
35 | { | |
36 | struct drm_device *dev = chan->dev; | |
37 | struct nouveau_bo *ntfy = NULL; | |
f927b890 | 38 | uint32_t flags; |
6ee73861 BS |
39 | int ret; |
40 | ||
f927b890 BS |
41 | 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, | |
6ee73861 BS |
47 | 0, 0x0000, false, true, &ntfy); |
48 | if (ret) | |
49 | return ret; | |
50 | ||
f927b890 | 51 | ret = nouveau_bo_pin(ntfy, flags); |
6ee73861 BS |
52 | if (ret) |
53 | goto out_err; | |
54 | ||
55 | ret = nouveau_bo_map(ntfy); | |
56 | if (ret) | |
57 | goto out_err; | |
58 | ||
b833ac26 | 59 | ret = drm_mm_init(&chan->notifier_heap, 0, ntfy->bo.mem.size); |
6ee73861 BS |
60 | if (ret) |
61 | goto out_err; | |
62 | ||
63 | chan->notifier_bo = ntfy; | |
64 | out_err: | |
bc9025bd LB |
65 | if (ret) |
66 | drm_gem_object_unreference_unlocked(ntfy->gem); | |
6ee73861 BS |
67 | |
68 | return ret; | |
69 | } | |
70 | ||
71 | void | |
72 | nouveau_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); | |
6ee73861 | 82 | mutex_unlock(&dev->struct_mutex); |
bc9025bd | 83 | drm_gem_object_unreference_unlocked(chan->notifier_bo->gem); |
b833ac26 | 84 | drm_mm_takedown(&chan->notifier_heap); |
6ee73861 BS |
85 | } |
86 | ||
87 | static void | |
88 | nouveau_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 | ||
97 | int | |
98 | nouveau_notifier_alloc(struct nouveau_channel *chan, uint32_t handle, | |
73412c38 BS |
99 | int size, uint32_t start, uint32_t end, |
100 | uint32_t *b_offset) | |
6ee73861 BS |
101 | { |
102 | struct drm_device *dev = chan->dev; | |
6ee73861 | 103 | struct nouveau_gpuobj *nobj = NULL; |
b833ac26 | 104 | struct drm_mm_node *mem; |
6ee73861 BS |
105 | uint32_t offset; |
106 | int target, ret; | |
107 | ||
73412c38 BS |
108 | mem = drm_mm_search_free_in_range(&chan->notifier_heap, size, 0, |
109 | start, end, 0); | |
b833ac26 | 110 | if (mem) |
73412c38 | 111 | mem = drm_mm_get_block_range(mem, size, 0, start, end); |
6ee73861 BS |
112 | if (!mem) { |
113 | NV_ERROR(dev, "Channel %d notifier block full\n", chan->id); | |
114 | return -ENOMEM; | |
115 | } | |
116 | ||
7f4a195f BS |
117 | if (chan->notifier_bo->bo.mem.mem_type == TTM_PL_VRAM) |
118 | target = NV_MEM_TARGET_VRAM; | |
119 | else | |
120 | target = NV_MEM_TARGET_GART; | |
121 | offset = chan->notifier_bo->bo.mem.start << PAGE_SHIFT; | |
6ee73861 BS |
122 | offset += mem->start; |
123 | ||
124 | ret = nouveau_gpuobj_dma_new(chan, NV_CLASS_DMA_IN_MEMORY, offset, | |
7f4a195f | 125 | mem->size, NV_MEM_ACCESS_RW, target, |
6ee73861 BS |
126 | &nobj); |
127 | if (ret) { | |
b833ac26 | 128 | drm_mm_put_block(mem); |
6ee73861 BS |
129 | NV_ERROR(dev, "Error creating notifier ctxdma: %d\n", ret); |
130 | return ret; | |
131 | } | |
b833ac26 BS |
132 | nobj->dtor = nouveau_notifier_gpuobj_dtor; |
133 | nobj->priv = mem; | |
6ee73861 | 134 | |
a8eaebc6 BS |
135 | ret = nouveau_ramht_insert(chan, handle, nobj); |
136 | nouveau_gpuobj_ref(NULL, &nobj); | |
6ee73861 | 137 | if (ret) { |
b833ac26 | 138 | drm_mm_put_block(mem); |
a8eaebc6 | 139 | NV_ERROR(dev, "Error adding notifier to ramht: %d\n", ret); |
6ee73861 BS |
140 | return ret; |
141 | } | |
142 | ||
143 | *b_offset = mem->start; | |
144 | return 0; | |
145 | } | |
146 | ||
147 | int | |
148 | nouveau_notifier_offset(struct nouveau_gpuobj *nobj, uint32_t *poffset) | |
149 | { | |
150 | if (!nobj || nobj->dtor != nouveau_notifier_gpuobj_dtor) | |
151 | return -EINVAL; | |
152 | ||
153 | if (poffset) { | |
b833ac26 | 154 | struct drm_mm_node *mem = nobj->priv; |
6ee73861 BS |
155 | |
156 | if (*poffset >= mem->size) | |
157 | return false; | |
158 | ||
159 | *poffset += mem->start; | |
160 | } | |
161 | ||
162 | return 0; | |
163 | } | |
164 | ||
165 | int | |
166 | nouveau_ioctl_notifier_alloc(struct drm_device *dev, void *data, | |
167 | struct drm_file *file_priv) | |
168 | { | |
587107b6 | 169 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
6ee73861 BS |
170 | struct drm_nouveau_notifierobj_alloc *na = data; |
171 | struct nouveau_channel *chan; | |
172 | int ret; | |
173 | ||
587107b6 BS |
174 | /* completely unnecessary for these chipsets... */ |
175 | if (unlikely(dev_priv->card_type >= NV_C0)) | |
176 | return -EINVAL; | |
177 | ||
cff5c133 BS |
178 | chan = nouveau_channel_get(dev, file_priv, na->channel); |
179 | if (IS_ERR(chan)) | |
180 | return PTR_ERR(chan); | |
6ee73861 | 181 | |
73412c38 BS |
182 | ret = nouveau_notifier_alloc(chan, na->handle, na->size, 0, 0x1000, |
183 | &na->offset); | |
cff5c133 BS |
184 | nouveau_channel_put(&chan); |
185 | return ret; | |
6ee73861 | 186 | } |