Daniel Vetter | cc4ceb4 | 2014-07-25 21:30:38 +0200 | [diff] [blame] | 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 | |
Thierry Reding | 37cc014 | 2014-11-25 12:09:48 +0100 | [diff] [blame] | 31 | #include <drm/drm_crtc.h> |
| 32 | |
Daniel Vetter | cc4ceb4 | 2014-07-25 21:30:38 +0200 | [diff] [blame] | 33 | struct drm_atomic_state * __must_check |
| 34 | drm_atomic_state_alloc(struct drm_device *dev); |
| 35 | void drm_atomic_state_clear(struct drm_atomic_state *state); |
| 36 | void drm_atomic_state_free(struct drm_atomic_state *state); |
| 37 | |
| 38 | struct drm_crtc_state * __must_check |
| 39 | drm_atomic_get_crtc_state(struct drm_atomic_state *state, |
| 40 | struct drm_crtc *crtc); |
Rob Clark | 40ecc69 | 2014-12-18 16:01:46 -0500 | [diff] [blame] | 41 | int drm_atomic_crtc_set_property(struct drm_crtc *crtc, |
| 42 | struct drm_crtc_state *state, struct drm_property *property, |
| 43 | uint64_t val); |
Daniel Vetter | cc4ceb4 | 2014-07-25 21:30:38 +0200 | [diff] [blame] | 44 | struct drm_plane_state * __must_check |
| 45 | drm_atomic_get_plane_state(struct drm_atomic_state *state, |
| 46 | struct drm_plane *plane); |
Rob Clark | 40ecc69 | 2014-12-18 16:01:46 -0500 | [diff] [blame] | 47 | int drm_atomic_plane_set_property(struct drm_plane *plane, |
| 48 | struct drm_plane_state *state, struct drm_property *property, |
| 49 | uint64_t val); |
Daniel Vetter | cc4ceb4 | 2014-07-25 21:30:38 +0200 | [diff] [blame] | 50 | struct drm_connector_state * __must_check |
| 51 | drm_atomic_get_connector_state(struct drm_atomic_state *state, |
| 52 | struct drm_connector *connector); |
Rob Clark | 40ecc69 | 2014-12-18 16:01:46 -0500 | [diff] [blame] | 53 | int drm_atomic_connector_set_property(struct drm_connector *connector, |
| 54 | struct drm_connector_state *state, struct drm_property *property, |
| 55 | uint64_t val); |
Rob Clark | 88a48e2 | 2014-12-18 16:01:50 -0500 | [diff] [blame] | 56 | |
Maarten Lankhorst | 1b26a5e | 2015-05-13 10:37:25 +0200 | [diff] [blame^] | 57 | /** |
| 58 | * drm_atomic_get_existing_crtc_state - get crtc state, if it exists |
| 59 | * @state: global atomic state object |
| 60 | * @crtc: crtc to grab |
| 61 | * |
| 62 | * This function returns the crtc state for the given crtc, or NULL |
| 63 | * if the crtc is not part of the global atomic state. |
| 64 | */ |
| 65 | static inline struct drm_crtc_state * |
| 66 | drm_atomic_get_existing_crtc_state(struct drm_atomic_state *state, |
| 67 | struct drm_crtc *crtc) |
| 68 | { |
| 69 | return state->crtc_states[drm_crtc_index(crtc)]; |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * drm_atomic_get_existing_plane_state - get plane state, if it exists |
| 74 | * @state: global atomic state object |
| 75 | * @plane: plane to grab |
| 76 | * |
| 77 | * This function returns the plane state for the given plane, or NULL |
| 78 | * if the plane is not part of the global atomic state. |
| 79 | */ |
| 80 | static inline struct drm_plane_state * |
| 81 | drm_atomic_get_existing_plane_state(struct drm_atomic_state *state, |
| 82 | struct drm_plane *plane) |
| 83 | { |
| 84 | return state->plane_states[drm_plane_index(plane)]; |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * drm_atomic_get_existing_connector_state - get connector state, if it exists |
| 89 | * @state: global atomic state object |
| 90 | * @connector: connector to grab |
| 91 | * |
| 92 | * This function returns the connector state for the given connector, |
| 93 | * or NULL if the connector is not part of the global atomic state. |
| 94 | */ |
| 95 | static inline struct drm_connector_state * |
| 96 | drm_atomic_get_existing_connector_state(struct drm_atomic_state *state, |
| 97 | struct drm_connector *connector) |
| 98 | { |
| 99 | int index = drm_connector_index(connector); |
| 100 | |
| 101 | if (index >= state->num_connector) |
| 102 | return NULL; |
| 103 | |
| 104 | return state->connector_states[index]; |
| 105 | } |
| 106 | |
Daniel Vetter | cc4ceb4 | 2014-07-25 21:30:38 +0200 | [diff] [blame] | 107 | int __must_check |
Daniel Vetter | 07cc0ef | 2014-11-27 15:49:39 +0100 | [diff] [blame] | 108 | drm_atomic_set_crtc_for_plane(struct drm_plane_state *plane_state, |
| 109 | struct drm_crtc *crtc); |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 110 | void drm_atomic_set_fb_for_plane(struct drm_plane_state *plane_state, |
| 111 | struct drm_framebuffer *fb); |
Daniel Vetter | cc4ceb4 | 2014-07-25 21:30:38 +0200 | [diff] [blame] | 112 | int __must_check |
| 113 | drm_atomic_set_crtc_for_connector(struct drm_connector_state *conn_state, |
| 114 | struct drm_crtc *crtc); |
| 115 | int __must_check |
| 116 | drm_atomic_add_affected_connectors(struct drm_atomic_state *state, |
| 117 | struct drm_crtc *crtc); |
| 118 | int |
| 119 | drm_atomic_connectors_for_crtc(struct drm_atomic_state *state, |
| 120 | struct drm_crtc *crtc); |
| 121 | |
| 122 | void drm_atomic_legacy_backoff(struct drm_atomic_state *state); |
| 123 | |
| 124 | int __must_check drm_atomic_check_only(struct drm_atomic_state *state); |
| 125 | int __must_check drm_atomic_commit(struct drm_atomic_state *state); |
| 126 | int __must_check drm_atomic_async_commit(struct drm_atomic_state *state); |
| 127 | |
Ander Conselvan de Oliveira | df63b99 | 2015-04-10 14:58:39 +0300 | [diff] [blame] | 128 | #define for_each_connector_in_state(state, connector, connector_state, __i) \ |
| 129 | for ((__i) = 0; \ |
| 130 | (connector) = (state)->connectors[__i], \ |
| 131 | (connector_state) = (state)->connector_states[__i], \ |
| 132 | (__i) < (state)->num_connector; \ |
| 133 | (__i)++) \ |
| 134 | if (connector) |
| 135 | |
| 136 | #define for_each_crtc_in_state(state, crtc, crtc_state, __i) \ |
| 137 | for ((__i) = 0; \ |
| 138 | (crtc) = (state)->crtcs[__i], \ |
| 139 | (crtc_state) = (state)->crtc_states[__i], \ |
| 140 | (__i) < (state)->dev->mode_config.num_crtc; \ |
| 141 | (__i)++) \ |
| 142 | if (crtc_state) |
| 143 | |
| 144 | #define for_each_plane_in_state(state, plane, plane_state, __i) \ |
| 145 | for ((__i) = 0; \ |
| 146 | (plane) = (state)->planes[__i], \ |
| 147 | (plane_state) = (state)->plane_states[__i], \ |
| 148 | (__i) < (state)->dev->mode_config.num_total_plane; \ |
| 149 | (__i)++) \ |
| 150 | if (plane_state) |
| 151 | |
Daniel Vetter | cc4ceb4 | 2014-07-25 21:30:38 +0200 | [diff] [blame] | 152 | #endif /* DRM_ATOMIC_H_ */ |