nv40.c 7.3 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 nv40_instmem(p) container_of((p), struct nv40_instmem, base)
#include "priv.h"
26

27
#include <core/ramht.h>
28
#include <engine/gr/nv40.h>
29

30 31 32 33 34 35 36 37 38
struct nv40_instmem {
	struct nvkm_instmem base;
	struct nvkm_mm heap;
	void __iomem *iomem;
};

/******************************************************************************
 * instmem object implementation
 *****************************************************************************/
39
#define nv40_instobj(p) container_of((p), struct nv40_instobj, base.memory)
40 41

struct nv40_instobj {
42
	struct nvkm_instobj base;
43 44 45 46
	struct nv40_instmem *imem;
	struct nvkm_mm_node *node;
};

47 48
static void
nv40_instobj_wr32(struct nvkm_memory *memory, u64 offset, u32 data)
49
{
50 51
	struct nv40_instobj *iobj = nv40_instobj(memory);
	iowrite32_native(data, iobj->imem->iomem + iobj->node->offset + offset);
52 53
}

54 55
static u32
nv40_instobj_rd32(struct nvkm_memory *memory, u64 offset)
56
{
57 58
	struct nv40_instobj *iobj = nv40_instobj(memory);
	return ioread32_native(iobj->imem->iomem + iobj->node->offset + offset);
59 60
}

61 62 63 64 65 66 67 68
static const struct nvkm_memory_ptrs
nv40_instobj_ptrs = {
	.rd32 = nv40_instobj_rd32,
	.wr32 = nv40_instobj_wr32,
};

static void
nv40_instobj_release(struct nvkm_memory *memory)
69
{
70
	wmb();
71 72 73 74 75 76 77 78 79
}

static void __iomem *
nv40_instobj_acquire(struct nvkm_memory *memory)
{
	struct nv40_instobj *iobj = nv40_instobj(memory);
	return iobj->imem->iomem + iobj->node->offset;
}

80 81
static u64
nv40_instobj_size(struct nvkm_memory *memory)
82
{
83
	return nv40_instobj(memory)->node->length;
84 85
}

86 87
static u64
nv40_instobj_addr(struct nvkm_memory *memory)
88
{
89
	return nv40_instobj(memory)->node->offset;
90 91
}

92 93
static enum nvkm_memory_target
nv40_instobj_target(struct nvkm_memory *memory)
94
{
95
	return NVKM_MEM_TARGET_INST;
96 97 98 99 100 101 102 103 104
}

static void *
nv40_instobj_dtor(struct nvkm_memory *memory)
{
	struct nv40_instobj *iobj = nv40_instobj(memory);
	mutex_lock(&iobj->imem->base.subdev.mutex);
	nvkm_mm_free(&iobj->imem->heap, &iobj->node);
	mutex_unlock(&iobj->imem->base.subdev.mutex);
105
	nvkm_instobj_dtor(&iobj->imem->base, &iobj->base);
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
	return iobj;
}

static const struct nvkm_memory_func
nv40_instobj_func = {
	.dtor = nv40_instobj_dtor,
	.target = nv40_instobj_target,
	.size = nv40_instobj_size,
	.addr = nv40_instobj_addr,
	.acquire = nv40_instobj_acquire,
	.release = nv40_instobj_release,
};

static int
nv40_instobj_new(struct nvkm_instmem *base, u32 size, u32 align, bool zero,
		 struct nvkm_memory **pmemory)
{
	struct nv40_instmem *imem = nv40_instmem(base);
	struct nv40_instobj *iobj;
	int ret;

	if (!(iobj = kzalloc(sizeof(*iobj), GFP_KERNEL)))
		return -ENOMEM;
129
	*pmemory = &iobj->base.memory;
130

131 132
	nvkm_instobj_ctor(&nv40_instobj_func, &imem->base, &iobj->base);
	iobj->base.memory.ptrs = &nv40_instobj_ptrs;
133 134 135 136 137 138 139 140 141
	iobj->imem = imem;

	mutex_lock(&imem->base.subdev.mutex);
	ret = nvkm_mm_head(&imem->heap, 0, 1, size, size,
			   align ? align : 1, &iobj->node);
	mutex_unlock(&imem->base.subdev.mutex);
	return ret;
}

142 143 144 145 146
/******************************************************************************
 * instmem subdev implementation
 *****************************************************************************/

static u32
147
nv40_instmem_rd32(struct nvkm_instmem *base, u32 addr)
148
{
149
	return ioread32_native(nv40_instmem(base)->iomem + addr);
150 151 152
}

static void
153
nv40_instmem_wr32(struct nvkm_instmem *base, u32 addr, u32 data)
154
{
155
	iowrite32_native(data, nv40_instmem(base)->iomem + addr);
156 157
}

158
static int
159
nv40_instmem_oneinit(struct nvkm_instmem *base)
160
{
161 162 163
	struct nv40_instmem *imem = nv40_instmem(base);
	struct nvkm_device *device = imem->base.subdev.device;
	int ret, vs;
164

165 166
	/* PRAMIN aperture maps over the end of vram, reserve enough space
	 * to fit graphics contexts for every channel, the magics come
167
	 * from engine/gr/nv40.c
168
	 */
169
	vs = hweight8((nvkm_rd32(device, 0x001540) & 0x0000ff00) >> 8);
B
Ben Skeggs 已提交
170 171
	if      (device->chipset == 0x40) imem->base.reserved = 0x6aa0 * vs;
	else if (device->chipset  < 0x43) imem->base.reserved = 0x4f00 * vs;
172
	else if (nv44_gr_class(device))   imem->base.reserved = 0x4980 * vs;
B
Ben Skeggs 已提交
173 174 175 176 177 178 179 180
	else				  imem->base.reserved = 0x4a40 * vs;
	imem->base.reserved += 16 * 1024;
	imem->base.reserved *= 32;		/* per-channel */
	imem->base.reserved += 512 * 1024;	/* pci(e)gart table */
	imem->base.reserved += 512 * 1024;	/* object storage */
	imem->base.reserved = round_up(imem->base.reserved, 4096);

	ret = nvkm_mm_init(&imem->heap, 0, imem->base.reserved, 1);
181 182 183
	if (ret)
		return ret;

184
	/* 0x00000-0x10000: reserve for probable vbios image */
185
	ret = nvkm_memory_new(device, NVKM_MEM_TARGET_INST, 0x10000, 0, false,
186
			      &imem->base.vbios);
187 188 189
	if (ret)
		return ret;

190
	/* 0x10000-0x18000: reserve for RAMHT */
191
	ret = nvkm_ramht_new(device, 0x08000, 0, NULL, &imem->base.ramht);
192 193 194
	if (ret)
		return ret;

195 196 197
	/* 0x18000-0x18200: reserve for RAMRO
	 * 0x18200-0x20000: padding
	 */
198
	ret = nvkm_memory_new(device, NVKM_MEM_TARGET_INST, 0x08000, 0, false,
199
			      &imem->base.ramro);
200 201 202
	if (ret)
		return ret;

203
	/* 0x20000-0x21000: reserve for RAMFC
204
	 * 0x21000-0x40000: padding and some unknown crap
205
	 */
206 207
	ret = nvkm_memory_new(device, NVKM_MEM_TARGET_INST, 0x20000, 0, true,
			      &imem->base.ramfc);
208
	if (ret)
209 210 211 212 213
		return ret;

	return 0;
}

214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
static void *
nv40_instmem_dtor(struct nvkm_instmem *base)
{
	struct nv40_instmem *imem = nv40_instmem(base);
	nvkm_memory_del(&imem->base.ramfc);
	nvkm_memory_del(&imem->base.ramro);
	nvkm_ramht_del(&imem->base.ramht);
	nvkm_memory_del(&imem->base.vbios);
	nvkm_mm_fini(&imem->heap);
	if (imem->iomem)
		iounmap(imem->iomem);
	return imem;
}

static const struct nvkm_instmem_func
nv40_instmem = {
	.dtor = nv40_instmem_dtor,
	.oneinit = nv40_instmem_oneinit,
	.rd32 = nv40_instmem_rd32,
	.wr32 = nv40_instmem_wr32,
234
	.memory_new = nv40_instobj_new,
235
	.persistent = true,
236
	.zero = false,
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
};

int
nv40_instmem_new(struct nvkm_device *device, int index,
		 struct nvkm_instmem **pimem)
{
	struct nv40_instmem *imem;
	int bar;

	if (!(imem = kzalloc(sizeof(*imem), GFP_KERNEL)))
		return -ENOMEM;
	nvkm_instmem_ctor(&nv40_instmem, device, index, &imem->base);
	*pimem = &imem->base;

	/* map bar */
252
	if (device->func->resource_size(device, 2))
253 254 255 256
		bar = 2;
	else
		bar = 3;

257 258
	imem->iomem = ioremap_wc(device->func->resource_addr(device, bar),
				 device->func->resource_size(device, bar));
259 260 261 262 263 264 265
	if (!imem->iomem) {
		nvkm_error(&imem->base.subdev, "unable to map PRAMIN BAR\n");
		return -EFAULT;
	}

	return 0;
}