2015-03-11 02:24:45 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2015 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 <engine/ce.h>
|
2015-08-20 04:54:19 +00:00
|
|
|
#include <engine/fifo.h>
|
2015-03-11 02:24:45 +00:00
|
|
|
|
2015-08-20 04:54:19 +00:00
|
|
|
#include <nvif/class.h>
|
2015-03-11 02:24:45 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gm204_ce_intr(struct nvkm_subdev *subdev)
|
|
|
|
{
|
2015-08-20 04:54:09 +00:00
|
|
|
struct nvkm_device *device = subdev->device;
|
2015-08-20 04:54:07 +00:00
|
|
|
const int idx = nv_subidx(subdev) - NVDEV_ENGINE_CE0;
|
2015-08-20 04:54:09 +00:00
|
|
|
u32 stat = nvkm_rd32(device, 0x104908 + (idx * 0x1000));
|
2015-03-11 02:24:45 +00:00
|
|
|
|
|
|
|
if (stat) {
|
2015-08-20 04:54:12 +00:00
|
|
|
nvkm_warn(subdev, "intr %08x\n", stat);
|
2015-08-20 04:54:09 +00:00
|
|
|
nvkm_wr32(device, 0x104908 + (idx * 0x1000), stat);
|
2015-03-11 02:24:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-20 04:54:19 +00:00
|
|
|
static const struct nvkm_engine_func
|
|
|
|
gm204_ce = {
|
|
|
|
.sclass = {
|
|
|
|
{ -1, -1, MAXWELL_DMA_COPY_A },
|
|
|
|
{}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-03-11 02:24:45 +00:00
|
|
|
static int
|
|
|
|
gm204_ce0_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
|
|
|
|
struct nvkm_oclass *oclass, void *data, u32 size,
|
|
|
|
struct nvkm_object **pobject)
|
|
|
|
{
|
2015-08-20 04:54:07 +00:00
|
|
|
struct nvkm_engine *ce;
|
2015-03-11 02:24:45 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = nvkm_engine_create(parent, engine, oclass, true,
|
2015-08-20 04:54:07 +00:00
|
|
|
"PCE0", "ce0", &ce);
|
|
|
|
*pobject = nv_object(ce);
|
2015-03-11 02:24:45 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2015-08-20 04:54:19 +00:00
|
|
|
ce->func = &gm204_ce;
|
2015-08-20 04:54:07 +00:00
|
|
|
nv_subdev(ce)->unit = 0x00000040;
|
|
|
|
nv_subdev(ce)->intr = gm204_ce_intr;
|
2015-03-11 02:24:45 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
gm204_ce1_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
|
|
|
|
struct nvkm_oclass *oclass, void *data, u32 size,
|
|
|
|
struct nvkm_object **pobject)
|
|
|
|
{
|
2015-08-20 04:54:07 +00:00
|
|
|
struct nvkm_engine *ce;
|
2015-03-11 02:24:45 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = nvkm_engine_create(parent, engine, oclass, true,
|
2015-08-20 04:54:07 +00:00
|
|
|
"PCE1", "ce1", &ce);
|
|
|
|
*pobject = nv_object(ce);
|
2015-03-11 02:24:45 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2015-08-20 04:54:19 +00:00
|
|
|
ce->func = &gm204_ce;
|
2015-08-20 04:54:07 +00:00
|
|
|
nv_subdev(ce)->unit = 0x00000080;
|
|
|
|
nv_subdev(ce)->intr = gm204_ce_intr;
|
2015-03-11 02:24:45 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
gm204_ce2_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
|
|
|
|
struct nvkm_oclass *oclass, void *data, u32 size,
|
|
|
|
struct nvkm_object **pobject)
|
|
|
|
{
|
2015-08-20 04:54:07 +00:00
|
|
|
struct nvkm_engine *ce;
|
2015-03-11 02:24:45 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = nvkm_engine_create(parent, engine, oclass, true,
|
2015-08-20 04:54:07 +00:00
|
|
|
"PCE2", "ce2", &ce);
|
|
|
|
*pobject = nv_object(ce);
|
2015-03-11 02:24:45 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2015-08-20 04:54:19 +00:00
|
|
|
ce->func = &gm204_ce;
|
2015-08-20 04:54:07 +00:00
|
|
|
nv_subdev(ce)->unit = 0x00200000;
|
|
|
|
nv_subdev(ce)->intr = gm204_ce_intr;
|
2015-03-11 02:24:45 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct nvkm_oclass
|
|
|
|
gm204_ce0_oclass = {
|
|
|
|
.handle = NV_ENGINE(CE0, 0x24),
|
|
|
|
.ofuncs = &(struct nvkm_ofuncs) {
|
|
|
|
.ctor = gm204_ce0_ctor,
|
|
|
|
.dtor = _nvkm_engine_dtor,
|
|
|
|
.init = _nvkm_engine_init,
|
|
|
|
.fini = _nvkm_engine_fini,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct nvkm_oclass
|
|
|
|
gm204_ce1_oclass = {
|
|
|
|
.handle = NV_ENGINE(CE1, 0x24),
|
|
|
|
.ofuncs = &(struct nvkm_ofuncs) {
|
|
|
|
.ctor = gm204_ce1_ctor,
|
|
|
|
.dtor = _nvkm_engine_dtor,
|
|
|
|
.init = _nvkm_engine_init,
|
|
|
|
.fini = _nvkm_engine_fini,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct nvkm_oclass
|
|
|
|
gm204_ce2_oclass = {
|
|
|
|
.handle = NV_ENGINE(CE2, 0x24),
|
|
|
|
.ofuncs = &(struct nvkm_ofuncs) {
|
|
|
|
.ctor = gm204_ce2_ctor,
|
|
|
|
.dtor = _nvkm_engine_dtor,
|
|
|
|
.init = _nvkm_engine_init,
|
|
|
|
.fini = _nvkm_engine_fini,
|
|
|
|
},
|
|
|
|
};
|