Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / drivers / gpu / drm / nouveau / nvkm / engine / disp / dmacnv50.c
blob070ec5e18fdb43797069ce275d7e35fb0905bc4e
1 /*
2 * Copyright 2012 Red Hat Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
22 * Authors: Ben Skeggs
24 #include "dmacnv50.h"
25 #include "rootnv50.h"
27 #include <core/client.h>
28 #include <core/oproxy.h>
29 #include <core/ramht.h>
30 #include <subdev/fb.h>
31 #include <subdev/timer.h>
32 #include <engine/dma.h>
34 struct nv50_disp_dmac_object {
35 struct nvkm_oproxy oproxy;
36 struct nv50_disp_root *root;
37 int hash;
40 static void
41 nv50_disp_dmac_child_del_(struct nvkm_oproxy *base)
43 struct nv50_disp_dmac_object *object =
44 container_of(base, typeof(*object), oproxy);
45 nvkm_ramht_remove(object->root->ramht, object->hash);
48 static const struct nvkm_oproxy_func
49 nv50_disp_dmac_child_func_ = {
50 .dtor[0] = nv50_disp_dmac_child_del_,
53 static int
54 nv50_disp_dmac_child_new_(struct nv50_disp_chan *base,
55 const struct nvkm_oclass *oclass,
56 void *data, u32 size, struct nvkm_object **pobject)
58 struct nv50_disp_dmac *chan = nv50_disp_dmac(base);
59 struct nv50_disp_root *root = chan->base.root;
60 struct nvkm_device *device = root->disp->base.engine.subdev.device;
61 const struct nvkm_device_oclass *sclass = oclass->priv;
62 struct nv50_disp_dmac_object *object;
63 int ret;
65 if (!(object = kzalloc(sizeof(*object), GFP_KERNEL)))
66 return -ENOMEM;
67 nvkm_oproxy_ctor(&nv50_disp_dmac_child_func_, oclass, &object->oproxy);
68 object->root = root;
69 *pobject = &object->oproxy.base;
71 ret = sclass->ctor(device, oclass, data, size, &object->oproxy.object);
72 if (ret)
73 return ret;
75 object->hash = chan->func->bind(chan, object->oproxy.object,
76 oclass->handle);
77 if (object->hash < 0)
78 return object->hash;
80 return 0;
83 static int
84 nv50_disp_dmac_child_get_(struct nv50_disp_chan *base, int index,
85 struct nvkm_oclass *sclass)
87 struct nv50_disp_dmac *chan = nv50_disp_dmac(base);
88 struct nv50_disp *disp = chan->base.root->disp;
89 struct nvkm_device *device = disp->base.engine.subdev.device;
90 const struct nvkm_device_oclass *oclass = NULL;
92 sclass->engine = nvkm_device_engine(device, NVKM_ENGINE_DMAOBJ);
93 if (sclass->engine && sclass->engine->func->base.sclass) {
94 sclass->engine->func->base.sclass(sclass, index, &oclass);
95 if (oclass) {
96 sclass->priv = oclass;
97 return 0;
101 return -EINVAL;
104 static void
105 nv50_disp_dmac_fini_(struct nv50_disp_chan *base)
107 struct nv50_disp_dmac *chan = nv50_disp_dmac(base);
108 chan->func->fini(chan);
111 static int
112 nv50_disp_dmac_init_(struct nv50_disp_chan *base)
114 struct nv50_disp_dmac *chan = nv50_disp_dmac(base);
115 return chan->func->init(chan);
118 static void *
119 nv50_disp_dmac_dtor_(struct nv50_disp_chan *base)
121 return nv50_disp_dmac(base);
124 static const struct nv50_disp_chan_func
125 nv50_disp_dmac_func_ = {
126 .dtor = nv50_disp_dmac_dtor_,
127 .init = nv50_disp_dmac_init_,
128 .fini = nv50_disp_dmac_fini_,
129 .child_get = nv50_disp_dmac_child_get_,
130 .child_new = nv50_disp_dmac_child_new_,
134 nv50_disp_dmac_new_(const struct nv50_disp_dmac_func *func,
135 const struct nv50_disp_chan_mthd *mthd,
136 struct nv50_disp_root *root, int chid, int head, u64 push,
137 const struct nvkm_oclass *oclass,
138 struct nvkm_object **pobject)
140 struct nvkm_client *client = oclass->client;
141 struct nvkm_dmaobj *dmaobj;
142 struct nv50_disp_dmac *chan;
143 int ret;
145 if (!(chan = kzalloc(sizeof(*chan), GFP_KERNEL)))
146 return -ENOMEM;
147 *pobject = &chan->base.object;
148 chan->func = func;
150 ret = nv50_disp_chan_ctor(&nv50_disp_dmac_func_, mthd, root,
151 chid, chid, head, oclass, &chan->base);
152 if (ret)
153 return ret;
155 dmaobj = nvkm_dmaobj_search(client, push);
156 if (IS_ERR(dmaobj))
157 return PTR_ERR(dmaobj);
159 if (dmaobj->limit - dmaobj->start != 0xfff)
160 return -EINVAL;
162 switch (dmaobj->target) {
163 case NV_MEM_TARGET_VRAM:
164 chan->push = 0x00000001 | dmaobj->start >> 8;
165 break;
166 case NV_MEM_TARGET_PCI_NOSNOOP:
167 chan->push = 0x00000003 | dmaobj->start >> 8;
168 break;
169 default:
170 return -EINVAL;
173 return 0;
177 nv50_disp_dmac_bind(struct nv50_disp_dmac *chan,
178 struct nvkm_object *object, u32 handle)
180 return nvkm_ramht_insert(chan->base.root->ramht, object,
181 chan->base.chid.user, -10, handle,
182 chan->base.chid.user << 28 |
183 chan->base.chid.user);
186 static void
187 nv50_disp_dmac_fini(struct nv50_disp_dmac *chan)
189 struct nv50_disp *disp = chan->base.root->disp;
190 struct nvkm_subdev *subdev = &disp->base.engine.subdev;
191 struct nvkm_device *device = subdev->device;
192 int ctrl = chan->base.chid.ctrl;
193 int user = chan->base.chid.user;
195 /* deactivate channel */
196 nvkm_mask(device, 0x610200 + (ctrl * 0x0010), 0x00001010, 0x00001000);
197 nvkm_mask(device, 0x610200 + (ctrl * 0x0010), 0x00000003, 0x00000000);
198 if (nvkm_msec(device, 2000,
199 if (!(nvkm_rd32(device, 0x610200 + (ctrl * 0x10)) & 0x001e0000))
200 break;
201 ) < 0) {
202 nvkm_error(subdev, "ch %d fini timeout, %08x\n", user,
203 nvkm_rd32(device, 0x610200 + (ctrl * 0x10)));
206 /* disable error reporting and completion notifications */
207 nvkm_mask(device, 0x610028, 0x00010001 << user, 0x00000000 << user);
210 static int
211 nv50_disp_dmac_init(struct nv50_disp_dmac *chan)
213 struct nv50_disp *disp = chan->base.root->disp;
214 struct nvkm_subdev *subdev = &disp->base.engine.subdev;
215 struct nvkm_device *device = subdev->device;
216 int ctrl = chan->base.chid.ctrl;
217 int user = chan->base.chid.user;
219 /* enable error reporting */
220 nvkm_mask(device, 0x610028, 0x00010000 << user, 0x00010000 << user);
222 /* initialise channel for dma command submission */
223 nvkm_wr32(device, 0x610204 + (ctrl * 0x0010), chan->push);
224 nvkm_wr32(device, 0x610208 + (ctrl * 0x0010), 0x00010000);
225 nvkm_wr32(device, 0x61020c + (ctrl * 0x0010), ctrl);
226 nvkm_mask(device, 0x610200 + (ctrl * 0x0010), 0x00000010, 0x00000010);
227 nvkm_wr32(device, 0x640000 + (ctrl * 0x1000), 0x00000000);
228 nvkm_wr32(device, 0x610200 + (ctrl * 0x0010), 0x00000013);
230 /* wait for it to go inactive */
231 if (nvkm_msec(device, 2000,
232 if (!(nvkm_rd32(device, 0x610200 + (ctrl * 0x10)) & 0x80000000))
233 break;
234 ) < 0) {
235 nvkm_error(subdev, "ch %d init timeout, %08x\n", user,
236 nvkm_rd32(device, 0x610200 + (ctrl * 0x10)));
237 return -EBUSY;
240 return 0;
243 const struct nv50_disp_dmac_func
244 nv50_disp_dmac_func = {
245 .init = nv50_disp_dmac_init,
246 .fini = nv50_disp_dmac_fini,
247 .bind = nv50_disp_dmac_bind,