blob: 6a661e796328e47eb7fdffc8aeb0c01c912d302f [file] [log] [blame]
Matt Roper5ee67f12015-01-21 16:35:44 -08001/*
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/drmP.h>
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"
37
Matt Roper2545e4a2015-01-22 16:51:27 -080038/**
39 * intel_connector_atomic_get_property - fetch connector property value
40 * @connector: connector to fetch property for
41 * @state: state containing the property value
42 * @property: property to look up
43 * @val: pointer to write property value into
44 *
45 * The DRM core does not store shadow copies of properties for
46 * atomic-capable drivers. This entrypoint is used to fetch
47 * the current value of a driver-specific connector property.
48 */
49int
50intel_connector_atomic_get_property(struct drm_connector *connector,
51 const struct drm_connector_state *state,
52 struct drm_property *property,
53 uint64_t *val)
54{
55 int i;
56
57 /*
58 * TODO: We only have atomic modeset for planes at the moment, so the
59 * crtc/connector code isn't quite ready yet. Until it's ready,
60 * continue to look up all property values in the DRM's shadow copy
61 * in obj->properties->values[].
62 *
63 * When the crtc/connector state work matures, this function should
64 * be updated to read the values out of the state structure instead.
65 */
66 for (i = 0; i < connector->base.properties->count; i++) {
67 if (connector->base.properties->properties[i] == property) {
68 *val = connector->base.properties->values[i];
69 return 0;
70 }
71 }
72
73 return -EINVAL;
74}
Matt Roper13568372015-01-21 16:35:47 -080075
76/*
77 * intel_crtc_duplicate_state - duplicate crtc state
78 * @crtc: drm crtc
79 *
80 * Allocates and returns a copy of the crtc state (both common and
81 * Intel-specific) for the specified crtc.
82 *
83 * Returns: The newly allocated crtc state, or NULL on failure.
84 */
85struct drm_crtc_state *
86intel_crtc_duplicate_state(struct drm_crtc *crtc)
87{
Ander Conselvan de Oliveiraa91572f2015-03-03 15:21:55 +020088 struct intel_crtc_state *crtc_state;
Matt Roper13568372015-01-21 16:35:47 -080089
Maarten Lankhorstf2a066f2015-09-10 16:08:03 +020090 crtc_state = kmemdup(crtc->state, sizeof(*crtc_state), GFP_KERNEL);
Ander Conselvan de Oliveiraf0c60572015-04-21 17:12:58 +030091 if (!crtc_state)
92 return NULL;
93
94 __drm_atomic_helper_crtc_duplicate_state(crtc, &crtc_state->base);
95
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +020096 crtc_state->update_pipe = false;
Matt Roperd21fbe82015-09-24 15:53:12 -070097 crtc_state->disable_lp_wm = false;
Maarten Lankhorstab1d3a02015-11-19 16:07:14 +010098 crtc_state->disable_cxsr = false;
Maarten Lankhorst92826fc2015-12-03 13:49:13 +010099 crtc_state->wm_changed = false;
Maarten Lankhorste8861672016-02-24 11:24:26 +0100100 crtc_state->fb_changed = false;
Matt Ropered4a6a72016-02-23 17:20:13 -0800101 crtc_state->wm.need_postvbl_update = false;
Maarten Lankhorstbfd16b22015-08-27 15:44:05 +0200102
Ander Conselvan de Oliveiraa91572f2015-03-03 15:21:55 +0200103 return &crtc_state->base;
Matt Roper13568372015-01-21 16:35:47 -0800104}
105
106/**
107 * intel_crtc_destroy_state - destroy crtc state
108 * @crtc: drm crtc
109 *
110 * Destroys the crtc state (both common and Intel-specific) for the
111 * specified crtc.
112 */
113void
114intel_crtc_destroy_state(struct drm_crtc *crtc,
115 struct drm_crtc_state *state)
116{
117 drm_atomic_helper_crtc_destroy_state(crtc, state);
118}
Chandra Kondurud03c93d2015-04-09 16:42:46 -0700119
120/**
121 * intel_atomic_setup_scalers() - setup scalers for crtc per staged requests
122 * @dev: DRM device
123 * @crtc: intel crtc
124 * @crtc_state: incoming crtc_state to validate and setup scalers
125 *
126 * This function sets up scalers based on staged scaling requests for
127 * a @crtc and its planes. It is called from crtc level check path. If request
128 * is a supportable request, it attaches scalers to requested planes and crtc.
129 *
130 * This function takes into account the current scaler(s) in use by any planes
131 * not being part of this atomic state
132 *
133 * Returns:
134 * 0 - scalers were setup succesfully
135 * error code - otherwise
136 */
137int intel_atomic_setup_scalers(struct drm_device *dev,
138 struct intel_crtc *intel_crtc,
139 struct intel_crtc_state *crtc_state)
140{
141 struct drm_plane *plane = NULL;
142 struct intel_plane *intel_plane;
143 struct intel_plane_state *plane_state = NULL;
Maarten Lankhorste435d6e2015-07-13 16:30:15 +0200144 struct intel_crtc_scaler_state *scaler_state =
145 &crtc_state->scaler_state;
146 struct drm_atomic_state *drm_state = crtc_state->base.state;
Chandra Kondurud03c93d2015-04-09 16:42:46 -0700147 int num_scalers_need;
148 int i, j;
149
Chandra Kondurud03c93d2015-04-09 16:42:46 -0700150 num_scalers_need = hweight32(scaler_state->scaler_users);
Chandra Kondurud03c93d2015-04-09 16:42:46 -0700151
152 /*
153 * High level flow:
154 * - staged scaler requests are already in scaler_state->scaler_users
155 * - check whether staged scaling requests can be supported
156 * - add planes using scalers that aren't in current transaction
157 * - assign scalers to requested users
158 * - as part of plane commit, scalers will be committed
159 * (i.e., either attached or detached) to respective planes in hw
160 * - as part of crtc_commit, scaler will be either attached or detached
161 * to crtc in hw
162 */
163
164 /* fail if required scalers > available scalers */
165 if (num_scalers_need > intel_crtc->num_scalers){
166 DRM_DEBUG_KMS("Too many scaling requests %d > %d\n",
167 num_scalers_need, intel_crtc->num_scalers);
168 return -EINVAL;
169 }
170
171 /* walkthrough scaler_users bits and start assigning scalers */
172 for (i = 0; i < sizeof(scaler_state->scaler_users) * 8; i++) {
173 int *scaler_id;
Maarten Lankhorst133b0d12015-06-15 12:33:39 +0200174 const char *name;
175 int idx;
Chandra Kondurud03c93d2015-04-09 16:42:46 -0700176
177 /* skip if scaler not required */
178 if (!(scaler_state->scaler_users & (1 << i)))
179 continue;
180
181 if (i == SKL_CRTC_INDEX) {
Maarten Lankhorst133b0d12015-06-15 12:33:39 +0200182 name = "CRTC";
183 idx = intel_crtc->base.base.id;
184
Chandra Kondurud03c93d2015-04-09 16:42:46 -0700185 /* panel fitter case: assign as a crtc scaler */
186 scaler_id = &scaler_state->scaler_id;
187 } else {
Maarten Lankhorst133b0d12015-06-15 12:33:39 +0200188 name = "PLANE";
Maarten Lankhorst133b0d12015-06-15 12:33:39 +0200189
Chandra Kondurud03c93d2015-04-09 16:42:46 -0700190 /* plane scaler case: assign as a plane scaler */
191 /* find the plane that set the bit as scaler_user */
192 plane = drm_state->planes[i];
193
194 /*
195 * to enable/disable hq mode, add planes that are using scaler
196 * into this transaction
197 */
198 if (!plane) {
199 struct drm_plane_state *state;
200 plane = drm_plane_from_index(dev, i);
201 state = drm_atomic_get_plane_state(drm_state, plane);
202 if (IS_ERR(state)) {
203 DRM_DEBUG_KMS("Failed to add [PLANE:%d] to drm_state\n",
204 plane->base.id);
205 return PTR_ERR(state);
206 }
Maarten Lankhorstcf5a15b2015-06-15 12:33:41 +0200207
208 /*
209 * the plane is added after plane checks are run,
210 * but since this plane is unchanged just do the
211 * minimum required validation.
212 */
Maarten Lankhorstcf5a15b2015-06-15 12:33:41 +0200213 crtc_state->base.planes_changed = true;
Chandra Kondurud03c93d2015-04-09 16:42:46 -0700214 }
215
216 intel_plane = to_intel_plane(plane);
Matt Roperc07a2d12015-07-06 09:19:24 -0700217 idx = plane->base.id;
Chandra Kondurud03c93d2015-04-09 16:42:46 -0700218
219 /* plane on different crtc cannot be a scaler user of this crtc */
220 if (WARN_ON(intel_plane->pipe != intel_crtc->pipe)) {
221 continue;
222 }
223
224 plane_state = to_intel_plane_state(drm_state->plane_states[i]);
225 scaler_id = &plane_state->scaler_id;
226 }
227
228 if (*scaler_id < 0) {
229 /* find a free scaler */
230 for (j = 0; j < intel_crtc->num_scalers; j++) {
231 if (!scaler_state->scalers[j].in_use) {
232 scaler_state->scalers[j].in_use = 1;
Maarten Lankhorst133b0d12015-06-15 12:33:39 +0200233 *scaler_id = j;
Chandra Kondurud03c93d2015-04-09 16:42:46 -0700234 DRM_DEBUG_KMS("Attached scaler id %u.%u to %s:%d\n",
Maarten Lankhorst133b0d12015-06-15 12:33:39 +0200235 intel_crtc->pipe, *scaler_id, name, idx);
Chandra Kondurud03c93d2015-04-09 16:42:46 -0700236 break;
237 }
238 }
239 }
240
241 if (WARN_ON(*scaler_id < 0)) {
Maarten Lankhorst133b0d12015-06-15 12:33:39 +0200242 DRM_DEBUG_KMS("Cannot find scaler for %s:%d\n", name, idx);
Chandra Kondurud03c93d2015-04-09 16:42:46 -0700243 continue;
244 }
245
246 /* set scaler mode */
247 if (num_scalers_need == 1 && intel_crtc->pipe != PIPE_C) {
248 /*
249 * when only 1 scaler is in use on either pipe A or B,
250 * scaler 0 operates in high quality (HQ) mode.
251 * In this case use scaler 0 to take advantage of HQ mode
252 */
253 *scaler_id = 0;
254 scaler_state->scalers[0].in_use = 1;
255 scaler_state->scalers[0].mode = PS_SCALER_MODE_HQ;
256 scaler_state->scalers[1].in_use = 0;
257 } else {
258 scaler_state->scalers[*scaler_id].mode = PS_SCALER_MODE_DYN;
259 }
260 }
261
262 return 0;
263}
Maarten Lankhorstde419ab2015-06-04 10:21:28 +0200264
Maarten Lankhorstf7217902015-06-10 10:24:20 +0200265static void
Maarten Lankhorstde419ab2015-06-04 10:21:28 +0200266intel_atomic_duplicate_dpll_state(struct drm_i915_private *dev_priv,
267 struct intel_shared_dpll_config *shared_dpll)
268{
269 enum intel_dpll_id i;
270
271 /* Copy shared dpll state */
272 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
273 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
274
275 shared_dpll[i] = pll->config;
276 }
277}
278
279struct intel_shared_dpll_config *
280intel_atomic_get_shared_dpll_state(struct drm_atomic_state *s)
281{
282 struct intel_atomic_state *state = to_intel_atomic_state(s);
283
284 WARN_ON(!drm_modeset_is_locked(&s->dev->mode_config.connection_mutex));
285
286 if (!state->dpll_set) {
287 state->dpll_set = true;
288
289 intel_atomic_duplicate_dpll_state(to_i915(s->dev),
290 state->shared_dpll);
291 }
292
293 return state->shared_dpll;
294}
295
296struct drm_atomic_state *
297intel_atomic_state_alloc(struct drm_device *dev)
298{
299 struct intel_atomic_state *state = kzalloc(sizeof(*state), GFP_KERNEL);
300
301 if (!state || drm_atomic_state_init(dev, &state->base) < 0) {
302 kfree(state);
303 return NULL;
304 }
305
306 return &state->base;
307}
308
309void intel_atomic_state_clear(struct drm_atomic_state *s)
310{
311 struct intel_atomic_state *state = to_intel_atomic_state(s);
312 drm_atomic_state_default_clear(&state->base);
Maarten Lankhorst565602d2015-12-10 12:33:57 +0100313 state->dpll_set = state->modeset = false;
Maarten Lankhorstde419ab2015-06-04 10:21:28 +0200314}