1 /* 2 * Copyright (C) 2014 Red Hat 3 * Copyright (C) 2014 Intel Corp. 4 * Copyright (c) 2020-2021, The Linux Foundation. All rights reserved. 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the "Software"), 8 * to deal in the Software without restriction, including without limitation 9 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 * and/or sell copies of the Software, and to permit persons to whom the 11 * Software is furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 * OTHER DEALINGS IN THE SOFTWARE. 23 * 24 * Authors: 25 * Rob Clark <robdclark@gmail.com> 26 * Daniel Vetter <daniel.vetter@ffwll.ch> 27 */ 28 29 #include <linux/export.h> 30 #include <linux/sync_file.h> 31 32 #include <drm/drm_atomic.h> 33 #include <drm/drm_atomic_uapi.h> 34 #include <drm/drm_blend.h> 35 #include <drm/drm_bridge.h> 36 #include <drm/drm_debugfs.h> 37 #include <drm/drm_device.h> 38 #include <drm/drm_drv.h> 39 #include <drm/drm_file.h> 40 #include <drm/drm_fourcc.h> 41 #include <drm/drm_framebuffer.h> 42 #include <drm/drm_mode.h> 43 #include <drm/drm_print.h> 44 #include <drm/drm_writeback.h> 45 #include <drm/drm_colorop.h> 46 47 #include "drm_crtc_internal.h" 48 #include "drm_internal.h" 49 50 void __drm_crtc_commit_free(struct kref *kref) 51 { 52 struct drm_crtc_commit *commit = 53 container_of(kref, struct drm_crtc_commit, ref); 54 55 kfree(commit); 56 } 57 EXPORT_SYMBOL(__drm_crtc_commit_free); 58 59 /** 60 * drm_crtc_commit_wait - Waits for a commit to complete 61 * @commit: &drm_crtc_commit to wait for 62 * 63 * Waits for a given &drm_crtc_commit to be programmed into the 64 * hardware and flipped to. 65 * 66 * Returns: 67 * 0 on success, a negative error code otherwise. 68 */ 69 int drm_crtc_commit_wait(struct drm_crtc_commit *commit) 70 { 71 unsigned long timeout = 10 * HZ; 72 int ret; 73 74 if (!commit) 75 return 0; 76 77 ret = wait_for_completion_timeout(&commit->hw_done, timeout); 78 if (!ret) { 79 drm_err(commit->crtc->dev, "hw_done timed out\n"); 80 return -ETIMEDOUT; 81 } 82 83 /* 84 * Currently no support for overwriting flips, hence 85 * stall for previous one to execute completely. 86 */ 87 ret = wait_for_completion_timeout(&commit->flip_done, timeout); 88 if (!ret) { 89 drm_err(commit->crtc->dev, "flip_done timed out\n"); 90 return -ETIMEDOUT; 91 } 92 93 return 0; 94 } 95 EXPORT_SYMBOL(drm_crtc_commit_wait); 96 97 /** 98 * drm_atomic_state_default_release - 99 * release memory initialized by drm_atomic_state_init 100 * @state: atomic state 101 * 102 * Free all the memory allocated by drm_atomic_state_init. 103 * This should only be used by drivers which are still subclassing 104 * &drm_atomic_state and haven't switched to &drm_private_state yet. 105 */ 106 void drm_atomic_state_default_release(struct drm_atomic_state *state) 107 { 108 kfree(state->connectors); 109 kfree(state->crtcs); 110 kfree(state->planes); 111 kfree(state->colorops); 112 kfree(state->private_objs); 113 } 114 EXPORT_SYMBOL(drm_atomic_state_default_release); 115 116 /** 117 * drm_atomic_state_init - init new atomic state 118 * @dev: DRM device 119 * @state: atomic state 120 * 121 * Default implementation for filling in a new atomic state. 122 * This should only be used by drivers which are still subclassing 123 * &drm_atomic_state and haven't switched to &drm_private_state yet. 124 */ 125 int 126 drm_atomic_state_init(struct drm_device *dev, struct drm_atomic_state *state) 127 { 128 kref_init(&state->ref); 129 130 /* TODO legacy paths should maybe do a better job about 131 * setting this appropriately? 132 */ 133 state->allow_modeset = true; 134 135 state->crtcs = kzalloc_objs(*state->crtcs, dev->mode_config.num_crtc); 136 if (!state->crtcs) 137 goto fail; 138 state->planes = kzalloc_objs(*state->planes, 139 dev->mode_config.num_total_plane); 140 if (!state->planes) 141 goto fail; 142 state->colorops = kzalloc_objs(*state->colorops, 143 dev->mode_config.num_colorop); 144 if (!state->colorops) 145 goto fail; 146 147 /* 148 * Because drm_atomic_state can be committed asynchronously we need our 149 * own reference and cannot rely on the on implied by drm_file in the 150 * ioctl call. 151 */ 152 drm_dev_get(dev); 153 state->dev = dev; 154 155 drm_dbg_atomic(dev, "Allocated atomic state %p\n", state); 156 157 return 0; 158 fail: 159 drm_atomic_state_default_release(state); 160 return -ENOMEM; 161 } 162 EXPORT_SYMBOL(drm_atomic_state_init); 163 164 /** 165 * drm_atomic_state_alloc - allocate atomic state 166 * @dev: DRM device 167 * 168 * This allocates an empty atomic state to track updates. 169 */ 170 struct drm_atomic_state * 171 drm_atomic_state_alloc(struct drm_device *dev) 172 { 173 struct drm_mode_config *config = &dev->mode_config; 174 175 if (!config->funcs->atomic_state_alloc) { 176 struct drm_atomic_state *state; 177 178 state = kzalloc_obj(*state); 179 if (!state) 180 return NULL; 181 if (drm_atomic_state_init(dev, state) < 0) { 182 kfree(state); 183 return NULL; 184 } 185 return state; 186 } 187 188 return config->funcs->atomic_state_alloc(dev); 189 } 190 EXPORT_SYMBOL(drm_atomic_state_alloc); 191 192 /** 193 * drm_atomic_state_default_clear - clear base atomic state 194 * @state: atomic state 195 * 196 * Default implementation for clearing atomic state. 197 * This should only be used by drivers which are still subclassing 198 * &drm_atomic_state and haven't switched to &drm_private_state yet. 199 */ 200 void drm_atomic_state_default_clear(struct drm_atomic_state *state) 201 { 202 struct drm_device *dev = state->dev; 203 struct drm_mode_config *config = &dev->mode_config; 204 int i; 205 206 drm_dbg_atomic(dev, "Clearing atomic state %p\n", state); 207 208 state->checked = false; 209 210 for (i = 0; i < state->num_connector; i++) { 211 struct drm_connector *connector = state->connectors[i].ptr; 212 213 if (!connector) 214 continue; 215 216 connector->funcs->atomic_destroy_state(connector, 217 state->connectors[i].state_to_destroy); 218 state->connectors[i].ptr = NULL; 219 state->connectors[i].state_to_destroy = NULL; 220 state->connectors[i].old_state = NULL; 221 state->connectors[i].new_state = NULL; 222 drm_connector_put(connector); 223 } 224 225 for (i = 0; i < config->num_crtc; i++) { 226 struct drm_crtc *crtc = state->crtcs[i].ptr; 227 228 if (!crtc) 229 continue; 230 231 crtc->funcs->atomic_destroy_state(crtc, 232 state->crtcs[i].state_to_destroy); 233 234 state->crtcs[i].ptr = NULL; 235 state->crtcs[i].state_to_destroy = NULL; 236 state->crtcs[i].old_state = NULL; 237 state->crtcs[i].new_state = NULL; 238 239 if (state->crtcs[i].commit) { 240 drm_crtc_commit_put(state->crtcs[i].commit); 241 state->crtcs[i].commit = NULL; 242 } 243 } 244 245 for (i = 0; i < config->num_total_plane; i++) { 246 struct drm_plane *plane = state->planes[i].ptr; 247 248 if (!plane) 249 continue; 250 251 plane->funcs->atomic_destroy_state(plane, 252 state->planes[i].state_to_destroy); 253 state->planes[i].ptr = NULL; 254 state->planes[i].state_to_destroy = NULL; 255 state->planes[i].old_state = NULL; 256 state->planes[i].new_state = NULL; 257 } 258 259 for (i = 0; i < config->num_colorop; i++) { 260 struct drm_colorop *colorop = state->colorops[i].ptr; 261 262 if (!colorop) 263 continue; 264 265 drm_colorop_atomic_destroy_state(colorop, 266 state->colorops[i].state); 267 state->colorops[i].ptr = NULL; 268 state->colorops[i].state = NULL; 269 state->colorops[i].old_state = NULL; 270 state->colorops[i].new_state = NULL; 271 } 272 273 for (i = 0; i < state->num_private_objs; i++) { 274 struct drm_private_obj *obj = state->private_objs[i].ptr; 275 276 obj->funcs->atomic_destroy_state(obj, 277 state->private_objs[i].state_to_destroy); 278 state->private_objs[i].ptr = NULL; 279 state->private_objs[i].state_to_destroy = NULL; 280 state->private_objs[i].old_state = NULL; 281 state->private_objs[i].new_state = NULL; 282 } 283 state->num_private_objs = 0; 284 285 if (state->fake_commit) { 286 drm_crtc_commit_put(state->fake_commit); 287 state->fake_commit = NULL; 288 } 289 } 290 EXPORT_SYMBOL(drm_atomic_state_default_clear); 291 292 /** 293 * drm_atomic_state_clear - clear state object 294 * @state: atomic state 295 * 296 * When the w/w mutex algorithm detects a deadlock we need to back off and drop 297 * all locks. So someone else could sneak in and change the current modeset 298 * configuration. Which means that all the state assembled in @state is no 299 * longer an atomic update to the current state, but to some arbitrary earlier 300 * state. Which could break assumptions the driver's 301 * &drm_mode_config_funcs.atomic_check likely relies on. 302 * 303 * Hence we must clear all cached state and completely start over, using this 304 * function. 305 */ 306 void drm_atomic_state_clear(struct drm_atomic_state *state) 307 { 308 struct drm_device *dev = state->dev; 309 struct drm_mode_config *config = &dev->mode_config; 310 311 if (config->funcs->atomic_state_clear) 312 config->funcs->atomic_state_clear(state); 313 else 314 drm_atomic_state_default_clear(state); 315 } 316 EXPORT_SYMBOL(drm_atomic_state_clear); 317 318 /** 319 * __drm_atomic_state_free - free all memory for an atomic state 320 * @ref: This atomic state to deallocate 321 * 322 * This frees all memory associated with an atomic state, including all the 323 * per-object state for planes, CRTCs and connectors. 324 */ 325 void __drm_atomic_state_free(struct kref *ref) 326 { 327 struct drm_atomic_state *state = container_of(ref, typeof(*state), ref); 328 struct drm_device *dev = state->dev; 329 struct drm_mode_config *config = &dev->mode_config; 330 331 drm_atomic_state_clear(state); 332 333 drm_dbg_atomic(state->dev, "Freeing atomic state %p\n", state); 334 335 if (config->funcs->atomic_state_free) { 336 config->funcs->atomic_state_free(state); 337 } else { 338 drm_atomic_state_default_release(state); 339 kfree(state); 340 } 341 342 drm_dev_put(dev); 343 } 344 EXPORT_SYMBOL(__drm_atomic_state_free); 345 346 /** 347 * drm_atomic_get_crtc_state - get CRTC state 348 * @state: global atomic state object 349 * @crtc: CRTC to get state object for 350 * 351 * This function returns the CRTC state for the given CRTC, allocating it if 352 * needed. It will also grab the relevant CRTC lock to make sure that the state 353 * is consistent. 354 * 355 * WARNING: Drivers may only add new CRTC states to a @state if 356 * drm_atomic_state.allow_modeset is set, or if it's a driver-internal commit 357 * not created by userspace through an IOCTL call. 358 * 359 * Returns: 360 * Either the allocated state or the error code encoded into the pointer. When 361 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the 362 * entire atomic sequence must be restarted. All other errors are fatal. 363 */ 364 struct drm_crtc_state * 365 drm_atomic_get_crtc_state(struct drm_atomic_state *state, 366 struct drm_crtc *crtc) 367 { 368 int ret, index = drm_crtc_index(crtc); 369 struct drm_crtc_state *crtc_state; 370 371 WARN_ON(!state->acquire_ctx); 372 drm_WARN_ON(state->dev, state->checked); 373 374 crtc_state = drm_atomic_get_new_crtc_state(state, crtc); 375 if (crtc_state) 376 return crtc_state; 377 378 ret = drm_modeset_lock(&crtc->mutex, state->acquire_ctx); 379 if (ret) 380 return ERR_PTR(ret); 381 382 crtc_state = crtc->funcs->atomic_duplicate_state(crtc); 383 if (!crtc_state) 384 return ERR_PTR(-ENOMEM); 385 386 state->crtcs[index].state_to_destroy = crtc_state; 387 state->crtcs[index].old_state = crtc->state; 388 state->crtcs[index].new_state = crtc_state; 389 state->crtcs[index].ptr = crtc; 390 crtc_state->state = state; 391 392 drm_dbg_atomic(state->dev, "Added [CRTC:%d:%s] %p state to %p\n", 393 crtc->base.id, crtc->name, crtc_state, state); 394 395 return crtc_state; 396 } 397 EXPORT_SYMBOL(drm_atomic_get_crtc_state); 398 399 static int drm_atomic_crtc_check(const struct drm_crtc_state *old_crtc_state, 400 const struct drm_crtc_state *new_crtc_state) 401 { 402 struct drm_crtc *crtc = new_crtc_state->crtc; 403 404 /* NOTE: we explicitly don't enforce constraints such as primary 405 * layer covering entire screen, since that is something we want 406 * to allow (on hw that supports it). For hw that does not, it 407 * should be checked in driver's crtc->atomic_check() vfunc. 408 * 409 * TODO: Add generic modeset state checks once we support those. 410 */ 411 412 if (new_crtc_state->active && !new_crtc_state->enable) { 413 drm_dbg_atomic(crtc->dev, 414 "[CRTC:%d:%s] active without enabled\n", 415 crtc->base.id, crtc->name); 416 return -EINVAL; 417 } 418 419 /* The state->enable vs. state->mode_blob checks can be WARN_ON, 420 * as this is a kernel-internal detail that userspace should never 421 * be able to trigger. 422 */ 423 if (drm_core_check_feature(crtc->dev, DRIVER_ATOMIC) && 424 WARN_ON(new_crtc_state->enable && !new_crtc_state->mode_blob)) { 425 drm_dbg_atomic(crtc->dev, 426 "[CRTC:%d:%s] enabled without mode blob\n", 427 crtc->base.id, crtc->name); 428 return -EINVAL; 429 } 430 431 if (drm_core_check_feature(crtc->dev, DRIVER_ATOMIC) && 432 WARN_ON(!new_crtc_state->enable && new_crtc_state->mode_blob)) { 433 drm_dbg_atomic(crtc->dev, 434 "[CRTC:%d:%s] disabled with mode blob\n", 435 crtc->base.id, crtc->name); 436 return -EINVAL; 437 } 438 439 /* 440 * Reject event generation for when a CRTC is off and stays off. 441 * It wouldn't be hard to implement this, but userspace has a track 442 * record of happily burning through 100% cpu (or worse, crash) when the 443 * display pipe is suspended. To avoid all that fun just reject updates 444 * that ask for events since likely that indicates a bug in the 445 * compositor's drawing loop. This is consistent with the vblank IOCTL 446 * and legacy page_flip IOCTL which also reject service on a disabled 447 * pipe. 448 */ 449 if (new_crtc_state->event && 450 !new_crtc_state->active && !old_crtc_state->active) { 451 drm_dbg_atomic(crtc->dev, 452 "[CRTC:%d:%s] requesting event but off\n", 453 crtc->base.id, crtc->name); 454 return -EINVAL; 455 } 456 457 return 0; 458 } 459 460 static void drm_atomic_crtc_print_state(struct drm_printer *p, 461 const struct drm_crtc_state *state) 462 { 463 struct drm_crtc *crtc = state->crtc; 464 465 drm_printf(p, "crtc[%u]: %s\n", crtc->base.id, crtc->name); 466 drm_printf(p, "\tenable=%d\n", state->enable); 467 drm_printf(p, "\tactive=%d\n", state->active); 468 drm_printf(p, "\tself_refresh_active=%d\n", state->self_refresh_active); 469 drm_printf(p, "\tplanes_changed=%d\n", state->planes_changed); 470 drm_printf(p, "\tmode_changed=%d\n", state->mode_changed); 471 drm_printf(p, "\tactive_changed=%d\n", state->active_changed); 472 drm_printf(p, "\tconnectors_changed=%d\n", state->connectors_changed); 473 drm_printf(p, "\tcolor_mgmt_changed=%d\n", state->color_mgmt_changed); 474 drm_printf(p, "\tplane_mask=%x\n", state->plane_mask); 475 drm_printf(p, "\tconnector_mask=%x\n", state->connector_mask); 476 drm_printf(p, "\tencoder_mask=%x\n", state->encoder_mask); 477 drm_printf(p, "\tmode: " DRM_MODE_FMT "\n", DRM_MODE_ARG(&state->mode)); 478 479 if (crtc->funcs->atomic_print_state) 480 crtc->funcs->atomic_print_state(p, state); 481 } 482 483 static int drm_atomic_connector_check(struct drm_connector *connector, 484 struct drm_connector_state *state) 485 { 486 struct drm_crtc_state *crtc_state; 487 struct drm_writeback_job *writeback_job = state->writeback_job; 488 const struct drm_display_info *info = &connector->display_info; 489 490 state->max_bpc = info->bpc ? info->bpc : 8; 491 if (connector->max_bpc_property) 492 state->max_bpc = min(state->max_bpc, state->max_requested_bpc); 493 494 if ((connector->connector_type != DRM_MODE_CONNECTOR_WRITEBACK) || !writeback_job) 495 return 0; 496 497 if (writeback_job->fb && !state->crtc) { 498 drm_dbg_atomic(connector->dev, 499 "[CONNECTOR:%d:%s] framebuffer without CRTC\n", 500 connector->base.id, connector->name); 501 return -EINVAL; 502 } 503 504 if (state->crtc) 505 crtc_state = drm_atomic_get_new_crtc_state(state->state, 506 state->crtc); 507 508 if (writeback_job->fb && !crtc_state->active) { 509 drm_dbg_atomic(connector->dev, 510 "[CONNECTOR:%d:%s] has framebuffer, but [CRTC:%d] is off\n", 511 connector->base.id, connector->name, 512 state->crtc->base.id); 513 return -EINVAL; 514 } 515 516 if (!writeback_job->fb) { 517 if (writeback_job->out_fence) { 518 drm_dbg_atomic(connector->dev, 519 "[CONNECTOR:%d:%s] requesting out-fence without framebuffer\n", 520 connector->base.id, connector->name); 521 return -EINVAL; 522 } 523 524 drm_writeback_cleanup_job(writeback_job); 525 state->writeback_job = NULL; 526 } 527 528 return 0; 529 } 530 531 /** 532 * drm_atomic_get_plane_state - get plane state 533 * @state: global atomic state object 534 * @plane: plane to get state object for 535 * 536 * This function returns the plane state for the given plane, allocating it if 537 * needed. It will also grab the relevant plane lock to make sure that the state 538 * is consistent. 539 * 540 * Returns: 541 * Either the allocated state or the error code encoded into the pointer. When 542 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the 543 * entire atomic sequence must be restarted. All other errors are fatal. 544 */ 545 struct drm_plane_state * 546 drm_atomic_get_plane_state(struct drm_atomic_state *state, 547 struct drm_plane *plane) 548 { 549 int ret, index = drm_plane_index(plane); 550 struct drm_plane_state *plane_state; 551 552 WARN_ON(!state->acquire_ctx); 553 drm_WARN_ON(state->dev, state->checked); 554 555 /* the legacy pointers should never be set */ 556 WARN_ON(plane->fb); 557 WARN_ON(plane->old_fb); 558 WARN_ON(plane->crtc); 559 560 plane_state = drm_atomic_get_new_plane_state(state, plane); 561 if (plane_state) 562 return plane_state; 563 564 ret = drm_modeset_lock(&plane->mutex, state->acquire_ctx); 565 if (ret) 566 return ERR_PTR(ret); 567 568 plane_state = plane->funcs->atomic_duplicate_state(plane); 569 if (!plane_state) 570 return ERR_PTR(-ENOMEM); 571 572 state->planes[index].state_to_destroy = plane_state; 573 state->planes[index].ptr = plane; 574 state->planes[index].old_state = plane->state; 575 state->planes[index].new_state = plane_state; 576 plane_state->state = state; 577 578 drm_dbg_atomic(plane->dev, "Added [PLANE:%d:%s] %p state to %p\n", 579 plane->base.id, plane->name, plane_state, state); 580 581 if (plane_state->crtc) { 582 struct drm_crtc_state *crtc_state; 583 584 crtc_state = drm_atomic_get_crtc_state(state, 585 plane_state->crtc); 586 if (IS_ERR(crtc_state)) 587 return ERR_CAST(crtc_state); 588 } 589 590 return plane_state; 591 } 592 EXPORT_SYMBOL(drm_atomic_get_plane_state); 593 594 /** 595 * drm_atomic_get_colorop_state - get colorop state 596 * @state: global atomic state object 597 * @colorop: colorop to get state object for 598 * 599 * This function returns the colorop state for the given colorop, allocating it 600 * if needed. It will also grab the relevant plane lock to make sure that the 601 * state is consistent. 602 * 603 * Returns: 604 * 605 * Either the allocated state or the error code encoded into the pointer. When 606 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the 607 * entire atomic sequence must be restarted. All other errors are fatal. 608 */ 609 struct drm_colorop_state * 610 drm_atomic_get_colorop_state(struct drm_atomic_state *state, 611 struct drm_colorop *colorop) 612 { 613 int ret, index = drm_colorop_index(colorop); 614 struct drm_colorop_state *colorop_state; 615 616 WARN_ON(!state->acquire_ctx); 617 618 colorop_state = drm_atomic_get_new_colorop_state(state, colorop); 619 if (colorop_state) 620 return colorop_state; 621 622 ret = drm_modeset_lock(&colorop->plane->mutex, state->acquire_ctx); 623 if (ret) 624 return ERR_PTR(ret); 625 626 colorop_state = drm_atomic_helper_colorop_duplicate_state(colorop); 627 if (!colorop_state) 628 return ERR_PTR(-ENOMEM); 629 630 state->colorops[index].state = colorop_state; 631 state->colorops[index].ptr = colorop; 632 state->colorops[index].old_state = colorop->state; 633 state->colorops[index].new_state = colorop_state; 634 colorop_state->state = state; 635 636 drm_dbg_atomic(colorop->dev, "Added [COLOROP:%d:%d] %p state to %p\n", 637 colorop->base.id, colorop->type, colorop_state, state); 638 639 return colorop_state; 640 } 641 EXPORT_SYMBOL(drm_atomic_get_colorop_state); 642 643 /** 644 * drm_atomic_get_old_colorop_state - get colorop state, if it exists 645 * @state: global atomic state object 646 * @colorop: colorop to grab 647 * 648 * This function returns the old colorop state for the given colorop, or 649 * NULL if the colorop is not part of the global atomic state. 650 */ 651 struct drm_colorop_state * 652 drm_atomic_get_old_colorop_state(struct drm_atomic_state *state, 653 struct drm_colorop *colorop) 654 { 655 return state->colorops[drm_colorop_index(colorop)].old_state; 656 } 657 EXPORT_SYMBOL(drm_atomic_get_old_colorop_state); 658 659 /** 660 * drm_atomic_get_new_colorop_state - get colorop state, if it exists 661 * @state: global atomic state object 662 * @colorop: colorop to grab 663 * 664 * This function returns the new colorop state for the given colorop, or 665 * NULL if the colorop is not part of the global atomic state. 666 */ 667 struct drm_colorop_state * 668 drm_atomic_get_new_colorop_state(struct drm_atomic_state *state, 669 struct drm_colorop *colorop) 670 { 671 return state->colorops[drm_colorop_index(colorop)].new_state; 672 } 673 EXPORT_SYMBOL(drm_atomic_get_new_colorop_state); 674 675 static bool 676 plane_switching_crtc(const struct drm_plane_state *old_plane_state, 677 const struct drm_plane_state *new_plane_state) 678 { 679 if (!old_plane_state->crtc || !new_plane_state->crtc) 680 return false; 681 682 if (old_plane_state->crtc == new_plane_state->crtc) 683 return false; 684 685 /* This could be refined, but currently there's no helper or driver code 686 * to implement direct switching of active planes nor userspace to take 687 * advantage of more direct plane switching without the intermediate 688 * full OFF state. 689 */ 690 return true; 691 } 692 693 /** 694 * drm_atomic_plane_check - check plane state 695 * @old_plane_state: old plane state to check 696 * @new_plane_state: new plane state to check 697 * 698 * Provides core sanity checks for plane state. 699 * 700 * RETURNS: 701 * Zero on success, error code on failure 702 */ 703 static int drm_atomic_plane_check(const struct drm_plane_state *old_plane_state, 704 const struct drm_plane_state *new_plane_state) 705 { 706 struct drm_plane *plane = new_plane_state->plane; 707 struct drm_crtc *crtc = new_plane_state->crtc; 708 const struct drm_framebuffer *fb = new_plane_state->fb; 709 unsigned int fb_width, fb_height; 710 struct drm_mode_rect *clips; 711 uint32_t num_clips; 712 713 /* either *both* CRTC and FB must be set, or neither */ 714 if (crtc && !fb) { 715 drm_dbg_atomic(plane->dev, "[PLANE:%d:%s] CRTC set but no FB\n", 716 plane->base.id, plane->name); 717 return -EINVAL; 718 } else if (fb && !crtc) { 719 drm_dbg_atomic(plane->dev, "[PLANE:%d:%s] FB set but no CRTC\n", 720 plane->base.id, plane->name); 721 return -EINVAL; 722 } 723 724 /* if disabled, we don't care about the rest of the state: */ 725 if (!crtc) 726 return 0; 727 728 /* Check whether this plane is usable on this CRTC */ 729 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) { 730 drm_dbg_atomic(plane->dev, 731 "Invalid [CRTC:%d:%s] for [PLANE:%d:%s]\n", 732 crtc->base.id, crtc->name, 733 plane->base.id, plane->name); 734 return -EINVAL; 735 } 736 737 /* Check whether this plane supports the fb pixel format. */ 738 if (!drm_plane_has_format(plane, fb->format->format, fb->modifier)) { 739 drm_dbg_atomic(plane->dev, 740 "[PLANE:%d:%s] invalid pixel format %p4cc, modifier 0x%llx\n", 741 plane->base.id, plane->name, 742 &fb->format->format, fb->modifier); 743 return -EINVAL; 744 } 745 746 /* Give drivers some help against integer overflows */ 747 if (new_plane_state->crtc_w > INT_MAX || 748 new_plane_state->crtc_x > INT_MAX - (int32_t) new_plane_state->crtc_w || 749 new_plane_state->crtc_h > INT_MAX || 750 new_plane_state->crtc_y > INT_MAX - (int32_t) new_plane_state->crtc_h) { 751 drm_dbg_atomic(plane->dev, 752 "[PLANE:%d:%s] invalid CRTC coordinates %ux%u+%d+%d\n", 753 plane->base.id, plane->name, 754 new_plane_state->crtc_w, new_plane_state->crtc_h, 755 new_plane_state->crtc_x, new_plane_state->crtc_y); 756 return -ERANGE; 757 } 758 759 fb_width = fb->width << 16; 760 fb_height = fb->height << 16; 761 762 /* Make sure source coordinates are inside the fb. */ 763 if (new_plane_state->src_w > fb_width || 764 new_plane_state->src_x > fb_width - new_plane_state->src_w || 765 new_plane_state->src_h > fb_height || 766 new_plane_state->src_y > fb_height - new_plane_state->src_h) { 767 drm_dbg_atomic(plane->dev, 768 "[PLANE:%d:%s] invalid source coordinates " 769 "%u.%06ux%u.%06u+%u.%06u+%u.%06u (fb %ux%u)\n", 770 plane->base.id, plane->name, 771 new_plane_state->src_w >> 16, 772 ((new_plane_state->src_w & 0xffff) * 15625) >> 10, 773 new_plane_state->src_h >> 16, 774 ((new_plane_state->src_h & 0xffff) * 15625) >> 10, 775 new_plane_state->src_x >> 16, 776 ((new_plane_state->src_x & 0xffff) * 15625) >> 10, 777 new_plane_state->src_y >> 16, 778 ((new_plane_state->src_y & 0xffff) * 15625) >> 10, 779 fb->width, fb->height); 780 return -ENOSPC; 781 } 782 783 clips = __drm_plane_get_damage_clips(new_plane_state); 784 num_clips = drm_plane_get_damage_clips_count(new_plane_state); 785 786 /* Make sure damage clips are valid and inside the fb. */ 787 while (num_clips > 0) { 788 if (clips->x1 >= clips->x2 || 789 clips->y1 >= clips->y2 || 790 clips->x1 < 0 || 791 clips->y1 < 0 || 792 clips->x2 > fb_width || 793 clips->y2 > fb_height) { 794 drm_dbg_atomic(plane->dev, 795 "[PLANE:%d:%s] invalid damage clip %d %d %d %d\n", 796 plane->base.id, plane->name, clips->x1, 797 clips->y1, clips->x2, clips->y2); 798 return -EINVAL; 799 } 800 clips++; 801 num_clips--; 802 } 803 804 if (plane_switching_crtc(old_plane_state, new_plane_state)) { 805 drm_dbg_atomic(plane->dev, 806 "[PLANE:%d:%s] switching CRTC directly\n", 807 plane->base.id, plane->name); 808 return -EINVAL; 809 } 810 811 return 0; 812 } 813 814 static void drm_atomic_colorop_print_state(struct drm_printer *p, 815 const struct drm_colorop_state *state) 816 { 817 struct drm_colorop *colorop = state->colorop; 818 819 drm_printf(p, "colorop[%u]:\n", colorop->base.id); 820 drm_printf(p, "\ttype=%s\n", drm_get_colorop_type_name(colorop->type)); 821 if (colorop->bypass_property) 822 drm_printf(p, "\tbypass=%u\n", state->bypass); 823 824 switch (colorop->type) { 825 case DRM_COLOROP_1D_CURVE: 826 drm_printf(p, "\tcurve_1d_type=%s\n", 827 drm_get_colorop_curve_1d_type_name(state->curve_1d_type)); 828 break; 829 case DRM_COLOROP_1D_LUT: 830 drm_printf(p, "\tsize=%d\n", colorop->size); 831 drm_printf(p, "\tinterpolation=%s\n", 832 drm_get_colorop_lut1d_interpolation_name(colorop->lut1d_interpolation)); 833 drm_printf(p, "\tdata blob id=%d\n", state->data ? state->data->base.id : 0); 834 break; 835 case DRM_COLOROP_CTM_3X4: 836 drm_printf(p, "\tdata blob id=%d\n", state->data ? state->data->base.id : 0); 837 break; 838 case DRM_COLOROP_MULTIPLIER: 839 drm_printf(p, "\tmultiplier=%llu\n", state->multiplier); 840 break; 841 case DRM_COLOROP_3D_LUT: 842 drm_printf(p, "\tsize=%d\n", colorop->size); 843 drm_printf(p, "\tinterpolation=%s\n", 844 drm_get_colorop_lut3d_interpolation_name(colorop->lut3d_interpolation)); 845 drm_printf(p, "\tdata blob id=%d\n", state->data ? state->data->base.id : 0); 846 break; 847 default: 848 break; 849 } 850 851 drm_printf(p, "\tnext=%d\n", colorop->next ? colorop->next->base.id : 0); 852 } 853 854 static void drm_atomic_plane_print_state(struct drm_printer *p, 855 const struct drm_plane_state *state) 856 { 857 struct drm_plane *plane = state->plane; 858 struct drm_rect src = drm_plane_state_src(state); 859 struct drm_rect dest = drm_plane_state_dest(state); 860 861 drm_printf(p, "plane[%u]: %s\n", plane->base.id, plane->name); 862 drm_printf(p, "\tcrtc=%s\n", state->crtc ? state->crtc->name : "(null)"); 863 drm_printf(p, "\tfb=%u\n", state->fb ? state->fb->base.id : 0); 864 if (state->fb) 865 drm_framebuffer_print_info(p, 2, state->fb); 866 drm_printf(p, "\tcrtc-pos=" DRM_RECT_FMT "\n", DRM_RECT_ARG(&dest)); 867 drm_printf(p, "\tsrc-pos=" DRM_RECT_FP_FMT "\n", DRM_RECT_FP_ARG(&src)); 868 drm_printf(p, "\trotation=%x\n", state->rotation); 869 drm_printf(p, "\tnormalized-zpos=%x\n", state->normalized_zpos); 870 drm_printf(p, "\tcolor-encoding=%s\n", 871 drm_get_color_encoding_name(state->color_encoding)); 872 drm_printf(p, "\tcolor-range=%s\n", 873 drm_get_color_range_name(state->color_range)); 874 drm_printf(p, "\tcolor_mgmt_changed=%d\n", state->color_mgmt_changed); 875 drm_printf(p, "\tcolor-pipeline=%d\n", 876 state->color_pipeline ? state->color_pipeline->base.id : 0); 877 if (plane->funcs->atomic_print_state) 878 plane->funcs->atomic_print_state(p, state); 879 } 880 881 /** 882 * DOC: handling driver private state 883 * 884 * Very often the DRM objects exposed to userspace in the atomic modeset api 885 * (&drm_connector, &drm_crtc and &drm_plane) do not map neatly to the 886 * underlying hardware. Especially for any kind of shared resources (e.g. shared 887 * clocks, scaler units, bandwidth and fifo limits shared among a group of 888 * planes or CRTCs, and so on) it makes sense to model these as independent 889 * objects. Drivers then need to do similar state tracking and commit ordering for 890 * such private (since not exposed to userspace) objects as the atomic core and 891 * helpers already provide for connectors, planes and CRTCs. 892 * 893 * To make this easier on drivers the atomic core provides some support to track 894 * driver private state objects using struct &drm_private_obj, with the 895 * associated state struct &drm_private_state. 896 * 897 * Similar to userspace-exposed objects, private state structures can be 898 * acquired by calling drm_atomic_get_private_obj_state(). This also takes care 899 * of locking, hence drivers should not have a need to call drm_modeset_lock() 900 * directly. Sequence of the actual hardware state commit is not handled, 901 * drivers might need to keep track of struct drm_crtc_commit within subclassed 902 * structure of &drm_private_state as necessary, e.g. similar to 903 * &drm_plane_state.commit. See also &drm_atomic_state.fake_commit. 904 * 905 * All private state structures contained in a &drm_atomic_state update can be 906 * iterated using for_each_oldnew_private_obj_in_state(), 907 * for_each_new_private_obj_in_state() and for_each_old_private_obj_in_state(). 908 * Drivers are recommended to wrap these for each type of driver private state 909 * object they have, filtering on &drm_private_obj.funcs using for_each_if(), at 910 * least if they want to iterate over all objects of a given type. 911 * 912 * An earlier way to handle driver private state was by subclassing struct 913 * &drm_atomic_state. But since that encourages non-standard ways to implement 914 * the check/commit split atomic requires (by using e.g. "check and rollback or 915 * commit instead" of "duplicate state, check, then either commit or release 916 * duplicated state) it is deprecated in favour of using &drm_private_state. 917 */ 918 919 /** 920 * drm_atomic_private_obj_init - initialize private object 921 * @dev: DRM device this object will be attached to 922 * @obj: private object 923 * @state: initial private object state 924 * @funcs: pointer to the struct of function pointers that identify the object 925 * type 926 * 927 * Initialize the private object, which can be embedded into any 928 * driver private object that needs its own atomic state. 929 */ 930 void 931 drm_atomic_private_obj_init(struct drm_device *dev, 932 struct drm_private_obj *obj, 933 struct drm_private_state *state, 934 const struct drm_private_state_funcs *funcs) 935 { 936 memset(obj, 0, sizeof(*obj)); 937 938 drm_modeset_lock_init(&obj->lock); 939 940 obj->dev = dev; 941 obj->state = state; 942 obj->funcs = funcs; 943 list_add_tail(&obj->head, &dev->mode_config.privobj_list); 944 945 state->obj = obj; 946 } 947 EXPORT_SYMBOL(drm_atomic_private_obj_init); 948 949 /** 950 * drm_atomic_private_obj_fini - finalize private object 951 * @obj: private object 952 * 953 * Finalize the private object. 954 */ 955 void 956 drm_atomic_private_obj_fini(struct drm_private_obj *obj) 957 { 958 list_del(&obj->head); 959 obj->funcs->atomic_destroy_state(obj, obj->state); 960 drm_modeset_lock_fini(&obj->lock); 961 } 962 EXPORT_SYMBOL(drm_atomic_private_obj_fini); 963 964 /** 965 * drm_atomic_get_private_obj_state - get private object state 966 * @state: global atomic state 967 * @obj: private object to get the state for 968 * 969 * This function returns the private object state for the given private object, 970 * allocating the state if needed. It will also grab the relevant private 971 * object lock to make sure that the state is consistent. 972 * 973 * RETURNS: 974 * Either the allocated state or the error code encoded into a pointer. 975 */ 976 struct drm_private_state * 977 drm_atomic_get_private_obj_state(struct drm_atomic_state *state, 978 struct drm_private_obj *obj) 979 { 980 int index, num_objs, ret; 981 size_t size; 982 struct __drm_private_objs_state *arr; 983 struct drm_private_state *obj_state; 984 985 WARN_ON(!state->acquire_ctx); 986 drm_WARN_ON(state->dev, state->checked); 987 988 obj_state = drm_atomic_get_new_private_obj_state(state, obj); 989 if (obj_state) 990 return obj_state; 991 992 ret = drm_modeset_lock(&obj->lock, state->acquire_ctx); 993 if (ret) 994 return ERR_PTR(ret); 995 996 num_objs = state->num_private_objs + 1; 997 size = sizeof(*state->private_objs) * num_objs; 998 arr = krealloc(state->private_objs, size, GFP_KERNEL); 999 if (!arr) 1000 return ERR_PTR(-ENOMEM); 1001 1002 state->private_objs = arr; 1003 index = state->num_private_objs; 1004 memset(&state->private_objs[index], 0, sizeof(*state->private_objs)); 1005 1006 obj_state = obj->funcs->atomic_duplicate_state(obj); 1007 if (!obj_state) 1008 return ERR_PTR(-ENOMEM); 1009 1010 state->private_objs[index].state_to_destroy = obj_state; 1011 state->private_objs[index].old_state = obj->state; 1012 state->private_objs[index].new_state = obj_state; 1013 state->private_objs[index].ptr = obj; 1014 obj_state->state = state; 1015 1016 state->num_private_objs = num_objs; 1017 1018 drm_dbg_atomic(state->dev, 1019 "Added new private object %p state %p to %p\n", 1020 obj, obj_state, state); 1021 1022 return obj_state; 1023 } 1024 EXPORT_SYMBOL(drm_atomic_get_private_obj_state); 1025 1026 /** 1027 * drm_atomic_get_old_private_obj_state 1028 * @state: global atomic state object 1029 * @obj: private_obj to grab 1030 * 1031 * This function returns the old private object state for the given private_obj, 1032 * or NULL if the private_obj is not part of the global atomic state. 1033 */ 1034 struct drm_private_state * 1035 drm_atomic_get_old_private_obj_state(const struct drm_atomic_state *state, 1036 struct drm_private_obj *obj) 1037 { 1038 int i; 1039 1040 for (i = 0; i < state->num_private_objs; i++) 1041 if (obj == state->private_objs[i].ptr) 1042 return state->private_objs[i].old_state; 1043 1044 return NULL; 1045 } 1046 EXPORT_SYMBOL(drm_atomic_get_old_private_obj_state); 1047 1048 /** 1049 * drm_atomic_get_new_private_obj_state 1050 * @state: global atomic state object 1051 * @obj: private_obj to grab 1052 * 1053 * This function returns the new private object state for the given private_obj, 1054 * or NULL if the private_obj is not part of the global atomic state. 1055 */ 1056 struct drm_private_state * 1057 drm_atomic_get_new_private_obj_state(const struct drm_atomic_state *state, 1058 struct drm_private_obj *obj) 1059 { 1060 int i; 1061 1062 for (i = 0; i < state->num_private_objs; i++) 1063 if (obj == state->private_objs[i].ptr) 1064 return state->private_objs[i].new_state; 1065 1066 return NULL; 1067 } 1068 EXPORT_SYMBOL(drm_atomic_get_new_private_obj_state); 1069 1070 /** 1071 * drm_atomic_get_old_connector_for_encoder - Get old connector for an encoder 1072 * @state: Atomic state 1073 * @encoder: The encoder to fetch the connector state for 1074 * 1075 * This function finds and returns the connector that was connected to @encoder 1076 * as specified by the @state. 1077 * 1078 * If there is no connector in @state which previously had @encoder connected to 1079 * it, this function will return NULL. While this may seem like an invalid use 1080 * case, it is sometimes useful to differentiate commits which had no prior 1081 * connectors attached to @encoder vs ones that did (and to inspect their 1082 * state). This is especially true in enable hooks because the pipeline has 1083 * changed. 1084 * 1085 * If you don't have access to the atomic state, see 1086 * drm_atomic_get_connector_for_encoder(). 1087 * 1088 * Returns: The old connector connected to @encoder, or NULL if the encoder is 1089 * not connected. 1090 */ 1091 struct drm_connector * 1092 drm_atomic_get_old_connector_for_encoder(const struct drm_atomic_state *state, 1093 struct drm_encoder *encoder) 1094 { 1095 struct drm_connector_state *conn_state; 1096 struct drm_connector *connector; 1097 unsigned int i; 1098 1099 for_each_old_connector_in_state(state, connector, conn_state, i) { 1100 if (conn_state->best_encoder == encoder) 1101 return connector; 1102 } 1103 1104 return NULL; 1105 } 1106 EXPORT_SYMBOL(drm_atomic_get_old_connector_for_encoder); 1107 1108 /** 1109 * drm_atomic_get_new_connector_for_encoder - Get new connector for an encoder 1110 * @state: Atomic state 1111 * @encoder: The encoder to fetch the connector state for 1112 * 1113 * This function finds and returns the connector that will be connected to 1114 * @encoder as specified by the @state. 1115 * 1116 * If there is no connector in @state which will have @encoder connected to it, 1117 * this function will return NULL. While this may seem like an invalid use case, 1118 * it is sometimes useful to differentiate commits which have no connectors 1119 * attached to @encoder vs ones that do (and to inspect their state). This is 1120 * especially true in disable hooks because the pipeline will change. 1121 * 1122 * If you don't have access to the atomic state, see 1123 * drm_atomic_get_connector_for_encoder(). 1124 * 1125 * Returns: The new connector connected to @encoder, or NULL if the encoder is 1126 * not connected. 1127 */ 1128 struct drm_connector * 1129 drm_atomic_get_new_connector_for_encoder(const struct drm_atomic_state *state, 1130 struct drm_encoder *encoder) 1131 { 1132 struct drm_connector_state *conn_state; 1133 struct drm_connector *connector; 1134 unsigned int i; 1135 1136 for_each_new_connector_in_state(state, connector, conn_state, i) { 1137 if (conn_state->best_encoder == encoder) 1138 return connector; 1139 } 1140 1141 return NULL; 1142 } 1143 EXPORT_SYMBOL(drm_atomic_get_new_connector_for_encoder); 1144 1145 /** 1146 * drm_atomic_get_connector_for_encoder - Get connector currently assigned to an encoder 1147 * @encoder: The encoder to find the connector of 1148 * @ctx: Modeset locking context 1149 * 1150 * This function finds and returns the connector currently assigned to 1151 * an @encoder. 1152 * 1153 * It is similar to the drm_atomic_get_old_connector_for_encoder() and 1154 * drm_atomic_get_new_connector_for_encoder() helpers, but doesn't 1155 * require access to the atomic state. If you have access to it, prefer 1156 * using these. This helper is typically useful in situations where you 1157 * don't have access to the atomic state, like detect, link repair, 1158 * threaded interrupt handlers, or hooks from other frameworks (ALSA, 1159 * CEC, etc.). 1160 * 1161 * Returns: 1162 * The connector connected to @encoder, or an error pointer otherwise. 1163 * When the error is EDEADLK, a deadlock has been detected and the 1164 * sequence must be restarted. 1165 */ 1166 struct drm_connector * 1167 drm_atomic_get_connector_for_encoder(const struct drm_encoder *encoder, 1168 struct drm_modeset_acquire_ctx *ctx) 1169 { 1170 struct drm_connector_list_iter conn_iter; 1171 struct drm_connector *out_connector = ERR_PTR(-EINVAL); 1172 struct drm_connector *connector; 1173 struct drm_device *dev = encoder->dev; 1174 int ret; 1175 1176 ret = drm_modeset_lock(&dev->mode_config.connection_mutex, ctx); 1177 if (ret) 1178 return ERR_PTR(ret); 1179 1180 drm_connector_list_iter_begin(dev, &conn_iter); 1181 drm_for_each_connector_iter(connector, &conn_iter) { 1182 if (!connector->state) 1183 continue; 1184 1185 if (encoder == connector->state->best_encoder) { 1186 out_connector = connector; 1187 break; 1188 } 1189 } 1190 drm_connector_list_iter_end(&conn_iter); 1191 drm_modeset_unlock(&dev->mode_config.connection_mutex); 1192 1193 return out_connector; 1194 } 1195 EXPORT_SYMBOL(drm_atomic_get_connector_for_encoder); 1196 1197 1198 /** 1199 * drm_atomic_get_old_crtc_for_encoder - Get old crtc for an encoder 1200 * @state: Atomic state 1201 * @encoder: The encoder to fetch the crtc state for 1202 * 1203 * This function finds and returns the crtc that was connected to @encoder 1204 * as specified by the @state. 1205 * 1206 * Returns: The old crtc connected to @encoder, or NULL if the encoder is 1207 * not connected. 1208 */ 1209 struct drm_crtc * 1210 drm_atomic_get_old_crtc_for_encoder(struct drm_atomic_state *state, 1211 struct drm_encoder *encoder) 1212 { 1213 struct drm_connector *connector; 1214 struct drm_connector_state *conn_state; 1215 1216 connector = drm_atomic_get_old_connector_for_encoder(state, encoder); 1217 if (!connector) 1218 return NULL; 1219 1220 conn_state = drm_atomic_get_old_connector_state(state, connector); 1221 if (!conn_state) 1222 return NULL; 1223 1224 return conn_state->crtc; 1225 } 1226 EXPORT_SYMBOL(drm_atomic_get_old_crtc_for_encoder); 1227 1228 /** 1229 * drm_atomic_get_new_crtc_for_encoder - Get new crtc for an encoder 1230 * @state: Atomic state 1231 * @encoder: The encoder to fetch the crtc state for 1232 * 1233 * This function finds and returns the crtc that will be connected to @encoder 1234 * as specified by the @state. 1235 * 1236 * Returns: The new crtc connected to @encoder, or NULL if the encoder is 1237 * not connected. 1238 */ 1239 struct drm_crtc * 1240 drm_atomic_get_new_crtc_for_encoder(struct drm_atomic_state *state, 1241 struct drm_encoder *encoder) 1242 { 1243 struct drm_connector *connector; 1244 struct drm_connector_state *conn_state; 1245 1246 connector = drm_atomic_get_new_connector_for_encoder(state, encoder); 1247 if (!connector) 1248 return NULL; 1249 1250 conn_state = drm_atomic_get_new_connector_state(state, connector); 1251 if (!conn_state) 1252 return NULL; 1253 1254 return conn_state->crtc; 1255 } 1256 EXPORT_SYMBOL(drm_atomic_get_new_crtc_for_encoder); 1257 1258 /** 1259 * drm_atomic_get_connector_state - get connector state 1260 * @state: global atomic state object 1261 * @connector: connector to get state object for 1262 * 1263 * This function returns the connector state for the given connector, 1264 * allocating it if needed. It will also grab the relevant connector lock to 1265 * make sure that the state is consistent. 1266 * 1267 * Returns: 1268 * Either the allocated state or the error code encoded into the pointer. When 1269 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the 1270 * entire atomic sequence must be restarted. All other errors are fatal. 1271 */ 1272 struct drm_connector_state * 1273 drm_atomic_get_connector_state(struct drm_atomic_state *state, 1274 struct drm_connector *connector) 1275 { 1276 int ret, index; 1277 struct drm_mode_config *config = &connector->dev->mode_config; 1278 struct drm_connector_state *connector_state; 1279 1280 WARN_ON(!state->acquire_ctx); 1281 drm_WARN_ON(state->dev, state->checked); 1282 1283 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx); 1284 if (ret) 1285 return ERR_PTR(ret); 1286 1287 index = drm_connector_index(connector); 1288 1289 if (index >= state->num_connector) { 1290 struct __drm_connnectors_state *c; 1291 int alloc = max(index + 1, config->num_connector); 1292 1293 c = krealloc_array(state->connectors, alloc, 1294 sizeof(*state->connectors), GFP_KERNEL); 1295 if (!c) 1296 return ERR_PTR(-ENOMEM); 1297 1298 state->connectors = c; 1299 memset(&state->connectors[state->num_connector], 0, 1300 sizeof(*state->connectors) * (alloc - state->num_connector)); 1301 1302 state->num_connector = alloc; 1303 } 1304 1305 connector_state = drm_atomic_get_new_connector_state(state, connector); 1306 if (connector_state) 1307 return connector_state; 1308 1309 connector_state = connector->funcs->atomic_duplicate_state(connector); 1310 if (!connector_state) 1311 return ERR_PTR(-ENOMEM); 1312 1313 drm_connector_get(connector); 1314 state->connectors[index].state_to_destroy = connector_state; 1315 state->connectors[index].old_state = connector->state; 1316 state->connectors[index].new_state = connector_state; 1317 state->connectors[index].ptr = connector; 1318 connector_state->state = state; 1319 1320 drm_dbg_atomic(connector->dev, "Added [CONNECTOR:%d:%s] %p state to %p\n", 1321 connector->base.id, connector->name, 1322 connector_state, state); 1323 1324 if (connector_state->crtc) { 1325 struct drm_crtc_state *crtc_state; 1326 1327 crtc_state = drm_atomic_get_crtc_state(state, 1328 connector_state->crtc); 1329 if (IS_ERR(crtc_state)) 1330 return ERR_CAST(crtc_state); 1331 } 1332 1333 return connector_state; 1334 } 1335 EXPORT_SYMBOL(drm_atomic_get_connector_state); 1336 1337 static void drm_atomic_connector_print_state(struct drm_printer *p, 1338 const struct drm_connector_state *state) 1339 { 1340 struct drm_connector *connector = state->connector; 1341 1342 drm_printf(p, "connector[%u]: %s\n", connector->base.id, connector->name); 1343 drm_printf(p, "\tcrtc=%s\n", state->crtc ? state->crtc->name : "(null)"); 1344 drm_printf(p, "\tself_refresh_aware=%d\n", state->self_refresh_aware); 1345 drm_printf(p, "\tinterlace_allowed=%d\n", connector->interlace_allowed); 1346 drm_printf(p, "\tycbcr_420_allowed=%d\n", connector->ycbcr_420_allowed); 1347 drm_printf(p, "\tmax_requested_bpc=%d\n", state->max_requested_bpc); 1348 drm_printf(p, "\tcolorspace=%s\n", drm_get_colorspace_name(state->colorspace)); 1349 1350 if (connector->connector_type == DRM_MODE_CONNECTOR_HDMIA || 1351 connector->connector_type == DRM_MODE_CONNECTOR_HDMIB) { 1352 drm_printf(p, "\tbroadcast_rgb=%s\n", 1353 drm_hdmi_connector_get_broadcast_rgb_name(state->hdmi.broadcast_rgb)); 1354 drm_printf(p, "\tis_limited_range=%c\n", state->hdmi.is_limited_range ? 'y' : 'n'); 1355 drm_printf(p, "\toutput_bpc=%u\n", state->hdmi.output_bpc); 1356 drm_printf(p, "\toutput_format=%s\n", 1357 drm_hdmi_connector_get_output_format_name(state->hdmi.output_format)); 1358 drm_printf(p, "\ttmds_char_rate=%llu\n", state->hdmi.tmds_char_rate); 1359 } 1360 1361 if (connector->connector_type == DRM_MODE_CONNECTOR_WRITEBACK) 1362 if (state->writeback_job && state->writeback_job->fb) 1363 drm_printf(p, "\tfb=%d\n", state->writeback_job->fb->base.id); 1364 1365 if (connector->funcs->atomic_print_state) 1366 connector->funcs->atomic_print_state(p, state); 1367 } 1368 1369 /** 1370 * drm_atomic_get_bridge_state - get bridge state 1371 * @state: global atomic state object 1372 * @bridge: bridge to get state object for 1373 * 1374 * This function returns the bridge state for the given bridge, allocating it 1375 * if needed. It will also grab the relevant bridge lock to make sure that the 1376 * state is consistent. 1377 * 1378 * Returns: 1379 * Either the allocated state or the error code encoded into the pointer. When 1380 * the error is EDEADLK then the w/w mutex code has detected a deadlock and the 1381 * entire atomic sequence must be restarted. 1382 */ 1383 struct drm_bridge_state * 1384 drm_atomic_get_bridge_state(struct drm_atomic_state *state, 1385 struct drm_bridge *bridge) 1386 { 1387 struct drm_private_state *obj_state; 1388 1389 obj_state = drm_atomic_get_private_obj_state(state, &bridge->base); 1390 if (IS_ERR(obj_state)) 1391 return ERR_CAST(obj_state); 1392 1393 return drm_priv_to_bridge_state(obj_state); 1394 } 1395 EXPORT_SYMBOL(drm_atomic_get_bridge_state); 1396 1397 /** 1398 * drm_atomic_get_old_bridge_state - get old bridge state, if it exists 1399 * @state: global atomic state object 1400 * @bridge: bridge to grab 1401 * 1402 * This function returns the old bridge state for the given bridge, or NULL if 1403 * the bridge is not part of the global atomic state. 1404 */ 1405 struct drm_bridge_state * 1406 drm_atomic_get_old_bridge_state(const struct drm_atomic_state *state, 1407 struct drm_bridge *bridge) 1408 { 1409 struct drm_private_state *obj_state; 1410 1411 obj_state = drm_atomic_get_old_private_obj_state(state, &bridge->base); 1412 if (!obj_state) 1413 return NULL; 1414 1415 return drm_priv_to_bridge_state(obj_state); 1416 } 1417 EXPORT_SYMBOL(drm_atomic_get_old_bridge_state); 1418 1419 /** 1420 * drm_atomic_get_new_bridge_state - get new bridge state, if it exists 1421 * @state: global atomic state object 1422 * @bridge: bridge to grab 1423 * 1424 * This function returns the new bridge state for the given bridge, or NULL if 1425 * the bridge is not part of the global atomic state. 1426 */ 1427 struct drm_bridge_state * 1428 drm_atomic_get_new_bridge_state(const struct drm_atomic_state *state, 1429 struct drm_bridge *bridge) 1430 { 1431 struct drm_private_state *obj_state; 1432 1433 obj_state = drm_atomic_get_new_private_obj_state(state, &bridge->base); 1434 if (!obj_state) 1435 return NULL; 1436 1437 return drm_priv_to_bridge_state(obj_state); 1438 } 1439 EXPORT_SYMBOL(drm_atomic_get_new_bridge_state); 1440 1441 /** 1442 * drm_atomic_add_encoder_bridges - add bridges attached to an encoder 1443 * @state: atomic state 1444 * @encoder: DRM encoder 1445 * 1446 * This function adds all bridges attached to @encoder. This is needed to add 1447 * bridge states to @state and make them available when 1448 * &drm_bridge_funcs.atomic_check(), &drm_bridge_funcs.atomic_pre_enable(), 1449 * &drm_bridge_funcs.atomic_enable(), 1450 * &drm_bridge_funcs.atomic_disable_post_disable() are called. 1451 * 1452 * Returns: 1453 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK 1454 * then the w/w mutex code has detected a deadlock and the entire atomic 1455 * sequence must be restarted. All other errors are fatal. 1456 */ 1457 int 1458 drm_atomic_add_encoder_bridges(struct drm_atomic_state *state, 1459 struct drm_encoder *encoder) 1460 { 1461 struct drm_bridge_state *bridge_state; 1462 1463 if (!encoder) 1464 return 0; 1465 1466 drm_dbg_atomic(encoder->dev, 1467 "Adding all bridges for [encoder:%d:%s] to %p\n", 1468 encoder->base.id, encoder->name, state); 1469 1470 drm_for_each_bridge_in_chain_scoped(encoder, bridge) { 1471 /* Skip bridges that don't implement the atomic state hooks. */ 1472 if (!bridge->funcs->atomic_duplicate_state) 1473 continue; 1474 1475 bridge_state = drm_atomic_get_bridge_state(state, bridge); 1476 if (IS_ERR(bridge_state)) 1477 return PTR_ERR(bridge_state); 1478 } 1479 1480 return 0; 1481 } 1482 EXPORT_SYMBOL(drm_atomic_add_encoder_bridges); 1483 1484 /** 1485 * drm_atomic_add_affected_connectors - add connectors for CRTC 1486 * @state: atomic state 1487 * @crtc: DRM CRTC 1488 * 1489 * This function walks the current configuration and adds all connectors 1490 * currently using @crtc to the atomic configuration @state. Note that this 1491 * function must acquire the connection mutex. This can potentially cause 1492 * unneeded serialization if the update is just for the planes on one CRTC. Hence 1493 * drivers and helpers should only call this when really needed (e.g. when a 1494 * full modeset needs to happen due to some change). 1495 * 1496 * Returns: 1497 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK 1498 * then the w/w mutex code has detected a deadlock and the entire atomic 1499 * sequence must be restarted. All other errors are fatal. 1500 */ 1501 int 1502 drm_atomic_add_affected_connectors(struct drm_atomic_state *state, 1503 struct drm_crtc *crtc) 1504 { 1505 struct drm_mode_config *config = &state->dev->mode_config; 1506 struct drm_connector *connector; 1507 struct drm_connector_state *conn_state; 1508 struct drm_connector_list_iter conn_iter; 1509 struct drm_crtc_state *crtc_state; 1510 int ret; 1511 1512 crtc_state = drm_atomic_get_crtc_state(state, crtc); 1513 if (IS_ERR(crtc_state)) 1514 return PTR_ERR(crtc_state); 1515 1516 ret = drm_modeset_lock(&config->connection_mutex, state->acquire_ctx); 1517 if (ret) 1518 return ret; 1519 1520 drm_dbg_atomic(crtc->dev, 1521 "Adding all current connectors for [CRTC:%d:%s] to %p\n", 1522 crtc->base.id, crtc->name, state); 1523 1524 /* 1525 * Changed connectors are already in @state, so only need to look 1526 * at the connector_mask in crtc_state. 1527 */ 1528 drm_connector_list_iter_begin(state->dev, &conn_iter); 1529 drm_for_each_connector_iter(connector, &conn_iter) { 1530 if (!(crtc_state->connector_mask & drm_connector_mask(connector))) 1531 continue; 1532 1533 conn_state = drm_atomic_get_connector_state(state, connector); 1534 if (IS_ERR(conn_state)) { 1535 drm_connector_list_iter_end(&conn_iter); 1536 return PTR_ERR(conn_state); 1537 } 1538 } 1539 drm_connector_list_iter_end(&conn_iter); 1540 1541 return 0; 1542 } 1543 EXPORT_SYMBOL(drm_atomic_add_affected_connectors); 1544 1545 /** 1546 * drm_atomic_add_affected_planes - add planes for CRTC 1547 * @state: atomic state 1548 * @crtc: DRM CRTC 1549 * 1550 * This function walks the current configuration and adds all planes 1551 * currently used by @crtc to the atomic configuration @state. This is useful 1552 * when an atomic commit also needs to check all currently enabled plane on 1553 * @crtc, e.g. when changing the mode. It's also useful when re-enabling a CRTC 1554 * to avoid special code to force-enable all planes. 1555 * 1556 * Since acquiring a plane state will always also acquire the w/w mutex of the 1557 * current CRTC for that plane (if there is any) adding all the plane states for 1558 * a CRTC will not reduce parallelism of atomic updates. 1559 * 1560 * Returns: 1561 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK 1562 * then the w/w mutex code has detected a deadlock and the entire atomic 1563 * sequence must be restarted. All other errors are fatal. 1564 */ 1565 int 1566 drm_atomic_add_affected_planes(struct drm_atomic_state *state, 1567 struct drm_crtc *crtc) 1568 { 1569 const struct drm_crtc_state *old_crtc_state = 1570 drm_atomic_get_old_crtc_state(state, crtc); 1571 struct drm_plane *plane; 1572 1573 WARN_ON(!drm_atomic_get_new_crtc_state(state, crtc)); 1574 1575 drm_dbg_atomic(crtc->dev, 1576 "Adding all current planes for [CRTC:%d:%s] to %p\n", 1577 crtc->base.id, crtc->name, state); 1578 1579 drm_for_each_plane_mask(plane, state->dev, old_crtc_state->plane_mask) { 1580 struct drm_plane_state *plane_state = 1581 drm_atomic_get_plane_state(state, plane); 1582 1583 if (IS_ERR(plane_state)) 1584 return PTR_ERR(plane_state); 1585 } 1586 return 0; 1587 } 1588 EXPORT_SYMBOL(drm_atomic_add_affected_planes); 1589 1590 /** 1591 * drm_atomic_add_affected_colorops - add colorops for plane 1592 * @state: atomic state 1593 * @plane: DRM plane 1594 * 1595 * This function walks the current configuration and adds all colorops 1596 * currently used by @plane to the atomic configuration @state. This is useful 1597 * when an atomic commit also needs to check all currently enabled colorop on 1598 * @plane, e.g. when changing the mode. It's also useful when re-enabling a plane 1599 * to avoid special code to force-enable all colorops. 1600 * 1601 * Since acquiring a colorop state will always also acquire the w/w mutex of the 1602 * current plane for that colorop (if there is any) adding all the colorop states for 1603 * a plane will not reduce parallelism of atomic updates. 1604 * 1605 * Returns: 1606 * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK 1607 * then the w/w mutex code has detected a deadlock and the entire atomic 1608 * sequence must be restarted. All other errors are fatal. 1609 */ 1610 int 1611 drm_atomic_add_affected_colorops(struct drm_atomic_state *state, 1612 struct drm_plane *plane) 1613 { 1614 struct drm_colorop *colorop; 1615 struct drm_colorop_state *colorop_state; 1616 1617 WARN_ON(!drm_atomic_get_new_plane_state(state, plane)); 1618 1619 drm_dbg_atomic(plane->dev, 1620 "Adding all current colorops for [PLANE:%d:%s] to %p\n", 1621 plane->base.id, plane->name, state); 1622 1623 drm_for_each_colorop(colorop, plane->dev) { 1624 if (colorop->plane != plane) 1625 continue; 1626 1627 colorop_state = drm_atomic_get_colorop_state(state, colorop); 1628 if (IS_ERR(colorop_state)) 1629 return PTR_ERR(colorop_state); 1630 } 1631 1632 return 0; 1633 } 1634 EXPORT_SYMBOL(drm_atomic_add_affected_colorops); 1635 1636 /** 1637 * drm_atomic_check_only - check whether a given config would work 1638 * @state: atomic configuration to check 1639 * 1640 * Note that this function can return -EDEADLK if the driver needed to acquire 1641 * more locks but encountered a deadlock. The caller must then do the usual w/w 1642 * backoff dance and restart. All other errors are fatal. 1643 * 1644 * Returns: 1645 * 0 on success, negative error code on failure. 1646 */ 1647 int drm_atomic_check_only(struct drm_atomic_state *state) 1648 { 1649 struct drm_device *dev = state->dev; 1650 struct drm_mode_config *config = &dev->mode_config; 1651 struct drm_plane *plane; 1652 struct drm_plane_state *old_plane_state; 1653 struct drm_plane_state *new_plane_state; 1654 struct drm_crtc *crtc; 1655 struct drm_crtc_state *old_crtc_state; 1656 struct drm_crtc_state *new_crtc_state; 1657 struct drm_connector *conn; 1658 struct drm_connector_state *conn_state; 1659 unsigned int requested_crtc = 0; 1660 unsigned int affected_crtc = 0; 1661 int i, ret = 0; 1662 1663 drm_dbg_atomic(dev, "checking %p\n", state); 1664 1665 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) { 1666 if (new_crtc_state->enable) 1667 requested_crtc |= drm_crtc_mask(crtc); 1668 } 1669 1670 for_each_oldnew_plane_in_state(state, plane, old_plane_state, new_plane_state, i) { 1671 ret = drm_atomic_plane_check(old_plane_state, new_plane_state); 1672 if (ret) { 1673 drm_dbg_atomic(dev, "[PLANE:%d:%s] atomic core check failed\n", 1674 plane->base.id, plane->name); 1675 return ret; 1676 } 1677 } 1678 1679 for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) { 1680 ret = drm_atomic_crtc_check(old_crtc_state, new_crtc_state); 1681 if (ret) { 1682 drm_dbg_atomic(dev, "[CRTC:%d:%s] atomic core check failed\n", 1683 crtc->base.id, crtc->name); 1684 return ret; 1685 } 1686 } 1687 1688 for_each_new_connector_in_state(state, conn, conn_state, i) { 1689 ret = drm_atomic_connector_check(conn, conn_state); 1690 if (ret) { 1691 drm_dbg_atomic(dev, "[CONNECTOR:%d:%s] atomic core check failed\n", 1692 conn->base.id, conn->name); 1693 return ret; 1694 } 1695 } 1696 1697 if (config->funcs->atomic_check) { 1698 ret = config->funcs->atomic_check(state->dev, state); 1699 1700 if (ret) { 1701 drm_dbg_atomic(dev, "atomic driver check for %p failed: %d\n", 1702 state, ret); 1703 return ret; 1704 } 1705 } 1706 1707 if (!state->allow_modeset) { 1708 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) { 1709 if (drm_atomic_crtc_needs_modeset(new_crtc_state)) { 1710 drm_dbg_atomic(dev, "[CRTC:%d:%s] requires full modeset\n", 1711 crtc->base.id, crtc->name); 1712 return -EINVAL; 1713 } 1714 } 1715 } 1716 1717 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) { 1718 if (new_crtc_state->enable) 1719 affected_crtc |= drm_crtc_mask(crtc); 1720 } 1721 1722 /* 1723 * For commits that allow modesets drivers can add other CRTCs to the 1724 * atomic commit, e.g. when they need to reallocate global resources. 1725 * This can cause spurious EBUSY, which robs compositors of a very 1726 * effective sanity check for their drawing loop. Therefor only allow 1727 * drivers to add unrelated CRTC states for modeset commits. 1728 * 1729 * FIXME: Should add affected_crtc mask to the ATOMIC IOCTL as an output 1730 * so compositors know what's going on. 1731 */ 1732 if (affected_crtc != requested_crtc) { 1733 drm_dbg_atomic(dev, 1734 "driver added CRTC to commit: requested 0x%x, affected 0x%0x\n", 1735 requested_crtc, affected_crtc); 1736 WARN(!state->allow_modeset, "adding CRTC not allowed without modesets: requested 0x%x, affected 0x%0x\n", 1737 requested_crtc, affected_crtc); 1738 } 1739 1740 state->checked = true; 1741 1742 return 0; 1743 } 1744 EXPORT_SYMBOL(drm_atomic_check_only); 1745 1746 /** 1747 * drm_atomic_commit - commit configuration atomically 1748 * @state: atomic configuration to check 1749 * 1750 * Note that this function can return -EDEADLK if the driver needed to acquire 1751 * more locks but encountered a deadlock. The caller must then do the usual w/w 1752 * backoff dance and restart. All other errors are fatal. 1753 * 1754 * This function will take its own reference on @state. 1755 * Callers should always release their reference with drm_atomic_state_put(). 1756 * 1757 * Returns: 1758 * 0 on success, negative error code on failure. 1759 */ 1760 int drm_atomic_commit(struct drm_atomic_state *state) 1761 { 1762 struct drm_mode_config *config = &state->dev->mode_config; 1763 struct drm_printer p = drm_info_printer(state->dev->dev); 1764 int ret; 1765 1766 if (drm_debug_enabled(DRM_UT_STATE)) 1767 drm_atomic_print_new_state(state, &p); 1768 1769 ret = drm_atomic_check_only(state); 1770 if (ret) 1771 return ret; 1772 1773 drm_dbg_atomic(state->dev, "committing %p\n", state); 1774 1775 return config->funcs->atomic_commit(state->dev, state, false); 1776 } 1777 EXPORT_SYMBOL(drm_atomic_commit); 1778 1779 /** 1780 * drm_atomic_nonblocking_commit - atomic nonblocking commit 1781 * @state: atomic configuration to check 1782 * 1783 * Note that this function can return -EDEADLK if the driver needed to acquire 1784 * more locks but encountered a deadlock. The caller must then do the usual w/w 1785 * backoff dance and restart. All other errors are fatal. 1786 * 1787 * This function will take its own reference on @state. 1788 * Callers should always release their reference with drm_atomic_state_put(). 1789 * 1790 * Returns: 1791 * 0 on success, negative error code on failure. 1792 */ 1793 int drm_atomic_nonblocking_commit(struct drm_atomic_state *state) 1794 { 1795 struct drm_mode_config *config = &state->dev->mode_config; 1796 int ret; 1797 1798 ret = drm_atomic_check_only(state); 1799 if (ret) 1800 return ret; 1801 1802 drm_dbg_atomic(state->dev, "committing %p nonblocking\n", state); 1803 1804 return config->funcs->atomic_commit(state->dev, state, true); 1805 } 1806 EXPORT_SYMBOL(drm_atomic_nonblocking_commit); 1807 1808 /* just used from drm-client and atomic-helper: */ 1809 int __drm_atomic_helper_disable_plane(struct drm_plane *plane, 1810 struct drm_plane_state *plane_state) 1811 { 1812 int ret; 1813 1814 ret = drm_atomic_set_crtc_for_plane(plane_state, NULL); 1815 if (ret != 0) 1816 return ret; 1817 1818 drm_atomic_set_fb_for_plane(plane_state, NULL); 1819 plane_state->crtc_x = 0; 1820 plane_state->crtc_y = 0; 1821 plane_state->crtc_w = 0; 1822 plane_state->crtc_h = 0; 1823 plane_state->src_x = 0; 1824 plane_state->src_y = 0; 1825 plane_state->src_w = 0; 1826 plane_state->src_h = 0; 1827 1828 return 0; 1829 } 1830 EXPORT_SYMBOL(__drm_atomic_helper_disable_plane); 1831 1832 static int update_output_state(struct drm_atomic_state *state, 1833 struct drm_mode_set *set) 1834 { 1835 struct drm_device *dev = set->crtc->dev; 1836 struct drm_crtc *crtc; 1837 struct drm_crtc_state *new_crtc_state; 1838 struct drm_connector *connector; 1839 struct drm_connector_state *new_conn_state; 1840 int ret, i; 1841 1842 ret = drm_modeset_lock(&dev->mode_config.connection_mutex, 1843 state->acquire_ctx); 1844 if (ret) 1845 return ret; 1846 1847 /* First disable all connectors on the target crtc. */ 1848 ret = drm_atomic_add_affected_connectors(state, set->crtc); 1849 if (ret) 1850 return ret; 1851 1852 for_each_new_connector_in_state(state, connector, new_conn_state, i) { 1853 if (new_conn_state->crtc == set->crtc) { 1854 ret = drm_atomic_set_crtc_for_connector(new_conn_state, 1855 NULL); 1856 if (ret) 1857 return ret; 1858 1859 /* Make sure legacy setCrtc always re-trains */ 1860 new_conn_state->link_status = DRM_LINK_STATUS_GOOD; 1861 } 1862 } 1863 1864 /* Then set all connectors from set->connectors on the target crtc */ 1865 for (i = 0; i < set->num_connectors; i++) { 1866 new_conn_state = drm_atomic_get_connector_state(state, 1867 set->connectors[i]); 1868 if (IS_ERR(new_conn_state)) 1869 return PTR_ERR(new_conn_state); 1870 1871 ret = drm_atomic_set_crtc_for_connector(new_conn_state, 1872 set->crtc); 1873 if (ret) 1874 return ret; 1875 } 1876 1877 for_each_new_crtc_in_state(state, crtc, new_crtc_state, i) { 1878 /* 1879 * Don't update ->enable for the CRTC in the set_config request, 1880 * since a mismatch would indicate a bug in the upper layers. 1881 * The actual modeset code later on will catch any 1882 * inconsistencies here. 1883 */ 1884 if (crtc == set->crtc) 1885 continue; 1886 1887 if (!new_crtc_state->connector_mask) { 1888 ret = drm_atomic_set_mode_prop_for_crtc(new_crtc_state, 1889 NULL); 1890 if (ret < 0) 1891 return ret; 1892 1893 new_crtc_state->active = false; 1894 } 1895 } 1896 1897 return 0; 1898 } 1899 1900 /* just used from drm-client and atomic-helper: */ 1901 int __drm_atomic_helper_set_config(struct drm_mode_set *set, 1902 struct drm_atomic_state *state) 1903 { 1904 struct drm_crtc_state *crtc_state; 1905 struct drm_plane_state *primary_state; 1906 struct drm_crtc *crtc = set->crtc; 1907 int hdisplay, vdisplay; 1908 int ret; 1909 1910 crtc_state = drm_atomic_get_crtc_state(state, crtc); 1911 if (IS_ERR(crtc_state)) 1912 return PTR_ERR(crtc_state); 1913 1914 primary_state = drm_atomic_get_plane_state(state, crtc->primary); 1915 if (IS_ERR(primary_state)) 1916 return PTR_ERR(primary_state); 1917 1918 if (!set->mode) { 1919 WARN_ON(set->fb); 1920 WARN_ON(set->num_connectors); 1921 1922 ret = drm_atomic_set_mode_for_crtc(crtc_state, NULL); 1923 if (ret != 0) 1924 return ret; 1925 1926 crtc_state->active = false; 1927 1928 ret = drm_atomic_set_crtc_for_plane(primary_state, NULL); 1929 if (ret != 0) 1930 return ret; 1931 1932 drm_atomic_set_fb_for_plane(primary_state, NULL); 1933 1934 goto commit; 1935 } 1936 1937 WARN_ON(!set->fb); 1938 WARN_ON(!set->num_connectors); 1939 1940 ret = drm_atomic_set_mode_for_crtc(crtc_state, set->mode); 1941 if (ret != 0) 1942 return ret; 1943 1944 crtc_state->active = true; 1945 1946 ret = drm_atomic_set_crtc_for_plane(primary_state, crtc); 1947 if (ret != 0) 1948 return ret; 1949 1950 drm_mode_get_hv_timing(set->mode, &hdisplay, &vdisplay); 1951 1952 drm_atomic_set_fb_for_plane(primary_state, set->fb); 1953 primary_state->crtc_x = 0; 1954 primary_state->crtc_y = 0; 1955 primary_state->crtc_w = hdisplay; 1956 primary_state->crtc_h = vdisplay; 1957 primary_state->src_x = set->x << 16; 1958 primary_state->src_y = set->y << 16; 1959 if (drm_rotation_90_or_270(primary_state->rotation)) { 1960 primary_state->src_w = vdisplay << 16; 1961 primary_state->src_h = hdisplay << 16; 1962 } else { 1963 primary_state->src_w = hdisplay << 16; 1964 primary_state->src_h = vdisplay << 16; 1965 } 1966 1967 commit: 1968 ret = update_output_state(state, set); 1969 if (ret) 1970 return ret; 1971 1972 return 0; 1973 } 1974 EXPORT_SYMBOL(__drm_atomic_helper_set_config); 1975 1976 static void drm_atomic_private_obj_print_state(struct drm_printer *p, 1977 const struct drm_private_state *state) 1978 { 1979 struct drm_private_obj *obj = state->obj; 1980 1981 if (obj->funcs->atomic_print_state) 1982 obj->funcs->atomic_print_state(p, state); 1983 } 1984 1985 /** 1986 * drm_atomic_print_new_state - prints drm atomic state 1987 * @state: atomic configuration to check 1988 * @p: drm printer 1989 * 1990 * This functions prints the drm atomic state snapshot using the drm printer 1991 * which is passed to it. This snapshot can be used for debugging purposes. 1992 * 1993 * Note that this function looks into the new state objects and hence its not 1994 * safe to be used after the call to drm_atomic_helper_commit_hw_done(). 1995 */ 1996 void drm_atomic_print_new_state(const struct drm_atomic_state *state, 1997 struct drm_printer *p) 1998 { 1999 struct drm_plane *plane; 2000 struct drm_plane_state *plane_state; 2001 struct drm_crtc *crtc; 2002 struct drm_crtc_state *crtc_state; 2003 struct drm_connector *connector; 2004 struct drm_connector_state *connector_state; 2005 struct drm_private_obj *obj; 2006 struct drm_private_state *obj_state; 2007 int i; 2008 2009 if (!p) { 2010 drm_err(state->dev, "invalid drm printer\n"); 2011 return; 2012 } 2013 2014 drm_dbg_atomic(state->dev, "checking %p\n", state); 2015 2016 for_each_new_plane_in_state(state, plane, plane_state, i) 2017 drm_atomic_plane_print_state(p, plane_state); 2018 2019 for_each_new_crtc_in_state(state, crtc, crtc_state, i) 2020 drm_atomic_crtc_print_state(p, crtc_state); 2021 2022 for_each_new_connector_in_state(state, connector, connector_state, i) 2023 drm_atomic_connector_print_state(p, connector_state); 2024 2025 for_each_new_private_obj_in_state(state, obj, obj_state, i) 2026 drm_atomic_private_obj_print_state(p, obj_state); 2027 } 2028 EXPORT_SYMBOL(drm_atomic_print_new_state); 2029 2030 static void __drm_state_dump(struct drm_device *dev, struct drm_printer *p, 2031 bool take_locks) 2032 { 2033 struct drm_mode_config *config = &dev->mode_config; 2034 struct drm_colorop *colorop; 2035 struct drm_plane *plane; 2036 struct drm_crtc *crtc; 2037 struct drm_connector *connector; 2038 struct drm_connector_list_iter conn_iter; 2039 struct drm_private_obj *obj; 2040 2041 if (!drm_drv_uses_atomic_modeset(dev)) 2042 return; 2043 2044 list_for_each_entry(colorop, &config->colorop_list, head) { 2045 if (take_locks) 2046 drm_modeset_lock(&colorop->plane->mutex, NULL); 2047 drm_atomic_colorop_print_state(p, colorop->state); 2048 if (take_locks) 2049 drm_modeset_unlock(&colorop->plane->mutex); 2050 } 2051 2052 list_for_each_entry(plane, &config->plane_list, head) { 2053 if (take_locks) 2054 drm_modeset_lock(&plane->mutex, NULL); 2055 drm_atomic_plane_print_state(p, plane->state); 2056 if (take_locks) 2057 drm_modeset_unlock(&plane->mutex); 2058 } 2059 2060 list_for_each_entry(crtc, &config->crtc_list, head) { 2061 if (take_locks) 2062 drm_modeset_lock(&crtc->mutex, NULL); 2063 drm_atomic_crtc_print_state(p, crtc->state); 2064 if (take_locks) 2065 drm_modeset_unlock(&crtc->mutex); 2066 } 2067 2068 drm_connector_list_iter_begin(dev, &conn_iter); 2069 if (take_locks) 2070 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL); 2071 drm_for_each_connector_iter(connector, &conn_iter) 2072 drm_atomic_connector_print_state(p, connector->state); 2073 if (take_locks) 2074 drm_modeset_unlock(&dev->mode_config.connection_mutex); 2075 drm_connector_list_iter_end(&conn_iter); 2076 2077 list_for_each_entry(obj, &config->privobj_list, head) { 2078 if (take_locks) 2079 drm_modeset_lock(&obj->lock, NULL); 2080 drm_atomic_private_obj_print_state(p, obj->state); 2081 if (take_locks) 2082 drm_modeset_unlock(&obj->lock); 2083 } 2084 } 2085 2086 /** 2087 * drm_state_dump - dump entire device atomic state 2088 * @dev: the drm device 2089 * @p: where to print the state to 2090 * 2091 * Just for debugging. Drivers might want an option to dump state 2092 * to dmesg in case of error irq's. (Hint, you probably want to 2093 * ratelimit this!) 2094 * 2095 * The caller must wrap this drm_modeset_lock_all_ctx() and 2096 * drm_modeset_drop_locks(). If this is called from error irq handler, it should 2097 * not be enabled by default - if you are debugging errors you might 2098 * not care that this is racey, but calling this without all modeset locks held 2099 * is inherently unsafe. 2100 */ 2101 void drm_state_dump(struct drm_device *dev, struct drm_printer *p) 2102 { 2103 __drm_state_dump(dev, p, false); 2104 } 2105 EXPORT_SYMBOL(drm_state_dump); 2106 2107 #ifdef CONFIG_DEBUG_FS 2108 static int drm_state_info(struct seq_file *m, void *data) 2109 { 2110 struct drm_debugfs_entry *entry = m->private; 2111 struct drm_device *dev = entry->dev; 2112 struct drm_printer p = drm_seq_file_printer(m); 2113 2114 __drm_state_dump(dev, &p, true); 2115 2116 return 0; 2117 } 2118 2119 /* any use in debugfs files to dump individual planes/crtc/etc? */ 2120 static const struct drm_debugfs_info drm_atomic_debugfs_list[] = { 2121 {"state", drm_state_info, 0}, 2122 }; 2123 2124 void drm_atomic_debugfs_init(struct drm_device *dev) 2125 { 2126 drm_debugfs_add_files(dev, drm_atomic_debugfs_list, 2127 ARRAY_SIZE(drm_atomic_debugfs_list)); 2128 } 2129 #endif 2130