2 * Copyright 2012 Red Hat Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
23 #include <engine/falcon.h>
24 #include <subdev/timer.h>
27 nouveau_falcon_intr(struct nouveau_subdev
*subdev
)
29 struct nouveau_falcon
*falcon
= (void *)subdev
;
30 u32 dispatch
= nv_ro32(falcon
, 0x01c);
31 u32 intr
= nv_ro32(falcon
, 0x008) & dispatch
& ~(dispatch
>> 16);
33 if (intr
& 0x00000010) {
34 nv_debug(falcon
, "ucode halted\n");
35 nv_wo32(falcon
, 0x004, 0x00000010);
40 nv_error(falcon
, "unhandled intr 0x%08x\n", intr
);
41 nv_wo32(falcon
, 0x004, intr
);
46 _nouveau_falcon_rd32(struct nouveau_object
*object
, u64 addr
)
48 struct nouveau_falcon
*falcon
= (void *)object
;
49 return nv_rd32(falcon
, falcon
->addr
+ addr
);
53 _nouveau_falcon_wr32(struct nouveau_object
*object
, u64 addr
, u32 data
)
55 struct nouveau_falcon
*falcon
= (void *)object
;
56 nv_wr32(falcon
, falcon
->addr
+ addr
, data
);
60 vmemdup(const void *src
, size_t len
)
62 void *p
= vmalloc(len
);
70 _nouveau_falcon_init(struct nouveau_object
*object
)
72 struct nouveau_device
*device
= nv_device(object
);
73 struct nouveau_falcon
*falcon
= (void *)object
;
74 const struct firmware
*fw
;
75 char name
[32] = "internal";
79 /* enable engine, and determine its capabilities */
80 ret
= nouveau_engine_init(&falcon
->base
);
84 if (device
->chipset
< 0xa3 ||
85 device
->chipset
== 0xaa || device
->chipset
== 0xac) {
87 falcon
->secret
= (falcon
->addr
== 0x087000) ? 1 : 0;
89 caps
= nv_ro32(falcon
, 0x12c);
90 falcon
->version
= (caps
& 0x0000000f);
91 falcon
->secret
= (caps
& 0x00000030) >> 4;
94 caps
= nv_ro32(falcon
, 0x108);
95 falcon
->code
.limit
= (caps
& 0x000001ff) << 8;
96 falcon
->data
.limit
= (caps
& 0x0003fe00) >> 1;
98 nv_debug(falcon
, "falcon version: %d\n", falcon
->version
);
99 nv_debug(falcon
, "secret level: %d\n", falcon
->secret
);
100 nv_debug(falcon
, "code limit: %d\n", falcon
->code
.limit
);
101 nv_debug(falcon
, "data limit: %d\n", falcon
->data
.limit
);
103 /* wait for 'uc halted' to be signalled before continuing */
104 if (falcon
->secret
&& falcon
->version
< 4) {
105 if (!falcon
->version
)
106 nv_wait(falcon
, 0x008, 0x00000010, 0x00000010);
108 nv_wait(falcon
, 0x180, 0x80000000, 0);
109 nv_wo32(falcon
, 0x004, 0x00000010);
112 /* disable all interrupts */
113 nv_wo32(falcon
, 0x014, 0xffffffff);
115 /* no default ucode provided by the engine implementation, try and
116 * locate a "self-bootstrapping" firmware image for the engine
118 if (!falcon
->code
.data
) {
119 snprintf(name
, sizeof(name
), "nouveau/nv%02x_fuc%03x",
120 device
->chipset
, falcon
->addr
>> 12);
122 ret
= request_firmware(&fw
, name
, &device
->pdev
->dev
);
124 falcon
->code
.data
= vmemdup(fw
->data
, fw
->size
);
125 falcon
->code
.size
= fw
->size
;
126 falcon
->data
.data
= NULL
;
127 falcon
->data
.size
= 0;
128 release_firmware(fw
);
131 falcon
->external
= true;
134 /* next step is to try and load "static code/data segment" firmware
135 * images for the engine
137 if (!falcon
->code
.data
) {
138 snprintf(name
, sizeof(name
), "nouveau/nv%02x_fuc%03xd",
139 device
->chipset
, falcon
->addr
>> 12);
141 ret
= request_firmware(&fw
, name
, &device
->pdev
->dev
);
143 nv_error(falcon
, "unable to load firmware data\n");
147 falcon
->data
.data
= vmemdup(fw
->data
, fw
->size
);
148 falcon
->data
.size
= fw
->size
;
149 release_firmware(fw
);
150 if (!falcon
->data
.data
)
153 snprintf(name
, sizeof(name
), "nouveau/nv%02x_fuc%03xc",
154 device
->chipset
, falcon
->addr
>> 12);
156 ret
= request_firmware(&fw
, name
, &device
->pdev
->dev
);
158 nv_error(falcon
, "unable to load firmware code\n");
162 falcon
->code
.data
= vmemdup(fw
->data
, fw
->size
);
163 falcon
->code
.size
= fw
->size
;
164 release_firmware(fw
);
165 if (!falcon
->code
.data
)
169 nv_debug(falcon
, "firmware: %s (%s)\n", name
, falcon
->data
.data
?
170 "static code/data segments" : "self-bootstrapping");
172 /* ensure any "self-bootstrapping" firmware image is in vram */
173 if (!falcon
->data
.data
&& !falcon
->core
) {
174 ret
= nouveau_gpuobj_new(object
->parent
, NULL
,
175 falcon
->code
.size
, 256, 0,
178 nv_error(falcon
, "core allocation failed, %d\n", ret
);
182 for (i
= 0; i
< falcon
->code
.size
; i
+= 4)
183 nv_wo32(falcon
->core
, i
, falcon
->code
.data
[i
/ 4]);
186 /* upload firmware bootloader (or the full code segments) */
188 if (device
->card_type
< NV_C0
)
189 nv_wo32(falcon
, 0x618, 0x04000000);
191 nv_wo32(falcon
, 0x618, 0x00000114);
192 nv_wo32(falcon
, 0x11c, 0);
193 nv_wo32(falcon
, 0x110, falcon
->core
->addr
>> 8);
194 nv_wo32(falcon
, 0x114, 0);
195 nv_wo32(falcon
, 0x118, 0x00006610);
197 if (falcon
->code
.size
> falcon
->code
.limit
||
198 falcon
->data
.size
> falcon
->data
.limit
) {
199 nv_error(falcon
, "ucode exceeds falcon limit(s)\n");
203 if (falcon
->version
< 3) {
204 nv_wo32(falcon
, 0xff8, 0x00100000);
205 for (i
= 0; i
< falcon
->code
.size
/ 4; i
++)
206 nv_wo32(falcon
, 0xff4, falcon
->code
.data
[i
]);
208 nv_wo32(falcon
, 0x180, 0x01000000);
209 for (i
= 0; i
< falcon
->code
.size
/ 4; i
++) {
211 nv_wo32(falcon
, 0x188, i
>> 6);
212 nv_wo32(falcon
, 0x184, falcon
->code
.data
[i
]);
217 /* upload data segment (if necessary), zeroing the remainder */
218 if (falcon
->version
< 3) {
219 nv_wo32(falcon
, 0xff8, 0x00000000);
220 for (i
= 0; !falcon
->core
&& i
< falcon
->data
.size
/ 4; i
++)
221 nv_wo32(falcon
, 0xff4, falcon
->data
.data
[i
]);
222 for (; i
< falcon
->data
.limit
; i
+= 4)
223 nv_wo32(falcon
, 0xff4, 0x00000000);
225 nv_wo32(falcon
, 0x1c0, 0x01000000);
226 for (i
= 0; !falcon
->core
&& i
< falcon
->data
.size
/ 4; i
++)
227 nv_wo32(falcon
, 0x1c4, falcon
->data
.data
[i
]);
228 for (; i
< falcon
->data
.limit
/ 4; i
++)
229 nv_wo32(falcon
, 0x1c4, 0x00000000);
232 /* start it running */
233 nv_wo32(falcon
, 0x10c, 0x00000001); /* BLOCK_ON_FIFO */
234 nv_wo32(falcon
, 0x104, 0x00000000); /* ENTRY */
235 nv_wo32(falcon
, 0x100, 0x00000002); /* TRIGGER */
236 nv_wo32(falcon
, 0x048, 0x00000003); /* FIFO | CHSW */
241 _nouveau_falcon_fini(struct nouveau_object
*object
, bool suspend
)
243 struct nouveau_falcon
*falcon
= (void *)object
;
246 nouveau_gpuobj_ref(NULL
, &falcon
->core
);
247 if (falcon
->external
) {
248 vfree(falcon
->data
.data
);
249 vfree(falcon
->code
.data
);
250 falcon
->code
.data
= NULL
;
254 nv_mo32(falcon
, 0x048, 0x00000003, 0x00000000);
255 nv_wo32(falcon
, 0x014, 0xffffffff);
257 return nouveau_engine_fini(&falcon
->base
, suspend
);
261 nouveau_falcon_create_(struct nouveau_object
*parent
,
262 struct nouveau_object
*engine
,
263 struct nouveau_oclass
*oclass
, u32 addr
, bool enable
,
264 const char *iname
, const char *fname
,
265 int length
, void **pobject
)
267 struct nouveau_falcon
*falcon
;
270 ret
= nouveau_engine_create_(parent
, engine
, oclass
, enable
, iname
,
271 fname
, length
, pobject
);