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