make RAM device optional
[deliverable/linux.git] / drivers / gpu / drm / nouveau / nvkm / engine / device / base.c
CommitLineData
9274f4a9
BS
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 */
9719047b
BS
24#include "priv.h"
25#include "acpi.h"
9274f4a9 26
9274f4a9 27#include <core/client.h>
9274f4a9 28#include <core/option.h>
9719047b
BS
29#include <core/notify.h>
30#include <core/parent.h>
ddbb55ab 31#include <subdev/bios.h>
d01c3092
BS
32#include <subdev/fb.h>
33#include <subdev/instmem.h>
34
9719047b
BS
35#include <nvif/class.h>
36#include <nvif/unpack.h>
9274f4a9
BS
37
38static DEFINE_MUTEX(nv_devices_mutex);
39static LIST_HEAD(nv_devices);
40
9719047b
BS
41struct nvkm_device *
42nvkm_device_find(u64 name)
9274f4a9 43{
9719047b 44 struct nvkm_device *device, *match = NULL;
9274f4a9
BS
45 mutex_lock(&nv_devices_mutex);
46 list_for_each_entry(device, &nv_devices, head) {
47 if (device->handle == name) {
48 match = device;
49 break;
50 }
51 }
52 mutex_unlock(&nv_devices_mutex);
53 return match;
54}
55
803c1787 56int
9719047b 57nvkm_device_list(u64 *name, int size)
803c1787 58{
9719047b 59 struct nvkm_device *device;
803c1787
BS
60 int nr = 0;
61 mutex_lock(&nv_devices_mutex);
62 list_for_each_entry(device, &nv_devices, head) {
63 if (nr++ < size)
64 name[nr - 1] = device->handle;
65 }
66 mutex_unlock(&nv_devices_mutex);
67 return nr;
68}
69
9274f4a9 70/******************************************************************************
9719047b 71 * nvkm_devobj (0x0080): class implementation
9274f4a9 72 *****************************************************************************/
d01c3092 73
9719047b
BS
74struct nvkm_devobj {
75 struct nvkm_parent base;
76 struct nvkm_object *subdev[NVDEV_SUBDEV_NR];
9274f4a9
BS
77};
78
d01c3092 79static int
9719047b 80nvkm_devobj_info(struct nvkm_object *object, void *data, u32 size)
d01c3092 81{
9719047b
BS
82 struct nvkm_device *device = nv_device(object);
83 struct nvkm_fb *pfb = nvkm_fb(device);
84 struct nvkm_instmem *imem = nvkm_instmem(device);
d01c3092
BS
85 union {
86 struct nv_device_info_v0 v0;
87 } *args = data;
88 int ret;
89
90 nv_ioctl(object, "device info size %d\n", size);
91 if (nvif_unpack(args->v0, 0, 0, false)) {
92 nv_ioctl(object, "device info vers %d\n", args->v0.version);
93 } else
94 return ret;
95
96 switch (device->chipset) {
97 case 0x01a:
98 case 0x01f:
99 case 0x04c:
100 case 0x04e:
101 case 0x063:
102 case 0x067:
103 case 0x068:
104 case 0x0aa:
105 case 0x0ac:
106 case 0x0af:
107 args->v0.platform = NV_DEVICE_INFO_V0_IGP;
108 break;
109 default:
110 if (device->pdev) {
111 if (pci_find_capability(device->pdev, PCI_CAP_ID_AGP))
112 args->v0.platform = NV_DEVICE_INFO_V0_AGP;
113 else
114 if (pci_is_pcie(device->pdev))
115 args->v0.platform = NV_DEVICE_INFO_V0_PCIE;
116 else
117 args->v0.platform = NV_DEVICE_INFO_V0_PCI;
118 } else {
119 args->v0.platform = NV_DEVICE_INFO_V0_SOC;
120 }
121 break;
122 }
123
124 switch (device->card_type) {
125 case NV_04: args->v0.family = NV_DEVICE_INFO_V0_TNT; break;
126 case NV_10:
127 case NV_11: args->v0.family = NV_DEVICE_INFO_V0_CELSIUS; break;
128 case NV_20: args->v0.family = NV_DEVICE_INFO_V0_KELVIN; break;
129 case NV_30: args->v0.family = NV_DEVICE_INFO_V0_RANKINE; break;
130 case NV_40: args->v0.family = NV_DEVICE_INFO_V0_CURIE; break;
131 case NV_50: args->v0.family = NV_DEVICE_INFO_V0_TESLA; break;
9c210f37 132 case NV_C0: args->v0.family = NV_DEVICE_INFO_V0_FERMI; break;
d01c3092
BS
133 case NV_E0: args->v0.family = NV_DEVICE_INFO_V0_KEPLER; break;
134 case GM100: args->v0.family = NV_DEVICE_INFO_V0_MAXWELL; break;
135 default:
136 args->v0.family = 0;
137 break;
138 }
139
140 args->v0.chipset = device->chipset;
3704791d 141 args->v0.revision = device->chiprev;
eaecf032
AC
142 if (pfb && pfb->ram)
143 args->v0.ram_size = args->v0.ram_user = pfb->ram->size;
144 else
145 args->v0.ram_size = args->v0.ram_user = 0;
146 if (imem && args->v0.ram_size > 0)
147 args->v0.ram_user = args->v0.ram_user - imem->reserved;
148
d01c3092
BS
149 return 0;
150}
151
152static int
9719047b 153nvkm_devobj_mthd(struct nvkm_object *object, u32 mthd, void *data, u32 size)
d01c3092
BS
154{
155 switch (mthd) {
156 case NV_DEVICE_V0_INFO:
9719047b 157 return nvkm_devobj_info(object, data, size);
d01c3092
BS
158 default:
159 break;
160 }
161 return -EINVAL;
162}
163
164static u8
9719047b 165nvkm_devobj_rd08(struct nvkm_object *object, u64 addr)
d01c3092
BS
166{
167 return nv_rd08(object->engine, addr);
168}
169
170static u16
9719047b 171nvkm_devobj_rd16(struct nvkm_object *object, u64 addr)
d01c3092
BS
172{
173 return nv_rd16(object->engine, addr);
174}
175
176static u32
9719047b 177nvkm_devobj_rd32(struct nvkm_object *object, u64 addr)
d01c3092
BS
178{
179 return nv_rd32(object->engine, addr);
180}
181
182static void
9719047b 183nvkm_devobj_wr08(struct nvkm_object *object, u64 addr, u8 data)
d01c3092
BS
184{
185 nv_wr08(object->engine, addr, data);
186}
187
188static void
9719047b 189nvkm_devobj_wr16(struct nvkm_object *object, u64 addr, u16 data)
d01c3092
BS
190{
191 nv_wr16(object->engine, addr, data);
192}
193
194static void
9719047b 195nvkm_devobj_wr32(struct nvkm_object *object, u64 addr, u32 data)
d01c3092
BS
196{
197 nv_wr32(object->engine, addr, data);
198}
199
586491e6 200static int
9719047b 201nvkm_devobj_map(struct nvkm_object *object, u64 *addr, u32 *size)
586491e6 202{
9719047b 203 struct nvkm_device *device = nv_device(object);
586491e6
BS
204 *addr = nv_device_resource_start(device, 0);
205 *size = nv_device_resource_len(device, 0);
206 return 0;
207}
208
9274f4a9 209static const u64 disable_map[] = {
586491e6
BS
210 [NVDEV_SUBDEV_VBIOS] = NV_DEVICE_V0_DISABLE_VBIOS,
211 [NVDEV_SUBDEV_DEVINIT] = NV_DEVICE_V0_DISABLE_CORE,
212 [NVDEV_SUBDEV_GPIO] = NV_DEVICE_V0_DISABLE_CORE,
213 [NVDEV_SUBDEV_I2C] = NV_DEVICE_V0_DISABLE_CORE,
f3867f43 214 [NVDEV_SUBDEV_CLK ] = NV_DEVICE_V0_DISABLE_CORE,
586491e6
BS
215 [NVDEV_SUBDEV_MXM] = NV_DEVICE_V0_DISABLE_CORE,
216 [NVDEV_SUBDEV_MC] = NV_DEVICE_V0_DISABLE_CORE,
217 [NVDEV_SUBDEV_BUS] = NV_DEVICE_V0_DISABLE_CORE,
218 [NVDEV_SUBDEV_TIMER] = NV_DEVICE_V0_DISABLE_CORE,
219 [NVDEV_SUBDEV_FB] = NV_DEVICE_V0_DISABLE_CORE,
95484b57 220 [NVDEV_SUBDEV_LTC] = NV_DEVICE_V0_DISABLE_CORE,
586491e6
BS
221 [NVDEV_SUBDEV_IBUS] = NV_DEVICE_V0_DISABLE_CORE,
222 [NVDEV_SUBDEV_INSTMEM] = NV_DEVICE_V0_DISABLE_CORE,
5ce3bf3c 223 [NVDEV_SUBDEV_MMU] = NV_DEVICE_V0_DISABLE_CORE,
586491e6
BS
224 [NVDEV_SUBDEV_BAR] = NV_DEVICE_V0_DISABLE_CORE,
225 [NVDEV_SUBDEV_VOLT] = NV_DEVICE_V0_DISABLE_CORE,
226 [NVDEV_SUBDEV_THERM] = NV_DEVICE_V0_DISABLE_CORE,
ebb58dc2 227 [NVDEV_SUBDEV_PMU] = NV_DEVICE_V0_DISABLE_CORE,
37353543 228 [NVDEV_SUBDEV_FUSE] = NV_DEVICE_V0_DISABLE_CORE,
586491e6 229 [NVDEV_ENGINE_DMAOBJ] = NV_DEVICE_V0_DISABLE_CORE,
d5752b9b 230 [NVDEV_ENGINE_PM ] = NV_DEVICE_V0_DISABLE_CORE,
586491e6
BS
231 [NVDEV_ENGINE_FIFO] = NV_DEVICE_V0_DISABLE_FIFO,
232 [NVDEV_ENGINE_SW] = NV_DEVICE_V0_DISABLE_FIFO,
b8bf04e1 233 [NVDEV_ENGINE_GR] = NV_DEVICE_V0_DISABLE_GR,
586491e6
BS
234 [NVDEV_ENGINE_MPEG] = NV_DEVICE_V0_DISABLE_MPEG,
235 [NVDEV_ENGINE_ME] = NV_DEVICE_V0_DISABLE_ME,
236 [NVDEV_ENGINE_VP] = NV_DEVICE_V0_DISABLE_VP,
93d90ad7 237 [NVDEV_ENGINE_CIPHER] = NV_DEVICE_V0_DISABLE_CIPHER,
586491e6 238 [NVDEV_ENGINE_BSP] = NV_DEVICE_V0_DISABLE_BSP,
fd8666f7 239 [NVDEV_ENGINE_MSPPP] = NV_DEVICE_V0_DISABLE_MSPPP,
aedf24ff
BS
240 [NVDEV_ENGINE_CE0] = NV_DEVICE_V0_DISABLE_CE0,
241 [NVDEV_ENGINE_CE1] = NV_DEVICE_V0_DISABLE_CE1,
242 [NVDEV_ENGINE_CE2] = NV_DEVICE_V0_DISABLE_CE2,
586491e6 243 [NVDEV_ENGINE_VIC] = NV_DEVICE_V0_DISABLE_VIC,
bd8369ec 244 [NVDEV_ENGINE_MSENC] = NV_DEVICE_V0_DISABLE_MSENC,
586491e6 245 [NVDEV_ENGINE_DISP] = NV_DEVICE_V0_DISABLE_DISP,
eccf7e8a 246 [NVDEV_ENGINE_MSVLD] = NV_DEVICE_V0_DISABLE_MSVLD,
93d90ad7 247 [NVDEV_ENGINE_SEC] = NV_DEVICE_V0_DISABLE_SEC,
9274f4a9
BS
248 [NVDEV_SUBDEV_NR] = 0,
249};
250
586491e6 251static void
9719047b 252nvkm_devobj_dtor(struct nvkm_object *object)
586491e6 253{
9719047b 254 struct nvkm_devobj *devobj = (void *)object;
586491e6
BS
255 int i;
256
257 for (i = NVDEV_SUBDEV_NR - 1; i >= 0; i--)
9719047b 258 nvkm_object_ref(NULL, &devobj->subdev[i]);
586491e6 259
9719047b 260 nvkm_parent_destroy(&devobj->base);
586491e6
BS
261}
262
9719047b
BS
263static struct nvkm_oclass
264nvkm_devobj_oclass_super = {
586491e6 265 .handle = NV_DEVICE,
9719047b
BS
266 .ofuncs = &(struct nvkm_ofuncs) {
267 .dtor = nvkm_devobj_dtor,
268 .init = _nvkm_parent_init,
269 .fini = _nvkm_parent_fini,
270 .mthd = nvkm_devobj_mthd,
271 .map = nvkm_devobj_map,
272 .rd08 = nvkm_devobj_rd08,
273 .rd16 = nvkm_devobj_rd16,
274 .rd32 = nvkm_devobj_rd32,
275 .wr08 = nvkm_devobj_wr08,
276 .wr16 = nvkm_devobj_wr16,
277 .wr32 = nvkm_devobj_wr32,
586491e6
BS
278 }
279};
280
9274f4a9 281static int
9719047b
BS
282nvkm_devobj_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
283 struct nvkm_oclass *oclass, void *data, u32 size,
284 struct nvkm_object **pobject)
9274f4a9 285{
586491e6
BS
286 union {
287 struct nv_device_v0 v0;
288 } *args = data;
9719047b
BS
289 struct nvkm_client *client = nv_client(parent);
290 struct nvkm_device *device;
291 struct nvkm_devobj *devobj;
950fbfab
MS
292 u32 boot0, strap;
293 u64 disable, mmio_base, mmio_size;
9274f4a9 294 void __iomem *map;
7234d023 295 int ret, i, c;
9274f4a9 296
586491e6
BS
297 nv_ioctl(parent, "create device size %d\n", size);
298 if (nvif_unpack(args->v0, 0, 0, false)) {
299 nv_ioctl(parent, "create device v%d device %016llx "
300 "disable %016llx debug0 %016llx\n",
301 args->v0.version, args->v0.device,
302 args->v0.disable, args->v0.debug0);
303 } else
304 return ret;
305
306 /* give priviledged clients register access */
307 if (client->super)
9719047b 308 oclass = &nvkm_devobj_oclass_super;
9274f4a9
BS
309
310 /* find the device subdev that matches what the client requested */
311 device = nv_device(client->device);
586491e6 312 if (args->v0.device != ~0) {
9719047b 313 device = nvkm_device_find(args->v0.device);
9274f4a9
BS
314 if (!device)
315 return -ENODEV;
316 }
317
9719047b
BS
318 ret = nvkm_parent_create(parent, nv_object(device), oclass, 0,
319 nvkm_control_oclass,
320 (1ULL << NVDEV_ENGINE_DMAOBJ) |
321 (1ULL << NVDEV_ENGINE_FIFO) |
322 (1ULL << NVDEV_ENGINE_DISP) |
323 (1ULL << NVDEV_ENGINE_PM), &devobj);
9274f4a9
BS
324 *pobject = nv_object(devobj);
325 if (ret)
326 return ret;
327
420b9469
AC
328 mmio_base = nv_device_resource_start(device, 0);
329 mmio_size = nv_device_resource_len(device, 0);
9274f4a9
BS
330
331 /* translate api disable mask into internal mapping */
586491e6 332 disable = args->v0.debug0;
9274f4a9 333 for (i = 0; i < NVDEV_SUBDEV_NR; i++) {
586491e6 334 if (args->v0.disable & disable_map[i])
9274f4a9
BS
335 disable |= (1ULL << i);
336 }
337
338 /* identify the chipset, and determine classes of subdev/engines */
586491e6 339 if (!(args->v0.disable & NV_DEVICE_V0_DISABLE_IDENTIFY) &&
9274f4a9
BS
340 !device->card_type) {
341 map = ioremap(mmio_base, 0x102000);
43b1e9c9
BS
342 if (map == NULL)
343 return -ENOMEM;
9274f4a9
BS
344
345 /* switch mmio to cpu's native endianness */
346#ifndef __BIG_ENDIAN
9fcaa149 347 if (ioread32_native(map + 0x000004) != 0x00000000) {
9274f4a9 348#else
9fcaa149 349 if (ioread32_native(map + 0x000004) == 0x00000000) {
9274f4a9
BS
350#endif
351 iowrite32_native(0x01000001, map + 0x000004);
9fcaa149
BS
352 ioread32_native(map);
353 }
9274f4a9
BS
354
355 /* read boot0 and strapping information */
356 boot0 = ioread32_native(map + 0x000000);
357 strap = ioread32_native(map + 0x101000);
358 iounmap(map);
359
360 /* determine chipset and derive architecture from it */
dd5b84ac
BS
361 if ((boot0 & 0x1f000000) > 0) {
362 device->chipset = (boot0 & 0x1ff00000) >> 20;
3704791d 363 device->chiprev = (boot0 & 0x000000ff);
dd5b84ac 364 switch (device->chipset & 0x1f0) {
aabf19c2 365 case 0x010: {
4a0ff754
IM
366 if (0x461 & (1 << (device->chipset & 0xf)))
367 device->card_type = NV_10;
368 else
369 device->card_type = NV_11;
3704791d 370 device->chiprev = 0x00;
4a0ff754
IM
371 break;
372 }
aabf19c2
BS
373 case 0x020: device->card_type = NV_20; break;
374 case 0x030: device->card_type = NV_30; break;
375 case 0x040:
376 case 0x060: device->card_type = NV_40; break;
377 case 0x050:
378 case 0x080:
379 case 0x090:
380 case 0x0a0: device->card_type = NV_50; break;
9c210f37
BS
381 case 0x0c0:
382 case 0x0d0: device->card_type = NV_C0; break;
aabf19c2
BS
383 case 0x0e0:
384 case 0x0f0:
385 case 0x100: device->card_type = NV_E0; break;
083dba02
BS
386 case 0x110:
387 case 0x120: device->card_type = GM100; break;
9274f4a9
BS
388 default:
389 break;
390 }
391 } else
392 if ((boot0 & 0xff00fff0) == 0x20004000) {
393 if (boot0 & 0x00f00000)
394 device->chipset = 0x05;
395 else
396 device->chipset = 0x04;
397 device->card_type = NV_04;
398 }
399
400 switch (device->card_type) {
401 case NV_04: ret = nv04_identify(device); break;
4a0ff754
IM
402 case NV_10:
403 case NV_11: ret = nv10_identify(device); break;
9274f4a9
BS
404 case NV_20: ret = nv20_identify(device); break;
405 case NV_30: ret = nv30_identify(device); break;
406 case NV_40: ret = nv40_identify(device); break;
407 case NV_50: ret = nv50_identify(device); break;
9719047b
BS
408 case NV_C0: ret = gf100_identify(device); break;
409 case NV_E0: ret = gk104_identify(device); break;
3f204647 410 case GM100: ret = gm100_identify(device); break;
9274f4a9
BS
411 default:
412 ret = -EINVAL;
413 break;
414 }
415
416 if (ret) {
417 nv_error(device, "unknown chipset, 0x%08x\n", boot0);
418 return ret;
419 }
420
421 nv_info(device, "BOOT0 : 0x%08x\n", boot0);
2094dd82
BS
422 nv_info(device, "Chipset: %s (NV%02X)\n",
423 device->cname, device->chipset);
9274f4a9
BS
424 nv_info(device, "Family : NV%02X\n", device->card_type);
425
426 /* determine frequency of timing crystal */
8aa816b0 427 if ( device->card_type <= NV_10 || device->chipset < 0x17 ||
1f2285d4 428 (device->chipset >= 0x20 && device->chipset < 0x25))
9274f4a9
BS
429 strap &= 0x00000040;
430 else
431 strap &= 0x00400040;
432
433 switch (strap) {
434 case 0x00000000: device->crystal = 13500; break;
435 case 0x00000040: device->crystal = 14318; break;
436 case 0x00400000: device->crystal = 27000; break;
437 case 0x00400040: device->crystal = 25000; break;
438 }
439
440 nv_debug(device, "crystal freq: %dKHz\n", device->crystal);
ddbb55ab
BS
441 } else
442 if ( (args->v0.disable & NV_DEVICE_V0_DISABLE_IDENTIFY)) {
443 device->cname = "NULL";
9719047b 444 device->oclass[NVDEV_SUBDEV_VBIOS] = &nvkm_bios_oclass;
9274f4a9
BS
445 }
446
586491e6 447 if (!(args->v0.disable & NV_DEVICE_V0_DISABLE_MMIO) &&
9274f4a9
BS
448 !nv_subdev(device)->mmio) {
449 nv_subdev(device)->mmio = ioremap(mmio_base, mmio_size);
450 if (!nv_subdev(device)->mmio) {
451 nv_error(device, "unable to map device registers\n");
43b1e9c9 452 return -ENOMEM;
9274f4a9
BS
453 }
454 }
455
456 /* ensure requested subsystems are available for use */
10caad33 457 for (i = 1, c = 1; i < NVDEV_SUBDEV_NR; i++) {
9274f4a9
BS
458 if (!(oclass = device->oclass[i]) || (disable & (1ULL << i)))
459 continue;
460
10caad33 461 if (device->subdev[i]) {
9719047b 462 nvkm_object_ref(device->subdev[i], &devobj->subdev[i]);
10caad33 463 continue;
9274f4a9
BS
464 }
465
9719047b
BS
466 ret = nvkm_object_ctor(nv_object(device), NULL, oclass,
467 NULL, i, &devobj->subdev[i]);
10caad33
BS
468 if (ret == -ENODEV)
469 continue;
470 if (ret)
471 return ret;
472
61b365a5
BS
473 device->subdev[i] = devobj->subdev[i];
474
7234d023
BS
475 /* note: can't init *any* subdevs until devinit has been run
476 * due to not knowing exactly what the vbios init tables will
477 * mess with. devinit also can't be run until all of its
478 * dependencies have been created.
479 *
480 * this code delays init of any subdev until all of devinit's
481 * dependencies have been created, and then initialises each
482 * subdev in turn as they're created.
483 */
484 while (i >= NVDEV_SUBDEV_DEVINIT_LAST && c <= i) {
9719047b 485 struct nvkm_object *subdev = devobj->subdev[c++];
7234d023 486 if (subdev && !nv_iclass(subdev, NV_ENGINE_CLASS)) {
9719047b 487 ret = nvkm_object_inc(subdev);
7234d023
BS
488 if (ret)
489 return ret;
10caad33
BS
490 atomic_dec(&nv_object(device)->usecount);
491 } else
492 if (subdev) {
9719047b 493 nvkm_subdev_reset(subdev);
9274f4a9
BS
494 }
495 }
9274f4a9
BS
496 }
497
498 return 0;
499}
500
9719047b
BS
501static struct nvkm_ofuncs
502nvkm_devobj_ofuncs = {
503 .ctor = nvkm_devobj_ctor,
504 .dtor = nvkm_devobj_dtor,
505 .init = _nvkm_parent_init,
506 .fini = _nvkm_parent_fini,
507 .mthd = nvkm_devobj_mthd,
9274f4a9
BS
508};
509
510/******************************************************************************
9719047b 511 * nvkm_device: engine functions
9274f4a9 512 *****************************************************************************/
79ca2770 513
9719047b 514struct nvkm_device *
a38f37a7
BS
515nv_device(void *obj)
516{
9719047b 517 struct nvkm_object *device = nv_object(obj);
8000fb21
BS
518 if (device->engine == NULL) {
519 while (device && device->parent)
520 device = device->parent;
521 } else {
ec0e5542 522 device = &nv_object(obj)->engine->subdev.object;
490d595f
BS
523 if (device && device->parent)
524 device = device->parent;
a38f37a7 525 }
490d595f
BS
526#if CONFIG_NOUVEAU_DEBUG >= NV_DBG_PARANOIA
527 if (unlikely(!device))
528 nv_assert("BAD CAST -> NvDevice, 0x%08x\n", nv_hclass(obj));
a38f37a7 529#endif
a38f37a7
BS
530 return (void *)device;
531}
532
9719047b
BS
533static struct nvkm_oclass
534nvkm_device_sclass[] = {
535 { 0x0080, &nvkm_devobj_ofuncs },
9274f4a9
BS
536 {}
537};
538
79ca2770 539static int
9719047b
BS
540nvkm_device_event_ctor(struct nvkm_object *object, void *data, u32 size,
541 struct nvkm_notify *notify)
79ca2770
BS
542{
543 if (!WARN_ON(size != 0)) {
544 notify->size = 0;
545 notify->types = 1;
546 notify->index = 0;
547 return 0;
548 }
549 return -EINVAL;
550}
551
552static const struct nvkm_event_func
9719047b
BS
553nvkm_device_event_func = {
554 .ctor = nvkm_device_event_ctor,
79ca2770
BS
555};
556
066a5d09 557static int
9719047b 558nvkm_device_fini(struct nvkm_object *object, bool suspend)
066a5d09 559{
9719047b
BS
560 struct nvkm_device *device = (void *)object;
561 struct nvkm_object *subdev;
10caad33
BS
562 int ret, i;
563
564 for (i = NVDEV_SUBDEV_NR - 1; i >= 0; i--) {
565 if ((subdev = device->subdev[i])) {
566 if (!nv_iclass(subdev, NV_ENGINE_CLASS)) {
9719047b 567 ret = nvkm_object_dec(subdev, suspend);
10caad33
BS
568 if (ret && suspend)
569 goto fail;
570 }
571 }
572 }
573
ed76a870 574 ret = nvkm_acpi_fini(device, suspend);
10caad33
BS
575fail:
576 for (; ret && i < NVDEV_SUBDEV_NR; i++) {
577 if ((subdev = device->subdev[i])) {
578 if (!nv_iclass(subdev, NV_ENGINE_CLASS)) {
9719047b 579 ret = nvkm_object_inc(subdev);
10caad33
BS
580 if (ret) {
581 /* XXX */
582 }
583 }
584 }
585 }
586
587 return ret;
066a5d09
BS
588}
589
590static int
9719047b 591nvkm_device_init(struct nvkm_object *object)
066a5d09 592{
9719047b
BS
593 struct nvkm_device *device = (void *)object;
594 struct nvkm_object *subdev;
ed76a870
BS
595 int ret, i = 0;
596
597 ret = nvkm_acpi_init(device);
598 if (ret)
599 goto fail;
10caad33
BS
600
601 for (i = 0; i < NVDEV_SUBDEV_NR; i++) {
602 if ((subdev = device->subdev[i])) {
603 if (!nv_iclass(subdev, NV_ENGINE_CLASS)) {
9719047b 604 ret = nvkm_object_inc(subdev);
10caad33
BS
605 if (ret)
606 goto fail;
607 } else {
9719047b 608 nvkm_subdev_reset(subdev);
10caad33
BS
609 }
610 }
611 }
612
613 ret = 0;
614fail:
615 for (--i; ret && i >= 0; i--) {
616 if ((subdev = device->subdev[i])) {
617 if (!nv_iclass(subdev, NV_ENGINE_CLASS))
9719047b 618 nvkm_object_dec(subdev, false);
10caad33
BS
619 }
620 }
621
ed76a870
BS
622 if (ret)
623 nvkm_acpi_fini(device, false);
10caad33 624 return ret;
066a5d09
BS
625}
626
ebb945a9 627static void
9719047b 628nvkm_device_dtor(struct nvkm_object *object)
ebb945a9 629{
9719047b 630 struct nvkm_device *device = (void *)object;
ebb945a9 631
79ca2770 632 nvkm_event_fini(&device->event);
ed76a870 633
ebb945a9
BS
634 mutex_lock(&nv_devices_mutex);
635 list_del(&device->head);
636 mutex_unlock(&nv_devices_mutex);
637
dded35de
BS
638 if (nv_subdev(device)->mmio)
639 iounmap(nv_subdev(device)->mmio);
ebb945a9 640
9719047b 641 nvkm_engine_destroy(&device->engine);
ebb945a9
BS
642}
643
420b9469 644resource_size_t
9719047b 645nv_device_resource_start(struct nvkm_device *device, unsigned int bar)
420b9469
AC
646{
647 if (nv_device_is_pci(device)) {
648 return pci_resource_start(device->pdev, bar);
649 } else {
650 struct resource *res;
651 res = platform_get_resource(device->platformdev,
652 IORESOURCE_MEM, bar);
653 if (!res)
654 return 0;
655 return res->start;
656 }
657}
658
659resource_size_t
9719047b 660nv_device_resource_len(struct nvkm_device *device, unsigned int bar)
420b9469
AC
661{
662 if (nv_device_is_pci(device)) {
663 return pci_resource_len(device->pdev, bar);
664 } else {
665 struct resource *res;
666 res = platform_get_resource(device->platformdev,
667 IORESOURCE_MEM, bar);
668 if (!res)
669 return 0;
670 return resource_size(res);
671 }
672}
673
420b9469 674int
9719047b 675nv_device_get_irq(struct nvkm_device *device, bool stall)
420b9469
AC
676{
677 if (nv_device_is_pci(device)) {
678 return device->pdev->irq;
679 } else {
680 return platform_get_irq_byname(device->platformdev,
681 stall ? "stall" : "nonstall");
682 }
683}
684
9719047b
BS
685static struct nvkm_oclass
686nvkm_device_oclass = {
dded35de 687 .handle = NV_ENGINE(DEVICE, 0x00),
9719047b
BS
688 .ofuncs = &(struct nvkm_ofuncs) {
689 .dtor = nvkm_device_dtor,
690 .init = nvkm_device_init,
691 .fini = nvkm_device_fini,
9274f4a9
BS
692 },
693};
694
695int
9719047b
BS
696nvkm_device_create_(void *dev, enum nv_bus_type type, u64 name,
697 const char *sname, const char *cfg, const char *dbg,
698 int length, void **pobject)
9274f4a9 699{
9719047b 700 struct nvkm_device *device;
9274f4a9
BS
701 int ret = -EEXIST;
702
703 mutex_lock(&nv_devices_mutex);
704 list_for_each_entry(device, &nv_devices, head) {
705 if (device->handle == name)
706 goto done;
707 }
708
9719047b
BS
709 ret = nvkm_engine_create_(NULL, NULL, &nvkm_device_oclass, true,
710 "DEVICE", "device", length, pobject);
9274f4a9
BS
711 device = *pobject;
712 if (ret)
713 goto done;
714
420b9469 715 switch (type) {
9719047b 716 case NVKM_BUS_PCI:
420b9469
AC
717 device->pdev = dev;
718 break;
9719047b 719 case NVKM_BUS_PLATFORM:
420b9469
AC
720 device->platformdev = dev;
721 break;
722 }
9274f4a9
BS
723 device->handle = name;
724 device->cfgopt = cfg;
725 device->dbgopt = dbg;
726 device->name = sname;
727
9719047b
BS
728 nv_subdev(device)->debug = nvkm_dbgopt(device->dbgopt, "DEVICE");
729 nv_engine(device)->sclass = nvkm_device_sclass;
9274f4a9 730 list_add(&device->head, &nv_devices);
ed76a870 731
9719047b 732 ret = nvkm_event_init(&nvkm_device_event_func, 1, 1, &device->event);
9274f4a9
BS
733done:
734 mutex_unlock(&nv_devices_mutex);
735 return ret;
736}
This page took 0.188941 seconds and 5 git commands to generate.