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