1 /* 2 * Copyright (C) 2014 Red Hat 3 * Copyright (C) 2014 Intel Corp. 4 * 5 * Permission is hereby granted, free of charge, to any person obtaining a 6 * copy of this software and associated documentation files (the "Software"), 7 * to deal in the Software without restriction, including without limitation 8 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 9 * and/or sell copies of the Software, and to permit persons to whom the 10 * Software is furnished to do so, subject to the following conditions: 11 * 12 * The above copyright notice and this permission notice shall be included in 13 * all copies or substantial portions of the Software. 14 * 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 21 * OTHER DEALINGS IN THE SOFTWARE. 22 * 23 * Authors: 24 * Rob Clark <robdclark@gmail.com> 25 * Daniel Vetter <daniel.vetter@ffwll.ch> 26 */ 27 28 #ifndef DRM_ATOMIC_H_ 29 #define DRM_ATOMIC_H_ 30 31 #include <drm/drm_crtc.h> 32 #include <drm/drm_util.h> 33 34 /** 35 * struct drm_crtc_commit - track modeset commits on a CRTC 36 * 37 * This structure is used to track pending modeset changes and atomic commit on 38 * a per-CRTC basis. Since updating the list should never block, this structure 39 * is reference counted to allow waiters to safely wait on an event to complete, 40 * without holding any locks. 41 * 42 * It has 3 different events in total to allow a fine-grained synchronization 43 * between outstanding updates:: 44 * 45 * atomic commit thread hardware 46 * 47 * write new state into hardware ----> ... 48 * signal hw_done 49 * switch to new state on next 50 * ... v/hblank 51 * 52 * wait for buffers to show up ... 53 * 54 * ... send completion irq 55 * irq handler signals flip_done 56 * cleanup old buffers 57 * 58 * signal cleanup_done 59 * 60 * wait for flip_done <---- 61 * clean up atomic state 62 * 63 * The important bit to know is that &cleanup_done is the terminal event, but the 64 * ordering between &flip_done and &hw_done is entirely up to the specific driver 65 * and modeset state change. 66 * 67 * For an implementation of how to use this look at 68 * drm_atomic_helper_setup_commit() from the atomic helper library. 69 * 70 * See also drm_crtc_commit_wait(). 71 */ 72 struct drm_crtc_commit { 73 /** 74 * @crtc: 75 * 76 * DRM CRTC for this commit. 77 */ 78 struct drm_crtc *crtc; 79 80 /** 81 * @ref: 82 * 83 * Reference count for this structure. Needed to allow blocking on 84 * completions without the risk of the completion disappearing 85 * meanwhile. 86 */ 87 struct kref ref; 88 89 /** 90 * @flip_done: 91 * 92 * Will be signaled when the hardware has flipped to the new set of 93 * buffers. Signals at the same time as when the drm event for this 94 * commit is sent to userspace, or when an out-fence is singalled. Note 95 * that for most hardware, in most cases this happens after @hw_done is 96 * signalled. 97 * 98 * Completion of this stage is signalled implicitly by calling 99 * drm_crtc_send_vblank_event() on &drm_crtc_state.event. 100 */ 101 struct completion flip_done; 102 103 /** 104 * @hw_done: 105 * 106 * Will be signalled when all hw register changes for this commit have 107 * been written out. Especially when disabling a pipe this can be much 108 * later than @flip_done, since that can signal already when the 109 * screen goes black, whereas to fully shut down a pipe more register 110 * I/O is required. 111 * 112 * Note that this does not need to include separately reference-counted 113 * resources like backing storage buffer pinning, or runtime pm 114 * management. 115 * 116 * Drivers should call drm_atomic_helper_commit_hw_done() to signal 117 * completion of this stage. 118 */ 119 struct completion hw_done; 120 121 /** 122 * @cleanup_done: 123 * 124 * Will be signalled after old buffers have been cleaned up by calling 125 * drm_atomic_helper_cleanup_planes(). Since this can only happen after 126 * a vblank wait completed it might be a bit later. This completion is 127 * useful to throttle updates and avoid hardware updates getting ahead 128 * of the buffer cleanup too much. 129 * 130 * Drivers should call drm_atomic_helper_commit_cleanup_done() to signal 131 * completion of this stage. 132 */ 133 struct completion cleanup_done; 134 135 /** 136 * @commit_entry: 137 * 138 * Entry on the per-CRTC &drm_crtc.commit_list. Protected by 139 * $drm_crtc.commit_lock. 140 */ 141 struct list_head commit_entry; 142 143 /** 144 * @event: 145 * 146 * &drm_pending_vblank_event pointer to clean up private events. 147 */ 148 struct drm_pending_vblank_event *event; 149 150 /** 151 * @abort_completion: 152 * 153 * A flag that's set after drm_atomic_helper_setup_commit() takes a 154 * second reference for the completion of $drm_crtc_state.event. It's 155 * used by the free code to remove the second reference if commit fails. 156 */ 157 bool abort_completion; 158 }; 159 160 struct __drm_colorops_state { 161 struct drm_colorop *ptr; 162 struct drm_colorop_state *state, *old_state, *new_state; 163 }; 164 165 struct __drm_planes_state { 166 struct drm_plane *ptr; 167 168 /** 169 * @state_to_destroy: 170 * 171 * Used to track the @drm_plane_state we will need to free when 172 * tearing down the associated &drm_atomic_state in 173 * $drm_mode_config_funcs.atomic_state_clear or 174 * drm_atomic_state_default_clear(). 175 * 176 * Before a commit, and the call to 177 * drm_atomic_helper_swap_state() in particular, it points to 178 * the same state than @new_state. After a commit, it points to 179 * the same state than @old_state. 180 */ 181 struct drm_plane_state *state_to_destroy; 182 183 struct drm_plane_state *old_state, *new_state; 184 }; 185 186 struct __drm_crtcs_state { 187 struct drm_crtc *ptr; 188 189 /** 190 * @state_to_destroy: 191 * 192 * Used to track the @drm_crtc_state we will need to free when 193 * tearing down the associated &drm_atomic_state in 194 * $drm_mode_config_funcs.atomic_state_clear or 195 * drm_atomic_state_default_clear(). 196 * 197 * Before a commit, and the call to 198 * drm_atomic_helper_swap_state() in particular, it points to 199 * the same state than @new_state. After a commit, it points to 200 * the same state than @old_state. 201 */ 202 struct drm_crtc_state *state_to_destroy; 203 204 struct drm_crtc_state *old_state, *new_state; 205 206 /** 207 * @commit: 208 * 209 * A reference to the CRTC commit object that is kept for use by 210 * drm_atomic_helper_wait_for_flip_done() after 211 * drm_atomic_helper_commit_hw_done() is called. This ensures that a 212 * concurrent commit won't free a commit object that is still in use. 213 */ 214 struct drm_crtc_commit *commit; 215 216 s32 __user *out_fence_ptr; 217 u64 last_vblank_count; 218 }; 219 220 struct __drm_connnectors_state { 221 struct drm_connector *ptr; 222 223 /** 224 * @state_to_destroy: 225 * 226 * Used to track the @drm_connector_state we will need to free 227 * when tearing down the associated &drm_atomic_state in 228 * $drm_mode_config_funcs.atomic_state_clear or 229 * drm_atomic_state_default_clear(). 230 * 231 * Before a commit, and the call to 232 * drm_atomic_helper_swap_state() in particular, it points to 233 * the same state than @new_state. After a commit, it points to 234 * the same state than @old_state. 235 */ 236 struct drm_connector_state *state_to_destroy; 237 238 struct drm_connector_state *old_state, *new_state; 239 240 /** 241 * @out_fence_ptr: 242 * 243 * User-provided pointer which the kernel uses to return a sync_file 244 * file descriptor. Used by writeback connectors to signal completion of 245 * the writeback. 246 */ 247 s32 __user *out_fence_ptr; 248 }; 249 250 struct drm_private_obj; 251 struct drm_private_state; 252 253 /** 254 * struct drm_private_state_funcs - atomic state functions for private objects 255 * 256 * These hooks are used by atomic helpers to create, swap and destroy states of 257 * private objects. The structure itself is used as a vtable to identify the 258 * associated private object type. Each private object type that needs to be 259 * added to the atomic states is expected to have an implementation of these 260 * hooks and pass a pointer to its drm_private_state_funcs struct to 261 * drm_atomic_get_private_obj_state(). 262 */ 263 struct drm_private_state_funcs { 264 /** 265 * @atomic_create_state: 266 * 267 * Allocates a pristine, initialized, state for the private 268 * object and returns it. 269 * 270 * RETURNS: 271 * 272 * A new, pristine, private state instance or an error pointer 273 * on failure. 274 */ 275 struct drm_private_state *(*atomic_create_state)(struct drm_private_obj *obj); 276 277 /** 278 * @atomic_duplicate_state: 279 * 280 * Duplicate the current state of the private object and return it. It 281 * is an error to call this before obj->state has been initialized. 282 * 283 * RETURNS: 284 * 285 * Duplicated atomic state or NULL when obj->state is not 286 * initialized or allocation failed. 287 */ 288 struct drm_private_state *(*atomic_duplicate_state)(struct drm_private_obj *obj); 289 290 /** 291 * @atomic_destroy_state: 292 * 293 * Frees the private object state created with @atomic_duplicate_state. 294 */ 295 void (*atomic_destroy_state)(struct drm_private_obj *obj, 296 struct drm_private_state *state); 297 298 /** 299 * @atomic_print_state: 300 * 301 * If driver subclasses &struct drm_private_state, it should implement 302 * this optional hook for printing additional driver specific state. 303 * 304 * Do not call this directly, use drm_atomic_private_obj_print_state() 305 * instead. 306 */ 307 void (*atomic_print_state)(struct drm_printer *p, 308 const struct drm_private_state *state); 309 }; 310 311 /** 312 * struct drm_private_obj - base struct for driver private atomic object 313 * 314 * A driver private object is initialized by calling 315 * drm_atomic_private_obj_init() and cleaned up by calling 316 * drm_atomic_private_obj_fini(). 317 * 318 * Currently only tracks the state update functions and the opaque driver 319 * private state itself, but in the future might also track which 320 * &drm_modeset_lock is required to duplicate and update this object's state. 321 * 322 * All private objects must be initialized before the DRM device they are 323 * attached to is registered to the DRM subsystem (call to drm_dev_register()) 324 * and should stay around until this DRM device is unregistered (call to 325 * drm_dev_unregister()). In other words, private objects lifetime is tied 326 * to the DRM device lifetime. This implies that: 327 * 328 * 1/ all calls to drm_atomic_private_obj_init() must be done before calling 329 * drm_dev_register() 330 * 2/ all calls to drm_atomic_private_obj_fini() must be done after calling 331 * drm_dev_unregister() 332 * 333 * If that private object is used to store a state shared by multiple 334 * CRTCs, proper care must be taken to ensure that non-blocking commits are 335 * properly ordered to avoid a use-after-free issue. 336 * 337 * Indeed, assuming a sequence of two non-blocking &drm_atomic_commit on two 338 * different &drm_crtc using different &drm_plane and &drm_connector, so with no 339 * resources shared, there's no guarantee on which commit is going to happen 340 * first. However, the second &drm_atomic_commit will consider the first 341 * &drm_private_obj its old state, and will be in charge of freeing it whenever 342 * the second &drm_atomic_commit is done. 343 * 344 * If the first &drm_atomic_commit happens after it, it will consider its 345 * &drm_private_obj the new state and will be likely to access it, resulting in 346 * an access to a freed memory region. Drivers should store (and get a reference 347 * to) the &drm_crtc_commit structure in our private state in 348 * &drm_mode_config_helper_funcs.atomic_commit_setup, and then wait for that 349 * commit to complete as the first step of 350 * &drm_mode_config_helper_funcs.atomic_commit_tail, similar to 351 * drm_atomic_helper_wait_for_dependencies(). 352 */ 353 struct drm_private_obj { 354 /** 355 * @dev: parent DRM device 356 */ 357 struct drm_device *dev; 358 359 /** 360 * @head: List entry used to attach a private object to a &drm_device 361 * (queued to &drm_mode_config.privobj_list). 362 */ 363 struct list_head head; 364 365 /** 366 * @lock: Modeset lock to protect the state object. 367 */ 368 struct drm_modeset_lock lock; 369 370 /** 371 * @state: Current atomic state for this driver private object. 372 */ 373 struct drm_private_state *state; 374 375 /** 376 * @funcs: 377 * 378 * Functions to manipulate the state of this driver private object, see 379 * &drm_private_state_funcs. 380 */ 381 const struct drm_private_state_funcs *funcs; 382 }; 383 384 /** 385 * drm_for_each_privobj() - private object iterator 386 * 387 * @privobj: pointer to the current private object. Updated after each 388 * iteration 389 * @dev: the DRM device we want get private objects from 390 * 391 * Allows one to iterate over all private objects attached to @dev 392 */ 393 #define drm_for_each_privobj(privobj, dev) \ 394 list_for_each_entry(privobj, &(dev)->mode_config.privobj_list, head) 395 396 /** 397 * struct drm_private_state - base struct for driver private object state 398 * 399 * Currently only contains a backpointer to the overall atomic update, 400 * and the relevant private object but in the future also might hold 401 * synchronization information similar to e.g. &drm_crtc.commit. 402 */ 403 struct drm_private_state { 404 /** 405 * @state: backpointer to global drm_atomic_state 406 */ 407 struct drm_atomic_state *state; 408 409 /** 410 * @obj: backpointer to the private object 411 */ 412 struct drm_private_obj *obj; 413 }; 414 415 struct __drm_private_objs_state { 416 struct drm_private_obj *ptr; 417 418 /** 419 * @state_to_destroy: 420 * 421 * Used to track the @drm_private_state we will need to free 422 * when tearing down the associated &drm_atomic_state in 423 * $drm_mode_config_funcs.atomic_state_clear or 424 * drm_atomic_state_default_clear(). 425 * 426 * Before a commit, and the call to 427 * drm_atomic_helper_swap_state() in particular, it points to 428 * the same state than @new_state. After a commit, it points to 429 * the same state than @old_state. 430 */ 431 struct drm_private_state *state_to_destroy; 432 433 struct drm_private_state *old_state, *new_state; 434 }; 435 436 /** 437 * struct drm_atomic_state - Atomic commit structure 438 * 439 * This structure is the kernel counterpart of @drm_mode_atomic and represents 440 * an atomic commit that transitions from an old to a new display state. It 441 * contains all the objects affected by the atomic commit and both the new 442 * state structures and pointers to the old state structures for 443 * these. 444 * 445 * States are added to an atomic update by calling drm_atomic_get_crtc_state(), 446 * drm_atomic_get_plane_state(), drm_atomic_get_connector_state(), or for 447 * private state structures, drm_atomic_get_private_obj_state(). 448 * 449 * NOTE: struct drm_atomic_state first started as a single collection of 450 * entities state pointers (drm_plane_state, drm_crtc_state, etc.). 451 * 452 * At atomic_check time, you could get the state about to be committed 453 * from drm_atomic_state, and the one currently running from the 454 * entities state pointer (drm_crtc.state, for example). After the call 455 * to drm_atomic_helper_swap_state(), the entities state pointer would 456 * contain the state previously checked, and the drm_atomic_state 457 * structure the old state. 458 * 459 * Over time, and in order to avoid confusion, drm_atomic_state has 460 * grown to have both the old state (ie, the state we replace) and the 461 * new state (ie, the state we want to apply). Those names are stable 462 * during the commit process, which makes it easier to reason about. 463 * 464 * You can still find some traces of that evolution through some hooks 465 * or callbacks taking a drm_atomic_state parameter called names like 466 * "old_state". This doesn't necessarily mean that the previous 467 * drm_atomic_state is passed, but rather that this used to be the state 468 * collection we were replacing after drm_atomic_helper_swap_state(), 469 * but the variable name was never updated. 470 * 471 * Some atomic operations implementations followed a similar process. We 472 * first started to pass the entity state only. However, it was pretty 473 * cumbersome for drivers, and especially CRTCs, to retrieve the states 474 * of other components. Thus, we switched to passing the whole 475 * drm_atomic_state as a parameter to those operations. Similarly, the 476 * transition isn't complete yet, and one might still find atomic 477 * operations taking a drm_atomic_state pointer, or a component state 478 * pointer. The former is the preferred form. 479 */ 480 struct drm_atomic_state { 481 /** 482 * @ref: 483 * 484 * Count of all references to this update (will not be freed until zero). 485 */ 486 struct kref ref; 487 488 /** 489 * @dev: Parent DRM Device. 490 */ 491 struct drm_device *dev; 492 493 /** 494 * @allow_modeset: 495 * 496 * Allow full modeset. This is used by the ATOMIC IOCTL handler to 497 * implement the DRM_MODE_ATOMIC_ALLOW_MODESET flag. Drivers should 498 * generally not consult this flag, but instead look at the output of 499 * drm_atomic_crtc_needs_modeset(). The detailed rules are: 500 * 501 * - Drivers must not consult @allow_modeset in the atomic commit path. 502 * Use drm_atomic_crtc_needs_modeset() instead. 503 * 504 * - Drivers must consult @allow_modeset before adding unrelated struct 505 * drm_crtc_state to this commit by calling 506 * drm_atomic_get_crtc_state(). See also the warning in the 507 * documentation for that function. 508 * 509 * - Drivers must never change this flag, it is under the exclusive 510 * control of userspace. 511 * 512 * - Drivers may consult @allow_modeset in the atomic check path, if 513 * they have the choice between an optimal hardware configuration 514 * which requires a modeset, and a less optimal configuration which 515 * can be committed without a modeset. An example would be suboptimal 516 * scanout FIFO allocation resulting in increased idle power 517 * consumption. This allows userspace to avoid flickering and delays 518 * for the normal composition loop at reasonable cost. 519 */ 520 bool allow_modeset : 1; 521 /** 522 * @legacy_cursor_update: 523 * 524 * Hint to enforce legacy cursor IOCTL semantics. 525 * 526 * WARNING: This is thoroughly broken and pretty much impossible to 527 * implement correctly. Drivers must ignore this and should instead 528 * implement &drm_plane_helper_funcs.atomic_async_check and 529 * &drm_plane_helper_funcs.atomic_async_commit hooks. New users of this 530 * flag are not allowed. 531 */ 532 bool legacy_cursor_update : 1; 533 534 /** 535 * @async_update: hint for asynchronous plane update 536 */ 537 bool async_update : 1; 538 539 /** 540 * @duplicated: 541 * 542 * Indicates whether or not this atomic state was duplicated using 543 * drm_atomic_helper_duplicate_state(). Drivers and atomic helpers 544 * should use this to fixup normal inconsistencies in duplicated 545 * states. 546 */ 547 bool duplicated : 1; 548 549 /** 550 * @checked: 551 * 552 * Indicates the state has been checked and thus must no longer 553 * be mutated. For internal use only, do not consult from drivers. 554 */ 555 bool checked : 1; 556 557 /** 558 * @plane_color_pipeline: 559 * 560 * Indicates whether this atomic state originated with a client that 561 * set the DRM_CLIENT_CAP_PLANE_COLOR_PIPELINE. 562 * 563 * Drivers and helper functions should use this to ignore legacy 564 * properties that are incompatible with the drm_plane COLOR_PIPELINE 565 * behavior, such as: 566 * 567 * - COLOR_RANGE 568 * - COLOR_ENCODING 569 * 570 * or any other driver-specific properties that might affect pixel 571 * values. 572 */ 573 bool plane_color_pipeline : 1; 574 575 /** 576 * @colorops: 577 * 578 * Pointer to array of @drm_colorop and @drm_colorop_state part of this 579 * update. 580 */ 581 struct __drm_colorops_state *colorops; 582 583 /** 584 * @planes: 585 * 586 * Pointer to array of @drm_plane and @drm_plane_state part of this 587 * update. 588 */ 589 struct __drm_planes_state *planes; 590 591 /** 592 * @crtcs: 593 * 594 * Pointer to array of @drm_crtc and @drm_crtc_state part of this 595 * update. 596 */ 597 struct __drm_crtcs_state *crtcs; 598 599 /** 600 * @num_connector: size of the @connectors array 601 */ 602 int num_connector; 603 604 /** 605 * @connectors: 606 * 607 * Pointer to array of @drm_connector and @drm_connector_state part of 608 * this update. 609 */ 610 struct __drm_connnectors_state *connectors; 611 612 /** 613 * @num_private_objs: size of the @private_objs array 614 */ 615 int num_private_objs; 616 617 /** 618 * @private_objs: 619 * 620 * Pointer to array of @drm_private_obj and @drm_private_obj_state part 621 * of this update. 622 */ 623 struct __drm_private_objs_state *private_objs; 624 625 /** 626 * @acquire_ctx: acquire context for this atomic modeset state update 627 */ 628 struct drm_modeset_acquire_ctx *acquire_ctx; 629 630 /** 631 * @fake_commit: 632 * 633 * Used for signaling unbound planes/connectors. 634 * When a connector or plane is not bound to any CRTC, it's still important 635 * to preserve linearity to prevent the atomic states from being freed too early. 636 * 637 * This commit (if set) is not bound to any CRTC, but will be completed when 638 * drm_atomic_helper_commit_hw_done() is called. 639 */ 640 struct drm_crtc_commit *fake_commit; 641 642 /** 643 * @commit_work: 644 * 645 * Work item which can be used by the driver or helpers to execute the 646 * commit without blocking. 647 */ 648 struct work_struct commit_work; 649 }; 650 651 void __drm_crtc_commit_free(struct kref *kref); 652 653 /** 654 * drm_crtc_commit_get - acquire a reference to the CRTC commit 655 * @commit: CRTC commit 656 * 657 * Increases the reference of @commit. 658 * 659 * Returns: 660 * The pointer to @commit, with reference increased. 661 */ 662 static inline struct drm_crtc_commit *drm_crtc_commit_get(struct drm_crtc_commit *commit) 663 { 664 kref_get(&commit->ref); 665 return commit; 666 } 667 668 /** 669 * drm_crtc_commit_put - release a reference to the CRTC commmit 670 * @commit: CRTC commit 671 * 672 * This releases a reference to @commit which is freed after removing the 673 * final reference. No locking required and callable from any context. 674 */ 675 static inline void drm_crtc_commit_put(struct drm_crtc_commit *commit) 676 { 677 kref_put(&commit->ref, __drm_crtc_commit_free); 678 } 679 680 int drm_crtc_commit_wait(struct drm_crtc_commit *commit); 681 682 struct drm_atomic_state * __must_check 683 drm_atomic_state_alloc(struct drm_device *dev); 684 void drm_atomic_state_clear(struct drm_atomic_state *state); 685 686 /** 687 * drm_atomic_state_get - acquire a reference to the atomic state 688 * @state: The atomic state 689 * 690 * Returns a new reference to the @state 691 */ 692 static inline struct drm_atomic_state * 693 drm_atomic_state_get(struct drm_atomic_state *state) 694 { 695 kref_get(&state->ref); 696 return state; 697 } 698 699 void __drm_atomic_state_free(struct kref *ref); 700 701 /** 702 * drm_atomic_state_put - release a reference to the atomic state 703 * @state: The atomic state 704 * 705 * This releases a reference to @state which is freed after removing the 706 * final reference. No locking required and callable from any context. 707 */ 708 static inline void drm_atomic_state_put(struct drm_atomic_state *state) 709 { 710 kref_put(&state->ref, __drm_atomic_state_free); 711 } 712 713 int __must_check 714 drm_atomic_state_init(struct drm_device *dev, struct drm_atomic_state *state); 715 void drm_atomic_state_default_clear(struct drm_atomic_state *state); 716 void drm_atomic_state_default_release(struct drm_atomic_state *state); 717 718 struct drm_crtc_state * __must_check 719 drm_atomic_get_crtc_state(struct drm_atomic_state *state, 720 struct drm_crtc *crtc); 721 struct drm_plane_state * __must_check 722 drm_atomic_get_plane_state(struct drm_atomic_state *state, 723 struct drm_plane *plane); 724 struct drm_colorop_state * 725 drm_atomic_get_colorop_state(struct drm_atomic_state *state, 726 struct drm_colorop *colorop); 727 728 struct drm_colorop_state * 729 drm_atomic_get_old_colorop_state(struct drm_atomic_state *state, 730 struct drm_colorop *colorop); 731 struct drm_colorop_state * 732 drm_atomic_get_new_colorop_state(struct drm_atomic_state *state, 733 struct drm_colorop *colorop); 734 735 struct drm_connector_state * __must_check 736 drm_atomic_get_connector_state(struct drm_atomic_state *state, 737 struct drm_connector *connector); 738 739 int drm_atomic_private_obj_init(struct drm_device *dev, 740 struct drm_private_obj *obj, 741 const struct drm_private_state_funcs *funcs); 742 void drm_atomic_private_obj_fini(struct drm_private_obj *obj); 743 744 struct drm_private_state * __must_check 745 drm_atomic_get_private_obj_state(struct drm_atomic_state *state, 746 struct drm_private_obj *obj); 747 struct drm_private_state * 748 drm_atomic_get_old_private_obj_state(const struct drm_atomic_state *state, 749 struct drm_private_obj *obj); 750 struct drm_private_state * 751 drm_atomic_get_new_private_obj_state(const struct drm_atomic_state *state, 752 struct drm_private_obj *obj); 753 754 struct drm_connector * 755 drm_atomic_get_old_connector_for_encoder(const struct drm_atomic_state *state, 756 struct drm_encoder *encoder); 757 struct drm_connector * 758 drm_atomic_get_new_connector_for_encoder(const struct drm_atomic_state *state, 759 struct drm_encoder *encoder); 760 struct drm_connector * 761 drm_atomic_get_connector_for_encoder(const struct drm_encoder *encoder, 762 struct drm_modeset_acquire_ctx *ctx); 763 764 struct drm_crtc * 765 drm_atomic_get_old_crtc_for_encoder(struct drm_atomic_state *state, 766 struct drm_encoder *encoder); 767 struct drm_crtc * 768 drm_atomic_get_new_crtc_for_encoder(struct drm_atomic_state *state, 769 struct drm_encoder *encoder); 770 771 /** 772 * drm_atomic_get_old_crtc_state - get old CRTC state, if it exists 773 * @state: global atomic state object 774 * @crtc: CRTC to grab 775 * 776 * This function returns the old CRTC state for the given CRTC, or 777 * NULL if the CRTC is not part of the global atomic state. 778 */ 779 static inline struct drm_crtc_state * 780 drm_atomic_get_old_crtc_state(const struct drm_atomic_state *state, 781 struct drm_crtc *crtc) 782 { 783 return state->crtcs[drm_crtc_index(crtc)].old_state; 784 } 785 /** 786 * drm_atomic_get_new_crtc_state - get new CRTC state, if it exists 787 * @state: global atomic state object 788 * @crtc: CRTC to grab 789 * 790 * This function returns the new CRTC state for the given CRTC, or 791 * NULL if the CRTC is not part of the global atomic state. 792 */ 793 static inline struct drm_crtc_state * 794 drm_atomic_get_new_crtc_state(const struct drm_atomic_state *state, 795 struct drm_crtc *crtc) 796 { 797 return state->crtcs[drm_crtc_index(crtc)].new_state; 798 } 799 800 /** 801 * drm_atomic_get_old_plane_state - get plane state, if it exists 802 * @state: global atomic state object 803 * @plane: plane to grab 804 * 805 * This function returns the old plane state for the given plane, or 806 * NULL if the plane is not part of the global atomic state. 807 */ 808 static inline struct drm_plane_state * 809 drm_atomic_get_old_plane_state(const struct drm_atomic_state *state, 810 struct drm_plane *plane) 811 { 812 return state->planes[drm_plane_index(plane)].old_state; 813 } 814 815 /** 816 * drm_atomic_get_new_plane_state - get plane state, if it exists 817 * @state: global atomic state object 818 * @plane: plane to grab 819 * 820 * This function returns the new plane state for the given plane, or 821 * NULL if the plane is not part of the global atomic state. 822 */ 823 static inline struct drm_plane_state * 824 drm_atomic_get_new_plane_state(const struct drm_atomic_state *state, 825 struct drm_plane *plane) 826 { 827 return state->planes[drm_plane_index(plane)].new_state; 828 } 829 830 /** 831 * drm_atomic_get_old_connector_state - get connector state, if it exists 832 * @state: global atomic state object 833 * @connector: connector to grab 834 * 835 * This function returns the old connector state for the given connector, 836 * or NULL if the connector is not part of the global atomic state. 837 */ 838 static inline struct drm_connector_state * 839 drm_atomic_get_old_connector_state(const struct drm_atomic_state *state, 840 struct drm_connector *connector) 841 { 842 int index = drm_connector_index(connector); 843 844 if (index >= state->num_connector) 845 return NULL; 846 847 return state->connectors[index].old_state; 848 } 849 850 /** 851 * drm_atomic_get_new_connector_state - get connector state, if it exists 852 * @state: global atomic state object 853 * @connector: connector to grab 854 * 855 * This function returns the new connector state for the given connector, 856 * or NULL if the connector is not part of the global atomic state. 857 */ 858 static inline struct drm_connector_state * 859 drm_atomic_get_new_connector_state(const struct drm_atomic_state *state, 860 struct drm_connector *connector) 861 { 862 int index = drm_connector_index(connector); 863 864 if (index >= state->num_connector) 865 return NULL; 866 867 return state->connectors[index].new_state; 868 } 869 870 /** 871 * __drm_atomic_get_current_plane_state - get current plane state 872 * @state: global atomic state object 873 * @plane: plane to grab 874 * 875 * This function returns the plane state for the given plane, either the 876 * new plane state from @state, or if the plane isn't part of the atomic 877 * state update, from @plane. This is useful in atomic check callbacks, 878 * when drivers need to peek at, but not change, state of other planes, 879 * since it avoids threading an error code back up the call chain. 880 * 881 * WARNING: 882 * 883 * Note that this function is in general unsafe since it doesn't check for the 884 * required locking for access state structures. Drivers must ensure that it is 885 * safe to access the returned state structure through other means. One common 886 * example is when planes are fixed to a single CRTC, and the driver knows that 887 * the CRTC lock is held already. In that case holding the CRTC lock gives a 888 * read-lock on all planes connected to that CRTC. But if planes can be 889 * reassigned things get more tricky. In that case it's better to use 890 * drm_atomic_get_plane_state and wire up full error handling. 891 * 892 * Returns: 893 * 894 * Read-only pointer to the current plane state. 895 */ 896 static inline const struct drm_plane_state * 897 __drm_atomic_get_current_plane_state(const struct drm_atomic_state *state, 898 struct drm_plane *plane) 899 { 900 struct drm_plane_state *plane_state; 901 902 plane_state = drm_atomic_get_new_plane_state(state, plane); 903 if (plane_state) 904 return plane_state; 905 906 /* 907 * If the plane isn't part of the state, fallback to the currently active one. 908 */ 909 return plane->state; 910 } 911 912 int __must_check 913 drm_atomic_add_encoder_bridges(struct drm_atomic_state *state, 914 struct drm_encoder *encoder); 915 int __must_check 916 drm_atomic_add_affected_connectors(struct drm_atomic_state *state, 917 struct drm_crtc *crtc); 918 int __must_check 919 drm_atomic_add_affected_planes(struct drm_atomic_state *state, 920 struct drm_crtc *crtc); 921 int __must_check 922 drm_atomic_add_affected_colorops(struct drm_atomic_state *state, 923 struct drm_plane *plane); 924 925 int __must_check drm_atomic_check_only(struct drm_atomic_state *state); 926 int __must_check drm_atomic_commit(struct drm_atomic_state *state); 927 int __must_check drm_atomic_nonblocking_commit(struct drm_atomic_state *state); 928 929 void drm_state_dump(struct drm_device *dev, struct drm_printer *p); 930 931 /** 932 * for_each_oldnew_connector_in_state - iterate over all connectors in an atomic update 933 * @__state: &struct drm_atomic_state pointer 934 * @connector: &struct drm_connector iteration cursor 935 * @old_connector_state: &struct drm_connector_state iteration cursor for the 936 * old state 937 * @new_connector_state: &struct drm_connector_state iteration cursor for the 938 * new state 939 * @__i: int iteration cursor, for macro-internal use 940 * 941 * This iterates over all connectors in an atomic update, tracking both old and 942 * new state. This is useful in places where the state delta needs to be 943 * considered, for example in atomic check functions. 944 */ 945 #define for_each_oldnew_connector_in_state(__state, connector, old_connector_state, new_connector_state, __i) \ 946 for ((__i) = 0; \ 947 (__i) < (__state)->num_connector; \ 948 (__i)++) \ 949 for_each_if ((__state)->connectors[__i].ptr && \ 950 ((connector) = (__state)->connectors[__i].ptr, \ 951 (void)(connector) /* Only to avoid unused-but-set-variable warning */, \ 952 (old_connector_state) = (__state)->connectors[__i].old_state, \ 953 (new_connector_state) = (__state)->connectors[__i].new_state, 1)) 954 955 /** 956 * for_each_old_connector_in_state - iterate over all connectors in an atomic update 957 * @__state: &struct drm_atomic_state pointer 958 * @connector: &struct drm_connector iteration cursor 959 * @old_connector_state: &struct drm_connector_state iteration cursor for the 960 * old state 961 * @__i: int iteration cursor, for macro-internal use 962 * 963 * This iterates over all connectors in an atomic update, tracking only the old 964 * state. This is useful in disable functions, where we need the old state the 965 * hardware is still in. 966 */ 967 #define for_each_old_connector_in_state(__state, connector, old_connector_state, __i) \ 968 for ((__i) = 0; \ 969 (__i) < (__state)->num_connector; \ 970 (__i)++) \ 971 for_each_if ((__state)->connectors[__i].ptr && \ 972 ((connector) = (__state)->connectors[__i].ptr, \ 973 (void)(connector) /* Only to avoid unused-but-set-variable warning */, \ 974 (old_connector_state) = (__state)->connectors[__i].old_state, 1)) 975 976 /** 977 * for_each_new_connector_in_state - iterate over all connectors in an atomic update 978 * @__state: &struct drm_atomic_state pointer 979 * @connector: &struct drm_connector iteration cursor 980 * @new_connector_state: &struct drm_connector_state iteration cursor for the 981 * new state 982 * @__i: int iteration cursor, for macro-internal use 983 * 984 * This iterates over all connectors in an atomic update, tracking only the new 985 * state. This is useful in enable functions, where we need the new state the 986 * hardware should be in when the atomic commit operation has completed. 987 */ 988 #define for_each_new_connector_in_state(__state, connector, new_connector_state, __i) \ 989 for ((__i) = 0; \ 990 (__i) < (__state)->num_connector; \ 991 (__i)++) \ 992 for_each_if ((__state)->connectors[__i].ptr && \ 993 ((connector) = (__state)->connectors[__i].ptr, \ 994 (void)(connector) /* Only to avoid unused-but-set-variable warning */, \ 995 (new_connector_state) = (__state)->connectors[__i].new_state, \ 996 (void)(new_connector_state) /* Only to avoid unused-but-set-variable warning */, 1)) 997 998 /** 999 * for_each_oldnew_crtc_in_state - iterate over all CRTCs in an atomic update 1000 * @__state: &struct drm_atomic_state pointer 1001 * @crtc: &struct drm_crtc iteration cursor 1002 * @old_crtc_state: &struct drm_crtc_state iteration cursor for the old state 1003 * @new_crtc_state: &struct drm_crtc_state iteration cursor for the new state 1004 * @__i: int iteration cursor, for macro-internal use 1005 * 1006 * This iterates over all CRTCs in an atomic update, tracking both old and 1007 * new state. This is useful in places where the state delta needs to be 1008 * considered, for example in atomic check functions. 1009 */ 1010 #define for_each_oldnew_crtc_in_state(__state, crtc, old_crtc_state, new_crtc_state, __i) \ 1011 for ((__i) = 0; \ 1012 (__i) < (__state)->dev->mode_config.num_crtc; \ 1013 (__i)++) \ 1014 for_each_if ((__state)->crtcs[__i].ptr && \ 1015 ((crtc) = (__state)->crtcs[__i].ptr, \ 1016 (void)(crtc) /* Only to avoid unused-but-set-variable warning */, \ 1017 (old_crtc_state) = (__state)->crtcs[__i].old_state, \ 1018 (void)(old_crtc_state) /* Only to avoid unused-but-set-variable warning */, \ 1019 (new_crtc_state) = (__state)->crtcs[__i].new_state, \ 1020 (void)(new_crtc_state) /* Only to avoid unused-but-set-variable warning */, 1)) 1021 1022 /** 1023 * for_each_old_crtc_in_state - iterate over all CRTCs in an atomic update 1024 * @__state: &struct drm_atomic_state pointer 1025 * @crtc: &struct drm_crtc iteration cursor 1026 * @old_crtc_state: &struct drm_crtc_state iteration cursor for the old state 1027 * @__i: int iteration cursor, for macro-internal use 1028 * 1029 * This iterates over all CRTCs in an atomic update, tracking only the old 1030 * state. This is useful in disable functions, where we need the old state the 1031 * hardware is still in. 1032 */ 1033 #define for_each_old_crtc_in_state(__state, crtc, old_crtc_state, __i) \ 1034 for ((__i) = 0; \ 1035 (__i) < (__state)->dev->mode_config.num_crtc; \ 1036 (__i)++) \ 1037 for_each_if ((__state)->crtcs[__i].ptr && \ 1038 ((crtc) = (__state)->crtcs[__i].ptr, \ 1039 (void)(crtc) /* Only to avoid unused-but-set-variable warning */, \ 1040 (old_crtc_state) = (__state)->crtcs[__i].old_state, 1)) 1041 1042 /** 1043 * for_each_new_crtc_in_state - iterate over all CRTCs in an atomic update 1044 * @__state: &struct drm_atomic_state pointer 1045 * @crtc: &struct drm_crtc iteration cursor 1046 * @new_crtc_state: &struct drm_crtc_state iteration cursor for the new state 1047 * @__i: int iteration cursor, for macro-internal use 1048 * 1049 * This iterates over all CRTCs in an atomic update, tracking only the new 1050 * state. This is useful in enable functions, where we need the new state the 1051 * hardware should be in when the atomic commit operation has completed. 1052 */ 1053 #define for_each_new_crtc_in_state(__state, crtc, new_crtc_state, __i) \ 1054 for ((__i) = 0; \ 1055 (__i) < (__state)->dev->mode_config.num_crtc; \ 1056 (__i)++) \ 1057 for_each_if ((__state)->crtcs[__i].ptr && \ 1058 ((crtc) = (__state)->crtcs[__i].ptr, \ 1059 (void)(crtc) /* Only to avoid unused-but-set-variable warning */, \ 1060 (new_crtc_state) = (__state)->crtcs[__i].new_state, \ 1061 (void)(new_crtc_state) /* Only to avoid unused-but-set-variable warning */, 1)) 1062 1063 /** 1064 * for_each_oldnew_colorop_in_state - iterate over all colorops in an atomic update 1065 * @__state: &struct drm_atomic_state pointer 1066 * @colorop: &struct drm_colorop iteration cursor 1067 * @old_colorop_state: &struct drm_colorop_state iteration cursor for the old state 1068 * @new_colorop_state: &struct drm_colorop_state iteration cursor for the new state 1069 * @__i: int iteration cursor, for macro-internal use 1070 * 1071 * This iterates over all colorops in an atomic update, tracking both old and 1072 * new state. This is useful in places where the state delta needs to be 1073 * considered, for example in atomic check functions. 1074 */ 1075 #define for_each_oldnew_colorop_in_state(__state, colorop, old_colorop_state, \ 1076 new_colorop_state, __i) \ 1077 for ((__i) = 0; \ 1078 (__i) < (__state)->dev->mode_config.num_colorop; \ 1079 (__i)++) \ 1080 for_each_if ((__state)->colorops[__i].ptr && \ 1081 ((colorop) = (__state)->colorops[__i].ptr, \ 1082 (void)(colorop) /* Only to avoid unused-but-set-variable warning */, \ 1083 (old_colorop_state) = (__state)->colorops[__i].old_state,\ 1084 (new_colorop_state) = (__state)->colorops[__i].new_state, 1)) 1085 1086 /** 1087 * for_each_new_colorop_in_state - iterate over all colorops in an atomic update 1088 * @__state: &struct drm_atomic_state pointer 1089 * @colorop: &struct drm_colorop iteration cursor 1090 * @new_colorop_state: &struct drm_colorop_state iteration cursor for the new state 1091 * @__i: int iteration cursor, for macro-internal use 1092 * 1093 * This iterates over all colorops in an atomic update, tracking new state. This is 1094 * useful in places where the state delta needs to be considered, for example in 1095 * atomic check functions. 1096 */ 1097 #define for_each_new_colorop_in_state(__state, colorop, new_colorop_state, __i) \ 1098 for ((__i) = 0; \ 1099 (__i) < (__state)->dev->mode_config.num_colorop; \ 1100 (__i)++) \ 1101 for_each_if ((__state)->colorops[__i].ptr && \ 1102 ((colorop) = (__state)->colorops[__i].ptr, \ 1103 (void)(colorop) /* Only to avoid unused-but-set-variable warning */, \ 1104 (new_colorop_state) = (__state)->colorops[__i].new_state, 1)) 1105 1106 /** 1107 * for_each_oldnew_plane_in_state - iterate over all planes in an atomic update 1108 * @__state: &struct drm_atomic_state pointer 1109 * @plane: &struct drm_plane iteration cursor 1110 * @old_plane_state: &struct drm_plane_state iteration cursor for the old state 1111 * @new_plane_state: &struct drm_plane_state iteration cursor for the new state 1112 * @__i: int iteration cursor, for macro-internal use 1113 * 1114 * This iterates over all planes in an atomic update, tracking both old and 1115 * new state. This is useful in places where the state delta needs to be 1116 * considered, for example in atomic check functions. 1117 */ 1118 #define for_each_oldnew_plane_in_state(__state, plane, old_plane_state, new_plane_state, __i) \ 1119 for ((__i) = 0; \ 1120 (__i) < (__state)->dev->mode_config.num_total_plane; \ 1121 (__i)++) \ 1122 for_each_if ((__state)->planes[__i].ptr && \ 1123 ((plane) = (__state)->planes[__i].ptr, \ 1124 (void)(plane) /* Only to avoid unused-but-set-variable warning */, \ 1125 (old_plane_state) = (__state)->planes[__i].old_state,\ 1126 (new_plane_state) = (__state)->planes[__i].new_state, 1)) 1127 1128 /** 1129 * for_each_oldnew_plane_in_state_reverse - iterate over all planes in an atomic 1130 * update in reverse order 1131 * @__state: &struct drm_atomic_state pointer 1132 * @plane: &struct drm_plane iteration cursor 1133 * @old_plane_state: &struct drm_plane_state iteration cursor for the old state 1134 * @new_plane_state: &struct drm_plane_state iteration cursor for the new state 1135 * @__i: int iteration cursor, for macro-internal use 1136 * 1137 * This iterates over all planes in an atomic update in reverse order, 1138 * tracking both old and new state. This is useful in places where the 1139 * state delta needs to be considered, for example in atomic check functions. 1140 */ 1141 #define for_each_oldnew_plane_in_state_reverse(__state, plane, old_plane_state, new_plane_state, __i) \ 1142 for ((__i) = ((__state)->dev->mode_config.num_total_plane - 1); \ 1143 (__i) >= 0; \ 1144 (__i)--) \ 1145 for_each_if ((__state)->planes[__i].ptr && \ 1146 ((plane) = (__state)->planes[__i].ptr, \ 1147 (old_plane_state) = (__state)->planes[__i].old_state,\ 1148 (new_plane_state) = (__state)->planes[__i].new_state, 1)) 1149 1150 /** 1151 * for_each_new_plane_in_state_reverse - other than only tracking new state, 1152 * it's the same as for_each_oldnew_plane_in_state_reverse 1153 * @__state: &struct drm_atomic_state pointer 1154 * @plane: &struct drm_plane iteration cursor 1155 * @new_plane_state: &struct drm_plane_state iteration cursor for the new state 1156 * @__i: int iteration cursor, for macro-internal use 1157 */ 1158 #define for_each_new_plane_in_state_reverse(__state, plane, new_plane_state, __i) \ 1159 for ((__i) = ((__state)->dev->mode_config.num_total_plane - 1); \ 1160 (__i) >= 0; \ 1161 (__i)--) \ 1162 for_each_if ((__state)->planes[__i].ptr && \ 1163 ((plane) = (__state)->planes[__i].ptr, \ 1164 (new_plane_state) = (__state)->planes[__i].new_state, 1)) 1165 1166 /** 1167 * for_each_old_plane_in_state - iterate over all planes in an atomic update 1168 * @__state: &struct drm_atomic_state pointer 1169 * @plane: &struct drm_plane iteration cursor 1170 * @old_plane_state: &struct drm_plane_state iteration cursor for the old state 1171 * @__i: int iteration cursor, for macro-internal use 1172 * 1173 * This iterates over all planes in an atomic update, tracking only the old 1174 * state. This is useful in disable functions, where we need the old state the 1175 * hardware is still in. 1176 */ 1177 #define for_each_old_plane_in_state(__state, plane, old_plane_state, __i) \ 1178 for ((__i) = 0; \ 1179 (__i) < (__state)->dev->mode_config.num_total_plane; \ 1180 (__i)++) \ 1181 for_each_if ((__state)->planes[__i].ptr && \ 1182 ((plane) = (__state)->planes[__i].ptr, \ 1183 (old_plane_state) = (__state)->planes[__i].old_state, 1)) 1184 /** 1185 * for_each_new_plane_in_state - iterate over all planes in an atomic update 1186 * @__state: &struct drm_atomic_state pointer 1187 * @plane: &struct drm_plane iteration cursor 1188 * @new_plane_state: &struct drm_plane_state iteration cursor for the new state 1189 * @__i: int iteration cursor, for macro-internal use 1190 * 1191 * This iterates over all planes in an atomic update, tracking only the new 1192 * state. This is useful in enable functions, where we need the new state the 1193 * hardware should be in when the atomic commit operation has completed. 1194 */ 1195 #define for_each_new_plane_in_state(__state, plane, new_plane_state, __i) \ 1196 for ((__i) = 0; \ 1197 (__i) < (__state)->dev->mode_config.num_total_plane; \ 1198 (__i)++) \ 1199 for_each_if ((__state)->planes[__i].ptr && \ 1200 ((plane) = (__state)->planes[__i].ptr, \ 1201 (void)(plane) /* Only to avoid unused-but-set-variable warning */, \ 1202 (new_plane_state) = (__state)->planes[__i].new_state, \ 1203 (void)(new_plane_state) /* Only to avoid unused-but-set-variable warning */, 1)) 1204 1205 /** 1206 * for_each_oldnew_private_obj_in_state - iterate over all private objects in an atomic update 1207 * @__state: &struct drm_atomic_state pointer 1208 * @obj: &struct drm_private_obj iteration cursor 1209 * @old_obj_state: &struct drm_private_state iteration cursor for the old state 1210 * @new_obj_state: &struct drm_private_state iteration cursor for the new state 1211 * @__i: int iteration cursor, for macro-internal use 1212 * 1213 * This iterates over all private objects in an atomic update, tracking both 1214 * old and new state. This is useful in places where the state delta needs 1215 * to be considered, for example in atomic check functions. 1216 */ 1217 #define for_each_oldnew_private_obj_in_state(__state, obj, old_obj_state, new_obj_state, __i) \ 1218 for ((__i) = 0; \ 1219 (__i) < (__state)->num_private_objs && \ 1220 ((obj) = (__state)->private_objs[__i].ptr, \ 1221 (old_obj_state) = (__state)->private_objs[__i].old_state, \ 1222 (new_obj_state) = (__state)->private_objs[__i].new_state, 1); \ 1223 (__i)++) 1224 1225 /** 1226 * for_each_old_private_obj_in_state - iterate over all private objects in an atomic update 1227 * @__state: &struct drm_atomic_state pointer 1228 * @obj: &struct drm_private_obj iteration cursor 1229 * @old_obj_state: &struct drm_private_state iteration cursor for the old state 1230 * @__i: int iteration cursor, for macro-internal use 1231 * 1232 * This iterates over all private objects in an atomic update, tracking only 1233 * the old state. This is useful in disable functions, where we need the old 1234 * state the hardware is still in. 1235 */ 1236 #define for_each_old_private_obj_in_state(__state, obj, old_obj_state, __i) \ 1237 for ((__i) = 0; \ 1238 (__i) < (__state)->num_private_objs && \ 1239 ((obj) = (__state)->private_objs[__i].ptr, \ 1240 (old_obj_state) = (__state)->private_objs[__i].old_state, 1); \ 1241 (__i)++) 1242 1243 /** 1244 * for_each_new_private_obj_in_state - iterate over all private objects in an atomic update 1245 * @__state: &struct drm_atomic_state pointer 1246 * @obj: &struct drm_private_obj iteration cursor 1247 * @new_obj_state: &struct drm_private_state iteration cursor for the new state 1248 * @__i: int iteration cursor, for macro-internal use 1249 * 1250 * This iterates over all private objects in an atomic update, tracking only 1251 * the new state. This is useful in enable functions, where we need the new state the 1252 * hardware should be in when the atomic commit operation has completed. 1253 */ 1254 #define for_each_new_private_obj_in_state(__state, obj, new_obj_state, __i) \ 1255 for ((__i) = 0; \ 1256 (__i) < (__state)->num_private_objs && \ 1257 ((obj) = (__state)->private_objs[__i].ptr, \ 1258 (void)(obj) /* Only to avoid unused-but-set-variable warning */, \ 1259 (new_obj_state) = (__state)->private_objs[__i].new_state, 1); \ 1260 (__i)++) 1261 1262 /** 1263 * drm_atomic_crtc_needs_modeset - compute combined modeset need 1264 * @state: &drm_crtc_state for the CRTC 1265 * 1266 * To give drivers flexibility &struct drm_crtc_state has 3 booleans to track 1267 * whether the state CRTC changed enough to need a full modeset cycle: 1268 * mode_changed, active_changed and connectors_changed. This helper simply 1269 * combines these three to compute the overall need for a modeset for @state. 1270 * 1271 * The atomic helper code sets these booleans, but drivers can and should 1272 * change them appropriately to accurately represent whether a modeset is 1273 * really needed. In general, drivers should avoid full modesets whenever 1274 * possible. 1275 * 1276 * For example if the CRTC mode has changed, and the hardware is able to enact 1277 * the requested mode change without going through a full modeset, the driver 1278 * should clear mode_changed in its &drm_mode_config_funcs.atomic_check 1279 * implementation. 1280 */ 1281 static inline bool 1282 drm_atomic_crtc_needs_modeset(const struct drm_crtc_state *state) 1283 { 1284 return state->mode_changed || state->active_changed || 1285 state->connectors_changed; 1286 } 1287 1288 /** 1289 * drm_atomic_crtc_effectively_active - compute whether CRTC is actually active 1290 * @state: &drm_crtc_state for the CRTC 1291 * 1292 * When in self refresh mode, the crtc_state->active value will be false, since 1293 * the CRTC is off. However in some cases we're interested in whether the CRTC 1294 * is active, or effectively active (ie: it's connected to an active display). 1295 * In these cases, use this function instead of just checking active. 1296 */ 1297 static inline bool 1298 drm_atomic_crtc_effectively_active(const struct drm_crtc_state *state) 1299 { 1300 return state->active || state->self_refresh_active; 1301 } 1302 1303 /** 1304 * struct drm_bus_cfg - bus configuration 1305 * 1306 * This structure stores the configuration of a physical bus between two 1307 * components in an output pipeline, usually between two bridges, an encoder 1308 * and a bridge, or a bridge and a connector. 1309 * 1310 * The bus configuration is stored in &drm_bridge_state separately for the 1311 * input and output buses, as seen from the point of view of each bridge. The 1312 * bus configuration of a bridge output is usually identical to the 1313 * configuration of the next bridge's input, but may differ if the signals are 1314 * modified between the two bridges, for instance by an inverter on the board. 1315 * The input and output configurations of a bridge may differ if the bridge 1316 * modifies the signals internally, for instance by performing format 1317 * conversion, or modifying signals polarities. 1318 */ 1319 struct drm_bus_cfg { 1320 /** 1321 * @format: format used on this bus (one of the MEDIA_BUS_FMT_* format) 1322 * 1323 * This field should not be directly modified by drivers 1324 * (drm_atomic_bridge_chain_select_bus_fmts() takes care of the bus 1325 * format negotiation). 1326 */ 1327 u32 format; 1328 1329 /** 1330 * @flags: DRM_BUS_* flags used on this bus 1331 */ 1332 u32 flags; 1333 }; 1334 1335 /** 1336 * struct drm_bridge_state - Atomic bridge state object 1337 */ 1338 struct drm_bridge_state { 1339 /** 1340 * @base: inherit from &drm_private_state 1341 */ 1342 struct drm_private_state base; 1343 1344 /** 1345 * @bridge: the bridge this state refers to 1346 */ 1347 struct drm_bridge *bridge; 1348 1349 /** 1350 * @input_bus_cfg: input bus configuration 1351 */ 1352 struct drm_bus_cfg input_bus_cfg; 1353 1354 /** 1355 * @output_bus_cfg: output bus configuration 1356 */ 1357 struct drm_bus_cfg output_bus_cfg; 1358 }; 1359 1360 static inline struct drm_bridge_state * 1361 drm_priv_to_bridge_state(struct drm_private_state *priv) 1362 { 1363 return container_of(priv, struct drm_bridge_state, base); 1364 } 1365 1366 struct drm_bridge_state * 1367 drm_atomic_get_bridge_state(struct drm_atomic_state *state, 1368 struct drm_bridge *bridge); 1369 struct drm_bridge_state * 1370 drm_atomic_get_old_bridge_state(const struct drm_atomic_state *state, 1371 struct drm_bridge *bridge); 1372 struct drm_bridge_state * 1373 drm_atomic_get_new_bridge_state(const struct drm_atomic_state *state, 1374 struct drm_bridge *bridge); 1375 1376 #endif /* DRM_ATOMIC_H_ */ 1377