1 /*
2  * Copyright © 2015 Intel Corporation
3  *
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:
10  *
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
13  * 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 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.
22  */
23 
24 /**
25  * DOC: atomic modeset support
26  *
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.
30  */
31 
32 #include <drm/drm_atomic.h>
33 #include <drm/drm_atomic_helper.h>
34 #include <drm/drm_fourcc.h>
35 #include <drm/drm_plane_helper.h>
36 
37 #include "intel_atomic.h"
38 #include "intel_cdclk.h"
39 #include "intel_display_types.h"
40 #include "intel_global_state.h"
41 #include "intel_hdcp.h"
42 #include "intel_psr.h"
43 #include "skl_universal_plane.h"
44 
45 /**
46  * intel_digital_connector_atomic_get_property - hook for connector->atomic_get_property.
47  * @connector: Connector to get the property for.
48  * @state: Connector state to retrieve the property from.
49  * @property: Property to retrieve.
50  * @val: Return value for the property.
51  *
52  * Returns the atomic property value for a digital connector.
53  */
54 int intel_digital_connector_atomic_get_property(struct drm_connector *connector,
55 						const struct drm_connector_state *state,
56 						struct drm_property *property,
57 						u64 *val)
58 {
59 	struct drm_device *dev = connector->dev;
60 	struct drm_i915_private *dev_priv = to_i915(dev);
61 	struct intel_digital_connector_state *intel_conn_state =
62 		to_intel_digital_connector_state(state);
63 
64 	if (property == dev_priv->force_audio_property)
65 		*val = intel_conn_state->force_audio;
66 	else if (property == dev_priv->broadcast_rgb_property)
67 		*val = intel_conn_state->broadcast_rgb;
68 	else {
69 		drm_dbg_atomic(&dev_priv->drm,
70 			       "Unknown property [PROP:%d:%s]\n",
71 			       property->base.id, property->name);
72 		return -EINVAL;
73 	}
74 
75 	return 0;
76 }
77 
78 /**
79  * intel_digital_connector_atomic_set_property - hook for connector->atomic_set_property.
80  * @connector: Connector to set the property for.
81  * @state: Connector state to set the property on.
82  * @property: Property to set.
83  * @val: New value for the property.
84  *
85  * Sets the atomic property value for a digital connector.
86  */
87 int intel_digital_connector_atomic_set_property(struct drm_connector *connector,
88 						struct drm_connector_state *state,
89 						struct drm_property *property,
90 						u64 val)
91 {
92 	struct drm_device *dev = connector->dev;
93 	struct drm_i915_private *dev_priv = to_i915(dev);
94 	struct intel_digital_connector_state *intel_conn_state =
95 		to_intel_digital_connector_state(state);
96 
97 	if (property == dev_priv->force_audio_property) {
98 		intel_conn_state->force_audio = val;
99 		return 0;
100 	}
101 
102 	if (property == dev_priv->broadcast_rgb_property) {
103 		intel_conn_state->broadcast_rgb = val;
104 		return 0;
105 	}
106 
107 	drm_dbg_atomic(&dev_priv->drm, "Unknown property [PROP:%d:%s]\n",
108 		       property->base.id, property->name);
109 	return -EINVAL;
110 }
111 
112 static bool blob_equal(const struct drm_property_blob *a,
113 		       const struct drm_property_blob *b)
114 {
115 	if (a && b)
116 		return a->length == b->length &&
117 			!memcmp(a->data, b->data, a->length);
118 
119 	return !a == !b;
120 }
121 
122 int intel_digital_connector_atomic_check(struct drm_connector *conn,
123 					 struct drm_atomic_state *state)
124 {
125 	struct drm_connector_state *new_state =
126 		drm_atomic_get_new_connector_state(state, conn);
127 	struct intel_digital_connector_state *new_conn_state =
128 		to_intel_digital_connector_state(new_state);
129 	struct drm_connector_state *old_state =
130 		drm_atomic_get_old_connector_state(state, conn);
131 	struct intel_digital_connector_state *old_conn_state =
132 		to_intel_digital_connector_state(old_state);
133 	struct drm_crtc_state *crtc_state;
134 
135 	intel_hdcp_atomic_check(conn, old_state, new_state);
136 
137 	if (!new_state->crtc)
138 		return 0;
139 
140 	crtc_state = drm_atomic_get_new_crtc_state(state, new_state->crtc);
141 
142 	/*
143 	 * These properties are handled by fastset, and might not end
144 	 * up in a modeset.
145 	 */
146 	if (new_conn_state->force_audio != old_conn_state->force_audio ||
147 	    new_conn_state->broadcast_rgb != old_conn_state->broadcast_rgb ||
148 	    new_conn_state->base.colorspace != old_conn_state->base.colorspace ||
149 	    new_conn_state->base.picture_aspect_ratio != old_conn_state->base.picture_aspect_ratio ||
150 	    new_conn_state->base.content_type != old_conn_state->base.content_type ||
151 	    new_conn_state->base.scaling_mode != old_conn_state->base.scaling_mode ||
152 	    !blob_equal(new_conn_state->base.hdr_output_metadata,
153 			old_conn_state->base.hdr_output_metadata))
154 		crtc_state->mode_changed = true;
155 
156 	return 0;
157 }
158 
159 /**
160  * intel_digital_connector_duplicate_state - duplicate connector state
161  * @connector: digital connector
162  *
163  * Allocates and returns a copy of the connector state (both common and
164  * digital connector specific) for the specified connector.
165  *
166  * Returns: The newly allocated connector state, or NULL on failure.
167  */
168 struct drm_connector_state *
169 intel_digital_connector_duplicate_state(struct drm_connector *connector)
170 {
171 	struct intel_digital_connector_state *state;
172 
173 	state = kmemdup(connector->state, sizeof(*state), GFP_KERNEL);
174 	if (!state)
175 		return NULL;
176 
177 	__drm_atomic_helper_connector_duplicate_state(connector, &state->base);
178 	return &state->base;
179 }
180 
181 /**
182  * intel_connector_needs_modeset - check if connector needs a modeset
183  * @state: the atomic state corresponding to this modeset
184  * @connector: the connector
185  */
186 bool
187 intel_connector_needs_modeset(struct intel_atomic_state *state,
188 			      struct drm_connector *connector)
189 {
190 	const struct drm_connector_state *old_conn_state, *new_conn_state;
191 
192 	old_conn_state = drm_atomic_get_old_connector_state(&state->base, connector);
193 	new_conn_state = drm_atomic_get_new_connector_state(&state->base, connector);
194 
195 	return old_conn_state->crtc != new_conn_state->crtc ||
196 	       (new_conn_state->crtc &&
197 		drm_atomic_crtc_needs_modeset(drm_atomic_get_new_crtc_state(&state->base,
198 									    new_conn_state->crtc)));
199 }
200 
201 struct intel_digital_connector_state *
202 intel_atomic_get_digital_connector_state(struct intel_atomic_state *state,
203 					 struct intel_connector *connector)
204 {
205 	struct drm_connector_state *conn_state;
206 
207 	conn_state = drm_atomic_get_connector_state(&state->base,
208 						    &connector->base);
209 	if (IS_ERR(conn_state))
210 		return ERR_CAST(conn_state);
211 
212 	return to_intel_digital_connector_state(conn_state);
213 }
214 
215 /**
216  * intel_crtc_duplicate_state - duplicate crtc state
217  * @crtc: drm crtc
218  *
219  * Allocates and returns a copy of the crtc state (both common and
220  * Intel-specific) for the specified crtc.
221  *
222  * Returns: The newly allocated crtc state, or NULL on failure.
223  */
224 struct drm_crtc_state *
225 intel_crtc_duplicate_state(struct drm_crtc *crtc)
226 {
227 	const struct intel_crtc_state *old_crtc_state = to_intel_crtc_state(crtc->state);
228 	struct intel_crtc_state *crtc_state;
229 
230 	crtc_state = kmemdup(old_crtc_state, sizeof(*crtc_state), GFP_KERNEL);
231 	if (!crtc_state)
232 		return NULL;
233 
234 	__drm_atomic_helper_crtc_duplicate_state(crtc, &crtc_state->uapi);
235 
236 	/* copy color blobs */
237 	if (crtc_state->hw.degamma_lut)
238 		drm_property_blob_get(crtc_state->hw.degamma_lut);
239 	if (crtc_state->hw.ctm)
240 		drm_property_blob_get(crtc_state->hw.ctm);
241 	if (crtc_state->hw.gamma_lut)
242 		drm_property_blob_get(crtc_state->hw.gamma_lut);
243 
244 	crtc_state->update_pipe = false;
245 	crtc_state->disable_lp_wm = false;
246 	crtc_state->disable_cxsr = false;
247 	crtc_state->update_wm_pre = false;
248 	crtc_state->update_wm_post = false;
249 	crtc_state->fifo_changed = false;
250 	crtc_state->preload_luts = false;
251 	crtc_state->inherited = false;
252 	crtc_state->wm.need_postvbl_update = false;
253 	crtc_state->fb_bits = 0;
254 	crtc_state->update_planes = 0;
255 	crtc_state->dsb = NULL;
256 
257 	return &crtc_state->uapi;
258 }
259 
260 static void intel_crtc_put_color_blobs(struct intel_crtc_state *crtc_state)
261 {
262 	drm_property_blob_put(crtc_state->hw.degamma_lut);
263 	drm_property_blob_put(crtc_state->hw.gamma_lut);
264 	drm_property_blob_put(crtc_state->hw.ctm);
265 }
266 
267 void intel_crtc_free_hw_state(struct intel_crtc_state *crtc_state)
268 {
269 	intel_crtc_put_color_blobs(crtc_state);
270 }
271 
272 void intel_crtc_copy_color_blobs(struct intel_crtc_state *crtc_state,
273 				 const struct intel_crtc_state *from_crtc_state)
274 {
275 	drm_property_replace_blob(&crtc_state->hw.degamma_lut,
276 				  from_crtc_state->uapi.degamma_lut);
277 	drm_property_replace_blob(&crtc_state->hw.gamma_lut,
278 				  from_crtc_state->uapi.gamma_lut);
279 	drm_property_replace_blob(&crtc_state->hw.ctm,
280 				  from_crtc_state->uapi.ctm);
281 }
282 
283 /**
284  * intel_crtc_destroy_state - destroy crtc state
285  * @crtc: drm crtc
286  * @state: the state to destroy
287  *
288  * Destroys the crtc state (both common and Intel-specific) for the
289  * specified crtc.
290  */
291 void
292 intel_crtc_destroy_state(struct drm_crtc *crtc,
293 			 struct drm_crtc_state *state)
294 {
295 	struct intel_crtc_state *crtc_state = to_intel_crtc_state(state);
296 
297 	drm_WARN_ON(crtc->dev, crtc_state->dsb);
298 
299 	__drm_atomic_helper_crtc_destroy_state(&crtc_state->uapi);
300 	intel_crtc_free_hw_state(crtc_state);
301 	kfree(crtc_state);
302 }
303 
304 static void intel_atomic_setup_scaler(struct intel_crtc_scaler_state *scaler_state,
305 				      int num_scalers_need, struct intel_crtc *intel_crtc,
306 				      const char *name, int idx,
307 				      struct intel_plane_state *plane_state,
308 				      int *scaler_id)
309 {
310 	struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
311 	int j;
312 	u32 mode;
313 
314 	if (*scaler_id < 0) {
315 		/* find a free scaler */
316 		for (j = 0; j < intel_crtc->num_scalers; j++) {
317 			if (scaler_state->scalers[j].in_use)
318 				continue;
319 
320 			*scaler_id = j;
321 			scaler_state->scalers[*scaler_id].in_use = 1;
322 			break;
323 		}
324 	}
325 
326 	if (drm_WARN(&dev_priv->drm, *scaler_id < 0,
327 		     "Cannot find scaler for %s:%d\n", name, idx))
328 		return;
329 
330 	/* set scaler mode */
331 	if (plane_state && plane_state->hw.fb &&
332 	    plane_state->hw.fb->format->is_yuv &&
333 	    plane_state->hw.fb->format->num_planes > 1) {
334 		struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
335 		if (IS_DISPLAY_VER(dev_priv, 9)) {
336 			mode = SKL_PS_SCALER_MODE_NV12;
337 		} else if (icl_is_hdr_plane(dev_priv, plane->id)) {
338 			/*
339 			 * On gen11+'s HDR planes we only use the scaler for
340 			 * scaling. They have a dedicated chroma upsampler, so
341 			 * we don't need the scaler to upsample the UV plane.
342 			 */
343 			mode = PS_SCALER_MODE_NORMAL;
344 		} else {
345 			struct intel_plane *linked =
346 				plane_state->planar_linked_plane;
347 
348 			mode = PS_SCALER_MODE_PLANAR;
349 
350 			if (linked)
351 				mode |= PS_PLANE_Y_SEL(linked->id);
352 		}
353 	} else if (DISPLAY_VER(dev_priv) >= 10) {
354 		mode = PS_SCALER_MODE_NORMAL;
355 	} else if (num_scalers_need == 1 && intel_crtc->num_scalers > 1) {
356 		/*
357 		 * when only 1 scaler is in use on a pipe with 2 scalers
358 		 * scaler 0 operates in high quality (HQ) mode.
359 		 * In this case use scaler 0 to take advantage of HQ mode
360 		 */
361 		scaler_state->scalers[*scaler_id].in_use = 0;
362 		*scaler_id = 0;
363 		scaler_state->scalers[0].in_use = 1;
364 		mode = SKL_PS_SCALER_MODE_HQ;
365 	} else {
366 		mode = SKL_PS_SCALER_MODE_DYN;
367 	}
368 
369 	drm_dbg_kms(&dev_priv->drm, "Attached scaler id %u.%u to %s:%d\n",
370 		    intel_crtc->pipe, *scaler_id, name, idx);
371 	scaler_state->scalers[*scaler_id].mode = mode;
372 }
373 
374 /**
375  * intel_atomic_setup_scalers() - setup scalers for crtc per staged requests
376  * @dev_priv: i915 device
377  * @intel_crtc: intel crtc
378  * @crtc_state: incoming crtc_state to validate and setup scalers
379  *
380  * This function sets up scalers based on staged scaling requests for
381  * a @crtc and its planes. It is called from crtc level check path. If request
382  * is a supportable request, it attaches scalers to requested planes and crtc.
383  *
384  * This function takes into account the current scaler(s) in use by any planes
385  * not being part of this atomic state
386  *
387  *  Returns:
388  *         0 - scalers were setup succesfully
389  *         error code - otherwise
390  */
391 int intel_atomic_setup_scalers(struct drm_i915_private *dev_priv,
392 			       struct intel_crtc *intel_crtc,
393 			       struct intel_crtc_state *crtc_state)
394 {
395 	struct drm_plane *plane = NULL;
396 	struct intel_plane *intel_plane;
397 	struct intel_plane_state *plane_state = NULL;
398 	struct intel_crtc_scaler_state *scaler_state =
399 		&crtc_state->scaler_state;
400 	struct drm_atomic_state *drm_state = crtc_state->uapi.state;
401 	struct intel_atomic_state *intel_state = to_intel_atomic_state(drm_state);
402 	int num_scalers_need;
403 	int i;
404 
405 	num_scalers_need = hweight32(scaler_state->scaler_users);
406 
407 	/*
408 	 * High level flow:
409 	 * - staged scaler requests are already in scaler_state->scaler_users
410 	 * - check whether staged scaling requests can be supported
411 	 * - add planes using scalers that aren't in current transaction
412 	 * - assign scalers to requested users
413 	 * - as part of plane commit, scalers will be committed
414 	 *   (i.e., either attached or detached) to respective planes in hw
415 	 * - as part of crtc_commit, scaler will be either attached or detached
416 	 *   to crtc in hw
417 	 */
418 
419 	/* fail if required scalers > available scalers */
420 	if (num_scalers_need > intel_crtc->num_scalers){
421 		drm_dbg_kms(&dev_priv->drm,
422 			    "Too many scaling requests %d > %d\n",
423 			    num_scalers_need, intel_crtc->num_scalers);
424 		return -EINVAL;
425 	}
426 
427 	/* walkthrough scaler_users bits and start assigning scalers */
428 	for (i = 0; i < sizeof(scaler_state->scaler_users) * 8; i++) {
429 		int *scaler_id;
430 		const char *name;
431 		int idx;
432 
433 		/* skip if scaler not required */
434 		if (!(scaler_state->scaler_users & (1 << i)))
435 			continue;
436 
437 		if (i == SKL_CRTC_INDEX) {
438 			name = "CRTC";
439 			idx = intel_crtc->base.base.id;
440 
441 			/* panel fitter case: assign as a crtc scaler */
442 			scaler_id = &scaler_state->scaler_id;
443 		} else {
444 			name = "PLANE";
445 
446 			/* plane scaler case: assign as a plane scaler */
447 			/* find the plane that set the bit as scaler_user */
448 			plane = drm_state->planes[i].ptr;
449 
450 			/*
451 			 * to enable/disable hq mode, add planes that are using scaler
452 			 * into this transaction
453 			 */
454 			if (!plane) {
455 				struct drm_plane_state *state;
456 
457 				/*
458 				 * GLK+ scalers don't have a HQ mode so it
459 				 * isn't necessary to change between HQ and dyn mode
460 				 * on those platforms.
461 				 */
462 				if (DISPLAY_VER(dev_priv) >= 10)
463 					continue;
464 
465 				plane = drm_plane_from_index(&dev_priv->drm, i);
466 				state = drm_atomic_get_plane_state(drm_state, plane);
467 				if (IS_ERR(state)) {
468 					drm_dbg_kms(&dev_priv->drm,
469 						    "Failed to add [PLANE:%d] to drm_state\n",
470 						    plane->base.id);
471 					return PTR_ERR(state);
472 				}
473 			}
474 
475 			intel_plane = to_intel_plane(plane);
476 			idx = plane->base.id;
477 
478 			/* plane on different crtc cannot be a scaler user of this crtc */
479 			if (drm_WARN_ON(&dev_priv->drm,
480 					intel_plane->pipe != intel_crtc->pipe))
481 				continue;
482 
483 			plane_state = intel_atomic_get_new_plane_state(intel_state,
484 								       intel_plane);
485 			scaler_id = &plane_state->scaler_id;
486 		}
487 
488 		intel_atomic_setup_scaler(scaler_state, num_scalers_need,
489 					  intel_crtc, name, idx,
490 					  plane_state, scaler_id);
491 	}
492 
493 	return 0;
494 }
495 
496 struct drm_atomic_state *
497 intel_atomic_state_alloc(struct drm_device *dev)
498 {
499 	struct intel_atomic_state *state = kzalloc(sizeof(*state), GFP_KERNEL);
500 
501 	if (!state || drm_atomic_state_init(dev, &state->base) < 0) {
502 		kfree(state);
503 		return NULL;
504 	}
505 
506 	return &state->base;
507 }
508 
509 void intel_atomic_state_free(struct drm_atomic_state *_state)
510 {
511 	struct intel_atomic_state *state = to_intel_atomic_state(_state);
512 
513 	drm_atomic_state_default_release(&state->base);
514 	kfree(state->global_objs);
515 
516 	i915_sw_fence_fini(&state->commit_ready);
517 
518 	kfree(state);
519 }
520 
521 void intel_atomic_state_clear(struct drm_atomic_state *s)
522 {
523 	struct intel_atomic_state *state = to_intel_atomic_state(s);
524 
525 	drm_atomic_state_default_clear(&state->base);
526 	intel_atomic_clear_global_state(state);
527 
528 	state->dpll_set = state->modeset = false;
529 }
530 
531 struct intel_crtc_state *
532 intel_atomic_get_crtc_state(struct drm_atomic_state *state,
533 			    struct intel_crtc *crtc)
534 {
535 	struct drm_crtc_state *crtc_state;
536 	crtc_state = drm_atomic_get_crtc_state(state, &crtc->base);
537 	if (IS_ERR(crtc_state))
538 		return ERR_CAST(crtc_state);
539 
540 	return to_intel_crtc_state(crtc_state);
541 }
542