2 * Copyright 2012 Red Hat Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
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>
33 #include "drm_crtc_helper.h"
35 #include <core/device.h>
36 #include <core/gpuobj.h>
37 #include <core/option.h>
39 #include "nouveau_drm.h"
40 #include "nouveau_dma.h"
41 #include "nouveau_ttm.h"
42 #include "nouveau_gem.h"
43 #include "nouveau_agp.h"
44 #include "nouveau_vga.h"
45 #include "nouveau_sysfs.h"
46 #include "nouveau_hwmon.h"
47 #include "nouveau_acpi.h"
48 #include "nouveau_bios.h"
49 #include "nouveau_ioctl.h"
50 #include "nouveau_abi16.h"
51 #include "nouveau_fbcon.h"
52 #include "nouveau_fence.h"
53 #include "nouveau_debugfs.h"
54 #include "nouveau_usif.h"
55 #include "nouveau_connector.h"
56 #include "nouveau_platform.h"
58 MODULE_PARM_DESC(config, "option string to pass to driver core");
59 static char *nouveau_config;
60 module_param_named(config, nouveau_config, charp, 0400);
62 MODULE_PARM_DESC(debug, "debug string to pass to driver core");
63 static char *nouveau_debug;
64 module_param_named(debug, nouveau_debug, charp, 0400);
66 MODULE_PARM_DESC(noaccel, "disable kernel/abi16 acceleration");
67 static int nouveau_noaccel = 0;
68 module_param_named(noaccel, nouveau_noaccel, int, 0400);
70 MODULE_PARM_DESC(modeset, "enable driver (default: auto, "
71 "0 = disabled, 1 = enabled, 2 = headless)");
72 int nouveau_modeset = -1;
73 module_param_named(modeset, nouveau_modeset, int, 0400);
75 MODULE_PARM_DESC(runpm, "disable (0), force enable (1), optimus only default (-1)");
76 int nouveau_runtime_pm = -1;
77 module_param_named(runpm, nouveau_runtime_pm, int, 0400);
79 static struct drm_driver driver_stub;
80 static struct drm_driver driver_pci;
81 static struct drm_driver driver_platform;
84 nouveau_pci_name(struct pci_dev *pdev)
86 u64 name = (u64)pci_domain_nr(pdev->bus) << 32;
87 name |= pdev->bus->number << 16;
88 name |= PCI_SLOT(pdev->devfn) << 8;
89 return name | PCI_FUNC(pdev->devfn);
93 nouveau_platform_name(struct platform_device *platformdev)
95 return platformdev->id;
99 nouveau_name(struct drm_device *dev)
102 return nouveau_pci_name(dev->pdev);
104 return nouveau_platform_name(dev->platformdev);
108 nouveau_cli_create(u64 name, const char *sname,
109 int size, void **pcli)
111 struct nouveau_cli *cli = *pcli = kzalloc(size, GFP_KERNEL);
113 int ret = nvif_client_init(NULL, NULL, sname, name,
114 nouveau_config, nouveau_debug,
117 mutex_init(&cli->mutex);
118 usif_client_init(cli);
126 nouveau_cli_destroy(struct nouveau_cli *cli)
128 nvkm_vm_ref(NULL, &nvxx_client(&cli->base)->vm, NULL);
129 nvif_client_fini(&cli->base);
130 usif_client_fini(cli);
134 nouveau_accel_fini(struct nouveau_drm *drm)
136 nouveau_channel_del(&drm->channel);
137 nvif_object_fini(&drm->ntfy);
138 nvkm_gpuobj_ref(NULL, &drm->notify);
139 nvif_object_fini(&drm->nvsw);
140 nouveau_channel_del(&drm->cechan);
141 nvif_object_fini(&drm->ttm.copy);
143 nouveau_fence(drm)->dtor(drm);
147 nouveau_accel_init(struct nouveau_drm *drm)
149 struct nvif_device *device = &drm->device;
157 /* initialise synchronisation routines */
158 /*XXX: this is crap, but the fence/channel stuff is a little
159 * backwards in some places. this will be fixed.
161 ret = nvif_object_sclass(&device->base, sclass, ARRAY_SIZE(sclass));
165 for (ret = -ENOSYS, i = 0; ret && i < ARRAY_SIZE(sclass); i++) {
167 case NV03_CHANNEL_DMA:
168 ret = nv04_fence_create(drm);
170 case NV10_CHANNEL_DMA:
171 ret = nv10_fence_create(drm);
173 case NV17_CHANNEL_DMA:
174 case NV40_CHANNEL_DMA:
175 ret = nv17_fence_create(drm);
177 case NV50_CHANNEL_GPFIFO:
178 ret = nv50_fence_create(drm);
180 case G82_CHANNEL_GPFIFO:
181 ret = nv84_fence_create(drm);
183 case FERMI_CHANNEL_GPFIFO:
184 case KEPLER_CHANNEL_GPFIFO_A:
185 case MAXWELL_CHANNEL_GPFIFO_A:
186 ret = nvc0_fence_create(drm);
194 NV_ERROR(drm, "failed to initialise sync subsystem, %d\n", ret);
195 nouveau_accel_fini(drm);
199 if (device->info.family >= NV_DEVICE_INFO_V0_KEPLER) {
200 ret = nouveau_channel_new(drm, &drm->device, NVDRM_CHAN + 1,
201 KEPLER_CHANNEL_GPFIFO_A_V0_ENGINE_CE0|
202 KEPLER_CHANNEL_GPFIFO_A_V0_ENGINE_CE1,
205 NV_ERROR(drm, "failed to create ce channel, %d\n", ret);
207 arg0 = KEPLER_CHANNEL_GPFIFO_A_V0_ENGINE_GR;
210 if (device->info.chipset >= 0xa3 &&
211 device->info.chipset != 0xaa &&
212 device->info.chipset != 0xac) {
213 ret = nouveau_channel_new(drm, &drm->device, NVDRM_CHAN + 1,
214 NvDmaFB, NvDmaTT, &drm->cechan);
216 NV_ERROR(drm, "failed to create ce channel, %d\n", ret);
225 ret = nouveau_channel_new(drm, &drm->device, NVDRM_CHAN, arg0, arg1,
228 NV_ERROR(drm, "failed to create kernel channel, %d\n", ret);
229 nouveau_accel_fini(drm);
233 ret = nvif_object_init(drm->channel->object, NULL, NVDRM_NVSW,
234 nouveau_abi16_swclass(drm), NULL, 0, &drm->nvsw);
236 struct nvkm_sw_chan *swch;
237 ret = RING_SPACE(drm->channel, 2);
239 if (device->info.family < NV_DEVICE_INFO_V0_FERMI) {
240 BEGIN_NV04(drm->channel, NvSubSw, 0, 1);
241 OUT_RING (drm->channel, NVDRM_NVSW);
243 if (device->info.family < NV_DEVICE_INFO_V0_KEPLER) {
244 BEGIN_NVC0(drm->channel, FermiSw, 0, 1);
245 OUT_RING (drm->channel, 0x001f0000);
248 swch = (void *)nvxx_object(&drm->nvsw)->parent;
249 swch->flip = nouveau_flip_complete;
250 swch->flip_data = drm->channel;
254 NV_ERROR(drm, "failed to allocate software object, %d\n", ret);
255 nouveau_accel_fini(drm);
259 if (device->info.family < NV_DEVICE_INFO_V0_FERMI) {
260 ret = nvkm_gpuobj_new(nvxx_object(&drm->device), NULL, 32,
263 NV_ERROR(drm, "failed to allocate notifier, %d\n", ret);
264 nouveau_accel_fini(drm);
268 ret = nvif_object_init(drm->channel->object, NULL, NvNotify0,
270 &(struct nv_dma_v0) {
271 .target = NV_DMA_V0_TARGET_VRAM,
272 .access = NV_DMA_V0_ACCESS_RDWR,
273 .start = drm->notify->addr,
274 .limit = drm->notify->addr + 31
275 }, sizeof(struct nv_dma_v0),
278 nouveau_accel_fini(drm);
284 nouveau_bo_move_init(drm);
287 static int nouveau_drm_probe(struct pci_dev *pdev,
288 const struct pci_device_id *pent)
290 struct nvkm_device *device;
291 struct apertures_struct *aper;
295 /* remove conflicting drivers (vesafb, efifb etc) */
296 aper = alloc_apertures(3);
300 aper->ranges[0].base = pci_resource_start(pdev, 1);
301 aper->ranges[0].size = pci_resource_len(pdev, 1);
304 if (pci_resource_len(pdev, 2)) {
305 aper->ranges[aper->count].base = pci_resource_start(pdev, 2);
306 aper->ranges[aper->count].size = pci_resource_len(pdev, 2);
310 if (pci_resource_len(pdev, 3)) {
311 aper->ranges[aper->count].base = pci_resource_start(pdev, 3);
312 aper->ranges[aper->count].size = pci_resource_len(pdev, 3);
317 boot = pdev->resource[PCI_ROM_RESOURCE].flags & IORESOURCE_ROM_SHADOW;
319 if (nouveau_modeset != 2)
320 remove_conflicting_framebuffers(aper, "nouveaufb", boot);
323 ret = nvkm_device_create(pdev, NVKM_BUS_PCI,
324 nouveau_pci_name(pdev), pci_name(pdev),
325 nouveau_config, nouveau_debug, &device);
329 pci_set_master(pdev);
331 ret = drm_get_pci_dev(pdev, pent, &driver_pci);
333 nvkm_object_ref(NULL, (struct nvkm_object **)&device);
340 #define PCI_CLASS_MULTIMEDIA_HD_AUDIO 0x0403
343 nouveau_get_hdmi_dev(struct nouveau_drm *drm)
345 struct pci_dev *pdev = drm->dev->pdev;
348 DRM_INFO("not a PCI device; no HDMI\n");
349 drm->hdmi_device = NULL;
353 /* subfunction one is a hdmi audio device? */
354 drm->hdmi_device = pci_get_bus_and_slot((unsigned int)pdev->bus->number,
355 PCI_DEVFN(PCI_SLOT(pdev->devfn), 1));
357 if (!drm->hdmi_device) {
358 NV_DEBUG(drm, "hdmi device not found %d %d %d\n", pdev->bus->number, PCI_SLOT(pdev->devfn), 1);
362 if ((drm->hdmi_device->class >> 8) != PCI_CLASS_MULTIMEDIA_HD_AUDIO) {
363 NV_DEBUG(drm, "possible hdmi device not audio %d\n", drm->hdmi_device->class);
364 pci_dev_put(drm->hdmi_device);
365 drm->hdmi_device = NULL;
371 nouveau_drm_load(struct drm_device *dev, unsigned long flags)
373 struct pci_dev *pdev = dev->pdev;
374 struct nouveau_drm *drm;
377 ret = nouveau_cli_create(nouveau_name(dev), "DRM", sizeof(*drm),
382 dev->dev_private = drm;
384 nvxx_client(&drm->client.base)->debug =
385 nvkm_dbgopt(nouveau_debug, "DRM");
387 INIT_LIST_HEAD(&drm->clients);
388 spin_lock_init(&drm->tile.lock);
390 nouveau_get_hdmi_dev(drm);
392 /* make sure AGP controller is in a consistent state before we
393 * (possibly) execute vbios init tables (see nouveau_agp.h)
395 if (pdev && drm_pci_device_is_agp(dev) && dev->agp) {
396 const u64 enables = NV_DEVICE_V0_DISABLE_IDENTIFY |
397 NV_DEVICE_V0_DISABLE_MMIO;
398 /* dummy device object, doesn't init anything, but allows
399 * agp code access to registers
401 ret = nvif_device_init(&drm->client.base.base, NULL,
402 NVDRM_DEVICE, NV_DEVICE,
403 &(struct nv_device_v0) {
407 }, sizeof(struct nv_device_v0),
412 nouveau_agp_reset(drm);
413 nvif_device_fini(&drm->device);
416 ret = nvif_device_init(&drm->client.base.base, NULL, NVDRM_DEVICE,
418 &(struct nv_device_v0) {
422 }, sizeof(struct nv_device_v0),
427 dev->irq_enabled = true;
429 /* workaround an odd issue on nvc1 by disabling the device's
430 * nosnoop capability. hopefully won't cause issues until a
431 * better fix is found - assuming there is one...
433 if (drm->device.info.chipset == 0xc1)
434 nvif_mask(&drm->device, 0x00088080, 0x00000800, 0x00000000);
436 nouveau_vga_init(drm);
437 nouveau_agp_init(drm);
439 if (drm->device.info.family >= NV_DEVICE_INFO_V0_TESLA) {
440 ret = nvkm_vm_new(nvxx_device(&drm->device), 0, (1ULL << 40),
441 0x1000, &drm->client.vm);
445 nvxx_client(&drm->client.base)->vm = drm->client.vm;
448 ret = nouveau_ttm_init(drm);
452 ret = nouveau_bios_init(dev);
456 ret = nouveau_display_create(dev);
460 if (dev->mode_config.num_crtc) {
461 ret = nouveau_display_init(dev);
466 nouveau_sysfs_init(dev);
467 nouveau_hwmon_init(dev);
468 nouveau_accel_init(drm);
469 nouveau_fbcon_init(dev);
471 if (nouveau_runtime_pm != 0) {
472 pm_runtime_use_autosuspend(dev->dev);
473 pm_runtime_set_autosuspend_delay(dev->dev, 5000);
474 pm_runtime_set_active(dev->dev);
475 pm_runtime_allow(dev->dev);
476 pm_runtime_mark_last_busy(dev->dev);
477 pm_runtime_put(dev->dev);
482 nouveau_display_destroy(dev);
484 nouveau_bios_takedown(dev);
486 nouveau_ttm_fini(drm);
488 nouveau_agp_fini(drm);
489 nouveau_vga_fini(drm);
491 nvif_device_fini(&drm->device);
492 nouveau_cli_destroy(&drm->client);
497 nouveau_drm_unload(struct drm_device *dev)
499 struct nouveau_drm *drm = nouveau_drm(dev);
501 pm_runtime_get_sync(dev->dev);
502 nouveau_fbcon_fini(dev);
503 nouveau_accel_fini(drm);
504 nouveau_hwmon_fini(dev);
505 nouveau_sysfs_fini(dev);
507 if (dev->mode_config.num_crtc)
508 nouveau_display_fini(dev);
509 nouveau_display_destroy(dev);
511 nouveau_bios_takedown(dev);
513 nouveau_ttm_fini(drm);
514 nouveau_agp_fini(drm);
515 nouveau_vga_fini(drm);
517 nvif_device_fini(&drm->device);
518 if (drm->hdmi_device)
519 pci_dev_put(drm->hdmi_device);
520 nouveau_cli_destroy(&drm->client);
525 nouveau_drm_device_remove(struct drm_device *dev)
527 struct nouveau_drm *drm = nouveau_drm(dev);
528 struct nvkm_client *client;
529 struct nvkm_object *device;
531 dev->irq_enabled = false;
532 client = nvxx_client(&drm->client.base);
533 device = client->device;
536 nvkm_object_ref(NULL, &device);
541 nouveau_drm_remove(struct pci_dev *pdev)
543 struct drm_device *dev = pci_get_drvdata(pdev);
545 nouveau_drm_device_remove(dev);
549 nouveau_do_suspend(struct drm_device *dev, bool runtime)
551 struct nouveau_drm *drm = nouveau_drm(dev);
552 struct nouveau_cli *cli;
555 if (dev->mode_config.num_crtc) {
556 NV_INFO(drm, "suspending console...\n");
557 nouveau_fbcon_set_suspend(dev, 1);
558 NV_INFO(drm, "suspending display...\n");
559 ret = nouveau_display_suspend(dev, runtime);
564 NV_INFO(drm, "evicting buffers...\n");
565 ttm_bo_evict_mm(&drm->ttm.bdev, TTM_PL_VRAM);
567 NV_INFO(drm, "waiting for kernel channels to go idle...\n");
569 ret = nouveau_channel_idle(drm->cechan);
575 ret = nouveau_channel_idle(drm->channel);
580 NV_INFO(drm, "suspending client object trees...\n");
581 if (drm->fence && nouveau_fence(drm)->suspend) {
582 if (!nouveau_fence(drm)->suspend(drm)) {
588 list_for_each_entry(cli, &drm->clients, head) {
589 ret = nvif_client_suspend(&cli->base);
594 NV_INFO(drm, "suspending kernel object tree...\n");
595 ret = nvif_client_suspend(&drm->client.base);
599 nouveau_agp_fini(drm);
603 list_for_each_entry_continue_reverse(cli, &drm->clients, head) {
604 nvif_client_resume(&cli->base);
607 if (drm->fence && nouveau_fence(drm)->resume)
608 nouveau_fence(drm)->resume(drm);
611 if (dev->mode_config.num_crtc) {
612 NV_INFO(drm, "resuming display...\n");
613 nouveau_display_resume(dev, runtime);
619 nouveau_do_resume(struct drm_device *dev, bool runtime)
621 struct nouveau_drm *drm = nouveau_drm(dev);
622 struct nouveau_cli *cli;
624 NV_INFO(drm, "re-enabling device...\n");
626 nouveau_agp_reset(drm);
628 NV_INFO(drm, "resuming kernel object tree...\n");
629 nvif_client_resume(&drm->client.base);
630 nouveau_agp_init(drm);
632 NV_INFO(drm, "resuming client object trees...\n");
633 if (drm->fence && nouveau_fence(drm)->resume)
634 nouveau_fence(drm)->resume(drm);
636 list_for_each_entry(cli, &drm->clients, head) {
637 nvif_client_resume(&cli->base);
640 nouveau_run_vbios_init(dev);
642 if (dev->mode_config.num_crtc) {
643 NV_INFO(drm, "resuming display...\n");
644 nouveau_display_resume(dev, runtime);
645 NV_INFO(drm, "resuming console...\n");
646 nouveau_fbcon_set_suspend(dev, 0);
653 nouveau_pmops_suspend(struct device *dev)
655 struct pci_dev *pdev = to_pci_dev(dev);
656 struct drm_device *drm_dev = pci_get_drvdata(pdev);
659 if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF ||
660 drm_dev->switch_power_state == DRM_SWITCH_POWER_DYNAMIC_OFF)
663 ret = nouveau_do_suspend(drm_dev, false);
667 pci_save_state(pdev);
668 pci_disable_device(pdev);
669 pci_set_power_state(pdev, PCI_D3hot);
675 nouveau_pmops_resume(struct device *dev)
677 struct pci_dev *pdev = to_pci_dev(dev);
678 struct drm_device *drm_dev = pci_get_drvdata(pdev);
681 if (drm_dev->switch_power_state == DRM_SWITCH_POWER_OFF ||
682 drm_dev->switch_power_state == DRM_SWITCH_POWER_DYNAMIC_OFF)
685 pci_set_power_state(pdev, PCI_D0);
686 pci_restore_state(pdev);
687 ret = pci_enable_device(pdev);
690 pci_set_master(pdev);
692 return nouveau_do_resume(drm_dev, false);
696 nouveau_pmops_freeze(struct device *dev)
698 struct pci_dev *pdev = to_pci_dev(dev);
699 struct drm_device *drm_dev = pci_get_drvdata(pdev);
700 return nouveau_do_suspend(drm_dev, false);
704 nouveau_pmops_thaw(struct device *dev)
706 struct pci_dev *pdev = to_pci_dev(dev);
707 struct drm_device *drm_dev = pci_get_drvdata(pdev);
708 return nouveau_do_resume(drm_dev, false);
712 nouveau_pmops_runtime_suspend(struct device *dev)
714 struct pci_dev *pdev = to_pci_dev(dev);
715 struct drm_device *drm_dev = pci_get_drvdata(pdev);
718 if (nouveau_runtime_pm == 0) {
719 pm_runtime_forbid(dev);
723 /* are we optimus enabled? */
724 if (nouveau_runtime_pm == -1 && !nouveau_is_optimus() && !nouveau_is_v1_dsm()) {
725 DRM_DEBUG_DRIVER("failing to power off - not optimus\n");
726 pm_runtime_forbid(dev);
730 nv_debug_level(SILENT);
731 drm_kms_helper_poll_disable(drm_dev);
732 vga_switcheroo_set_dynamic_switch(pdev, VGA_SWITCHEROO_OFF);
733 nouveau_switcheroo_optimus_dsm();
734 ret = nouveau_do_suspend(drm_dev, true);
735 pci_save_state(pdev);
736 pci_disable_device(pdev);
737 pci_ignore_hotplug(pdev);
738 pci_set_power_state(pdev, PCI_D3cold);
739 drm_dev->switch_power_state = DRM_SWITCH_POWER_DYNAMIC_OFF;
744 nouveau_pmops_runtime_resume(struct device *dev)
746 struct pci_dev *pdev = to_pci_dev(dev);
747 struct drm_device *drm_dev = pci_get_drvdata(pdev);
748 struct nvif_device *device = &nouveau_drm(drm_dev)->device;
751 if (nouveau_runtime_pm == 0)
754 pci_set_power_state(pdev, PCI_D0);
755 pci_restore_state(pdev);
756 ret = pci_enable_device(pdev);
759 pci_set_master(pdev);
761 ret = nouveau_do_resume(drm_dev, true);
762 drm_kms_helper_poll_enable(drm_dev);
764 nvif_mask(device, 0x88488, (1 << 25), (1 << 25));
765 vga_switcheroo_set_dynamic_switch(pdev, VGA_SWITCHEROO_ON);
766 drm_dev->switch_power_state = DRM_SWITCH_POWER_ON;
767 nv_debug_level(NORMAL);
772 nouveau_pmops_runtime_idle(struct device *dev)
774 struct pci_dev *pdev = to_pci_dev(dev);
775 struct drm_device *drm_dev = pci_get_drvdata(pdev);
776 struct nouveau_drm *drm = nouveau_drm(drm_dev);
777 struct drm_crtc *crtc;
779 if (nouveau_runtime_pm == 0) {
780 pm_runtime_forbid(dev);
784 /* are we optimus enabled? */
785 if (nouveau_runtime_pm == -1 && !nouveau_is_optimus() && !nouveau_is_v1_dsm()) {
786 DRM_DEBUG_DRIVER("failing to power off - not optimus\n");
787 pm_runtime_forbid(dev);
791 /* if we have a hdmi audio device - make sure it has a driver loaded */
792 if (drm->hdmi_device) {
793 if (!drm->hdmi_device->driver) {
794 DRM_DEBUG_DRIVER("failing to power off - no HDMI audio driver loaded\n");
795 pm_runtime_mark_last_busy(dev);
800 list_for_each_entry(crtc, &drm->dev->mode_config.crtc_list, head) {
802 DRM_DEBUG_DRIVER("failing to power off - crtc active\n");
806 pm_runtime_mark_last_busy(dev);
807 pm_runtime_autosuspend(dev);
808 /* we don't want the main rpm_idle to call suspend - we want to autosuspend */
813 nouveau_drm_open(struct drm_device *dev, struct drm_file *fpriv)
815 struct nouveau_drm *drm = nouveau_drm(dev);
816 struct nouveau_cli *cli;
817 char name[32], tmpname[TASK_COMM_LEN];
820 /* need to bring up power immediately if opening device */
821 ret = pm_runtime_get_sync(dev->dev);
822 if (ret < 0 && ret != -EACCES)
825 get_task_comm(tmpname, current);
826 snprintf(name, sizeof(name), "%s[%d]", tmpname, pid_nr(fpriv->pid));
828 ret = nouveau_cli_create(nouveau_name(dev), name, sizeof(*cli),
834 cli->base.super = false;
836 if (drm->device.info.family >= NV_DEVICE_INFO_V0_TESLA) {
837 ret = nvkm_vm_new(nvxx_device(&drm->device), 0, (1ULL << 40),
840 nouveau_cli_destroy(cli);
844 nvxx_client(&cli->base)->vm = cli->vm;
847 fpriv->driver_priv = cli;
849 mutex_lock(&drm->client.mutex);
850 list_add(&cli->head, &drm->clients);
851 mutex_unlock(&drm->client.mutex);
854 pm_runtime_mark_last_busy(dev->dev);
855 pm_runtime_put_autosuspend(dev->dev);
861 nouveau_drm_preclose(struct drm_device *dev, struct drm_file *fpriv)
863 struct nouveau_cli *cli = nouveau_cli(fpriv);
864 struct nouveau_drm *drm = nouveau_drm(dev);
866 pm_runtime_get_sync(dev->dev);
869 nouveau_abi16_fini(cli->abi16);
871 mutex_lock(&drm->client.mutex);
872 list_del(&cli->head);
873 mutex_unlock(&drm->client.mutex);
878 nouveau_drm_postclose(struct drm_device *dev, struct drm_file *fpriv)
880 struct nouveau_cli *cli = nouveau_cli(fpriv);
881 nouveau_cli_destroy(cli);
882 pm_runtime_mark_last_busy(dev->dev);
883 pm_runtime_put_autosuspend(dev->dev);
886 static const struct drm_ioctl_desc
888 DRM_IOCTL_DEF_DRV(NOUVEAU_GETPARAM, nouveau_abi16_ioctl_getparam, DRM_UNLOCKED|DRM_AUTH|DRM_RENDER_ALLOW),
889 DRM_IOCTL_DEF_DRV(NOUVEAU_SETPARAM, nouveau_abi16_ioctl_setparam, DRM_UNLOCKED|DRM_AUTH|DRM_MASTER|DRM_ROOT_ONLY),
890 DRM_IOCTL_DEF_DRV(NOUVEAU_CHANNEL_ALLOC, nouveau_abi16_ioctl_channel_alloc, DRM_UNLOCKED|DRM_AUTH|DRM_RENDER_ALLOW),
891 DRM_IOCTL_DEF_DRV(NOUVEAU_CHANNEL_FREE, nouveau_abi16_ioctl_channel_free, DRM_UNLOCKED|DRM_AUTH|DRM_RENDER_ALLOW),
892 DRM_IOCTL_DEF_DRV(NOUVEAU_GROBJ_ALLOC, nouveau_abi16_ioctl_grobj_alloc, DRM_UNLOCKED|DRM_AUTH|DRM_RENDER_ALLOW),
893 DRM_IOCTL_DEF_DRV(NOUVEAU_NOTIFIEROBJ_ALLOC, nouveau_abi16_ioctl_notifierobj_alloc, DRM_UNLOCKED|DRM_AUTH|DRM_RENDER_ALLOW),
894 DRM_IOCTL_DEF_DRV(NOUVEAU_GPUOBJ_FREE, nouveau_abi16_ioctl_gpuobj_free, DRM_UNLOCKED|DRM_AUTH|DRM_RENDER_ALLOW),
895 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_NEW, nouveau_gem_ioctl_new, DRM_UNLOCKED|DRM_AUTH|DRM_RENDER_ALLOW),
896 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_PUSHBUF, nouveau_gem_ioctl_pushbuf, DRM_UNLOCKED|DRM_AUTH|DRM_RENDER_ALLOW),
897 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_CPU_PREP, nouveau_gem_ioctl_cpu_prep, DRM_UNLOCKED|DRM_AUTH|DRM_RENDER_ALLOW),
898 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_CPU_FINI, nouveau_gem_ioctl_cpu_fini, DRM_UNLOCKED|DRM_AUTH|DRM_RENDER_ALLOW),
899 DRM_IOCTL_DEF_DRV(NOUVEAU_GEM_INFO, nouveau_gem_ioctl_info, DRM_UNLOCKED|DRM_AUTH|DRM_RENDER_ALLOW),
903 nouveau_drm_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
905 struct drm_file *filp = file->private_data;
906 struct drm_device *dev = filp->minor->dev;
909 ret = pm_runtime_get_sync(dev->dev);
910 if (ret < 0 && ret != -EACCES)
913 switch (_IOC_NR(cmd) - DRM_COMMAND_BASE) {
914 case DRM_NOUVEAU_NVIF:
915 ret = usif_ioctl(filp, (void __user *)arg, _IOC_SIZE(cmd));
918 ret = drm_ioctl(file, cmd, arg);
922 pm_runtime_mark_last_busy(dev->dev);
923 pm_runtime_put_autosuspend(dev->dev);
927 static const struct file_operations
928 nouveau_driver_fops = {
929 .owner = THIS_MODULE,
931 .release = drm_release,
932 .unlocked_ioctl = nouveau_drm_ioctl,
933 .mmap = nouveau_ttm_mmap,
936 #if defined(CONFIG_COMPAT)
937 .compat_ioctl = nouveau_compat_ioctl,
939 .llseek = noop_llseek,
942 static struct drm_driver
946 DRIVER_GEM | DRIVER_MODESET | DRIVER_PRIME | DRIVER_RENDER,
948 .load = nouveau_drm_load,
949 .unload = nouveau_drm_unload,
950 .open = nouveau_drm_open,
951 .preclose = nouveau_drm_preclose,
952 .postclose = nouveau_drm_postclose,
953 .lastclose = nouveau_vga_lastclose,
955 #if defined(CONFIG_DEBUG_FS)
956 .debugfs_init = nouveau_debugfs_init,
957 .debugfs_cleanup = nouveau_debugfs_takedown,
960 .get_vblank_counter = drm_vblank_count,
961 .enable_vblank = nouveau_display_vblank_enable,
962 .disable_vblank = nouveau_display_vblank_disable,
963 .get_scanout_position = nouveau_display_scanoutpos,
964 .get_vblank_timestamp = nouveau_display_vblstamp,
966 .ioctls = nouveau_ioctls,
967 .num_ioctls = ARRAY_SIZE(nouveau_ioctls),
968 .fops = &nouveau_driver_fops,
970 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
971 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
972 .gem_prime_export = drm_gem_prime_export,
973 .gem_prime_import = drm_gem_prime_import,
974 .gem_prime_pin = nouveau_gem_prime_pin,
975 .gem_prime_res_obj = nouveau_gem_prime_res_obj,
976 .gem_prime_unpin = nouveau_gem_prime_unpin,
977 .gem_prime_get_sg_table = nouveau_gem_prime_get_sg_table,
978 .gem_prime_import_sg_table = nouveau_gem_prime_import_sg_table,
979 .gem_prime_vmap = nouveau_gem_prime_vmap,
980 .gem_prime_vunmap = nouveau_gem_prime_vunmap,
982 .gem_free_object = nouveau_gem_object_del,
983 .gem_open_object = nouveau_gem_object_open,
984 .gem_close_object = nouveau_gem_object_close,
986 .dumb_create = nouveau_display_dumb_create,
987 .dumb_map_offset = nouveau_display_dumb_map_offset,
988 .dumb_destroy = drm_gem_dumb_destroy,
993 .date = GIT_REVISION,
997 .major = DRIVER_MAJOR,
998 .minor = DRIVER_MINOR,
999 .patchlevel = DRIVER_PATCHLEVEL,
1002 static struct pci_device_id
1003 nouveau_drm_pci_table[] = {
1005 PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID),
1006 .class = PCI_BASE_CLASS_DISPLAY << 16,
1007 .class_mask = 0xff << 16,
1010 PCI_DEVICE(PCI_VENDOR_ID_NVIDIA_SGS, PCI_ANY_ID),
1011 .class = PCI_BASE_CLASS_DISPLAY << 16,
1012 .class_mask = 0xff << 16,
1017 static void nouveau_display_options(void)
1019 DRM_DEBUG_DRIVER("Loading Nouveau with parameters:\n");
1021 DRM_DEBUG_DRIVER("... tv_disable : %d\n", nouveau_tv_disable);
1022 DRM_DEBUG_DRIVER("... ignorelid : %d\n", nouveau_ignorelid);
1023 DRM_DEBUG_DRIVER("... duallink : %d\n", nouveau_duallink);
1024 DRM_DEBUG_DRIVER("... nofbaccel : %d\n", nouveau_nofbaccel);
1025 DRM_DEBUG_DRIVER("... config : %s\n", nouveau_config);
1026 DRM_DEBUG_DRIVER("... debug : %s\n", nouveau_debug);
1027 DRM_DEBUG_DRIVER("... noaccel : %d\n", nouveau_noaccel);
1028 DRM_DEBUG_DRIVER("... modeset : %d\n", nouveau_modeset);
1029 DRM_DEBUG_DRIVER("... runpm : %d\n", nouveau_runtime_pm);
1030 DRM_DEBUG_DRIVER("... vram_pushbuf : %d\n", nouveau_vram_pushbuf);
1031 DRM_DEBUG_DRIVER("... pstate : %d\n", nouveau_pstate);
1034 static const struct dev_pm_ops nouveau_pm_ops = {
1035 .suspend = nouveau_pmops_suspend,
1036 .resume = nouveau_pmops_resume,
1037 .freeze = nouveau_pmops_freeze,
1038 .thaw = nouveau_pmops_thaw,
1039 .poweroff = nouveau_pmops_freeze,
1040 .restore = nouveau_pmops_resume,
1041 .runtime_suspend = nouveau_pmops_runtime_suspend,
1042 .runtime_resume = nouveau_pmops_runtime_resume,
1043 .runtime_idle = nouveau_pmops_runtime_idle,
1046 static struct pci_driver
1047 nouveau_drm_pci_driver = {
1049 .id_table = nouveau_drm_pci_table,
1050 .probe = nouveau_drm_probe,
1051 .remove = nouveau_drm_remove,
1052 .driver.pm = &nouveau_pm_ops,
1056 nouveau_platform_device_create_(struct platform_device *pdev, int size,
1059 struct drm_device *drm;
1062 err = nvkm_device_create_(pdev, NVKM_BUS_PLATFORM,
1063 nouveau_platform_name(pdev),
1064 dev_name(&pdev->dev), nouveau_config,
1065 nouveau_debug, size, pobject);
1067 return ERR_PTR(err);
1069 drm = drm_dev_alloc(&driver_platform, &pdev->dev);
1075 err = drm_dev_set_unique(drm, "%s", dev_name(&pdev->dev));
1079 drm->platformdev = pdev;
1080 platform_set_drvdata(pdev, drm);
1085 nvkm_object_ref(NULL, (struct nvkm_object **)pobject);
1087 return ERR_PTR(err);
1091 nouveau_drm_init(void)
1093 driver_pci = driver_stub;
1094 driver_pci.set_busid = drm_pci_set_busid;
1095 driver_platform = driver_stub;
1096 driver_platform.set_busid = drm_platform_set_busid;
1098 nouveau_display_options();
1100 if (nouveau_modeset == -1) {
1101 #ifdef CONFIG_VGA_CONSOLE
1102 if (vgacon_text_force())
1103 nouveau_modeset = 0;
1107 if (!nouveau_modeset)
1110 #ifdef CONFIG_NOUVEAU_PLATFORM_DRIVER
1111 platform_driver_register(&nouveau_platform_driver);
1114 nouveau_register_dsm_handler();
1115 return drm_pci_init(&driver_pci, &nouveau_drm_pci_driver);
1119 nouveau_drm_exit(void)
1121 if (!nouveau_modeset)
1124 drm_pci_exit(&driver_pci, &nouveau_drm_pci_driver);
1125 nouveau_unregister_dsm_handler();
1127 #ifdef CONFIG_NOUVEAU_PLATFORM_DRIVER
1128 platform_driver_unregister(&nouveau_platform_driver);
1132 module_init(nouveau_drm_init);
1133 module_exit(nouveau_drm_exit);
1135 MODULE_DEVICE_TABLE(pci, nouveau_drm_pci_table);
1136 MODULE_AUTHOR(DRIVER_AUTHOR);
1137 MODULE_DESCRIPTION(DRIVER_DESC);
1138 MODULE_LICENSE("GPL and additional rights");