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