blob: 0bdb00b7c59c8de887824f5e20d94f7e3d91311b [file] [log] [blame]
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001/*
2 * Copyright © 2011 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 FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 * Authors:
24 * Jesse Barnes <jbarnes@virtuousgeek.org>
25 *
26 * New plane/sprite handling.
27 *
28 * The older chips had a separate interface for programming plane related
29 * registers; newer ones are much simpler and we can use the new DRM plane
30 * support.
31 */
David Howells760285e2012-10-02 18:01:07 +010032#include <drm/drmP.h>
33#include <drm/drm_crtc.h>
34#include <drm/drm_fourcc.h>
Ville Syrjälä17316932013-04-24 18:52:38 +030035#include <drm/drm_rect.h>
Jesse Barnesb840d907f2011-12-13 13:19:38 -080036#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010037#include <drm/i915_drm.h>
Jesse Barnesb840d907f2011-12-13 13:19:38 -080038#include "i915_drv.h"
39
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030040static int usecs_to_scanlines(const struct drm_display_mode *mode, int usecs)
41{
42 /* paranoia */
43 if (!mode->crtc_htotal)
44 return 1;
45
46 return DIV_ROUND_UP(usecs * mode->crtc_clock, 1000 * mode->crtc_htotal);
47}
48
49static bool intel_pipe_update_start(struct intel_crtc *crtc, uint32_t *start_vbl_count)
50{
51 struct drm_device *dev = crtc->base.dev;
52 const struct drm_display_mode *mode = &crtc->config.adjusted_mode;
53 enum pipe pipe = crtc->pipe;
54 long timeout = msecs_to_jiffies_timeout(1);
55 int scanline, min, max, vblank_start;
Ville Syrjälä210871b2014-05-22 19:00:50 +030056 wait_queue_head_t *wq = drm_crtc_vblank_waitqueue(&crtc->base);
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030057 DEFINE_WAIT(wait);
58
Rob Clark51fd3712013-11-19 12:10:12 -050059 WARN_ON(!drm_modeset_is_locked(&crtc->base.mutex));
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030060
61 vblank_start = mode->crtc_vblank_start;
62 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
63 vblank_start = DIV_ROUND_UP(vblank_start, 2);
64
65 /* FIXME needs to be calibrated sensibly */
66 min = vblank_start - usecs_to_scanlines(mode, 100);
67 max = vblank_start - 1;
68
69 if (min <= 0 || max <= 0)
70 return false;
71
72 if (WARN_ON(drm_vblank_get(dev, pipe)))
73 return false;
74
75 local_irq_disable();
76
Ville Syrjälä25ef2842014-04-29 13:35:48 +030077 trace_i915_pipe_update_start(crtc, min, max);
78
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030079 for (;;) {
80 /*
81 * prepare_to_wait() has a memory barrier, which guarantees
82 * other CPUs can see the task state update by the time we
83 * read the scanline.
84 */
Ville Syrjälä210871b2014-05-22 19:00:50 +030085 prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030086
87 scanline = intel_get_crtc_scanline(crtc);
88 if (scanline < min || scanline > max)
89 break;
90
91 if (timeout <= 0) {
92 DRM_ERROR("Potential atomic update failure on pipe %c\n",
93 pipe_name(crtc->pipe));
94 break;
95 }
96
97 local_irq_enable();
98
99 timeout = schedule_timeout(timeout);
100
101 local_irq_disable();
102 }
103
Ville Syrjälä210871b2014-05-22 19:00:50 +0300104 finish_wait(wq, &wait);
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300105
106 drm_vblank_put(dev, pipe);
107
108 *start_vbl_count = dev->driver->get_vblank_counter(dev, pipe);
109
Ville Syrjälä25ef2842014-04-29 13:35:48 +0300110 trace_i915_pipe_update_vblank_evaded(crtc, min, max, *start_vbl_count);
111
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300112 return true;
113}
114
115static void intel_pipe_update_end(struct intel_crtc *crtc, u32 start_vbl_count)
116{
117 struct drm_device *dev = crtc->base.dev;
118 enum pipe pipe = crtc->pipe;
119 u32 end_vbl_count = dev->driver->get_vblank_counter(dev, pipe);
120
Ville Syrjälä25ef2842014-04-29 13:35:48 +0300121 trace_i915_pipe_update_end(crtc, end_vbl_count);
122
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300123 local_irq_enable();
124
125 if (start_vbl_count != end_vbl_count)
126 DRM_ERROR("Atomic update failure on pipe %c (start=%u end=%u)\n",
127 pipe_name(pipe), start_vbl_count, end_vbl_count);
128}
129
Ville Syrjälä5b633d62014-04-29 13:35:47 +0300130static void intel_update_primary_plane(struct intel_crtc *crtc)
131{
132 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
133 int reg = DSPCNTR(crtc->plane);
134
135 if (crtc->primary_enabled)
136 I915_WRITE(reg, I915_READ(reg) | DISPLAY_PLANE_ENABLE);
137 else
138 I915_WRITE(reg, I915_READ(reg) & ~DISPLAY_PLANE_ENABLE);
139}
140
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800141static void
Ville Syrjäläb39d53f2013-08-06 22:24:09 +0300142vlv_update_plane(struct drm_plane *dplane, struct drm_crtc *crtc,
143 struct drm_framebuffer *fb,
Jesse Barnes7f1f3852013-04-02 11:22:20 -0700144 struct drm_i915_gem_object *obj, int crtc_x, int crtc_y,
145 unsigned int crtc_w, unsigned int crtc_h,
146 uint32_t x, uint32_t y,
147 uint32_t src_w, uint32_t src_h)
148{
149 struct drm_device *dev = dplane->dev;
150 struct drm_i915_private *dev_priv = dev->dev_private;
151 struct intel_plane *intel_plane = to_intel_plane(dplane);
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300152 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes7f1f3852013-04-02 11:22:20 -0700153 int pipe = intel_plane->pipe;
154 int plane = intel_plane->plane;
155 u32 sprctl;
156 unsigned long sprsurf_offset, linear_offset;
157 int pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300158 u32 start_vbl_count;
159 bool atomic_update;
Jesse Barnes7f1f3852013-04-02 11:22:20 -0700160
161 sprctl = I915_READ(SPCNTR(pipe, plane));
162
163 /* Mask out pixel format bits in case we change it */
164 sprctl &= ~SP_PIXFORMAT_MASK;
165 sprctl &= ~SP_YUV_BYTE_ORDER_MASK;
166 sprctl &= ~SP_TILED;
Ville Syrjälä76eebda2014-08-05 11:26:52 +0530167 sprctl &= ~SP_ROTATE_180;
Jesse Barnes7f1f3852013-04-02 11:22:20 -0700168
169 switch (fb->pixel_format) {
170 case DRM_FORMAT_YUYV:
171 sprctl |= SP_FORMAT_YUV422 | SP_YUV_ORDER_YUYV;
172 break;
173 case DRM_FORMAT_YVYU:
174 sprctl |= SP_FORMAT_YUV422 | SP_YUV_ORDER_YVYU;
175 break;
176 case DRM_FORMAT_UYVY:
177 sprctl |= SP_FORMAT_YUV422 | SP_YUV_ORDER_UYVY;
178 break;
179 case DRM_FORMAT_VYUY:
180 sprctl |= SP_FORMAT_YUV422 | SP_YUV_ORDER_VYUY;
181 break;
182 case DRM_FORMAT_RGB565:
183 sprctl |= SP_FORMAT_BGR565;
184 break;
185 case DRM_FORMAT_XRGB8888:
186 sprctl |= SP_FORMAT_BGRX8888;
187 break;
188 case DRM_FORMAT_ARGB8888:
189 sprctl |= SP_FORMAT_BGRA8888;
190 break;
191 case DRM_FORMAT_XBGR2101010:
192 sprctl |= SP_FORMAT_RGBX1010102;
193 break;
194 case DRM_FORMAT_ABGR2101010:
195 sprctl |= SP_FORMAT_RGBA1010102;
196 break;
197 case DRM_FORMAT_XBGR8888:
198 sprctl |= SP_FORMAT_RGBX8888;
199 break;
200 case DRM_FORMAT_ABGR8888:
201 sprctl |= SP_FORMAT_RGBA8888;
202 break;
203 default:
204 /*
205 * If we get here one of the upper layers failed to filter
206 * out the unsupported plane formats
207 */
208 BUG();
209 break;
210 }
211
Ville Syrjälä4ea67bc2013-11-18 18:32:38 -0800212 /*
213 * Enable gamma to match primary/cursor plane behaviour.
214 * FIXME should be user controllable via propertiesa.
215 */
216 sprctl |= SP_GAMMA_ENABLE;
217
Jesse Barnes7f1f3852013-04-02 11:22:20 -0700218 if (obj->tiling_mode != I915_TILING_NONE)
219 sprctl |= SP_TILED;
220
221 sprctl |= SP_ENABLE;
222
Damien Lespiaued57cb82014-07-15 09:21:24 +0200223 intel_update_sprite_watermarks(dplane, crtc, src_w, src_h,
224 pixel_size, true,
Ville Syrjälä67ca28f2013-07-05 11:57:14 +0300225 src_w != crtc_w || src_h != crtc_h);
226
Jesse Barnes7f1f3852013-04-02 11:22:20 -0700227 /* Sizes are 0 based */
228 src_w--;
229 src_h--;
230 crtc_w--;
231 crtc_h--;
232
Jesse Barnes7f1f3852013-04-02 11:22:20 -0700233 linear_offset = y * fb->pitches[0] + x * pixel_size;
234 sprsurf_offset = intel_gen4_compute_page_offset(&x, &y,
235 obj->tiling_mode,
236 pixel_size,
237 fb->pitches[0]);
238 linear_offset -= sprsurf_offset;
239
Ville Syrjälä76eebda2014-08-05 11:26:52 +0530240 if (intel_plane->rotation == BIT(DRM_ROTATE_180)) {
241 sprctl |= SP_ROTATE_180;
242
243 x += src_w;
244 y += src_h;
245 linear_offset += src_h * fb->pitches[0] + src_w * pixel_size;
246 }
247
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300248 atomic_update = intel_pipe_update_start(intel_crtc, &start_vbl_count);
249
Ville Syrjälä5b633d62014-04-29 13:35:47 +0300250 intel_update_primary_plane(intel_crtc);
251
Ville Syrjäläca6ad022014-01-17 20:09:03 +0200252 I915_WRITE(SPSTRIDE(pipe, plane), fb->pitches[0]);
253 I915_WRITE(SPPOS(pipe, plane), (crtc_y << 16) | crtc_x);
254
Jesse Barnes7f1f3852013-04-02 11:22:20 -0700255 if (obj->tiling_mode != I915_TILING_NONE)
256 I915_WRITE(SPTILEOFF(pipe, plane), (y << 16) | x);
257 else
258 I915_WRITE(SPLINOFF(pipe, plane), linear_offset);
259
260 I915_WRITE(SPSIZE(pipe, plane), (crtc_h << 16) | crtc_w);
261 I915_WRITE(SPCNTR(pipe, plane), sprctl);
Daniel Vetter85ba7b72014-01-24 10:31:44 +0100262 I915_WRITE(SPSURF(pipe, plane), i915_gem_obj_ggtt_offset(obj) +
263 sprsurf_offset);
Ville Syrjälä5b633d62014-04-29 13:35:47 +0300264
265 intel_flush_primary_plane(dev_priv, intel_crtc->plane);
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300266
267 if (atomic_update)
268 intel_pipe_update_end(intel_crtc, start_vbl_count);
Jesse Barnes7f1f3852013-04-02 11:22:20 -0700269}
270
271static void
Ville Syrjäläb39d53f2013-08-06 22:24:09 +0300272vlv_disable_plane(struct drm_plane *dplane, struct drm_crtc *crtc)
Jesse Barnes7f1f3852013-04-02 11:22:20 -0700273{
274 struct drm_device *dev = dplane->dev;
275 struct drm_i915_private *dev_priv = dev->dev_private;
276 struct intel_plane *intel_plane = to_intel_plane(dplane);
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300277 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes7f1f3852013-04-02 11:22:20 -0700278 int pipe = intel_plane->pipe;
279 int plane = intel_plane->plane;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300280 u32 start_vbl_count;
281 bool atomic_update;
282
283 atomic_update = intel_pipe_update_start(intel_crtc, &start_vbl_count);
Jesse Barnes7f1f3852013-04-02 11:22:20 -0700284
Ville Syrjälä5b633d62014-04-29 13:35:47 +0300285 intel_update_primary_plane(intel_crtc);
286
Jesse Barnes7f1f3852013-04-02 11:22:20 -0700287 I915_WRITE(SPCNTR(pipe, plane), I915_READ(SPCNTR(pipe, plane)) &
288 ~SP_ENABLE);
289 /* Activate double buffered register update */
Daniel Vetter85ba7b72014-01-24 10:31:44 +0100290 I915_WRITE(SPSURF(pipe, plane), 0);
Ville Syrjälä5b633d62014-04-29 13:35:47 +0300291
292 intel_flush_primary_plane(dev_priv, intel_crtc->plane);
Ville Syrjäläa95fd8c2013-08-06 22:24:12 +0300293
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300294 if (atomic_update)
295 intel_pipe_update_end(intel_crtc, start_vbl_count);
296
Damien Lespiaued57cb82014-07-15 09:21:24 +0200297 intel_update_sprite_watermarks(dplane, crtc, 0, 0, 0, false, false);
Jesse Barnes7f1f3852013-04-02 11:22:20 -0700298}
299
300static int
301vlv_update_colorkey(struct drm_plane *dplane,
302 struct drm_intel_sprite_colorkey *key)
303{
304 struct drm_device *dev = dplane->dev;
305 struct drm_i915_private *dev_priv = dev->dev_private;
306 struct intel_plane *intel_plane = to_intel_plane(dplane);
307 int pipe = intel_plane->pipe;
308 int plane = intel_plane->plane;
309 u32 sprctl;
310
311 if (key->flags & I915_SET_COLORKEY_DESTINATION)
312 return -EINVAL;
313
314 I915_WRITE(SPKEYMINVAL(pipe, plane), key->min_value);
315 I915_WRITE(SPKEYMAXVAL(pipe, plane), key->max_value);
316 I915_WRITE(SPKEYMSK(pipe, plane), key->channel_mask);
317
318 sprctl = I915_READ(SPCNTR(pipe, plane));
319 sprctl &= ~SP_SOURCE_KEY;
320 if (key->flags & I915_SET_COLORKEY_SOURCE)
321 sprctl |= SP_SOURCE_KEY;
322 I915_WRITE(SPCNTR(pipe, plane), sprctl);
323
324 POSTING_READ(SPKEYMSK(pipe, plane));
325
326 return 0;
327}
328
329static void
330vlv_get_colorkey(struct drm_plane *dplane,
331 struct drm_intel_sprite_colorkey *key)
332{
333 struct drm_device *dev = dplane->dev;
334 struct drm_i915_private *dev_priv = dev->dev_private;
335 struct intel_plane *intel_plane = to_intel_plane(dplane);
336 int pipe = intel_plane->pipe;
337 int plane = intel_plane->plane;
338 u32 sprctl;
339
340 key->min_value = I915_READ(SPKEYMINVAL(pipe, plane));
341 key->max_value = I915_READ(SPKEYMAXVAL(pipe, plane));
342 key->channel_mask = I915_READ(SPKEYMSK(pipe, plane));
343
344 sprctl = I915_READ(SPCNTR(pipe, plane));
345 if (sprctl & SP_SOURCE_KEY)
346 key->flags = I915_SET_COLORKEY_SOURCE;
347 else
348 key->flags = I915_SET_COLORKEY_NONE;
349}
350
351static void
Ville Syrjäläb39d53f2013-08-06 22:24:09 +0300352ivb_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
353 struct drm_framebuffer *fb,
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800354 struct drm_i915_gem_object *obj, int crtc_x, int crtc_y,
355 unsigned int crtc_w, unsigned int crtc_h,
356 uint32_t x, uint32_t y,
357 uint32_t src_w, uint32_t src_h)
358{
359 struct drm_device *dev = plane->dev;
360 struct drm_i915_private *dev_priv = dev->dev_private;
361 struct intel_plane *intel_plane = to_intel_plane(plane);
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300362 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800363 int pipe = intel_plane->pipe;
364 u32 sprctl, sprscale = 0;
Damien Lespiau5a35e992012-10-26 18:20:12 +0100365 unsigned long sprsurf_offset, linear_offset;
Ville Syrjälä2bd3c3c2012-10-31 17:50:20 +0200366 int pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300367 u32 start_vbl_count;
368 bool atomic_update;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800369
370 sprctl = I915_READ(SPRCTL(pipe));
371
372 /* Mask out pixel format bits in case we change it */
373 sprctl &= ~SPRITE_PIXFORMAT_MASK;
374 sprctl &= ~SPRITE_RGB_ORDER_RGBX;
375 sprctl &= ~SPRITE_YUV_BYTE_ORDER_MASK;
Jesse Barnese86fe0d2012-06-26 13:10:11 -0700376 sprctl &= ~SPRITE_TILED;
Ville Syrjälä76eebda2014-08-05 11:26:52 +0530377 sprctl &= ~SPRITE_ROTATE_180;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800378
379 switch (fb->pixel_format) {
380 case DRM_FORMAT_XBGR8888:
Vijay Purushothaman5ee36912012-08-23 12:08:57 +0530381 sprctl |= SPRITE_FORMAT_RGBX888 | SPRITE_RGB_ORDER_RGBX;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800382 break;
383 case DRM_FORMAT_XRGB8888:
Vijay Purushothaman5ee36912012-08-23 12:08:57 +0530384 sprctl |= SPRITE_FORMAT_RGBX888;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800385 break;
386 case DRM_FORMAT_YUYV:
387 sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_YUYV;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800388 break;
389 case DRM_FORMAT_YVYU:
390 sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_YVYU;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800391 break;
392 case DRM_FORMAT_UYVY:
393 sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_UYVY;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800394 break;
395 case DRM_FORMAT_VYUY:
396 sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_VYUY;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800397 break;
398 default:
Ville Syrjälä28d491d2012-10-31 17:50:21 +0200399 BUG();
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800400 }
401
Ville Syrjälä4ea67bc2013-11-18 18:32:38 -0800402 /*
403 * Enable gamma to match primary/cursor plane behaviour.
404 * FIXME should be user controllable via propertiesa.
405 */
406 sprctl |= SPRITE_GAMMA_ENABLE;
407
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800408 if (obj->tiling_mode != I915_TILING_NONE)
409 sprctl |= SPRITE_TILED;
410
Ville Syrjäläb42c6002013-11-03 13:47:27 +0200411 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -0300412 sprctl &= ~SPRITE_TRICKLE_FEED_DISABLE;
413 else
414 sprctl |= SPRITE_TRICKLE_FEED_DISABLE;
415
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800416 sprctl |= SPRITE_ENABLE;
417
Ville Syrjälä6bbfa1c2013-11-02 21:07:39 -0700418 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ville Syrjälä86d3efc2013-01-18 19:11:38 +0200419 sprctl |= SPRITE_PIPE_CSC_ENABLE;
420
Damien Lespiaued57cb82014-07-15 09:21:24 +0200421 intel_update_sprite_watermarks(plane, crtc, src_w, src_h, pixel_size,
422 true,
Ville Syrjälä67ca28f2013-07-05 11:57:14 +0300423 src_w != crtc_w || src_h != crtc_h);
424
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800425 /* Sizes are 0 based */
426 src_w--;
427 src_h--;
428 crtc_w--;
429 crtc_h--;
430
Ville Syrjälä8553c182013-12-05 15:51:39 +0200431 if (crtc_w != src_w || crtc_h != src_h)
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800432 sprscale = SPRITE_SCALE_ENABLE | (src_w << 16) | src_h;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800433
Chris Wilsonca320ac2012-12-19 12:14:22 +0000434 linear_offset = y * fb->pitches[0] + x * pixel_size;
Damien Lespiau5a35e992012-10-26 18:20:12 +0100435 sprsurf_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +0000436 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
437 pixel_size, fb->pitches[0]);
Damien Lespiau5a35e992012-10-26 18:20:12 +0100438 linear_offset -= sprsurf_offset;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800439
Ville Syrjälä76eebda2014-08-05 11:26:52 +0530440 if (intel_plane->rotation == BIT(DRM_ROTATE_180)) {
441 sprctl |= SPRITE_ROTATE_180;
442
443 /* HSW and BDW does this automagically in hardware */
444 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
445 x += src_w;
446 y += src_h;
447 linear_offset += src_h * fb->pitches[0] +
448 src_w * pixel_size;
449 }
450 }
451
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300452 atomic_update = intel_pipe_update_start(intel_crtc, &start_vbl_count);
453
Ville Syrjälä5b633d62014-04-29 13:35:47 +0300454 intel_update_primary_plane(intel_crtc);
455
Ville Syrjäläca6ad022014-01-17 20:09:03 +0200456 I915_WRITE(SPRSTRIDE(pipe), fb->pitches[0]);
457 I915_WRITE(SPRPOS(pipe), (crtc_y << 16) | crtc_x);
458
Damien Lespiau5a35e992012-10-26 18:20:12 +0100459 /* HSW consolidates SPRTILEOFF and SPRLINOFF into a single SPROFFSET
460 * register */
Paulo Zanonib3dc6852013-11-02 21:07:33 -0700461 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Damien Lespiau5a35e992012-10-26 18:20:12 +0100462 I915_WRITE(SPROFFSET(pipe), (y << 16) | x);
463 else if (obj->tiling_mode != I915_TILING_NONE)
464 I915_WRITE(SPRTILEOFF(pipe), (y << 16) | x);
465 else
466 I915_WRITE(SPRLINOFF(pipe), linear_offset);
Damien Lespiauc54173a2012-10-26 18:20:11 +0100467
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800468 I915_WRITE(SPRSIZE(pipe), (crtc_h << 16) | crtc_w);
Damien Lespiau2d354c32012-10-22 18:19:27 +0100469 if (intel_plane->can_scale)
470 I915_WRITE(SPRSCALE(pipe), sprscale);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800471 I915_WRITE(SPRCTL(pipe), sprctl);
Daniel Vetter85ba7b72014-01-24 10:31:44 +0100472 I915_WRITE(SPRSURF(pipe),
473 i915_gem_obj_ggtt_offset(obj) + sprsurf_offset);
Ville Syrjälä5b633d62014-04-29 13:35:47 +0300474
475 intel_flush_primary_plane(dev_priv, intel_crtc->plane);
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300476
477 if (atomic_update)
478 intel_pipe_update_end(intel_crtc, start_vbl_count);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800479}
480
481static void
Ville Syrjäläb39d53f2013-08-06 22:24:09 +0300482ivb_disable_plane(struct drm_plane *plane, struct drm_crtc *crtc)
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800483{
484 struct drm_device *dev = plane->dev;
485 struct drm_i915_private *dev_priv = dev->dev_private;
486 struct intel_plane *intel_plane = to_intel_plane(plane);
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300487 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800488 int pipe = intel_plane->pipe;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300489 u32 start_vbl_count;
490 bool atomic_update;
491
492 atomic_update = intel_pipe_update_start(intel_crtc, &start_vbl_count);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800493
Ville Syrjälä5b633d62014-04-29 13:35:47 +0300494 intel_update_primary_plane(intel_crtc);
495
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800496 I915_WRITE(SPRCTL(pipe), I915_READ(SPRCTL(pipe)) & ~SPRITE_ENABLE);
497 /* Can't leave the scaler enabled... */
Damien Lespiau2d354c32012-10-22 18:19:27 +0100498 if (intel_plane->can_scale)
499 I915_WRITE(SPRSCALE(pipe), 0);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800500 /* Activate double buffered register update */
Daniel Vetter85ba7b72014-01-24 10:31:44 +0100501 I915_WRITE(SPRSURF(pipe), 0);
Ville Syrjälä5b633d62014-04-29 13:35:47 +0300502
503 intel_flush_primary_plane(dev_priv, intel_crtc->plane);
Chris Wilson828ed3e2012-04-18 17:12:26 +0100504
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300505 if (atomic_update)
506 intel_pipe_update_end(intel_crtc, start_vbl_count);
507
Ville Syrjälä1bd09ec2013-12-05 15:51:41 +0200508 /*
509 * Avoid underruns when disabling the sprite.
510 * FIXME remove once watermark updates are done properly.
511 */
512 intel_wait_for_vblank(dev, pipe);
513
Damien Lespiaued57cb82014-07-15 09:21:24 +0200514 intel_update_sprite_watermarks(plane, crtc, 0, 0, 0, false, false);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800515}
516
Jesse Barnes8ea30862012-01-03 08:05:39 -0800517static int
518ivb_update_colorkey(struct drm_plane *plane,
519 struct drm_intel_sprite_colorkey *key)
520{
521 struct drm_device *dev = plane->dev;
522 struct drm_i915_private *dev_priv = dev->dev_private;
523 struct intel_plane *intel_plane;
524 u32 sprctl;
525 int ret = 0;
526
527 intel_plane = to_intel_plane(plane);
528
529 I915_WRITE(SPRKEYVAL(intel_plane->pipe), key->min_value);
530 I915_WRITE(SPRKEYMAX(intel_plane->pipe), key->max_value);
531 I915_WRITE(SPRKEYMSK(intel_plane->pipe), key->channel_mask);
532
533 sprctl = I915_READ(SPRCTL(intel_plane->pipe));
534 sprctl &= ~(SPRITE_SOURCE_KEY | SPRITE_DEST_KEY);
535 if (key->flags & I915_SET_COLORKEY_DESTINATION)
536 sprctl |= SPRITE_DEST_KEY;
537 else if (key->flags & I915_SET_COLORKEY_SOURCE)
538 sprctl |= SPRITE_SOURCE_KEY;
539 I915_WRITE(SPRCTL(intel_plane->pipe), sprctl);
540
541 POSTING_READ(SPRKEYMSK(intel_plane->pipe));
542
543 return ret;
544}
545
546static void
547ivb_get_colorkey(struct drm_plane *plane, struct drm_intel_sprite_colorkey *key)
548{
549 struct drm_device *dev = plane->dev;
550 struct drm_i915_private *dev_priv = dev->dev_private;
551 struct intel_plane *intel_plane;
552 u32 sprctl;
553
554 intel_plane = to_intel_plane(plane);
555
556 key->min_value = I915_READ(SPRKEYVAL(intel_plane->pipe));
557 key->max_value = I915_READ(SPRKEYMAX(intel_plane->pipe));
558 key->channel_mask = I915_READ(SPRKEYMSK(intel_plane->pipe));
559 key->flags = 0;
560
561 sprctl = I915_READ(SPRCTL(intel_plane->pipe));
562
563 if (sprctl & SPRITE_DEST_KEY)
564 key->flags = I915_SET_COLORKEY_DESTINATION;
565 else if (sprctl & SPRITE_SOURCE_KEY)
566 key->flags = I915_SET_COLORKEY_SOURCE;
567 else
568 key->flags = I915_SET_COLORKEY_NONE;
569}
570
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800571static void
Ville Syrjäläb39d53f2013-08-06 22:24:09 +0300572ilk_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
573 struct drm_framebuffer *fb,
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800574 struct drm_i915_gem_object *obj, int crtc_x, int crtc_y,
575 unsigned int crtc_w, unsigned int crtc_h,
576 uint32_t x, uint32_t y,
577 uint32_t src_w, uint32_t src_h)
578{
579 struct drm_device *dev = plane->dev;
580 struct drm_i915_private *dev_priv = dev->dev_private;
581 struct intel_plane *intel_plane = to_intel_plane(plane);
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300582 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä2bd3c3c2012-10-31 17:50:20 +0200583 int pipe = intel_plane->pipe;
Damien Lespiau5a35e992012-10-26 18:20:12 +0100584 unsigned long dvssurf_offset, linear_offset;
Chris Wilson8aaa81a2012-04-14 22:14:26 +0100585 u32 dvscntr, dvsscale;
Ville Syrjälä2bd3c3c2012-10-31 17:50:20 +0200586 int pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300587 u32 start_vbl_count;
588 bool atomic_update;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800589
590 dvscntr = I915_READ(DVSCNTR(pipe));
591
592 /* Mask out pixel format bits in case we change it */
593 dvscntr &= ~DVS_PIXFORMAT_MASK;
Jesse Barnesab2f9df2012-02-27 12:40:10 -0800594 dvscntr &= ~DVS_RGB_ORDER_XBGR;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800595 dvscntr &= ~DVS_YUV_BYTE_ORDER_MASK;
Ander Conselvan de Oliveira79626522012-07-13 15:50:33 +0300596 dvscntr &= ~DVS_TILED;
Ville Syrjälä76eebda2014-08-05 11:26:52 +0530597 dvscntr &= ~DVS_ROTATE_180;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800598
599 switch (fb->pixel_format) {
600 case DRM_FORMAT_XBGR8888:
Jesse Barnesab2f9df2012-02-27 12:40:10 -0800601 dvscntr |= DVS_FORMAT_RGBX888 | DVS_RGB_ORDER_XBGR;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800602 break;
603 case DRM_FORMAT_XRGB8888:
Jesse Barnesab2f9df2012-02-27 12:40:10 -0800604 dvscntr |= DVS_FORMAT_RGBX888;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800605 break;
606 case DRM_FORMAT_YUYV:
607 dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_YUYV;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800608 break;
609 case DRM_FORMAT_YVYU:
610 dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_YVYU;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800611 break;
612 case DRM_FORMAT_UYVY:
613 dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_UYVY;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800614 break;
615 case DRM_FORMAT_VYUY:
616 dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_VYUY;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800617 break;
618 default:
Ville Syrjälä28d491d2012-10-31 17:50:21 +0200619 BUG();
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800620 }
621
Ville Syrjälä4ea67bc2013-11-18 18:32:38 -0800622 /*
623 * Enable gamma to match primary/cursor plane behaviour.
624 * FIXME should be user controllable via propertiesa.
625 */
626 dvscntr |= DVS_GAMMA_ENABLE;
627
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800628 if (obj->tiling_mode != I915_TILING_NONE)
629 dvscntr |= DVS_TILED;
630
Chris Wilsond1686ae2012-04-10 11:41:49 +0100631 if (IS_GEN6(dev))
632 dvscntr |= DVS_TRICKLE_FEED_DISABLE; /* must disable */
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800633 dvscntr |= DVS_ENABLE;
634
Damien Lespiaued57cb82014-07-15 09:21:24 +0200635 intel_update_sprite_watermarks(plane, crtc, src_w, src_h,
636 pixel_size, true,
Ville Syrjälä67ca28f2013-07-05 11:57:14 +0300637 src_w != crtc_w || src_h != crtc_h);
638
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800639 /* Sizes are 0 based */
640 src_w--;
641 src_h--;
642 crtc_w--;
643 crtc_h--;
644
Chris Wilson8aaa81a2012-04-14 22:14:26 +0100645 dvsscale = 0;
Ville Syrjälä8368f012013-12-05 15:51:31 +0200646 if (crtc_w != src_w || crtc_h != src_h)
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800647 dvsscale = DVS_SCALE_ENABLE | (src_w << 16) | src_h;
648
Chris Wilsonca320ac2012-12-19 12:14:22 +0000649 linear_offset = y * fb->pitches[0] + x * pixel_size;
Damien Lespiau5a35e992012-10-26 18:20:12 +0100650 dvssurf_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +0000651 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
652 pixel_size, fb->pitches[0]);
Damien Lespiau5a35e992012-10-26 18:20:12 +0100653 linear_offset -= dvssurf_offset;
654
Ville Syrjälä76eebda2014-08-05 11:26:52 +0530655 if (intel_plane->rotation == BIT(DRM_ROTATE_180)) {
656 dvscntr |= DVS_ROTATE_180;
657
658 x += src_w;
659 y += src_h;
660 linear_offset += src_h * fb->pitches[0] + src_w * pixel_size;
661 }
662
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300663 atomic_update = intel_pipe_update_start(intel_crtc, &start_vbl_count);
664
Ville Syrjälä5b633d62014-04-29 13:35:47 +0300665 intel_update_primary_plane(intel_crtc);
666
Ville Syrjäläca6ad022014-01-17 20:09:03 +0200667 I915_WRITE(DVSSTRIDE(pipe), fb->pitches[0]);
668 I915_WRITE(DVSPOS(pipe), (crtc_y << 16) | crtc_x);
669
Damien Lespiau5a35e992012-10-26 18:20:12 +0100670 if (obj->tiling_mode != I915_TILING_NONE)
671 I915_WRITE(DVSTILEOFF(pipe), (y << 16) | x);
672 else
673 I915_WRITE(DVSLINOFF(pipe), linear_offset);
674
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800675 I915_WRITE(DVSSIZE(pipe), (crtc_h << 16) | crtc_w);
676 I915_WRITE(DVSSCALE(pipe), dvsscale);
677 I915_WRITE(DVSCNTR(pipe), dvscntr);
Daniel Vetter85ba7b72014-01-24 10:31:44 +0100678 I915_WRITE(DVSSURF(pipe),
679 i915_gem_obj_ggtt_offset(obj) + dvssurf_offset);
Ville Syrjälä5b633d62014-04-29 13:35:47 +0300680
681 intel_flush_primary_plane(dev_priv, intel_crtc->plane);
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300682
683 if (atomic_update)
684 intel_pipe_update_end(intel_crtc, start_vbl_count);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800685}
686
687static void
Ville Syrjäläb39d53f2013-08-06 22:24:09 +0300688ilk_disable_plane(struct drm_plane *plane, struct drm_crtc *crtc)
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800689{
690 struct drm_device *dev = plane->dev;
691 struct drm_i915_private *dev_priv = dev->dev_private;
692 struct intel_plane *intel_plane = to_intel_plane(plane);
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300693 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800694 int pipe = intel_plane->pipe;
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300695 u32 start_vbl_count;
696 bool atomic_update;
697
698 atomic_update = intel_pipe_update_start(intel_crtc, &start_vbl_count);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800699
Ville Syrjälä5b633d62014-04-29 13:35:47 +0300700 intel_update_primary_plane(intel_crtc);
701
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800702 I915_WRITE(DVSCNTR(pipe), I915_READ(DVSCNTR(pipe)) & ~DVS_ENABLE);
703 /* Disable the scaler */
704 I915_WRITE(DVSSCALE(pipe), 0);
705 /* Flush double buffered register updates */
Daniel Vetter85ba7b72014-01-24 10:31:44 +0100706 I915_WRITE(DVSSURF(pipe), 0);
Ville Syrjälä5b633d62014-04-29 13:35:47 +0300707
708 intel_flush_primary_plane(dev_priv, intel_crtc->plane);
Ville Syrjäläa95fd8c2013-08-06 22:24:12 +0300709
Ville Syrjälä8d7849d2014-04-29 13:35:46 +0300710 if (atomic_update)
711 intel_pipe_update_end(intel_crtc, start_vbl_count);
712
Ville Syrjälä1bd09ec2013-12-05 15:51:41 +0200713 /*
714 * Avoid underruns when disabling the sprite.
715 * FIXME remove once watermark updates are done properly.
716 */
717 intel_wait_for_vblank(dev, pipe);
718
Damien Lespiaued57cb82014-07-15 09:21:24 +0200719 intel_update_sprite_watermarks(plane, crtc, 0, 0, 0, false, false);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800720}
721
Jesse Barnes175bd422011-12-13 13:19:39 -0800722static void
Ville Syrjälä5b633d62014-04-29 13:35:47 +0300723intel_post_enable_primary(struct drm_crtc *crtc)
Jesse Barnes175bd422011-12-13 13:19:39 -0800724{
725 struct drm_device *dev = crtc->dev;
Jesse Barnes175bd422011-12-13 13:19:39 -0800726 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjäläabae50e2013-10-01 18:02:16 +0300727
Ville Syrjälä20bc86732013-10-01 18:02:17 +0300728 /*
Ville Syrjälä33c3b0d2014-06-24 13:59:28 +0300729 * BDW signals flip done immediately if the plane
730 * is disabled, even if the plane enable is already
731 * armed to occur at the next vblank :(
732 */
733 if (IS_BROADWELL(dev))
734 intel_wait_for_vblank(dev, intel_crtc->pipe);
735
736 /*
Ville Syrjälä20bc86732013-10-01 18:02:17 +0300737 * FIXME IPS should be fine as long as one plane is
738 * enabled, but in practice it seems to have problems
739 * when going from primary only to sprite only and vice
740 * versa.
741 */
Ville Syrjäläcea165c2014-04-15 21:41:35 +0300742 hsw_enable_ips(intel_crtc);
Ville Syrjälä20bc86732013-10-01 18:02:17 +0300743
Ville Syrjälä82284b62013-10-01 18:02:12 +0300744 mutex_lock(&dev->struct_mutex);
Chris Wilson93314b52012-06-13 17:36:55 +0100745 intel_update_fbc(dev);
Ville Syrjälä82284b62013-10-01 18:02:12 +0300746 mutex_unlock(&dev->struct_mutex);
Jesse Barnes175bd422011-12-13 13:19:39 -0800747}
748
749static void
Ville Syrjälä5b633d62014-04-29 13:35:47 +0300750intel_pre_disable_primary(struct drm_crtc *crtc)
Jesse Barnes175bd422011-12-13 13:19:39 -0800751{
752 struct drm_device *dev = crtc->dev;
753 struct drm_i915_private *dev_priv = dev->dev_private;
754 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä82284b62013-10-01 18:02:12 +0300755
756 mutex_lock(&dev->struct_mutex);
Ville Syrjäläabae50e2013-10-01 18:02:16 +0300757 if (dev_priv->fbc.plane == intel_crtc->plane)
758 intel_disable_fbc(dev);
Ville Syrjälä82284b62013-10-01 18:02:12 +0300759 mutex_unlock(&dev->struct_mutex);
Ville Syrjäläabae50e2013-10-01 18:02:16 +0300760
Ville Syrjälä20bc86732013-10-01 18:02:17 +0300761 /*
762 * FIXME IPS should be fine as long as one plane is
763 * enabled, but in practice it seems to have problems
764 * when going from primary only to sprite only and vice
765 * versa.
766 */
767 hsw_disable_ips(intel_crtc);
Jesse Barnes175bd422011-12-13 13:19:39 -0800768}
769
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800770static int
Chris Wilsond1686ae2012-04-10 11:41:49 +0100771ilk_update_colorkey(struct drm_plane *plane,
Jesse Barnes8ea30862012-01-03 08:05:39 -0800772 struct drm_intel_sprite_colorkey *key)
773{
774 struct drm_device *dev = plane->dev;
775 struct drm_i915_private *dev_priv = dev->dev_private;
776 struct intel_plane *intel_plane;
777 u32 dvscntr;
778 int ret = 0;
779
780 intel_plane = to_intel_plane(plane);
781
782 I915_WRITE(DVSKEYVAL(intel_plane->pipe), key->min_value);
783 I915_WRITE(DVSKEYMAX(intel_plane->pipe), key->max_value);
784 I915_WRITE(DVSKEYMSK(intel_plane->pipe), key->channel_mask);
785
786 dvscntr = I915_READ(DVSCNTR(intel_plane->pipe));
787 dvscntr &= ~(DVS_SOURCE_KEY | DVS_DEST_KEY);
788 if (key->flags & I915_SET_COLORKEY_DESTINATION)
789 dvscntr |= DVS_DEST_KEY;
790 else if (key->flags & I915_SET_COLORKEY_SOURCE)
791 dvscntr |= DVS_SOURCE_KEY;
792 I915_WRITE(DVSCNTR(intel_plane->pipe), dvscntr);
793
794 POSTING_READ(DVSKEYMSK(intel_plane->pipe));
795
796 return ret;
797}
798
799static void
Chris Wilsond1686ae2012-04-10 11:41:49 +0100800ilk_get_colorkey(struct drm_plane *plane, struct drm_intel_sprite_colorkey *key)
Jesse Barnes8ea30862012-01-03 08:05:39 -0800801{
802 struct drm_device *dev = plane->dev;
803 struct drm_i915_private *dev_priv = dev->dev_private;
804 struct intel_plane *intel_plane;
805 u32 dvscntr;
806
807 intel_plane = to_intel_plane(plane);
808
809 key->min_value = I915_READ(DVSKEYVAL(intel_plane->pipe));
810 key->max_value = I915_READ(DVSKEYMAX(intel_plane->pipe));
811 key->channel_mask = I915_READ(DVSKEYMSK(intel_plane->pipe));
812 key->flags = 0;
813
814 dvscntr = I915_READ(DVSCNTR(intel_plane->pipe));
815
816 if (dvscntr & DVS_DEST_KEY)
817 key->flags = I915_SET_COLORKEY_DESTINATION;
818 else if (dvscntr & DVS_SOURCE_KEY)
819 key->flags = I915_SET_COLORKEY_SOURCE;
820 else
821 key->flags = I915_SET_COLORKEY_NONE;
822}
823
Ville Syrjälä17316932013-04-24 18:52:38 +0300824static bool
825format_is_yuv(uint32_t format)
826{
827 switch (format) {
828 case DRM_FORMAT_YUYV:
829 case DRM_FORMAT_UYVY:
830 case DRM_FORMAT_VYUY:
831 case DRM_FORMAT_YVYU:
832 return true;
833 default:
834 return false;
835 }
836}
837
Ville Syrjäläefb31d12013-12-05 15:51:40 +0200838static bool colorkey_enabled(struct intel_plane *intel_plane)
839{
840 struct drm_intel_sprite_colorkey key;
841
842 intel_plane->get_colorkey(&intel_plane->base, &key);
843
844 return key.flags != I915_SET_COLORKEY_NONE;
845}
846
Jesse Barnes8ea30862012-01-03 08:05:39 -0800847static int
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800848intel_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
849 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
850 unsigned int crtc_w, unsigned int crtc_h,
851 uint32_t src_x, uint32_t src_y,
852 uint32_t src_w, uint32_t src_h)
853{
854 struct drm_device *dev = plane->dev;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800855 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
856 struct intel_plane *intel_plane = to_intel_plane(plane);
Daniel Vettera071fa02014-06-18 23:28:09 +0200857 enum pipe pipe = intel_crtc->pipe;
Ville Syrjälä2afd9ef2013-10-01 18:02:14 +0300858 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
859 struct drm_i915_gem_object *obj = intel_fb->obj;
860 struct drm_i915_gem_object *old_obj = intel_plane->obj;
861 int ret;
Ville Syrjälä5b633d62014-04-29 13:35:47 +0300862 bool primary_enabled;
Ville Syrjälä17316932013-04-24 18:52:38 +0300863 bool visible;
864 int hscale, vscale;
865 int max_scale, min_scale;
866 int pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
867 struct drm_rect src = {
868 /* sample coordinates in 16.16 fixed point */
869 .x1 = src_x,
870 .x2 = src_x + src_w,
871 .y1 = src_y,
872 .y2 = src_y + src_h,
873 };
874 struct drm_rect dst = {
875 /* integer pixels */
876 .x1 = crtc_x,
877 .x2 = crtc_x + crtc_w,
878 .y1 = crtc_y,
879 .y2 = crtc_y + crtc_h,
880 };
881 const struct drm_rect clip = {
Ville Syrjälä03c5b252013-10-01 18:02:11 +0300882 .x2 = intel_crtc->active ? intel_crtc->config.pipe_src_w : 0,
883 .y2 = intel_crtc->active ? intel_crtc->config.pipe_src_h : 0,
Ville Syrjälä17316932013-04-24 18:52:38 +0300884 };
Ville Syrjälä098ebd62013-10-01 18:02:15 +0300885 const struct {
886 int crtc_x, crtc_y;
887 unsigned int crtc_w, crtc_h;
888 uint32_t src_x, src_y, src_w, src_h;
889 } orig = {
890 .crtc_x = crtc_x,
891 .crtc_y = crtc_y,
892 .crtc_w = crtc_w,
893 .crtc_h = crtc_h,
894 .src_x = src_x,
895 .src_y = src_y,
896 .src_w = src_w,
897 .src_h = src_h,
898 };
Jesse Barnes5e1bac22013-03-26 09:25:43 -0700899
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800900 /* Don't modify another pipe's plane */
Ville Syrjälä17316932013-04-24 18:52:38 +0300901 if (intel_plane->pipe != intel_crtc->pipe) {
902 DRM_DEBUG_KMS("Wrong plane <-> crtc mapping\n");
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800903 return -EINVAL;
Ville Syrjälä17316932013-04-24 18:52:38 +0300904 }
905
906 /* FIXME check all gen limits */
907 if (fb->width < 3 || fb->height < 3 || fb->pitches[0] > 16384) {
908 DRM_DEBUG_KMS("Unsuitable framebuffer for plane\n");
909 return -EINVAL;
910 }
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800911
Damien Lespiau94c64192012-10-29 15:14:51 +0000912 /* Sprite planes can be linear or x-tiled surfaces */
913 switch (obj->tiling_mode) {
914 case I915_TILING_NONE:
915 case I915_TILING_X:
916 break;
917 default:
Ville Syrjälä17316932013-04-24 18:52:38 +0300918 DRM_DEBUG_KMS("Unsupported tiling mode\n");
Damien Lespiau94c64192012-10-29 15:14:51 +0000919 return -EINVAL;
920 }
921
Ville Syrjälä3c3686c2013-04-24 18:52:39 +0300922 /*
923 * FIXME the following code does a bunch of fuzzy adjustments to the
924 * coordinates and sizes. We probably need some way to decide whether
925 * more strict checking should be done instead.
926 */
Ville Syrjälä17316932013-04-24 18:52:38 +0300927 max_scale = intel_plane->max_downscale << 16;
928 min_scale = intel_plane->can_scale ? 1 : (1 << 16);
929
Ville Syrjälä76eebda2014-08-05 11:26:52 +0530930 drm_rect_rotate(&src, fb->width << 16, fb->height << 16,
931 intel_plane->rotation);
932
Ville Syrjälä3c3686c2013-04-24 18:52:39 +0300933 hscale = drm_rect_calc_hscale_relaxed(&src, &dst, min_scale, max_scale);
934 BUG_ON(hscale < 0);
Ville Syrjälä17316932013-04-24 18:52:38 +0300935
Ville Syrjälä3c3686c2013-04-24 18:52:39 +0300936 vscale = drm_rect_calc_vscale_relaxed(&src, &dst, min_scale, max_scale);
937 BUG_ON(vscale < 0);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800938
Ville Syrjälä17316932013-04-24 18:52:38 +0300939 visible = drm_rect_clip_scaled(&src, &dst, &clip, hscale, vscale);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800940
Ville Syrjälä17316932013-04-24 18:52:38 +0300941 crtc_x = dst.x1;
942 crtc_y = dst.y1;
943 crtc_w = drm_rect_width(&dst);
944 crtc_h = drm_rect_height(&dst);
Damien Lespiau2d354c32012-10-22 18:19:27 +0100945
Ville Syrjälä17316932013-04-24 18:52:38 +0300946 if (visible) {
Ville Syrjälä3c3686c2013-04-24 18:52:39 +0300947 /* check again in case clipping clamped the results */
948 hscale = drm_rect_calc_hscale(&src, &dst, min_scale, max_scale);
949 if (hscale < 0) {
950 DRM_DEBUG_KMS("Horizontal scaling factor out of limits\n");
951 drm_rect_debug_print(&src, true);
952 drm_rect_debug_print(&dst, false);
953
954 return hscale;
955 }
956
957 vscale = drm_rect_calc_vscale(&src, &dst, min_scale, max_scale);
958 if (vscale < 0) {
959 DRM_DEBUG_KMS("Vertical scaling factor out of limits\n");
960 drm_rect_debug_print(&src, true);
961 drm_rect_debug_print(&dst, false);
962
963 return vscale;
964 }
965
Ville Syrjälä17316932013-04-24 18:52:38 +0300966 /* Make the source viewport size an exact multiple of the scaling factors. */
967 drm_rect_adjust_size(&src,
968 drm_rect_width(&dst) * hscale - drm_rect_width(&src),
969 drm_rect_height(&dst) * vscale - drm_rect_height(&src));
970
Ville Syrjälä76eebda2014-08-05 11:26:52 +0530971 drm_rect_rotate_inv(&src, fb->width << 16, fb->height << 16,
972 intel_plane->rotation);
973
Ville Syrjälä17316932013-04-24 18:52:38 +0300974 /* sanity check to make sure the src viewport wasn't enlarged */
975 WARN_ON(src.x1 < (int) src_x ||
976 src.y1 < (int) src_y ||
977 src.x2 > (int) (src_x + src_w) ||
978 src.y2 > (int) (src_y + src_h));
979
980 /*
981 * Hardware doesn't handle subpixel coordinates.
982 * Adjust to (macro)pixel boundary, but be careful not to
983 * increase the source viewport size, because that could
984 * push the downscaling factor out of bounds.
Ville Syrjälä17316932013-04-24 18:52:38 +0300985 */
986 src_x = src.x1 >> 16;
987 src_w = drm_rect_width(&src) >> 16;
988 src_y = src.y1 >> 16;
989 src_h = drm_rect_height(&src) >> 16;
990
991 if (format_is_yuv(fb->pixel_format)) {
992 src_x &= ~1;
993 src_w &= ~1;
994
995 /*
996 * Must keep src and dst the
997 * same if we can't scale.
998 */
999 if (!intel_plane->can_scale)
1000 crtc_w &= ~1;
1001
1002 if (crtc_w == 0)
1003 visible = false;
1004 }
1005 }
1006
1007 /* Check size restrictions when scaling */
1008 if (visible && (src_w != crtc_w || src_h != crtc_h)) {
1009 unsigned int width_bytes;
1010
1011 WARN_ON(!intel_plane->can_scale);
1012
1013 /* FIXME interlacing min height is 6 */
1014
1015 if (crtc_w < 3 || crtc_h < 3)
1016 visible = false;
1017
1018 if (src_w < 3 || src_h < 3)
1019 visible = false;
1020
1021 width_bytes = ((src_x * pixel_size) & 63) + src_w * pixel_size;
1022
1023 if (src_w > 2048 || src_h > 2048 ||
1024 width_bytes > 4096 || fb->pitches[0] > 4096) {
1025 DRM_DEBUG_KMS("Source dimensions exceed hardware limits\n");
1026 return -EINVAL;
1027 }
1028 }
1029
1030 dst.x1 = crtc_x;
1031 dst.x2 = crtc_x + crtc_w;
1032 dst.y1 = crtc_y;
1033 dst.y2 = crtc_y + crtc_h;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001034
1035 /*
1036 * If the sprite is completely covering the primary plane,
1037 * we can disable the primary and save power.
1038 */
Ville Syrjälä5b633d62014-04-29 13:35:47 +03001039 primary_enabled = !drm_rect_equals(&dst, &clip) || colorkey_enabled(intel_plane);
1040 WARN_ON(!primary_enabled && !visible && intel_crtc->active);
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001041
1042 mutex_lock(&dev->struct_mutex);
1043
Chris Wilson693db182013-03-05 14:52:39 +00001044 /* Note that this will apply the VT-d workaround for scanouts,
1045 * which is more restrictive than required for sprites. (The
1046 * primary plane requires 256KiB alignment with 64 PTE padding,
1047 * the sprite planes only require 128KiB alignment and 32 PTE padding.
1048 */
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001049 ret = intel_pin_and_fence_fb_obj(dev, obj, NULL);
Ville Syrjälä82284b62013-10-01 18:02:12 +03001050
Daniel Vettera071fa02014-06-18 23:28:09 +02001051 i915_gem_track_fb(old_obj, obj,
1052 INTEL_FRONTBUFFER_SPRITE(pipe));
Ville Syrjälä82284b62013-10-01 18:02:12 +03001053 mutex_unlock(&dev->struct_mutex);
1054
Jesse Barnes00c2064b2012-01-13 15:48:39 -08001055 if (ret)
Ville Syrjälä82284b62013-10-01 18:02:12 +03001056 return ret;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001057
Ville Syrjälä098ebd62013-10-01 18:02:15 +03001058 intel_plane->crtc_x = orig.crtc_x;
1059 intel_plane->crtc_y = orig.crtc_y;
1060 intel_plane->crtc_w = orig.crtc_w;
1061 intel_plane->crtc_h = orig.crtc_h;
1062 intel_plane->src_x = orig.src_x;
1063 intel_plane->src_y = orig.src_y;
1064 intel_plane->src_w = orig.src_w;
1065 intel_plane->src_h = orig.src_h;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001066 intel_plane->obj = obj;
1067
Ville Syrjälä03c5b252013-10-01 18:02:11 +03001068 if (intel_crtc->active) {
Ville Syrjälä5b633d62014-04-29 13:35:47 +03001069 bool primary_was_enabled = intel_crtc->primary_enabled;
1070
1071 intel_crtc->primary_enabled = primary_enabled;
1072
Ville Syrjälä46a55d32014-05-21 14:04:46 +03001073 if (primary_was_enabled != primary_enabled)
1074 intel_crtc_wait_for_pending_flips(crtc);
1075
Ville Syrjälä5b633d62014-04-29 13:35:47 +03001076 if (primary_was_enabled && !primary_enabled)
1077 intel_pre_disable_primary(crtc);
Jesse Barnes175bd422011-12-13 13:19:39 -08001078
Ville Syrjälä03c5b252013-10-01 18:02:11 +03001079 if (visible)
1080 intel_plane->update_plane(plane, crtc, fb, obj,
1081 crtc_x, crtc_y, crtc_w, crtc_h,
1082 src_x, src_y, src_w, src_h);
1083 else
1084 intel_plane->disable_plane(plane, crtc);
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001085
Daniel Vetterf99d7062014-06-19 16:01:59 +02001086 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_SPRITE(pipe));
1087
Ville Syrjälä5b633d62014-04-29 13:35:47 +03001088 if (!primary_was_enabled && primary_enabled)
1089 intel_post_enable_primary(crtc);
Ville Syrjälä03c5b252013-10-01 18:02:11 +03001090 }
Jesse Barnes175bd422011-12-13 13:19:39 -08001091
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001092 /* Unpin old obj after new one is active to avoid ugliness */
1093 if (old_obj) {
1094 /*
1095 * It's fairly common to simply update the position of
1096 * an existing object. In that case, we don't need to
1097 * wait for vblank to avoid ugliness, we only need to
1098 * do the pin & ref bookkeeping.
1099 */
Ville Syrjälä82284b62013-10-01 18:02:12 +03001100 if (old_obj != obj && intel_crtc->active)
Ville Syrjälä2afd9ef2013-10-01 18:02:14 +03001101 intel_wait_for_vblank(dev, intel_crtc->pipe);
Ville Syrjälä82284b62013-10-01 18:02:12 +03001102
1103 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01001104 intel_unpin_fb_obj(old_obj);
Ville Syrjälä82284b62013-10-01 18:02:12 +03001105 mutex_unlock(&dev->struct_mutex);
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001106 }
1107
Ville Syrjälä82284b62013-10-01 18:02:12 +03001108 return 0;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001109}
1110
1111static int
1112intel_disable_plane(struct drm_plane *plane)
1113{
1114 struct drm_device *dev = plane->dev;
1115 struct intel_plane *intel_plane = to_intel_plane(plane);
Ville Syrjälä03c5b252013-10-01 18:02:11 +03001116 struct intel_crtc *intel_crtc;
Daniel Vettera071fa02014-06-18 23:28:09 +02001117 enum pipe pipe;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001118
Ville Syrjälä88a94a52013-08-07 13:30:23 +03001119 if (!plane->fb)
1120 return 0;
1121
1122 if (WARN_ON(!plane->crtc))
1123 return -EINVAL;
1124
Ville Syrjälä03c5b252013-10-01 18:02:11 +03001125 intel_crtc = to_intel_crtc(plane->crtc);
Daniel Vettera071fa02014-06-18 23:28:09 +02001126 pipe = intel_crtc->pipe;
Ville Syrjälä03c5b252013-10-01 18:02:11 +03001127
1128 if (intel_crtc->active) {
Ville Syrjälä5b633d62014-04-29 13:35:47 +03001129 bool primary_was_enabled = intel_crtc->primary_enabled;
1130
1131 intel_crtc->primary_enabled = true;
1132
Ville Syrjälä03c5b252013-10-01 18:02:11 +03001133 intel_plane->disable_plane(plane, plane->crtc);
Ville Syrjälä5b633d62014-04-29 13:35:47 +03001134
1135 if (!primary_was_enabled && intel_crtc->primary_enabled)
1136 intel_post_enable_primary(plane->crtc);
Ville Syrjälä03c5b252013-10-01 18:02:11 +03001137 }
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001138
Ville Syrjälä5f3fb462013-10-01 18:02:13 +03001139 if (intel_plane->obj) {
1140 if (intel_crtc->active)
1141 intel_wait_for_vblank(dev, intel_plane->pipe);
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001142
Ville Syrjälä5f3fb462013-10-01 18:02:13 +03001143 mutex_lock(&dev->struct_mutex);
1144 intel_unpin_fb_obj(intel_plane->obj);
Daniel Vettera071fa02014-06-18 23:28:09 +02001145 i915_gem_track_fb(intel_plane->obj, NULL,
1146 INTEL_FRONTBUFFER_SPRITE(pipe));
Ville Syrjälä5f3fb462013-10-01 18:02:13 +03001147 mutex_unlock(&dev->struct_mutex);
Ville Syrjäläc626d312013-03-27 17:49:13 +02001148
Ville Syrjälä5f3fb462013-10-01 18:02:13 +03001149 intel_plane->obj = NULL;
1150 }
Ville Syrjälä82284b62013-10-01 18:02:12 +03001151
Ville Syrjälä5f3fb462013-10-01 18:02:13 +03001152 return 0;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001153}
1154
1155static void intel_destroy_plane(struct drm_plane *plane)
1156{
1157 struct intel_plane *intel_plane = to_intel_plane(plane);
1158 intel_disable_plane(plane);
1159 drm_plane_cleanup(plane);
1160 kfree(intel_plane);
1161}
1162
Jesse Barnes8ea30862012-01-03 08:05:39 -08001163int intel_sprite_set_colorkey(struct drm_device *dev, void *data,
1164 struct drm_file *file_priv)
1165{
1166 struct drm_intel_sprite_colorkey *set = data;
Jesse Barnes8ea30862012-01-03 08:05:39 -08001167 struct drm_plane *plane;
1168 struct intel_plane *intel_plane;
1169 int ret = 0;
1170
Daniel Vetter1cff8f62012-04-24 09:55:08 +02001171 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1172 return -ENODEV;
Jesse Barnes8ea30862012-01-03 08:05:39 -08001173
1174 /* Make sure we don't try to enable both src & dest simultaneously */
1175 if ((set->flags & (I915_SET_COLORKEY_DESTINATION | I915_SET_COLORKEY_SOURCE)) == (I915_SET_COLORKEY_DESTINATION | I915_SET_COLORKEY_SOURCE))
1176 return -EINVAL;
1177
Daniel Vettera0e99e62012-12-02 01:05:46 +01001178 drm_modeset_lock_all(dev);
Jesse Barnes8ea30862012-01-03 08:05:39 -08001179
Rob Clark7707e652014-07-17 23:30:04 -04001180 plane = drm_plane_find(dev, set->plane_id);
1181 if (!plane) {
Ville Syrjälä3f2c2052013-10-17 13:35:03 +03001182 ret = -ENOENT;
Jesse Barnes8ea30862012-01-03 08:05:39 -08001183 goto out_unlock;
1184 }
1185
Jesse Barnes8ea30862012-01-03 08:05:39 -08001186 intel_plane = to_intel_plane(plane);
1187 ret = intel_plane->update_colorkey(plane, set);
1188
1189out_unlock:
Daniel Vettera0e99e62012-12-02 01:05:46 +01001190 drm_modeset_unlock_all(dev);
Jesse Barnes8ea30862012-01-03 08:05:39 -08001191 return ret;
1192}
1193
1194int intel_sprite_get_colorkey(struct drm_device *dev, void *data,
1195 struct drm_file *file_priv)
1196{
1197 struct drm_intel_sprite_colorkey *get = data;
Jesse Barnes8ea30862012-01-03 08:05:39 -08001198 struct drm_plane *plane;
1199 struct intel_plane *intel_plane;
1200 int ret = 0;
1201
Daniel Vetter1cff8f62012-04-24 09:55:08 +02001202 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1203 return -ENODEV;
Jesse Barnes8ea30862012-01-03 08:05:39 -08001204
Daniel Vettera0e99e62012-12-02 01:05:46 +01001205 drm_modeset_lock_all(dev);
Jesse Barnes8ea30862012-01-03 08:05:39 -08001206
Rob Clark7707e652014-07-17 23:30:04 -04001207 plane = drm_plane_find(dev, get->plane_id);
1208 if (!plane) {
Ville Syrjälä3f2c2052013-10-17 13:35:03 +03001209 ret = -ENOENT;
Jesse Barnes8ea30862012-01-03 08:05:39 -08001210 goto out_unlock;
1211 }
1212
Jesse Barnes8ea30862012-01-03 08:05:39 -08001213 intel_plane = to_intel_plane(plane);
1214 intel_plane->get_colorkey(plane, get);
1215
1216out_unlock:
Daniel Vettera0e99e62012-12-02 01:05:46 +01001217 drm_modeset_unlock_all(dev);
Jesse Barnes8ea30862012-01-03 08:05:39 -08001218 return ret;
1219}
1220
Ville Syrjälä7ed6eee2014-08-05 11:26:55 +05301221static int intel_plane_set_property(struct drm_plane *plane,
1222 struct drm_property *prop,
1223 uint64_t val)
1224{
1225 struct drm_device *dev = plane->dev;
1226 struct intel_plane *intel_plane = to_intel_plane(plane);
1227 uint64_t old_val;
1228 int ret = -ENOENT;
1229
1230 if (prop == dev->mode_config.rotation_property) {
1231 /* exactly one rotation angle please */
1232 if (hweight32(val & 0xf) != 1)
1233 return -EINVAL;
1234
1235 old_val = intel_plane->rotation;
1236 intel_plane->rotation = val;
1237 ret = intel_plane_restore(plane);
1238 if (ret)
1239 intel_plane->rotation = old_val;
1240 }
1241
1242 return ret;
1243}
1244
Ville Syrjäläe57465f2014-08-05 11:26:53 +05301245int intel_plane_restore(struct drm_plane *plane)
Jesse Barnes5e1bac22013-03-26 09:25:43 -07001246{
1247 struct intel_plane *intel_plane = to_intel_plane(plane);
1248
1249 if (!plane->crtc || !plane->fb)
Ville Syrjäläe57465f2014-08-05 11:26:53 +05301250 return 0;
Jesse Barnes5e1bac22013-03-26 09:25:43 -07001251
Ville Syrjäläe57465f2014-08-05 11:26:53 +05301252 return intel_update_plane(plane, plane->crtc, plane->fb,
1253 intel_plane->crtc_x, intel_plane->crtc_y,
1254 intel_plane->crtc_w, intel_plane->crtc_h,
1255 intel_plane->src_x, intel_plane->src_y,
1256 intel_plane->src_w, intel_plane->src_h);
Jesse Barnes5e1bac22013-03-26 09:25:43 -07001257}
1258
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03001259void intel_plane_disable(struct drm_plane *plane)
1260{
1261 if (!plane->crtc || !plane->fb)
1262 return;
1263
1264 intel_disable_plane(plane);
1265}
1266
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001267static const struct drm_plane_funcs intel_plane_funcs = {
1268 .update_plane = intel_update_plane,
1269 .disable_plane = intel_disable_plane,
1270 .destroy = intel_destroy_plane,
Ville Syrjälä7ed6eee2014-08-05 11:26:55 +05301271 .set_property = intel_plane_set_property,
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001272};
1273
Chris Wilsond1686ae2012-04-10 11:41:49 +01001274static uint32_t ilk_plane_formats[] = {
1275 DRM_FORMAT_XRGB8888,
1276 DRM_FORMAT_YUYV,
1277 DRM_FORMAT_YVYU,
1278 DRM_FORMAT_UYVY,
1279 DRM_FORMAT_VYUY,
1280};
1281
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001282static uint32_t snb_plane_formats[] = {
1283 DRM_FORMAT_XBGR8888,
1284 DRM_FORMAT_XRGB8888,
1285 DRM_FORMAT_YUYV,
1286 DRM_FORMAT_YVYU,
1287 DRM_FORMAT_UYVY,
1288 DRM_FORMAT_VYUY,
1289};
1290
Jesse Barnes7f1f3852013-04-02 11:22:20 -07001291static uint32_t vlv_plane_formats[] = {
1292 DRM_FORMAT_RGB565,
1293 DRM_FORMAT_ABGR8888,
1294 DRM_FORMAT_ARGB8888,
1295 DRM_FORMAT_XBGR8888,
1296 DRM_FORMAT_XRGB8888,
1297 DRM_FORMAT_XBGR2101010,
1298 DRM_FORMAT_ABGR2101010,
1299 DRM_FORMAT_YUYV,
1300 DRM_FORMAT_YVYU,
1301 DRM_FORMAT_UYVY,
1302 DRM_FORMAT_VYUY,
1303};
1304
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001305int
Jesse Barnes7f1f3852013-04-02 11:22:20 -07001306intel_plane_init(struct drm_device *dev, enum pipe pipe, int plane)
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001307{
1308 struct intel_plane *intel_plane;
1309 unsigned long possible_crtcs;
Chris Wilsond1686ae2012-04-10 11:41:49 +01001310 const uint32_t *plane_formats;
1311 int num_plane_formats;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001312 int ret;
1313
Chris Wilsond1686ae2012-04-10 11:41:49 +01001314 if (INTEL_INFO(dev)->gen < 5)
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001315 return -ENODEV;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001316
Daniel Vetterb14c5672013-09-19 12:18:32 +02001317 intel_plane = kzalloc(sizeof(*intel_plane), GFP_KERNEL);
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001318 if (!intel_plane)
1319 return -ENOMEM;
1320
Chris Wilsond1686ae2012-04-10 11:41:49 +01001321 switch (INTEL_INFO(dev)->gen) {
1322 case 5:
1323 case 6:
Damien Lespiau2d354c32012-10-22 18:19:27 +01001324 intel_plane->can_scale = true;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001325 intel_plane->max_downscale = 16;
Chris Wilsond1686ae2012-04-10 11:41:49 +01001326 intel_plane->update_plane = ilk_update_plane;
1327 intel_plane->disable_plane = ilk_disable_plane;
1328 intel_plane->update_colorkey = ilk_update_colorkey;
1329 intel_plane->get_colorkey = ilk_get_colorkey;
1330
1331 if (IS_GEN6(dev)) {
1332 plane_formats = snb_plane_formats;
1333 num_plane_formats = ARRAY_SIZE(snb_plane_formats);
1334 } else {
1335 plane_formats = ilk_plane_formats;
1336 num_plane_formats = ARRAY_SIZE(ilk_plane_formats);
1337 }
1338 break;
1339
1340 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -07001341 case 8:
Damien Lespiaud49f7092013-04-25 15:15:00 +01001342 if (IS_IVYBRIDGE(dev)) {
Damien Lespiau2d354c32012-10-22 18:19:27 +01001343 intel_plane->can_scale = true;
Damien Lespiaud49f7092013-04-25 15:15:00 +01001344 intel_plane->max_downscale = 2;
1345 } else {
1346 intel_plane->can_scale = false;
1347 intel_plane->max_downscale = 1;
1348 }
Chris Wilsond1686ae2012-04-10 11:41:49 +01001349
Jesse Barnes7f1f3852013-04-02 11:22:20 -07001350 if (IS_VALLEYVIEW(dev)) {
Jesse Barnes7f1f3852013-04-02 11:22:20 -07001351 intel_plane->update_plane = vlv_update_plane;
1352 intel_plane->disable_plane = vlv_disable_plane;
1353 intel_plane->update_colorkey = vlv_update_colorkey;
1354 intel_plane->get_colorkey = vlv_get_colorkey;
1355
1356 plane_formats = vlv_plane_formats;
1357 num_plane_formats = ARRAY_SIZE(vlv_plane_formats);
1358 } else {
Jesse Barnes7f1f3852013-04-02 11:22:20 -07001359 intel_plane->update_plane = ivb_update_plane;
1360 intel_plane->disable_plane = ivb_disable_plane;
1361 intel_plane->update_colorkey = ivb_update_colorkey;
1362 intel_plane->get_colorkey = ivb_get_colorkey;
1363
1364 plane_formats = snb_plane_formats;
1365 num_plane_formats = ARRAY_SIZE(snb_plane_formats);
1366 }
Chris Wilsond1686ae2012-04-10 11:41:49 +01001367 break;
1368
1369 default:
Jesper Juhla8b0bba2012-06-27 00:55:37 +02001370 kfree(intel_plane);
Chris Wilsond1686ae2012-04-10 11:41:49 +01001371 return -ENODEV;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001372 }
1373
1374 intel_plane->pipe = pipe;
Jesse Barnes7f1f3852013-04-02 11:22:20 -07001375 intel_plane->plane = plane;
Ville Syrjälä76eebda2014-08-05 11:26:52 +05301376 intel_plane->rotation = BIT(DRM_ROTATE_0);
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001377 possible_crtcs = (1 << pipe);
1378 ret = drm_plane_init(dev, &intel_plane->base, possible_crtcs,
Chris Wilsond1686ae2012-04-10 11:41:49 +01001379 &intel_plane_funcs,
1380 plane_formats, num_plane_formats,
1381 false);
Ville Syrjälä7ed6eee2014-08-05 11:26:55 +05301382 if (ret) {
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001383 kfree(intel_plane);
Ville Syrjälä7ed6eee2014-08-05 11:26:55 +05301384 goto out;
1385 }
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001386
Ville Syrjälä7ed6eee2014-08-05 11:26:55 +05301387 if (!dev->mode_config.rotation_property)
1388 dev->mode_config.rotation_property =
1389 drm_mode_create_rotation_property(dev,
1390 BIT(DRM_ROTATE_0) |
1391 BIT(DRM_ROTATE_180));
1392
1393 if (dev->mode_config.rotation_property)
1394 drm_object_attach_property(&intel_plane->base.base,
1395 dev->mode_config.rotation_property,
1396 intel_plane->rotation);
1397
1398 out:
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001399 return ret;
1400}