1 /* 2 * Copyright (C) 2008 Maarten Maathuis. 3 * All Rights Reserved. 4 * 5 * Permission is hereby granted, free of charge, to any person obtaining 6 * a copy of this software and associated documentation files (the 7 * "Software"), to deal in the Software without restriction, including 8 * without limitation the rights to use, copy, modify, merge, publish, 9 * distribute, sublicense, and/or sell copies of the Software, and to 10 * permit persons to whom the Software is furnished to do so, subject to 11 * the following conditions: 12 * 13 * The above copyright notice and this permission notice (including the 14 * next paragraph) shall be included in all copies or substantial 15 * portions of the Software. 16 * 17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE 21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 24 * 25 */ 26 27 #include <acpi/video.h> 28 #include <drm/drmP.h> 29 #include <drm/drm_atomic.h> 30 #include <drm/drm_atomic_helper.h> 31 #include <drm/drm_crtc_helper.h> 32 #include <drm/drm_fb_helper.h> 33 34 #include <nvif/class.h> 35 36 #include "nouveau_fbcon.h" 37 #include "dispnv04/hw.h" 38 #include "nouveau_crtc.h" 39 #include "nouveau_dma.h" 40 #include "nouveau_gem.h" 41 #include "nouveau_connector.h" 42 #include "nv50_display.h" 43 44 #include "nouveau_fence.h" 45 46 #include <nvif/cl0046.h> 47 #include <nvif/event.h> 48 49 static int 50 nouveau_display_vblank_handler(struct nvif_notify *notify) 51 { 52 struct nouveau_crtc *nv_crtc = 53 container_of(notify, typeof(*nv_crtc), vblank); 54 drm_crtc_handle_vblank(&nv_crtc->base); 55 return NVIF_NOTIFY_KEEP; 56 } 57 58 int 59 nouveau_display_vblank_enable(struct drm_device *dev, unsigned int pipe) 60 { 61 struct drm_crtc *crtc; 62 struct nouveau_crtc *nv_crtc; 63 64 crtc = drm_crtc_from_index(dev, pipe); 65 if (!crtc) 66 return -EINVAL; 67 68 nv_crtc = nouveau_crtc(crtc); 69 nvif_notify_get(&nv_crtc->vblank); 70 71 return 0; 72 } 73 74 void 75 nouveau_display_vblank_disable(struct drm_device *dev, unsigned int pipe) 76 { 77 struct drm_crtc *crtc; 78 struct nouveau_crtc *nv_crtc; 79 80 crtc = drm_crtc_from_index(dev, pipe); 81 if (!crtc) 82 return; 83 84 nv_crtc = nouveau_crtc(crtc); 85 nvif_notify_put(&nv_crtc->vblank); 86 } 87 88 static inline int 89 calc(int blanks, int blanke, int total, int line) 90 { 91 if (blanke >= blanks) { 92 if (line >= blanks) 93 line -= total; 94 } else { 95 if (line >= blanks) 96 line -= total; 97 line -= blanke + 1; 98 } 99 return line; 100 } 101 102 static bool 103 nouveau_display_scanoutpos_head(struct drm_crtc *crtc, int *vpos, int *hpos, 104 ktime_t *stime, ktime_t *etime) 105 { 106 struct { 107 struct nv04_disp_mthd_v0 base; 108 struct nv04_disp_scanoutpos_v0 scan; 109 } args = { 110 .base.method = NV04_DISP_SCANOUTPOS, 111 .base.head = nouveau_crtc(crtc)->index, 112 }; 113 struct nouveau_display *disp = nouveau_display(crtc->dev); 114 struct drm_vblank_crtc *vblank = &crtc->dev->vblank[drm_crtc_index(crtc)]; 115 int retry = 20; 116 bool ret = false; 117 118 do { 119 ret = nvif_mthd(&disp->disp.object, 0, &args, sizeof(args)); 120 if (ret != 0) 121 return false; 122 123 if (args.scan.vline) { 124 ret = true; 125 break; 126 } 127 128 if (retry) ndelay(vblank->linedur_ns); 129 } while (retry--); 130 131 *hpos = args.scan.hline; 132 *vpos = calc(args.scan.vblanks, args.scan.vblanke, 133 args.scan.vtotal, args.scan.vline); 134 if (stime) *stime = ns_to_ktime(args.scan.time[0]); 135 if (etime) *etime = ns_to_ktime(args.scan.time[1]); 136 137 return ret; 138 } 139 140 bool 141 nouveau_display_scanoutpos(struct drm_device *dev, unsigned int pipe, 142 bool in_vblank_irq, int *vpos, int *hpos, 143 ktime_t *stime, ktime_t *etime, 144 const struct drm_display_mode *mode) 145 { 146 struct drm_crtc *crtc; 147 148 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { 149 if (nouveau_crtc(crtc)->index == pipe) { 150 return nouveau_display_scanoutpos_head(crtc, vpos, hpos, 151 stime, etime); 152 } 153 } 154 155 return false; 156 } 157 158 static void 159 nouveau_display_vblank_fini(struct drm_device *dev) 160 { 161 struct drm_crtc *crtc; 162 163 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { 164 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); 165 nvif_notify_fini(&nv_crtc->vblank); 166 } 167 } 168 169 static int 170 nouveau_display_vblank_init(struct drm_device *dev) 171 { 172 struct nouveau_display *disp = nouveau_display(dev); 173 struct drm_crtc *crtc; 174 int ret; 175 176 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { 177 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); 178 ret = nvif_notify_init(&disp->disp.object, 179 nouveau_display_vblank_handler, false, 180 NV04_DISP_NTFY_VBLANK, 181 &(struct nvif_notify_head_req_v0) { 182 .head = nv_crtc->index, 183 }, 184 sizeof(struct nvif_notify_head_req_v0), 185 sizeof(struct nvif_notify_head_rep_v0), 186 &nv_crtc->vblank); 187 if (ret) { 188 nouveau_display_vblank_fini(dev); 189 return ret; 190 } 191 } 192 193 ret = drm_vblank_init(dev, dev->mode_config.num_crtc); 194 if (ret) { 195 nouveau_display_vblank_fini(dev); 196 return ret; 197 } 198 199 return 0; 200 } 201 202 static void 203 nouveau_user_framebuffer_destroy(struct drm_framebuffer *drm_fb) 204 { 205 struct nouveau_framebuffer *fb = nouveau_framebuffer(drm_fb); 206 207 if (fb->nvbo) 208 drm_gem_object_unreference_unlocked(&fb->nvbo->gem); 209 210 drm_framebuffer_cleanup(drm_fb); 211 kfree(fb); 212 } 213 214 static int 215 nouveau_user_framebuffer_create_handle(struct drm_framebuffer *drm_fb, 216 struct drm_file *file_priv, 217 unsigned int *handle) 218 { 219 struct nouveau_framebuffer *fb = nouveau_framebuffer(drm_fb); 220 221 return drm_gem_handle_create(file_priv, &fb->nvbo->gem, handle); 222 } 223 224 static const struct drm_framebuffer_funcs nouveau_framebuffer_funcs = { 225 .destroy = nouveau_user_framebuffer_destroy, 226 .create_handle = nouveau_user_framebuffer_create_handle, 227 }; 228 229 int 230 nouveau_framebuffer_new(struct drm_device *dev, 231 const struct drm_mode_fb_cmd2 *mode_cmd, 232 struct nouveau_bo *nvbo, 233 struct nouveau_framebuffer **pfb) 234 { 235 struct nouveau_drm *drm = nouveau_drm(dev); 236 struct nouveau_framebuffer *fb; 237 int ret; 238 239 /* YUV overlays have special requirements pre-NV50 */ 240 if (drm->client.device.info.family < NV_DEVICE_INFO_V0_TESLA && 241 242 (mode_cmd->pixel_format == DRM_FORMAT_YUYV || 243 mode_cmd->pixel_format == DRM_FORMAT_UYVY || 244 mode_cmd->pixel_format == DRM_FORMAT_NV12 || 245 mode_cmd->pixel_format == DRM_FORMAT_NV21) && 246 (mode_cmd->pitches[0] & 0x3f || /* align 64 */ 247 mode_cmd->pitches[0] >= 0x10000 || /* at most 64k pitch */ 248 (mode_cmd->pitches[1] && /* pitches for planes must match */ 249 mode_cmd->pitches[0] != mode_cmd->pitches[1]))) { 250 struct drm_format_name_buf format_name; 251 DRM_DEBUG_KMS("Unsuitable framebuffer: format: %s; pitches: 0x%x\n 0x%x\n", 252 drm_get_format_name(mode_cmd->pixel_format, 253 &format_name), 254 mode_cmd->pitches[0], 255 mode_cmd->pitches[1]); 256 return -EINVAL; 257 } 258 259 if (!(fb = *pfb = kzalloc(sizeof(*fb), GFP_KERNEL))) 260 return -ENOMEM; 261 262 drm_helper_mode_fill_fb_struct(dev, &fb->base, mode_cmd); 263 fb->nvbo = nvbo; 264 265 ret = drm_framebuffer_init(dev, &fb->base, &nouveau_framebuffer_funcs); 266 if (ret) 267 kfree(fb); 268 return ret; 269 } 270 271 struct drm_framebuffer * 272 nouveau_user_framebuffer_create(struct drm_device *dev, 273 struct drm_file *file_priv, 274 const struct drm_mode_fb_cmd2 *mode_cmd) 275 { 276 struct nouveau_framebuffer *fb; 277 struct nouveau_bo *nvbo; 278 struct drm_gem_object *gem; 279 int ret; 280 281 gem = drm_gem_object_lookup(file_priv, mode_cmd->handles[0]); 282 if (!gem) 283 return ERR_PTR(-ENOENT); 284 nvbo = nouveau_gem_object(gem); 285 286 ret = nouveau_framebuffer_new(dev, mode_cmd, nvbo, &fb); 287 if (ret == 0) 288 return &fb->base; 289 290 drm_gem_object_unreference_unlocked(gem); 291 return ERR_PTR(ret); 292 } 293 294 static const struct drm_mode_config_funcs nouveau_mode_config_funcs = { 295 .fb_create = nouveau_user_framebuffer_create, 296 .output_poll_changed = drm_fb_helper_output_poll_changed, 297 }; 298 299 300 struct nouveau_drm_prop_enum_list { 301 u8 gen_mask; 302 int type; 303 char *name; 304 }; 305 306 static struct nouveau_drm_prop_enum_list underscan[] = { 307 { 6, UNDERSCAN_AUTO, "auto" }, 308 { 6, UNDERSCAN_OFF, "off" }, 309 { 6, UNDERSCAN_ON, "on" }, 310 {} 311 }; 312 313 static struct nouveau_drm_prop_enum_list dither_mode[] = { 314 { 7, DITHERING_MODE_AUTO, "auto" }, 315 { 7, DITHERING_MODE_OFF, "off" }, 316 { 1, DITHERING_MODE_ON, "on" }, 317 { 6, DITHERING_MODE_STATIC2X2, "static 2x2" }, 318 { 6, DITHERING_MODE_DYNAMIC2X2, "dynamic 2x2" }, 319 { 4, DITHERING_MODE_TEMPORAL, "temporal" }, 320 {} 321 }; 322 323 static struct nouveau_drm_prop_enum_list dither_depth[] = { 324 { 6, DITHERING_DEPTH_AUTO, "auto" }, 325 { 6, DITHERING_DEPTH_6BPC, "6 bpc" }, 326 { 6, DITHERING_DEPTH_8BPC, "8 bpc" }, 327 {} 328 }; 329 330 #define PROP_ENUM(p,gen,n,list) do { \ 331 struct nouveau_drm_prop_enum_list *l = (list); \ 332 int c = 0; \ 333 while (l->gen_mask) { \ 334 if (l->gen_mask & (1 << (gen))) \ 335 c++; \ 336 l++; \ 337 } \ 338 if (c) { \ 339 p = drm_property_create(dev, DRM_MODE_PROP_ENUM, n, c); \ 340 l = (list); \ 341 while (p && l->gen_mask) { \ 342 if (l->gen_mask & (1 << (gen))) { \ 343 drm_property_add_enum(p, l->type, l->name); \ 344 } \ 345 l++; \ 346 } \ 347 } \ 348 } while(0) 349 350 static void 351 nouveau_display_hpd_work(struct work_struct *work) 352 { 353 struct nouveau_drm *drm = container_of(work, typeof(*drm), hpd_work); 354 355 pm_runtime_get_sync(drm->dev->dev); 356 357 drm_helper_hpd_irq_event(drm->dev); 358 /* enable polling for external displays */ 359 drm_kms_helper_poll_enable(drm->dev); 360 361 pm_runtime_mark_last_busy(drm->dev->dev); 362 pm_runtime_put_sync(drm->dev->dev); 363 } 364 365 #ifdef CONFIG_ACPI 366 367 /* 368 * Hans de Goede: This define belongs in acpi/video.h, I've submitted a patch 369 * to the acpi subsys to move it there from drivers/acpi/acpi_video.c . 370 * This should be dropped once that is merged. 371 */ 372 #ifndef ACPI_VIDEO_NOTIFY_PROBE 373 #define ACPI_VIDEO_NOTIFY_PROBE 0x81 374 #endif 375 376 static int 377 nouveau_display_acpi_ntfy(struct notifier_block *nb, unsigned long val, 378 void *data) 379 { 380 struct nouveau_drm *drm = container_of(nb, typeof(*drm), acpi_nb); 381 struct acpi_bus_event *info = data; 382 383 if (!strcmp(info->device_class, ACPI_VIDEO_CLASS)) { 384 if (info->type == ACPI_VIDEO_NOTIFY_PROBE) { 385 /* 386 * This may be the only indication we receive of a 387 * connector hotplug on a runtime suspended GPU, 388 * schedule hpd_work to check. 389 */ 390 schedule_work(&drm->hpd_work); 391 392 /* acpi-video should not generate keypresses for this */ 393 return NOTIFY_BAD; 394 } 395 } 396 397 return NOTIFY_DONE; 398 } 399 #endif 400 401 int 402 nouveau_display_init(struct drm_device *dev) 403 { 404 struct nouveau_display *disp = nouveau_display(dev); 405 struct nouveau_drm *drm = nouveau_drm(dev); 406 struct drm_connector *connector; 407 struct drm_connector_list_iter conn_iter; 408 int ret; 409 410 ret = disp->init(dev); 411 if (ret) 412 return ret; 413 414 /* enable hotplug interrupts */ 415 drm_connector_list_iter_begin(dev, &conn_iter); 416 nouveau_for_each_non_mst_connector_iter(connector, &conn_iter) { 417 struct nouveau_connector *conn = nouveau_connector(connector); 418 nvif_notify_get(&conn->hpd); 419 } 420 drm_connector_list_iter_end(&conn_iter); 421 422 /* enable flip completion events */ 423 nvif_notify_get(&drm->flip); 424 return ret; 425 } 426 427 void 428 nouveau_display_fini(struct drm_device *dev, bool suspend) 429 { 430 struct nouveau_display *disp = nouveau_display(dev); 431 struct nouveau_drm *drm = nouveau_drm(dev); 432 struct drm_connector *connector; 433 struct drm_connector_list_iter conn_iter; 434 435 if (!suspend) { 436 if (drm_drv_uses_atomic_modeset(dev)) 437 drm_atomic_helper_shutdown(dev); 438 else 439 drm_crtc_force_disable_all(dev); 440 } 441 442 /* disable flip completion events */ 443 nvif_notify_put(&drm->flip); 444 445 /* disable hotplug interrupts */ 446 drm_connector_list_iter_begin(dev, &conn_iter); 447 nouveau_for_each_non_mst_connector_iter(connector, &conn_iter) { 448 struct nouveau_connector *conn = nouveau_connector(connector); 449 nvif_notify_put(&conn->hpd); 450 } 451 drm_connector_list_iter_end(&conn_iter); 452 453 drm_kms_helper_poll_disable(dev); 454 disp->fini(dev); 455 } 456 457 static void 458 nouveau_display_create_properties(struct drm_device *dev) 459 { 460 struct nouveau_display *disp = nouveau_display(dev); 461 int gen; 462 463 if (disp->disp.object.oclass < NV50_DISP) 464 gen = 0; 465 else 466 if (disp->disp.object.oclass < GF110_DISP) 467 gen = 1; 468 else 469 gen = 2; 470 471 PROP_ENUM(disp->dithering_mode, gen, "dithering mode", dither_mode); 472 PROP_ENUM(disp->dithering_depth, gen, "dithering depth", dither_depth); 473 PROP_ENUM(disp->underscan_property, gen, "underscan", underscan); 474 475 disp->underscan_hborder_property = 476 drm_property_create_range(dev, 0, "underscan hborder", 0, 128); 477 478 disp->underscan_vborder_property = 479 drm_property_create_range(dev, 0, "underscan vborder", 0, 128); 480 481 if (gen < 1) 482 return; 483 484 /* -90..+90 */ 485 disp->vibrant_hue_property = 486 drm_property_create_range(dev, 0, "vibrant hue", 0, 180); 487 488 /* -100..+100 */ 489 disp->color_vibrance_property = 490 drm_property_create_range(dev, 0, "color vibrance", 0, 200); 491 } 492 493 int 494 nouveau_display_create(struct drm_device *dev) 495 { 496 struct nouveau_drm *drm = nouveau_drm(dev); 497 struct nvkm_device *device = nvxx_device(&drm->client.device); 498 struct nouveau_display *disp; 499 int ret; 500 501 disp = drm->display = kzalloc(sizeof(*disp), GFP_KERNEL); 502 if (!disp) 503 return -ENOMEM; 504 505 drm_mode_config_init(dev); 506 drm_mode_create_scaling_mode_property(dev); 507 drm_mode_create_dvi_i_properties(dev); 508 509 dev->mode_config.funcs = &nouveau_mode_config_funcs; 510 dev->mode_config.fb_base = device->func->resource_addr(device, 1); 511 512 dev->mode_config.min_width = 0; 513 dev->mode_config.min_height = 0; 514 if (drm->client.device.info.family < NV_DEVICE_INFO_V0_CELSIUS) { 515 dev->mode_config.max_width = 2048; 516 dev->mode_config.max_height = 2048; 517 } else 518 if (drm->client.device.info.family < NV_DEVICE_INFO_V0_TESLA) { 519 dev->mode_config.max_width = 4096; 520 dev->mode_config.max_height = 4096; 521 } else 522 if (drm->client.device.info.family < NV_DEVICE_INFO_V0_FERMI) { 523 dev->mode_config.max_width = 8192; 524 dev->mode_config.max_height = 8192; 525 } else { 526 dev->mode_config.max_width = 16384; 527 dev->mode_config.max_height = 16384; 528 } 529 530 dev->mode_config.preferred_depth = 24; 531 dev->mode_config.prefer_shadow = 1; 532 533 if (drm->client.device.info.chipset < 0x11) 534 dev->mode_config.async_page_flip = false; 535 else 536 dev->mode_config.async_page_flip = true; 537 538 drm_kms_helper_poll_init(dev); 539 drm_kms_helper_poll_disable(dev); 540 541 if (nouveau_modeset != 2 && drm->vbios.dcb.entries) { 542 ret = nvif_disp_ctor(&drm->client.device, 0, &disp->disp); 543 if (ret == 0) { 544 nouveau_display_create_properties(dev); 545 if (disp->disp.object.oclass < NV50_DISP) 546 ret = nv04_display_create(dev); 547 else 548 ret = nv50_display_create(dev); 549 } 550 } else { 551 ret = 0; 552 } 553 554 if (ret) 555 goto disp_create_err; 556 557 drm_mode_config_reset(dev); 558 559 if (dev->mode_config.num_crtc) { 560 ret = nouveau_display_vblank_init(dev); 561 if (ret) 562 goto vblank_err; 563 } 564 565 nouveau_backlight_init(dev); 566 INIT_WORK(&drm->hpd_work, nouveau_display_hpd_work); 567 #ifdef CONFIG_ACPI 568 drm->acpi_nb.notifier_call = nouveau_display_acpi_ntfy; 569 register_acpi_notifier(&drm->acpi_nb); 570 #endif 571 572 return 0; 573 574 vblank_err: 575 disp->dtor(dev); 576 disp_create_err: 577 drm_kms_helper_poll_fini(dev); 578 drm_mode_config_cleanup(dev); 579 return ret; 580 } 581 582 void 583 nouveau_display_destroy(struct drm_device *dev) 584 { 585 struct nouveau_display *disp = nouveau_display(dev); 586 587 #ifdef CONFIG_ACPI 588 unregister_acpi_notifier(&nouveau_drm(dev)->acpi_nb); 589 #endif 590 nouveau_backlight_exit(dev); 591 nouveau_display_vblank_fini(dev); 592 593 drm_kms_helper_poll_fini(dev); 594 drm_mode_config_cleanup(dev); 595 596 if (disp->dtor) 597 disp->dtor(dev); 598 599 nvif_disp_dtor(&disp->disp); 600 601 nouveau_drm(dev)->display = NULL; 602 kfree(disp); 603 } 604 605 int 606 nouveau_display_suspend(struct drm_device *dev, bool runtime) 607 { 608 struct nouveau_display *disp = nouveau_display(dev); 609 struct drm_crtc *crtc; 610 611 if (drm_drv_uses_atomic_modeset(dev)) { 612 if (!runtime) { 613 disp->suspend = drm_atomic_helper_suspend(dev); 614 if (IS_ERR(disp->suspend)) { 615 int ret = PTR_ERR(disp->suspend); 616 disp->suspend = NULL; 617 return ret; 618 } 619 } 620 621 nouveau_display_fini(dev, true); 622 return 0; 623 } 624 625 nouveau_display_fini(dev, true); 626 627 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { 628 struct nouveau_framebuffer *nouveau_fb; 629 630 nouveau_fb = nouveau_framebuffer(crtc->primary->fb); 631 if (!nouveau_fb || !nouveau_fb->nvbo) 632 continue; 633 634 nouveau_bo_unpin(nouveau_fb->nvbo); 635 } 636 637 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { 638 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); 639 if (nv_crtc->cursor.nvbo) { 640 if (nv_crtc->cursor.set_offset) 641 nouveau_bo_unmap(nv_crtc->cursor.nvbo); 642 nouveau_bo_unpin(nv_crtc->cursor.nvbo); 643 } 644 } 645 646 return 0; 647 } 648 649 void 650 nouveau_display_resume(struct drm_device *dev, bool runtime) 651 { 652 struct nouveau_display *disp = nouveau_display(dev); 653 struct nouveau_drm *drm = nouveau_drm(dev); 654 struct drm_crtc *crtc; 655 int ret; 656 657 if (drm_drv_uses_atomic_modeset(dev)) { 658 nouveau_display_init(dev); 659 if (disp->suspend) { 660 drm_atomic_helper_resume(dev, disp->suspend); 661 disp->suspend = NULL; 662 } 663 return; 664 } 665 666 /* re-pin fb/cursors */ 667 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { 668 struct nouveau_framebuffer *nouveau_fb; 669 670 nouveau_fb = nouveau_framebuffer(crtc->primary->fb); 671 if (!nouveau_fb || !nouveau_fb->nvbo) 672 continue; 673 674 ret = nouveau_bo_pin(nouveau_fb->nvbo, TTM_PL_FLAG_VRAM, true); 675 if (ret) 676 NV_ERROR(drm, "Could not pin framebuffer\n"); 677 } 678 679 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { 680 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); 681 if (!nv_crtc->cursor.nvbo) 682 continue; 683 684 ret = nouveau_bo_pin(nv_crtc->cursor.nvbo, TTM_PL_FLAG_VRAM, true); 685 if (!ret && nv_crtc->cursor.set_offset) 686 ret = nouveau_bo_map(nv_crtc->cursor.nvbo); 687 if (ret) 688 NV_ERROR(drm, "Could not pin/map cursor.\n"); 689 } 690 691 nouveau_display_init(dev); 692 693 /* Force CLUT to get re-loaded during modeset */ 694 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { 695 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); 696 697 nv_crtc->lut.depth = 0; 698 } 699 700 /* This should ensure we don't hit a locking problem when someone 701 * wakes us up via a connector. We should never go into suspend 702 * while the display is on anyways. 703 */ 704 if (runtime) 705 return; 706 707 drm_helper_resume_force_mode(dev); 708 709 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) { 710 struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc); 711 712 if (!nv_crtc->cursor.nvbo) 713 continue; 714 715 if (nv_crtc->cursor.set_offset) 716 nv_crtc->cursor.set_offset(nv_crtc, nv_crtc->cursor.nvbo->bo.offset); 717 nv_crtc->cursor.set_pos(nv_crtc, nv_crtc->cursor_saved_x, 718 nv_crtc->cursor_saved_y); 719 } 720 } 721 722 static int 723 nouveau_page_flip_emit(struct nouveau_channel *chan, 724 struct nouveau_bo *old_bo, 725 struct nouveau_bo *new_bo, 726 struct nouveau_page_flip_state *s, 727 struct nouveau_fence **pfence) 728 { 729 struct nouveau_fence_chan *fctx = chan->fence; 730 struct nouveau_drm *drm = chan->drm; 731 struct drm_device *dev = drm->dev; 732 unsigned long flags; 733 int ret; 734 735 /* Queue it to the pending list */ 736 spin_lock_irqsave(&dev->event_lock, flags); 737 list_add_tail(&s->head, &fctx->flip); 738 spin_unlock_irqrestore(&dev->event_lock, flags); 739 740 /* Synchronize with the old framebuffer */ 741 ret = nouveau_fence_sync(old_bo, chan, false, false); 742 if (ret) 743 goto fail; 744 745 /* Emit the pageflip */ 746 ret = RING_SPACE(chan, 2); 747 if (ret) 748 goto fail; 749 750 BEGIN_NV04(chan, NvSubSw, NV_SW_PAGE_FLIP, 1); 751 OUT_RING (chan, 0x00000000); 752 FIRE_RING (chan); 753 754 ret = nouveau_fence_new(chan, false, pfence); 755 if (ret) 756 goto fail; 757 758 return 0; 759 fail: 760 spin_lock_irqsave(&dev->event_lock, flags); 761 list_del(&s->head); 762 spin_unlock_irqrestore(&dev->event_lock, flags); 763 return ret; 764 } 765 766 int 767 nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb, 768 struct drm_pending_vblank_event *event, u32 flags, 769 struct drm_modeset_acquire_ctx *ctx) 770 { 771 const int swap_interval = (flags & DRM_MODE_PAGE_FLIP_ASYNC) ? 0 : 1; 772 struct drm_device *dev = crtc->dev; 773 struct nouveau_drm *drm = nouveau_drm(dev); 774 struct nouveau_bo *old_bo = nouveau_framebuffer(crtc->primary->fb)->nvbo; 775 struct nouveau_bo *new_bo = nouveau_framebuffer(fb)->nvbo; 776 struct nouveau_page_flip_state *s; 777 struct nouveau_channel *chan; 778 struct nouveau_cli *cli; 779 struct nouveau_fence *fence; 780 struct nv04_display *dispnv04 = nv04_display(dev); 781 int head = nouveau_crtc(crtc)->index; 782 int ret; 783 784 chan = drm->channel; 785 if (!chan) 786 return -ENODEV; 787 cli = (void *)chan->user.client; 788 789 s = kzalloc(sizeof(*s), GFP_KERNEL); 790 if (!s) 791 return -ENOMEM; 792 793 if (new_bo != old_bo) { 794 ret = nouveau_bo_pin(new_bo, TTM_PL_FLAG_VRAM, true); 795 if (ret) 796 goto fail_free; 797 } 798 799 mutex_lock(&cli->mutex); 800 ret = ttm_bo_reserve(&new_bo->bo, true, false, NULL); 801 if (ret) 802 goto fail_unpin; 803 804 /* synchronise rendering channel with the kernel's channel */ 805 ret = nouveau_fence_sync(new_bo, chan, false, true); 806 if (ret) { 807 ttm_bo_unreserve(&new_bo->bo); 808 goto fail_unpin; 809 } 810 811 if (new_bo != old_bo) { 812 ttm_bo_unreserve(&new_bo->bo); 813 814 ret = ttm_bo_reserve(&old_bo->bo, true, false, NULL); 815 if (ret) 816 goto fail_unpin; 817 } 818 819 /* Initialize a page flip struct */ 820 *s = (struct nouveau_page_flip_state) 821 { { }, event, crtc, fb->format->cpp[0] * 8, fb->pitches[0], 822 new_bo->bo.offset }; 823 824 /* Keep vblanks on during flip, for the target crtc of this flip */ 825 drm_crtc_vblank_get(crtc); 826 827 /* Emit a page flip */ 828 if (swap_interval) { 829 ret = RING_SPACE(chan, 8); 830 if (ret) 831 goto fail_unreserve; 832 833 BEGIN_NV04(chan, NvSubImageBlit, 0x012c, 1); 834 OUT_RING (chan, 0); 835 BEGIN_NV04(chan, NvSubImageBlit, 0x0134, 1); 836 OUT_RING (chan, head); 837 BEGIN_NV04(chan, NvSubImageBlit, 0x0100, 1); 838 OUT_RING (chan, 0); 839 BEGIN_NV04(chan, NvSubImageBlit, 0x0130, 1); 840 OUT_RING (chan, 0); 841 } 842 843 nouveau_bo_ref(new_bo, &dispnv04->image[head]); 844 845 ret = nouveau_page_flip_emit(chan, old_bo, new_bo, s, &fence); 846 if (ret) 847 goto fail_unreserve; 848 mutex_unlock(&cli->mutex); 849 850 /* Update the crtc struct and cleanup */ 851 crtc->primary->fb = fb; 852 853 nouveau_bo_fence(old_bo, fence, false); 854 ttm_bo_unreserve(&old_bo->bo); 855 if (old_bo != new_bo) 856 nouveau_bo_unpin(old_bo); 857 nouveau_fence_unref(&fence); 858 return 0; 859 860 fail_unreserve: 861 drm_crtc_vblank_put(crtc); 862 ttm_bo_unreserve(&old_bo->bo); 863 fail_unpin: 864 mutex_unlock(&cli->mutex); 865 if (old_bo != new_bo) 866 nouveau_bo_unpin(new_bo); 867 fail_free: 868 kfree(s); 869 return ret; 870 } 871 872 int 873 nouveau_finish_page_flip(struct nouveau_channel *chan, 874 struct nouveau_page_flip_state *ps) 875 { 876 struct nouveau_fence_chan *fctx = chan->fence; 877 struct nouveau_drm *drm = chan->drm; 878 struct drm_device *dev = drm->dev; 879 struct nouveau_page_flip_state *s; 880 unsigned long flags; 881 882 spin_lock_irqsave(&dev->event_lock, flags); 883 884 if (list_empty(&fctx->flip)) { 885 NV_ERROR(drm, "unexpected pageflip\n"); 886 spin_unlock_irqrestore(&dev->event_lock, flags); 887 return -EINVAL; 888 } 889 890 s = list_first_entry(&fctx->flip, struct nouveau_page_flip_state, head); 891 if (s->event) { 892 drm_crtc_arm_vblank_event(s->crtc, s->event); 893 } else { 894 /* Give up ownership of vblank for page-flipped crtc */ 895 drm_crtc_vblank_put(s->crtc); 896 } 897 898 list_del(&s->head); 899 if (ps) 900 *ps = *s; 901 kfree(s); 902 903 spin_unlock_irqrestore(&dev->event_lock, flags); 904 return 0; 905 } 906 907 int 908 nouveau_flip_complete(struct nvif_notify *notify) 909 { 910 struct nouveau_drm *drm = container_of(notify, typeof(*drm), flip); 911 struct nouveau_channel *chan = drm->channel; 912 struct nouveau_page_flip_state state; 913 914 if (!nouveau_finish_page_flip(chan, &state)) { 915 nv_set_crtc_base(drm->dev, drm_crtc_index(state.crtc), 916 state.offset + state.crtc->y * 917 state.pitch + state.crtc->x * 918 state.bpp / 8); 919 } 920 921 return NVIF_NOTIFY_KEEP; 922 } 923 924 int 925 nouveau_display_dumb_create(struct drm_file *file_priv, struct drm_device *dev, 926 struct drm_mode_create_dumb *args) 927 { 928 struct nouveau_cli *cli = nouveau_cli(file_priv); 929 struct nouveau_bo *bo; 930 uint32_t domain; 931 int ret; 932 933 args->pitch = roundup(args->width * (args->bpp / 8), 256); 934 args->size = args->pitch * args->height; 935 args->size = roundup(args->size, PAGE_SIZE); 936 937 /* Use VRAM if there is any ; otherwise fallback to system memory */ 938 if (nouveau_drm(dev)->client.device.info.ram_size != 0) 939 domain = NOUVEAU_GEM_DOMAIN_VRAM; 940 else 941 domain = NOUVEAU_GEM_DOMAIN_GART; 942 943 ret = nouveau_gem_new(cli, args->size, 0, domain, 0, 0, &bo); 944 if (ret) 945 return ret; 946 947 ret = drm_gem_handle_create(file_priv, &bo->gem, &args->handle); 948 drm_gem_object_unreference_unlocked(&bo->gem); 949 return ret; 950 } 951 952 int 953 nouveau_display_dumb_map_offset(struct drm_file *file_priv, 954 struct drm_device *dev, 955 uint32_t handle, uint64_t *poffset) 956 { 957 struct drm_gem_object *gem; 958 959 gem = drm_gem_object_lookup(file_priv, handle); 960 if (gem) { 961 struct nouveau_bo *bo = nouveau_gem_object(gem); 962 *poffset = drm_vma_node_offset_addr(&bo->bo.vma_node); 963 drm_gem_object_unreference_unlocked(gem); 964 return 0; 965 } 966 967 return -ENOENT; 968 } 969