Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 Ben Skeggs. |
| 3 | * All Rights Reserved. |
| 4 | * |
| 5 | * Permission is hereby granted, free of charge, to any person obtaining |
| 6 | * a copy of this software and associated documentation files (the |
| 7 | * "Software"), to deal in the Software without restriction, including |
| 8 | * without limitation the rights to use, copy, modify, merge, publish, |
| 9 | * distribute, sublicense, and/or sell copies of the Software, and to |
| 10 | * permit persons to whom the Software is furnished to do so, subject to |
| 11 | * the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice (including the |
| 14 | * next paragraph) shall be included in all copies or substantial |
| 15 | * portions of the Software. |
| 16 | * |
| 17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 18 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 19 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
| 20 | * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE |
| 21 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 22 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 23 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 24 | * |
| 25 | */ |
| 26 | |
| 27 | #include "drmP.h" |
| 28 | #include "drm.h" |
| 29 | #include "nouveau_drv.h" |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 30 | #include "nouveau_ramht.h" |
Ben Skeggs | a11c319 | 2010-08-27 10:00:25 +1000 | [diff] [blame] | 31 | #include "nouveau_vm.h" |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 32 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 33 | static void |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 34 | nv50_fifo_playlist_update(struct drm_device *dev) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 35 | { |
| 36 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 37 | struct nouveau_fifo_engine *pfifo = &dev_priv->engine.fifo; |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 38 | struct nouveau_gpuobj *cur; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 39 | int i, nr; |
| 40 | |
| 41 | NV_DEBUG(dev, "\n"); |
| 42 | |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 43 | cur = pfifo->playlist[pfifo->cur_playlist]; |
| 44 | pfifo->cur_playlist = !pfifo->cur_playlist; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 45 | |
| 46 | /* We never schedule channel 0 or 127 */ |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 47 | for (i = 1, nr = 0; i < 127; i++) { |
Ben Skeggs | cff5c13 | 2010-10-06 16:16:59 +1000 | [diff] [blame] | 48 | if (dev_priv->channels.ptr[i] && |
| 49 | dev_priv->channels.ptr[i]->ramfc) { |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 50 | nv_wo32(cur, (nr * 4), i); |
Ben Skeggs | b3beb16 | 2010-09-01 15:24:29 +1000 | [diff] [blame] | 51 | nr++; |
| 52 | } |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 53 | } |
Ben Skeggs | f56cb86 | 2010-07-08 11:29:10 +1000 | [diff] [blame] | 54 | dev_priv->engine.instmem.flush(dev); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 55 | |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 56 | nv_wr32(dev, 0x32f4, cur->vinst >> 12); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 57 | nv_wr32(dev, 0x32ec, nr); |
| 58 | nv_wr32(dev, 0x2500, 0x101); |
| 59 | } |
| 60 | |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 61 | static void |
| 62 | nv50_fifo_channel_enable(struct drm_device *dev, int channel) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 63 | { |
| 64 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
Ben Skeggs | cff5c13 | 2010-10-06 16:16:59 +1000 | [diff] [blame] | 65 | struct nouveau_channel *chan = dev_priv->channels.ptr[channel]; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 66 | uint32_t inst; |
| 67 | |
| 68 | NV_DEBUG(dev, "ch%d\n", channel); |
| 69 | |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 70 | if (dev_priv->chipset == 0x50) |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 71 | inst = chan->ramfc->vinst >> 12; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 72 | else |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 73 | inst = chan->ramfc->vinst >> 8; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 74 | |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 75 | nv_wr32(dev, NV50_PFIFO_CTX_TABLE(channel), inst | |
| 76 | NV50_PFIFO_CTX_TABLE_CHANNEL_ENABLED); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | static void |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 80 | nv50_fifo_channel_disable(struct drm_device *dev, int channel) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 81 | { |
| 82 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 83 | uint32_t inst; |
| 84 | |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 85 | NV_DEBUG(dev, "ch%d\n", channel); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 86 | |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 87 | if (dev_priv->chipset == 0x50) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 88 | inst = NV50_PFIFO_CTX_TABLE_INSTANCE_MASK_G80; |
| 89 | else |
| 90 | inst = NV50_PFIFO_CTX_TABLE_INSTANCE_MASK_G84; |
| 91 | nv_wr32(dev, NV50_PFIFO_CTX_TABLE(channel), inst); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | static void |
| 95 | nv50_fifo_init_reset(struct drm_device *dev) |
| 96 | { |
| 97 | uint32_t pmc_e = NV_PMC_ENABLE_PFIFO; |
| 98 | |
| 99 | NV_DEBUG(dev, "\n"); |
| 100 | |
| 101 | nv_wr32(dev, NV03_PMC_ENABLE, nv_rd32(dev, NV03_PMC_ENABLE) & ~pmc_e); |
| 102 | nv_wr32(dev, NV03_PMC_ENABLE, nv_rd32(dev, NV03_PMC_ENABLE) | pmc_e); |
| 103 | } |
| 104 | |
| 105 | static void |
| 106 | nv50_fifo_init_intr(struct drm_device *dev) |
| 107 | { |
| 108 | NV_DEBUG(dev, "\n"); |
| 109 | |
Ben Skeggs | 5178d40 | 2010-11-03 10:56:05 +1000 | [diff] [blame] | 110 | nouveau_irq_register(dev, 8, nv04_fifo_isr); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 111 | nv_wr32(dev, NV03_PFIFO_INTR_0, 0xFFFFFFFF); |
| 112 | nv_wr32(dev, NV03_PFIFO_INTR_EN_0, 0xFFFFFFFF); |
| 113 | } |
| 114 | |
| 115 | static void |
| 116 | nv50_fifo_init_context_table(struct drm_device *dev) |
| 117 | { |
| 118 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 119 | int i; |
| 120 | |
| 121 | NV_DEBUG(dev, "\n"); |
| 122 | |
| 123 | for (i = 0; i < NV50_PFIFO_CTX_TABLE__SIZE; i++) { |
Ben Skeggs | cff5c13 | 2010-10-06 16:16:59 +1000 | [diff] [blame] | 124 | if (dev_priv->channels.ptr[i]) |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 125 | nv50_fifo_channel_enable(dev, i); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 126 | else |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 127 | nv50_fifo_channel_disable(dev, i); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 128 | } |
| 129 | |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 130 | nv50_fifo_playlist_update(dev); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | static void |
| 134 | nv50_fifo_init_regs__nv(struct drm_device *dev) |
| 135 | { |
| 136 | NV_DEBUG(dev, "\n"); |
| 137 | |
| 138 | nv_wr32(dev, 0x250c, 0x6f3cfc34); |
| 139 | } |
| 140 | |
| 141 | static void |
| 142 | nv50_fifo_init_regs(struct drm_device *dev) |
| 143 | { |
| 144 | NV_DEBUG(dev, "\n"); |
| 145 | |
| 146 | nv_wr32(dev, 0x2500, 0); |
| 147 | nv_wr32(dev, 0x3250, 0); |
| 148 | nv_wr32(dev, 0x3220, 0); |
| 149 | nv_wr32(dev, 0x3204, 0); |
| 150 | nv_wr32(dev, 0x3210, 0); |
| 151 | nv_wr32(dev, 0x3270, 0); |
Ben Skeggs | ec23802 | 2011-02-02 14:57:05 +1000 | [diff] [blame^] | 152 | nv_wr32(dev, 0x2044, 0x01003fff); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 153 | |
| 154 | /* Enable dummy channels setup by nv50_instmem.c */ |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 155 | nv50_fifo_channel_enable(dev, 0); |
| 156 | nv50_fifo_channel_enable(dev, 127); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | int |
| 160 | nv50_fifo_init(struct drm_device *dev) |
| 161 | { |
| 162 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 163 | struct nouveau_fifo_engine *pfifo = &dev_priv->engine.fifo; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 164 | int ret; |
| 165 | |
| 166 | NV_DEBUG(dev, "\n"); |
| 167 | |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 168 | if (pfifo->playlist[0]) { |
| 169 | pfifo->cur_playlist = !pfifo->cur_playlist; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 170 | goto just_reset; |
| 171 | } |
| 172 | |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 173 | ret = nouveau_gpuobj_new(dev, NULL, 128*4, 0x1000, |
| 174 | NVOBJ_FLAG_ZERO_ALLOC, |
| 175 | &pfifo->playlist[0]); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 176 | if (ret) { |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 177 | NV_ERROR(dev, "error creating playlist 0: %d\n", ret); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 178 | return ret; |
| 179 | } |
| 180 | |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 181 | ret = nouveau_gpuobj_new(dev, NULL, 128*4, 0x1000, |
| 182 | NVOBJ_FLAG_ZERO_ALLOC, |
| 183 | &pfifo->playlist[1]); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 184 | if (ret) { |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 185 | nouveau_gpuobj_ref(NULL, &pfifo->playlist[0]); |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 186 | NV_ERROR(dev, "error creating playlist 1: %d\n", ret); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 187 | return ret; |
| 188 | } |
| 189 | |
| 190 | just_reset: |
| 191 | nv50_fifo_init_reset(dev); |
| 192 | nv50_fifo_init_intr(dev); |
| 193 | nv50_fifo_init_context_table(dev); |
| 194 | nv50_fifo_init_regs__nv(dev); |
| 195 | nv50_fifo_init_regs(dev); |
| 196 | dev_priv->engine.fifo.enable(dev); |
| 197 | dev_priv->engine.fifo.reassign(dev, true); |
| 198 | |
| 199 | return 0; |
| 200 | } |
| 201 | |
| 202 | void |
| 203 | nv50_fifo_takedown(struct drm_device *dev) |
| 204 | { |
| 205 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 206 | struct nouveau_fifo_engine *pfifo = &dev_priv->engine.fifo; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 207 | |
| 208 | NV_DEBUG(dev, "\n"); |
| 209 | |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 210 | if (!pfifo->playlist[0]) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 211 | return; |
| 212 | |
Ben Skeggs | 5178d40 | 2010-11-03 10:56:05 +1000 | [diff] [blame] | 213 | nv_wr32(dev, 0x2140, 0x00000000); |
| 214 | nouveau_irq_unregister(dev, 8); |
| 215 | |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 216 | nouveau_gpuobj_ref(NULL, &pfifo->playlist[0]); |
| 217 | nouveau_gpuobj_ref(NULL, &pfifo->playlist[1]); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | int |
| 221 | nv50_fifo_channel_id(struct drm_device *dev) |
| 222 | { |
| 223 | return nv_rd32(dev, NV03_PFIFO_CACHE1_PUSH1) & |
| 224 | NV50_PFIFO_CACHE1_PUSH1_CHID_MASK; |
| 225 | } |
| 226 | |
| 227 | int |
| 228 | nv50_fifo_create_context(struct nouveau_channel *chan) |
| 229 | { |
| 230 | struct drm_device *dev = chan->dev; |
| 231 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 232 | struct nouveau_gpuobj *ramfc = NULL; |
Maarten Maathuis | ff9e527 | 2010-02-01 20:58:27 +0100 | [diff] [blame] | 233 | unsigned long flags; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 234 | int ret; |
| 235 | |
| 236 | NV_DEBUG(dev, "ch%d\n", chan->id); |
| 237 | |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 238 | if (dev_priv->chipset == 0x50) { |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 239 | ret = nouveau_gpuobj_new_fake(dev, chan->ramin->pinst, |
| 240 | chan->ramin->vinst, 0x100, |
Ben Skeggs | de3a6c0 | 2010-09-01 15:24:30 +1000 | [diff] [blame] | 241 | NVOBJ_FLAG_ZERO_ALLOC | |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 242 | NVOBJ_FLAG_ZERO_FREE, |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 243 | &chan->ramfc); |
| 244 | if (ret) |
| 245 | return ret; |
| 246 | |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 247 | ret = nouveau_gpuobj_new_fake(dev, chan->ramin->pinst + 0x0400, |
| 248 | chan->ramin->vinst + 0x0400, |
| 249 | 4096, 0, &chan->cache); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 250 | if (ret) |
| 251 | return ret; |
| 252 | } else { |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 253 | ret = nouveau_gpuobj_new(dev, chan, 0x100, 256, |
| 254 | NVOBJ_FLAG_ZERO_ALLOC | |
| 255 | NVOBJ_FLAG_ZERO_FREE, &chan->ramfc); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 256 | if (ret) |
| 257 | return ret; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 258 | |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 259 | ret = nouveau_gpuobj_new(dev, chan, 4096, 1024, |
| 260 | 0, &chan->cache); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 261 | if (ret) |
| 262 | return ret; |
| 263 | } |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 264 | ramfc = chan->ramfc; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 265 | |
Ben Skeggs | d908175 | 2010-11-22 16:05:54 +1000 | [diff] [blame] | 266 | chan->user = ioremap(pci_resource_start(dev->pdev, 0) + |
| 267 | NV50_USER(chan->id), PAGE_SIZE); |
| 268 | if (!chan->user) |
| 269 | return -ENOMEM; |
| 270 | |
Maarten Maathuis | ff9e527 | 2010-02-01 20:58:27 +0100 | [diff] [blame] | 271 | spin_lock_irqsave(&dev_priv->context_switch_lock, flags); |
| 272 | |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 273 | nv_wo32(ramfc, 0x48, chan->pushbuf->cinst >> 4); |
Ben Skeggs | e05c5a3 | 2010-09-01 15:24:35 +1000 | [diff] [blame] | 274 | nv_wo32(ramfc, 0x80, ((chan->ramht->bits - 9) << 27) | |
Ben Skeggs | b3beb16 | 2010-09-01 15:24:29 +1000 | [diff] [blame] | 275 | (4 << 24) /* SEARCH_FULL */ | |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 276 | (chan->ramht->gpuobj->cinst >> 4)); |
Ben Skeggs | ec23802 | 2011-02-02 14:57:05 +1000 | [diff] [blame^] | 277 | nv_wo32(ramfc, 0x44, 0x01003fff); |
Ben Skeggs | b3beb16 | 2010-09-01 15:24:29 +1000 | [diff] [blame] | 278 | nv_wo32(ramfc, 0x60, 0x7fffffff); |
| 279 | nv_wo32(ramfc, 0x40, 0x00000000); |
| 280 | nv_wo32(ramfc, 0x7c, 0x30000001); |
| 281 | nv_wo32(ramfc, 0x78, 0x00000000); |
| 282 | nv_wo32(ramfc, 0x3c, 0x403f6078); |
| 283 | nv_wo32(ramfc, 0x50, chan->pushbuf_base + chan->dma.ib_base * 4); |
| 284 | nv_wo32(ramfc, 0x54, drm_order(chan->dma.ib_max + 1) << 16); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 285 | |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 286 | if (dev_priv->chipset != 0x50) { |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 287 | nv_wo32(chan->ramin, 0, chan->id); |
| 288 | nv_wo32(chan->ramin, 4, chan->ramfc->vinst >> 8); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 289 | |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 290 | nv_wo32(ramfc, 0x88, chan->cache->vinst >> 10); |
| 291 | nv_wo32(ramfc, 0x98, chan->ramin->vinst >> 12); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 292 | } |
| 293 | |
Ben Skeggs | f56cb86 | 2010-07-08 11:29:10 +1000 | [diff] [blame] | 294 | dev_priv->engine.instmem.flush(dev); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 295 | |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 296 | nv50_fifo_channel_enable(dev, chan->id); |
| 297 | nv50_fifo_playlist_update(dev); |
Maarten Maathuis | ff9e527 | 2010-02-01 20:58:27 +0100 | [diff] [blame] | 298 | spin_unlock_irqrestore(&dev_priv->context_switch_lock, flags); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 299 | return 0; |
| 300 | } |
| 301 | |
| 302 | void |
| 303 | nv50_fifo_destroy_context(struct nouveau_channel *chan) |
| 304 | { |
| 305 | struct drm_device *dev = chan->dev; |
Francisco Jerez | 3945e47 | 2010-10-18 03:53:39 +0200 | [diff] [blame] | 306 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 307 | struct nouveau_fifo_engine *pfifo = &dev_priv->engine.fifo; |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 308 | struct nouveau_gpuobj *ramfc = NULL; |
Francisco Jerez | 3945e47 | 2010-10-18 03:53:39 +0200 | [diff] [blame] | 309 | unsigned long flags; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 310 | |
| 311 | NV_DEBUG(dev, "ch%d\n", chan->id); |
| 312 | |
Francisco Jerez | 3945e47 | 2010-10-18 03:53:39 +0200 | [diff] [blame] | 313 | spin_lock_irqsave(&dev_priv->context_switch_lock, flags); |
| 314 | pfifo->reassign(dev, false); |
| 315 | |
| 316 | /* Unload the context if it's the currently active one */ |
| 317 | if (pfifo->channel_id(dev) == chan->id) { |
| 318 | pfifo->disable(dev); |
| 319 | pfifo->unload_context(dev); |
| 320 | pfifo->enable(dev); |
| 321 | } |
| 322 | |
Maarten Maathuis | a87ff62 | 2010-02-01 18:47:52 +0100 | [diff] [blame] | 323 | /* This will ensure the channel is seen as disabled. */ |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 324 | nouveau_gpuobj_ref(chan->ramfc, &ramfc); |
| 325 | nouveau_gpuobj_ref(NULL, &chan->ramfc); |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 326 | nv50_fifo_channel_disable(dev, chan->id); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 327 | |
| 328 | /* Dummy channel, also used on ch 127 */ |
| 329 | if (chan->id == 0) |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 330 | nv50_fifo_channel_disable(dev, 127); |
| 331 | nv50_fifo_playlist_update(dev); |
Maarten Maathuis | a87ff62 | 2010-02-01 18:47:52 +0100 | [diff] [blame] | 332 | |
Francisco Jerez | 3945e47 | 2010-10-18 03:53:39 +0200 | [diff] [blame] | 333 | pfifo->reassign(dev, true); |
| 334 | spin_unlock_irqrestore(&dev_priv->context_switch_lock, flags); |
| 335 | |
| 336 | /* Free the channel resources */ |
Ben Skeggs | d908175 | 2010-11-22 16:05:54 +1000 | [diff] [blame] | 337 | if (chan->user) { |
| 338 | iounmap(chan->user); |
| 339 | chan->user = NULL; |
| 340 | } |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 341 | nouveau_gpuobj_ref(NULL, &ramfc); |
| 342 | nouveau_gpuobj_ref(NULL, &chan->cache); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 343 | } |
| 344 | |
| 345 | int |
| 346 | nv50_fifo_load_context(struct nouveau_channel *chan) |
| 347 | { |
| 348 | struct drm_device *dev = chan->dev; |
| 349 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 350 | struct nouveau_gpuobj *ramfc = chan->ramfc; |
| 351 | struct nouveau_gpuobj *cache = chan->cache; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 352 | int ptr, cnt; |
| 353 | |
| 354 | NV_DEBUG(dev, "ch%d\n", chan->id); |
| 355 | |
Ben Skeggs | b3beb16 | 2010-09-01 15:24:29 +1000 | [diff] [blame] | 356 | nv_wr32(dev, 0x3330, nv_ro32(ramfc, 0x00)); |
| 357 | nv_wr32(dev, 0x3334, nv_ro32(ramfc, 0x04)); |
| 358 | nv_wr32(dev, 0x3240, nv_ro32(ramfc, 0x08)); |
| 359 | nv_wr32(dev, 0x3320, nv_ro32(ramfc, 0x0c)); |
| 360 | nv_wr32(dev, 0x3244, nv_ro32(ramfc, 0x10)); |
| 361 | nv_wr32(dev, 0x3328, nv_ro32(ramfc, 0x14)); |
| 362 | nv_wr32(dev, 0x3368, nv_ro32(ramfc, 0x18)); |
| 363 | nv_wr32(dev, 0x336c, nv_ro32(ramfc, 0x1c)); |
| 364 | nv_wr32(dev, 0x3370, nv_ro32(ramfc, 0x20)); |
| 365 | nv_wr32(dev, 0x3374, nv_ro32(ramfc, 0x24)); |
| 366 | nv_wr32(dev, 0x3378, nv_ro32(ramfc, 0x28)); |
| 367 | nv_wr32(dev, 0x337c, nv_ro32(ramfc, 0x2c)); |
| 368 | nv_wr32(dev, 0x3228, nv_ro32(ramfc, 0x30)); |
| 369 | nv_wr32(dev, 0x3364, nv_ro32(ramfc, 0x34)); |
| 370 | nv_wr32(dev, 0x32a0, nv_ro32(ramfc, 0x38)); |
| 371 | nv_wr32(dev, 0x3224, nv_ro32(ramfc, 0x3c)); |
| 372 | nv_wr32(dev, 0x324c, nv_ro32(ramfc, 0x40)); |
| 373 | nv_wr32(dev, 0x2044, nv_ro32(ramfc, 0x44)); |
| 374 | nv_wr32(dev, 0x322c, nv_ro32(ramfc, 0x48)); |
| 375 | nv_wr32(dev, 0x3234, nv_ro32(ramfc, 0x4c)); |
| 376 | nv_wr32(dev, 0x3340, nv_ro32(ramfc, 0x50)); |
| 377 | nv_wr32(dev, 0x3344, nv_ro32(ramfc, 0x54)); |
| 378 | nv_wr32(dev, 0x3280, nv_ro32(ramfc, 0x58)); |
| 379 | nv_wr32(dev, 0x3254, nv_ro32(ramfc, 0x5c)); |
| 380 | nv_wr32(dev, 0x3260, nv_ro32(ramfc, 0x60)); |
| 381 | nv_wr32(dev, 0x3264, nv_ro32(ramfc, 0x64)); |
| 382 | nv_wr32(dev, 0x3268, nv_ro32(ramfc, 0x68)); |
| 383 | nv_wr32(dev, 0x326c, nv_ro32(ramfc, 0x6c)); |
| 384 | nv_wr32(dev, 0x32e4, nv_ro32(ramfc, 0x70)); |
| 385 | nv_wr32(dev, 0x3248, nv_ro32(ramfc, 0x74)); |
| 386 | nv_wr32(dev, 0x2088, nv_ro32(ramfc, 0x78)); |
| 387 | nv_wr32(dev, 0x2058, nv_ro32(ramfc, 0x7c)); |
| 388 | nv_wr32(dev, 0x2210, nv_ro32(ramfc, 0x80)); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 389 | |
Ben Skeggs | b3beb16 | 2010-09-01 15:24:29 +1000 | [diff] [blame] | 390 | cnt = nv_ro32(ramfc, 0x84); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 391 | for (ptr = 0; ptr < cnt; ptr++) { |
| 392 | nv_wr32(dev, NV40_PFIFO_CACHE1_METHOD(ptr), |
Ben Skeggs | b3beb16 | 2010-09-01 15:24:29 +1000 | [diff] [blame] | 393 | nv_ro32(cache, (ptr * 8) + 0)); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 394 | nv_wr32(dev, NV40_PFIFO_CACHE1_DATA(ptr), |
Ben Skeggs | b3beb16 | 2010-09-01 15:24:29 +1000 | [diff] [blame] | 395 | nv_ro32(cache, (ptr * 8) + 4)); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 396 | } |
Ben Skeggs | 7fb8ec8 | 2010-01-05 09:41:05 +1000 | [diff] [blame] | 397 | nv_wr32(dev, NV03_PFIFO_CACHE1_PUT, cnt << 2); |
| 398 | nv_wr32(dev, NV03_PFIFO_CACHE1_GET, 0); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 399 | |
| 400 | /* guessing that all the 0x34xx regs aren't on NV50 */ |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 401 | if (dev_priv->chipset != 0x50) { |
Ben Skeggs | b3beb16 | 2010-09-01 15:24:29 +1000 | [diff] [blame] | 402 | nv_wr32(dev, 0x340c, nv_ro32(ramfc, 0x88)); |
| 403 | nv_wr32(dev, 0x3400, nv_ro32(ramfc, 0x8c)); |
| 404 | nv_wr32(dev, 0x3404, nv_ro32(ramfc, 0x90)); |
| 405 | nv_wr32(dev, 0x3408, nv_ro32(ramfc, 0x94)); |
| 406 | nv_wr32(dev, 0x3410, nv_ro32(ramfc, 0x98)); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 407 | } |
| 408 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 409 | nv_wr32(dev, NV03_PFIFO_CACHE1_PUSH1, chan->id | (1<<16)); |
| 410 | return 0; |
| 411 | } |
| 412 | |
| 413 | int |
| 414 | nv50_fifo_unload_context(struct drm_device *dev) |
| 415 | { |
| 416 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 417 | struct nouveau_fifo_engine *pfifo = &dev_priv->engine.fifo; |
| 418 | struct nouveau_gpuobj *ramfc, *cache; |
| 419 | struct nouveau_channel *chan = NULL; |
| 420 | int chid, get, put, ptr; |
| 421 | |
| 422 | NV_DEBUG(dev, "\n"); |
| 423 | |
| 424 | chid = pfifo->channel_id(dev); |
Ben Skeggs | 3c8868d | 2009-12-16 14:51:13 +1000 | [diff] [blame] | 425 | if (chid < 1 || chid >= dev_priv->engine.fifo.channels - 1) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 426 | return 0; |
| 427 | |
Ben Skeggs | cff5c13 | 2010-10-06 16:16:59 +1000 | [diff] [blame] | 428 | chan = dev_priv->channels.ptr[chid]; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 429 | if (!chan) { |
| 430 | NV_ERROR(dev, "Inactive channel on PFIFO: %d\n", chid); |
| 431 | return -EINVAL; |
| 432 | } |
| 433 | NV_DEBUG(dev, "ch%d\n", chan->id); |
Ben Skeggs | a8eaebc | 2010-09-01 15:24:31 +1000 | [diff] [blame] | 434 | ramfc = chan->ramfc; |
| 435 | cache = chan->cache; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 436 | |
Ben Skeggs | b3beb16 | 2010-09-01 15:24:29 +1000 | [diff] [blame] | 437 | nv_wo32(ramfc, 0x00, nv_rd32(dev, 0x3330)); |
| 438 | nv_wo32(ramfc, 0x04, nv_rd32(dev, 0x3334)); |
| 439 | nv_wo32(ramfc, 0x08, nv_rd32(dev, 0x3240)); |
| 440 | nv_wo32(ramfc, 0x0c, nv_rd32(dev, 0x3320)); |
| 441 | nv_wo32(ramfc, 0x10, nv_rd32(dev, 0x3244)); |
| 442 | nv_wo32(ramfc, 0x14, nv_rd32(dev, 0x3328)); |
| 443 | nv_wo32(ramfc, 0x18, nv_rd32(dev, 0x3368)); |
| 444 | nv_wo32(ramfc, 0x1c, nv_rd32(dev, 0x336c)); |
| 445 | nv_wo32(ramfc, 0x20, nv_rd32(dev, 0x3370)); |
| 446 | nv_wo32(ramfc, 0x24, nv_rd32(dev, 0x3374)); |
| 447 | nv_wo32(ramfc, 0x28, nv_rd32(dev, 0x3378)); |
| 448 | nv_wo32(ramfc, 0x2c, nv_rd32(dev, 0x337c)); |
| 449 | nv_wo32(ramfc, 0x30, nv_rd32(dev, 0x3228)); |
| 450 | nv_wo32(ramfc, 0x34, nv_rd32(dev, 0x3364)); |
| 451 | nv_wo32(ramfc, 0x38, nv_rd32(dev, 0x32a0)); |
| 452 | nv_wo32(ramfc, 0x3c, nv_rd32(dev, 0x3224)); |
| 453 | nv_wo32(ramfc, 0x40, nv_rd32(dev, 0x324c)); |
| 454 | nv_wo32(ramfc, 0x44, nv_rd32(dev, 0x2044)); |
| 455 | nv_wo32(ramfc, 0x48, nv_rd32(dev, 0x322c)); |
| 456 | nv_wo32(ramfc, 0x4c, nv_rd32(dev, 0x3234)); |
| 457 | nv_wo32(ramfc, 0x50, nv_rd32(dev, 0x3340)); |
| 458 | nv_wo32(ramfc, 0x54, nv_rd32(dev, 0x3344)); |
| 459 | nv_wo32(ramfc, 0x58, nv_rd32(dev, 0x3280)); |
| 460 | nv_wo32(ramfc, 0x5c, nv_rd32(dev, 0x3254)); |
| 461 | nv_wo32(ramfc, 0x60, nv_rd32(dev, 0x3260)); |
| 462 | nv_wo32(ramfc, 0x64, nv_rd32(dev, 0x3264)); |
| 463 | nv_wo32(ramfc, 0x68, nv_rd32(dev, 0x3268)); |
| 464 | nv_wo32(ramfc, 0x6c, nv_rd32(dev, 0x326c)); |
| 465 | nv_wo32(ramfc, 0x70, nv_rd32(dev, 0x32e4)); |
| 466 | nv_wo32(ramfc, 0x74, nv_rd32(dev, 0x3248)); |
| 467 | nv_wo32(ramfc, 0x78, nv_rd32(dev, 0x2088)); |
| 468 | nv_wo32(ramfc, 0x7c, nv_rd32(dev, 0x2058)); |
| 469 | nv_wo32(ramfc, 0x80, nv_rd32(dev, 0x2210)); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 470 | |
| 471 | put = (nv_rd32(dev, NV03_PFIFO_CACHE1_PUT) & 0x7ff) >> 2; |
| 472 | get = (nv_rd32(dev, NV03_PFIFO_CACHE1_GET) & 0x7ff) >> 2; |
| 473 | ptr = 0; |
| 474 | while (put != get) { |
Ben Skeggs | b3beb16 | 2010-09-01 15:24:29 +1000 | [diff] [blame] | 475 | nv_wo32(cache, ptr + 0, |
| 476 | nv_rd32(dev, NV40_PFIFO_CACHE1_METHOD(get))); |
| 477 | nv_wo32(cache, ptr + 4, |
| 478 | nv_rd32(dev, NV40_PFIFO_CACHE1_DATA(get))); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 479 | get = (get + 1) & 0x1ff; |
Ben Skeggs | b3beb16 | 2010-09-01 15:24:29 +1000 | [diff] [blame] | 480 | ptr += 8; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | /* guessing that all the 0x34xx regs aren't on NV50 */ |
Ben Skeggs | ac94a34 | 2010-07-08 15:28:48 +1000 | [diff] [blame] | 484 | if (dev_priv->chipset != 0x50) { |
Ben Skeggs | b3beb16 | 2010-09-01 15:24:29 +1000 | [diff] [blame] | 485 | nv_wo32(ramfc, 0x84, ptr >> 3); |
| 486 | nv_wo32(ramfc, 0x88, nv_rd32(dev, 0x340c)); |
| 487 | nv_wo32(ramfc, 0x8c, nv_rd32(dev, 0x3400)); |
| 488 | nv_wo32(ramfc, 0x90, nv_rd32(dev, 0x3404)); |
| 489 | nv_wo32(ramfc, 0x94, nv_rd32(dev, 0x3408)); |
| 490 | nv_wo32(ramfc, 0x98, nv_rd32(dev, 0x3410)); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 491 | } |
| 492 | |
Ben Skeggs | f56cb86 | 2010-07-08 11:29:10 +1000 | [diff] [blame] | 493 | dev_priv->engine.instmem.flush(dev); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 494 | |
| 495 | /*XXX: probably reload ch127 (NULL) state back too */ |
| 496 | nv_wr32(dev, NV03_PFIFO_CACHE1_PUSH1, 127); |
| 497 | return 0; |
| 498 | } |
| 499 | |
Ben Skeggs | 56ac747 | 2010-10-22 10:26:24 +1000 | [diff] [blame] | 500 | void |
| 501 | nv50_fifo_tlb_flush(struct drm_device *dev) |
| 502 | { |
Ben Skeggs | a11c319 | 2010-08-27 10:00:25 +1000 | [diff] [blame] | 503 | nv50_vm_flush_engine(dev, 5); |
Ben Skeggs | 56ac747 | 2010-10-22 10:26:24 +1000 | [diff] [blame] | 504 | } |