1 /*
2  * Copyright 2012 Red Hat Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Authors: Ben Skeggs
23  */
24 #include "nv04.h"
25 
26 #include <core/ramht.h>
27 
28 /******************************************************************************
29  * instmem object implementation
30  *****************************************************************************/
31 
32 static u32
33 nv04_instobj_rd32(struct nvkm_object *object, u64 addr)
34 {
35 	struct nv04_instmem *imem = (void *)nvkm_instmem(object);
36 	struct nv04_instobj *node = (void *)object;
37 	return nv_ro32(imem, 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 *imem = (void *)nvkm_instmem(object);
44 	struct nv04_instobj *node = (void *)object;
45 	nv_wo32(imem, node->mem->offset + addr, data);
46 }
47 
48 static void
49 nv04_instobj_dtor(struct nvkm_object *object)
50 {
51 	struct nv04_instmem *imem = (void *)nvkm_instmem(object);
52 	struct nv04_instobj *node = (void *)object;
53 	mutex_lock(&imem->base.subdev.mutex);
54 	nvkm_mm_free(&imem->heap, &node->mem);
55 	mutex_unlock(&imem->base.subdev.mutex);
56 	nvkm_instobj_destroy(&node->base);
57 }
58 
59 static int
60 nv04_instobj_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
61 		  struct nvkm_oclass *oclass, void *data, u32 size,
62 		  struct nvkm_object **pobject)
63 {
64 	struct nv04_instmem *imem = (void *)nvkm_instmem(parent);
65 	struct nv04_instobj *node;
66 	struct nvkm_instobj_args *args = data;
67 	int ret;
68 
69 	if (!args->align)
70 		args->align = 1;
71 
72 	ret = nvkm_instobj_create(parent, engine, oclass, &node);
73 	*pobject = nv_object(node);
74 	if (ret)
75 		return ret;
76 
77 	mutex_lock(&imem->base.subdev.mutex);
78 	ret = nvkm_mm_head(&imem->heap, 0, 1, args->size, args->size,
79 			   args->align, &node->mem);
80 	mutex_unlock(&imem->base.subdev.mutex);
81 	if (ret)
82 		return ret;
83 
84 	node->base.addr = node->mem->offset;
85 	node->base.size = node->mem->length;
86 	return 0;
87 }
88 
89 struct nvkm_instobj_impl
90 nv04_instobj_oclass = {
91 	.base.ofuncs = &(struct nvkm_ofuncs) {
92 		.ctor = nv04_instobj_ctor,
93 		.dtor = nv04_instobj_dtor,
94 		.init = _nvkm_instobj_init,
95 		.fini = _nvkm_instobj_fini,
96 		.rd32 = nv04_instobj_rd32,
97 		.wr32 = nv04_instobj_wr32,
98 	},
99 };
100 
101 /******************************************************************************
102  * instmem subdev implementation
103  *****************************************************************************/
104 
105 static u32
106 nv04_instmem_rd32(struct nvkm_object *object, u64 addr)
107 {
108 	struct nvkm_instmem *imem = (void *)object;
109 	return nvkm_rd32(imem->subdev.device, 0x700000 + addr);
110 }
111 
112 static void
113 nv04_instmem_wr32(struct nvkm_object *object, u64 addr, u32 data)
114 {
115 	struct nvkm_instmem *imem = (void *)object;
116 	nvkm_wr32(imem->subdev.device, 0x700000 + addr, data);
117 }
118 
119 void
120 nv04_instmem_dtor(struct nvkm_object *object)
121 {
122 	struct nv04_instmem *imem = (void *)object;
123 	nvkm_gpuobj_ref(NULL, &imem->ramfc);
124 	nvkm_gpuobj_ref(NULL, &imem->ramro);
125 	nvkm_ramht_ref(NULL, &imem->ramht);
126 	nvkm_gpuobj_ref(NULL, &imem->vbios);
127 	nvkm_mm_fini(&imem->heap);
128 	if (imem->iomem)
129 		iounmap(imem->iomem);
130 	nvkm_instmem_destroy(&imem->base);
131 }
132 
133 static int
134 nv04_instmem_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
135 		  struct nvkm_oclass *oclass, void *data, u32 size,
136 		  struct nvkm_object **pobject)
137 {
138 	struct nv04_instmem *imem;
139 	int ret;
140 
141 	ret = nvkm_instmem_create(parent, engine, oclass, &imem);
142 	*pobject = nv_object(imem);
143 	if (ret)
144 		return ret;
145 
146 	/* PRAMIN aperture maps over the end of VRAM, reserve it */
147 	imem->base.reserved = 512 * 1024;
148 
149 	ret = nvkm_mm_init(&imem->heap, 0, imem->base.reserved, 1);
150 	if (ret)
151 		return ret;
152 
153 	/* 0x00000-0x10000: reserve for probable vbios image */
154 	ret = nvkm_gpuobj_new(nv_object(imem), NULL, 0x10000, 0, 0,
155 			      &imem->vbios);
156 	if (ret)
157 		return ret;
158 
159 	/* 0x10000-0x18000: reserve for RAMHT */
160 	ret = nvkm_ramht_new(nv_object(imem), NULL, 0x08000, 0, &imem->ramht);
161 	if (ret)
162 		return ret;
163 
164 	/* 0x18000-0x18800: reserve for RAMFC (enough for 32 nv30 channels) */
165 	ret = nvkm_gpuobj_new(nv_object(imem), NULL, 0x00800, 0,
166 			      NVOBJ_FLAG_ZERO_ALLOC, &imem->ramfc);
167 	if (ret)
168 		return ret;
169 
170 	/* 0x18800-0x18a00: reserve for RAMRO */
171 	ret = nvkm_gpuobj_new(nv_object(imem), NULL, 0x00200, 0, 0,
172 			      &imem->ramro);
173 	if (ret)
174 		return ret;
175 
176 	return 0;
177 }
178 
179 struct nvkm_oclass *
180 nv04_instmem_oclass = &(struct nvkm_instmem_impl) {
181 	.base.handle = NV_SUBDEV(INSTMEM, 0x04),
182 	.base.ofuncs = &(struct nvkm_ofuncs) {
183 		.ctor = nv04_instmem_ctor,
184 		.dtor = nv04_instmem_dtor,
185 		.init = _nvkm_instmem_init,
186 		.fini = _nvkm_instmem_fini,
187 		.rd32 = nv04_instmem_rd32,
188 		.wr32 = nv04_instmem_wr32,
189 	},
190 	.instobj = &nv04_instobj_oclass.base,
191 }.base;
192