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"
39 * intel_digital_connector_atomic_get_property - hook for connector->atomic_get_property.
40 * @connector: Connector to get the property for.
41 * @state: Connector state to retrieve the property from.
42 * @property: Property to retrieve.
43 * @val: Return value for the property.
45 * Returns the atomic property value for a digital connector.
47 int intel_digital_connector_atomic_get_property(struct drm_connector *connector,
48 const struct drm_connector_state *state,
49 struct drm_property *property,
52 struct drm_device *dev = connector->dev;
53 struct drm_i915_private *dev_priv = to_i915(dev);
54 struct intel_digital_connector_state *intel_conn_state =
55 to_intel_digital_connector_state(state);
57 if (property == dev_priv->force_audio_property)
58 *val = intel_conn_state->force_audio;
59 else if (property == dev_priv->broadcast_rgb_property)
60 *val = intel_conn_state->broadcast_rgb;
62 DRM_DEBUG_ATOMIC("Unknown property %s\n", property->name);
70 * intel_digital_connector_atomic_set_property - hook for connector->atomic_set_property.
71 * @connector: Connector to set the property for.
72 * @state: Connector state to set the property on.
73 * @property: Property to set.
74 * @val: New value for the property.
76 * Sets the atomic property value for a digital connector.
78 int intel_digital_connector_atomic_set_property(struct drm_connector *connector,
79 struct drm_connector_state *state,
80 struct drm_property *property,
83 struct drm_device *dev = connector->dev;
84 struct drm_i915_private *dev_priv = to_i915(dev);
85 struct intel_digital_connector_state *intel_conn_state =
86 to_intel_digital_connector_state(state);
88 if (property == dev_priv->force_audio_property) {
89 intel_conn_state->force_audio = val;
93 if (property == dev_priv->broadcast_rgb_property) {
94 intel_conn_state->broadcast_rgb = val;
98 DRM_DEBUG_ATOMIC("Unknown property %s\n", property->name);
102 int intel_digital_connector_atomic_check(struct drm_connector *conn,
103 struct drm_connector_state *new_state)
105 struct intel_digital_connector_state *new_conn_state =
106 to_intel_digital_connector_state(new_state);
107 struct drm_connector_state *old_state =
108 drm_atomic_get_old_connector_state(new_state->state, conn);
109 struct intel_digital_connector_state *old_conn_state =
110 to_intel_digital_connector_state(old_state);
111 struct drm_crtc_state *crtc_state;
113 intel_hdcp_atomic_check(conn, old_state, new_state);
115 if (!new_state->crtc)
118 crtc_state = drm_atomic_get_new_crtc_state(new_state->state, new_state->crtc);
121 * These properties are handled by fastset, and might not end
124 if (new_conn_state->force_audio != old_conn_state->force_audio ||
125 new_conn_state->broadcast_rgb != old_conn_state->broadcast_rgb ||
126 new_conn_state->base.picture_aspect_ratio != old_conn_state->base.picture_aspect_ratio ||
127 new_conn_state->base.scaling_mode != old_conn_state->base.scaling_mode)
128 crtc_state->mode_changed = true;
134 * intel_digital_connector_duplicate_state - duplicate connector state
135 * @connector: digital connector
137 * Allocates and returns a copy of the connector state (both common and
138 * digital connector specific) for the specified connector.
140 * Returns: The newly allocated connector state, or NULL on failure.
142 struct drm_connector_state *
143 intel_digital_connector_duplicate_state(struct drm_connector *connector)
145 struct intel_digital_connector_state *state;
147 state = kmemdup(connector->state, sizeof(*state), GFP_KERNEL);
151 __drm_atomic_helper_connector_duplicate_state(connector, &state->base);
156 * intel_crtc_duplicate_state - duplicate crtc state
159 * Allocates and returns a copy of the crtc state (both common and
160 * Intel-specific) for the specified crtc.
162 * Returns: The newly allocated crtc state, or NULL on failure.
164 struct drm_crtc_state *
165 intel_crtc_duplicate_state(struct drm_crtc *crtc)
167 struct intel_crtc_state *crtc_state;
169 crtc_state = kmemdup(crtc->state, sizeof(*crtc_state), GFP_KERNEL);
173 __drm_atomic_helper_crtc_duplicate_state(crtc, &crtc_state->base);
175 crtc_state->update_pipe = false;
176 crtc_state->disable_lp_wm = false;
177 crtc_state->disable_cxsr = false;
178 crtc_state->update_wm_pre = false;
179 crtc_state->update_wm_post = false;
180 crtc_state->fb_changed = false;
181 crtc_state->fifo_changed = false;
182 crtc_state->wm.need_postvbl_update = false;
183 crtc_state->fb_bits = 0;
185 return &crtc_state->base;
189 * intel_crtc_destroy_state - destroy crtc state
191 * @state: the state to destroy
193 * Destroys the crtc state (both common and Intel-specific) for the
197 intel_crtc_destroy_state(struct drm_crtc *crtc,
198 struct drm_crtc_state *state)
200 drm_atomic_helper_crtc_destroy_state(crtc, state);
204 * intel_atomic_setup_scalers() - setup scalers for crtc per staged requests
205 * @dev_priv: i915 device
206 * @intel_crtc: intel crtc
207 * @crtc_state: incoming crtc_state to validate and setup scalers
209 * This function sets up scalers based on staged scaling requests for
210 * a @crtc and its planes. It is called from crtc level check path. If request
211 * is a supportable request, it attaches scalers to requested planes and crtc.
213 * This function takes into account the current scaler(s) in use by any planes
214 * not being part of this atomic state
217 * 0 - scalers were setup succesfully
218 * error code - otherwise
220 int intel_atomic_setup_scalers(struct drm_i915_private *dev_priv,
221 struct intel_crtc *intel_crtc,
222 struct intel_crtc_state *crtc_state)
224 struct drm_plane *plane = NULL;
225 struct intel_plane *intel_plane;
226 struct intel_plane_state *plane_state = NULL;
227 struct intel_crtc_scaler_state *scaler_state =
228 &crtc_state->scaler_state;
229 struct drm_atomic_state *drm_state = crtc_state->base.state;
230 struct intel_atomic_state *intel_state = to_intel_atomic_state(drm_state);
231 int num_scalers_need;
234 num_scalers_need = hweight32(scaler_state->scaler_users);
238 * - staged scaler requests are already in scaler_state->scaler_users
239 * - check whether staged scaling requests can be supported
240 * - add planes using scalers that aren't in current transaction
241 * - assign scalers to requested users
242 * - as part of plane commit, scalers will be committed
243 * (i.e., either attached or detached) to respective planes in hw
244 * - as part of crtc_commit, scaler will be either attached or detached
248 /* fail if required scalers > available scalers */
249 if (num_scalers_need > intel_crtc->num_scalers){
250 DRM_DEBUG_KMS("Too many scaling requests %d > %d\n",
251 num_scalers_need, intel_crtc->num_scalers);
255 /* walkthrough scaler_users bits and start assigning scalers */
256 for (i = 0; i < sizeof(scaler_state->scaler_users) * 8; i++) {
261 /* skip if scaler not required */
262 if (!(scaler_state->scaler_users & (1 << i)))
265 if (i == SKL_CRTC_INDEX) {
267 idx = intel_crtc->base.base.id;
269 /* panel fitter case: assign as a crtc scaler */
270 scaler_id = &scaler_state->scaler_id;
274 /* plane scaler case: assign as a plane scaler */
275 /* find the plane that set the bit as scaler_user */
276 plane = drm_state->planes[i].ptr;
279 * to enable/disable hq mode, add planes that are using scaler
280 * into this transaction
283 struct drm_plane_state *state;
284 plane = drm_plane_from_index(&dev_priv->drm, i);
285 state = drm_atomic_get_plane_state(drm_state, plane);
287 DRM_DEBUG_KMS("Failed to add [PLANE:%d] to drm_state\n",
289 return PTR_ERR(state);
293 * the plane is added after plane checks are run,
294 * but since this plane is unchanged just do the
295 * minimum required validation.
297 crtc_state->base.planes_changed = true;
300 intel_plane = to_intel_plane(plane);
301 idx = plane->base.id;
303 /* plane on different crtc cannot be a scaler user of this crtc */
304 if (WARN_ON(intel_plane->pipe != intel_crtc->pipe)) {
308 plane_state = intel_atomic_get_new_plane_state(intel_state,
310 scaler_id = &plane_state->scaler_id;
313 if (*scaler_id < 0) {
314 /* find a free scaler */
315 for (j = 0; j < intel_crtc->num_scalers; j++) {
316 if (!scaler_state->scalers[j].in_use) {
317 scaler_state->scalers[j].in_use = 1;
319 DRM_DEBUG_KMS("Attached scaler id %u.%u to %s:%d\n",
320 intel_crtc->pipe, *scaler_id, name, idx);
326 if (WARN_ON(*scaler_id < 0)) {
327 DRM_DEBUG_KMS("Cannot find scaler for %s:%d\n", name, idx);
331 /* set scaler mode */
332 if ((INTEL_GEN(dev_priv) >= 9) &&
333 plane_state && plane_state->base.fb &&
334 plane_state->base.fb->format->format ==
336 if (INTEL_GEN(dev_priv) == 9 &&
337 !IS_GEMINILAKE(dev_priv) &&
338 !IS_SKYLAKE(dev_priv))
339 scaler_state->scalers[*scaler_id].mode =
340 SKL_PS_SCALER_MODE_NV12;
342 scaler_state->scalers[*scaler_id].mode =
343 PS_SCALER_MODE_PLANAR;
344 } else if (num_scalers_need == 1 && intel_crtc->pipe != PIPE_C) {
346 * when only 1 scaler is in use on either pipe A or B,
347 * scaler 0 operates in high quality (HQ) mode.
348 * In this case use scaler 0 to take advantage of HQ mode
351 scaler_state->scalers[0].in_use = 1;
352 scaler_state->scalers[0].mode = PS_SCALER_MODE_HQ;
353 scaler_state->scalers[1].in_use = 0;
355 scaler_state->scalers[*scaler_id].mode = PS_SCALER_MODE_DYN;
362 struct drm_atomic_state *
363 intel_atomic_state_alloc(struct drm_device *dev)
365 struct intel_atomic_state *state = kzalloc(sizeof(*state), GFP_KERNEL);
367 if (!state || drm_atomic_state_init(dev, &state->base) < 0) {
375 void intel_atomic_state_clear(struct drm_atomic_state *s)
377 struct intel_atomic_state *state = to_intel_atomic_state(s);
378 drm_atomic_state_default_clear(&state->base);
379 state->dpll_set = state->modeset = false;