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