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
|
|
|
|
*/
|
2015-08-20 12:54:17 +08:00
|
|
|
#define nv04_instmem(p) container_of((p), struct nv04_instmem, base)
|
|
|
|
#include "priv.h"
|
2009-12-11 17:24:15 +08:00
|
|
|
|
2015-08-20 12:54:17 +08:00
|
|
|
#include <core/memory.h>
|
2015-01-14 13:05:26 +08:00
|
|
|
#include <core/ramht.h>
|
|
|
|
|
2015-08-20 12:54:17 +08:00
|
|
|
struct nv04_instmem {
|
|
|
|
struct nvkm_instmem base;
|
|
|
|
struct nvkm_mm heap;
|
|
|
|
};
|
|
|
|
|
2013-12-22 23:08:00 +08:00
|
|
|
/******************************************************************************
|
|
|
|
* instmem object implementation
|
|
|
|
*****************************************************************************/
|
2015-08-20 12:54:17 +08:00
|
|
|
#define nv04_instobj(p) container_of((p), struct nv04_instobj, memory)
|
2013-12-22 23:08:00 +08:00
|
|
|
|
2015-08-20 12:54:17 +08:00
|
|
|
struct nv04_instobj {
|
|
|
|
struct nvkm_memory memory;
|
|
|
|
struct nv04_instmem *imem;
|
|
|
|
struct nvkm_mm_node *node;
|
|
|
|
};
|
|
|
|
|
|
|
|
static enum nvkm_memory_target
|
|
|
|
nv04_instobj_target(struct nvkm_memory *memory)
|
|
|
|
{
|
|
|
|
return NVKM_MEM_TARGET_INST;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u64
|
|
|
|
nv04_instobj_addr(struct nvkm_memory *memory)
|
|
|
|
{
|
|
|
|
return nv04_instobj(memory)->node->offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u64
|
|
|
|
nv04_instobj_size(struct nvkm_memory *memory)
|
|
|
|
{
|
|
|
|
return nv04_instobj(memory)->node->length;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __iomem *
|
|
|
|
nv04_instobj_acquire(struct nvkm_memory *memory)
|
2013-12-22 23:08:00 +08:00
|
|
|
{
|
2015-08-20 12:54:17 +08:00
|
|
|
struct nv04_instobj *iobj = nv04_instobj(memory);
|
|
|
|
struct nvkm_device *device = iobj->imem->base.subdev.device;
|
|
|
|
return device->pri + 0x700000 + iobj->node->offset;
|
2013-12-22 23:08:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-08-20 12:54:17 +08:00
|
|
|
nv04_instobj_release(struct nvkm_memory *memory)
|
2013-12-22 23:08:00 +08:00
|
|
|
{
|
2015-08-20 12:54:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static u32
|
|
|
|
nv04_instobj_rd32(struct nvkm_memory *memory, u64 offset)
|
|
|
|
{
|
|
|
|
struct nv04_instobj *iobj = nv04_instobj(memory);
|
|
|
|
struct nvkm_device *device = iobj->imem->base.subdev.device;
|
|
|
|
return nvkm_rd32(device, 0x700000 + iobj->node->offset + offset);
|
2013-12-22 23:08:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-08-20 12:54:17 +08:00
|
|
|
nv04_instobj_wr32(struct nvkm_memory *memory, u64 offset, u32 data)
|
2013-12-22 23:08:00 +08:00
|
|
|
{
|
2015-08-20 12:54:17 +08:00
|
|
|
struct nv04_instobj *iobj = nv04_instobj(memory);
|
|
|
|
struct nvkm_device *device = iobj->imem->base.subdev.device;
|
|
|
|
nvkm_wr32(device, 0x700000 + iobj->node->offset + offset, data);
|
2013-12-22 23:08:00 +08:00
|
|
|
}
|
|
|
|
|
2015-08-20 12:54:17 +08:00
|
|
|
static void *
|
|
|
|
nv04_instobj_dtor(struct nvkm_memory *memory)
|
|
|
|
{
|
|
|
|
struct nv04_instobj *iobj = nv04_instobj(memory);
|
|
|
|
mutex_lock(&iobj->imem->base.subdev.mutex);
|
|
|
|
nvkm_mm_free(&iobj->imem->heap, &iobj->node);
|
|
|
|
mutex_unlock(&iobj->imem->base.subdev.mutex);
|
|
|
|
return iobj;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct nvkm_memory_func
|
|
|
|
nv04_instobj_func = {
|
|
|
|
.dtor = nv04_instobj_dtor,
|
|
|
|
.target = nv04_instobj_target,
|
|
|
|
.size = nv04_instobj_size,
|
|
|
|
.addr = nv04_instobj_addr,
|
|
|
|
.acquire = nv04_instobj_acquire,
|
|
|
|
.release = nv04_instobj_release,
|
|
|
|
.rd32 = nv04_instobj_rd32,
|
|
|
|
.wr32 = nv04_instobj_wr32,
|
|
|
|
};
|
|
|
|
|
2012-07-14 17:09:17 +08:00
|
|
|
static int
|
2015-08-20 12:54:17 +08:00
|
|
|
nv04_instobj_new(struct nvkm_instmem *base, u32 size, u32 align, bool zero,
|
|
|
|
struct nvkm_memory **pmemory)
|
2012-07-14 17:09:17 +08:00
|
|
|
{
|
2015-08-20 12:54:17 +08:00
|
|
|
struct nv04_instmem *imem = nv04_instmem(base);
|
|
|
|
struct nv04_instobj *iobj;
|
2013-12-22 23:08:00 +08:00
|
|
|
int ret;
|
2012-07-14 17:09:17 +08:00
|
|
|
|
2015-08-20 12:54:17 +08:00
|
|
|
if (!(iobj = kzalloc(sizeof(*iobj), GFP_KERNEL)))
|
|
|
|
return -ENOMEM;
|
|
|
|
*pmemory = &iobj->memory;
|
2012-07-14 17:09:17 +08:00
|
|
|
|
2015-08-20 12:54:17 +08:00
|
|
|
nvkm_memory_ctor(&nv04_instobj_func, &iobj->memory);
|
|
|
|
iobj->imem = imem;
|
2012-07-14 17:09:17 +08:00
|
|
|
|
2015-08-20 12:54:06 +08:00
|
|
|
mutex_lock(&imem->base.subdev.mutex);
|
2015-08-20 12:54:17 +08:00
|
|
|
ret = nvkm_mm_head(&imem->heap, 0, 1, size, size,
|
|
|
|
align ? align : 1, &iobj->node);
|
2015-08-20 12:54:06 +08:00
|
|
|
mutex_unlock(&imem->base.subdev.mutex);
|
2015-08-20 12:54:17 +08:00
|
|
|
return ret;
|
2012-07-14 17:09:17 +08:00
|
|
|
}
|
|
|
|
|
2013-12-22 22:39:47 +08:00
|
|
|
/******************************************************************************
|
|
|
|
* instmem subdev implementation
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
static u32
|
2015-08-20 12:54:13 +08:00
|
|
|
nv04_instmem_rd32(struct nvkm_instmem *imem, u32 addr)
|
2009-12-11 17:24:15 +08:00
|
|
|
{
|
2015-08-20 12:54:09 +08:00
|
|
|
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-08-20 12:54:13 +08:00
|
|
|
nv04_instmem_wr32(struct nvkm_instmem *imem, u32 addr, u32 data)
|
2013-12-22 22:39:47 +08:00
|
|
|
{
|
2015-08-20 12:54:09 +08:00
|
|
|
nvkm_wr32(imem->subdev.device, 0x700000 + addr, data);
|
2013-12-22 22:39:47 +08:00
|
|
|
}
|
2012-07-14 17:09:17 +08:00
|
|
|
|
2015-08-20 12:54:17 +08:00
|
|
|
static 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;
|
2015-08-20 12:54:17 +08:00
|
|
|
nvkm_gpuobj_ref(NULL, &imem->base.ramfc);
|
|
|
|
nvkm_gpuobj_ref(NULL, &imem->base.ramro);
|
|
|
|
nvkm_ramht_ref(NULL, &imem->base.ramht);
|
|
|
|
nvkm_gpuobj_ref(NULL, &imem->base.vbios);
|
2015-08-20 12:54:06 +08:00
|
|
|
nvkm_mm_fini(&imem->heap);
|
|
|
|
nvkm_instmem_destroy(&imem->base);
|
2012-07-14 17:09:17 +08:00
|
|
|
}
|
2012-07-13 14:42:14 +08:00
|
|
|
|
2015-08-20 12:54:13 +08:00
|
|
|
static const struct nvkm_instmem_func
|
|
|
|
nv04_instmem_func = {
|
|
|
|
.rd32 = nv04_instmem_rd32,
|
|
|
|
.wr32 = nv04_instmem_wr32,
|
|
|
|
};
|
|
|
|
|
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;
|
|
|
|
|
2015-08-20 12:54:13 +08:00
|
|
|
imem->base.func = &nv04_instmem_func;
|
|
|
|
|
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,
|
2015-08-20 12:54:17 +08:00
|
|
|
&imem->base.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:17 +08:00
|
|
|
ret = nvkm_ramht_new(nv_object(imem), NULL, 0x08000, 0,
|
|
|
|
&imem->base.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,
|
2015-08-20 12:54:17 +08:00
|
|
|
NVOBJ_FLAG_ZERO_ALLOC,
|
|
|
|
&imem->base.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,
|
2015-08-20 12:54:17 +08:00
|
|
|
&imem->base.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
|
|
|
},
|
2015-08-20 12:54:17 +08:00
|
|
|
.memory_new = nv04_instobj_new,
|
|
|
|
.persistent = false,
|
|
|
|
.zero = false,
|
2013-12-22 22:39:47 +08:00
|
|
|
}.base;
|