Ben Skeggs | 4b223ee | 2010-08-03 10:00:56 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2010 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 | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 25 | #include <linux/firmware.h> |
| 26 | |
Ben Skeggs | 4b223ee | 2010-08-03 10:00:56 +1000 | [diff] [blame] | 27 | #include "drmP.h" |
| 28 | |
| 29 | #include "nouveau_drv.h" |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 30 | #include "nouveau_mm.h" |
| 31 | #include "nvc0_graph.h" |
| 32 | |
| 33 | static void nvc0_graph_isr(struct drm_device *); |
| 34 | static int nvc0_graph_unload_context_to(struct drm_device *dev, u64 chan); |
Ben Skeggs | 4b223ee | 2010-08-03 10:00:56 +1000 | [diff] [blame] | 35 | |
| 36 | void |
| 37 | nvc0_graph_fifo_access(struct drm_device *dev, bool enabled) |
| 38 | { |
| 39 | } |
| 40 | |
| 41 | struct nouveau_channel * |
| 42 | nvc0_graph_channel(struct drm_device *dev) |
| 43 | { |
| 44 | return NULL; |
| 45 | } |
| 46 | |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 47 | static int |
| 48 | nvc0_graph_construct_context(struct nouveau_channel *chan) |
| 49 | { |
| 50 | struct drm_nouveau_private *dev_priv = chan->dev->dev_private; |
| 51 | struct nvc0_graph_priv *priv = dev_priv->engine.graph.priv; |
| 52 | struct nvc0_graph_chan *grch = chan->pgraph_ctx; |
| 53 | struct drm_device *dev = chan->dev; |
| 54 | int ret, i; |
| 55 | u32 *ctx; |
| 56 | |
| 57 | ctx = kmalloc(priv->grctx_size, GFP_KERNEL); |
| 58 | if (!ctx) |
| 59 | return -ENOMEM; |
| 60 | |
| 61 | nvc0_graph_load_context(chan); |
| 62 | |
| 63 | nv_wo32(grch->grctx, 0x1c, 1); |
| 64 | nv_wo32(grch->grctx, 0x20, 0); |
| 65 | nv_wo32(grch->grctx, 0x28, 0); |
| 66 | nv_wo32(grch->grctx, 0x2c, 0); |
| 67 | dev_priv->engine.instmem.flush(dev); |
| 68 | |
| 69 | ret = nvc0_grctx_generate(chan); |
| 70 | if (ret) { |
| 71 | kfree(ctx); |
| 72 | return ret; |
| 73 | } |
| 74 | |
| 75 | ret = nvc0_graph_unload_context_to(dev, chan->ramin->vinst); |
| 76 | if (ret) { |
| 77 | kfree(ctx); |
| 78 | return ret; |
| 79 | } |
| 80 | |
| 81 | for (i = 0; i < priv->grctx_size; i += 4) |
| 82 | ctx[i / 4] = nv_ro32(grch->grctx, i); |
| 83 | |
| 84 | priv->grctx_vals = ctx; |
| 85 | return 0; |
| 86 | } |
| 87 | |
| 88 | static int |
| 89 | nvc0_graph_create_context_mmio_list(struct nouveau_channel *chan) |
| 90 | { |
| 91 | struct drm_nouveau_private *dev_priv = chan->dev->dev_private; |
| 92 | struct nvc0_graph_priv *priv = dev_priv->engine.graph.priv; |
| 93 | struct nvc0_graph_chan *grch = chan->pgraph_ctx; |
| 94 | struct drm_device *dev = chan->dev; |
| 95 | int i = 0, gpc, tp, ret; |
| 96 | u32 magic; |
| 97 | |
| 98 | ret = nouveau_gpuobj_new(dev, NULL, 0x2000, 256, NVOBJ_FLAG_VM, |
| 99 | &grch->unk408004); |
| 100 | if (ret) |
| 101 | return ret; |
| 102 | |
| 103 | ret = nouveau_gpuobj_new(dev, NULL, 0x8000, 256, NVOBJ_FLAG_VM, |
| 104 | &grch->unk40800c); |
| 105 | if (ret) |
| 106 | return ret; |
| 107 | |
| 108 | ret = nouveau_gpuobj_new(dev, NULL, 384 * 1024, 4096, NVOBJ_FLAG_VM, |
| 109 | &grch->unk418810); |
| 110 | if (ret) |
| 111 | return ret; |
| 112 | |
| 113 | ret = nouveau_gpuobj_new(dev, NULL, 0x1000, 0, NVOBJ_FLAG_VM, |
| 114 | &grch->mmio); |
| 115 | if (ret) |
| 116 | return ret; |
| 117 | |
| 118 | |
| 119 | nv_wo32(grch->mmio, i++ * 4, 0x00408004); |
| 120 | nv_wo32(grch->mmio, i++ * 4, grch->unk408004->vinst >> 8); |
| 121 | nv_wo32(grch->mmio, i++ * 4, 0x00408008); |
| 122 | nv_wo32(grch->mmio, i++ * 4, 0x80000018); |
| 123 | |
| 124 | nv_wo32(grch->mmio, i++ * 4, 0x0040800c); |
| 125 | nv_wo32(grch->mmio, i++ * 4, grch->unk40800c->vinst >> 8); |
| 126 | nv_wo32(grch->mmio, i++ * 4, 0x00408010); |
| 127 | nv_wo32(grch->mmio, i++ * 4, 0x80000000); |
| 128 | |
| 129 | nv_wo32(grch->mmio, i++ * 4, 0x00418810); |
| 130 | nv_wo32(grch->mmio, i++ * 4, 0x80000000 | grch->unk418810->vinst >> 12); |
| 131 | nv_wo32(grch->mmio, i++ * 4, 0x00419848); |
| 132 | nv_wo32(grch->mmio, i++ * 4, 0x10000000 | grch->unk418810->vinst >> 12); |
| 133 | |
| 134 | nv_wo32(grch->mmio, i++ * 4, 0x00419004); |
| 135 | nv_wo32(grch->mmio, i++ * 4, grch->unk40800c->vinst >> 8); |
| 136 | nv_wo32(grch->mmio, i++ * 4, 0x00419008); |
| 137 | nv_wo32(grch->mmio, i++ * 4, 0x00000000); |
| 138 | |
| 139 | nv_wo32(grch->mmio, i++ * 4, 0x00418808); |
| 140 | nv_wo32(grch->mmio, i++ * 4, grch->unk408004->vinst >> 8); |
| 141 | nv_wo32(grch->mmio, i++ * 4, 0x0041880c); |
| 142 | nv_wo32(grch->mmio, i++ * 4, 0x80000018); |
| 143 | |
| 144 | magic = 0x02180000; |
| 145 | nv_wo32(grch->mmio, i++ * 4, 0x00405830); |
| 146 | nv_wo32(grch->mmio, i++ * 4, magic); |
| 147 | for (gpc = 0; gpc < priv->gpc_nr; gpc++) { |
| 148 | for (tp = 0; tp < priv->tp_nr[gpc]; tp++, magic += 0x02fc) { |
| 149 | u32 reg = 0x504520 + (gpc * 0x8000) + (tp * 0x0800); |
| 150 | nv_wo32(grch->mmio, i++ * 4, reg); |
| 151 | nv_wo32(grch->mmio, i++ * 4, magic); |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | grch->mmio_nr = i / 2; |
| 156 | return 0; |
| 157 | } |
| 158 | |
Ben Skeggs | 4b223ee | 2010-08-03 10:00:56 +1000 | [diff] [blame] | 159 | int |
| 160 | nvc0_graph_create_context(struct nouveau_channel *chan) |
| 161 | { |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 162 | struct drm_nouveau_private *dev_priv = chan->dev->dev_private; |
| 163 | struct nouveau_instmem_engine *pinstmem = &dev_priv->engine.instmem; |
| 164 | struct nouveau_pgraph_engine *pgraph = &dev_priv->engine.graph; |
| 165 | struct nvc0_graph_priv *priv = pgraph->priv; |
| 166 | struct nvc0_graph_chan *grch; |
| 167 | struct drm_device *dev = chan->dev; |
| 168 | struct nouveau_gpuobj *grctx; |
| 169 | int ret, i; |
| 170 | |
| 171 | chan->pgraph_ctx = kzalloc(sizeof(*grch), GFP_KERNEL); |
| 172 | if (!chan->pgraph_ctx) |
| 173 | return -ENOMEM; |
| 174 | grch = chan->pgraph_ctx; |
| 175 | |
| 176 | ret = nouveau_gpuobj_new(dev, NULL, priv->grctx_size, 256, |
| 177 | NVOBJ_FLAG_VM | NVOBJ_FLAG_ZERO_ALLOC, |
| 178 | &grch->grctx); |
| 179 | if (ret) |
| 180 | goto error; |
| 181 | chan->ramin_grctx = grch->grctx; |
| 182 | grctx = grch->grctx; |
| 183 | |
| 184 | ret = nvc0_graph_create_context_mmio_list(chan); |
| 185 | if (ret) |
| 186 | goto error; |
| 187 | |
| 188 | nv_wo32(chan->ramin, 0x0210, lower_32_bits(grctx->vinst) | 4); |
| 189 | nv_wo32(chan->ramin, 0x0214, upper_32_bits(grctx->vinst)); |
| 190 | pinstmem->flush(dev); |
| 191 | |
| 192 | if (!priv->grctx_vals) { |
| 193 | ret = nvc0_graph_construct_context(chan); |
| 194 | if (ret) |
| 195 | goto error; |
| 196 | } |
| 197 | |
| 198 | for (i = 0; i < priv->grctx_size; i += 4) |
| 199 | nv_wo32(grctx, i, priv->grctx_vals[i / 4]); |
| 200 | |
| 201 | nv_wo32(grctx, 0xf4, 0); |
| 202 | nv_wo32(grctx, 0xf8, 0); |
| 203 | nv_wo32(grctx, 0x10, grch->mmio_nr); |
| 204 | nv_wo32(grctx, 0x14, lower_32_bits(grch->mmio->vinst)); |
| 205 | nv_wo32(grctx, 0x18, upper_32_bits(grch->mmio->vinst)); |
| 206 | nv_wo32(grctx, 0x1c, 1); |
| 207 | nv_wo32(grctx, 0x20, 0); |
| 208 | nv_wo32(grctx, 0x28, 0); |
| 209 | nv_wo32(grctx, 0x2c, 0); |
| 210 | pinstmem->flush(dev); |
Ben Skeggs | 4b223ee | 2010-08-03 10:00:56 +1000 | [diff] [blame] | 211 | return 0; |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 212 | |
| 213 | error: |
| 214 | pgraph->destroy_context(chan); |
| 215 | return ret; |
Ben Skeggs | 4b223ee | 2010-08-03 10:00:56 +1000 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | void |
| 219 | nvc0_graph_destroy_context(struct nouveau_channel *chan) |
| 220 | { |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 221 | struct nvc0_graph_chan *grch; |
| 222 | |
| 223 | grch = chan->pgraph_ctx; |
| 224 | chan->pgraph_ctx = NULL; |
| 225 | if (!grch) |
| 226 | return; |
| 227 | |
| 228 | nouveau_gpuobj_ref(NULL, &grch->mmio); |
| 229 | nouveau_gpuobj_ref(NULL, &grch->unk418810); |
| 230 | nouveau_gpuobj_ref(NULL, &grch->unk40800c); |
| 231 | nouveau_gpuobj_ref(NULL, &grch->unk408004); |
| 232 | nouveau_gpuobj_ref(NULL, &grch->grctx); |
| 233 | chan->ramin_grctx = NULL; |
Ben Skeggs | 4b223ee | 2010-08-03 10:00:56 +1000 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | int |
| 237 | nvc0_graph_load_context(struct nouveau_channel *chan) |
| 238 | { |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 239 | struct drm_device *dev = chan->dev; |
| 240 | |
| 241 | nv_wr32(dev, 0x409840, 0x00000030); |
| 242 | nv_wr32(dev, 0x409500, 0x80000000 | chan->ramin->vinst >> 12); |
| 243 | nv_wr32(dev, 0x409504, 0x00000003); |
| 244 | if (!nv_wait(dev, 0x409800, 0x00000010, 0x00000010)) |
| 245 | NV_ERROR(dev, "PGRAPH: load_ctx timeout\n"); |
| 246 | |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 247 | return 0; |
| 248 | } |
| 249 | |
| 250 | static int |
| 251 | nvc0_graph_unload_context_to(struct drm_device *dev, u64 chan) |
| 252 | { |
| 253 | nv_wr32(dev, 0x409840, 0x00000003); |
| 254 | nv_wr32(dev, 0x409500, 0x80000000 | chan >> 12); |
| 255 | nv_wr32(dev, 0x409504, 0x00000009); |
| 256 | if (!nv_wait(dev, 0x409800, 0x00000001, 0x00000000)) { |
| 257 | NV_ERROR(dev, "PGRAPH: unload_ctx timeout\n"); |
| 258 | return -EBUSY; |
| 259 | } |
| 260 | |
Ben Skeggs | 4b223ee | 2010-08-03 10:00:56 +1000 | [diff] [blame] | 261 | return 0; |
| 262 | } |
| 263 | |
| 264 | int |
| 265 | nvc0_graph_unload_context(struct drm_device *dev) |
| 266 | { |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 267 | u64 inst = (u64)(nv_rd32(dev, 0x409b00) & 0x0fffffff) << 12; |
| 268 | return nvc0_graph_unload_context_to(dev, inst); |
| 269 | } |
| 270 | |
| 271 | static void |
| 272 | nvc0_graph_destroy(struct drm_device *dev) |
| 273 | { |
| 274 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 275 | struct nouveau_pgraph_engine *pgraph = &dev_priv->engine.graph; |
| 276 | struct nvc0_graph_priv *priv; |
| 277 | |
| 278 | priv = pgraph->priv; |
| 279 | if (!priv) |
| 280 | return; |
| 281 | |
| 282 | nouveau_irq_unregister(dev, 12); |
| 283 | |
| 284 | nouveau_gpuobj_ref(NULL, &priv->unk4188b8); |
| 285 | nouveau_gpuobj_ref(NULL, &priv->unk4188b4); |
| 286 | |
| 287 | if (priv->grctx_vals) |
| 288 | kfree(priv->grctx_vals); |
| 289 | kfree(priv); |
Ben Skeggs | 4b223ee | 2010-08-03 10:00:56 +1000 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | void |
| 293 | nvc0_graph_takedown(struct drm_device *dev) |
| 294 | { |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 295 | nvc0_graph_destroy(dev); |
| 296 | } |
| 297 | |
| 298 | static int |
| 299 | nvc0_graph_create(struct drm_device *dev) |
| 300 | { |
| 301 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 302 | struct nouveau_pgraph_engine *pgraph = &dev_priv->engine.graph; |
| 303 | struct nvc0_graph_priv *priv; |
| 304 | int ret, gpc, i; |
| 305 | |
| 306 | priv = kzalloc(sizeof(*priv), GFP_KERNEL); |
| 307 | if (!priv) |
| 308 | return -ENOMEM; |
| 309 | pgraph->priv = priv; |
| 310 | |
| 311 | ret = nouveau_gpuobj_new(dev, NULL, 0x1000, 256, 0, &priv->unk4188b4); |
| 312 | if (ret) |
| 313 | goto error; |
| 314 | |
| 315 | ret = nouveau_gpuobj_new(dev, NULL, 0x1000, 256, 0, &priv->unk4188b8); |
| 316 | if (ret) |
| 317 | goto error; |
| 318 | |
| 319 | for (i = 0; i < 0x1000; i += 4) { |
| 320 | nv_wo32(priv->unk4188b4, i, 0x00000010); |
| 321 | nv_wo32(priv->unk4188b8, i, 0x00000010); |
| 322 | } |
| 323 | |
| 324 | priv->gpc_nr = nv_rd32(dev, 0x409604) & 0x0000001f; |
| 325 | priv->rop_nr = (nv_rd32(dev, 0x409604) & 0x001f0000) >> 16; |
| 326 | for (gpc = 0; gpc < priv->gpc_nr; gpc++) { |
| 327 | priv->tp_nr[gpc] = nv_rd32(dev, GPC_UNIT(gpc, 0x2608)); |
| 328 | priv->tp_total += priv->tp_nr[gpc]; |
| 329 | } |
| 330 | |
| 331 | /*XXX: these need figuring out... */ |
| 332 | switch (dev_priv->chipset) { |
| 333 | case 0xc0: |
| 334 | if (priv->tp_total == 11) { /* 465, 3/4/4/0, 4 */ |
| 335 | priv->magic_not_rop_nr = 0x07; |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 336 | /* filled values up to tp_total, the rest 0 */ |
| 337 | priv->magicgpc980[0] = 0x22111000; |
| 338 | priv->magicgpc980[1] = 0x00000233; |
| 339 | priv->magicgpc980[2] = 0x00000000; |
| 340 | priv->magicgpc980[3] = 0x00000000; |
| 341 | priv->magicgpc918 = 0x000ba2e9; |
| 342 | } else |
| 343 | if (priv->tp_total == 14) { /* 470, 3/3/4/4, 5 */ |
| 344 | priv->magic_not_rop_nr = 0x05; |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 345 | priv->magicgpc980[0] = 0x11110000; |
| 346 | priv->magicgpc980[1] = 0x00233222; |
| 347 | priv->magicgpc980[2] = 0x00000000; |
| 348 | priv->magicgpc980[3] = 0x00000000; |
| 349 | priv->magicgpc918 = 0x00092493; |
| 350 | } else |
| 351 | if (priv->tp_total == 15) { /* 480, 3/4/4/4, 6 */ |
| 352 | priv->magic_not_rop_nr = 0x06; |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 353 | priv->magicgpc980[0] = 0x11110000; |
| 354 | priv->magicgpc980[1] = 0x03332222; |
| 355 | priv->magicgpc980[2] = 0x00000000; |
| 356 | priv->magicgpc980[3] = 0x00000000; |
| 357 | priv->magicgpc918 = 0x00088889; |
| 358 | } |
| 359 | break; |
| 360 | case 0xc3: /* 450, 4/0/0/0, 2 */ |
| 361 | priv->magic_not_rop_nr = 0x03; |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 362 | priv->magicgpc980[0] = 0x00003210; |
| 363 | priv->magicgpc980[1] = 0x00000000; |
| 364 | priv->magicgpc980[2] = 0x00000000; |
| 365 | priv->magicgpc980[3] = 0x00000000; |
| 366 | priv->magicgpc918 = 0x00200000; |
| 367 | break; |
| 368 | case 0xc4: /* 460, 3/4/0/0, 4 */ |
| 369 | priv->magic_not_rop_nr = 0x01; |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 370 | priv->magicgpc980[0] = 0x02321100; |
| 371 | priv->magicgpc980[1] = 0x00000000; |
| 372 | priv->magicgpc980[2] = 0x00000000; |
| 373 | priv->magicgpc980[3] = 0x00000000; |
| 374 | priv->magicgpc918 = 0x00124925; |
| 375 | break; |
| 376 | } |
| 377 | |
Ben Skeggs | b1cd916 | 2010-12-24 09:33:33 +1000 | [diff] [blame] | 378 | if (!priv->magic_not_rop_nr) { |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 379 | NV_ERROR(dev, "PGRAPH: unknown config: %d/%d/%d/%d, %d\n", |
| 380 | priv->tp_nr[0], priv->tp_nr[1], priv->tp_nr[2], |
| 381 | priv->tp_nr[3], priv->rop_nr); |
| 382 | /* use 0xc3's values... */ |
| 383 | priv->magic_not_rop_nr = 0x03; |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 384 | priv->magicgpc980[0] = 0x00003210; |
| 385 | priv->magicgpc980[1] = 0x00000000; |
| 386 | priv->magicgpc980[2] = 0x00000000; |
| 387 | priv->magicgpc980[3] = 0x00000000; |
| 388 | priv->magicgpc918 = 0x00200000; |
| 389 | } |
| 390 | |
| 391 | nouveau_irq_register(dev, 12, nvc0_graph_isr); |
| 392 | NVOBJ_CLASS(dev, 0x902d, GR); /* 2D */ |
| 393 | NVOBJ_CLASS(dev, 0x9039, GR); /* M2MF */ |
| 394 | NVOBJ_CLASS(dev, 0x9097, GR); /* 3D */ |
| 395 | NVOBJ_CLASS(dev, 0x90c0, GR); /* COMPUTE */ |
| 396 | return 0; |
| 397 | |
| 398 | error: |
| 399 | nvc0_graph_destroy(dev); |
| 400 | return ret; |
| 401 | } |
| 402 | |
| 403 | static void |
| 404 | nvc0_graph_init_obj418880(struct drm_device *dev) |
| 405 | { |
| 406 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 407 | struct nouveau_pgraph_engine *pgraph = &dev_priv->engine.graph; |
| 408 | struct nvc0_graph_priv *priv = pgraph->priv; |
| 409 | int i; |
| 410 | |
| 411 | nv_wr32(dev, GPC_BCAST(0x0880), 0x00000000); |
| 412 | nv_wr32(dev, GPC_BCAST(0x08a4), 0x00000000); |
| 413 | for (i = 0; i < 4; i++) |
| 414 | nv_wr32(dev, GPC_BCAST(0x0888) + (i * 4), 0x00000000); |
| 415 | nv_wr32(dev, GPC_BCAST(0x08b4), priv->unk4188b4->vinst >> 8); |
| 416 | nv_wr32(dev, GPC_BCAST(0x08b8), priv->unk4188b8->vinst >> 8); |
| 417 | } |
| 418 | |
| 419 | static void |
| 420 | nvc0_graph_init_regs(struct drm_device *dev) |
| 421 | { |
| 422 | nv_wr32(dev, 0x400080, 0x003083c2); |
| 423 | nv_wr32(dev, 0x400088, 0x00006fe7); |
| 424 | nv_wr32(dev, 0x40008c, 0x00000000); |
| 425 | nv_wr32(dev, 0x400090, 0x00000030); |
| 426 | nv_wr32(dev, 0x40013c, 0x013901f7); |
| 427 | nv_wr32(dev, 0x400140, 0x00000100); |
| 428 | nv_wr32(dev, 0x400144, 0x00000000); |
| 429 | nv_wr32(dev, 0x400148, 0x00000110); |
| 430 | nv_wr32(dev, 0x400138, 0x00000000); |
| 431 | nv_wr32(dev, 0x400130, 0x00000000); |
| 432 | nv_wr32(dev, 0x400134, 0x00000000); |
| 433 | nv_wr32(dev, 0x400124, 0x00000002); |
| 434 | } |
| 435 | |
| 436 | static void |
| 437 | nvc0_graph_init_gpc_0(struct drm_device *dev) |
| 438 | { |
| 439 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 440 | struct nvc0_graph_priv *priv = dev_priv->engine.graph.priv; |
| 441 | int gpc; |
| 442 | |
| 443 | // TP ROP UNKVAL(magic_not_rop_nr) |
| 444 | // 450: 4/0/0/0 2 3 |
| 445 | // 460: 3/4/0/0 4 1 |
| 446 | // 465: 3/4/4/0 4 7 |
| 447 | // 470: 3/3/4/4 5 5 |
| 448 | // 480: 3/4/4/4 6 6 |
| 449 | |
| 450 | // magicgpc918 |
| 451 | // 450: 00200000 00000000001000000000000000000000 |
| 452 | // 460: 00124925 00000000000100100100100100100101 |
| 453 | // 465: 000ba2e9 00000000000010111010001011101001 |
| 454 | // 470: 00092493 00000000000010010010010010010011 |
| 455 | // 480: 00088889 00000000000010001000100010001001 |
| 456 | |
| 457 | /* filled values up to tp_total, remainder 0 */ |
| 458 | // 450: 00003210 00000000 00000000 00000000 |
| 459 | // 460: 02321100 00000000 00000000 00000000 |
| 460 | // 465: 22111000 00000233 00000000 00000000 |
| 461 | // 470: 11110000 00233222 00000000 00000000 |
| 462 | // 480: 11110000 03332222 00000000 00000000 |
| 463 | |
| 464 | nv_wr32(dev, GPC_BCAST(0x0980), priv->magicgpc980[0]); |
| 465 | nv_wr32(dev, GPC_BCAST(0x0984), priv->magicgpc980[1]); |
| 466 | nv_wr32(dev, GPC_BCAST(0x0988), priv->magicgpc980[2]); |
| 467 | nv_wr32(dev, GPC_BCAST(0x098c), priv->magicgpc980[3]); |
| 468 | |
| 469 | for (gpc = 0; gpc < priv->gpc_nr; gpc++) { |
| 470 | nv_wr32(dev, GPC_UNIT(gpc, 0x0914), priv->magic_not_rop_nr << 8 | |
| 471 | priv->tp_nr[gpc]); |
| 472 | nv_wr32(dev, GPC_UNIT(gpc, 0x0910), 0x00040000 | priv->tp_total); |
| 473 | nv_wr32(dev, GPC_UNIT(gpc, 0x0918), priv->magicgpc918); |
| 474 | } |
| 475 | |
| 476 | nv_wr32(dev, GPC_BCAST(0x1bd4), priv->magicgpc918); |
| 477 | nv_wr32(dev, GPC_BCAST(0x08ac), priv->rop_nr); |
| 478 | } |
| 479 | |
| 480 | static void |
| 481 | nvc0_graph_init_units(struct drm_device *dev) |
| 482 | { |
| 483 | nv_wr32(dev, 0x409c24, 0x000f0000); |
| 484 | nv_wr32(dev, 0x404000, 0xc0000000); /* DISPATCH */ |
| 485 | nv_wr32(dev, 0x404600, 0xc0000000); /* M2MF */ |
| 486 | nv_wr32(dev, 0x408030, 0xc0000000); |
| 487 | nv_wr32(dev, 0x40601c, 0xc0000000); |
| 488 | nv_wr32(dev, 0x404490, 0xc0000000); /* MACRO */ |
| 489 | nv_wr32(dev, 0x406018, 0xc0000000); |
| 490 | nv_wr32(dev, 0x405840, 0xc0000000); |
| 491 | nv_wr32(dev, 0x405844, 0x00ffffff); |
| 492 | nv_mask(dev, 0x419cc0, 0x00000008, 0x00000008); |
| 493 | nv_mask(dev, 0x419eb4, 0x00001000, 0x00001000); |
| 494 | } |
| 495 | |
| 496 | static void |
| 497 | nvc0_graph_init_gpc_1(struct drm_device *dev) |
| 498 | { |
| 499 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 500 | struct nvc0_graph_priv *priv = dev_priv->engine.graph.priv; |
| 501 | int gpc, tp; |
| 502 | |
| 503 | for (gpc = 0; gpc < priv->gpc_nr; gpc++) { |
| 504 | nv_wr32(dev, GPC_UNIT(gpc, 0x0420), 0xc0000000); |
| 505 | nv_wr32(dev, GPC_UNIT(gpc, 0x0900), 0xc0000000); |
| 506 | nv_wr32(dev, GPC_UNIT(gpc, 0x1028), 0xc0000000); |
| 507 | nv_wr32(dev, GPC_UNIT(gpc, 0x0824), 0xc0000000); |
| 508 | for (tp = 0; tp < priv->tp_nr[gpc]; tp++) { |
| 509 | nv_wr32(dev, TP_UNIT(gpc, tp, 0x508), 0xffffffff); |
| 510 | nv_wr32(dev, TP_UNIT(gpc, tp, 0x50c), 0xffffffff); |
| 511 | nv_wr32(dev, TP_UNIT(gpc, tp, 0x224), 0xc0000000); |
| 512 | nv_wr32(dev, TP_UNIT(gpc, tp, 0x48c), 0xc0000000); |
| 513 | nv_wr32(dev, TP_UNIT(gpc, tp, 0x084), 0xc0000000); |
| 514 | nv_wr32(dev, TP_UNIT(gpc, tp, 0xe44), 0x001ffffe); |
| 515 | nv_wr32(dev, TP_UNIT(gpc, tp, 0xe4c), 0x0000000f); |
| 516 | } |
| 517 | nv_wr32(dev, GPC_UNIT(gpc, 0x2c90), 0xffffffff); |
| 518 | nv_wr32(dev, GPC_UNIT(gpc, 0x2c94), 0xffffffff); |
| 519 | } |
| 520 | } |
| 521 | |
| 522 | static void |
| 523 | nvc0_graph_init_rop(struct drm_device *dev) |
| 524 | { |
| 525 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 526 | struct nvc0_graph_priv *priv = dev_priv->engine.graph.priv; |
| 527 | int rop; |
| 528 | |
| 529 | for (rop = 0; rop < priv->rop_nr; rop++) { |
| 530 | nv_wr32(dev, ROP_UNIT(rop, 0x144), 0xc0000000); |
| 531 | nv_wr32(dev, ROP_UNIT(rop, 0x070), 0xc0000000); |
| 532 | nv_wr32(dev, ROP_UNIT(rop, 0x204), 0xffffffff); |
| 533 | nv_wr32(dev, ROP_UNIT(rop, 0x208), 0xffffffff); |
| 534 | } |
| 535 | } |
| 536 | |
| 537 | static int |
| 538 | nvc0_fuc_load_fw(struct drm_device *dev, u32 fuc_base, |
| 539 | const char *code_fw, const char *data_fw) |
| 540 | { |
| 541 | const struct firmware *fw; |
| 542 | char name[32]; |
| 543 | int ret, i; |
| 544 | |
| 545 | snprintf(name, sizeof(name), "nouveau/%s", data_fw); |
| 546 | ret = request_firmware(&fw, name, &dev->pdev->dev); |
| 547 | if (ret) { |
| 548 | NV_ERROR(dev, "failed to load %s\n", data_fw); |
| 549 | return ret; |
| 550 | } |
| 551 | |
| 552 | nv_wr32(dev, fuc_base + 0x01c0, 0x01000000); |
| 553 | for (i = 0; i < fw->size / 4; i++) |
| 554 | nv_wr32(dev, fuc_base + 0x01c4, ((u32 *)fw->data)[i]); |
| 555 | release_firmware(fw); |
| 556 | |
| 557 | snprintf(name, sizeof(name), "nouveau/%s", code_fw); |
| 558 | ret = request_firmware(&fw, name, &dev->pdev->dev); |
| 559 | if (ret) { |
| 560 | NV_ERROR(dev, "failed to load %s\n", code_fw); |
| 561 | return ret; |
| 562 | } |
| 563 | |
| 564 | nv_wr32(dev, fuc_base + 0x0180, 0x01000000); |
| 565 | for (i = 0; i < fw->size / 4; i++) { |
| 566 | if ((i & 0x3f) == 0) |
| 567 | nv_wr32(dev, fuc_base + 0x0188, i >> 6); |
| 568 | nv_wr32(dev, fuc_base + 0x0184, ((u32 *)fw->data)[i]); |
| 569 | } |
| 570 | release_firmware(fw); |
| 571 | |
| 572 | return 0; |
| 573 | } |
| 574 | |
| 575 | static int |
| 576 | nvc0_graph_init_ctxctl(struct drm_device *dev) |
| 577 | { |
| 578 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 579 | struct nvc0_graph_priv *priv = dev_priv->engine.graph.priv; |
| 580 | u32 r000260; |
| 581 | int ret; |
| 582 | |
| 583 | /* load fuc microcode */ |
| 584 | r000260 = nv_mask(dev, 0x000260, 0x00000001, 0x00000000); |
| 585 | ret = nvc0_fuc_load_fw(dev, 0x409000, "fuc409c", "fuc409d"); |
| 586 | if (ret == 0) |
| 587 | nvc0_fuc_load_fw(dev, 0x41a000, "fuc41ac", "fuc41ad"); |
| 588 | nv_wr32(dev, 0x000260, r000260); |
| 589 | |
| 590 | if (ret) |
| 591 | return ret; |
| 592 | |
| 593 | /* start both of them running */ |
| 594 | nv_wr32(dev, 0x409840, 0xffffffff); |
| 595 | nv_wr32(dev, 0x41a10c, 0x00000000); |
| 596 | nv_wr32(dev, 0x40910c, 0x00000000); |
| 597 | nv_wr32(dev, 0x41a100, 0x00000002); |
| 598 | nv_wr32(dev, 0x409100, 0x00000002); |
| 599 | if (!nv_wait(dev, 0x409800, 0x00000001, 0x00000001)) |
| 600 | NV_INFO(dev, "0x409800 wait failed\n"); |
| 601 | |
| 602 | nv_wr32(dev, 0x409840, 0xffffffff); |
| 603 | nv_wr32(dev, 0x409500, 0x7fffffff); |
| 604 | nv_wr32(dev, 0x409504, 0x00000021); |
| 605 | |
| 606 | nv_wr32(dev, 0x409840, 0xffffffff); |
| 607 | nv_wr32(dev, 0x409500, 0x00000000); |
| 608 | nv_wr32(dev, 0x409504, 0x00000010); |
| 609 | if (!nv_wait_ne(dev, 0x409800, 0xffffffff, 0x00000000)) { |
| 610 | NV_ERROR(dev, "fuc09 req 0x10 timeout\n"); |
| 611 | return -EBUSY; |
| 612 | } |
| 613 | priv->grctx_size = nv_rd32(dev, 0x409800); |
| 614 | |
| 615 | nv_wr32(dev, 0x409840, 0xffffffff); |
| 616 | nv_wr32(dev, 0x409500, 0x00000000); |
| 617 | nv_wr32(dev, 0x409504, 0x00000016); |
| 618 | if (!nv_wait_ne(dev, 0x409800, 0xffffffff, 0x00000000)) { |
| 619 | NV_ERROR(dev, "fuc09 req 0x16 timeout\n"); |
| 620 | return -EBUSY; |
| 621 | } |
| 622 | |
| 623 | nv_wr32(dev, 0x409840, 0xffffffff); |
| 624 | nv_wr32(dev, 0x409500, 0x00000000); |
| 625 | nv_wr32(dev, 0x409504, 0x00000025); |
| 626 | if (!nv_wait_ne(dev, 0x409800, 0xffffffff, 0x00000000)) { |
| 627 | NV_ERROR(dev, "fuc09 req 0x25 timeout\n"); |
| 628 | return -EBUSY; |
| 629 | } |
| 630 | |
| 631 | return 0; |
Ben Skeggs | 4b223ee | 2010-08-03 10:00:56 +1000 | [diff] [blame] | 632 | } |
| 633 | |
| 634 | int |
| 635 | nvc0_graph_init(struct drm_device *dev) |
| 636 | { |
| 637 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 638 | struct nouveau_pgraph_engine *pgraph = &dev_priv->engine.graph; |
| 639 | struct nvc0_graph_priv *priv; |
| 640 | int ret; |
| 641 | |
Ben Skeggs | 4b223ee | 2010-08-03 10:00:56 +1000 | [diff] [blame] | 642 | dev_priv->engine.graph.accel_blocked = true; |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 643 | |
| 644 | switch (dev_priv->chipset) { |
| 645 | case 0xc0: |
| 646 | case 0xc3: |
| 647 | case 0xc4: |
| 648 | break; |
| 649 | default: |
| 650 | NV_ERROR(dev, "PGRAPH: unsupported chipset, please report!\n"); |
| 651 | if (nouveau_noaccel != 0) |
| 652 | return 0; |
| 653 | break; |
| 654 | } |
| 655 | |
| 656 | nv_mask(dev, 0x000200, 0x18001000, 0x00000000); |
| 657 | nv_mask(dev, 0x000200, 0x18001000, 0x18001000); |
| 658 | |
| 659 | if (!pgraph->priv) { |
| 660 | ret = nvc0_graph_create(dev); |
| 661 | if (ret) |
| 662 | return ret; |
| 663 | } |
| 664 | priv = pgraph->priv; |
| 665 | |
| 666 | nvc0_graph_init_obj418880(dev); |
| 667 | nvc0_graph_init_regs(dev); |
| 668 | //nvc0_graph_init_unitplemented_magics(dev); |
| 669 | nvc0_graph_init_gpc_0(dev); |
| 670 | //nvc0_graph_init_unitplemented_c242(dev); |
| 671 | |
| 672 | nv_wr32(dev, 0x400500, 0x00010001); |
| 673 | nv_wr32(dev, 0x400100, 0xffffffff); |
| 674 | nv_wr32(dev, 0x40013c, 0xffffffff); |
| 675 | |
| 676 | nvc0_graph_init_units(dev); |
| 677 | nvc0_graph_init_gpc_1(dev); |
| 678 | nvc0_graph_init_rop(dev); |
| 679 | |
| 680 | nv_wr32(dev, 0x400108, 0xffffffff); |
| 681 | nv_wr32(dev, 0x400138, 0xffffffff); |
| 682 | nv_wr32(dev, 0x400118, 0xffffffff); |
| 683 | nv_wr32(dev, 0x400130, 0xffffffff); |
| 684 | nv_wr32(dev, 0x40011c, 0xffffffff); |
| 685 | nv_wr32(dev, 0x400134, 0xffffffff); |
| 686 | nv_wr32(dev, 0x400054, 0x34ce3464); |
| 687 | |
| 688 | ret = nvc0_graph_init_ctxctl(dev); |
| 689 | if (ret) |
| 690 | return ret; |
| 691 | |
| 692 | dev_priv->engine.graph.accel_blocked = false; |
Ben Skeggs | 4b223ee | 2010-08-03 10:00:56 +1000 | [diff] [blame] | 693 | return 0; |
| 694 | } |
| 695 | |
Ben Skeggs | 966a5b7 | 2010-11-24 10:49:02 +1000 | [diff] [blame] | 696 | static struct nouveau_enum nvc0_graph_data_error[] = { |
| 697 | { 5, "INVALID_ENUM" }, |
| 698 | {} |
| 699 | }; |
| 700 | |
| 701 | static int |
| 702 | nvc0_graph_isr_chid(struct drm_device *dev, u64 inst) |
| 703 | { |
| 704 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 705 | struct nouveau_channel *chan; |
| 706 | unsigned long flags; |
| 707 | int i; |
| 708 | |
| 709 | spin_lock_irqsave(&dev_priv->channels.lock, flags); |
| 710 | for (i = 0; i < dev_priv->engine.fifo.channels; i++) { |
| 711 | chan = dev_priv->channels.ptr[i]; |
| 712 | if (!chan || !chan->ramin) |
| 713 | continue; |
| 714 | |
| 715 | if (inst == chan->ramin->vinst) |
| 716 | break; |
| 717 | } |
| 718 | spin_unlock_irqrestore(&dev_priv->channels.lock, flags); |
| 719 | return i; |
| 720 | } |
| 721 | |
| 722 | static void |
| 723 | nvc0_graph_isr(struct drm_device *dev) |
| 724 | { |
| 725 | u64 inst = (u64)(nv_rd32(dev, 0x409b00) & 0x0fffffff) << 12; |
| 726 | u32 chid = nvc0_graph_isr_chid(dev, inst); |
| 727 | u32 stat = nv_rd32(dev, 0x400100); |
| 728 | u32 addr = nv_rd32(dev, 0x400704); |
| 729 | u32 mthd = (addr & 0x00003ffc); |
| 730 | u32 subc = (addr & 0x00070000) >> 16; |
| 731 | u32 data = nv_rd32(dev, 0x400708); |
| 732 | u32 code = nv_rd32(dev, 0x400110); |
| 733 | u32 class = nv_rd32(dev, 0x404200 + (subc * 4)); |
| 734 | |
| 735 | if (stat & 0x00000010) { |
| 736 | NV_INFO(dev, "PGRAPH: ILLEGAL_MTHD ch %d [0x%010llx] subc %d " |
| 737 | "class 0x%04x mthd 0x%04x data 0x%08x\n", |
| 738 | chid, inst, subc, class, mthd, data); |
| 739 | nv_wr32(dev, 0x400100, 0x00000010); |
| 740 | stat &= ~0x00000010; |
| 741 | } |
| 742 | |
| 743 | if (stat & 0x00100000) { |
| 744 | NV_INFO(dev, "PGRAPH: DATA_ERROR ["); |
| 745 | nouveau_enum_print(nvc0_graph_data_error, code); |
| 746 | printk("] ch %d [0x%010llx] subc %d class 0x%04x " |
| 747 | "mthd 0x%04x data 0x%08x\n", |
| 748 | chid, inst, subc, class, mthd, data); |
| 749 | nv_wr32(dev, 0x400100, 0x00100000); |
| 750 | stat &= ~0x00100000; |
| 751 | } |
| 752 | |
| 753 | if (stat & 0x00080000) { |
| 754 | u32 ustat = nv_rd32(dev, 0x409c18); |
| 755 | |
| 756 | NV_INFO(dev, "PGRAPH: CTXCTRL ustat 0x%08x\n", ustat); |
| 757 | |
| 758 | nv_wr32(dev, 0x409c20, ustat); |
| 759 | nv_wr32(dev, 0x400100, 0x00080000); |
| 760 | stat &= ~0x00080000; |
| 761 | } |
| 762 | |
| 763 | if (stat) { |
| 764 | NV_INFO(dev, "PGRAPH: unknown stat 0x%08x\n", stat); |
| 765 | nv_wr32(dev, 0x400100, stat); |
| 766 | } |
| 767 | |
| 768 | nv_wr32(dev, 0x400500, 0x00010001); |
| 769 | } |