nv04.c 5.5 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
#include "nv04.h"
25

26 27
#include <core/ramht.h>

28 29 30 31 32
/******************************************************************************
 * instmem object implementation
 *****************************************************************************/

static u32
33
nv04_instobj_rd32(struct nvkm_object *object, u64 addr)
34
{
35
	struct nv04_instmem_priv *priv = (void *)nvkm_instmem(object);
36
	struct nv04_instobj_priv *node = (void *)object;
37
	return nv_ro32(priv, node->mem->offset + addr);
38 39 40
}

static void
41
nv04_instobj_wr32(struct nvkm_object *object, u64 addr, u32 data)
42
{
43
	struct nv04_instmem_priv *priv = (void *)nvkm_instmem(object);
44
	struct nv04_instobj_priv *node = (void *)object;
45
	nv_wo32(priv, node->mem->offset + addr, data);
46 47 48
}

static void
49
nv04_instobj_dtor(struct nvkm_object *object)
50
{
51
	struct nv04_instmem_priv *priv = (void *)nvkm_instmem(object);
52
	struct nv04_instobj_priv *node = (void *)object;
53 54 55
	struct nvkm_subdev *subdev = (void *)priv;

	mutex_lock(&subdev->mutex);
56
	nvkm_mm_free(&priv->heap, &node->mem);
57 58
	mutex_unlock(&subdev->mutex);

59
	nvkm_instobj_destroy(&node->base);
60 61
}

62
static int
63 64 65
nv04_instobj_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
		  struct nvkm_oclass *oclass, void *data, u32 size,
		  struct nvkm_object **pobject)
66
{
67
	struct nv04_instmem_priv *priv = (void *)nvkm_instmem(parent);
68
	struct nv04_instobj_priv *node;
69
	struct nvkm_instobj_args *args = data;
70
	struct nvkm_subdev *subdev = (void *)priv;
71
	int ret;
72

73 74
	if (!args->align)
		args->align = 1;
75

76
	ret = nvkm_instobj_create(parent, engine, oclass, &node);
77 78 79 80
	*pobject = nv_object(node);
	if (ret)
		return ret;

81
	mutex_lock(&subdev->mutex);
82 83
	ret = nvkm_mm_head(&priv->heap, 0, 1, args->size, args->size,
			   args->align, &node->mem);
84
	mutex_unlock(&subdev->mutex);
85 86 87 88 89 90 91 92
	if (ret)
		return ret;

	node->base.addr = node->mem->offset;
	node->base.size = node->mem->length;
	return 0;
}

93
struct nvkm_instobj_impl
94
nv04_instobj_oclass = {
95
	.base.ofuncs = &(struct nvkm_ofuncs) {
96 97
		.ctor = nv04_instobj_ctor,
		.dtor = nv04_instobj_dtor,
98 99
		.init = _nvkm_instobj_init,
		.fini = _nvkm_instobj_fini,
100 101 102 103 104
		.rd32 = nv04_instobj_rd32,
		.wr32 = nv04_instobj_wr32,
	},
};

105 106 107 108 109
/******************************************************************************
 * instmem subdev implementation
 *****************************************************************************/

static u32
110
nv04_instmem_rd32(struct nvkm_object *object, u64 addr)
111
{
112 113
	return nv_rd32(object, 0x700000 + addr);
}
114

115
static void
116
nv04_instmem_wr32(struct nvkm_object *object, u64 addr, u32 data)
117 118 119
{
	return nv_wr32(object, 0x700000 + addr, data);
}
120

121
void
122
nv04_instmem_dtor(struct nvkm_object *object)
123 124
{
	struct nv04_instmem_priv *priv = (void *)object;
125 126 127 128 129
	nvkm_gpuobj_ref(NULL, &priv->ramfc);
	nvkm_gpuobj_ref(NULL, &priv->ramro);
	nvkm_ramht_ref(NULL, &priv->ramht);
	nvkm_gpuobj_ref(NULL, &priv->vbios);
	nvkm_mm_fini(&priv->heap);
130 131
	if (priv->iomem)
		iounmap(priv->iomem);
132
	nvkm_instmem_destroy(&priv->base);
133
}
134

135
static int
136 137 138
nv04_instmem_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
		  struct nvkm_oclass *oclass, void *data, u32 size,
		  struct nvkm_object **pobject)
139 140 141
{
	struct nv04_instmem_priv *priv;
	int ret;
142

143
	ret = nvkm_instmem_create(parent, engine, oclass, &priv);
144
	*pobject = nv_object(priv);
145 146 147
	if (ret)
		return ret;

148 149 150
	/* PRAMIN aperture maps over the end of VRAM, reserve it */
	priv->base.reserved = 512 * 1024;

151
	ret = nvkm_mm_init(&priv->heap, 0, priv->base.reserved, 1);
152 153 154
	if (ret)
		return ret;

155
	/* 0x00000-0x10000: reserve for probable vbios image */
156 157
	ret = nvkm_gpuobj_new(nv_object(priv), NULL, 0x10000, 0, 0,
			      &priv->vbios);
158 159 160
	if (ret)
		return ret;

161
	/* 0x10000-0x18000: reserve for RAMHT */
162
	ret = nvkm_ramht_new(nv_object(priv), NULL, 0x08000, 0, &priv->ramht);
163 164 165
	if (ret)
		return ret;

166
	/* 0x18000-0x18800: reserve for RAMFC (enough for 32 nv30 channels) */
167 168
	ret = nvkm_gpuobj_new(nv_object(priv), NULL, 0x00800, 0,
			      NVOBJ_FLAG_ZERO_ALLOC, &priv->ramfc);
169 170
	if (ret)
		return ret;
171

172
	/* 0x18800-0x18a00: reserve for RAMRO */
173 174
	ret = nvkm_gpuobj_new(nv_object(priv), NULL, 0x00200, 0, 0,
			      &priv->ramro);
175
	if (ret)
176
		return ret;
177

178
	return 0;
179 180
}

181 182
struct nvkm_oclass *
nv04_instmem_oclass = &(struct nvkm_instmem_impl) {
183
	.base.handle = NV_SUBDEV(INSTMEM, 0x04),
184
	.base.ofuncs = &(struct nvkm_ofuncs) {
185 186
		.ctor = nv04_instmem_ctor,
		.dtor = nv04_instmem_dtor,
187 188
		.init = _nvkm_instmem_init,
		.fini = _nvkm_instmem_fini,
189 190 191
		.rd32 = nv04_instmem_rd32,
		.wr32 = nv04_instmem_wr32,
	},
192
	.instobj = &nv04_instobj_oclass.base,
193
}.base;