Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 Red Hat Inc. |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice shall be included in |
| 12 | * all copies or substantial portions of the Software. |
| 13 | * |
| 14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 17 | * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 18 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 19 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 20 | * OTHER DEALINGS IN THE SOFTWARE. |
| 21 | * |
| 22 | * Authors: Ben Skeggs |
| 23 | */ |
| 24 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 25 | #include <core/object.h> |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 26 | #include <core/client.h> |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 27 | #include <core/class.h> |
| 28 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 29 | #include "nouveau_drm.h" |
| 30 | #include "nouveau_dma.h" |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 31 | #include "nouveau_fence.h" |
| 32 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 33 | #include "nv50_display.h" |
| 34 | |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 35 | u64 |
| 36 | nv84_fence_crtc(struct nouveau_channel *chan, int crtc) |
| 37 | { |
| 38 | struct nv84_fence_chan *fctx = chan->fence; |
| 39 | return fctx->dispc_vma[crtc].offset; |
| 40 | } |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 41 | |
| 42 | static int |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 43 | nv84_fence_emit32(struct nouveau_channel *chan, u64 virtual, u32 sequence) |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 44 | { |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 45 | int ret = RING_SPACE(chan, 8); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 46 | if (ret == 0) { |
| 47 | BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1); |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame^] | 48 | OUT_RING (chan, chan->vram.handle); |
Ben Skeggs | e18c080 | 2013-01-31 14:57:33 +1000 | [diff] [blame] | 49 | BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 5); |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 50 | OUT_RING (chan, upper_32_bits(virtual)); |
| 51 | OUT_RING (chan, lower_32_bits(virtual)); |
| 52 | OUT_RING (chan, sequence); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 53 | OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG); |
Ben Skeggs | e18c080 | 2013-01-31 14:57:33 +1000 | [diff] [blame] | 54 | OUT_RING (chan, 0x00000000); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 55 | FIRE_RING (chan); |
| 56 | } |
| 57 | return ret; |
| 58 | } |
| 59 | |
| 60 | static int |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 61 | nv84_fence_sync32(struct nouveau_channel *chan, u64 virtual, u32 sequence) |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 62 | { |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 63 | int ret = RING_SPACE(chan, 7); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 64 | if (ret == 0) { |
| 65 | BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1); |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame^] | 66 | OUT_RING (chan, chan->vram.handle); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 67 | BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4); |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 68 | OUT_RING (chan, upper_32_bits(virtual)); |
| 69 | OUT_RING (chan, lower_32_bits(virtual)); |
| 70 | OUT_RING (chan, sequence); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 71 | OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL); |
| 72 | FIRE_RING (chan); |
| 73 | } |
| 74 | return ret; |
| 75 | } |
| 76 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 77 | static int |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 78 | nv84_fence_emit(struct nouveau_fence *fence) |
| 79 | { |
| 80 | struct nouveau_channel *chan = fence->channel; |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 81 | struct nv84_fence_chan *fctx = chan->fence; |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 82 | struct nouveau_fifo_chan *fifo = nvkm_fifo_chan(chan); |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 83 | u64 addr = fifo->chid * 16; |
| 84 | |
| 85 | if (fence->sysmem) |
| 86 | addr += fctx->vma_gart.offset; |
| 87 | else |
| 88 | addr += fctx->vma.offset; |
| 89 | |
Ben Skeggs | 827520c | 2013-02-14 13:20:17 +1000 | [diff] [blame] | 90 | return fctx->base.emit32(chan, addr, fence->sequence); |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 91 | } |
| 92 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 93 | static int |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 94 | nv84_fence_sync(struct nouveau_fence *fence, |
| 95 | struct nouveau_channel *prev, struct nouveau_channel *chan) |
| 96 | { |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 97 | struct nv84_fence_chan *fctx = chan->fence; |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 98 | struct nouveau_fifo_chan *fifo = nvkm_fifo_chan(prev); |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 99 | u64 addr = fifo->chid * 16; |
| 100 | |
| 101 | if (fence->sysmem) |
| 102 | addr += fctx->vma_gart.offset; |
| 103 | else |
| 104 | addr += fctx->vma.offset; |
| 105 | |
Ben Skeggs | 827520c | 2013-02-14 13:20:17 +1000 | [diff] [blame] | 106 | return fctx->base.sync32(chan, addr, fence->sequence); |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 107 | } |
| 108 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 109 | static u32 |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 110 | nv84_fence_read(struct nouveau_channel *chan) |
| 111 | { |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 112 | struct nouveau_fifo_chan *fifo = nvkm_fifo_chan(chan); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 113 | struct nv84_fence_priv *priv = chan->drm->fence; |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 114 | return nouveau_bo_rd32(priv->bo, fifo->chid * 16/4); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 115 | } |
| 116 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 117 | static void |
Ben Skeggs | e193b1d | 2012-07-19 10:51:42 +1000 | [diff] [blame] | 118 | nv84_fence_context_del(struct nouveau_channel *chan) |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 119 | { |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 120 | struct drm_device *dev = chan->drm->dev; |
| 121 | struct nv84_fence_priv *priv = chan->drm->fence; |
Ben Skeggs | e193b1d | 2012-07-19 10:51:42 +1000 | [diff] [blame] | 122 | struct nv84_fence_chan *fctx = chan->fence; |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 123 | int i; |
| 124 | |
| 125 | for (i = 0; i < dev->mode_config.num_crtc; i++) { |
| 126 | struct nouveau_bo *bo = nv50_display_crtc_sema(dev, i); |
| 127 | nouveau_bo_vma_del(bo, &fctx->dispc_vma[i]); |
| 128 | } |
| 129 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 130 | nouveau_bo_vma_del(priv->bo, &fctx->vma_gart); |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 131 | nouveau_bo_vma_del(priv->bo, &fctx->vma); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 132 | nouveau_fence_context_del(&fctx->base); |
Ben Skeggs | e193b1d | 2012-07-19 10:51:42 +1000 | [diff] [blame] | 133 | chan->fence = NULL; |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 134 | kfree(fctx); |
| 135 | } |
| 136 | |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 137 | int |
Ben Skeggs | e193b1d | 2012-07-19 10:51:42 +1000 | [diff] [blame] | 138 | nv84_fence_context_new(struct nouveau_channel *chan) |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 139 | { |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 140 | struct nouveau_fifo_chan *fifo = nvkm_fifo_chan(chan); |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame^] | 141 | struct nouveau_cli *cli = (void *)nvif_client(&chan->device->base); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 142 | struct nv84_fence_priv *priv = chan->drm->fence; |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 143 | struct nv84_fence_chan *fctx; |
Ben Skeggs | f589be8 | 2012-07-22 11:55:54 +1000 | [diff] [blame] | 144 | int ret, i; |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 145 | |
Ben Skeggs | e193b1d | 2012-07-19 10:51:42 +1000 | [diff] [blame] | 146 | fctx = chan->fence = kzalloc(sizeof(*fctx), GFP_KERNEL); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 147 | if (!fctx) |
| 148 | return -ENOMEM; |
| 149 | |
| 150 | nouveau_fence_context_new(&fctx->base); |
Ben Skeggs | 827520c | 2013-02-14 13:20:17 +1000 | [diff] [blame] | 151 | fctx->base.emit = nv84_fence_emit; |
| 152 | fctx->base.sync = nv84_fence_sync; |
| 153 | fctx->base.read = nv84_fence_read; |
| 154 | fctx->base.emit32 = nv84_fence_emit32; |
| 155 | fctx->base.sync32 = nv84_fence_sync32; |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 156 | |
Ben Skeggs | 3ee6f5b | 2014-08-10 04:10:20 +1000 | [diff] [blame] | 157 | ret = nouveau_bo_vma_add(priv->bo, cli->vm, &fctx->vma); |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 158 | if (ret == 0) { |
Ben Skeggs | 3ee6f5b | 2014-08-10 04:10:20 +1000 | [diff] [blame] | 159 | ret = nouveau_bo_vma_add(priv->bo_gart, cli->vm, |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 160 | &fctx->vma_gart); |
| 161 | } |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 162 | |
| 163 | /* map display semaphore buffers into channel's vm */ |
| 164 | for (i = 0; !ret && i < chan->drm->dev->mode_config.num_crtc; i++) { |
| 165 | struct nouveau_bo *bo = nv50_display_crtc_sema(chan->drm->dev, i); |
Ben Skeggs | 3ee6f5b | 2014-08-10 04:10:20 +1000 | [diff] [blame] | 166 | ret = nouveau_bo_vma_add(bo, cli->vm, &fctx->dispc_vma[i]); |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | nouveau_bo_wr32(priv->bo, fifo->chid * 16/4, 0x00000000); |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 170 | |
| 171 | if (ret) |
| 172 | nv84_fence_context_del(chan); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 173 | return ret; |
| 174 | } |
| 175 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 176 | static bool |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 177 | nv84_fence_suspend(struct nouveau_drm *drm) |
| 178 | { |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 179 | struct nouveau_fifo *pfifo = nvkm_fifo(&drm->device); |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 180 | struct nv84_fence_priv *priv = drm->fence; |
| 181 | int i; |
| 182 | |
| 183 | priv->suspend = vmalloc((pfifo->max + 1) * sizeof(u32)); |
| 184 | if (priv->suspend) { |
| 185 | for (i = 0; i <= pfifo->max; i++) |
| 186 | priv->suspend[i] = nouveau_bo_rd32(priv->bo, i*4); |
| 187 | } |
| 188 | |
| 189 | return priv->suspend != NULL; |
| 190 | } |
| 191 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 192 | static void |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 193 | nv84_fence_resume(struct nouveau_drm *drm) |
| 194 | { |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 195 | struct nouveau_fifo *pfifo = nvkm_fifo(&drm->device); |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 196 | struct nv84_fence_priv *priv = drm->fence; |
| 197 | int i; |
| 198 | |
| 199 | if (priv->suspend) { |
| 200 | for (i = 0; i <= pfifo->max; i++) |
| 201 | nouveau_bo_wr32(priv->bo, i*4, priv->suspend[i]); |
| 202 | vfree(priv->suspend); |
| 203 | priv->suspend = NULL; |
| 204 | } |
| 205 | } |
| 206 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 207 | static void |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 208 | nv84_fence_destroy(struct nouveau_drm *drm) |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 209 | { |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 210 | struct nv84_fence_priv *priv = drm->fence; |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 211 | nouveau_bo_unmap(priv->bo_gart); |
| 212 | if (priv->bo_gart) |
| 213 | nouveau_bo_unpin(priv->bo_gart); |
| 214 | nouveau_bo_ref(NULL, &priv->bo_gart); |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 215 | nouveau_bo_unmap(priv->bo); |
| 216 | if (priv->bo) |
| 217 | nouveau_bo_unpin(priv->bo); |
| 218 | nouveau_bo_ref(NULL, &priv->bo); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 219 | drm->fence = NULL; |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 220 | kfree(priv); |
| 221 | } |
| 222 | |
| 223 | int |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 224 | nv84_fence_create(struct nouveau_drm *drm) |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 225 | { |
Ben Skeggs | 967e7bd | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 226 | struct nouveau_fifo *pfifo = nvkm_fifo(&drm->device); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 227 | struct nv84_fence_priv *priv; |
| 228 | int ret; |
| 229 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 230 | priv = drm->fence = kzalloc(sizeof(*priv), GFP_KERNEL); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 231 | if (!priv) |
| 232 | return -ENOMEM; |
| 233 | |
Ben Skeggs | e193b1d | 2012-07-19 10:51:42 +1000 | [diff] [blame] | 234 | priv->base.dtor = nv84_fence_destroy; |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 235 | priv->base.suspend = nv84_fence_suspend; |
| 236 | priv->base.resume = nv84_fence_resume; |
Ben Skeggs | e193b1d | 2012-07-19 10:51:42 +1000 | [diff] [blame] | 237 | priv->base.context_new = nv84_fence_context_new; |
| 238 | priv->base.context_del = nv84_fence_context_del; |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 239 | |
Ben Skeggs | e18c080 | 2013-01-31 14:57:33 +1000 | [diff] [blame] | 240 | init_waitqueue_head(&priv->base.waiting); |
| 241 | priv->base.uevent = true; |
| 242 | |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 243 | ret = nouveau_bo_new(drm->dev, 16 * (pfifo->max + 1), 0, |
| 244 | TTM_PL_FLAG_VRAM, 0, 0, NULL, &priv->bo); |
| 245 | if (ret == 0) { |
| 246 | ret = nouveau_bo_pin(priv->bo, TTM_PL_FLAG_VRAM); |
| 247 | if (ret == 0) { |
| 248 | ret = nouveau_bo_map(priv->bo); |
| 249 | if (ret) |
| 250 | nouveau_bo_unpin(priv->bo); |
| 251 | } |
| 252 | if (ret) |
| 253 | nouveau_bo_ref(NULL, &priv->bo); |
| 254 | } |
| 255 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 256 | if (ret == 0) |
| 257 | ret = nouveau_bo_new(drm->dev, 16 * (pfifo->max + 1), 0, |
| 258 | TTM_PL_FLAG_TT, 0, 0, NULL, |
| 259 | &priv->bo_gart); |
| 260 | if (ret == 0) { |
| 261 | ret = nouveau_bo_pin(priv->bo_gart, TTM_PL_FLAG_TT); |
| 262 | if (ret == 0) { |
| 263 | ret = nouveau_bo_map(priv->bo_gart); |
| 264 | if (ret) |
| 265 | nouveau_bo_unpin(priv->bo_gart); |
| 266 | } |
| 267 | if (ret) |
| 268 | nouveau_bo_ref(NULL, &priv->bo_gart); |
| 269 | } |
| 270 | |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 271 | if (ret) |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 272 | nv84_fence_destroy(drm); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 273 | return ret; |
| 274 | } |