nv04.c 6.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * 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
 */
24 25
#define nv04_instmem(p) container_of((p), struct nv04_instmem, base)
#include "priv.h"
26

27
#include <core/memory.h>
28 29
#include <core/ramht.h>

30 31 32 33 34
struct nv04_instmem {
	struct nvkm_instmem base;
	struct nvkm_mm heap;
};

35 36 37
/******************************************************************************
 * instmem object implementation
 *****************************************************************************/
38
#define nv04_instobj(p) container_of((p), struct nv04_instobj, memory)
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
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)
66
{
67 68 69
	struct nv04_instobj *iobj = nv04_instobj(memory);
	struct nvkm_device *device = iobj->imem->base.subdev.device;
	return device->pri + 0x700000 + iobj->node->offset;
70 71 72
}

static void
73
nv04_instobj_release(struct nvkm_memory *memory)
74
{
75 76 77 78 79 80 81 82
}

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);
83 84 85
}

static void
86
nv04_instobj_wr32(struct nvkm_memory *memory, u64 offset, u32 data)
87
{
88 89 90
	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);
91 92
}

93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
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,
};

115
static int
116 117
nv04_instobj_new(struct nvkm_instmem *base, u32 size, u32 align, bool zero,
		 struct nvkm_memory **pmemory)
118
{
119 120
	struct nv04_instmem *imem = nv04_instmem(base);
	struct nv04_instobj *iobj;
121
	int ret;
122

123 124 125
	if (!(iobj = kzalloc(sizeof(*iobj), GFP_KERNEL)))
		return -ENOMEM;
	*pmemory = &iobj->memory;
126

127 128
	nvkm_memory_ctor(&nv04_instobj_func, &iobj->memory);
	iobj->imem = imem;
129

B
Ben Skeggs 已提交
130
	mutex_lock(&imem->base.subdev.mutex);
131 132
	ret = nvkm_mm_head(&imem->heap, 0, 1, size, size,
			   align ? align : 1, &iobj->node);
B
Ben Skeggs 已提交
133
	mutex_unlock(&imem->base.subdev.mutex);
134
	return ret;
135 136
}

137 138 139 140 141
/******************************************************************************
 * instmem subdev implementation
 *****************************************************************************/

static u32
142
nv04_instmem_rd32(struct nvkm_instmem *imem, u32 addr)
143
{
144
	return nvkm_rd32(imem->subdev.device, 0x700000 + addr);
145
}
146

147
static void
148
nv04_instmem_wr32(struct nvkm_instmem *imem, u32 addr, u32 data)
149
{
150
	nvkm_wr32(imem->subdev.device, 0x700000 + addr, data);
151
}
152

153
static void
154
nv04_instmem_dtor(struct nvkm_object *object)
155
{
B
Ben Skeggs 已提交
156
	struct nv04_instmem *imem = (void *)object;
157 158 159 160
	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);
B
Ben Skeggs 已提交
161 162
	nvkm_mm_fini(&imem->heap);
	nvkm_instmem_destroy(&imem->base);
163
}
164

165 166 167 168 169 170
static const struct nvkm_instmem_func
nv04_instmem_func = {
	.rd32 = nv04_instmem_rd32,
	.wr32 = nv04_instmem_wr32,
};

171
static int
172 173 174
nv04_instmem_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
		  struct nvkm_oclass *oclass, void *data, u32 size,
		  struct nvkm_object **pobject)
175
{
B
Ben Skeggs 已提交
176
	struct nv04_instmem *imem;
177
	int ret;
178

B
Ben Skeggs 已提交
179 180
	ret = nvkm_instmem_create(parent, engine, oclass, &imem);
	*pobject = nv_object(imem);
181 182 183
	if (ret)
		return ret;

184 185
	imem->base.func = &nv04_instmem_func;

186
	/* PRAMIN aperture maps over the end of VRAM, reserve it */
B
Ben Skeggs 已提交
187
	imem->base.reserved = 512 * 1024;
188

B
Ben Skeggs 已提交
189
	ret = nvkm_mm_init(&imem->heap, 0, imem->base.reserved, 1);
190 191 192
	if (ret)
		return ret;

193
	/* 0x00000-0x10000: reserve for probable vbios image */
B
Ben Skeggs 已提交
194
	ret = nvkm_gpuobj_new(nv_object(imem), NULL, 0x10000, 0, 0,
195
			      &imem->base.vbios);
196 197 198
	if (ret)
		return ret;

199
	/* 0x10000-0x18000: reserve for RAMHT */
200 201
	ret = nvkm_ramht_new(nv_object(imem), NULL, 0x08000, 0,
			     &imem->base.ramht);
202 203 204
	if (ret)
		return ret;

205
	/* 0x18000-0x18800: reserve for RAMFC (enough for 32 nv30 channels) */
B
Ben Skeggs 已提交
206
	ret = nvkm_gpuobj_new(nv_object(imem), NULL, 0x00800, 0,
207 208
			      NVOBJ_FLAG_ZERO_ALLOC,
			      &imem->base.ramfc);
209 210
	if (ret)
		return ret;
211

212
	/* 0x18800-0x18a00: reserve for RAMRO */
B
Ben Skeggs 已提交
213
	ret = nvkm_gpuobj_new(nv_object(imem), NULL, 0x00200, 0, 0,
214
			      &imem->base.ramro);
215
	if (ret)
216
		return ret;
217

218
	return 0;
219 220
}

221 222
struct nvkm_oclass *
nv04_instmem_oclass = &(struct nvkm_instmem_impl) {
223
	.base.handle = NV_SUBDEV(INSTMEM, 0x04),
224
	.base.ofuncs = &(struct nvkm_ofuncs) {
225 226
		.ctor = nv04_instmem_ctor,
		.dtor = nv04_instmem_dtor,
227 228
		.init = _nvkm_instmem_init,
		.fini = _nvkm_instmem_fini,
229
	},
230 231 232
	.memory_new = nv04_instobj_new,
	.persistent = false,
	.zero = false,
233
}.base;