blob: 987800a0234f4ed6241afa6a88b084771e4b616a [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 */
32#include "drmP.h"
33#include "drm_crtc.h"
34#include "drm_fourcc.h"
35#include "intel_drv.h"
36#include "i915_drm.h"
37#include "i915_drv.h"
38
39static void
40ivb_update_plane(struct drm_plane *plane, struct drm_framebuffer *fb,
41 struct drm_i915_gem_object *obj, int crtc_x, int crtc_y,
42 unsigned int crtc_w, unsigned int crtc_h,
43 uint32_t x, uint32_t y,
44 uint32_t src_w, uint32_t src_h)
45{
46 struct drm_device *dev = plane->dev;
47 struct drm_i915_private *dev_priv = dev->dev_private;
48 struct intel_plane *intel_plane = to_intel_plane(plane);
49 int pipe = intel_plane->pipe;
50 u32 sprctl, sprscale = 0;
51 int pixel_size;
52
53 sprctl = I915_READ(SPRCTL(pipe));
54
55 /* Mask out pixel format bits in case we change it */
56 sprctl &= ~SPRITE_PIXFORMAT_MASK;
57 sprctl &= ~SPRITE_RGB_ORDER_RGBX;
58 sprctl &= ~SPRITE_YUV_BYTE_ORDER_MASK;
59
60 switch (fb->pixel_format) {
61 case DRM_FORMAT_XBGR8888:
62 sprctl |= SPRITE_FORMAT_RGBX888;
63 pixel_size = 4;
64 break;
65 case DRM_FORMAT_XRGB8888:
66 sprctl |= SPRITE_FORMAT_RGBX888 | SPRITE_RGB_ORDER_RGBX;
67 pixel_size = 4;
68 break;
69 case DRM_FORMAT_YUYV:
70 sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_YUYV;
71 pixel_size = 2;
72 break;
73 case DRM_FORMAT_YVYU:
74 sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_YVYU;
75 pixel_size = 2;
76 break;
77 case DRM_FORMAT_UYVY:
78 sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_UYVY;
79 pixel_size = 2;
80 break;
81 case DRM_FORMAT_VYUY:
82 sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_VYUY;
83 pixel_size = 2;
84 break;
85 default:
86 DRM_DEBUG_DRIVER("bad pixel format, assuming RGBX888\n");
87 sprctl |= DVS_FORMAT_RGBX888;
88 pixel_size = 4;
89 break;
90 }
91
92 if (obj->tiling_mode != I915_TILING_NONE)
93 sprctl |= SPRITE_TILED;
94
95 /* must disable */
96 sprctl |= SPRITE_TRICKLE_FEED_DISABLE;
97 sprctl |= SPRITE_ENABLE;
98
99 /* Sizes are 0 based */
100 src_w--;
101 src_h--;
102 crtc_w--;
103 crtc_h--;
104
105 intel_update_sprite_watermarks(dev, pipe, crtc_w, pixel_size);
106
107 /*
108 * IVB workaround: must disable low power watermarks for at least
109 * one frame before enabling scaling. LP watermarks can be re-enabled
110 * when scaling is disabled.
111 */
112 if (crtc_w != src_w || crtc_h != src_h) {
113 dev_priv->sprite_scaling_enabled = true;
Chris Wilsonf681fa22012-04-14 21:56:08 +0100114 intel_update_watermarks(dev);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800115 intel_wait_for_vblank(dev, pipe);
116 sprscale = SPRITE_SCALE_ENABLE | (src_w << 16) | src_h;
117 } else {
118 dev_priv->sprite_scaling_enabled = false;
119 /* potentially re-enable LP watermarks */
Chris Wilsonf681fa22012-04-14 21:56:08 +0100120 intel_update_watermarks(dev);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800121 }
122
123 I915_WRITE(SPRSTRIDE(pipe), fb->pitches[0]);
124 I915_WRITE(SPRPOS(pipe), (crtc_y << 16) | crtc_x);
125 if (obj->tiling_mode != I915_TILING_NONE) {
126 I915_WRITE(SPRTILEOFF(pipe), (y << 16) | x);
127 } else {
128 unsigned long offset;
129
130 offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
131 I915_WRITE(SPRLINOFF(pipe), offset);
132 }
133 I915_WRITE(SPRSIZE(pipe), (crtc_h << 16) | crtc_w);
134 I915_WRITE(SPRSCALE(pipe), sprscale);
135 I915_WRITE(SPRCTL(pipe), sprctl);
136 I915_WRITE(SPRSURF(pipe), obj->gtt_offset);
137 POSTING_READ(SPRSURF(pipe));
138}
139
140static void
141ivb_disable_plane(struct drm_plane *plane)
142{
143 struct drm_device *dev = plane->dev;
144 struct drm_i915_private *dev_priv = dev->dev_private;
145 struct intel_plane *intel_plane = to_intel_plane(plane);
146 int pipe = intel_plane->pipe;
147
148 I915_WRITE(SPRCTL(pipe), I915_READ(SPRCTL(pipe)) & ~SPRITE_ENABLE);
149 /* Can't leave the scaler enabled... */
150 I915_WRITE(SPRSCALE(pipe), 0);
151 /* Activate double buffered register update */
152 I915_WRITE(SPRSURF(pipe), 0);
153 POSTING_READ(SPRSURF(pipe));
154}
155
Jesse Barnes8ea30862012-01-03 08:05:39 -0800156static int
157ivb_update_colorkey(struct drm_plane *plane,
158 struct drm_intel_sprite_colorkey *key)
159{
160 struct drm_device *dev = plane->dev;
161 struct drm_i915_private *dev_priv = dev->dev_private;
162 struct intel_plane *intel_plane;
163 u32 sprctl;
164 int ret = 0;
165
166 intel_plane = to_intel_plane(plane);
167
168 I915_WRITE(SPRKEYVAL(intel_plane->pipe), key->min_value);
169 I915_WRITE(SPRKEYMAX(intel_plane->pipe), key->max_value);
170 I915_WRITE(SPRKEYMSK(intel_plane->pipe), key->channel_mask);
171
172 sprctl = I915_READ(SPRCTL(intel_plane->pipe));
173 sprctl &= ~(SPRITE_SOURCE_KEY | SPRITE_DEST_KEY);
174 if (key->flags & I915_SET_COLORKEY_DESTINATION)
175 sprctl |= SPRITE_DEST_KEY;
176 else if (key->flags & I915_SET_COLORKEY_SOURCE)
177 sprctl |= SPRITE_SOURCE_KEY;
178 I915_WRITE(SPRCTL(intel_plane->pipe), sprctl);
179
180 POSTING_READ(SPRKEYMSK(intel_plane->pipe));
181
182 return ret;
183}
184
185static void
186ivb_get_colorkey(struct drm_plane *plane, struct drm_intel_sprite_colorkey *key)
187{
188 struct drm_device *dev = plane->dev;
189 struct drm_i915_private *dev_priv = dev->dev_private;
190 struct intel_plane *intel_plane;
191 u32 sprctl;
192
193 intel_plane = to_intel_plane(plane);
194
195 key->min_value = I915_READ(SPRKEYVAL(intel_plane->pipe));
196 key->max_value = I915_READ(SPRKEYMAX(intel_plane->pipe));
197 key->channel_mask = I915_READ(SPRKEYMSK(intel_plane->pipe));
198 key->flags = 0;
199
200 sprctl = I915_READ(SPRCTL(intel_plane->pipe));
201
202 if (sprctl & SPRITE_DEST_KEY)
203 key->flags = I915_SET_COLORKEY_DESTINATION;
204 else if (sprctl & SPRITE_SOURCE_KEY)
205 key->flags = I915_SET_COLORKEY_SOURCE;
206 else
207 key->flags = I915_SET_COLORKEY_NONE;
208}
209
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800210static void
Chris Wilsond1686ae2012-04-10 11:41:49 +0100211ilk_update_plane(struct drm_plane *plane, struct drm_framebuffer *fb,
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800212 struct drm_i915_gem_object *obj, int crtc_x, int crtc_y,
213 unsigned int crtc_w, unsigned int crtc_h,
214 uint32_t x, uint32_t y,
215 uint32_t src_w, uint32_t src_h)
216{
217 struct drm_device *dev = plane->dev;
218 struct drm_i915_private *dev_priv = dev->dev_private;
219 struct intel_plane *intel_plane = to_intel_plane(plane);
220 int pipe = intel_plane->pipe, pixel_size;
Chris Wilson8aaa81a2012-04-14 22:14:26 +0100221 u32 dvscntr, dvsscale;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800222
223 dvscntr = I915_READ(DVSCNTR(pipe));
224
225 /* Mask out pixel format bits in case we change it */
226 dvscntr &= ~DVS_PIXFORMAT_MASK;
Jesse Barnesab2f9df2012-02-27 12:40:10 -0800227 dvscntr &= ~DVS_RGB_ORDER_XBGR;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800228 dvscntr &= ~DVS_YUV_BYTE_ORDER_MASK;
229
230 switch (fb->pixel_format) {
231 case DRM_FORMAT_XBGR8888:
Jesse Barnesab2f9df2012-02-27 12:40:10 -0800232 dvscntr |= DVS_FORMAT_RGBX888 | DVS_RGB_ORDER_XBGR;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800233 pixel_size = 4;
234 break;
235 case DRM_FORMAT_XRGB8888:
Jesse Barnesab2f9df2012-02-27 12:40:10 -0800236 dvscntr |= DVS_FORMAT_RGBX888;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800237 pixel_size = 4;
238 break;
239 case DRM_FORMAT_YUYV:
240 dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_YUYV;
241 pixel_size = 2;
242 break;
243 case DRM_FORMAT_YVYU:
244 dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_YVYU;
245 pixel_size = 2;
246 break;
247 case DRM_FORMAT_UYVY:
248 dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_UYVY;
249 pixel_size = 2;
250 break;
251 case DRM_FORMAT_VYUY:
252 dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_VYUY;
253 pixel_size = 2;
254 break;
255 default:
256 DRM_DEBUG_DRIVER("bad pixel format, assuming RGBX888\n");
257 dvscntr |= DVS_FORMAT_RGBX888;
258 pixel_size = 4;
259 break;
260 }
261
262 if (obj->tiling_mode != I915_TILING_NONE)
263 dvscntr |= DVS_TILED;
264
Chris Wilsond1686ae2012-04-10 11:41:49 +0100265 if (IS_GEN6(dev))
266 dvscntr |= DVS_TRICKLE_FEED_DISABLE; /* must disable */
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800267 dvscntr |= DVS_ENABLE;
268
269 /* Sizes are 0 based */
270 src_w--;
271 src_h--;
272 crtc_w--;
273 crtc_h--;
274
275 intel_update_sprite_watermarks(dev, pipe, crtc_w, pixel_size);
276
Chris Wilson8aaa81a2012-04-14 22:14:26 +0100277 dvsscale = 0;
278 if (IS_GEN5(dev) || crtc_w != src_w || crtc_h != src_h)
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800279 dvsscale = DVS_SCALE_ENABLE | (src_w << 16) | src_h;
280
281 I915_WRITE(DVSSTRIDE(pipe), fb->pitches[0]);
282 I915_WRITE(DVSPOS(pipe), (crtc_y << 16) | crtc_x);
283 if (obj->tiling_mode != I915_TILING_NONE) {
284 I915_WRITE(DVSTILEOFF(pipe), (y << 16) | x);
285 } else {
286 unsigned long offset;
287
288 offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
289 I915_WRITE(DVSLINOFF(pipe), offset);
290 }
291 I915_WRITE(DVSSIZE(pipe), (crtc_h << 16) | crtc_w);
292 I915_WRITE(DVSSCALE(pipe), dvsscale);
293 I915_WRITE(DVSCNTR(pipe), dvscntr);
294 I915_WRITE(DVSSURF(pipe), obj->gtt_offset);
295 POSTING_READ(DVSSURF(pipe));
296}
297
298static void
Chris Wilsond1686ae2012-04-10 11:41:49 +0100299ilk_disable_plane(struct drm_plane *plane)
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800300{
301 struct drm_device *dev = plane->dev;
302 struct drm_i915_private *dev_priv = dev->dev_private;
303 struct intel_plane *intel_plane = to_intel_plane(plane);
304 int pipe = intel_plane->pipe;
305
306 I915_WRITE(DVSCNTR(pipe), I915_READ(DVSCNTR(pipe)) & ~DVS_ENABLE);
307 /* Disable the scaler */
308 I915_WRITE(DVSSCALE(pipe), 0);
309 /* Flush double buffered register updates */
310 I915_WRITE(DVSSURF(pipe), 0);
311 POSTING_READ(DVSSURF(pipe));
312}
313
Jesse Barnes175bd422011-12-13 13:19:39 -0800314static void
315intel_enable_primary(struct drm_crtc *crtc)
316{
317 struct drm_device *dev = crtc->dev;
318 struct drm_i915_private *dev_priv = dev->dev_private;
319 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
320 int reg = DSPCNTR(intel_crtc->plane);
321
322 I915_WRITE(reg, I915_READ(reg) | DISPLAY_PLANE_ENABLE);
323}
324
325static void
326intel_disable_primary(struct drm_crtc *crtc)
327{
328 struct drm_device *dev = crtc->dev;
329 struct drm_i915_private *dev_priv = dev->dev_private;
330 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
331 int reg = DSPCNTR(intel_crtc->plane);
332
333 I915_WRITE(reg, I915_READ(reg) & ~DISPLAY_PLANE_ENABLE);
334}
335
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800336static int
Chris Wilsond1686ae2012-04-10 11:41:49 +0100337ilk_update_colorkey(struct drm_plane *plane,
Jesse Barnes8ea30862012-01-03 08:05:39 -0800338 struct drm_intel_sprite_colorkey *key)
339{
340 struct drm_device *dev = plane->dev;
341 struct drm_i915_private *dev_priv = dev->dev_private;
342 struct intel_plane *intel_plane;
343 u32 dvscntr;
344 int ret = 0;
345
346 intel_plane = to_intel_plane(plane);
347
348 I915_WRITE(DVSKEYVAL(intel_plane->pipe), key->min_value);
349 I915_WRITE(DVSKEYMAX(intel_plane->pipe), key->max_value);
350 I915_WRITE(DVSKEYMSK(intel_plane->pipe), key->channel_mask);
351
352 dvscntr = I915_READ(DVSCNTR(intel_plane->pipe));
353 dvscntr &= ~(DVS_SOURCE_KEY | DVS_DEST_KEY);
354 if (key->flags & I915_SET_COLORKEY_DESTINATION)
355 dvscntr |= DVS_DEST_KEY;
356 else if (key->flags & I915_SET_COLORKEY_SOURCE)
357 dvscntr |= DVS_SOURCE_KEY;
358 I915_WRITE(DVSCNTR(intel_plane->pipe), dvscntr);
359
360 POSTING_READ(DVSKEYMSK(intel_plane->pipe));
361
362 return ret;
363}
364
365static void
Chris Wilsond1686ae2012-04-10 11:41:49 +0100366ilk_get_colorkey(struct drm_plane *plane, struct drm_intel_sprite_colorkey *key)
Jesse Barnes8ea30862012-01-03 08:05:39 -0800367{
368 struct drm_device *dev = plane->dev;
369 struct drm_i915_private *dev_priv = dev->dev_private;
370 struct intel_plane *intel_plane;
371 u32 dvscntr;
372
373 intel_plane = to_intel_plane(plane);
374
375 key->min_value = I915_READ(DVSKEYVAL(intel_plane->pipe));
376 key->max_value = I915_READ(DVSKEYMAX(intel_plane->pipe));
377 key->channel_mask = I915_READ(DVSKEYMSK(intel_plane->pipe));
378 key->flags = 0;
379
380 dvscntr = I915_READ(DVSCNTR(intel_plane->pipe));
381
382 if (dvscntr & DVS_DEST_KEY)
383 key->flags = I915_SET_COLORKEY_DESTINATION;
384 else if (dvscntr & DVS_SOURCE_KEY)
385 key->flags = I915_SET_COLORKEY_SOURCE;
386 else
387 key->flags = I915_SET_COLORKEY_NONE;
388}
389
390static int
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800391intel_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
392 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
393 unsigned int crtc_w, unsigned int crtc_h,
394 uint32_t src_x, uint32_t src_y,
395 uint32_t src_w, uint32_t src_h)
396{
397 struct drm_device *dev = plane->dev;
398 struct drm_i915_private *dev_priv = dev->dev_private;
399 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
400 struct intel_plane *intel_plane = to_intel_plane(plane);
401 struct intel_framebuffer *intel_fb;
402 struct drm_i915_gem_object *obj, *old_obj;
403 int pipe = intel_plane->pipe;
404 int ret = 0;
405 int x = src_x >> 16, y = src_y >> 16;
406 int primary_w = crtc->mode.hdisplay, primary_h = crtc->mode.vdisplay;
407 bool disable_primary = false;
408
409 intel_fb = to_intel_framebuffer(fb);
410 obj = intel_fb->obj;
411
412 old_obj = intel_plane->obj;
413
Jesse Barnesb4db1e32012-03-20 10:59:09 -0700414 src_w = src_w >> 16;
415 src_h = src_h >> 16;
416
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800417 /* Pipe must be running... */
418 if (!(I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE))
419 return -EINVAL;
420
421 if (crtc_x >= primary_w || crtc_y >= primary_h)
422 return -EINVAL;
423
424 /* Don't modify another pipe's plane */
425 if (intel_plane->pipe != intel_crtc->pipe)
426 return -EINVAL;
427
428 /*
429 * Clamp the width & height into the visible area. Note we don't
430 * try to scale the source if part of the visible region is offscreen.
431 * The caller must handle that by adjusting source offset and size.
432 */
433 if ((crtc_x < 0) && ((crtc_x + crtc_w) > 0)) {
434 crtc_w += crtc_x;
435 crtc_x = 0;
436 }
437 if ((crtc_x + crtc_w) <= 0) /* Nothing to display */
438 goto out;
439 if ((crtc_x + crtc_w) > primary_w)
440 crtc_w = primary_w - crtc_x;
441
442 if ((crtc_y < 0) && ((crtc_y + crtc_h) > 0)) {
443 crtc_h += crtc_y;
444 crtc_y = 0;
445 }
446 if ((crtc_y + crtc_h) <= 0) /* Nothing to display */
447 goto out;
448 if (crtc_y + crtc_h > primary_h)
449 crtc_h = primary_h - crtc_y;
450
451 if (!crtc_w || !crtc_h) /* Again, nothing to display */
452 goto out;
453
454 /*
455 * We can take a larger source and scale it down, but
456 * only so much... 16x is the max on SNB.
457 */
458 if (((src_w * src_h) / (crtc_w * crtc_h)) > intel_plane->max_downscale)
459 return -EINVAL;
460
461 /*
462 * If the sprite is completely covering the primary plane,
463 * we can disable the primary and save power.
464 */
465 if ((crtc_x == 0) && (crtc_y == 0) &&
466 (crtc_w == primary_w) && (crtc_h == primary_h))
467 disable_primary = true;
468
469 mutex_lock(&dev->struct_mutex);
470
471 ret = intel_pin_and_fence_fb_obj(dev, obj, NULL);
Jesse Barnes00c2064b2012-01-13 15:48:39 -0800472 if (ret)
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800473 goto out_unlock;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800474
475 intel_plane->obj = obj;
476
Jesse Barnes175bd422011-12-13 13:19:39 -0800477 /*
478 * Be sure to re-enable the primary before the sprite is no longer
479 * covering it fully.
480 */
481 if (!disable_primary && intel_plane->primary_disabled) {
482 intel_enable_primary(crtc);
483 intel_plane->primary_disabled = false;
484 }
485
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800486 intel_plane->update_plane(plane, fb, obj, crtc_x, crtc_y,
487 crtc_w, crtc_h, x, y, src_w, src_h);
488
Jesse Barnes175bd422011-12-13 13:19:39 -0800489 if (disable_primary) {
490 intel_disable_primary(crtc);
491 intel_plane->primary_disabled = true;
492 }
493
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800494 /* Unpin old obj after new one is active to avoid ugliness */
495 if (old_obj) {
496 /*
497 * It's fairly common to simply update the position of
498 * an existing object. In that case, we don't need to
499 * wait for vblank to avoid ugliness, we only need to
500 * do the pin & ref bookkeeping.
501 */
502 if (old_obj != obj) {
503 mutex_unlock(&dev->struct_mutex);
504 intel_wait_for_vblank(dev, to_intel_crtc(crtc)->pipe);
505 mutex_lock(&dev->struct_mutex);
506 }
Chris Wilson1690e1e2011-12-14 13:57:08 +0100507 intel_unpin_fb_obj(old_obj);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800508 }
509
510out_unlock:
511 mutex_unlock(&dev->struct_mutex);
512out:
513 return ret;
514}
515
516static int
517intel_disable_plane(struct drm_plane *plane)
518{
519 struct drm_device *dev = plane->dev;
520 struct intel_plane *intel_plane = to_intel_plane(plane);
521 int ret = 0;
522
Jesse Barnes175bd422011-12-13 13:19:39 -0800523 if (intel_plane->primary_disabled) {
524 intel_enable_primary(plane->crtc);
525 intel_plane->primary_disabled = false;
526 }
527
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800528 intel_plane->disable_plane(plane);
529
530 if (!intel_plane->obj)
531 goto out;
532
533 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +0100534 intel_unpin_fb_obj(intel_plane->obj);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800535 intel_plane->obj = NULL;
536 mutex_unlock(&dev->struct_mutex);
537out:
538
539 return ret;
540}
541
542static void intel_destroy_plane(struct drm_plane *plane)
543{
544 struct intel_plane *intel_plane = to_intel_plane(plane);
545 intel_disable_plane(plane);
546 drm_plane_cleanup(plane);
547 kfree(intel_plane);
548}
549
Jesse Barnes8ea30862012-01-03 08:05:39 -0800550int intel_sprite_set_colorkey(struct drm_device *dev, void *data,
551 struct drm_file *file_priv)
552{
553 struct drm_intel_sprite_colorkey *set = data;
554 struct drm_i915_private *dev_priv = dev->dev_private;
555 struct drm_mode_object *obj;
556 struct drm_plane *plane;
557 struct intel_plane *intel_plane;
558 int ret = 0;
559
560 if (!dev_priv)
561 return -EINVAL;
562
563 /* Make sure we don't try to enable both src & dest simultaneously */
564 if ((set->flags & (I915_SET_COLORKEY_DESTINATION | I915_SET_COLORKEY_SOURCE)) == (I915_SET_COLORKEY_DESTINATION | I915_SET_COLORKEY_SOURCE))
565 return -EINVAL;
566
567 mutex_lock(&dev->mode_config.mutex);
568
569 obj = drm_mode_object_find(dev, set->plane_id, DRM_MODE_OBJECT_PLANE);
570 if (!obj) {
571 ret = -EINVAL;
572 goto out_unlock;
573 }
574
575 plane = obj_to_plane(obj);
576 intel_plane = to_intel_plane(plane);
577 ret = intel_plane->update_colorkey(plane, set);
578
579out_unlock:
580 mutex_unlock(&dev->mode_config.mutex);
581 return ret;
582}
583
584int intel_sprite_get_colorkey(struct drm_device *dev, void *data,
585 struct drm_file *file_priv)
586{
587 struct drm_intel_sprite_colorkey *get = data;
588 struct drm_i915_private *dev_priv = dev->dev_private;
589 struct drm_mode_object *obj;
590 struct drm_plane *plane;
591 struct intel_plane *intel_plane;
592 int ret = 0;
593
594 if (!dev_priv)
595 return -EINVAL;
596
597 mutex_lock(&dev->mode_config.mutex);
598
599 obj = drm_mode_object_find(dev, get->plane_id, DRM_MODE_OBJECT_PLANE);
600 if (!obj) {
601 ret = -EINVAL;
602 goto out_unlock;
603 }
604
605 plane = obj_to_plane(obj);
606 intel_plane = to_intel_plane(plane);
607 intel_plane->get_colorkey(plane, get);
608
609out_unlock:
610 mutex_unlock(&dev->mode_config.mutex);
611 return ret;
612}
613
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800614static const struct drm_plane_funcs intel_plane_funcs = {
615 .update_plane = intel_update_plane,
616 .disable_plane = intel_disable_plane,
617 .destroy = intel_destroy_plane,
618};
619
Chris Wilsond1686ae2012-04-10 11:41:49 +0100620static uint32_t ilk_plane_formats[] = {
621 DRM_FORMAT_XRGB8888,
622 DRM_FORMAT_YUYV,
623 DRM_FORMAT_YVYU,
624 DRM_FORMAT_UYVY,
625 DRM_FORMAT_VYUY,
626};
627
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800628static uint32_t snb_plane_formats[] = {
629 DRM_FORMAT_XBGR8888,
630 DRM_FORMAT_XRGB8888,
631 DRM_FORMAT_YUYV,
632 DRM_FORMAT_YVYU,
633 DRM_FORMAT_UYVY,
634 DRM_FORMAT_VYUY,
635};
636
637int
638intel_plane_init(struct drm_device *dev, enum pipe pipe)
639{
640 struct intel_plane *intel_plane;
641 unsigned long possible_crtcs;
Chris Wilsond1686ae2012-04-10 11:41:49 +0100642 const uint32_t *plane_formats;
643 int num_plane_formats;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800644 int ret;
645
Chris Wilsond1686ae2012-04-10 11:41:49 +0100646 if (INTEL_INFO(dev)->gen < 5)
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800647 return -ENODEV;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800648
649 intel_plane = kzalloc(sizeof(struct intel_plane), GFP_KERNEL);
650 if (!intel_plane)
651 return -ENOMEM;
652
Chris Wilsond1686ae2012-04-10 11:41:49 +0100653 switch (INTEL_INFO(dev)->gen) {
654 case 5:
655 case 6:
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800656 intel_plane->max_downscale = 16;
Chris Wilsond1686ae2012-04-10 11:41:49 +0100657 intel_plane->update_plane = ilk_update_plane;
658 intel_plane->disable_plane = ilk_disable_plane;
659 intel_plane->update_colorkey = ilk_update_colorkey;
660 intel_plane->get_colorkey = ilk_get_colorkey;
661
662 if (IS_GEN6(dev)) {
663 plane_formats = snb_plane_formats;
664 num_plane_formats = ARRAY_SIZE(snb_plane_formats);
665 } else {
666 plane_formats = ilk_plane_formats;
667 num_plane_formats = ARRAY_SIZE(ilk_plane_formats);
668 }
669 break;
670
671 case 7:
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800672 intel_plane->max_downscale = 2;
673 intel_plane->update_plane = ivb_update_plane;
674 intel_plane->disable_plane = ivb_disable_plane;
Jesse Barnes8ea30862012-01-03 08:05:39 -0800675 intel_plane->update_colorkey = ivb_update_colorkey;
676 intel_plane->get_colorkey = ivb_get_colorkey;
Chris Wilsond1686ae2012-04-10 11:41:49 +0100677
678 plane_formats = snb_plane_formats;
679 num_plane_formats = ARRAY_SIZE(snb_plane_formats);
680 break;
681
682 default:
683 return -ENODEV;
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800684 }
685
686 intel_plane->pipe = pipe;
687 possible_crtcs = (1 << pipe);
688 ret = drm_plane_init(dev, &intel_plane->base, possible_crtcs,
Chris Wilsond1686ae2012-04-10 11:41:49 +0100689 &intel_plane_funcs,
690 plane_formats, num_plane_formats,
691 false);
Jesse Barnesb840d907f2011-12-13 13:19:38 -0800692 if (ret)
693 kfree(intel_plane);
694
695 return ret;
696}
697