blob: 04d38d4d811a9ac82c4818658beb8e311332e57f [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
40static void
Jesse Barnes7f1f3852013-04-02 11:22:20 -070041vlv_update_plane(struct drm_plane *dplane, struct drm_framebuffer *fb,
42 struct drm_i915_gem_object *obj, int crtc_x, int crtc_y,
43 unsigned int crtc_w, unsigned int crtc_h,
44 uint32_t x, uint32_t y,
45 uint32_t src_w, uint32_t src_h)
46{
47 struct drm_device *dev = dplane->dev;
48 struct drm_i915_private *dev_priv = dev->dev_private;
49 struct intel_plane *intel_plane = to_intel_plane(dplane);
50 int pipe = intel_plane->pipe;
51 int plane = intel_plane->plane;
52 u32 sprctl;
53 unsigned long sprsurf_offset, linear_offset;
54 int pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
55
56 sprctl = I915_READ(SPCNTR(pipe, plane));
57
58 /* Mask out pixel format bits in case we change it */
59 sprctl &= ~SP_PIXFORMAT_MASK;
60 sprctl &= ~SP_YUV_BYTE_ORDER_MASK;
61 sprctl &= ~SP_TILED;
62
63 switch (fb->pixel_format) {
64 case DRM_FORMAT_YUYV:
65 sprctl |= SP_FORMAT_YUV422 | SP_YUV_ORDER_YUYV;
66 break;
67 case DRM_FORMAT_YVYU:
68 sprctl |= SP_FORMAT_YUV422 | SP_YUV_ORDER_YVYU;
69 break;
70 case DRM_FORMAT_UYVY:
71 sprctl |= SP_FORMAT_YUV422 | SP_YUV_ORDER_UYVY;
72 break;
73 case DRM_FORMAT_VYUY:
74 sprctl |= SP_FORMAT_YUV422 | SP_YUV_ORDER_VYUY;
75 break;
76 case DRM_FORMAT_RGB565:
77 sprctl |= SP_FORMAT_BGR565;
78 break;
79 case DRM_FORMAT_XRGB8888:
80 sprctl |= SP_FORMAT_BGRX8888;
81 break;
82 case DRM_FORMAT_ARGB8888:
83 sprctl |= SP_FORMAT_BGRA8888;
84 break;
85 case DRM_FORMAT_XBGR2101010:
86 sprctl |= SP_FORMAT_RGBX1010102;
87 break;
88 case DRM_FORMAT_ABGR2101010:
89 sprctl |= SP_FORMAT_RGBA1010102;
90 break;
91 case DRM_FORMAT_XBGR8888:
92 sprctl |= SP_FORMAT_RGBX8888;
93 break;
94 case DRM_FORMAT_ABGR8888:
95 sprctl |= SP_FORMAT_RGBA8888;
96 break;
97 default:
98 /*
99 * If we get here one of the upper layers failed to filter
100 * out the unsupported plane formats
101 */
102 BUG();
103 break;
104 }
105
106 if (obj->tiling_mode != I915_TILING_NONE)
107 sprctl |= SP_TILED;
108
109 sprctl |= SP_ENABLE;
110
111 /* Sizes are 0 based */
112 src_w--;
113 src_h--;
114 crtc_w--;
115 crtc_h--;
116
Paulo Zanoni4c4ff432013-05-24 11:59:17 -0300117 intel_update_sprite_watermarks(dev, pipe, crtc_w, pixel_size, true);
Jesse Barnes7f1f3852013-04-02 11:22:20 -0700118
119 I915_WRITE(SPSTRIDE(pipe, plane), fb->pitches[0]);
120 I915_WRITE(SPPOS(pipe, plane), (crtc_y << 16) | crtc_x);
121
122 linear_offset = y * fb->pitches[0] + x * pixel_size;
123 sprsurf_offset = intel_gen4_compute_page_offset(&x, &y,
124 obj->tiling_mode,
125 pixel_size,
126 fb->pitches[0]);
127 linear_offset -= sprsurf_offset;
128
129 if (obj->tiling_mode != I915_TILING_NONE)
130 I915_WRITE(SPTILEOFF(pipe, plane), (y << 16) | x);
131 else
132 I915_WRITE(SPLINOFF(pipe, plane), linear_offset);
133
134 I915_WRITE(SPSIZE(pipe, plane), (crtc_h << 16) | crtc_w);
135 I915_WRITE(SPCNTR(pipe, plane), sprctl);
136 I915_MODIFY_DISPBASE(SPSURF(pipe, plane), obj->gtt_offset +
137 sprsurf_offset);
138 POSTING_READ(SPSURF(pipe, plane));
139}
140
141static void
142vlv_disable_plane(struct drm_plane *dplane)
143{
144 struct drm_device *dev = dplane->dev;
145 struct drm_i915_private *dev_priv = dev->dev_private;
146 struct intel_plane *intel_plane = to_intel_plane(dplane);
147 int pipe = intel_plane->pipe;
148 int plane = intel_plane->plane;
149
150 I915_WRITE(SPCNTR(pipe, plane), I915_READ(SPCNTR(pipe, plane)) &
151 ~SP_ENABLE);
152 /* Activate double buffered register update */
153 I915_MODIFY_DISPBASE(SPSURF(pipe, plane), 0);
154 POSTING_READ(SPSURF(pipe, plane));
155}
156
157static int
158vlv_update_colorkey(struct drm_plane *dplane,
159 struct drm_intel_sprite_colorkey *key)
160{
161 struct drm_device *dev = dplane->dev;
162 struct drm_i915_private *dev_priv = dev->dev_private;
163 struct intel_plane *intel_plane = to_intel_plane(dplane);
164 int pipe = intel_plane->pipe;
165 int plane = intel_plane->plane;
166 u32 sprctl;
167
168 if (key->flags & I915_SET_COLORKEY_DESTINATION)
169 return -EINVAL;
170
171 I915_WRITE(SPKEYMINVAL(pipe, plane), key->min_value);
172 I915_WRITE(SPKEYMAXVAL(pipe, plane), key->max_value);
173 I915_WRITE(SPKEYMSK(pipe, plane), key->channel_mask);
174
175 sprctl = I915_READ(SPCNTR(pipe, plane));
176 sprctl &= ~SP_SOURCE_KEY;
177 if (key->flags & I915_SET_COLORKEY_SOURCE)
178 sprctl |= SP_SOURCE_KEY;
179 I915_WRITE(SPCNTR(pipe, plane), sprctl);
180
181 POSTING_READ(SPKEYMSK(pipe, plane));
182
183 return 0;
184}
185
186static void
187vlv_get_colorkey(struct drm_plane *dplane,
188 struct drm_intel_sprite_colorkey *key)
189{
190 struct drm_device *dev = dplane->dev;
191 struct drm_i915_private *dev_priv = dev->dev_private;
192 struct intel_plane *intel_plane = to_intel_plane(dplane);
193 int pipe = intel_plane->pipe;
194 int plane = intel_plane->plane;
195 u32 sprctl;
196
197 key->min_value = I915_READ(SPKEYMINVAL(pipe, plane));
198 key->max_value = I915_READ(SPKEYMAXVAL(pipe, plane));
199 key->channel_mask = I915_READ(SPKEYMSK(pipe, plane));
200
201 sprctl = I915_READ(SPCNTR(pipe, plane));
202 if (sprctl & SP_SOURCE_KEY)
203 key->flags = I915_SET_COLORKEY_SOURCE;
204 else
205 key->flags = I915_SET_COLORKEY_NONE;
206}
207
208static void
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800209ivb_update_plane(struct drm_plane *plane, struct drm_framebuffer *fb,
210 struct drm_i915_gem_object *obj, int crtc_x, int crtc_y,
211 unsigned int crtc_w, unsigned int crtc_h,
212 uint32_t x, uint32_t y,
213 uint32_t src_w, uint32_t src_h)
214{
215 struct drm_device *dev = plane->dev;
216 struct drm_i915_private *dev_priv = dev->dev_private;
217 struct intel_plane *intel_plane = to_intel_plane(plane);
218 int pipe = intel_plane->pipe;
219 u32 sprctl, sprscale = 0;
Damien Lespiau5a35e992012-10-26 18:20:12 +0100220 unsigned long sprsurf_offset, linear_offset;
Ville Syrjälä2bd3c3c2012-10-31 17:50:20 +0200221 int pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
Ville Syrjälä2c6602d2013-02-08 23:13:35 +0200222 bool scaling_was_enabled = dev_priv->sprite_scaling_enabled;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800223
224 sprctl = I915_READ(SPRCTL(pipe));
225
226 /* Mask out pixel format bits in case we change it */
227 sprctl &= ~SPRITE_PIXFORMAT_MASK;
228 sprctl &= ~SPRITE_RGB_ORDER_RGBX;
229 sprctl &= ~SPRITE_YUV_BYTE_ORDER_MASK;
Jesse Barnese86fe0d2012-06-26 13:10:11 -0700230 sprctl &= ~SPRITE_TILED;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800231
232 switch (fb->pixel_format) {
233 case DRM_FORMAT_XBGR8888:
Vijay Purushothaman5ee36912012-08-23 12:08:57 +0530234 sprctl |= SPRITE_FORMAT_RGBX888 | SPRITE_RGB_ORDER_RGBX;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800235 break;
236 case DRM_FORMAT_XRGB8888:
Vijay Purushothaman5ee36912012-08-23 12:08:57 +0530237 sprctl |= SPRITE_FORMAT_RGBX888;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800238 break;
239 case DRM_FORMAT_YUYV:
240 sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_YUYV;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800241 break;
242 case DRM_FORMAT_YVYU:
243 sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_YVYU;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800244 break;
245 case DRM_FORMAT_UYVY:
246 sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_UYVY;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800247 break;
248 case DRM_FORMAT_VYUY:
249 sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_VYUY;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800250 break;
251 default:
Ville Syrjälä28d491d2012-10-31 17:50:21 +0200252 BUG();
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800253 }
254
255 if (obj->tiling_mode != I915_TILING_NONE)
256 sprctl |= SPRITE_TILED;
257
258 /* must disable */
259 sprctl |= SPRITE_TRICKLE_FEED_DISABLE;
260 sprctl |= SPRITE_ENABLE;
261
Ville Syrjälä86d3efc2013-01-18 19:11:38 +0200262 if (IS_HASWELL(dev))
263 sprctl |= SPRITE_PIPE_CSC_ENABLE;
264
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800265 /* Sizes are 0 based */
266 src_w--;
267 src_h--;
268 crtc_w--;
269 crtc_h--;
270
Paulo Zanoni4c4ff432013-05-24 11:59:17 -0300271 intel_update_sprite_watermarks(dev, pipe, crtc_w, pixel_size, true);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800272
273 /*
274 * IVB workaround: must disable low power watermarks for at least
275 * one frame before enabling scaling. LP watermarks can be re-enabled
276 * when scaling is disabled.
277 */
278 if (crtc_w != src_w || crtc_h != src_h) {
Ville Syrjälä2c6602d2013-02-08 23:13:35 +0200279 dev_priv->sprite_scaling_enabled |= 1 << pipe;
280
281 if (!scaling_was_enabled) {
Chris Wilson828ed3e2012-04-18 17:12:26 +0100282 intel_update_watermarks(dev);
283 intel_wait_for_vblank(dev, pipe);
284 }
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800285 sprscale = SPRITE_SCALE_ENABLE | (src_w << 16) | src_h;
Ville Syrjälä2c6602d2013-02-08 23:13:35 +0200286 } else
287 dev_priv->sprite_scaling_enabled &= ~(1 << pipe);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800288
289 I915_WRITE(SPRSTRIDE(pipe), fb->pitches[0]);
290 I915_WRITE(SPRPOS(pipe), (crtc_y << 16) | crtc_x);
Damien Lespiauc54173a2012-10-26 18:20:11 +0100291
Chris Wilsonca320ac2012-12-19 12:14:22 +0000292 linear_offset = y * fb->pitches[0] + x * pixel_size;
Damien Lespiau5a35e992012-10-26 18:20:12 +0100293 sprsurf_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +0000294 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
295 pixel_size, fb->pitches[0]);
Damien Lespiau5a35e992012-10-26 18:20:12 +0100296 linear_offset -= sprsurf_offset;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800297
Damien Lespiau5a35e992012-10-26 18:20:12 +0100298 /* HSW consolidates SPRTILEOFF and SPRLINOFF into a single SPROFFSET
299 * register */
300 if (IS_HASWELL(dev))
301 I915_WRITE(SPROFFSET(pipe), (y << 16) | x);
302 else if (obj->tiling_mode != I915_TILING_NONE)
303 I915_WRITE(SPRTILEOFF(pipe), (y << 16) | x);
304 else
305 I915_WRITE(SPRLINOFF(pipe), linear_offset);
Damien Lespiauc54173a2012-10-26 18:20:11 +0100306
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800307 I915_WRITE(SPRSIZE(pipe), (crtc_h << 16) | crtc_w);
Damien Lespiau2d354c32012-10-22 18:19:27 +0100308 if (intel_plane->can_scale)
309 I915_WRITE(SPRSCALE(pipe), sprscale);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800310 I915_WRITE(SPRCTL(pipe), sprctl);
Damien Lespiau5a35e992012-10-26 18:20:12 +0100311 I915_MODIFY_DISPBASE(SPRSURF(pipe), obj->gtt_offset + sprsurf_offset);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800312 POSTING_READ(SPRSURF(pipe));
Ville Syrjälä2c6602d2013-02-08 23:13:35 +0200313
314 /* potentially re-enable LP watermarks */
315 if (scaling_was_enabled && !dev_priv->sprite_scaling_enabled)
316 intel_update_watermarks(dev);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800317}
318
319static void
320ivb_disable_plane(struct drm_plane *plane)
321{
322 struct drm_device *dev = plane->dev;
323 struct drm_i915_private *dev_priv = dev->dev_private;
324 struct intel_plane *intel_plane = to_intel_plane(plane);
325 int pipe = intel_plane->pipe;
Ville Syrjälä2c6602d2013-02-08 23:13:35 +0200326 bool scaling_was_enabled = dev_priv->sprite_scaling_enabled;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800327
328 I915_WRITE(SPRCTL(pipe), I915_READ(SPRCTL(pipe)) & ~SPRITE_ENABLE);
329 /* Can't leave the scaler enabled... */
Damien Lespiau2d354c32012-10-22 18:19:27 +0100330 if (intel_plane->can_scale)
331 I915_WRITE(SPRSCALE(pipe), 0);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800332 /* Activate double buffered register update */
Armin Reese446f2542012-03-30 16:20:16 -0700333 I915_MODIFY_DISPBASE(SPRSURF(pipe), 0);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800334 POSTING_READ(SPRSURF(pipe));
Chris Wilson828ed3e2012-04-18 17:12:26 +0100335
Ville Syrjälä2c6602d2013-02-08 23:13:35 +0200336 dev_priv->sprite_scaling_enabled &= ~(1 << pipe);
337
Paulo Zanoni4c4ff432013-05-24 11:59:17 -0300338 intel_update_sprite_watermarks(dev, pipe, 0, 0, false);
339
Ville Syrjälä2c6602d2013-02-08 23:13:35 +0200340 /* potentially re-enable LP watermarks */
341 if (scaling_was_enabled && !dev_priv->sprite_scaling_enabled)
342 intel_update_watermarks(dev);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800343}
344
Jesse Barnes8ea30862012-01-03 08:05:39 -0800345static int
346ivb_update_colorkey(struct drm_plane *plane,
347 struct drm_intel_sprite_colorkey *key)
348{
349 struct drm_device *dev = plane->dev;
350 struct drm_i915_private *dev_priv = dev->dev_private;
351 struct intel_plane *intel_plane;
352 u32 sprctl;
353 int ret = 0;
354
355 intel_plane = to_intel_plane(plane);
356
357 I915_WRITE(SPRKEYVAL(intel_plane->pipe), key->min_value);
358 I915_WRITE(SPRKEYMAX(intel_plane->pipe), key->max_value);
359 I915_WRITE(SPRKEYMSK(intel_plane->pipe), key->channel_mask);
360
361 sprctl = I915_READ(SPRCTL(intel_plane->pipe));
362 sprctl &= ~(SPRITE_SOURCE_KEY | SPRITE_DEST_KEY);
363 if (key->flags & I915_SET_COLORKEY_DESTINATION)
364 sprctl |= SPRITE_DEST_KEY;
365 else if (key->flags & I915_SET_COLORKEY_SOURCE)
366 sprctl |= SPRITE_SOURCE_KEY;
367 I915_WRITE(SPRCTL(intel_plane->pipe), sprctl);
368
369 POSTING_READ(SPRKEYMSK(intel_plane->pipe));
370
371 return ret;
372}
373
374static void
375ivb_get_colorkey(struct drm_plane *plane, struct drm_intel_sprite_colorkey *key)
376{
377 struct drm_device *dev = plane->dev;
378 struct drm_i915_private *dev_priv = dev->dev_private;
379 struct intel_plane *intel_plane;
380 u32 sprctl;
381
382 intel_plane = to_intel_plane(plane);
383
384 key->min_value = I915_READ(SPRKEYVAL(intel_plane->pipe));
385 key->max_value = I915_READ(SPRKEYMAX(intel_plane->pipe));
386 key->channel_mask = I915_READ(SPRKEYMSK(intel_plane->pipe));
387 key->flags = 0;
388
389 sprctl = I915_READ(SPRCTL(intel_plane->pipe));
390
391 if (sprctl & SPRITE_DEST_KEY)
392 key->flags = I915_SET_COLORKEY_DESTINATION;
393 else if (sprctl & SPRITE_SOURCE_KEY)
394 key->flags = I915_SET_COLORKEY_SOURCE;
395 else
396 key->flags = I915_SET_COLORKEY_NONE;
397}
398
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800399static void
Chris Wilsond1686ae2012-04-10 11:41:49 +0100400ilk_update_plane(struct drm_plane *plane, struct drm_framebuffer *fb,
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800401 struct drm_i915_gem_object *obj, int crtc_x, int crtc_y,
402 unsigned int crtc_w, unsigned int crtc_h,
403 uint32_t x, uint32_t y,
404 uint32_t src_w, uint32_t src_h)
405{
406 struct drm_device *dev = plane->dev;
407 struct drm_i915_private *dev_priv = dev->dev_private;
408 struct intel_plane *intel_plane = to_intel_plane(plane);
Ville Syrjälä2bd3c3c2012-10-31 17:50:20 +0200409 int pipe = intel_plane->pipe;
Damien Lespiau5a35e992012-10-26 18:20:12 +0100410 unsigned long dvssurf_offset, linear_offset;
Chris Wilson8aaa81a2012-04-14 22:14:26 +0100411 u32 dvscntr, dvsscale;
Ville Syrjälä2bd3c3c2012-10-31 17:50:20 +0200412 int pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800413
414 dvscntr = I915_READ(DVSCNTR(pipe));
415
416 /* Mask out pixel format bits in case we change it */
417 dvscntr &= ~DVS_PIXFORMAT_MASK;
Jesse Barnesab2f9df2012-02-27 12:40:10 -0800418 dvscntr &= ~DVS_RGB_ORDER_XBGR;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800419 dvscntr &= ~DVS_YUV_BYTE_ORDER_MASK;
Ander Conselvan de Oliveira79626522012-07-13 15:50:33 +0300420 dvscntr &= ~DVS_TILED;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800421
422 switch (fb->pixel_format) {
423 case DRM_FORMAT_XBGR8888:
Jesse Barnesab2f9df2012-02-27 12:40:10 -0800424 dvscntr |= DVS_FORMAT_RGBX888 | DVS_RGB_ORDER_XBGR;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800425 break;
426 case DRM_FORMAT_XRGB8888:
Jesse Barnesab2f9df2012-02-27 12:40:10 -0800427 dvscntr |= DVS_FORMAT_RGBX888;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800428 break;
429 case DRM_FORMAT_YUYV:
430 dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_YUYV;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800431 break;
432 case DRM_FORMAT_YVYU:
433 dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_YVYU;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800434 break;
435 case DRM_FORMAT_UYVY:
436 dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_UYVY;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800437 break;
438 case DRM_FORMAT_VYUY:
439 dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_VYUY;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800440 break;
441 default:
Ville Syrjälä28d491d2012-10-31 17:50:21 +0200442 BUG();
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800443 }
444
445 if (obj->tiling_mode != I915_TILING_NONE)
446 dvscntr |= DVS_TILED;
447
Chris Wilsond1686ae2012-04-10 11:41:49 +0100448 if (IS_GEN6(dev))
449 dvscntr |= DVS_TRICKLE_FEED_DISABLE; /* must disable */
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800450 dvscntr |= DVS_ENABLE;
451
452 /* Sizes are 0 based */
453 src_w--;
454 src_h--;
455 crtc_w--;
456 crtc_h--;
457
Paulo Zanoni4c4ff432013-05-24 11:59:17 -0300458 intel_update_sprite_watermarks(dev, pipe, crtc_w, pixel_size, true);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800459
Chris Wilson8aaa81a2012-04-14 22:14:26 +0100460 dvsscale = 0;
461 if (IS_GEN5(dev) || crtc_w != src_w || crtc_h != src_h)
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800462 dvsscale = DVS_SCALE_ENABLE | (src_w << 16) | src_h;
463
464 I915_WRITE(DVSSTRIDE(pipe), fb->pitches[0]);
465 I915_WRITE(DVSPOS(pipe), (crtc_y << 16) | crtc_x);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800466
Chris Wilsonca320ac2012-12-19 12:14:22 +0000467 linear_offset = y * fb->pitches[0] + x * pixel_size;
Damien Lespiau5a35e992012-10-26 18:20:12 +0100468 dvssurf_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +0000469 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
470 pixel_size, fb->pitches[0]);
Damien Lespiau5a35e992012-10-26 18:20:12 +0100471 linear_offset -= dvssurf_offset;
472
473 if (obj->tiling_mode != I915_TILING_NONE)
474 I915_WRITE(DVSTILEOFF(pipe), (y << 16) | x);
475 else
476 I915_WRITE(DVSLINOFF(pipe), linear_offset);
477
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800478 I915_WRITE(DVSSIZE(pipe), (crtc_h << 16) | crtc_w);
479 I915_WRITE(DVSSCALE(pipe), dvsscale);
480 I915_WRITE(DVSCNTR(pipe), dvscntr);
Damien Lespiau5a35e992012-10-26 18:20:12 +0100481 I915_MODIFY_DISPBASE(DVSSURF(pipe), obj->gtt_offset + dvssurf_offset);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800482 POSTING_READ(DVSSURF(pipe));
483}
484
485static void
Chris Wilsond1686ae2012-04-10 11:41:49 +0100486ilk_disable_plane(struct drm_plane *plane)
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800487{
488 struct drm_device *dev = plane->dev;
489 struct drm_i915_private *dev_priv = dev->dev_private;
490 struct intel_plane *intel_plane = to_intel_plane(plane);
491 int pipe = intel_plane->pipe;
492
493 I915_WRITE(DVSCNTR(pipe), I915_READ(DVSCNTR(pipe)) & ~DVS_ENABLE);
494 /* Disable the scaler */
495 I915_WRITE(DVSSCALE(pipe), 0);
496 /* Flush double buffered register updates */
Armin Reese446f2542012-03-30 16:20:16 -0700497 I915_MODIFY_DISPBASE(DVSSURF(pipe), 0);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800498 POSTING_READ(DVSSURF(pipe));
499}
500
Jesse Barnes175bd422011-12-13 13:19:39 -0800501static void
502intel_enable_primary(struct drm_crtc *crtc)
503{
504 struct drm_device *dev = crtc->dev;
505 struct drm_i915_private *dev_priv = dev->dev_private;
506 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
507 int reg = DSPCNTR(intel_crtc->plane);
508
Chris Wilson93314b52012-06-13 17:36:55 +0100509 if (!intel_crtc->primary_disabled)
510 return;
511
512 intel_crtc->primary_disabled = false;
513 intel_update_fbc(dev);
514
Jesse Barnes175bd422011-12-13 13:19:39 -0800515 I915_WRITE(reg, I915_READ(reg) | DISPLAY_PLANE_ENABLE);
516}
517
518static void
519intel_disable_primary(struct drm_crtc *crtc)
520{
521 struct drm_device *dev = crtc->dev;
522 struct drm_i915_private *dev_priv = dev->dev_private;
523 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
524 int reg = DSPCNTR(intel_crtc->plane);
525
Chris Wilson93314b52012-06-13 17:36:55 +0100526 if (intel_crtc->primary_disabled)
527 return;
528
Jesse Barnes175bd422011-12-13 13:19:39 -0800529 I915_WRITE(reg, I915_READ(reg) & ~DISPLAY_PLANE_ENABLE);
Chris Wilson93314b52012-06-13 17:36:55 +0100530
531 intel_crtc->primary_disabled = true;
532 intel_update_fbc(dev);
Jesse Barnes175bd422011-12-13 13:19:39 -0800533}
534
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800535static int
Chris Wilsond1686ae2012-04-10 11:41:49 +0100536ilk_update_colorkey(struct drm_plane *plane,
Jesse Barnes8ea30862012-01-03 08:05:39 -0800537 struct drm_intel_sprite_colorkey *key)
538{
539 struct drm_device *dev = plane->dev;
540 struct drm_i915_private *dev_priv = dev->dev_private;
541 struct intel_plane *intel_plane;
542 u32 dvscntr;
543 int ret = 0;
544
545 intel_plane = to_intel_plane(plane);
546
547 I915_WRITE(DVSKEYVAL(intel_plane->pipe), key->min_value);
548 I915_WRITE(DVSKEYMAX(intel_plane->pipe), key->max_value);
549 I915_WRITE(DVSKEYMSK(intel_plane->pipe), key->channel_mask);
550
551 dvscntr = I915_READ(DVSCNTR(intel_plane->pipe));
552 dvscntr &= ~(DVS_SOURCE_KEY | DVS_DEST_KEY);
553 if (key->flags & I915_SET_COLORKEY_DESTINATION)
554 dvscntr |= DVS_DEST_KEY;
555 else if (key->flags & I915_SET_COLORKEY_SOURCE)
556 dvscntr |= DVS_SOURCE_KEY;
557 I915_WRITE(DVSCNTR(intel_plane->pipe), dvscntr);
558
559 POSTING_READ(DVSKEYMSK(intel_plane->pipe));
560
561 return ret;
562}
563
564static void
Chris Wilsond1686ae2012-04-10 11:41:49 +0100565ilk_get_colorkey(struct drm_plane *plane, struct drm_intel_sprite_colorkey *key)
Jesse Barnes8ea30862012-01-03 08:05:39 -0800566{
567 struct drm_device *dev = plane->dev;
568 struct drm_i915_private *dev_priv = dev->dev_private;
569 struct intel_plane *intel_plane;
570 u32 dvscntr;
571
572 intel_plane = to_intel_plane(plane);
573
574 key->min_value = I915_READ(DVSKEYVAL(intel_plane->pipe));
575 key->max_value = I915_READ(DVSKEYMAX(intel_plane->pipe));
576 key->channel_mask = I915_READ(DVSKEYMSK(intel_plane->pipe));
577 key->flags = 0;
578
579 dvscntr = I915_READ(DVSCNTR(intel_plane->pipe));
580
581 if (dvscntr & DVS_DEST_KEY)
582 key->flags = I915_SET_COLORKEY_DESTINATION;
583 else if (dvscntr & DVS_SOURCE_KEY)
584 key->flags = I915_SET_COLORKEY_SOURCE;
585 else
586 key->flags = I915_SET_COLORKEY_NONE;
587}
588
Ville Syrjälä17316932013-04-24 18:52:38 +0300589static bool
590format_is_yuv(uint32_t format)
591{
592 switch (format) {
593 case DRM_FORMAT_YUYV:
594 case DRM_FORMAT_UYVY:
595 case DRM_FORMAT_VYUY:
596 case DRM_FORMAT_YVYU:
597 return true;
598 default:
599 return false;
600 }
601}
602
Jesse Barnes8ea30862012-01-03 08:05:39 -0800603static int
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800604intel_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
605 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
606 unsigned int crtc_w, unsigned int crtc_h,
607 uint32_t src_x, uint32_t src_y,
608 uint32_t src_w, uint32_t src_h)
609{
610 struct drm_device *dev = plane->dev;
611 struct drm_i915_private *dev_priv = dev->dev_private;
612 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
613 struct intel_plane *intel_plane = to_intel_plane(plane);
614 struct intel_framebuffer *intel_fb;
615 struct drm_i915_gem_object *obj, *old_obj;
616 int pipe = intel_plane->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200617 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
618 pipe);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800619 int ret = 0;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800620 bool disable_primary = false;
Ville Syrjälä17316932013-04-24 18:52:38 +0300621 bool visible;
622 int hscale, vscale;
623 int max_scale, min_scale;
624 int pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
625 struct drm_rect src = {
626 /* sample coordinates in 16.16 fixed point */
627 .x1 = src_x,
628 .x2 = src_x + src_w,
629 .y1 = src_y,
630 .y2 = src_y + src_h,
631 };
632 struct drm_rect dst = {
633 /* integer pixels */
634 .x1 = crtc_x,
635 .x2 = crtc_x + crtc_w,
636 .y1 = crtc_y,
637 .y2 = crtc_y + crtc_h,
638 };
639 const struct drm_rect clip = {
640 .x2 = crtc->mode.hdisplay,
641 .y2 = crtc->mode.vdisplay,
642 };
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800643
644 intel_fb = to_intel_framebuffer(fb);
645 obj = intel_fb->obj;
646
647 old_obj = intel_plane->obj;
648
Jesse Barnes5e1bac22013-03-26 09:25:43 -0700649 intel_plane->crtc_x = crtc_x;
650 intel_plane->crtc_y = crtc_y;
651 intel_plane->crtc_w = crtc_w;
652 intel_plane->crtc_h = crtc_h;
653 intel_plane->src_x = src_x;
654 intel_plane->src_y = src_y;
655 intel_plane->src_w = src_w;
656 intel_plane->src_h = src_h;
657
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800658 /* Pipe must be running... */
Ville Syrjälä17316932013-04-24 18:52:38 +0300659 if (!(I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_ENABLE)) {
660 DRM_DEBUG_KMS("Pipe disabled\n");
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800661 return -EINVAL;
Ville Syrjälä17316932013-04-24 18:52:38 +0300662 }
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800663
664 /* Don't modify another pipe's plane */
Ville Syrjälä17316932013-04-24 18:52:38 +0300665 if (intel_plane->pipe != intel_crtc->pipe) {
666 DRM_DEBUG_KMS("Wrong plane <-> crtc mapping\n");
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800667 return -EINVAL;
Ville Syrjälä17316932013-04-24 18:52:38 +0300668 }
669
670 /* FIXME check all gen limits */
671 if (fb->width < 3 || fb->height < 3 || fb->pitches[0] > 16384) {
672 DRM_DEBUG_KMS("Unsuitable framebuffer for plane\n");
673 return -EINVAL;
674 }
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800675
Damien Lespiau94c64192012-10-29 15:14:51 +0000676 /* Sprite planes can be linear or x-tiled surfaces */
677 switch (obj->tiling_mode) {
678 case I915_TILING_NONE:
679 case I915_TILING_X:
680 break;
681 default:
Ville Syrjälä17316932013-04-24 18:52:38 +0300682 DRM_DEBUG_KMS("Unsupported tiling mode\n");
Damien Lespiau94c64192012-10-29 15:14:51 +0000683 return -EINVAL;
684 }
685
Ville Syrjälä3c3686c2013-04-24 18:52:39 +0300686 /*
687 * FIXME the following code does a bunch of fuzzy adjustments to the
688 * coordinates and sizes. We probably need some way to decide whether
689 * more strict checking should be done instead.
690 */
Ville Syrjälä17316932013-04-24 18:52:38 +0300691 max_scale = intel_plane->max_downscale << 16;
692 min_scale = intel_plane->can_scale ? 1 : (1 << 16);
693
Ville Syrjälä3c3686c2013-04-24 18:52:39 +0300694 hscale = drm_rect_calc_hscale_relaxed(&src, &dst, min_scale, max_scale);
695 BUG_ON(hscale < 0);
Ville Syrjälä17316932013-04-24 18:52:38 +0300696
Ville Syrjälä3c3686c2013-04-24 18:52:39 +0300697 vscale = drm_rect_calc_vscale_relaxed(&src, &dst, min_scale, max_scale);
698 BUG_ON(vscale < 0);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800699
Ville Syrjälä17316932013-04-24 18:52:38 +0300700 visible = drm_rect_clip_scaled(&src, &dst, &clip, hscale, vscale);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800701
Ville Syrjälä17316932013-04-24 18:52:38 +0300702 crtc_x = dst.x1;
703 crtc_y = dst.y1;
704 crtc_w = drm_rect_width(&dst);
705 crtc_h = drm_rect_height(&dst);
Damien Lespiau2d354c32012-10-22 18:19:27 +0100706
Ville Syrjälä17316932013-04-24 18:52:38 +0300707 if (visible) {
Ville Syrjälä3c3686c2013-04-24 18:52:39 +0300708 /* check again in case clipping clamped the results */
709 hscale = drm_rect_calc_hscale(&src, &dst, min_scale, max_scale);
710 if (hscale < 0) {
711 DRM_DEBUG_KMS("Horizontal scaling factor out of limits\n");
712 drm_rect_debug_print(&src, true);
713 drm_rect_debug_print(&dst, false);
714
715 return hscale;
716 }
717
718 vscale = drm_rect_calc_vscale(&src, &dst, min_scale, max_scale);
719 if (vscale < 0) {
720 DRM_DEBUG_KMS("Vertical scaling factor out of limits\n");
721 drm_rect_debug_print(&src, true);
722 drm_rect_debug_print(&dst, false);
723
724 return vscale;
725 }
726
Ville Syrjälä17316932013-04-24 18:52:38 +0300727 /* Make the source viewport size an exact multiple of the scaling factors. */
728 drm_rect_adjust_size(&src,
729 drm_rect_width(&dst) * hscale - drm_rect_width(&src),
730 drm_rect_height(&dst) * vscale - drm_rect_height(&src));
731
732 /* sanity check to make sure the src viewport wasn't enlarged */
733 WARN_ON(src.x1 < (int) src_x ||
734 src.y1 < (int) src_y ||
735 src.x2 > (int) (src_x + src_w) ||
736 src.y2 > (int) (src_y + src_h));
737
738 /*
739 * Hardware doesn't handle subpixel coordinates.
740 * Adjust to (macro)pixel boundary, but be careful not to
741 * increase the source viewport size, because that could
742 * push the downscaling factor out of bounds.
Ville Syrjälä17316932013-04-24 18:52:38 +0300743 */
744 src_x = src.x1 >> 16;
745 src_w = drm_rect_width(&src) >> 16;
746 src_y = src.y1 >> 16;
747 src_h = drm_rect_height(&src) >> 16;
748
749 if (format_is_yuv(fb->pixel_format)) {
750 src_x &= ~1;
751 src_w &= ~1;
752
753 /*
754 * Must keep src and dst the
755 * same if we can't scale.
756 */
757 if (!intel_plane->can_scale)
758 crtc_w &= ~1;
759
760 if (crtc_w == 0)
761 visible = false;
762 }
763 }
764
765 /* Check size restrictions when scaling */
766 if (visible && (src_w != crtc_w || src_h != crtc_h)) {
767 unsigned int width_bytes;
768
769 WARN_ON(!intel_plane->can_scale);
770
771 /* FIXME interlacing min height is 6 */
772
773 if (crtc_w < 3 || crtc_h < 3)
774 visible = false;
775
776 if (src_w < 3 || src_h < 3)
777 visible = false;
778
779 width_bytes = ((src_x * pixel_size) & 63) + src_w * pixel_size;
780
781 if (src_w > 2048 || src_h > 2048 ||
782 width_bytes > 4096 || fb->pitches[0] > 4096) {
783 DRM_DEBUG_KMS("Source dimensions exceed hardware limits\n");
784 return -EINVAL;
785 }
786 }
787
788 dst.x1 = crtc_x;
789 dst.x2 = crtc_x + crtc_w;
790 dst.y1 = crtc_y;
791 dst.y2 = crtc_y + crtc_h;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800792
793 /*
794 * If the sprite is completely covering the primary plane,
795 * we can disable the primary and save power.
796 */
Ville Syrjälä17316932013-04-24 18:52:38 +0300797 disable_primary = drm_rect_equals(&dst, &clip);
798 WARN_ON(disable_primary && !visible);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800799
800 mutex_lock(&dev->struct_mutex);
801
Chris Wilson693db182013-03-05 14:52:39 +0000802 /* Note that this will apply the VT-d workaround for scanouts,
803 * which is more restrictive than required for sprites. (The
804 * primary plane requires 256KiB alignment with 64 PTE padding,
805 * the sprite planes only require 128KiB alignment and 32 PTE padding.
806 */
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800807 ret = intel_pin_and_fence_fb_obj(dev, obj, NULL);
Jesse Barnes00c2064b2012-01-13 15:48:39 -0800808 if (ret)
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800809 goto out_unlock;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800810
811 intel_plane->obj = obj;
812
Jesse Barnes175bd422011-12-13 13:19:39 -0800813 /*
814 * Be sure to re-enable the primary before the sprite is no longer
815 * covering it fully.
816 */
Chris Wilson93314b52012-06-13 17:36:55 +0100817 if (!disable_primary)
Jesse Barnes175bd422011-12-13 13:19:39 -0800818 intel_enable_primary(crtc);
Jesse Barnes175bd422011-12-13 13:19:39 -0800819
Ville Syrjälä17316932013-04-24 18:52:38 +0300820 if (visible)
821 intel_plane->update_plane(plane, fb, obj,
822 crtc_x, crtc_y, crtc_w, crtc_h,
823 src_x, src_y, src_w, src_h);
824 else
825 intel_plane->disable_plane(plane);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800826
Chris Wilson93314b52012-06-13 17:36:55 +0100827 if (disable_primary)
Jesse Barnes175bd422011-12-13 13:19:39 -0800828 intel_disable_primary(crtc);
Jesse Barnes175bd422011-12-13 13:19:39 -0800829
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800830 /* Unpin old obj after new one is active to avoid ugliness */
831 if (old_obj) {
832 /*
833 * It's fairly common to simply update the position of
834 * an existing object. In that case, we don't need to
835 * wait for vblank to avoid ugliness, we only need to
836 * do the pin & ref bookkeeping.
837 */
838 if (old_obj != obj) {
839 mutex_unlock(&dev->struct_mutex);
840 intel_wait_for_vblank(dev, to_intel_crtc(crtc)->pipe);
841 mutex_lock(&dev->struct_mutex);
842 }
Chris Wilson1690e1e2011-12-14 13:57:08 +0100843 intel_unpin_fb_obj(old_obj);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800844 }
845
846out_unlock:
847 mutex_unlock(&dev->struct_mutex);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800848 return ret;
849}
850
851static int
852intel_disable_plane(struct drm_plane *plane)
853{
854 struct drm_device *dev = plane->dev;
855 struct intel_plane *intel_plane = to_intel_plane(plane);
856 int ret = 0;
857
Chris Wilson93314b52012-06-13 17:36:55 +0100858 if (plane->crtc)
Jesse Barnes175bd422011-12-13 13:19:39 -0800859 intel_enable_primary(plane->crtc);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800860 intel_plane->disable_plane(plane);
861
862 if (!intel_plane->obj)
863 goto out;
864
Ville Syrjäläc626d312013-03-27 17:49:13 +0200865 intel_wait_for_vblank(dev, intel_plane->pipe);
866
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800867 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +0100868 intel_unpin_fb_obj(intel_plane->obj);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800869 intel_plane->obj = NULL;
870 mutex_unlock(&dev->struct_mutex);
871out:
872
873 return ret;
874}
875
876static void intel_destroy_plane(struct drm_plane *plane)
877{
878 struct intel_plane *intel_plane = to_intel_plane(plane);
879 intel_disable_plane(plane);
880 drm_plane_cleanup(plane);
881 kfree(intel_plane);
882}
883
Jesse Barnes8ea30862012-01-03 08:05:39 -0800884int intel_sprite_set_colorkey(struct drm_device *dev, void *data,
885 struct drm_file *file_priv)
886{
887 struct drm_intel_sprite_colorkey *set = data;
Jesse Barnes8ea30862012-01-03 08:05:39 -0800888 struct drm_mode_object *obj;
889 struct drm_plane *plane;
890 struct intel_plane *intel_plane;
891 int ret = 0;
892
Daniel Vetter1cff8f62012-04-24 09:55:08 +0200893 if (!drm_core_check_feature(dev, DRIVER_MODESET))
894 return -ENODEV;
Jesse Barnes8ea30862012-01-03 08:05:39 -0800895
896 /* Make sure we don't try to enable both src & dest simultaneously */
897 if ((set->flags & (I915_SET_COLORKEY_DESTINATION | I915_SET_COLORKEY_SOURCE)) == (I915_SET_COLORKEY_DESTINATION | I915_SET_COLORKEY_SOURCE))
898 return -EINVAL;
899
Daniel Vettera0e99e62012-12-02 01:05:46 +0100900 drm_modeset_lock_all(dev);
Jesse Barnes8ea30862012-01-03 08:05:39 -0800901
902 obj = drm_mode_object_find(dev, set->plane_id, DRM_MODE_OBJECT_PLANE);
903 if (!obj) {
904 ret = -EINVAL;
905 goto out_unlock;
906 }
907
908 plane = obj_to_plane(obj);
909 intel_plane = to_intel_plane(plane);
910 ret = intel_plane->update_colorkey(plane, set);
911
912out_unlock:
Daniel Vettera0e99e62012-12-02 01:05:46 +0100913 drm_modeset_unlock_all(dev);
Jesse Barnes8ea30862012-01-03 08:05:39 -0800914 return ret;
915}
916
917int intel_sprite_get_colorkey(struct drm_device *dev, void *data,
918 struct drm_file *file_priv)
919{
920 struct drm_intel_sprite_colorkey *get = data;
Jesse Barnes8ea30862012-01-03 08:05:39 -0800921 struct drm_mode_object *obj;
922 struct drm_plane *plane;
923 struct intel_plane *intel_plane;
924 int ret = 0;
925
Daniel Vetter1cff8f62012-04-24 09:55:08 +0200926 if (!drm_core_check_feature(dev, DRIVER_MODESET))
927 return -ENODEV;
Jesse Barnes8ea30862012-01-03 08:05:39 -0800928
Daniel Vettera0e99e62012-12-02 01:05:46 +0100929 drm_modeset_lock_all(dev);
Jesse Barnes8ea30862012-01-03 08:05:39 -0800930
931 obj = drm_mode_object_find(dev, get->plane_id, DRM_MODE_OBJECT_PLANE);
932 if (!obj) {
933 ret = -EINVAL;
934 goto out_unlock;
935 }
936
937 plane = obj_to_plane(obj);
938 intel_plane = to_intel_plane(plane);
939 intel_plane->get_colorkey(plane, get);
940
941out_unlock:
Daniel Vettera0e99e62012-12-02 01:05:46 +0100942 drm_modeset_unlock_all(dev);
Jesse Barnes8ea30862012-01-03 08:05:39 -0800943 return ret;
944}
945
Jesse Barnes5e1bac22013-03-26 09:25:43 -0700946void intel_plane_restore(struct drm_plane *plane)
947{
948 struct intel_plane *intel_plane = to_intel_plane(plane);
949
950 if (!plane->crtc || !plane->fb)
951 return;
952
953 intel_update_plane(plane, plane->crtc, plane->fb,
954 intel_plane->crtc_x, intel_plane->crtc_y,
955 intel_plane->crtc_w, intel_plane->crtc_h,
956 intel_plane->src_x, intel_plane->src_y,
957 intel_plane->src_w, intel_plane->src_h);
958}
959
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800960static const struct drm_plane_funcs intel_plane_funcs = {
961 .update_plane = intel_update_plane,
962 .disable_plane = intel_disable_plane,
963 .destroy = intel_destroy_plane,
964};
965
Chris Wilsond1686ae2012-04-10 11:41:49 +0100966static uint32_t ilk_plane_formats[] = {
967 DRM_FORMAT_XRGB8888,
968 DRM_FORMAT_YUYV,
969 DRM_FORMAT_YVYU,
970 DRM_FORMAT_UYVY,
971 DRM_FORMAT_VYUY,
972};
973
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800974static uint32_t snb_plane_formats[] = {
975 DRM_FORMAT_XBGR8888,
976 DRM_FORMAT_XRGB8888,
977 DRM_FORMAT_YUYV,
978 DRM_FORMAT_YVYU,
979 DRM_FORMAT_UYVY,
980 DRM_FORMAT_VYUY,
981};
982
Jesse Barnes7f1f3852013-04-02 11:22:20 -0700983static uint32_t vlv_plane_formats[] = {
984 DRM_FORMAT_RGB565,
985 DRM_FORMAT_ABGR8888,
986 DRM_FORMAT_ARGB8888,
987 DRM_FORMAT_XBGR8888,
988 DRM_FORMAT_XRGB8888,
989 DRM_FORMAT_XBGR2101010,
990 DRM_FORMAT_ABGR2101010,
991 DRM_FORMAT_YUYV,
992 DRM_FORMAT_YVYU,
993 DRM_FORMAT_UYVY,
994 DRM_FORMAT_VYUY,
995};
996
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800997int
Jesse Barnes7f1f3852013-04-02 11:22:20 -0700998intel_plane_init(struct drm_device *dev, enum pipe pipe, int plane)
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800999{
1000 struct intel_plane *intel_plane;
1001 unsigned long possible_crtcs;
Chris Wilsond1686ae2012-04-10 11:41:49 +01001002 const uint32_t *plane_formats;
1003 int num_plane_formats;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001004 int ret;
1005
Chris Wilsond1686ae2012-04-10 11:41:49 +01001006 if (INTEL_INFO(dev)->gen < 5)
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001007 return -ENODEV;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001008
1009 intel_plane = kzalloc(sizeof(struct intel_plane), GFP_KERNEL);
1010 if (!intel_plane)
1011 return -ENOMEM;
1012
Chris Wilsond1686ae2012-04-10 11:41:49 +01001013 switch (INTEL_INFO(dev)->gen) {
1014 case 5:
1015 case 6:
Damien Lespiau2d354c32012-10-22 18:19:27 +01001016 intel_plane->can_scale = true;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001017 intel_plane->max_downscale = 16;
Chris Wilsond1686ae2012-04-10 11:41:49 +01001018 intel_plane->update_plane = ilk_update_plane;
1019 intel_plane->disable_plane = ilk_disable_plane;
1020 intel_plane->update_colorkey = ilk_update_colorkey;
1021 intel_plane->get_colorkey = ilk_get_colorkey;
1022
1023 if (IS_GEN6(dev)) {
1024 plane_formats = snb_plane_formats;
1025 num_plane_formats = ARRAY_SIZE(snb_plane_formats);
1026 } else {
1027 plane_formats = ilk_plane_formats;
1028 num_plane_formats = ARRAY_SIZE(ilk_plane_formats);
1029 }
1030 break;
1031
1032 case 7:
Damien Lespiaud49f7092013-04-25 15:15:00 +01001033 if (IS_IVYBRIDGE(dev)) {
Damien Lespiau2d354c32012-10-22 18:19:27 +01001034 intel_plane->can_scale = true;
Damien Lespiaud49f7092013-04-25 15:15:00 +01001035 intel_plane->max_downscale = 2;
1036 } else {
1037 intel_plane->can_scale = false;
1038 intel_plane->max_downscale = 1;
1039 }
Chris Wilsond1686ae2012-04-10 11:41:49 +01001040
Jesse Barnes7f1f3852013-04-02 11:22:20 -07001041 if (IS_VALLEYVIEW(dev)) {
Jesse Barnes7f1f3852013-04-02 11:22:20 -07001042 intel_plane->update_plane = vlv_update_plane;
1043 intel_plane->disable_plane = vlv_disable_plane;
1044 intel_plane->update_colorkey = vlv_update_colorkey;
1045 intel_plane->get_colorkey = vlv_get_colorkey;
1046
1047 plane_formats = vlv_plane_formats;
1048 num_plane_formats = ARRAY_SIZE(vlv_plane_formats);
1049 } else {
Jesse Barnes7f1f3852013-04-02 11:22:20 -07001050 intel_plane->update_plane = ivb_update_plane;
1051 intel_plane->disable_plane = ivb_disable_plane;
1052 intel_plane->update_colorkey = ivb_update_colorkey;
1053 intel_plane->get_colorkey = ivb_get_colorkey;
1054
1055 plane_formats = snb_plane_formats;
1056 num_plane_formats = ARRAY_SIZE(snb_plane_formats);
1057 }
Chris Wilsond1686ae2012-04-10 11:41:49 +01001058 break;
1059
1060 default:
Jesper Juhla8b0bba2012-06-27 00:55:37 +02001061 kfree(intel_plane);
Chris Wilsond1686ae2012-04-10 11:41:49 +01001062 return -ENODEV;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001063 }
1064
1065 intel_plane->pipe = pipe;
Jesse Barnes7f1f3852013-04-02 11:22:20 -07001066 intel_plane->plane = plane;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001067 possible_crtcs = (1 << pipe);
1068 ret = drm_plane_init(dev, &intel_plane->base, possible_crtcs,
Chris Wilsond1686ae2012-04-10 11:41:49 +01001069 &intel_plane_funcs,
1070 plane_formats, num_plane_formats,
1071 false);
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001072 if (ret)
1073 kfree(intel_plane);
1074
1075 return ret;
1076}