Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 | /* * Copyright 2012 Red Hat Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * Authors: Ben Skeggs */ #include "priv.h" #include "cgrp.h" #include "chan.h" #include "runl.h" #include <core/ramht.h> #include <subdev/timer.h> #include <nvif/class.h> static void g84_chan_bind(struct nvkm_chan *chan) { struct nvkm_device *device = chan->cgrp->runl->fifo->engine.subdev.device; nvkm_wr32(device, 0x002600 + (chan->id * 4), chan->ramfc->addr >> 8); } static int g84_chan_ramfc_write(struct nvkm_chan *chan, u64 offset, u64 length, u32 devm, bool priv) { struct nvkm_device *device = chan->cgrp->runl->fifo->engine.subdev.device; const u32 limit2 = ilog2(length / 8); int ret; ret = nvkm_gpuobj_new(device, 0x0200, 0, true, chan->inst, &chan->eng); if (ret) return ret; ret = nvkm_gpuobj_new(device, 0x4000, 0, false, chan->inst, &chan->pgd); if (ret) return ret; ret = nvkm_gpuobj_new(device, 0x1000, 0x400, true, chan->inst, &chan->cache); if (ret) return ret; ret = nvkm_gpuobj_new(device, 0x100, 0x100, true, chan->inst, &chan->ramfc); if (ret) return ret; ret = nvkm_ramht_new(device, 0x8000, 16, chan->inst, &chan->ramht); if (ret) return ret; nvkm_kmap(chan->ramfc); nvkm_wo32(chan->ramfc, 0x3c, 0x403f6078); nvkm_wo32(chan->ramfc, 0x44, 0x01003fff); nvkm_wo32(chan->ramfc, 0x48, chan->push->node->offset >> 4); nvkm_wo32(chan->ramfc, 0x50, lower_32_bits(offset)); nvkm_wo32(chan->ramfc, 0x54, upper_32_bits(offset) | (limit2 << 16)); nvkm_wo32(chan->ramfc, 0x60, 0x7fffffff); nvkm_wo32(chan->ramfc, 0x78, 0x00000000); nvkm_wo32(chan->ramfc, 0x7c, 0x30000000 | devm); nvkm_wo32(chan->ramfc, 0x80, ((chan->ramht->bits - 9) << 27) | (4 << 24) /* SEARCH_FULL */ | (chan->ramht->gpuobj->node->offset >> 4)); nvkm_wo32(chan->ramfc, 0x88, chan->cache->addr >> 10); nvkm_wo32(chan->ramfc, 0x98, chan->inst->addr >> 12); nvkm_done(chan->ramfc); return 0; } static const struct nvkm_chan_func_ramfc g84_chan_ramfc = { .write = g84_chan_ramfc_write, .ctxdma = true, .devm = 0xfff, }; const struct nvkm_chan_func g84_chan = { .inst = &nv50_chan_inst, .userd = &nv50_chan_userd, .ramfc = &g84_chan_ramfc, .bind = g84_chan_bind, .unbind = nv50_chan_unbind, .start = nv50_chan_start, .stop = nv50_chan_stop, }; static void g84_ectx_bind(struct nvkm_engn *engn, struct nvkm_cctx *cctx, struct nvkm_chan *chan) { struct nvkm_subdev *subdev = &chan->cgrp->runl->fifo->engine.subdev; struct nvkm_device *device = subdev->device; u64 start = 0, limit = 0; u32 flags = 0, ptr0, save; switch (engn->engine->subdev.type) { case NVKM_ENGINE_GR : ptr0 = 0x0020; break; case NVKM_ENGINE_VP : case NVKM_ENGINE_MSPDEC: ptr0 = 0x0040; break; case NVKM_ENGINE_MPEG : case NVKM_ENGINE_MSPPP : ptr0 = 0x0060; break; case NVKM_ENGINE_BSP : case NVKM_ENGINE_MSVLD : ptr0 = 0x0080; break; case NVKM_ENGINE_CIPHER: case NVKM_ENGINE_SEC : ptr0 = 0x00a0; break; case NVKM_ENGINE_CE : ptr0 = 0x00c0; break; default: WARN_ON(1); return; } if (!cctx) { save = nvkm_mask(device, 0x002520, 0x0000003f, BIT(engn->id - 1)); nvkm_wr32(device, 0x0032fc, chan->inst->addr >> 12); nvkm_msec(device, 2000, if (nvkm_rd32(device, 0x0032fc) != 0xffffffff) break; ); nvkm_wr32(device, 0x002520, save); } else { flags = 0x00190000; start = cctx->vctx->inst->addr; limit = start + cctx->vctx->inst->size - 1; } nvkm_kmap(chan->eng); nvkm_wo32(chan->eng, ptr0 + 0x00, flags); nvkm_wo32(chan->eng, ptr0 + 0x04, lower_32_bits(limit)); nvkm_wo32(chan->eng, ptr0 + 0x08, lower_32_bits(start)); nvkm_wo32(chan->eng, ptr0 + 0x0c, upper_32_bits(limit) << 24 | lower_32_bits(start)); nvkm_wo32(chan->eng, ptr0 + 0x10, 0x00000000); nvkm_wo32(chan->eng, ptr0 + 0x14, 0x00000000); nvkm_done(chan->eng); } const struct nvkm_engn_func g84_engn = { .bind = g84_ectx_bind, .ramht_add = nv50_eobj_ramht_add, .ramht_del = nv50_eobj_ramht_del, }; static void g84_fifo_nonstall_block(struct nvkm_event *event, int type, int index) { struct nvkm_fifo *fifo = container_of(event, typeof(*fifo), nonstall.event); unsigned long flags; spin_lock_irqsave(&fifo->lock, flags); nvkm_mask(fifo->engine.subdev.device, 0x002140, 0x40000000, 0x00000000); spin_unlock_irqrestore(&fifo->lock, flags); } static void g84_fifo_nonstall_allow(struct nvkm_event *event, int type, int index) { struct nvkm_fifo *fifo = container_of(event, typeof(*fifo), nonstall.event); unsigned long flags; spin_lock_irqsave(&fifo->lock, flags); nvkm_mask(fifo->engine.subdev.device, 0x002140, 0x40000000, 0x40000000); spin_unlock_irqrestore(&fifo->lock, flags); } const struct nvkm_event_func g84_fifo_nonstall = { .init = g84_fifo_nonstall_allow, .fini = g84_fifo_nonstall_block, }; static int g84_fifo_runl_ctor(struct nvkm_fifo *fifo) { struct nvkm_runl *runl; runl = nvkm_runl_new(fifo, 0, 0, 0); if (IS_ERR(runl)) return PTR_ERR(runl); nvkm_runl_add(runl, 0, fifo->func->engn_sw, NVKM_ENGINE_SW, 0); nvkm_runl_add(runl, 0, fifo->func->engn_sw, NVKM_ENGINE_DMAOBJ, 0); nvkm_runl_add(runl, 1, fifo->func->engn, NVKM_ENGINE_GR, 0); nvkm_runl_add(runl, 2, fifo->func->engn, NVKM_ENGINE_MPEG, 0); nvkm_runl_add(runl, 3, fifo->func->engn, NVKM_ENGINE_ME, 0); nvkm_runl_add(runl, 4, fifo->func->engn, NVKM_ENGINE_VP, 0); nvkm_runl_add(runl, 5, fifo->func->engn, NVKM_ENGINE_CIPHER, 0); nvkm_runl_add(runl, 6, fifo->func->engn, NVKM_ENGINE_BSP, 0); return 0; } static const struct nvkm_fifo_func g84_fifo = { .chid_nr = nv50_fifo_chid_nr, .chid_ctor = nv50_fifo_chid_ctor, .runl_ctor = g84_fifo_runl_ctor, .init = nv50_fifo_init, .intr = nv04_fifo_intr, .pause = nv04_fifo_pause, .start = nv04_fifo_start, .nonstall = &g84_fifo_nonstall, .runl = &nv50_runl, .engn = &g84_engn, .engn_sw = &nv50_engn_sw, .cgrp = {{ }, &nv04_cgrp }, .chan = {{ 0, 0, G82_CHANNEL_GPFIFO }, &g84_chan }, }; int g84_fifo_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, struct nvkm_fifo **pfifo) { return nvkm_fifo_new_(&g84_fifo, device, type, inst, pfifo); } |