2 * Copyright © 2015 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
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 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
25 * DOC: atomic modeset support
27 * The functions here implement the state management and hardware programming
28 * dispatch required by the atomic modeset infrastructure.
29 * See intel_atomic_plane.c for the plane-specific atomic functionality.
33 #include <drm/drm_atomic.h>
34 #include <drm/drm_atomic_helper.h>
35 #include <drm/drm_plane_helper.h>
36 #include "intel_drv.h"
40 * intel_atomic_check - validate state object
42 * @state: state to validate
44 int intel_atomic_check(struct drm_device
*dev
,
45 struct drm_atomic_state
*state
)
47 int nplanes
= dev
->mode_config
.num_total_plane
;
48 int ncrtcs
= dev
->mode_config
.num_crtc
;
49 int nconnectors
= dev
->mode_config
.num_connector
;
50 enum pipe nuclear_pipe
= INVALID_PIPE
;
51 struct intel_crtc
*nuclear_crtc
= NULL
;
52 struct intel_crtc_state
*crtc_state
= NULL
;
55 bool not_nuclear
= false;
58 * FIXME: At the moment, we only support "nuclear pageflip" on a
59 * single CRTC. Cross-crtc updates will be added later.
61 for (i
= 0; i
< nplanes
; i
++) {
62 struct intel_plane
*plane
= to_intel_plane(state
->planes
[i
]);
66 if (nuclear_pipe
== INVALID_PIPE
) {
67 nuclear_pipe
= plane
->pipe
;
68 } else if (nuclear_pipe
!= plane
->pipe
) {
69 DRM_DEBUG_KMS("i915 only support atomic plane operations on a single CRTC at the moment\n");
75 * FIXME: We only handle planes for now; make sure there are no CRTC's
76 * or connectors involved.
78 state
->allow_modeset
= false;
79 for (i
= 0; i
< ncrtcs
; i
++) {
80 struct intel_crtc
*crtc
= to_intel_crtc(state
->crtcs
[i
]);
82 memset(&crtc
->atomic
, 0, sizeof(crtc
->atomic
));
83 if (crtc
&& crtc
->pipe
!= nuclear_pipe
)
85 if (crtc
&& crtc
->pipe
== nuclear_pipe
) {
87 crtc_state
= to_intel_crtc_state(state
->crtc_states
[i
]);
90 for (i
= 0; i
< nconnectors
; i
++)
91 if (state
->connectors
[i
] != NULL
)
95 DRM_DEBUG_KMS("i915 only supports atomic plane operations at the moment\n");
99 ret
= drm_atomic_helper_check_planes(dev
, state
);
103 /* FIXME: move to crtc atomic check function once it is ready */
104 ret
= intel_atomic_setup_scalers(dev
, nuclear_crtc
, crtc_state
);
113 * intel_atomic_commit - commit validated state object
115 * @state: the top-level driver state object
116 * @async: asynchronous commit
118 * This function commits a top-level state object that has been validated
119 * with drm_atomic_helper_check().
121 * FIXME: Atomic modeset support for i915 is not yet complete. At the moment
122 * we can only handle plane-related operations and do not yet support
123 * asynchronous commit.
126 * Zero for success or -errno.
128 int intel_atomic_commit(struct drm_device
*dev
,
129 struct drm_atomic_state
*state
,
132 struct drm_crtc_state
*crtc_state
;
133 struct drm_crtc
*crtc
;
137 DRM_DEBUG_KMS("i915 does not yet support async commit\n");
141 ret
= drm_atomic_helper_prepare_planes(dev
, state
);
145 /* Point of no return */
146 drm_atomic_helper_swap_state(dev
, state
);
148 /* swap crtc_scaler_state */
149 for_each_crtc_in_state(state
, crtc
, crtc_state
, i
) {
150 to_intel_crtc(crtc
)->config
= to_intel_crtc_state(crtc
->state
);
152 if (INTEL_INFO(dev
)->gen
>= 9)
153 skl_detach_scalers(to_intel_crtc(crtc
));
155 drm_atomic_helper_commit_planes_on_crtc(crtc_state
);
158 drm_atomic_helper_wait_for_vblanks(dev
, state
);
159 drm_atomic_helper_cleanup_planes(dev
, state
);
160 drm_atomic_state_free(state
);
166 * intel_connector_atomic_get_property - fetch connector property value
167 * @connector: connector to fetch property for
168 * @state: state containing the property value
169 * @property: property to look up
170 * @val: pointer to write property value into
172 * The DRM core does not store shadow copies of properties for
173 * atomic-capable drivers. This entrypoint is used to fetch
174 * the current value of a driver-specific connector property.
177 intel_connector_atomic_get_property(struct drm_connector
*connector
,
178 const struct drm_connector_state
*state
,
179 struct drm_property
*property
,
185 * TODO: We only have atomic modeset for planes at the moment, so the
186 * crtc/connector code isn't quite ready yet. Until it's ready,
187 * continue to look up all property values in the DRM's shadow copy
188 * in obj->properties->values[].
190 * When the crtc/connector state work matures, this function should
191 * be updated to read the values out of the state structure instead.
193 for (i
= 0; i
< connector
->base
.properties
->count
; i
++) {
194 if (connector
->base
.properties
->properties
[i
] == property
) {
195 *val
= connector
->base
.properties
->values
[i
];
204 * intel_crtc_duplicate_state - duplicate crtc state
207 * Allocates and returns a copy of the crtc state (both common and
208 * Intel-specific) for the specified crtc.
210 * Returns: The newly allocated crtc state, or NULL on failure.
212 struct drm_crtc_state
*
213 intel_crtc_duplicate_state(struct drm_crtc
*crtc
)
215 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
216 struct intel_crtc_state
*crtc_state
;
218 if (WARN_ON(!intel_crtc
->config
))
219 crtc_state
= kzalloc(sizeof(*crtc_state
), GFP_KERNEL
);
221 crtc_state
= kmemdup(intel_crtc
->config
,
222 sizeof(*intel_crtc
->config
), GFP_KERNEL
);
227 __drm_atomic_helper_crtc_duplicate_state(crtc
, &crtc_state
->base
);
229 crtc_state
->base
.crtc
= crtc
;
231 return &crtc_state
->base
;
235 * intel_crtc_destroy_state - destroy crtc state
238 * Destroys the crtc state (both common and Intel-specific) for the
242 intel_crtc_destroy_state(struct drm_crtc
*crtc
,
243 struct drm_crtc_state
*state
)
245 drm_atomic_helper_crtc_destroy_state(crtc
, state
);
249 * intel_atomic_setup_scalers() - setup scalers for crtc per staged requests
252 * @crtc_state: incoming crtc_state to validate and setup scalers
254 * This function sets up scalers based on staged scaling requests for
255 * a @crtc and its planes. It is called from crtc level check path. If request
256 * is a supportable request, it attaches scalers to requested planes and crtc.
258 * This function takes into account the current scaler(s) in use by any planes
259 * not being part of this atomic state
262 * 0 - scalers were setup succesfully
263 * error code - otherwise
265 int intel_atomic_setup_scalers(struct drm_device
*dev
,
266 struct intel_crtc
*intel_crtc
,
267 struct intel_crtc_state
*crtc_state
)
269 struct drm_plane
*plane
= NULL
;
270 struct intel_plane
*intel_plane
;
271 struct intel_plane_state
*plane_state
= NULL
;
272 struct intel_crtc_scaler_state
*scaler_state
;
273 struct drm_atomic_state
*drm_state
;
274 int num_scalers_need
;
277 if (INTEL_INFO(dev
)->gen
< 9 || !intel_crtc
|| !crtc_state
)
280 scaler_state
= &crtc_state
->scaler_state
;
281 drm_state
= crtc_state
->base
.state
;
283 num_scalers_need
= hweight32(scaler_state
->scaler_users
);
284 DRM_DEBUG_KMS("crtc_state = %p need = %d avail = %d scaler_users = 0x%x\n",
285 crtc_state
, num_scalers_need
, intel_crtc
->num_scalers
,
286 scaler_state
->scaler_users
);
290 * - staged scaler requests are already in scaler_state->scaler_users
291 * - check whether staged scaling requests can be supported
292 * - add planes using scalers that aren't in current transaction
293 * - assign scalers to requested users
294 * - as part of plane commit, scalers will be committed
295 * (i.e., either attached or detached) to respective planes in hw
296 * - as part of crtc_commit, scaler will be either attached or detached
300 /* fail if required scalers > available scalers */
301 if (num_scalers_need
> intel_crtc
->num_scalers
){
302 DRM_DEBUG_KMS("Too many scaling requests %d > %d\n",
303 num_scalers_need
, intel_crtc
->num_scalers
);
307 /* walkthrough scaler_users bits and start assigning scalers */
308 for (i
= 0; i
< sizeof(scaler_state
->scaler_users
) * 8; i
++) {
311 /* skip if scaler not required */
312 if (!(scaler_state
->scaler_users
& (1 << i
)))
315 if (i
== SKL_CRTC_INDEX
) {
316 /* panel fitter case: assign as a crtc scaler */
317 scaler_id
= &scaler_state
->scaler_id
;
322 /* plane scaler case: assign as a plane scaler */
323 /* find the plane that set the bit as scaler_user */
324 plane
= drm_state
->planes
[i
];
327 * to enable/disable hq mode, add planes that are using scaler
328 * into this transaction
331 struct drm_plane_state
*state
;
332 plane
= drm_plane_from_index(dev
, i
);
333 state
= drm_atomic_get_plane_state(drm_state
, plane
);
335 DRM_DEBUG_KMS("Failed to add [PLANE:%d] to drm_state\n",
337 return PTR_ERR(state
);
341 intel_plane
= to_intel_plane(plane
);
343 /* plane on different crtc cannot be a scaler user of this crtc */
344 if (WARN_ON(intel_plane
->pipe
!= intel_crtc
->pipe
)) {
348 plane_state
= to_intel_plane_state(drm_state
->plane_states
[i
]);
349 scaler_id
= &plane_state
->scaler_id
;
352 if (*scaler_id
< 0) {
353 /* find a free scaler */
354 for (j
= 0; j
< intel_crtc
->num_scalers
; j
++) {
355 if (!scaler_state
->scalers
[j
].in_use
) {
356 scaler_state
->scalers
[j
].in_use
= 1;
357 *scaler_id
= scaler_state
->scalers
[j
].id
;
358 DRM_DEBUG_KMS("Attached scaler id %u.%u to %s:%d\n",
360 i
== SKL_CRTC_INDEX
? scaler_state
->scaler_id
:
361 plane_state
->scaler_id
,
362 i
== SKL_CRTC_INDEX
? "CRTC" : "PLANE",
363 i
== SKL_CRTC_INDEX
? intel_crtc
->base
.base
.id
:
370 if (WARN_ON(*scaler_id
< 0)) {
371 DRM_DEBUG_KMS("Cannot find scaler for %s:%d\n",
372 i
== SKL_CRTC_INDEX
? "CRTC" : "PLANE",
373 i
== SKL_CRTC_INDEX
? intel_crtc
->base
.base
.id
:plane
->base
.id
);
377 /* set scaler mode */
378 if (num_scalers_need
== 1 && intel_crtc
->pipe
!= PIPE_C
) {
380 * when only 1 scaler is in use on either pipe A or B,
381 * scaler 0 operates in high quality (HQ) mode.
382 * In this case use scaler 0 to take advantage of HQ mode
385 scaler_state
->scalers
[0].in_use
= 1;
386 scaler_state
->scalers
[0].mode
= PS_SCALER_MODE_HQ
;
387 scaler_state
->scalers
[1].in_use
= 0;
389 scaler_state
->scalers
[*scaler_id
].mode
= PS_SCALER_MODE_DYN
;