]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/gpu/drm/nouveau/nouveau_drm.c
drm/nouveau/nouveau: forward error generated while resuming objects tree
[linux.git] / drivers / gpu / drm / nouveau / nouveau_drm.c
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 <linux/console.h>
26 #include <linux/delay.h>
27 #include <linux/module.h>
28 #include <linux/pci.h>
29 #include <linux/pm_runtime.h>
30 #include <linux/vga_switcheroo.h>
31
32 #include <drm/drmP.h>
33 #include <drm/drm_crtc_helper.h>
34
35 #include <core/gpuobj.h>
36 #include <core/option.h>
37 #include <core/pci.h>
38 #include <core/tegra.h>
39
40 #include <nvif/driver.h>
41 #include <nvif/fifo.h>
42 #include <nvif/user.h>
43
44 #include <nvif/class.h>
45 #include <nvif/cl0002.h>
46 #include <nvif/cla06f.h>
47
48 #include "nouveau_drv.h"
49 #include "nouveau_dma.h"
50 #include "nouveau_ttm.h"
51 #include "nouveau_gem.h"
52 #include "nouveau_vga.h"
53 #include "nouveau_led.h"
54 #include "nouveau_hwmon.h"
55 #include "nouveau_acpi.h"
56 #include "nouveau_bios.h"
57 #include "nouveau_ioctl.h"
58 #include "nouveau_abi16.h"
59 #include "nouveau_fbcon.h"
60 #include "nouveau_fence.h"
61 #include "nouveau_debugfs.h"
62 #include "nouveau_usif.h"
63 #include "nouveau_connector.h"
64 #include "nouveau_platform.h"
65 #include "nouveau_svm.h"
66 #include "nouveau_dmem.h"
67
68 MODULE_PARM_DESC(config, "option string to pass to driver core");
69 static char *nouveau_config;
70 module_param_named(config, nouveau_config, charp, 0400);
71
72 MODULE_PARM_DESC(debug, "debug string to pass to driver core");
73 static char *nouveau_debug;
74 module_param_named(debug, nouveau_debug, charp, 0400);
75
76 MODULE_PARM_DESC(noaccel, "disable kernel/abi16 acceleration");
77 static int nouveau_noaccel = 0;
78 module_param_named(noaccel, nouveau_noaccel, int, 0400);
79
80 MODULE_PARM_DESC(modeset, "enable driver (default: auto, "
81                           "0 = disabled, 1 = enabled, 2 = headless)");
82 int nouveau_modeset = -1;
83 module_param_named(modeset, nouveau_modeset, int, 0400);
84
85 MODULE_PARM_DESC(atomic, "Expose atomic ioctl (default: disabled)");
86 static int nouveau_atomic = 0;
87 module_param_named(atomic, nouveau_atomic, int, 0400);
88
89 MODULE_PARM_DESC(runpm, "disable (0), force enable (1), optimus only default (-1)");
90 static int nouveau_runtime_pm = -1;
91 module_param_named(runpm, nouveau_runtime_pm, int, 0400);
92
93 static struct drm_driver driver_stub;
94 static struct drm_driver driver_pci;
95 static struct drm_driver driver_platform;
96
97 static u64
98 nouveau_pci_name(struct pci_dev *pdev)
99 {
100         u64 name = (u64)pci_domain_nr(pdev->bus) << 32;
101         name |= pdev->bus->number << 16;
102         name |= PCI_SLOT(pdev->devfn) << 8;
103         return name | PCI_FUNC(pdev->devfn);
104 }
105
106 static u64
107 nouveau_platform_name(struct platform_device *platformdev)
108 {
109         return platformdev->id;
110 }
111
112 static u64
113 nouveau_name(struct drm_device *dev)
114 {
115         if (dev->pdev)
116                 return nouveau_pci_name(dev->pdev);
117         else
118                 return nouveau_platform_name(to_platform_device(dev->dev));
119 }
120
121 static inline bool
122 nouveau_cli_work_ready(struct dma_fence *fence)
123 {
124         if (!dma_fence_is_signaled(fence))
125                 return false;
126         dma_fence_put(fence);
127         return true;
128 }
129
130 static void
131 nouveau_cli_work(struct work_struct *w)
132 {
133         struct nouveau_cli *cli = container_of(w, typeof(*cli), work);
134         struct nouveau_cli_work *work, *wtmp;
135         mutex_lock(&cli->lock);
136         list_for_each_entry_safe(work, wtmp, &cli->worker, head) {
137                 if (!work->fence || nouveau_cli_work_ready(work->fence)) {
138                         list_del(&work->head);
139                         work->func(work);
140                 }
141         }
142         mutex_unlock(&cli->lock);
143 }
144
145 static void
146 nouveau_cli_work_fence(struct dma_fence *fence, struct dma_fence_cb *cb)
147 {
148         struct nouveau_cli_work *work = container_of(cb, typeof(*work), cb);
149         schedule_work(&work->cli->work);
150 }
151
152 void
153 nouveau_cli_work_queue(struct nouveau_cli *cli, struct dma_fence *fence,
154                        struct nouveau_cli_work *work)
155 {
156         work->fence = dma_fence_get(fence);
157         work->cli = cli;
158         mutex_lock(&cli->lock);
159         list_add_tail(&work->head, &cli->worker);
160         if (dma_fence_add_callback(fence, &work->cb, nouveau_cli_work_fence))
161                 nouveau_cli_work_fence(fence, &work->cb);
162         mutex_unlock(&cli->lock);
163 }
164
165 static void
166 nouveau_cli_fini(struct nouveau_cli *cli)
167 {
168         /* All our channels are dead now, which means all the fences they
169          * own are signalled, and all callback functions have been called.
170          *
171          * So, after flushing the workqueue, there should be nothing left.
172          */
173         flush_work(&cli->work);
174         WARN_ON(!list_empty(&cli->worker));
175
176         usif_client_fini(cli);
177         nouveau_vmm_fini(&cli->svm);
178         nouveau_vmm_fini(&cli->vmm);
179         nvif_mmu_fini(&cli->mmu);
180         nvif_device_fini(&cli->device);
181         mutex_lock(&cli->drm->master.lock);
182         nvif_client_fini(&cli->base);
183         mutex_unlock(&cli->drm->master.lock);
184 }
185
186 static int
187 nouveau_cli_init(struct nouveau_drm *drm, const char *sname,
188                  struct nouveau_cli *cli)
189 {
190         static const struct nvif_mclass
191         mems[] = {
192                 { NVIF_CLASS_MEM_GF100, -1 },
193                 { NVIF_CLASS_MEM_NV50 , -1 },
194                 { NVIF_CLASS_MEM_NV04 , -1 },
195                 {}
196         };
197         static const struct nvif_mclass
198         mmus[] = {
199                 { NVIF_CLASS_MMU_GF100, -1 },
200                 { NVIF_CLASS_MMU_NV50 , -1 },
201                 { NVIF_CLASS_MMU_NV04 , -1 },
202                 {}
203         };
204         static const struct nvif_mclass
205         vmms[] = {
206                 { NVIF_CLASS_VMM_GP100, -1 },
207                 { NVIF_CLASS_VMM_GM200, -1 },
208                 { NVIF_CLASS_VMM_GF100, -1 },
209                 { NVIF_CLASS_VMM_NV50 , -1 },
210                 { NVIF_CLASS_VMM_NV04 , -1 },
211                 {}
212         };
213         u64 device = nouveau_name(drm->dev);
214         int ret;
215
216         snprintf(cli->name, sizeof(cli->name), "%s", sname);
217         cli->drm = drm;
218         mutex_init(&cli->mutex);
219         usif_client_init(cli);
220
221         INIT_WORK(&cli->work, nouveau_cli_work);
222         INIT_LIST_HEAD(&cli->worker);
223         mutex_init(&cli->lock);
224
225         if (cli == &drm->master) {
226                 ret = nvif_driver_init(NULL, nouveau_config, nouveau_debug,
227                                        cli->name, device, &cli->base);
228         } else {
229                 mutex_lock(&drm->master.lock);
230                 ret = nvif_client_init(&drm->master.base, cli->name, device,
231                                        &cli->base);
232                 mutex_unlock(&drm->master.lock);
233         }
234         if (ret) {
235                 NV_PRINTK(err, cli, "Client allocation failed: %d\n", ret);
236                 goto done;
237         }
238
239         ret = nvif_device_init(&cli->base.object, 0, NV_DEVICE,
240                                &(struct nv_device_v0) {
241                                         .device = ~0,
242                                }, sizeof(struct nv_device_v0),
243                                &cli->device);
244         if (ret) {
245                 NV_PRINTK(err, cli, "Device allocation failed: %d\n", ret);
246                 goto done;
247         }
248
249         ret = nvif_mclass(&cli->device.object, mmus);
250         if (ret < 0) {
251                 NV_PRINTK(err, cli, "No supported MMU class\n");
252                 goto done;
253         }
254
255         ret = nvif_mmu_init(&cli->device.object, mmus[ret].oclass, &cli->mmu);
256         if (ret) {
257                 NV_PRINTK(err, cli, "MMU allocation failed: %d\n", ret);
258                 goto done;
259         }
260
261         ret = nvif_mclass(&cli->mmu.object, vmms);
262         if (ret < 0) {
263                 NV_PRINTK(err, cli, "No supported VMM class\n");
264                 goto done;
265         }
266
267         ret = nouveau_vmm_init(cli, vmms[ret].oclass, &cli->vmm);
268         if (ret) {
269                 NV_PRINTK(err, cli, "VMM allocation failed: %d\n", ret);
270                 goto done;
271         }
272
273         ret = nvif_mclass(&cli->mmu.object, mems);
274         if (ret < 0) {
275                 NV_PRINTK(err, cli, "No supported MEM class\n");
276                 goto done;
277         }
278
279         cli->mem = &mems[ret];
280         return 0;
281 done:
282         if (ret)
283                 nouveau_cli_fini(cli);
284         return ret;
285 }
286
287 static void
288 nouveau_accel_ce_fini(struct nouveau_drm *drm)
289 {
290         nouveau_channel_idle(drm->cechan);
291         nvif_object_fini(&drm->ttm.copy);
292         nouveau_channel_del(&drm->cechan);
293 }
294
295 static void
296 nouveau_accel_ce_init(struct nouveau_drm *drm)
297 {
298         struct nvif_device *device = &drm->client.device;
299         int ret = 0;
300
301         /* Allocate channel that has access to a (preferably async) copy
302          * engine, to use for TTM buffer moves.
303          */
304         if (device->info.family >= NV_DEVICE_INFO_V0_KEPLER) {
305                 ret = nouveau_channel_new(drm, device,
306                                           nvif_fifo_runlist_ce(device), 0,
307                                           true, &drm->cechan);
308         } else
309         if (device->info.chipset >= 0xa3 &&
310             device->info.chipset != 0xaa &&
311             device->info.chipset != 0xac) {
312                 /* Prior to Kepler, there's only a single runlist, so all
313                  * engines can be accessed from any channel.
314                  *
315                  * We still want to use a separate channel though.
316                  */
317                 ret = nouveau_channel_new(drm, device, NvDmaFB, NvDmaTT, false,
318                                           &drm->cechan);
319         }
320
321         if (ret)
322                 NV_ERROR(drm, "failed to create ce channel, %d\n", ret);
323 }
324
325 static void
326 nouveau_accel_gr_fini(struct nouveau_drm *drm)
327 {
328         nouveau_channel_idle(drm->channel);
329         nvif_object_fini(&drm->ntfy);
330         nvkm_gpuobj_del(&drm->notify);
331         nvif_object_fini(&drm->nvsw);
332         nouveau_channel_del(&drm->channel);
333 }
334
335 static void
336 nouveau_accel_gr_init(struct nouveau_drm *drm)
337 {
338         struct nvif_device *device = &drm->client.device;
339         u32 arg0, arg1;
340         int ret;
341
342         /* Allocate channel that has access to the graphics engine. */
343         if (device->info.family >= NV_DEVICE_INFO_V0_KEPLER) {
344                 arg0 = nvif_fifo_runlist(device, NV_DEVICE_INFO_ENGINE_GR);
345                 arg1 = 1;
346         } else {
347                 arg0 = NvDmaFB;
348                 arg1 = NvDmaTT;
349         }
350
351         ret = nouveau_channel_new(drm, device, arg0, arg1, false,
352                                   &drm->channel);
353         if (ret) {
354                 NV_ERROR(drm, "failed to create kernel channel, %d\n", ret);
355                 nouveau_accel_gr_fini(drm);
356                 return;
357         }
358
359         /* A SW class is used on pre-NV50 HW to assist with handling the
360          * synchronisation of page flips, as well as to implement fences
361          * on TNT/TNT2 HW that lacks any kind of support in host.
362          */
363         if (device->info.family < NV_DEVICE_INFO_V0_TESLA) {
364                 ret = nvif_object_init(&drm->channel->user, NVDRM_NVSW,
365                                        nouveau_abi16_swclass(drm), NULL, 0,
366                                        &drm->nvsw);
367                 if (ret == 0) {
368                         ret = RING_SPACE(drm->channel, 2);
369                         if (ret == 0) {
370                                 BEGIN_NV04(drm->channel, NvSubSw, 0, 1);
371                                 OUT_RING  (drm->channel, drm->nvsw.handle);
372                         }
373                 }
374
375                 if (ret) {
376                         NV_ERROR(drm, "failed to allocate sw class, %d\n", ret);
377                         nouveau_accel_gr_fini(drm);
378                         return;
379                 }
380         }
381
382         /* NvMemoryToMemoryFormat requires a notifier ctxdma for some reason,
383          * even if notification is never requested, so, allocate a ctxdma on
384          * any GPU where it's possible we'll end up using M2MF for BO moves.
385          */
386         if (device->info.family < NV_DEVICE_INFO_V0_FERMI) {
387                 ret = nvkm_gpuobj_new(nvxx_device(device), 32, 0, false, NULL,
388                                       &drm->notify);
389                 if (ret) {
390                         NV_ERROR(drm, "failed to allocate notifier, %d\n", ret);
391                         nouveau_accel_gr_fini(drm);
392                         return;
393                 }
394
395                 ret = nvif_object_init(&drm->channel->user, NvNotify0,
396                                        NV_DMA_IN_MEMORY,
397                                        &(struct nv_dma_v0) {
398                                                 .target = NV_DMA_V0_TARGET_VRAM,
399                                                 .access = NV_DMA_V0_ACCESS_RDWR,
400                                                 .start = drm->notify->addr,
401                                                 .limit = drm->notify->addr + 31
402                                        }, sizeof(struct nv_dma_v0),
403                                        &drm->ntfy);
404                 if (ret) {
405                         nouveau_accel_gr_fini(drm);
406                         return;
407                 }
408         }
409 }
410
411 static void
412 nouveau_accel_fini(struct nouveau_drm *drm)
413 {
414         nouveau_accel_ce_fini(drm);
415         nouveau_accel_gr_fini(drm);
416         if (drm->fence)
417                 nouveau_fence(drm)->dtor(drm);
418 }
419
420 static void
421 nouveau_accel_init(struct nouveau_drm *drm)
422 {
423         struct nvif_device *device = &drm->client.device;
424         struct nvif_sclass *sclass;
425         int ret, i, n;
426
427         if (nouveau_noaccel)
428                 return;
429
430         /* Initialise global support for channels, and synchronisation. */
431         ret = nouveau_channels_init(drm);
432         if (ret)
433                 return;
434
435         /*XXX: this is crap, but the fence/channel stuff is a little
436          *     backwards in some places.  this will be fixed.
437          */
438         ret = n = nvif_object_sclass_get(&device->object, &sclass);
439         if (ret < 0)
440                 return;
441
442         for (ret = -ENOSYS, i = 0; i < n; i++) {
443                 switch (sclass[i].oclass) {
444                 case NV03_CHANNEL_DMA:
445                         ret = nv04_fence_create(drm);
446                         break;
447                 case NV10_CHANNEL_DMA:
448                         ret = nv10_fence_create(drm);
449                         break;
450                 case NV17_CHANNEL_DMA:
451                 case NV40_CHANNEL_DMA:
452                         ret = nv17_fence_create(drm);
453                         break;
454                 case NV50_CHANNEL_GPFIFO:
455                         ret = nv50_fence_create(drm);
456                         break;
457                 case G82_CHANNEL_GPFIFO:
458                         ret = nv84_fence_create(drm);
459                         break;
460                 case FERMI_CHANNEL_GPFIFO:
461                 case KEPLER_CHANNEL_GPFIFO_A:
462                 case KEPLER_CHANNEL_GPFIFO_B:
463                 case MAXWELL_CHANNEL_GPFIFO_A:
464                 case PASCAL_CHANNEL_GPFIFO_A:
465                 case VOLTA_CHANNEL_GPFIFO_A:
466                 case TURING_CHANNEL_GPFIFO_A:
467                         ret = nvc0_fence_create(drm);
468                         break;
469                 default:
470                         break;
471                 }
472         }
473
474         nvif_object_sclass_put(&sclass);
475         if (ret) {
476                 NV_ERROR(drm, "failed to initialise sync subsystem, %d\n", ret);
477                 nouveau_accel_fini(drm);
478                 return;
479         }
480
481         /* Volta requires access to a doorbell register for kickoff. */
482         if (drm->client.device.info.family >= NV_DEVICE_INFO_V0_VOLTA) {
483                 ret = nvif_user_init(device);
484                 if (ret)
485                         return;
486         }
487
488         /* Allocate channels we need to support various functions. */
489         nouveau_accel_gr_init(drm);
490         nouveau_accel_ce_init(drm);
491
492         /* Initialise accelerated TTM buffer moves. */
493         nouveau_bo_move_init(drm);
494 }
495
496 static int
497 nouveau_drm_device_init(struct drm_device *dev)
498 {
499         struct nouveau_drm *drm;
500         int ret;
501
502         if (!(drm = kzalloc(sizeof(*drm), GFP_KERNEL)))
503                 return -ENOMEM;
504         dev->dev_private = drm;
505         drm->dev = dev;
506
507         ret = nouveau_cli_init(drm, "DRM-master", &drm->master);
508         if (ret)
509                 goto fail_alloc;
510
511         ret = nouveau_cli_init(drm, "DRM", &drm->client);
512         if (ret)
513                 goto fail_master;
514
515         dev->irq_enabled = true;
516
517         nvxx_client(&drm->client.base)->debug =
518                 nvkm_dbgopt(nouveau_debug, "DRM");
519
520         INIT_LIST_HEAD(&drm->clients);
521         spin_lock_init(&drm->tile.lock);
522
523         /* workaround an odd issue on nvc1 by disabling the device's
524          * nosnoop capability.  hopefully won't cause issues until a
525          * better fix is found - assuming there is one...
526          */
527         if (drm->client.device.info.chipset == 0xc1)
528                 nvif_mask(&drm->client.device.object, 0x00088080, 0x00000800, 0x00000000);
529
530         nouveau_vga_init(drm);
531
532         ret = nouveau_ttm_init(drm);
533         if (ret)
534                 goto fail_ttm;
535
536         ret = nouveau_bios_init(dev);
537         if (ret)
538                 goto fail_bios;
539
540         nouveau_accel_init(drm);
541
542         ret = nouveau_display_create(dev);
543         if (ret)
544                 goto fail_dispctor;
545
546         if (dev->mode_config.num_crtc) {
547                 ret = nouveau_display_init(dev, false, false);
548                 if (ret)
549                         goto fail_dispinit;
550         }
551
552         nouveau_debugfs_init(drm);
553         nouveau_hwmon_init(dev);
554         nouveau_svm_init(drm);
555         nouveau_dmem_init(drm);
556         nouveau_fbcon_init(dev);
557         nouveau_led_init(dev);
558
559         if (nouveau_pmops_runtime()) {
560                 pm_runtime_use_autosuspend(dev->dev);
561                 pm_runtime_set_autosuspend_delay(dev->dev, 5000);
562                 pm_runtime_set_active(dev->dev);
563                 pm_runtime_allow(dev->dev);
564                 pm_runtime_mark_last_busy(dev->dev);
565                 pm_runtime_put(dev->dev);
566         }
567
568         return 0;
569
570 fail_dispinit:
571         nouveau_display_destroy(dev);
572 fail_dispctor:
573         nouveau_accel_fini(drm);
574         nouveau_bios_takedown(dev);
575 fail_bios:
576         nouveau_ttm_fini(drm);
577 fail_ttm:
578         nouveau_vga_fini(drm);
579         nouveau_cli_fini(&drm->client);
580 fail_master:
581         nouveau_cli_fini(&drm->master);
582 fail_alloc:
583         kfree(drm);
584         return ret;
585 }
586
587 static void
588 nouveau_drm_device_fini(struct drm_device *dev)
589 {
590         struct nouveau_drm *drm = nouveau_drm(dev);
591
592         if (nouveau_pmops_runtime()) {
593                 pm_runtime_get_sync(dev->dev);
594                 pm_runtime_forbid(dev->dev);
595         }
596
597         nouveau_led_fini(dev);
598         nouveau_fbcon_fini(dev);
599         nouveau_dmem_fini(drm);
600         nouveau_svm_fini(drm);
601         nouveau_hwmon_fini(dev);
602         nouveau_debugfs_fini(drm);
603
604         if (dev->mode_config.num_crtc)
605                 nouveau_display_fini(dev, false, false);
606         nouveau_display_destroy(dev);
607
608         nouveau_accel_fini(drm);
609         nouveau_bios_takedown(dev);
610
611         nouveau_ttm_fini(drm);
612         nouveau_vga_fini(drm);
613
614         nouveau_cli_fini(&drm->client);
615         nouveau_cli_fini(&drm->master);
616         kfree(drm);
617 }
618
619 static int nouveau_drm_probe(struct pci_dev *pdev,
620                              const struct pci_device_id *pent)
621 {
622         struct nvkm_device *device;
623         struct drm_device *drm_dev;
624         struct apertures_struct *aper;
625         bool boot = false;
626         int ret;
627
628         if (vga_switcheroo_client_probe_defer(pdev))
629                 return -EPROBE_DEFER;
630
631         /* We need to check that the chipset is supported before booting
632          * fbdev off the hardware, as there's no way to put it back.
633          */
634         ret = nvkm_device_pci_new(pdev, NULL, "error", true, false, 0, &device);
635         if (ret)
636                 return ret;
637
638         nvkm_device_del(&device);
639
640         /* Remove conflicting drivers (vesafb, efifb etc). */
641         aper = alloc_apertures(3);
642         if (!aper)
643                 return -ENOMEM;
644
645         aper->ranges[0].base = pci_resource_start(pdev, 1);
646         aper->ranges[0].size = pci_resource_len(pdev, 1);
647         aper->count = 1;
648
649         if (pci_resource_len(pdev, 2)) {
650                 aper->ranges[aper->count].base = pci_resource_start(pdev, 2);
651                 aper->ranges[aper->count].size = pci_resource_len(pdev, 2);
652                 aper->count++;
653         }
654
655         if (pci_resource_len(pdev, 3)) {
656                 aper->ranges[aper->count].base = pci_resource_start(pdev, 3);
657                 aper->ranges[aper->count].size = pci_resource_len(pdev, 3);
658                 aper->count++;
659         }
660
661 #ifdef CONFIG_X86
662         boot = pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW;
663 #endif
664         if (nouveau_modeset != 2)
665                 drm_fb_helper_remove_conflicting_framebuffers(aper, "nouveaufb", boot);
666         kfree(aper);
667
668         ret = nvkm_device_pci_new(pdev, nouveau_config, nouveau_debug,
669                                   true, true, ~0ULL, &device);
670         if (ret)
671                 return ret;
672
673         pci_set_master(pdev);
674
675         if (nouveau_atomic)
676                 driver_pci.driver_features |= DRIVER_ATOMIC;
677
678         drm_dev = drm_dev_alloc(&driver_pci, &pdev->dev);
679         if (IS_ERR(drm_dev)) {
680                 ret = PTR_ERR(drm_dev);
681                 goto fail_nvkm;
682         }
683
684         ret = pci_enable_device(pdev);
685         if (ret)
686                 goto fail_drm;
687
688         drm_dev->pdev = pdev;
689         pci_set_drvdata(pdev, drm_dev);
690
691         ret = nouveau_drm_device_init(drm_dev);
692         if (ret)
693                 goto fail_pci;
694
695         ret = drm_dev_register(drm_dev, pent->driver_data);
696         if (ret)
697                 goto fail_drm_dev_init;
698
699         return 0;
700
701 fail_drm_dev_init:
702         nouveau_drm_device_fini(drm_dev);
703 fail_pci:
704         pci_disable_device(pdev);
705 fail_drm:
706         drm_dev_put(drm_dev);
707 fail_nvkm:
708         nvkm_device_del(&device);
709         return ret;
710 }
711
712 void
713 nouveau_drm_device_remove(struct drm_device *dev)
714 {
715         struct pci_dev *pdev = dev->pdev;
716         struct nouveau_drm *drm = nouveau_drm(dev);
717         struct nvkm_client *client;
718         struct nvkm_device *device;
719
720         drm_dev_unregister(dev);
721
722         dev->irq_enabled = false;
723         client = nvxx_client(&drm->client.base);
724         device = nvkm_device_find(client->device);
725
726         nouveau_drm_device_fini(dev);
727         pci_disable_device(pdev);
728         drm_dev_put(dev);
729         nvkm_device_del(&device);
730 }
731
732 static void
733 nouveau_drm_remove(struct pci_dev *pdev)
734 {
735         struct drm_device *dev = pci_get_drvdata(pdev);
736
737         nouveau_drm_device_remove(dev);
738 }
739
740 static int
741 nouveau_do_suspend(struct drm_device *dev, bool runtime)
742 {
743         struct nouveau_drm *drm = nouveau_drm(dev);
744         int ret;
745
746         nouveau_svm_suspend(drm);
747         nouveau_dmem_suspend(drm);
748         nouveau_led_suspend(dev);
749
750         if (dev->mode_config.num_crtc) {
751                 NV_DEBUG(drm, "suspending console...\n");
752                 nouveau_fbcon_set_suspend(dev, 1);
753                 NV_DEBUG(drm, "suspending display...\n");
754                 ret = nouveau_display_suspend(dev, runtime);
755                 if (ret)
756                         return ret;
757         }
758
759         NV_DEBUG(drm, "evicting buffers...\n");
760         ttm_bo_evict_mm(&drm->ttm.bdev, TTM_PL_VRAM);
761
762         NV_DEBUG(drm, "waiting for kernel channels to go idle...\n");
763         if (drm->cechan) {
764                 ret = nouveau_channel_idle(drm->cechan);
765                 if (ret)
766                         goto fail_display;
767         }
768
769         if (drm->channel) {
770                 ret = nouveau_channel_idle(drm->channel);
771                 if (ret)
772                         goto fail_display;
773         }
774
775         NV_DEBUG(drm, "suspending fence...\n");
776         if (drm->fence && nouveau_fence(drm)->suspend) {
777                 if (!nouveau_fence(drm)->suspend(drm)) {
778                         ret = -ENOMEM;
779                         goto fail_display;
780                 }
781         }
782
783         NV_DEBUG(drm, "suspending object tree...\n");
784         ret = nvif_client_suspend(&drm->master.base);
785         if (ret)
786                 goto fail_client;
787
788         return 0;
789
790 fail_client:
791         if (drm->fence && nouveau_fence(drm)->resume)
792                 nouveau_fence(drm)->resume(drm);
793
794 fail_display:
795         if (dev->mode_config.num_crtc) {
796                 NV_DEBUG(drm, "resuming display...\n");
797                 nouveau_display_resume(dev, runtime);
798         }
799         return ret;
800 }
801
802 static int
803 nouveau_do_resume(struct drm_device *dev, bool runtime)
804 {
805         int ret = 0;
806         struct nouveau_drm *drm = nouveau_drm(dev);
807
808         NV_DEBUG(drm, "resuming object tree...\n");
809         ret = nvif_client_resume(&drm->master.base);
810         if (ret) {
811                 NV_ERROR(drm, "Client resume failed with error: %d\n", ret);
812                 return ret;
813         }
814
815         NV_DEBUG(drm, "resuming fence...\n");
816         if (drm->fence && nouveau_fence(drm)->resume)
817                 nouveau_fence(drm)->resume(drm);
818
819         nouveau_run_vbios_init(dev);
820
821         if (dev->mode_config.num_crtc) {
822                 NV_DEBUG(drm, "resuming display...\n");
823                 nouveau_display_resume(dev, runtime);
824                 NV_DEBUG(drm, "resuming console...\n");
825                 nouveau_fbcon_set_suspend(dev, 0);
826         }
827
828         nouveau_led_resume(dev);
829         nouveau_dmem_resume(drm);
830         nouveau_svm_resume(drm);
831         return 0;
832 }
833
834 int
835 nouveau_pmops_suspend(struct device *dev)
836 {
837         struct pci_dev *pdev = to_pci_dev(dev);
838         struct drm_device *drm_dev = pci_get_drvdata(pdev);
839         int ret;
840
841         if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF ||
842             drm_dev->switch_power_state == DRM_SWITCH_POWER_DYNAMIC_OFF)
843                 return 0;
844
845         ret = nouveau_do_suspend(drm_dev, false);
846         if (ret)
847                 return ret;
848
849         pci_save_state(pdev);
850         pci_disable_device(pdev);
851         pci_set_power_state(pdev, PCI_D3hot);
852         udelay(200);
853         return 0;
854 }
855
856 int
857 nouveau_pmops_resume(struct device *dev)
858 {
859         struct pci_dev *pdev = to_pci_dev(dev);
860         struct drm_device *drm_dev = pci_get_drvdata(pdev);
861         int ret;
862
863         if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF ||
864             drm_dev->switch_power_state == DRM_SWITCH_POWER_DYNAMIC_OFF)
865                 return 0;
866
867         pci_set_power_state(pdev, PCI_D0);
868         pci_restore_state(pdev);
869         ret = pci_enable_device(pdev);
870         if (ret)
871                 return ret;
872         pci_set_master(pdev);
873
874         ret = nouveau_do_resume(drm_dev, false);
875
876         /* Monitors may have been connected / disconnected during suspend */
877         schedule_work(&nouveau_drm(drm_dev)->hpd_work);
878
879         return ret;
880 }
881
882 static int
883 nouveau_pmops_freeze(struct device *dev)
884 {
885         struct pci_dev *pdev = to_pci_dev(dev);
886         struct drm_device *drm_dev = pci_get_drvdata(pdev);
887         return nouveau_do_suspend(drm_dev, false);
888 }
889
890 static int
891 nouveau_pmops_thaw(struct device *dev)
892 {
893         struct pci_dev *pdev = to_pci_dev(dev);
894         struct drm_device *drm_dev = pci_get_drvdata(pdev);
895         return nouveau_do_resume(drm_dev, false);
896 }
897
898 bool
899 nouveau_pmops_runtime(void)
900 {
901         if (nouveau_runtime_pm == -1)
902                 return nouveau_is_optimus() || nouveau_is_v1_dsm();
903         return nouveau_runtime_pm == 1;
904 }
905
906 static int
907 nouveau_pmops_runtime_suspend(struct device *dev)
908 {
909         struct pci_dev *pdev = to_pci_dev(dev);
910         struct drm_device *drm_dev = pci_get_drvdata(pdev);
911         int ret;
912
913         if (!nouveau_pmops_runtime()) {
914                 pm_runtime_forbid(dev);
915                 return -EBUSY;
916         }
917
918         nouveau_switcheroo_optimus_dsm();
919         ret = nouveau_do_suspend(drm_dev, true);
920         pci_save_state(pdev);
921         pci_disable_device(pdev);
922         pci_ignore_hotplug(pdev);
923         pci_set_power_state(pdev, PCI_D3cold);
924         drm_dev->switch_power_state = DRM_SWITCH_POWER_DYNAMIC_OFF;
925         return ret;
926 }
927
928 static int
929 nouveau_pmops_runtime_resume(struct device *dev)
930 {
931         struct pci_dev *pdev = to_pci_dev(dev);
932         struct drm_device *drm_dev = pci_get_drvdata(pdev);
933         struct nouveau_drm *drm = nouveau_drm(drm_dev);
934         struct nvif_device *device = &nouveau_drm(drm_dev)->client.device;
935         int ret;
936
937         if (!nouveau_pmops_runtime()) {
938                 pm_runtime_forbid(dev);
939                 return -EBUSY;
940         }
941
942         pci_set_power_state(pdev, PCI_D0);
943         pci_restore_state(pdev);
944         ret = pci_enable_device(pdev);
945         if (ret)
946                 return ret;
947         pci_set_master(pdev);
948
949         ret = nouveau_do_resume(drm_dev, true);
950         if (ret) {
951                 NV_ERROR(drm, "resume failed with: %d\n", ret);
952                 return ret;
953         }
954
955         /* do magic */
956         nvif_mask(&device->object, 0x088488, (1 << 25), (1 << 25));
957         drm_dev->switch_power_state = DRM_SWITCH_POWER_ON;
958
959         /* Monitors may have been connected / disconnected during suspend */
960         schedule_work(&nouveau_drm(drm_dev)->hpd_work);
961
962         return ret;
963 }
964
965 static int
966 nouveau_pmops_runtime_idle(struct device *dev)
967 {
968         if (!nouveau_pmops_runtime()) {
969                 pm_runtime_forbid(dev);
970                 return -EBUSY;
971         }
972
973         pm_runtime_mark_last_busy(dev);
974         pm_runtime_autosuspend(dev);
975         /* we don't want the main rpm_idle to call suspend - we want to autosuspend */
976         return 1;
977 }
978
979 static int
980 nouveau_drm_open(struct drm_device *dev, struct drm_file *fpriv)
981 {
982         struct nouveau_drm *drm = nouveau_drm(dev);
983         struct nouveau_cli *cli;
984         char name[32], tmpname[TASK_COMM_LEN];
985         int ret;
986
987         /* need to bring up power immediately if opening device */
988         ret = pm_runtime_get_sync(dev->dev);
989         if (ret < 0 && ret != -EACCES)
990                 return ret;
991
992         get_task_comm(tmpname, current);
993         snprintf(name, sizeof(name), "%s[%d]", tmpname, pid_nr(fpriv->pid));
994
995         if (!(cli = kzalloc(sizeof(*cli), GFP_KERNEL))) {
996                 ret = -ENOMEM;
997                 goto done;
998         }
999
1000         ret = nouveau_cli_init(drm, name, cli);
1001         if (ret)
1002                 goto done;
1003
1004         cli->base.super = false;
1005
1006         fpriv->driver_priv = cli;
1007
1008         mutex_lock(&drm->client.mutex);
1009         list_add(&cli->head, &drm->clients);
1010         mutex_unlock(&drm->client.mutex);
1011
1012 done:
1013         if (ret && cli) {
1014                 nouveau_cli_fini(cli);
1015                 kfree(cli);
1016         }
1017
1018         pm_runtime_mark_last_busy(dev->dev);
1019         pm_runtime_put_autosuspend(dev->dev);
1020         return ret;
1021 }
1022
1023 static void
1024 nouveau_drm_postclose(struct drm_device *dev, struct drm_file *fpriv)
1025 {
1026         struct nouveau_cli *cli = nouveau_cli(fpriv);
1027         struct nouveau_drm *drm = nouveau_drm(dev);
1028
1029         pm_runtime_get_sync(dev->dev);
1030
1031         mutex_lock(&cli->mutex);
1032         if (cli->abi16)
1033                 nouveau_abi16_fini(cli->abi16);
1034         mutex_unlock(&cli->mutex);
1035
1036         mutex_lock(&drm->client.mutex);
1037         list_del(&cli->head);
1038         mutex_unlock(&drm->client.mutex);
1039
1040         nouveau_cli_fini(cli);
1041         kfree(cli);
1042         pm_runtime_mark_last_busy(dev->dev);
1043         pm_runtime_put_autosuspend(dev->dev);
1044 }
1045
1046 static const struct drm_ioctl_desc
1047 nouveau_ioctls[] = {
1048         DRM_IOCTL_DEF_DRV(NOUVEAU_GETPARAM, nouveau_abi16_ioctl_getparam, DRM_AUTH|DRM_RENDER_ALLOW),
1049         DRM_IOCTL_DEF_DRV(NOUVEAU_SETPARAM, nouveau_abi16_ioctl_setparam, DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
1050         DRM_IOCTL_DEF_DRV(NOUVEAU_CHANNEL_ALLOC, nouveau_abi16_ioctl_channel_alloc, DRM_AUTH|DRM_RENDER_ALLOW),
1051         DRM_IOCTL_DEF_DRV(NOUVEAU_CHANNEL_FREE, nouveau_abi16_ioctl_channel_free, DRM_AUTH|DRM_RENDER_ALLOW),
1052         DRM_IOCTL_DEF_DRV(NOUVEAU_GROBJ_ALLOC, nouveau_abi16_ioctl_grobj_alloc, DRM_AUTH|DRM_RENDER_ALLOW),
1053         DRM_IOCTL_DEF_DRV(NOUVEAU_NOTIFIEROBJ_ALLOC, nouveau_abi16_ioctl_notifierobj_alloc, DRM_AUTH|DRM_RENDER_ALLOW),
1054         DRM_IOCTL_DEF_DRV(NOUVEAU_GPUOBJ_FREE, nouveau_abi16_ioctl_gpuobj_free, DRM_AUTH|DRM_RENDER_ALLOW),
1055         DRM_IOCTL_DEF_DRV(NOUVEAU_SVM_INIT, nouveau_svmm_init, DRM_AUTH|DRM_RENDER_ALLOW),
1056         DRM_IOCTL_DEF_DRV(NOUVEAU_SVM_BIND, nouveau_svmm_bind, DRM_AUTH|DRM_RENDER_ALLOW),
1057         DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_NEW, nouveau_gem_ioctl_new, DRM_AUTH|DRM_RENDER_ALLOW),
1058         DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_PUSHBUF, nouveau_gem_ioctl_pushbuf, DRM_AUTH|DRM_RENDER_ALLOW),
1059         DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_CPU_PREP, nouveau_gem_ioctl_cpu_prep, DRM_AUTH|DRM_RENDER_ALLOW),
1060         DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_CPU_FINI, nouveau_gem_ioctl_cpu_fini, DRM_AUTH|DRM_RENDER_ALLOW),
1061         DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_INFO, nouveau_gem_ioctl_info, DRM_AUTH|DRM_RENDER_ALLOW),
1062 };
1063
1064 long
1065 nouveau_drm_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1066 {
1067         struct drm_file *filp = file->private_data;
1068         struct drm_device *dev = filp->minor->dev;
1069         long ret;
1070
1071         ret = pm_runtime_get_sync(dev->dev);
1072         if (ret < 0 && ret != -EACCES)
1073                 return ret;
1074
1075         switch (_IOC_NR(cmd) - DRM_COMMAND_BASE) {
1076         case DRM_NOUVEAU_NVIF:
1077                 ret = usif_ioctl(filp, (void __user *)arg, _IOC_SIZE(cmd));
1078                 break;
1079         default:
1080                 ret = drm_ioctl(file, cmd, arg);
1081                 break;
1082         }
1083
1084         pm_runtime_mark_last_busy(dev->dev);
1085         pm_runtime_put_autosuspend(dev->dev);
1086         return ret;
1087 }
1088
1089 static const struct file_operations
1090 nouveau_driver_fops = {
1091         .owner = THIS_MODULE,
1092         .open = drm_open,
1093         .release = drm_release,
1094         .unlocked_ioctl = nouveau_drm_ioctl,
1095         .mmap = nouveau_ttm_mmap,
1096         .poll = drm_poll,
1097         .read = drm_read,
1098 #if defined(CONFIG_COMPAT)
1099         .compat_ioctl = nouveau_compat_ioctl,
1100 #endif
1101         .llseek = noop_llseek,
1102 };
1103
1104 static struct drm_driver
1105 driver_stub = {
1106         .driver_features =
1107                 DRIVER_GEM | DRIVER_MODESET | DRIVER_PRIME | DRIVER_RENDER
1108 #if defined(CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT)
1109                 | DRIVER_KMS_LEGACY_CONTEXT
1110 #endif
1111                 ,
1112
1113         .open = nouveau_drm_open,
1114         .postclose = nouveau_drm_postclose,
1115         .lastclose = nouveau_vga_lastclose,
1116
1117 #if defined(CONFIG_DEBUG_FS)
1118         .debugfs_init = nouveau_drm_debugfs_init,
1119 #endif
1120
1121         .enable_vblank = nouveau_display_vblank_enable,
1122         .disable_vblank = nouveau_display_vblank_disable,
1123         .get_scanout_position = nouveau_display_scanoutpos,
1124         .get_vblank_timestamp = drm_calc_vbltimestamp_from_scanoutpos,
1125
1126         .ioctls = nouveau_ioctls,
1127         .num_ioctls = ARRAY_SIZE(nouveau_ioctls),
1128         .fops = &nouveau_driver_fops,
1129
1130         .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
1131         .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
1132         .gem_prime_export = drm_gem_prime_export,
1133         .gem_prime_import = drm_gem_prime_import,
1134         .gem_prime_pin = nouveau_gem_prime_pin,
1135         .gem_prime_res_obj = nouveau_gem_prime_res_obj,
1136         .gem_prime_unpin = nouveau_gem_prime_unpin,
1137         .gem_prime_get_sg_table = nouveau_gem_prime_get_sg_table,
1138         .gem_prime_import_sg_table = nouveau_gem_prime_import_sg_table,
1139         .gem_prime_vmap = nouveau_gem_prime_vmap,
1140         .gem_prime_vunmap = nouveau_gem_prime_vunmap,
1141
1142         .gem_free_object_unlocked = nouveau_gem_object_del,
1143         .gem_open_object = nouveau_gem_object_open,
1144         .gem_close_object = nouveau_gem_object_close,
1145
1146         .dumb_create = nouveau_display_dumb_create,
1147         .dumb_map_offset = nouveau_display_dumb_map_offset,
1148
1149         .name = DRIVER_NAME,
1150         .desc = DRIVER_DESC,
1151 #ifdef GIT_REVISION
1152         .date = GIT_REVISION,
1153 #else
1154         .date = DRIVER_DATE,
1155 #endif
1156         .major = DRIVER_MAJOR,
1157         .minor = DRIVER_MINOR,
1158         .patchlevel = DRIVER_PATCHLEVEL,
1159 };
1160
1161 static struct pci_device_id
1162 nouveau_drm_pci_table[] = {
1163         {
1164                 PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID),
1165                 .class = PCI_BASE_CLASS_DISPLAY << 16,
1166                 .class_mask  = 0xff << 16,
1167         },
1168         {
1169                 PCI_DEVICE(PCI_VENDOR_ID_NVIDIA_SGS, PCI_ANY_ID),
1170                 .class = PCI_BASE_CLASS_DISPLAY << 16,
1171                 .class_mask  = 0xff << 16,
1172         },
1173         {}
1174 };
1175
1176 static void nouveau_display_options(void)
1177 {
1178         DRM_DEBUG_DRIVER("Loading Nouveau with parameters:\n");
1179
1180         DRM_DEBUG_DRIVER("... tv_disable   : %d\n", nouveau_tv_disable);
1181         DRM_DEBUG_DRIVER("... ignorelid    : %d\n", nouveau_ignorelid);
1182         DRM_DEBUG_DRIVER("... duallink     : %d\n", nouveau_duallink);
1183         DRM_DEBUG_DRIVER("... nofbaccel    : %d\n", nouveau_nofbaccel);
1184         DRM_DEBUG_DRIVER("... config       : %s\n", nouveau_config);
1185         DRM_DEBUG_DRIVER("... debug        : %s\n", nouveau_debug);
1186         DRM_DEBUG_DRIVER("... noaccel      : %d\n", nouveau_noaccel);
1187         DRM_DEBUG_DRIVER("... modeset      : %d\n", nouveau_modeset);
1188         DRM_DEBUG_DRIVER("... runpm        : %d\n", nouveau_runtime_pm);
1189         DRM_DEBUG_DRIVER("... vram_pushbuf : %d\n", nouveau_vram_pushbuf);
1190         DRM_DEBUG_DRIVER("... hdmimhz      : %d\n", nouveau_hdmimhz);
1191 }
1192
1193 static const struct dev_pm_ops nouveau_pm_ops = {
1194         .suspend = nouveau_pmops_suspend,
1195         .resume = nouveau_pmops_resume,
1196         .freeze = nouveau_pmops_freeze,
1197         .thaw = nouveau_pmops_thaw,
1198         .poweroff = nouveau_pmops_freeze,
1199         .restore = nouveau_pmops_resume,
1200         .runtime_suspend = nouveau_pmops_runtime_suspend,
1201         .runtime_resume = nouveau_pmops_runtime_resume,
1202         .runtime_idle = nouveau_pmops_runtime_idle,
1203 };
1204
1205 static struct pci_driver
1206 nouveau_drm_pci_driver = {
1207         .name = "nouveau",
1208         .id_table = nouveau_drm_pci_table,
1209         .probe = nouveau_drm_probe,
1210         .remove = nouveau_drm_remove,
1211         .driver.pm = &nouveau_pm_ops,
1212 };
1213
1214 struct drm_device *
1215 nouveau_platform_device_create(const struct nvkm_device_tegra_func *func,
1216                                struct platform_device *pdev,
1217                                struct nvkm_device **pdevice)
1218 {
1219         struct drm_device *drm;
1220         int err;
1221
1222         err = nvkm_device_tegra_new(func, pdev, nouveau_config, nouveau_debug,
1223                                     true, true, ~0ULL, pdevice);
1224         if (err)
1225                 goto err_free;
1226
1227         drm = drm_dev_alloc(&driver_platform, &pdev->dev);
1228         if (IS_ERR(drm)) {
1229                 err = PTR_ERR(drm);
1230                 goto err_free;
1231         }
1232
1233         err = nouveau_drm_device_init(drm);
1234         if (err)
1235                 goto err_put;
1236
1237         platform_set_drvdata(pdev, drm);
1238
1239         return drm;
1240
1241 err_put:
1242         drm_dev_put(drm);
1243 err_free:
1244         nvkm_device_del(pdevice);
1245
1246         return ERR_PTR(err);
1247 }
1248
1249 static int __init
1250 nouveau_drm_init(void)
1251 {
1252         driver_pci = driver_stub;
1253         driver_platform = driver_stub;
1254
1255         nouveau_display_options();
1256
1257         if (nouveau_modeset == -1) {
1258                 if (vgacon_text_force())
1259                         nouveau_modeset = 0;
1260         }
1261
1262         if (!nouveau_modeset)
1263                 return 0;
1264
1265 #ifdef CONFIG_NOUVEAU_PLATFORM_DRIVER
1266         platform_driver_register(&nouveau_platform_driver);
1267 #endif
1268
1269         nouveau_register_dsm_handler();
1270         nouveau_backlight_ctor();
1271
1272 #ifdef CONFIG_PCI
1273         return pci_register_driver(&nouveau_drm_pci_driver);
1274 #else
1275         return 0;
1276 #endif
1277 }
1278
1279 static void __exit
1280 nouveau_drm_exit(void)
1281 {
1282         if (!nouveau_modeset)
1283                 return;
1284
1285 #ifdef CONFIG_PCI
1286         pci_unregister_driver(&nouveau_drm_pci_driver);
1287 #endif
1288         nouveau_backlight_dtor();
1289         nouveau_unregister_dsm_handler();
1290
1291 #ifdef CONFIG_NOUVEAU_PLATFORM_DRIVER
1292         platform_driver_unregister(&nouveau_platform_driver);
1293 #endif
1294 }
1295
1296 module_init(nouveau_drm_init);
1297 module_exit(nouveau_drm_exit);
1298
1299 MODULE_DEVICE_TABLE(pci, nouveau_drm_pci_table);
1300 MODULE_AUTHOR(DRIVER_AUTHOR);
1301 MODULE_DESCRIPTION(DRIVER_DESC);
1302 MODULE_LICENSE("GPL and additional rights");