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