2 * Copyright © 2011 Intel Corporation
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:
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
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
24 * Jesse Barnes <jbarnes@virtuousgeek.org>
26 * New plane/sprite handling.
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
33 #include <drm/drm_crtc.h>
34 #include <drm/drm_fourcc.h>
35 #include <drm/drm_rect.h>
36 #include "intel_drv.h"
37 #include <drm/i915_drm.h>
41 vlv_update_plane(struct drm_plane *dplane, struct drm_crtc *crtc,
42 struct drm_framebuffer *fb,
43 struct drm_i915_gem_object *obj, int crtc_x, int crtc_y,
44 unsigned int crtc_w, unsigned int crtc_h,
45 uint32_t x, uint32_t y,
46 uint32_t src_w, uint32_t src_h)
48 struct drm_device *dev = dplane->dev;
49 struct drm_i915_private *dev_priv = dev->dev_private;
50 struct intel_plane *intel_plane = to_intel_plane(dplane);
51 int pipe = intel_plane->pipe;
52 int plane = intel_plane->plane;
54 unsigned long sprsurf_offset, linear_offset;
55 int pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
57 sprctl = I915_READ(SPCNTR(pipe, plane));
59 /* Mask out pixel format bits in case we change it */
60 sprctl &= ~SP_PIXFORMAT_MASK;
61 sprctl &= ~SP_YUV_BYTE_ORDER_MASK;
64 switch (fb->pixel_format) {
66 sprctl |= SP_FORMAT_YUV422 | SP_YUV_ORDER_YUYV;
69 sprctl |= SP_FORMAT_YUV422 | SP_YUV_ORDER_YVYU;
72 sprctl |= SP_FORMAT_YUV422 | SP_YUV_ORDER_UYVY;
75 sprctl |= SP_FORMAT_YUV422 | SP_YUV_ORDER_VYUY;
77 case DRM_FORMAT_RGB565:
78 sprctl |= SP_FORMAT_BGR565;
80 case DRM_FORMAT_XRGB8888:
81 sprctl |= SP_FORMAT_BGRX8888;
83 case DRM_FORMAT_ARGB8888:
84 sprctl |= SP_FORMAT_BGRA8888;
86 case DRM_FORMAT_XBGR2101010:
87 sprctl |= SP_FORMAT_RGBX1010102;
89 case DRM_FORMAT_ABGR2101010:
90 sprctl |= SP_FORMAT_RGBA1010102;
92 case DRM_FORMAT_XBGR8888:
93 sprctl |= SP_FORMAT_RGBX8888;
95 case DRM_FORMAT_ABGR8888:
96 sprctl |= SP_FORMAT_RGBA8888;
100 * If we get here one of the upper layers failed to filter
101 * out the unsupported plane formats
107 if (obj->tiling_mode != I915_TILING_NONE)
112 intel_update_sprite_watermarks(dplane, crtc, src_w, pixel_size, true,
113 src_w != crtc_w || src_h != crtc_h);
115 /* Sizes are 0 based */
121 I915_WRITE(SPSTRIDE(pipe, plane), fb->pitches[0]);
122 I915_WRITE(SPPOS(pipe, plane), (crtc_y << 16) | crtc_x);
124 linear_offset = y * fb->pitches[0] + x * pixel_size;
125 sprsurf_offset = intel_gen4_compute_page_offset(&x, &y,
129 linear_offset -= sprsurf_offset;
131 if (obj->tiling_mode != I915_TILING_NONE)
132 I915_WRITE(SPTILEOFF(pipe, plane), (y << 16) | x);
134 I915_WRITE(SPLINOFF(pipe, plane), linear_offset);
136 I915_WRITE(SPSIZE(pipe, plane), (crtc_h << 16) | crtc_w);
137 I915_WRITE(SPCNTR(pipe, plane), sprctl);
138 I915_MODIFY_DISPBASE(SPSURF(pipe, plane), i915_gem_obj_ggtt_offset(obj) +
140 POSTING_READ(SPSURF(pipe, plane));
144 vlv_disable_plane(struct drm_plane *dplane, struct drm_crtc *crtc)
146 struct drm_device *dev = dplane->dev;
147 struct drm_i915_private *dev_priv = dev->dev_private;
148 struct intel_plane *intel_plane = to_intel_plane(dplane);
149 int pipe = intel_plane->pipe;
150 int plane = intel_plane->plane;
152 I915_WRITE(SPCNTR(pipe, plane), I915_READ(SPCNTR(pipe, plane)) &
154 /* Activate double buffered register update */
155 I915_MODIFY_DISPBASE(SPSURF(pipe, plane), 0);
156 POSTING_READ(SPSURF(pipe, plane));
158 intel_update_sprite_watermarks(dplane, crtc, 0, 0, false, false);
162 vlv_update_colorkey(struct drm_plane *dplane,
163 struct drm_intel_sprite_colorkey *key)
165 struct drm_device *dev = dplane->dev;
166 struct drm_i915_private *dev_priv = dev->dev_private;
167 struct intel_plane *intel_plane = to_intel_plane(dplane);
168 int pipe = intel_plane->pipe;
169 int plane = intel_plane->plane;
172 if (key->flags & I915_SET_COLORKEY_DESTINATION)
175 I915_WRITE(SPKEYMINVAL(pipe, plane), key->min_value);
176 I915_WRITE(SPKEYMAXVAL(pipe, plane), key->max_value);
177 I915_WRITE(SPKEYMSK(pipe, plane), key->channel_mask);
179 sprctl = I915_READ(SPCNTR(pipe, plane));
180 sprctl &= ~SP_SOURCE_KEY;
181 if (key->flags & I915_SET_COLORKEY_SOURCE)
182 sprctl |= SP_SOURCE_KEY;
183 I915_WRITE(SPCNTR(pipe, plane), sprctl);
185 POSTING_READ(SPKEYMSK(pipe, plane));
191 vlv_get_colorkey(struct drm_plane *dplane,
192 struct drm_intel_sprite_colorkey *key)
194 struct drm_device *dev = dplane->dev;
195 struct drm_i915_private *dev_priv = dev->dev_private;
196 struct intel_plane *intel_plane = to_intel_plane(dplane);
197 int pipe = intel_plane->pipe;
198 int plane = intel_plane->plane;
201 key->min_value = I915_READ(SPKEYMINVAL(pipe, plane));
202 key->max_value = I915_READ(SPKEYMAXVAL(pipe, plane));
203 key->channel_mask = I915_READ(SPKEYMSK(pipe, plane));
205 sprctl = I915_READ(SPCNTR(pipe, plane));
206 if (sprctl & SP_SOURCE_KEY)
207 key->flags = I915_SET_COLORKEY_SOURCE;
209 key->flags = I915_SET_COLORKEY_NONE;
213 ivb_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
214 struct drm_framebuffer *fb,
215 struct drm_i915_gem_object *obj, int crtc_x, int crtc_y,
216 unsigned int crtc_w, unsigned int crtc_h,
217 uint32_t x, uint32_t y,
218 uint32_t src_w, uint32_t src_h)
220 struct drm_device *dev = plane->dev;
221 struct drm_i915_private *dev_priv = dev->dev_private;
222 struct intel_plane *intel_plane = to_intel_plane(plane);
223 int pipe = intel_plane->pipe;
224 u32 sprctl, sprscale = 0;
225 unsigned long sprsurf_offset, linear_offset;
226 int pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
227 bool scaling_was_enabled = dev_priv->sprite_scaling_enabled;
229 sprctl = I915_READ(SPRCTL(pipe));
231 /* Mask out pixel format bits in case we change it */
232 sprctl &= ~SPRITE_PIXFORMAT_MASK;
233 sprctl &= ~SPRITE_RGB_ORDER_RGBX;
234 sprctl &= ~SPRITE_YUV_BYTE_ORDER_MASK;
235 sprctl &= ~SPRITE_TILED;
237 switch (fb->pixel_format) {
238 case DRM_FORMAT_XBGR8888:
239 sprctl |= SPRITE_FORMAT_RGBX888 | SPRITE_RGB_ORDER_RGBX;
241 case DRM_FORMAT_XRGB8888:
242 sprctl |= SPRITE_FORMAT_RGBX888;
244 case DRM_FORMAT_YUYV:
245 sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_YUYV;
247 case DRM_FORMAT_YVYU:
248 sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_YVYU;
250 case DRM_FORMAT_UYVY:
251 sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_UYVY;
253 case DRM_FORMAT_VYUY:
254 sprctl |= SPRITE_FORMAT_YUV422 | SPRITE_YUV_ORDER_VYUY;
260 if (obj->tiling_mode != I915_TILING_NONE)
261 sprctl |= SPRITE_TILED;
263 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
264 sprctl &= ~SPRITE_TRICKLE_FEED_DISABLE;
266 sprctl |= SPRITE_TRICKLE_FEED_DISABLE;
268 sprctl |= SPRITE_ENABLE;
270 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
271 sprctl |= SPRITE_PIPE_CSC_ENABLE;
273 intel_update_sprite_watermarks(plane, crtc, src_w, pixel_size, true,
274 src_w != crtc_w || src_h != crtc_h);
276 /* Sizes are 0 based */
283 * IVB workaround: must disable low power watermarks for at least
284 * one frame before enabling scaling. LP watermarks can be re-enabled
285 * when scaling is disabled.
287 if (crtc_w != src_w || crtc_h != src_h) {
288 dev_priv->sprite_scaling_enabled |= 1 << pipe;
290 if (!scaling_was_enabled) {
291 intel_update_watermarks(crtc);
292 intel_wait_for_vblank(dev, pipe);
294 sprscale = SPRITE_SCALE_ENABLE | (src_w << 16) | src_h;
296 dev_priv->sprite_scaling_enabled &= ~(1 << pipe);
298 I915_WRITE(SPRSTRIDE(pipe), fb->pitches[0]);
299 I915_WRITE(SPRPOS(pipe), (crtc_y << 16) | crtc_x);
301 linear_offset = y * fb->pitches[0] + x * pixel_size;
303 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
304 pixel_size, fb->pitches[0]);
305 linear_offset -= sprsurf_offset;
307 /* HSW consolidates SPRTILEOFF and SPRLINOFF into a single SPROFFSET
309 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
310 I915_WRITE(SPROFFSET(pipe), (y << 16) | x);
311 else if (obj->tiling_mode != I915_TILING_NONE)
312 I915_WRITE(SPRTILEOFF(pipe), (y << 16) | x);
314 I915_WRITE(SPRLINOFF(pipe), linear_offset);
316 I915_WRITE(SPRSIZE(pipe), (crtc_h << 16) | crtc_w);
317 if (intel_plane->can_scale)
318 I915_WRITE(SPRSCALE(pipe), sprscale);
319 I915_WRITE(SPRCTL(pipe), sprctl);
320 I915_MODIFY_DISPBASE(SPRSURF(pipe),
321 i915_gem_obj_ggtt_offset(obj) + sprsurf_offset);
322 POSTING_READ(SPRSURF(pipe));
324 /* potentially re-enable LP watermarks */
325 if (scaling_was_enabled && !dev_priv->sprite_scaling_enabled)
326 intel_update_watermarks(crtc);
330 ivb_disable_plane(struct drm_plane *plane, struct drm_crtc *crtc)
332 struct drm_device *dev = plane->dev;
333 struct drm_i915_private *dev_priv = dev->dev_private;
334 struct intel_plane *intel_plane = to_intel_plane(plane);
335 int pipe = intel_plane->pipe;
336 bool scaling_was_enabled = dev_priv->sprite_scaling_enabled;
338 I915_WRITE(SPRCTL(pipe), I915_READ(SPRCTL(pipe)) & ~SPRITE_ENABLE);
339 /* Can't leave the scaler enabled... */
340 if (intel_plane->can_scale)
341 I915_WRITE(SPRSCALE(pipe), 0);
342 /* Activate double buffered register update */
343 I915_MODIFY_DISPBASE(SPRSURF(pipe), 0);
344 POSTING_READ(SPRSURF(pipe));
346 dev_priv->sprite_scaling_enabled &= ~(1 << pipe);
348 intel_update_sprite_watermarks(plane, crtc, 0, 0, false, false);
350 /* potentially re-enable LP watermarks */
351 if (scaling_was_enabled && !dev_priv->sprite_scaling_enabled)
352 intel_update_watermarks(crtc);
356 ivb_update_colorkey(struct drm_plane *plane,
357 struct drm_intel_sprite_colorkey *key)
359 struct drm_device *dev = plane->dev;
360 struct drm_i915_private *dev_priv = dev->dev_private;
361 struct intel_plane *intel_plane;
365 intel_plane = to_intel_plane(plane);
367 I915_WRITE(SPRKEYVAL(intel_plane->pipe), key->min_value);
368 I915_WRITE(SPRKEYMAX(intel_plane->pipe), key->max_value);
369 I915_WRITE(SPRKEYMSK(intel_plane->pipe), key->channel_mask);
371 sprctl = I915_READ(SPRCTL(intel_plane->pipe));
372 sprctl &= ~(SPRITE_SOURCE_KEY | SPRITE_DEST_KEY);
373 if (key->flags & I915_SET_COLORKEY_DESTINATION)
374 sprctl |= SPRITE_DEST_KEY;
375 else if (key->flags & I915_SET_COLORKEY_SOURCE)
376 sprctl |= SPRITE_SOURCE_KEY;
377 I915_WRITE(SPRCTL(intel_plane->pipe), sprctl);
379 POSTING_READ(SPRKEYMSK(intel_plane->pipe));
385 ivb_get_colorkey(struct drm_plane *plane, struct drm_intel_sprite_colorkey *key)
387 struct drm_device *dev = plane->dev;
388 struct drm_i915_private *dev_priv = dev->dev_private;
389 struct intel_plane *intel_plane;
392 intel_plane = to_intel_plane(plane);
394 key->min_value = I915_READ(SPRKEYVAL(intel_plane->pipe));
395 key->max_value = I915_READ(SPRKEYMAX(intel_plane->pipe));
396 key->channel_mask = I915_READ(SPRKEYMSK(intel_plane->pipe));
399 sprctl = I915_READ(SPRCTL(intel_plane->pipe));
401 if (sprctl & SPRITE_DEST_KEY)
402 key->flags = I915_SET_COLORKEY_DESTINATION;
403 else if (sprctl & SPRITE_SOURCE_KEY)
404 key->flags = I915_SET_COLORKEY_SOURCE;
406 key->flags = I915_SET_COLORKEY_NONE;
410 ilk_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
411 struct drm_framebuffer *fb,
412 struct drm_i915_gem_object *obj, int crtc_x, int crtc_y,
413 unsigned int crtc_w, unsigned int crtc_h,
414 uint32_t x, uint32_t y,
415 uint32_t src_w, uint32_t src_h)
417 struct drm_device *dev = plane->dev;
418 struct drm_i915_private *dev_priv = dev->dev_private;
419 struct intel_plane *intel_plane = to_intel_plane(plane);
420 int pipe = intel_plane->pipe;
421 unsigned long dvssurf_offset, linear_offset;
422 u32 dvscntr, dvsscale;
423 int pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
425 dvscntr = I915_READ(DVSCNTR(pipe));
427 /* Mask out pixel format bits in case we change it */
428 dvscntr &= ~DVS_PIXFORMAT_MASK;
429 dvscntr &= ~DVS_RGB_ORDER_XBGR;
430 dvscntr &= ~DVS_YUV_BYTE_ORDER_MASK;
431 dvscntr &= ~DVS_TILED;
433 switch (fb->pixel_format) {
434 case DRM_FORMAT_XBGR8888:
435 dvscntr |= DVS_FORMAT_RGBX888 | DVS_RGB_ORDER_XBGR;
437 case DRM_FORMAT_XRGB8888:
438 dvscntr |= DVS_FORMAT_RGBX888;
440 case DRM_FORMAT_YUYV:
441 dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_YUYV;
443 case DRM_FORMAT_YVYU:
444 dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_YVYU;
446 case DRM_FORMAT_UYVY:
447 dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_UYVY;
449 case DRM_FORMAT_VYUY:
450 dvscntr |= DVS_FORMAT_YUV422 | DVS_YUV_ORDER_VYUY;
456 if (obj->tiling_mode != I915_TILING_NONE)
457 dvscntr |= DVS_TILED;
460 dvscntr |= DVS_TRICKLE_FEED_DISABLE; /* must disable */
461 dvscntr |= DVS_ENABLE;
463 intel_update_sprite_watermarks(plane, crtc, src_w, pixel_size, true,
464 src_w != crtc_w || src_h != crtc_h);
466 /* Sizes are 0 based */
473 if (IS_GEN5(dev) || crtc_w != src_w || crtc_h != src_h)
474 dvsscale = DVS_SCALE_ENABLE | (src_w << 16) | src_h;
476 I915_WRITE(DVSSTRIDE(pipe), fb->pitches[0]);
477 I915_WRITE(DVSPOS(pipe), (crtc_y << 16) | crtc_x);
479 linear_offset = y * fb->pitches[0] + x * pixel_size;
481 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
482 pixel_size, fb->pitches[0]);
483 linear_offset -= dvssurf_offset;
485 if (obj->tiling_mode != I915_TILING_NONE)
486 I915_WRITE(DVSTILEOFF(pipe), (y << 16) | x);
488 I915_WRITE(DVSLINOFF(pipe), linear_offset);
490 I915_WRITE(DVSSIZE(pipe), (crtc_h << 16) | crtc_w);
491 I915_WRITE(DVSSCALE(pipe), dvsscale);
492 I915_WRITE(DVSCNTR(pipe), dvscntr);
493 I915_MODIFY_DISPBASE(DVSSURF(pipe),
494 i915_gem_obj_ggtt_offset(obj) + dvssurf_offset);
495 POSTING_READ(DVSSURF(pipe));
499 ilk_disable_plane(struct drm_plane *plane, struct drm_crtc *crtc)
501 struct drm_device *dev = plane->dev;
502 struct drm_i915_private *dev_priv = dev->dev_private;
503 struct intel_plane *intel_plane = to_intel_plane(plane);
504 int pipe = intel_plane->pipe;
506 I915_WRITE(DVSCNTR(pipe), I915_READ(DVSCNTR(pipe)) & ~DVS_ENABLE);
507 /* Disable the scaler */
508 I915_WRITE(DVSSCALE(pipe), 0);
509 /* Flush double buffered register updates */
510 I915_MODIFY_DISPBASE(DVSSURF(pipe), 0);
511 POSTING_READ(DVSSURF(pipe));
513 intel_update_sprite_watermarks(plane, crtc, 0, 0, false, false);
517 intel_enable_primary(struct drm_crtc *crtc)
519 struct drm_device *dev = crtc->dev;
520 struct drm_i915_private *dev_priv = dev->dev_private;
521 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
522 int reg = DSPCNTR(intel_crtc->plane);
524 if (intel_crtc->primary_enabled)
527 intel_crtc->primary_enabled = true;
529 I915_WRITE(reg, I915_READ(reg) | DISPLAY_PLANE_ENABLE);
530 intel_flush_primary_plane(dev_priv, intel_crtc->plane);
533 * FIXME IPS should be fine as long as one plane is
534 * enabled, but in practice it seems to have problems
535 * when going from primary only to sprite only and vice
538 if (intel_crtc->config.ips_enabled) {
539 intel_wait_for_vblank(dev, intel_crtc->pipe);
540 hsw_enable_ips(intel_crtc);
543 mutex_lock(&dev->struct_mutex);
544 intel_update_fbc(dev);
545 mutex_unlock(&dev->struct_mutex);
549 intel_disable_primary(struct drm_crtc *crtc)
551 struct drm_device *dev = crtc->dev;
552 struct drm_i915_private *dev_priv = dev->dev_private;
553 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
554 int reg = DSPCNTR(intel_crtc->plane);
556 if (!intel_crtc->primary_enabled)
559 intel_crtc->primary_enabled = false;
561 mutex_lock(&dev->struct_mutex);
562 if (dev_priv->fbc.plane == intel_crtc->plane)
563 intel_disable_fbc(dev);
564 mutex_unlock(&dev->struct_mutex);
567 * FIXME IPS should be fine as long as one plane is
568 * enabled, but in practice it seems to have problems
569 * when going from primary only to sprite only and vice
572 hsw_disable_ips(intel_crtc);
574 I915_WRITE(reg, I915_READ(reg) & ~DISPLAY_PLANE_ENABLE);
575 intel_flush_primary_plane(dev_priv, intel_crtc->plane);
579 ilk_update_colorkey(struct drm_plane *plane,
580 struct drm_intel_sprite_colorkey *key)
582 struct drm_device *dev = plane->dev;
583 struct drm_i915_private *dev_priv = dev->dev_private;
584 struct intel_plane *intel_plane;
588 intel_plane = to_intel_plane(plane);
590 I915_WRITE(DVSKEYVAL(intel_plane->pipe), key->min_value);
591 I915_WRITE(DVSKEYMAX(intel_plane->pipe), key->max_value);
592 I915_WRITE(DVSKEYMSK(intel_plane->pipe), key->channel_mask);
594 dvscntr = I915_READ(DVSCNTR(intel_plane->pipe));
595 dvscntr &= ~(DVS_SOURCE_KEY | DVS_DEST_KEY);
596 if (key->flags & I915_SET_COLORKEY_DESTINATION)
597 dvscntr |= DVS_DEST_KEY;
598 else if (key->flags & I915_SET_COLORKEY_SOURCE)
599 dvscntr |= DVS_SOURCE_KEY;
600 I915_WRITE(DVSCNTR(intel_plane->pipe), dvscntr);
602 POSTING_READ(DVSKEYMSK(intel_plane->pipe));
608 ilk_get_colorkey(struct drm_plane *plane, struct drm_intel_sprite_colorkey *key)
610 struct drm_device *dev = plane->dev;
611 struct drm_i915_private *dev_priv = dev->dev_private;
612 struct intel_plane *intel_plane;
615 intel_plane = to_intel_plane(plane);
617 key->min_value = I915_READ(DVSKEYVAL(intel_plane->pipe));
618 key->max_value = I915_READ(DVSKEYMAX(intel_plane->pipe));
619 key->channel_mask = I915_READ(DVSKEYMSK(intel_plane->pipe));
622 dvscntr = I915_READ(DVSCNTR(intel_plane->pipe));
624 if (dvscntr & DVS_DEST_KEY)
625 key->flags = I915_SET_COLORKEY_DESTINATION;
626 else if (dvscntr & DVS_SOURCE_KEY)
627 key->flags = I915_SET_COLORKEY_SOURCE;
629 key->flags = I915_SET_COLORKEY_NONE;
633 format_is_yuv(uint32_t format)
636 case DRM_FORMAT_YUYV:
637 case DRM_FORMAT_UYVY:
638 case DRM_FORMAT_VYUY:
639 case DRM_FORMAT_YVYU:
647 intel_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
648 struct drm_framebuffer *fb, int crtc_x, int crtc_y,
649 unsigned int crtc_w, unsigned int crtc_h,
650 uint32_t src_x, uint32_t src_y,
651 uint32_t src_w, uint32_t src_h)
653 struct drm_device *dev = plane->dev;
654 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
655 struct intel_plane *intel_plane = to_intel_plane(plane);
656 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
657 struct drm_i915_gem_object *obj = intel_fb->obj;
658 struct drm_i915_gem_object *old_obj = intel_plane->obj;
660 bool disable_primary = false;
663 int max_scale, min_scale;
664 int pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
665 struct drm_rect src = {
666 /* sample coordinates in 16.16 fixed point */
672 struct drm_rect dst = {
675 .x2 = crtc_x + crtc_w,
677 .y2 = crtc_y + crtc_h,
679 const struct drm_rect clip = {
680 .x2 = intel_crtc->active ? intel_crtc->config.pipe_src_w : 0,
681 .y2 = intel_crtc->active ? intel_crtc->config.pipe_src_h : 0,
685 unsigned int crtc_w, crtc_h;
686 uint32_t src_x, src_y, src_w, src_h;
698 /* Don't modify another pipe's plane */
699 if (intel_plane->pipe != intel_crtc->pipe) {
700 DRM_DEBUG_KMS("Wrong plane <-> crtc mapping\n");
704 /* FIXME check all gen limits */
705 if (fb->width < 3 || fb->height < 3 || fb->pitches[0] > 16384) {
706 DRM_DEBUG_KMS("Unsuitable framebuffer for plane\n");
710 /* Sprite planes can be linear or x-tiled surfaces */
711 switch (obj->tiling_mode) {
712 case I915_TILING_NONE:
716 DRM_DEBUG_KMS("Unsupported tiling mode\n");
721 * FIXME the following code does a bunch of fuzzy adjustments to the
722 * coordinates and sizes. We probably need some way to decide whether
723 * more strict checking should be done instead.
725 max_scale = intel_plane->max_downscale << 16;
726 min_scale = intel_plane->can_scale ? 1 : (1 << 16);
728 hscale = drm_rect_calc_hscale_relaxed(&src, &dst, min_scale, max_scale);
731 vscale = drm_rect_calc_vscale_relaxed(&src, &dst, min_scale, max_scale);
734 visible = drm_rect_clip_scaled(&src, &dst, &clip, hscale, vscale);
738 crtc_w = drm_rect_width(&dst);
739 crtc_h = drm_rect_height(&dst);
742 /* check again in case clipping clamped the results */
743 hscale = drm_rect_calc_hscale(&src, &dst, min_scale, max_scale);
745 DRM_DEBUG_KMS("Horizontal scaling factor out of limits\n");
746 drm_rect_debug_print(&src, true);
747 drm_rect_debug_print(&dst, false);
752 vscale = drm_rect_calc_vscale(&src, &dst, min_scale, max_scale);
754 DRM_DEBUG_KMS("Vertical scaling factor out of limits\n");
755 drm_rect_debug_print(&src, true);
756 drm_rect_debug_print(&dst, false);
761 /* Make the source viewport size an exact multiple of the scaling factors. */
762 drm_rect_adjust_size(&src,
763 drm_rect_width(&dst) * hscale - drm_rect_width(&src),
764 drm_rect_height(&dst) * vscale - drm_rect_height(&src));
766 /* sanity check to make sure the src viewport wasn't enlarged */
767 WARN_ON(src.x1 < (int) src_x ||
768 src.y1 < (int) src_y ||
769 src.x2 > (int) (src_x + src_w) ||
770 src.y2 > (int) (src_y + src_h));
773 * Hardware doesn't handle subpixel coordinates.
774 * Adjust to (macro)pixel boundary, but be careful not to
775 * increase the source viewport size, because that could
776 * push the downscaling factor out of bounds.
778 src_x = src.x1 >> 16;
779 src_w = drm_rect_width(&src) >> 16;
780 src_y = src.y1 >> 16;
781 src_h = drm_rect_height(&src) >> 16;
783 if (format_is_yuv(fb->pixel_format)) {
788 * Must keep src and dst the
789 * same if we can't scale.
791 if (!intel_plane->can_scale)
799 /* Check size restrictions when scaling */
800 if (visible && (src_w != crtc_w || src_h != crtc_h)) {
801 unsigned int width_bytes;
803 WARN_ON(!intel_plane->can_scale);
805 /* FIXME interlacing min height is 6 */
807 if (crtc_w < 3 || crtc_h < 3)
810 if (src_w < 3 || src_h < 3)
813 width_bytes = ((src_x * pixel_size) & 63) + src_w * pixel_size;
815 if (src_w > 2048 || src_h > 2048 ||
816 width_bytes > 4096 || fb->pitches[0] > 4096) {
817 DRM_DEBUG_KMS("Source dimensions exceed hardware limits\n");
823 dst.x2 = crtc_x + crtc_w;
825 dst.y2 = crtc_y + crtc_h;
828 * If the sprite is completely covering the primary plane,
829 * we can disable the primary and save power.
831 disable_primary = drm_rect_equals(&dst, &clip);
832 WARN_ON(disable_primary && !visible && intel_crtc->active);
834 mutex_lock(&dev->struct_mutex);
836 /* Note that this will apply the VT-d workaround for scanouts,
837 * which is more restrictive than required for sprites. (The
838 * primary plane requires 256KiB alignment with 64 PTE padding,
839 * the sprite planes only require 128KiB alignment and 32 PTE padding.
841 ret = intel_pin_and_fence_fb_obj(dev, obj, NULL);
843 mutex_unlock(&dev->struct_mutex);
848 intel_plane->crtc_x = orig.crtc_x;
849 intel_plane->crtc_y = orig.crtc_y;
850 intel_plane->crtc_w = orig.crtc_w;
851 intel_plane->crtc_h = orig.crtc_h;
852 intel_plane->src_x = orig.src_x;
853 intel_plane->src_y = orig.src_y;
854 intel_plane->src_w = orig.src_w;
855 intel_plane->src_h = orig.src_h;
856 intel_plane->obj = obj;
858 if (intel_crtc->active) {
860 * Be sure to re-enable the primary before the sprite is no longer
863 if (!disable_primary)
864 intel_enable_primary(crtc);
867 intel_plane->update_plane(plane, crtc, fb, obj,
868 crtc_x, crtc_y, crtc_w, crtc_h,
869 src_x, src_y, src_w, src_h);
871 intel_plane->disable_plane(plane, crtc);
874 intel_disable_primary(crtc);
877 /* Unpin old obj after new one is active to avoid ugliness */
880 * It's fairly common to simply update the position of
881 * an existing object. In that case, we don't need to
882 * wait for vblank to avoid ugliness, we only need to
883 * do the pin & ref bookkeeping.
885 if (old_obj != obj && intel_crtc->active)
886 intel_wait_for_vblank(dev, intel_crtc->pipe);
888 mutex_lock(&dev->struct_mutex);
889 intel_unpin_fb_obj(old_obj);
890 mutex_unlock(&dev->struct_mutex);
897 intel_disable_plane(struct drm_plane *plane)
899 struct drm_device *dev = plane->dev;
900 struct intel_plane *intel_plane = to_intel_plane(plane);
901 struct intel_crtc *intel_crtc;
906 if (WARN_ON(!plane->crtc))
909 intel_crtc = to_intel_crtc(plane->crtc);
911 if (intel_crtc->active) {
912 intel_enable_primary(plane->crtc);
913 intel_plane->disable_plane(plane, plane->crtc);
916 if (intel_plane->obj) {
917 if (intel_crtc->active)
918 intel_wait_for_vblank(dev, intel_plane->pipe);
920 mutex_lock(&dev->struct_mutex);
921 intel_unpin_fb_obj(intel_plane->obj);
922 mutex_unlock(&dev->struct_mutex);
924 intel_plane->obj = NULL;
930 static void intel_destroy_plane(struct drm_plane *plane)
932 struct intel_plane *intel_plane = to_intel_plane(plane);
933 intel_disable_plane(plane);
934 drm_plane_cleanup(plane);
938 int intel_sprite_set_colorkey(struct drm_device *dev, void *data,
939 struct drm_file *file_priv)
941 struct drm_intel_sprite_colorkey *set = data;
942 struct drm_mode_object *obj;
943 struct drm_plane *plane;
944 struct intel_plane *intel_plane;
947 if (!drm_core_check_feature(dev, DRIVER_MODESET))
950 /* Make sure we don't try to enable both src & dest simultaneously */
951 if ((set->flags & (I915_SET_COLORKEY_DESTINATION | I915_SET_COLORKEY_SOURCE)) == (I915_SET_COLORKEY_DESTINATION | I915_SET_COLORKEY_SOURCE))
954 drm_modeset_lock_all(dev);
956 obj = drm_mode_object_find(dev, set->plane_id, DRM_MODE_OBJECT_PLANE);
962 plane = obj_to_plane(obj);
963 intel_plane = to_intel_plane(plane);
964 ret = intel_plane->update_colorkey(plane, set);
967 drm_modeset_unlock_all(dev);
971 int intel_sprite_get_colorkey(struct drm_device *dev, void *data,
972 struct drm_file *file_priv)
974 struct drm_intel_sprite_colorkey *get = data;
975 struct drm_mode_object *obj;
976 struct drm_plane *plane;
977 struct intel_plane *intel_plane;
980 if (!drm_core_check_feature(dev, DRIVER_MODESET))
983 drm_modeset_lock_all(dev);
985 obj = drm_mode_object_find(dev, get->plane_id, DRM_MODE_OBJECT_PLANE);
991 plane = obj_to_plane(obj);
992 intel_plane = to_intel_plane(plane);
993 intel_plane->get_colorkey(plane, get);
996 drm_modeset_unlock_all(dev);
1000 void intel_plane_restore(struct drm_plane *plane)
1002 struct intel_plane *intel_plane = to_intel_plane(plane);
1004 if (!plane->crtc || !plane->fb)
1007 intel_update_plane(plane, plane->crtc, plane->fb,
1008 intel_plane->crtc_x, intel_plane->crtc_y,
1009 intel_plane->crtc_w, intel_plane->crtc_h,
1010 intel_plane->src_x, intel_plane->src_y,
1011 intel_plane->src_w, intel_plane->src_h);
1014 void intel_plane_disable(struct drm_plane *plane)
1016 if (!plane->crtc || !plane->fb)
1019 intel_disable_plane(plane);
1022 static const struct drm_plane_funcs intel_plane_funcs = {
1023 .update_plane = intel_update_plane,
1024 .disable_plane = intel_disable_plane,
1025 .destroy = intel_destroy_plane,
1028 static uint32_t ilk_plane_formats[] = {
1029 DRM_FORMAT_XRGB8888,
1036 static uint32_t snb_plane_formats[] = {
1037 DRM_FORMAT_XBGR8888,
1038 DRM_FORMAT_XRGB8888,
1045 static uint32_t vlv_plane_formats[] = {
1047 DRM_FORMAT_ABGR8888,
1048 DRM_FORMAT_ARGB8888,
1049 DRM_FORMAT_XBGR8888,
1050 DRM_FORMAT_XRGB8888,
1051 DRM_FORMAT_XBGR2101010,
1052 DRM_FORMAT_ABGR2101010,
1060 intel_plane_init(struct drm_device *dev, enum pipe pipe, int plane)
1062 struct intel_plane *intel_plane;
1063 unsigned long possible_crtcs;
1064 const uint32_t *plane_formats;
1065 int num_plane_formats;
1068 if (INTEL_INFO(dev)->gen < 5)
1071 intel_plane = kzalloc(sizeof(*intel_plane), GFP_KERNEL);
1075 switch (INTEL_INFO(dev)->gen) {
1078 intel_plane->can_scale = true;
1079 intel_plane->max_downscale = 16;
1080 intel_plane->update_plane = ilk_update_plane;
1081 intel_plane->disable_plane = ilk_disable_plane;
1082 intel_plane->update_colorkey = ilk_update_colorkey;
1083 intel_plane->get_colorkey = ilk_get_colorkey;
1086 plane_formats = snb_plane_formats;
1087 num_plane_formats = ARRAY_SIZE(snb_plane_formats);
1089 plane_formats = ilk_plane_formats;
1090 num_plane_formats = ARRAY_SIZE(ilk_plane_formats);
1096 if (IS_IVYBRIDGE(dev)) {
1097 intel_plane->can_scale = true;
1098 intel_plane->max_downscale = 2;
1100 intel_plane->can_scale = false;
1101 intel_plane->max_downscale = 1;
1104 if (IS_VALLEYVIEW(dev)) {
1105 intel_plane->update_plane = vlv_update_plane;
1106 intel_plane->disable_plane = vlv_disable_plane;
1107 intel_plane->update_colorkey = vlv_update_colorkey;
1108 intel_plane->get_colorkey = vlv_get_colorkey;
1110 plane_formats = vlv_plane_formats;
1111 num_plane_formats = ARRAY_SIZE(vlv_plane_formats);
1113 intel_plane->update_plane = ivb_update_plane;
1114 intel_plane->disable_plane = ivb_disable_plane;
1115 intel_plane->update_colorkey = ivb_update_colorkey;
1116 intel_plane->get_colorkey = ivb_get_colorkey;
1118 plane_formats = snb_plane_formats;
1119 num_plane_formats = ARRAY_SIZE(snb_plane_formats);
1128 intel_plane->pipe = pipe;
1129 intel_plane->plane = plane;
1130 possible_crtcs = (1 << pipe);
1131 ret = drm_plane_init(dev, &intel_plane->base, possible_crtcs,
1133 plane_formats, num_plane_formats,