2012-07-14 17:09:17 +08:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
2012-07-13 14:42:14 +08:00
|
|
|
#include "nv04.h"
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2015-01-14 13:05:26 +08:00
|
|
|
#include <core/ramht.h>
|
|
|
|
|
2013-12-22 23:08:00 +08:00
|
|
|
/******************************************************************************
|
|
|
|
* instmem object implementation
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
static u32
|
2015-01-14 13:05:26 +08:00
|
|
|
nv04_instobj_rd32(struct nvkm_object *object, u64 addr)
|
2013-12-22 23:08:00 +08:00
|
|
|
{
|
2015-08-20 12:54:06 +08:00
|
|
|
struct nv04_instmem *imem = (void *)nvkm_instmem(object);
|
|
|
|
struct nv04_instobj *node = (void *)object;
|
|
|
|
return nv_ro32(imem, node->mem->offset + addr);
|
2013-12-22 23:08:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-01-14 13:05:26 +08:00
|
|
|
nv04_instobj_wr32(struct nvkm_object *object, u64 addr, u32 data)
|
2013-12-22 23:08:00 +08:00
|
|
|
{
|
2015-08-20 12:54:06 +08:00
|
|
|
struct nv04_instmem *imem = (void *)nvkm_instmem(object);
|
|
|
|
struct nv04_instobj *node = (void *)object;
|
|
|
|
nv_wo32(imem, node->mem->offset + addr, data);
|
2013-12-22 23:08:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-01-14 13:05:26 +08:00
|
|
|
nv04_instobj_dtor(struct nvkm_object *object)
|
2013-12-22 23:08:00 +08:00
|
|
|
{
|
2015-08-20 12:54:06 +08:00
|
|
|
struct nv04_instmem *imem = (void *)nvkm_instmem(object);
|
|
|
|
struct nv04_instobj *node = (void *)object;
|
|
|
|
mutex_lock(&imem->base.subdev.mutex);
|
|
|
|
nvkm_mm_free(&imem->heap, &node->mem);
|
|
|
|
mutex_unlock(&imem->base.subdev.mutex);
|
2015-01-14 13:05:26 +08:00
|
|
|
nvkm_instobj_destroy(&node->base);
|
2013-12-22 23:08:00 +08:00
|
|
|
}
|
|
|
|
|
2012-07-14 17:09:17 +08:00
|
|
|
static int
|
2015-01-14 13:05:26 +08:00
|
|
|
nv04_instobj_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
|
|
|
|
struct nvkm_oclass *oclass, void *data, u32 size,
|
|
|
|
struct nvkm_object **pobject)
|
2012-07-14 17:09:17 +08:00
|
|
|
{
|
2015-08-20 12:54:06 +08:00
|
|
|
struct nv04_instmem *imem = (void *)nvkm_instmem(parent);
|
|
|
|
struct nv04_instobj *node;
|
2015-01-14 13:05:26 +08:00
|
|
|
struct nvkm_instobj_args *args = data;
|
2013-12-22 23:08:00 +08:00
|
|
|
int ret;
|
2012-07-14 17:09:17 +08:00
|
|
|
|
2013-12-22 23:08:00 +08:00
|
|
|
if (!args->align)
|
|
|
|
args->align = 1;
|
2012-07-14 17:09:17 +08:00
|
|
|
|
2015-01-14 13:05:26 +08:00
|
|
|
ret = nvkm_instobj_create(parent, engine, oclass, &node);
|
2012-07-14 17:09:17 +08:00
|
|
|
*pobject = nv_object(node);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2015-08-20 12:54:06 +08:00
|
|
|
mutex_lock(&imem->base.subdev.mutex);
|
|
|
|
ret = nvkm_mm_head(&imem->heap, 0, 1, args->size, args->size,
|
2015-01-14 13:05:26 +08:00
|
|
|
args->align, &node->mem);
|
2015-08-20 12:54:06 +08:00
|
|
|
mutex_unlock(&imem->base.subdev.mutex);
|
2012-07-14 17:09:17 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
node->base.addr = node->mem->offset;
|
|
|
|
node->base.size = node->mem->length;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-01-14 13:05:26 +08:00
|
|
|
struct nvkm_instobj_impl
|
2012-07-14 17:09:17 +08:00
|
|
|
nv04_instobj_oclass = {
|
2015-01-14 13:05:26 +08:00
|
|
|
.base.ofuncs = &(struct nvkm_ofuncs) {
|
2012-07-14 17:09:17 +08:00
|
|
|
.ctor = nv04_instobj_ctor,
|
|
|
|
.dtor = nv04_instobj_dtor,
|
2015-01-14 13:05:26 +08:00
|
|
|
.init = _nvkm_instobj_init,
|
|
|
|
.fini = _nvkm_instobj_fini,
|
2012-07-14 17:09:17 +08:00
|
|
|
.rd32 = nv04_instobj_rd32,
|
|
|
|
.wr32 = nv04_instobj_wr32,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2013-12-22 22:39:47 +08:00
|
|
|
/******************************************************************************
|
|
|
|
* instmem subdev implementation
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
static u32
|
2015-01-14 13:05:26 +08:00
|
|
|
nv04_instmem_rd32(struct nvkm_object *object, u64 addr)
|
2009-12-11 17:24:15 +08:00
|
|
|
{
|
2015-08-20 12:54:09 +08:00
|
|
|
struct nvkm_instmem *imem = (void *)object;
|
|
|
|
return nvkm_rd32(imem->subdev.device, 0x700000 + addr);
|
2013-12-22 22:39:47 +08:00
|
|
|
}
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2013-12-22 22:39:47 +08:00
|
|
|
static void
|
2015-01-14 13:05:26 +08:00
|
|
|
nv04_instmem_wr32(struct nvkm_object *object, u64 addr, u32 data)
|
2013-12-22 22:39:47 +08:00
|
|
|
{
|
2015-08-20 12:54:09 +08:00
|
|
|
struct nvkm_instmem *imem = (void *)object;
|
|
|
|
nvkm_wr32(imem->subdev.device, 0x700000 + addr, data);
|
2013-12-22 22:39:47 +08:00
|
|
|
}
|
2012-07-14 17:09:17 +08:00
|
|
|
|
2013-12-22 22:39:47 +08:00
|
|
|
void
|
2015-01-14 13:05:26 +08:00
|
|
|
nv04_instmem_dtor(struct nvkm_object *object)
|
2013-12-22 22:39:47 +08:00
|
|
|
{
|
2015-08-20 12:54:06 +08:00
|
|
|
struct nv04_instmem *imem = (void *)object;
|
|
|
|
nvkm_gpuobj_ref(NULL, &imem->ramfc);
|
|
|
|
nvkm_gpuobj_ref(NULL, &imem->ramro);
|
|
|
|
nvkm_ramht_ref(NULL, &imem->ramht);
|
|
|
|
nvkm_gpuobj_ref(NULL, &imem->vbios);
|
|
|
|
nvkm_mm_fini(&imem->heap);
|
|
|
|
if (imem->iomem)
|
|
|
|
iounmap(imem->iomem);
|
|
|
|
nvkm_instmem_destroy(&imem->base);
|
2012-07-14 17:09:17 +08:00
|
|
|
}
|
2012-07-13 14:42:14 +08:00
|
|
|
|
2012-07-14 17:09:17 +08:00
|
|
|
static int
|
2015-01-14 13:05:26 +08:00
|
|
|
nv04_instmem_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
|
|
|
|
struct nvkm_oclass *oclass, void *data, u32 size,
|
|
|
|
struct nvkm_object **pobject)
|
2012-07-14 17:09:17 +08:00
|
|
|
{
|
2015-08-20 12:54:06 +08:00
|
|
|
struct nv04_instmem *imem;
|
2012-07-14 17:09:17 +08:00
|
|
|
int ret;
|
2011-06-24 13:15:58 +08:00
|
|
|
|
2015-08-20 12:54:06 +08:00
|
|
|
ret = nvkm_instmem_create(parent, engine, oclass, &imem);
|
|
|
|
*pobject = nv_object(imem);
|
2010-09-01 13:24:34 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2012-07-14 17:09:17 +08:00
|
|
|
/* PRAMIN aperture maps over the end of VRAM, reserve it */
|
2015-08-20 12:54:06 +08:00
|
|
|
imem->base.reserved = 512 * 1024;
|
2012-07-14 17:09:17 +08:00
|
|
|
|
2015-08-20 12:54:06 +08:00
|
|
|
ret = nvkm_mm_init(&imem->heap, 0, imem->base.reserved, 1);
|
2010-09-01 13:24:34 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2012-07-14 17:09:17 +08:00
|
|
|
/* 0x00000-0x10000: reserve for probable vbios image */
|
2015-08-20 12:54:06 +08:00
|
|
|
ret = nvkm_gpuobj_new(nv_object(imem), NULL, 0x10000, 0, 0,
|
|
|
|
&imem->vbios);
|
2010-09-01 13:24:35 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2012-07-14 17:09:17 +08:00
|
|
|
/* 0x10000-0x18000: reserve for RAMHT */
|
2015-08-20 12:54:06 +08:00
|
|
|
ret = nvkm_ramht_new(nv_object(imem), NULL, 0x08000, 0, &imem->ramht);
|
2010-09-01 13:24:35 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2012-07-14 17:09:17 +08:00
|
|
|
/* 0x18000-0x18800: reserve for RAMFC (enough for 32 nv30 channels) */
|
2015-08-20 12:54:06 +08:00
|
|
|
ret = nvkm_gpuobj_new(nv_object(imem), NULL, 0x00800, 0,
|
|
|
|
NVOBJ_FLAG_ZERO_ALLOC, &imem->ramfc);
|
2012-07-13 14:42:14 +08:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2012-07-14 17:09:17 +08:00
|
|
|
/* 0x18800-0x18a00: reserve for RAMRO */
|
2015-08-20 12:54:06 +08:00
|
|
|
ret = nvkm_gpuobj_new(nv_object(imem), NULL, 0x00200, 0, 0,
|
|
|
|
&imem->ramro);
|
2012-07-13 14:42:14 +08:00
|
|
|
if (ret)
|
2010-06-01 13:32:24 +08:00
|
|
|
return ret;
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2010-06-01 13:32:24 +08:00
|
|
|
return 0;
|
2009-12-11 17:24:15 +08:00
|
|
|
}
|
|
|
|
|
2015-01-14 13:05:26 +08:00
|
|
|
struct nvkm_oclass *
|
|
|
|
nv04_instmem_oclass = &(struct nvkm_instmem_impl) {
|
2013-12-22 22:39:47 +08:00
|
|
|
.base.handle = NV_SUBDEV(INSTMEM, 0x04),
|
2015-01-14 13:05:26 +08:00
|
|
|
.base.ofuncs = &(struct nvkm_ofuncs) {
|
2012-07-14 17:09:17 +08:00
|
|
|
.ctor = nv04_instmem_ctor,
|
|
|
|
.dtor = nv04_instmem_dtor,
|
2015-01-14 13:05:26 +08:00
|
|
|
.init = _nvkm_instmem_init,
|
|
|
|
.fini = _nvkm_instmem_fini,
|
2012-07-14 17:09:17 +08:00
|
|
|
.rd32 = nv04_instmem_rd32,
|
|
|
|
.wr32 = nv04_instmem_wr32,
|
|
|
|
},
|
2013-12-22 23:08:00 +08:00
|
|
|
.instobj = &nv04_instobj_oclass.base,
|
2013-12-22 22:39:47 +08:00
|
|
|
}.base;
|