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 | 4dc2813 | 2016-05-20 09:22:55 +1000 | [diff] [blame] | 25 | #include "nouveau_drv.h" |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 26 | #include "nouveau_dma.h" |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 27 | #include "nouveau_fence.h" |
| 28 | |
Ben Skeggs | 77145f1 | 2012-07-31 16:16:21 +1000 | [diff] [blame] | 29 | #include "nv50_display.h" |
| 30 | |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 31 | static int |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 32 | nv84_fence_emit32(struct nouveau_channel *chan, u64 virtual, u32 sequence) |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 33 | { |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 34 | int ret = RING_SPACE(chan, 8); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 35 | if (ret == 0) { |
| 36 | BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1); |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 37 | OUT_RING (chan, chan->vram.handle); |
Ben Skeggs | e18c080 | 2013-01-31 14:57:33 +1000 | [diff] [blame] | 38 | BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 5); |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 39 | OUT_RING (chan, upper_32_bits(virtual)); |
| 40 | OUT_RING (chan, lower_32_bits(virtual)); |
| 41 | OUT_RING (chan, sequence); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 42 | OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_WRITE_LONG); |
Ben Skeggs | e18c080 | 2013-01-31 14:57:33 +1000 | [diff] [blame] | 43 | OUT_RING (chan, 0x00000000); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 44 | FIRE_RING (chan); |
| 45 | } |
| 46 | return ret; |
| 47 | } |
| 48 | |
| 49 | static int |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 50 | nv84_fence_sync32(struct nouveau_channel *chan, u64 virtual, u32 sequence) |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 51 | { |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 52 | int ret = RING_SPACE(chan, 7); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 53 | if (ret == 0) { |
| 54 | BEGIN_NV04(chan, 0, NV11_SUBCHAN_DMA_SEMAPHORE, 1); |
Ben Skeggs | 0ad7286 | 2014-08-10 04:10:22 +1000 | [diff] [blame] | 55 | OUT_RING (chan, chan->vram.handle); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 56 | BEGIN_NV04(chan, 0, NV84_SUBCHAN_SEMAPHORE_ADDRESS_HIGH, 4); |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 57 | OUT_RING (chan, upper_32_bits(virtual)); |
| 58 | OUT_RING (chan, lower_32_bits(virtual)); |
| 59 | OUT_RING (chan, sequence); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 60 | OUT_RING (chan, NV84_SUBCHAN_SEMAPHORE_TRIGGER_ACQUIRE_GEQUAL); |
| 61 | FIRE_RING (chan); |
| 62 | } |
| 63 | return ret; |
| 64 | } |
| 65 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 66 | static int |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 67 | nv84_fence_emit(struct nouveau_fence *fence) |
| 68 | { |
| 69 | struct nouveau_channel *chan = fence->channel; |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 70 | struct nv84_fence_chan *fctx = chan->fence; |
Ben Skeggs | bbf8906 | 2014-08-10 04:10:25 +1000 | [diff] [blame] | 71 | u64 addr = chan->chid * 16; |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 72 | |
| 73 | if (fence->sysmem) |
| 74 | addr += fctx->vma_gart.offset; |
| 75 | else |
| 76 | addr += fctx->vma.offset; |
| 77 | |
Maarten Lankhorst | 29ba89b | 2014-01-09 11:03:11 +0100 | [diff] [blame] | 78 | return fctx->base.emit32(chan, addr, fence->base.seqno); |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 79 | } |
| 80 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 81 | static int |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 82 | nv84_fence_sync(struct nouveau_fence *fence, |
| 83 | struct nouveau_channel *prev, struct nouveau_channel *chan) |
| 84 | { |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 85 | struct nv84_fence_chan *fctx = chan->fence; |
Ben Skeggs | bbf8906 | 2014-08-10 04:10:25 +1000 | [diff] [blame] | 86 | u64 addr = prev->chid * 16; |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 87 | |
| 88 | if (fence->sysmem) |
| 89 | addr += fctx->vma_gart.offset; |
| 90 | else |
| 91 | addr += fctx->vma.offset; |
| 92 | |
Maarten Lankhorst | 29ba89b | 2014-01-09 11:03:11 +0100 | [diff] [blame] | 93 | return fctx->base.sync32(chan, addr, fence->base.seqno); |
Ben Skeggs | bba9852 | 2013-02-14 09:37:35 +1000 | [diff] [blame] | 94 | } |
| 95 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 96 | static u32 |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 97 | nv84_fence_read(struct nouveau_channel *chan) |
| 98 | { |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 99 | struct nv84_fence_priv *priv = chan->drm->fence; |
Ben Skeggs | bbf8906 | 2014-08-10 04:10:25 +1000 | [diff] [blame] | 100 | return nouveau_bo_rd32(priv->bo, chan->chid * 16/4); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 101 | } |
| 102 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 103 | static void |
Ben Skeggs | e193b1d | 2012-07-19 10:51:42 +1000 | [diff] [blame] | 104 | nv84_fence_context_del(struct nouveau_channel *chan) |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 105 | { |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 106 | struct nv84_fence_priv *priv = chan->drm->fence; |
Ben Skeggs | e193b1d | 2012-07-19 10:51:42 +1000 | [diff] [blame] | 107 | struct nv84_fence_chan *fctx = chan->fence; |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 108 | |
Maarten Lankhorst | 1dadba8 | 2014-09-22 11:08:48 +0200 | [diff] [blame] | 109 | nouveau_bo_wr32(priv->bo, chan->chid * 16 / 4, fctx->base.sequence); |
Ben Skeggs | 96692b0 | 2016-12-14 09:52:39 +1000 | [diff] [blame^] | 110 | mutex_lock(&priv->mutex); |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 111 | nouveau_bo_vma_del(priv->bo, &fctx->vma_gart); |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 112 | nouveau_bo_vma_del(priv->bo, &fctx->vma); |
Ben Skeggs | 96692b0 | 2016-12-14 09:52:39 +1000 | [diff] [blame^] | 113 | mutex_unlock(&priv->mutex); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 114 | nouveau_fence_context_del(&fctx->base); |
Ben Skeggs | e193b1d | 2012-07-19 10:51:42 +1000 | [diff] [blame] | 115 | chan->fence = NULL; |
Maarten Lankhorst | 15a996b | 2014-09-29 10:06:18 +0200 | [diff] [blame] | 116 | nouveau_fence_context_free(&fctx->base); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 117 | } |
| 118 | |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 119 | int |
Ben Skeggs | e193b1d | 2012-07-19 10:51:42 +1000 | [diff] [blame] | 120 | nv84_fence_context_new(struct nouveau_channel *chan) |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 121 | { |
Ben Skeggs | a01ca78 | 2015-08-20 14:54:15 +1000 | [diff] [blame] | 122 | struct nouveau_cli *cli = (void *)chan->user.client; |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 123 | struct nv84_fence_priv *priv = chan->drm->fence; |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 124 | struct nv84_fence_chan *fctx; |
Ben Skeggs | e1ef6b4 | 2016-11-04 17:20:36 +1000 | [diff] [blame] | 125 | int ret; |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 126 | |
Ben Skeggs | e193b1d | 2012-07-19 10:51:42 +1000 | [diff] [blame] | 127 | fctx = chan->fence = kzalloc(sizeof(*fctx), GFP_KERNEL); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 128 | if (!fctx) |
| 129 | return -ENOMEM; |
| 130 | |
Maarten Lankhorst | 29ba89b | 2014-01-09 11:03:11 +0100 | [diff] [blame] | 131 | nouveau_fence_context_new(chan, &fctx->base); |
Ben Skeggs | 827520c | 2013-02-14 13:20:17 +1000 | [diff] [blame] | 132 | fctx->base.emit = nv84_fence_emit; |
| 133 | fctx->base.sync = nv84_fence_sync; |
| 134 | fctx->base.read = nv84_fence_read; |
| 135 | fctx->base.emit32 = nv84_fence_emit32; |
| 136 | fctx->base.sync32 = nv84_fence_sync32; |
Maarten Lankhorst | 29ba89b | 2014-01-09 11:03:11 +0100 | [diff] [blame] | 137 | fctx->base.sequence = nv84_fence_read(chan); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 138 | |
Ben Skeggs | 96692b0 | 2016-12-14 09:52:39 +1000 | [diff] [blame^] | 139 | mutex_lock(&priv->mutex); |
Ben Skeggs | 3ee6f5b | 2014-08-10 04:10:20 +1000 | [diff] [blame] | 140 | ret = nouveau_bo_vma_add(priv->bo, cli->vm, &fctx->vma); |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 141 | if (ret == 0) { |
Ben Skeggs | 3ee6f5b | 2014-08-10 04:10:20 +1000 | [diff] [blame] | 142 | ret = nouveau_bo_vma_add(priv->bo_gart, cli->vm, |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 143 | &fctx->vma_gart); |
| 144 | } |
Ben Skeggs | 96692b0 | 2016-12-14 09:52:39 +1000 | [diff] [blame^] | 145 | mutex_unlock(&priv->mutex); |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 146 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 147 | if (ret) |
| 148 | nv84_fence_context_del(chan); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 149 | return ret; |
| 150 | } |
| 151 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 152 | static bool |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 153 | nv84_fence_suspend(struct nouveau_drm *drm) |
| 154 | { |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 155 | struct nv84_fence_priv *priv = drm->fence; |
| 156 | int i; |
| 157 | |
Maarten Lankhorst | 29ba89b | 2014-01-09 11:03:11 +0100 | [diff] [blame] | 158 | priv->suspend = vmalloc(priv->base.contexts * sizeof(u32)); |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 159 | if (priv->suspend) { |
Maarten Lankhorst | 29ba89b | 2014-01-09 11:03:11 +0100 | [diff] [blame] | 160 | for (i = 0; i < priv->base.contexts; i++) |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 161 | priv->suspend[i] = nouveau_bo_rd32(priv->bo, i*4); |
| 162 | } |
| 163 | |
| 164 | return priv->suspend != NULL; |
| 165 | } |
| 166 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 167 | static void |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 168 | nv84_fence_resume(struct nouveau_drm *drm) |
| 169 | { |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 170 | struct nv84_fence_priv *priv = drm->fence; |
| 171 | int i; |
| 172 | |
| 173 | if (priv->suspend) { |
Maarten Lankhorst | 29ba89b | 2014-01-09 11:03:11 +0100 | [diff] [blame] | 174 | for (i = 0; i < priv->base.contexts; i++) |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 175 | nouveau_bo_wr32(priv->bo, i*4, priv->suspend[i]); |
| 176 | vfree(priv->suspend); |
| 177 | priv->suspend = NULL; |
| 178 | } |
| 179 | } |
| 180 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 181 | static void |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 182 | nv84_fence_destroy(struct nouveau_drm *drm) |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 183 | { |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 184 | struct nv84_fence_priv *priv = drm->fence; |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 185 | nouveau_bo_unmap(priv->bo_gart); |
| 186 | if (priv->bo_gart) |
| 187 | nouveau_bo_unpin(priv->bo_gart); |
| 188 | nouveau_bo_ref(NULL, &priv->bo_gart); |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 189 | nouveau_bo_unmap(priv->bo); |
| 190 | if (priv->bo) |
| 191 | nouveau_bo_unpin(priv->bo); |
| 192 | nouveau_bo_ref(NULL, &priv->bo); |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 193 | drm->fence = NULL; |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 194 | kfree(priv); |
| 195 | } |
| 196 | |
| 197 | int |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 198 | nv84_fence_create(struct nouveau_drm *drm) |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 199 | { |
Ben Skeggs | 6189f1b | 2015-08-20 14:54:07 +1000 | [diff] [blame] | 200 | struct nvkm_fifo *fifo = nvxx_fifo(&drm->device); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 201 | struct nv84_fence_priv *priv; |
Alexandre Courbot | eaecf03 | 2015-02-20 18:22:59 +0900 | [diff] [blame] | 202 | u32 domain; |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 203 | int ret; |
| 204 | |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 205 | priv = drm->fence = kzalloc(sizeof(*priv), GFP_KERNEL); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 206 | if (!priv) |
| 207 | return -ENOMEM; |
| 208 | |
Ben Skeggs | e193b1d | 2012-07-19 10:51:42 +1000 | [diff] [blame] | 209 | priv->base.dtor = nv84_fence_destroy; |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 210 | priv->base.suspend = nv84_fence_suspend; |
| 211 | priv->base.resume = nv84_fence_resume; |
Ben Skeggs | e193b1d | 2012-07-19 10:51:42 +1000 | [diff] [blame] | 212 | priv->base.context_new = nv84_fence_context_new; |
| 213 | priv->base.context_del = nv84_fence_context_del; |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 214 | |
Ben Skeggs | 8f0649b | 2015-08-20 14:54:19 +1000 | [diff] [blame] | 215 | priv->base.contexts = fifo->nr; |
Chris Wilson | f54d186 | 2016-10-25 13:00:45 +0100 | [diff] [blame] | 216 | priv->base.context_base = dma_fence_context_alloc(priv->base.contexts); |
Ben Skeggs | e18c080 | 2013-01-31 14:57:33 +1000 | [diff] [blame] | 217 | priv->base.uevent = true; |
| 218 | |
Ben Skeggs | 96692b0 | 2016-12-14 09:52:39 +1000 | [diff] [blame^] | 219 | mutex_init(&priv->mutex); |
| 220 | |
Alexandre Courbot | eaecf03 | 2015-02-20 18:22:59 +0900 | [diff] [blame] | 221 | /* Use VRAM if there is any ; otherwise fallback to system memory */ |
| 222 | domain = drm->device.info.ram_size != 0 ? TTM_PL_FLAG_VRAM : |
| 223 | /* |
| 224 | * fences created in sysmem must be non-cached or we |
| 225 | * will lose CPU/GPU coherency! |
| 226 | */ |
| 227 | TTM_PL_FLAG_TT | TTM_PL_FLAG_UNCACHED; |
| 228 | ret = nouveau_bo_new(drm->dev, 16 * priv->base.contexts, 0, domain, 0, |
| 229 | 0, NULL, NULL, &priv->bo); |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 230 | if (ret == 0) { |
Alexandre Courbot | eaecf03 | 2015-02-20 18:22:59 +0900 | [diff] [blame] | 231 | ret = nouveau_bo_pin(priv->bo, domain, false); |
Ben Skeggs | a34caf7 | 2013-02-14 09:28:37 +1000 | [diff] [blame] | 232 | if (ret == 0) { |
| 233 | ret = nouveau_bo_map(priv->bo); |
| 234 | if (ret) |
| 235 | nouveau_bo_unpin(priv->bo); |
| 236 | } |
| 237 | if (ret) |
| 238 | nouveau_bo_ref(NULL, &priv->bo); |
| 239 | } |
| 240 | |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 241 | if (ret == 0) |
Maarten Lankhorst | 29ba89b | 2014-01-09 11:03:11 +0100 | [diff] [blame] | 242 | ret = nouveau_bo_new(drm->dev, 16 * priv->base.contexts, 0, |
Alexandre Courbot | a81349a | 2014-10-27 18:49:18 +0900 | [diff] [blame] | 243 | TTM_PL_FLAG_TT | TTM_PL_FLAG_UNCACHED, 0, |
| 244 | 0, NULL, NULL, &priv->bo_gart); |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 245 | if (ret == 0) { |
Ben Skeggs | ad76b3f | 2014-11-10 11:24:27 +1000 | [diff] [blame] | 246 | ret = nouveau_bo_pin(priv->bo_gart, TTM_PL_FLAG_TT, false); |
Ben Skeggs | 264ce19 | 2013-02-14 13:43:21 +1000 | [diff] [blame] | 247 | if (ret == 0) { |
| 248 | ret = nouveau_bo_map(priv->bo_gart); |
| 249 | if (ret) |
| 250 | nouveau_bo_unpin(priv->bo_gart); |
| 251 | } |
| 252 | if (ret) |
| 253 | nouveau_bo_ref(NULL, &priv->bo_gart); |
| 254 | } |
| 255 | |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 256 | if (ret) |
Ben Skeggs | ebb945a | 2012-07-20 08:17:34 +1000 | [diff] [blame] | 257 | nv84_fence_destroy(drm); |
Ben Skeggs | 5e120f6 | 2012-04-30 13:55:29 +1000 | [diff] [blame] | 258 | return ret; |
| 259 | } |