blob: 0f8187a121829cad929aa6db513f607ca2045408 [file] [log] [blame]
Daniel Vetter02e792f2009-09-15 22:57:34 +02001/*
2 * Copyright © 2009
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 * Daniel Vetter <daniel@ffwll.ch>
25 *
26 * Derived from Xorg ddx, xf86-video-intel, src/i830_video.c
27 */
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
29#include <drm/i915_drm.h>
Daniel Vetter02e792f2009-09-15 22:57:34 +020030#include "i915_drv.h"
31#include "i915_reg.h"
32#include "intel_drv.h"
33
34/* Limits for overlay size. According to intel doc, the real limits are:
35 * Y width: 4095, UV width (planar): 2047, Y height: 2047,
36 * UV width (planar): * 1023. But the xorg thinks 2048 for height and width. Use
37 * the mininum of both. */
38#define IMAGE_MAX_WIDTH 2048
39#define IMAGE_MAX_HEIGHT 2046 /* 2 * 1023 */
40/* on 830 and 845 these large limits result in the card hanging */
41#define IMAGE_MAX_WIDTH_LEGACY 1024
42#define IMAGE_MAX_HEIGHT_LEGACY 1088
43
44/* overlay register definitions */
45/* OCMD register */
46#define OCMD_TILED_SURFACE (0x1<<19)
47#define OCMD_MIRROR_MASK (0x3<<17)
48#define OCMD_MIRROR_MODE (0x3<<17)
49#define OCMD_MIRROR_HORIZONTAL (0x1<<17)
50#define OCMD_MIRROR_VERTICAL (0x2<<17)
51#define OCMD_MIRROR_BOTH (0x3<<17)
52#define OCMD_BYTEORDER_MASK (0x3<<14) /* zero for YUYV or FOURCC YUY2 */
53#define OCMD_UV_SWAP (0x1<<14) /* YVYU */
54#define OCMD_Y_SWAP (0x2<<14) /* UYVY or FOURCC UYVY */
55#define OCMD_Y_AND_UV_SWAP (0x3<<14) /* VYUY */
56#define OCMD_SOURCE_FORMAT_MASK (0xf<<10)
57#define OCMD_RGB_888 (0x1<<10) /* not in i965 Intel docs */
58#define OCMD_RGB_555 (0x2<<10) /* not in i965 Intel docs */
59#define OCMD_RGB_565 (0x3<<10) /* not in i965 Intel docs */
60#define OCMD_YUV_422_PACKED (0x8<<10)
61#define OCMD_YUV_411_PACKED (0x9<<10) /* not in i965 Intel docs */
62#define OCMD_YUV_420_PLANAR (0xc<<10)
63#define OCMD_YUV_422_PLANAR (0xd<<10)
64#define OCMD_YUV_410_PLANAR (0xe<<10) /* also 411 */
65#define OCMD_TVSYNCFLIP_PARITY (0x1<<9)
66#define OCMD_TVSYNCFLIP_ENABLE (0x1<<7)
Chris Wilsond7961362010-07-13 13:52:17 +010067#define OCMD_BUF_TYPE_MASK (0x1<<5)
Daniel Vetter02e792f2009-09-15 22:57:34 +020068#define OCMD_BUF_TYPE_FRAME (0x0<<5)
69#define OCMD_BUF_TYPE_FIELD (0x1<<5)
70#define OCMD_TEST_MODE (0x1<<4)
71#define OCMD_BUFFER_SELECT (0x3<<2)
72#define OCMD_BUFFER0 (0x0<<2)
73#define OCMD_BUFFER1 (0x1<<2)
74#define OCMD_FIELD_SELECT (0x1<<2)
75#define OCMD_FIELD0 (0x0<<1)
76#define OCMD_FIELD1 (0x1<<1)
77#define OCMD_ENABLE (0x1<<0)
78
79/* OCONFIG register */
80#define OCONF_PIPE_MASK (0x1<<18)
81#define OCONF_PIPE_A (0x0<<18)
82#define OCONF_PIPE_B (0x1<<18)
83#define OCONF_GAMMA2_ENABLE (0x1<<16)
84#define OCONF_CSC_MODE_BT601 (0x0<<5)
85#define OCONF_CSC_MODE_BT709 (0x1<<5)
86#define OCONF_CSC_BYPASS (0x1<<4)
87#define OCONF_CC_OUT_8BIT (0x1<<3)
88#define OCONF_TEST_MODE (0x1<<2)
89#define OCONF_THREE_LINE_BUFFER (0x1<<0)
90#define OCONF_TWO_LINE_BUFFER (0x0<<0)
91
92/* DCLRKM (dst-key) register */
93#define DST_KEY_ENABLE (0x1<<31)
94#define CLK_RGB24_MASK 0x0
95#define CLK_RGB16_MASK 0x070307
96#define CLK_RGB15_MASK 0x070707
97#define CLK_RGB8I_MASK 0xffffff
98
99#define RGB16_TO_COLORKEY(c) \
100 (((c & 0xF800) << 8) | ((c & 0x07E0) << 5) | ((c & 0x001F) << 3))
101#define RGB15_TO_COLORKEY(c) \
102 (((c & 0x7c00) << 9) | ((c & 0x03E0) << 6) | ((c & 0x001F) << 3))
103
104/* overlay flip addr flag */
105#define OFC_UPDATE 0x1
106
107/* polyphase filter coefficients */
108#define N_HORIZ_Y_TAPS 5
109#define N_VERT_Y_TAPS 3
110#define N_HORIZ_UV_TAPS 3
111#define N_VERT_UV_TAPS 3
112#define N_PHASES 17
113#define MAX_TAPS 5
114
115/* memory bufferd overlay registers */
116struct overlay_registers {
Akshay Joshi0206e352011-08-16 15:34:10 -0400117 u32 OBUF_0Y;
118 u32 OBUF_1Y;
119 u32 OBUF_0U;
120 u32 OBUF_0V;
121 u32 OBUF_1U;
122 u32 OBUF_1V;
123 u32 OSTRIDE;
124 u32 YRGB_VPH;
125 u32 UV_VPH;
126 u32 HORZ_PH;
127 u32 INIT_PHS;
128 u32 DWINPOS;
129 u32 DWINSZ;
130 u32 SWIDTH;
131 u32 SWIDTHSW;
132 u32 SHEIGHT;
133 u32 YRGBSCALE;
134 u32 UVSCALE;
135 u32 OCLRC0;
136 u32 OCLRC1;
137 u32 DCLRKV;
138 u32 DCLRKM;
139 u32 SCLRKVH;
140 u32 SCLRKVL;
141 u32 SCLRKEN;
142 u32 OCONFIG;
143 u32 OCMD;
144 u32 RESERVED1; /* 0x6C */
145 u32 OSTART_0Y;
146 u32 OSTART_1Y;
147 u32 OSTART_0U;
148 u32 OSTART_0V;
149 u32 OSTART_1U;
150 u32 OSTART_1V;
151 u32 OTILEOFF_0Y;
152 u32 OTILEOFF_1Y;
153 u32 OTILEOFF_0U;
154 u32 OTILEOFF_0V;
155 u32 OTILEOFF_1U;
156 u32 OTILEOFF_1V;
157 u32 FASTHSCALE; /* 0xA0 */
158 u32 UVSCALEV; /* 0xA4 */
159 u32 RESERVEDC[(0x200 - 0xA8) / 4]; /* 0xA8 - 0x1FC */
160 u16 Y_VCOEFS[N_VERT_Y_TAPS * N_PHASES]; /* 0x200 */
161 u16 RESERVEDD[0x100 / 2 - N_VERT_Y_TAPS * N_PHASES];
162 u16 Y_HCOEFS[N_HORIZ_Y_TAPS * N_PHASES]; /* 0x300 */
163 u16 RESERVEDE[0x200 / 2 - N_HORIZ_Y_TAPS * N_PHASES];
164 u16 UV_VCOEFS[N_VERT_UV_TAPS * N_PHASES]; /* 0x500 */
165 u16 RESERVEDF[0x100 / 2 - N_VERT_UV_TAPS * N_PHASES];
166 u16 UV_HCOEFS[N_HORIZ_UV_TAPS * N_PHASES]; /* 0x600 */
167 u16 RESERVEDG[0x100 / 2 - N_HORIZ_UV_TAPS * N_PHASES];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200168};
169
Chris Wilson23f09ce2010-08-12 13:53:37 +0100170struct intel_overlay {
171 struct drm_device *dev;
172 struct intel_crtc *crtc;
173 struct drm_i915_gem_object *vid_bo;
174 struct drm_i915_gem_object *old_vid_bo;
Ville Syrjälä209c2a52015-03-31 10:37:23 +0300175 bool active;
176 bool pfit_active;
Chris Wilson23f09ce2010-08-12 13:53:37 +0100177 u32 pfit_vscale_ratio; /* shifted-point number, (1<<12) == 1.0 */
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100178 u32 color_key:24;
179 u32 color_key_enabled:1;
Chris Wilson23f09ce2010-08-12 13:53:37 +0100180 u32 brightness, contrast, saturation;
181 u32 old_xscale, old_yscale;
182 /* register access */
183 u32 flip_addr;
184 struct drm_i915_gem_object *reg_bo;
185 /* flip handling */
John Harrison9bfc01a2014-11-24 18:49:31 +0000186 struct drm_i915_gem_request *last_flip_req;
Chris Wilsonb303cf92010-08-12 14:03:48 +0100187 void (*flip_tail)(struct intel_overlay *);
Chris Wilson23f09ce2010-08-12 13:53:37 +0100188};
Daniel Vetter02e792f2009-09-15 22:57:34 +0200189
Ben Widawsky75020bc2012-04-16 14:07:43 -0700190static struct overlay_registers __iomem *
Chris Wilson8d74f652010-08-12 10:35:26 +0100191intel_overlay_map_regs(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200192{
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300193 struct drm_i915_private *dev_priv = overlay->dev->dev_private;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700194 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200195
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100196 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Chris Wilson00731152014-05-21 12:42:56 +0100197 regs = (struct overlay_registers __iomem *)overlay->reg_bo->phys_handle->vaddr;
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100198 else
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800199 regs = io_mapping_map_wc(dev_priv->gtt.mappable,
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700200 i915_gem_obj_ggtt_offset(overlay->reg_bo));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200201
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100202 return regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200203}
204
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100205static void intel_overlay_unmap_regs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700206 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200207{
Chris Wilson8d74f652010-08-12 10:35:26 +0100208 if (!OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100209 io_mapping_unmap(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200210}
Daniel Vetter02e792f2009-09-15 22:57:34 +0200211
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100212static int intel_overlay_do_wait_request(struct intel_overlay *overlay,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100213 void (*tail)(struct intel_overlay *))
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100214{
215 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300216 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100217 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100218 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200219
Ville Syrjälä77589f52015-03-31 10:37:22 +0300220 WARN_ON(overlay->last_flip_req);
John Harrison9bfc01a2014-11-24 18:49:31 +0000221 i915_gem_request_assign(&overlay->last_flip_req,
222 ring->outstanding_lazy_request);
John Harrisonbf7dc5b2015-05-29 17:43:24 +0100223 i915_add_request(ring);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100224
Chris Wilsonb303cf92010-08-12 14:03:48 +0100225 overlay->flip_tail = tail;
Daniel Vettera4b3a572014-11-26 14:17:05 +0100226 ret = i915_wait_request(overlay->last_flip_req);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100227 if (ret)
228 return ret;
229
John Harrison9bfc01a2014-11-24 18:49:31 +0000230 i915_gem_request_assign(&overlay->last_flip_req, NULL);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100231 return 0;
232}
233
Daniel Vetter02e792f2009-09-15 22:57:34 +0200234/* overlay needs to be disable in OCMD reg */
235static int intel_overlay_on(struct intel_overlay *overlay)
236{
237 struct drm_device *dev = overlay->dev;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100238 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100239 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200240 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200241
Ville Syrjälä77589f52015-03-31 10:37:22 +0300242 WARN_ON(overlay->active);
Daniel Vetter6306cb42012-08-12 19:27:10 +0200243 WARN_ON(IS_I830(dev) && !(dev_priv->quirks & QUIRK_PIPEA_FORCE));
Chris Wilson106dada2010-07-16 17:13:01 +0100244
Daniel Vetter6d90c952012-04-26 23:28:05 +0200245 ret = intel_ring_begin(ring, 4);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100246 if (ret)
247 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100248
Ville Syrjälä1c7c4302015-03-31 10:37:24 +0300249 overlay->active = true;
250
Daniel Vetter6d90c952012-04-26 23:28:05 +0200251 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_ON);
252 intel_ring_emit(ring, overlay->flip_addr | OFC_UPDATE);
253 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
254 intel_ring_emit(ring, MI_NOOP);
255 intel_ring_advance(ring);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200256
Chris Wilsonacb868d2012-09-26 13:47:30 +0100257 return intel_overlay_do_wait_request(overlay, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200258}
259
260/* overlay needs to be enabled in OCMD reg */
Chris Wilson8dc5d142010-08-12 12:36:12 +0100261static int intel_overlay_continue(struct intel_overlay *overlay,
262 bool load_polyphase_filter)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200263{
264 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300265 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100266 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200267 u32 flip_addr = overlay->flip_addr;
268 u32 tmp;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100269 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200270
Ville Syrjälä77589f52015-03-31 10:37:22 +0300271 WARN_ON(!overlay->active);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200272
273 if (load_polyphase_filter)
274 flip_addr |= OFC_UPDATE;
275
276 /* check for underruns */
277 tmp = I915_READ(DOVSTA);
278 if (tmp & (1 << 17))
279 DRM_DEBUG("overlay underrun, DOVSTA: %x\n", tmp);
280
Daniel Vetter6d90c952012-04-26 23:28:05 +0200281 ret = intel_ring_begin(ring, 2);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100282 if (ret)
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100283 return ret;
Chris Wilsonacb868d2012-09-26 13:47:30 +0100284
Daniel Vetter6d90c952012-04-26 23:28:05 +0200285 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
286 intel_ring_emit(ring, flip_addr);
287 intel_ring_advance(ring);
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200288
John Harrison9bfc01a2014-11-24 18:49:31 +0000289 WARN_ON(overlay->last_flip_req);
290 i915_gem_request_assign(&overlay->last_flip_req,
291 ring->outstanding_lazy_request);
John Harrisonbf7dc5b2015-05-29 17:43:24 +0100292 i915_add_request(ring);
293
294 return 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200295}
296
Chris Wilsonb303cf92010-08-12 14:03:48 +0100297static void intel_overlay_release_old_vid_tail(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200298{
Chris Wilson05394f32010-11-08 19:18:58 +0000299 struct drm_i915_gem_object *obj = overlay->old_vid_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200300
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800301 i915_gem_object_ggtt_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000302 drm_gem_object_unreference(&obj->base);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200303
Chris Wilsonb303cf92010-08-12 14:03:48 +0100304 overlay->old_vid_bo = NULL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200305}
306
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200307static void intel_overlay_off_tail(struct intel_overlay *overlay)
308{
Chris Wilson05394f32010-11-08 19:18:58 +0000309 struct drm_i915_gem_object *obj = overlay->vid_bo;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200310
311 /* never have the overlay hw on without showing a frame */
Ville Syrjälä77589f52015-03-31 10:37:22 +0300312 if (WARN_ON(!obj))
313 return;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200314
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800315 i915_gem_object_ggtt_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000316 drm_gem_object_unreference(&obj->base);
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200317 overlay->vid_bo = NULL;
318
319 overlay->crtc->overlay = NULL;
320 overlay->crtc = NULL;
Ville Syrjälä209c2a52015-03-31 10:37:23 +0300321 overlay->active = false;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200322}
323
Daniel Vetter02e792f2009-09-15 22:57:34 +0200324/* overlay needs to be disabled in OCMD reg */
Chris Wilsonce453d82011-02-21 14:43:56 +0000325static int intel_overlay_off(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200326{
327 struct drm_device *dev = overlay->dev;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100328 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100329 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Chris Wilson8dc5d142010-08-12 12:36:12 +0100330 u32 flip_addr = overlay->flip_addr;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100331 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200332
Ville Syrjälä77589f52015-03-31 10:37:22 +0300333 WARN_ON(!overlay->active);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200334
335 /* According to intel docs the overlay hw may hang (when switching
336 * off) without loading the filter coeffs. It is however unclear whether
337 * this applies to the disabling of the overlay or to the switching off
338 * of the hw. Do it in both cases */
339 flip_addr |= OFC_UPDATE;
340
Daniel Vetter6d90c952012-04-26 23:28:05 +0200341 ret = intel_ring_begin(ring, 6);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100342 if (ret)
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100343 return ret;
Chris Wilsonacb868d2012-09-26 13:47:30 +0100344
Daniel Vetter02e792f2009-09-15 22:57:34 +0200345 /* wait for overlay to go idle */
Daniel Vetter6d90c952012-04-26 23:28:05 +0200346 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
347 intel_ring_emit(ring, flip_addr);
348 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Chris Wilson722506f2010-08-12 09:28:50 +0100349 /* turn overlay off */
Daniel Vettera9193982012-10-22 12:55:55 +0200350 if (IS_I830(dev)) {
351 /* Workaround: Don't disable the overlay fully, since otherwise
352 * it dies on the next OVERLAY_ON cmd. */
353 intel_ring_emit(ring, MI_NOOP);
354 intel_ring_emit(ring, MI_NOOP);
355 intel_ring_emit(ring, MI_NOOP);
356 } else {
357 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_OFF);
358 intel_ring_emit(ring, flip_addr);
359 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
360 }
Daniel Vetter6d90c952012-04-26 23:28:05 +0200361 intel_ring_advance(ring);
Chris Wilson722506f2010-08-12 09:28:50 +0100362
Chris Wilsonacb868d2012-09-26 13:47:30 +0100363 return intel_overlay_do_wait_request(overlay, intel_overlay_off_tail);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200364}
365
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200366/* recover from an interruption due to a signal
367 * We have to be careful not to repeat work forever an make forward progess. */
Chris Wilsonce453d82011-02-21 14:43:56 +0000368static int intel_overlay_recover_from_interrupt(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200369{
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200370 int ret;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200371
John Harrison9bfc01a2014-11-24 18:49:31 +0000372 if (overlay->last_flip_req == NULL)
Chris Wilsonb303cf92010-08-12 14:03:48 +0100373 return 0;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200374
Daniel Vettera4b3a572014-11-26 14:17:05 +0100375 ret = i915_wait_request(overlay->last_flip_req);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100376 if (ret)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200377 return ret;
378
Chris Wilsonb303cf92010-08-12 14:03:48 +0100379 if (overlay->flip_tail)
380 overlay->flip_tail(overlay);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200381
John Harrison9bfc01a2014-11-24 18:49:31 +0000382 i915_gem_request_assign(&overlay->last_flip_req, NULL);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200383 return 0;
384}
385
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200386/* Wait for pending overlay flip and release old frame.
387 * Needs to be called before the overlay register are changed
Chris Wilson8d74f652010-08-12 10:35:26 +0100388 * via intel_overlay_(un)map_regs
389 */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200390static int intel_overlay_release_old_vid(struct intel_overlay *overlay)
391{
Chris Wilson5cd68c92010-08-12 12:21:54 +0100392 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300393 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100394 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200395 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200396
Ville Syrjälä1362b772014-11-26 17:07:29 +0200397 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
398
Chris Wilson5cd68c92010-08-12 12:21:54 +0100399 /* Only wait if there is actually an old frame to release to
400 * guarantee forward progress.
401 */
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200402 if (!overlay->old_vid_bo)
403 return 0;
404
Chris Wilson5cd68c92010-08-12 12:21:54 +0100405 if (I915_READ(ISR) & I915_OVERLAY_PLANE_FLIP_PENDING_INTERRUPT) {
406 /* synchronous slowpath */
Daniel Vetter6d90c952012-04-26 23:28:05 +0200407 ret = intel_ring_begin(ring, 2);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100408 if (ret)
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100409 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100410
Daniel Vetter6d90c952012-04-26 23:28:05 +0200411 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
412 intel_ring_emit(ring, MI_NOOP);
413 intel_ring_advance(ring);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200414
Chris Wilsonacb868d2012-09-26 13:47:30 +0100415 ret = intel_overlay_do_wait_request(overlay,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100416 intel_overlay_release_old_vid_tail);
Chris Wilson5cd68c92010-08-12 12:21:54 +0100417 if (ret)
418 return ret;
419 }
Daniel Vetter02e792f2009-09-15 22:57:34 +0200420
Chris Wilson5cd68c92010-08-12 12:21:54 +0100421 intel_overlay_release_old_vid_tail(overlay);
Daniel Vettera071fa02014-06-18 23:28:09 +0200422
423
424 i915_gem_track_fb(overlay->old_vid_bo, NULL,
425 INTEL_FRONTBUFFER_OVERLAY(overlay->crtc->pipe));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200426 return 0;
427}
428
Ville Syrjälä1362b772014-11-26 17:07:29 +0200429void intel_overlay_reset(struct drm_i915_private *dev_priv)
430{
431 struct intel_overlay *overlay = dev_priv->overlay;
432
433 if (!overlay)
434 return;
435
436 intel_overlay_release_old_vid(overlay);
437
438 overlay->last_flip_req = NULL;
439 overlay->old_xscale = 0;
440 overlay->old_yscale = 0;
441 overlay->crtc = NULL;
442 overlay->active = false;
443}
444
Daniel Vetter02e792f2009-09-15 22:57:34 +0200445struct put_image_params {
446 int format;
447 short dst_x;
448 short dst_y;
449 short dst_w;
450 short dst_h;
451 short src_w;
452 short src_scan_h;
453 short src_scan_w;
454 short src_h;
455 short stride_Y;
456 short stride_UV;
457 int offset_Y;
458 int offset_U;
459 int offset_V;
460};
461
462static int packed_depth_bytes(u32 format)
463{
464 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100465 case I915_OVERLAY_YUV422:
466 return 4;
467 case I915_OVERLAY_YUV411:
468 /* return 6; not implemented */
469 default:
470 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200471 }
472}
473
474static int packed_width_bytes(u32 format, short width)
475{
476 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100477 case I915_OVERLAY_YUV422:
478 return width << 1;
479 default:
480 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200481 }
482}
483
484static int uv_hsubsampling(u32 format)
485{
486 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100487 case I915_OVERLAY_YUV422:
488 case I915_OVERLAY_YUV420:
489 return 2;
490 case I915_OVERLAY_YUV411:
491 case I915_OVERLAY_YUV410:
492 return 4;
493 default:
494 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200495 }
496}
497
498static int uv_vsubsampling(u32 format)
499{
500 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100501 case I915_OVERLAY_YUV420:
502 case I915_OVERLAY_YUV410:
503 return 2;
504 case I915_OVERLAY_YUV422:
505 case I915_OVERLAY_YUV411:
506 return 1;
507 default:
508 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200509 }
510}
511
512static u32 calc_swidthsw(struct drm_device *dev, u32 offset, u32 width)
513{
514 u32 mask, shift, ret;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100515 if (IS_GEN2(dev)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +0200516 mask = 0x1f;
517 shift = 5;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100518 } else {
519 mask = 0x3f;
520 shift = 6;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200521 }
522 ret = ((offset + width + mask) >> shift) - (offset >> shift);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100523 if (!IS_GEN2(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +0200524 ret <<= 1;
Akshay Joshi0206e352011-08-16 15:34:10 -0400525 ret -= 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200526 return ret << 2;
527}
528
529static const u16 y_static_hcoeffs[N_HORIZ_Y_TAPS * N_PHASES] = {
530 0x3000, 0xb4a0, 0x1930, 0x1920, 0xb4a0,
531 0x3000, 0xb500, 0x19d0, 0x1880, 0xb440,
532 0x3000, 0xb540, 0x1a88, 0x2f80, 0xb3e0,
533 0x3000, 0xb580, 0x1b30, 0x2e20, 0xb380,
534 0x3000, 0xb5c0, 0x1bd8, 0x2cc0, 0xb320,
535 0x3020, 0xb5e0, 0x1c60, 0x2b80, 0xb2c0,
536 0x3020, 0xb5e0, 0x1cf8, 0x2a20, 0xb260,
537 0x3020, 0xb5e0, 0x1d80, 0x28e0, 0xb200,
538 0x3020, 0xb5c0, 0x1e08, 0x3f40, 0xb1c0,
539 0x3020, 0xb580, 0x1e78, 0x3ce0, 0xb160,
540 0x3040, 0xb520, 0x1ed8, 0x3aa0, 0xb120,
541 0x3040, 0xb4a0, 0x1f30, 0x3880, 0xb0e0,
542 0x3040, 0xb400, 0x1f78, 0x3680, 0xb0a0,
543 0x3020, 0xb340, 0x1fb8, 0x34a0, 0xb060,
544 0x3020, 0xb240, 0x1fe0, 0x32e0, 0xb040,
545 0x3020, 0xb140, 0x1ff8, 0x3160, 0xb020,
Chris Wilson722506f2010-08-12 09:28:50 +0100546 0xb000, 0x3000, 0x0800, 0x3000, 0xb000
547};
548
Daniel Vetter02e792f2009-09-15 22:57:34 +0200549static const u16 uv_static_hcoeffs[N_HORIZ_UV_TAPS * N_PHASES] = {
550 0x3000, 0x1800, 0x1800, 0xb000, 0x18d0, 0x2e60,
551 0xb000, 0x1990, 0x2ce0, 0xb020, 0x1a68, 0x2b40,
552 0xb040, 0x1b20, 0x29e0, 0xb060, 0x1bd8, 0x2880,
553 0xb080, 0x1c88, 0x3e60, 0xb0a0, 0x1d28, 0x3c00,
554 0xb0c0, 0x1db8, 0x39e0, 0xb0e0, 0x1e40, 0x37e0,
555 0xb100, 0x1eb8, 0x3620, 0xb100, 0x1f18, 0x34a0,
556 0xb100, 0x1f68, 0x3360, 0xb0e0, 0x1fa8, 0x3240,
557 0xb0c0, 0x1fe0, 0x3140, 0xb060, 0x1ff0, 0x30a0,
Chris Wilson722506f2010-08-12 09:28:50 +0100558 0x3000, 0x0800, 0x3000
559};
Daniel Vetter02e792f2009-09-15 22:57:34 +0200560
Ben Widawsky75020bc2012-04-16 14:07:43 -0700561static void update_polyphase_filter(struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200562{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700563 memcpy_toio(regs->Y_HCOEFS, y_static_hcoeffs, sizeof(y_static_hcoeffs));
564 memcpy_toio(regs->UV_HCOEFS, uv_static_hcoeffs,
565 sizeof(uv_static_hcoeffs));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200566}
567
568static bool update_scaling_factors(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700569 struct overlay_registers __iomem *regs,
Daniel Vetter02e792f2009-09-15 22:57:34 +0200570 struct put_image_params *params)
571{
572 /* fixed point with a 12 bit shift */
573 u32 xscale, yscale, xscale_UV, yscale_UV;
574#define FP_SHIFT 12
575#define FRACT_MASK 0xfff
576 bool scale_changed = false;
577 int uv_hscale = uv_hsubsampling(params->format);
578 int uv_vscale = uv_vsubsampling(params->format);
579
580 if (params->dst_w > 1)
581 xscale = ((params->src_scan_w - 1) << FP_SHIFT)
582 /(params->dst_w);
583 else
584 xscale = 1 << FP_SHIFT;
585
586 if (params->dst_h > 1)
587 yscale = ((params->src_scan_h - 1) << FP_SHIFT)
588 /(params->dst_h);
589 else
590 yscale = 1 << FP_SHIFT;
591
592 /*if (params->format & I915_OVERLAY_YUV_PLANAR) {*/
Chris Wilson722506f2010-08-12 09:28:50 +0100593 xscale_UV = xscale/uv_hscale;
594 yscale_UV = yscale/uv_vscale;
595 /* make the Y scale to UV scale ratio an exact multiply */
596 xscale = xscale_UV * uv_hscale;
597 yscale = yscale_UV * uv_vscale;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200598 /*} else {
Chris Wilson722506f2010-08-12 09:28:50 +0100599 xscale_UV = 0;
600 yscale_UV = 0;
601 }*/
Daniel Vetter02e792f2009-09-15 22:57:34 +0200602
603 if (xscale != overlay->old_xscale || yscale != overlay->old_yscale)
604 scale_changed = true;
605 overlay->old_xscale = xscale;
606 overlay->old_yscale = yscale;
607
Ben Widawsky75020bc2012-04-16 14:07:43 -0700608 iowrite32(((yscale & FRACT_MASK) << 20) |
609 ((xscale >> FP_SHIFT) << 16) |
610 ((xscale & FRACT_MASK) << 3),
611 &regs->YRGBSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100612
Ben Widawsky75020bc2012-04-16 14:07:43 -0700613 iowrite32(((yscale_UV & FRACT_MASK) << 20) |
614 ((xscale_UV >> FP_SHIFT) << 16) |
615 ((xscale_UV & FRACT_MASK) << 3),
616 &regs->UVSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100617
Ben Widawsky75020bc2012-04-16 14:07:43 -0700618 iowrite32((((yscale >> FP_SHIFT) << 16) |
619 ((yscale_UV >> FP_SHIFT) << 0)),
620 &regs->UVSCALEV);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200621
622 if (scale_changed)
623 update_polyphase_filter(regs);
624
625 return scale_changed;
626}
627
628static void update_colorkey(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700629 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200630{
631 u32 key = overlay->color_key;
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100632 u32 flags;
633
634 flags = 0;
635 if (overlay->color_key_enabled)
636 flags |= DST_KEY_ENABLE;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100637
Matt Roperf4510a22014-04-01 15:22:40 -0700638 switch (overlay->crtc->base.primary->fb->bits_per_pixel) {
Chris Wilson722506f2010-08-12 09:28:50 +0100639 case 8:
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100640 key = 0;
641 flags |= CLK_RGB8I_MASK;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100642 break;
643
Chris Wilson722506f2010-08-12 09:28:50 +0100644 case 16:
Matt Roperf4510a22014-04-01 15:22:40 -0700645 if (overlay->crtc->base.primary->fb->depth == 15) {
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100646 key = RGB15_TO_COLORKEY(key);
647 flags |= CLK_RGB15_MASK;
Chris Wilson722506f2010-08-12 09:28:50 +0100648 } else {
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100649 key = RGB16_TO_COLORKEY(key);
650 flags |= CLK_RGB16_MASK;
Chris Wilson722506f2010-08-12 09:28:50 +0100651 }
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100652 break;
653
Chris Wilson722506f2010-08-12 09:28:50 +0100654 case 24:
655 case 32:
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100656 flags |= CLK_RGB24_MASK;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100657 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200658 }
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100659
660 iowrite32(key, &regs->DCLRKV);
661 iowrite32(flags, &regs->DCLRKM);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200662}
663
664static u32 overlay_cmd_reg(struct put_image_params *params)
665{
666 u32 cmd = OCMD_ENABLE | OCMD_BUF_TYPE_FRAME | OCMD_BUFFER0;
667
668 if (params->format & I915_OVERLAY_YUV_PLANAR) {
669 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100670 case I915_OVERLAY_YUV422:
671 cmd |= OCMD_YUV_422_PLANAR;
672 break;
673 case I915_OVERLAY_YUV420:
674 cmd |= OCMD_YUV_420_PLANAR;
675 break;
676 case I915_OVERLAY_YUV411:
677 case I915_OVERLAY_YUV410:
678 cmd |= OCMD_YUV_410_PLANAR;
679 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200680 }
681 } else { /* YUV packed */
682 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100683 case I915_OVERLAY_YUV422:
684 cmd |= OCMD_YUV_422_PACKED;
685 break;
686 case I915_OVERLAY_YUV411:
687 cmd |= OCMD_YUV_411_PACKED;
688 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200689 }
690
691 switch (params->format & I915_OVERLAY_SWAP_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100692 case I915_OVERLAY_NO_SWAP:
693 break;
694 case I915_OVERLAY_UV_SWAP:
695 cmd |= OCMD_UV_SWAP;
696 break;
697 case I915_OVERLAY_Y_SWAP:
698 cmd |= OCMD_Y_SWAP;
699 break;
700 case I915_OVERLAY_Y_AND_UV_SWAP:
701 cmd |= OCMD_Y_AND_UV_SWAP;
702 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200703 }
704 }
705
706 return cmd;
707}
708
Chris Wilson5fe82c52010-08-12 12:38:21 +0100709static int intel_overlay_do_put_image(struct intel_overlay *overlay,
Chris Wilson05394f32010-11-08 19:18:58 +0000710 struct drm_i915_gem_object *new_bo,
Chris Wilson5fe82c52010-08-12 12:38:21 +0100711 struct put_image_params *params)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200712{
713 int ret, tmp_width;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700714 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200715 bool scale_changed = false;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200716 struct drm_device *dev = overlay->dev;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700717 u32 swidth, swidthsw, sheight, ostride;
Daniel Vettera071fa02014-06-18 23:28:09 +0200718 enum pipe pipe = overlay->crtc->pipe;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200719
Ville Syrjälä77589f52015-03-31 10:37:22 +0300720 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
721 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200722
Daniel Vetter02e792f2009-09-15 22:57:34 +0200723 ret = intel_overlay_release_old_vid(overlay);
724 if (ret != 0)
725 return ret;
726
John Harrison91af1272015-06-18 13:14:56 +0100727 ret = i915_gem_object_pin_to_display_plane(new_bo, 0, NULL, NULL,
Tvrtko Ursuline6617332015-03-23 11:10:33 +0000728 &i915_ggtt_view_normal);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200729 if (ret != 0)
730 return ret;
731
Chris Wilsond9e86c02010-11-10 16:40:20 +0000732 ret = i915_gem_object_put_fence(new_bo);
733 if (ret)
734 goto out_unpin;
735
Daniel Vetter02e792f2009-09-15 22:57:34 +0200736 if (!overlay->active) {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700737 u32 oconfig;
Chris Wilson8d74f652010-08-12 10:35:26 +0100738 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200739 if (!regs) {
740 ret = -ENOMEM;
741 goto out_unpin;
742 }
Ben Widawsky75020bc2012-04-16 14:07:43 -0700743 oconfig = OCONF_CC_OUT_8BIT;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100744 if (IS_GEN4(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -0700745 oconfig |= OCONF_CSC_MODE_BT709;
Daniel Vettera071fa02014-06-18 23:28:09 +0200746 oconfig |= pipe == 0 ?
Daniel Vetter02e792f2009-09-15 22:57:34 +0200747 OCONF_PIPE_A : OCONF_PIPE_B;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700748 iowrite32(oconfig, &regs->OCONFIG);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100749 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200750
751 ret = intel_overlay_on(overlay);
752 if (ret != 0)
753 goto out_unpin;
754 }
755
Chris Wilson8d74f652010-08-12 10:35:26 +0100756 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200757 if (!regs) {
758 ret = -ENOMEM;
759 goto out_unpin;
760 }
761
Ben Widawsky75020bc2012-04-16 14:07:43 -0700762 iowrite32((params->dst_y << 16) | params->dst_x, &regs->DWINPOS);
763 iowrite32((params->dst_h << 16) | params->dst_w, &regs->DWINSZ);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200764
765 if (params->format & I915_OVERLAY_YUV_PACKED)
766 tmp_width = packed_width_bytes(params->format, params->src_w);
767 else
768 tmp_width = params->src_w;
769
Ben Widawsky75020bc2012-04-16 14:07:43 -0700770 swidth = params->src_w;
771 swidthsw = calc_swidthsw(overlay->dev, params->offset_Y, tmp_width);
772 sheight = params->src_h;
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700773 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_Y, &regs->OBUF_0Y);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700774 ostride = params->stride_Y;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200775
776 if (params->format & I915_OVERLAY_YUV_PLANAR) {
777 int uv_hscale = uv_hsubsampling(params->format);
778 int uv_vscale = uv_vsubsampling(params->format);
779 u32 tmp_U, tmp_V;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700780 swidth |= (params->src_w/uv_hscale) << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200781 tmp_U = calc_swidthsw(overlay->dev, params->offset_U,
Chris Wilson722506f2010-08-12 09:28:50 +0100782 params->src_w/uv_hscale);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200783 tmp_V = calc_swidthsw(overlay->dev, params->offset_V,
Chris Wilson722506f2010-08-12 09:28:50 +0100784 params->src_w/uv_hscale);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700785 swidthsw |= max_t(u32, tmp_U, tmp_V) << 16;
786 sheight |= (params->src_h/uv_vscale) << 16;
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700787 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_U, &regs->OBUF_0U);
788 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_V, &regs->OBUF_0V);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700789 ostride |= params->stride_UV << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200790 }
791
Ben Widawsky75020bc2012-04-16 14:07:43 -0700792 iowrite32(swidth, &regs->SWIDTH);
793 iowrite32(swidthsw, &regs->SWIDTHSW);
794 iowrite32(sheight, &regs->SHEIGHT);
795 iowrite32(ostride, &regs->OSTRIDE);
796
Daniel Vetter02e792f2009-09-15 22:57:34 +0200797 scale_changed = update_scaling_factors(overlay, regs, params);
798
799 update_colorkey(overlay, regs);
800
Ben Widawsky75020bc2012-04-16 14:07:43 -0700801 iowrite32(overlay_cmd_reg(params), &regs->OCMD);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200802
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100803 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200804
Chris Wilson8dc5d142010-08-12 12:36:12 +0100805 ret = intel_overlay_continue(overlay, scale_changed);
806 if (ret)
807 goto out_unpin;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200808
Daniel Vettera071fa02014-06-18 23:28:09 +0200809 i915_gem_track_fb(overlay->vid_bo, new_bo,
810 INTEL_FRONTBUFFER_OVERLAY(pipe));
811
Daniel Vetter02e792f2009-09-15 22:57:34 +0200812 overlay->old_vid_bo = overlay->vid_bo;
Chris Wilson05394f32010-11-08 19:18:58 +0000813 overlay->vid_bo = new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200814
Daniel Vetterf99d7062014-06-19 16:01:59 +0200815 intel_frontbuffer_flip(dev,
816 INTEL_FRONTBUFFER_OVERLAY(pipe));
817
Daniel Vetter02e792f2009-09-15 22:57:34 +0200818 return 0;
819
820out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800821 i915_gem_object_ggtt_unpin(new_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200822 return ret;
823}
824
Chris Wilsonce453d82011-02-21 14:43:56 +0000825int intel_overlay_switch_off(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200826{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700827 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200828 struct drm_device *dev = overlay->dev;
Chris Wilson5dcdbcb2010-08-12 13:50:28 +0100829 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200830
Ville Syrjälä77589f52015-03-31 10:37:22 +0300831 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
832 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200833
Chris Wilsonce453d82011-02-21 14:43:56 +0000834 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +0100835 if (ret != 0)
836 return ret;
Daniel Vetter9bedb972009-11-30 15:55:49 +0100837
Daniel Vetter02e792f2009-09-15 22:57:34 +0200838 if (!overlay->active)
839 return 0;
840
Daniel Vetter02e792f2009-09-15 22:57:34 +0200841 ret = intel_overlay_release_old_vid(overlay);
842 if (ret != 0)
843 return ret;
844
Chris Wilson8d74f652010-08-12 10:35:26 +0100845 regs = intel_overlay_map_regs(overlay);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700846 iowrite32(0, &regs->OCMD);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100847 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200848
Chris Wilsonce453d82011-02-21 14:43:56 +0000849 ret = intel_overlay_off(overlay);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200850 if (ret != 0)
851 return ret;
852
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200853 intel_overlay_off_tail(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200854 return 0;
855}
856
857static int check_overlay_possible_on_crtc(struct intel_overlay *overlay,
858 struct intel_crtc *crtc)
859{
Chris Wilsonf7abfe82010-09-13 14:19:16 +0100860 if (!crtc->active)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200861 return -EINVAL;
862
Daniel Vetter02e792f2009-09-15 22:57:34 +0200863 /* can't use the overlay with double wide pipe */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200864 if (crtc->config->double_wide)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200865 return -EINVAL;
866
867 return 0;
868}
869
870static void update_pfit_vscale_ratio(struct intel_overlay *overlay)
871{
872 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300873 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200874 u32 pfit_control = I915_READ(PFIT_CONTROL);
Chris Wilson446d2182010-08-12 11:15:58 +0100875 u32 ratio;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200876
877 /* XXX: This is not the same logic as in the xorg driver, but more in
Chris Wilson446d2182010-08-12 11:15:58 +0100878 * line with the intel documentation for the i965
879 */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100880 if (INTEL_INFO(dev)->gen >= 4) {
Akshay Joshi0206e352011-08-16 15:34:10 -0400881 /* on i965 use the PGM reg to read out the autoscaler values */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100882 ratio = I915_READ(PFIT_PGM_RATIOS) >> PFIT_VERT_SCALE_SHIFT_965;
883 } else {
Chris Wilson446d2182010-08-12 11:15:58 +0100884 if (pfit_control & VERT_AUTO_SCALE)
885 ratio = I915_READ(PFIT_AUTO_RATIOS);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200886 else
Chris Wilson446d2182010-08-12 11:15:58 +0100887 ratio = I915_READ(PFIT_PGM_RATIOS);
888 ratio >>= PFIT_VERT_SCALE_SHIFT;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200889 }
890
891 overlay->pfit_vscale_ratio = ratio;
892}
893
894static int check_overlay_dst(struct intel_overlay *overlay,
895 struct drm_intel_overlay_put_image *rec)
896{
897 struct drm_display_mode *mode = &overlay->crtc->base.mode;
898
Daniel Vetter75c13992012-01-28 23:48:46 +0100899 if (rec->dst_x < mode->hdisplay &&
900 rec->dst_x + rec->dst_width <= mode->hdisplay &&
901 rec->dst_y < mode->vdisplay &&
902 rec->dst_y + rec->dst_height <= mode->vdisplay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200903 return 0;
904 else
905 return -EINVAL;
906}
907
908static int check_overlay_scaling(struct put_image_params *rec)
909{
910 u32 tmp;
911
912 /* downscaling limit is 8.0 */
913 tmp = ((rec->src_scan_h << 16) / rec->dst_h) >> 16;
914 if (tmp > 7)
915 return -EINVAL;
916 tmp = ((rec->src_scan_w << 16) / rec->dst_w) >> 16;
917 if (tmp > 7)
918 return -EINVAL;
919
920 return 0;
921}
922
923static int check_overlay_src(struct drm_device *dev,
924 struct drm_intel_overlay_put_image *rec,
Chris Wilson05394f32010-11-08 19:18:58 +0000925 struct drm_i915_gem_object *new_bo)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200926{
Daniel Vetter02e792f2009-09-15 22:57:34 +0200927 int uv_hscale = uv_hsubsampling(rec->flags);
928 int uv_vscale = uv_vsubsampling(rec->flags);
Dan Carpenter8f28f542010-10-27 23:17:25 +0200929 u32 stride_mask;
930 int depth;
931 u32 tmp;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200932
933 /* check src dimensions */
934 if (IS_845G(dev) || IS_I830(dev)) {
Chris Wilson722506f2010-08-12 09:28:50 +0100935 if (rec->src_height > IMAGE_MAX_HEIGHT_LEGACY ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100936 rec->src_width > IMAGE_MAX_WIDTH_LEGACY)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200937 return -EINVAL;
938 } else {
Chris Wilson722506f2010-08-12 09:28:50 +0100939 if (rec->src_height > IMAGE_MAX_HEIGHT ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100940 rec->src_width > IMAGE_MAX_WIDTH)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200941 return -EINVAL;
942 }
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100943
Daniel Vetter02e792f2009-09-15 22:57:34 +0200944 /* better safe than sorry, use 4 as the maximal subsampling ratio */
Chris Wilson722506f2010-08-12 09:28:50 +0100945 if (rec->src_height < N_VERT_Y_TAPS*4 ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100946 rec->src_width < N_HORIZ_Y_TAPS*4)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200947 return -EINVAL;
948
Chris Wilsona1efd142010-07-12 19:35:38 +0100949 /* check alignment constraints */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200950 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100951 case I915_OVERLAY_RGB:
952 /* not implemented */
953 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100954
Chris Wilson722506f2010-08-12 09:28:50 +0100955 case I915_OVERLAY_YUV_PACKED:
Chris Wilson722506f2010-08-12 09:28:50 +0100956 if (uv_vscale != 1)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200957 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100958
959 depth = packed_depth_bytes(rec->flags);
Chris Wilson722506f2010-08-12 09:28:50 +0100960 if (depth < 0)
961 return depth;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100962
Chris Wilson722506f2010-08-12 09:28:50 +0100963 /* ignore UV planes */
964 rec->stride_UV = 0;
965 rec->offset_U = 0;
966 rec->offset_V = 0;
967 /* check pixel alignment */
968 if (rec->offset_Y % depth)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200969 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +0100970 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100971
Chris Wilson722506f2010-08-12 09:28:50 +0100972 case I915_OVERLAY_YUV_PLANAR:
973 if (uv_vscale < 0 || uv_hscale < 0)
974 return -EINVAL;
975 /* no offset restrictions for planar formats */
976 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100977
Chris Wilson722506f2010-08-12 09:28:50 +0100978 default:
979 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200980 }
981
982 if (rec->src_width % uv_hscale)
983 return -EINVAL;
984
985 /* stride checking */
Chris Wilsona1efd142010-07-12 19:35:38 +0100986 if (IS_I830(dev) || IS_845G(dev))
987 stride_mask = 255;
988 else
989 stride_mask = 63;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200990
991 if (rec->stride_Y & stride_mask || rec->stride_UV & stride_mask)
992 return -EINVAL;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100993 if (IS_GEN4(dev) && rec->stride_Y < 512)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200994 return -EINVAL;
995
996 tmp = (rec->flags & I915_OVERLAY_TYPE_MASK) == I915_OVERLAY_YUV_PLANAR ?
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100997 4096 : 8192;
998 if (rec->stride_Y > tmp || rec->stride_UV > 2*1024)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200999 return -EINVAL;
1000
1001 /* check buffer dimensions */
1002 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +01001003 case I915_OVERLAY_RGB:
1004 case I915_OVERLAY_YUV_PACKED:
1005 /* always 4 Y values per depth pixels */
1006 if (packed_width_bytes(rec->flags, rec->src_width) > rec->stride_Y)
1007 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001008
Chris Wilson722506f2010-08-12 09:28:50 +01001009 tmp = rec->stride_Y*rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001010 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001011 return -EINVAL;
1012 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001013
Chris Wilson722506f2010-08-12 09:28:50 +01001014 case I915_OVERLAY_YUV_PLANAR:
1015 if (rec->src_width > rec->stride_Y)
1016 return -EINVAL;
1017 if (rec->src_width/uv_hscale > rec->stride_UV)
1018 return -EINVAL;
1019
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001020 tmp = rec->stride_Y * rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001021 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001022 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001023
1024 tmp = rec->stride_UV * (rec->src_height / uv_vscale);
Chris Wilson05394f32010-11-08 19:18:58 +00001025 if (rec->offset_U + tmp > new_bo->base.size ||
1026 rec->offset_V + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001027 return -EINVAL;
1028 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001029 }
1030
1031 return 0;
1032}
1033
Chris Wilsone9e331a2010-09-13 01:16:10 +01001034/**
1035 * Return the pipe currently connected to the panel fitter,
1036 * or -1 if the panel fitter is not present or not in use
1037 */
1038static int intel_panel_fitter_pipe(struct drm_device *dev)
1039{
1040 struct drm_i915_private *dev_priv = dev->dev_private;
1041 u32 pfit_control;
1042
1043 /* i830 doesn't have a panel fitter */
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02001044 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001045 return -1;
1046
1047 pfit_control = I915_READ(PFIT_CONTROL);
1048
1049 /* See if the panel fitter is in use */
1050 if ((pfit_control & PFIT_ENABLE) == 0)
1051 return -1;
1052
1053 /* 965 can place panel fitter on either pipe */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001054 if (IS_GEN4(dev))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001055 return (pfit_control >> 29) & 0x3;
1056
1057 /* older chips can only use pipe 1 */
1058 return 1;
1059}
1060
Daniel Vetter02e792f2009-09-15 22:57:34 +02001061int intel_overlay_put_image(struct drm_device *dev, void *data,
Akshay Joshi0206e352011-08-16 15:34:10 -04001062 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001063{
1064 struct drm_intel_overlay_put_image *put_image_rec = data;
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001065 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001066 struct intel_overlay *overlay;
Rob Clark7707e652014-07-17 23:30:04 -04001067 struct drm_crtc *drmmode_crtc;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001068 struct intel_crtc *crtc;
Chris Wilson05394f32010-11-08 19:18:58 +00001069 struct drm_i915_gem_object *new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001070 struct put_image_params *params;
1071 int ret;
1072
Daniel Vetter02e792f2009-09-15 22:57:34 +02001073 overlay = dev_priv->overlay;
1074 if (!overlay) {
1075 DRM_DEBUG("userspace bug: no overlay\n");
1076 return -ENODEV;
1077 }
1078
1079 if (!(put_image_rec->flags & I915_OVERLAY_ENABLE)) {
Daniel Vettera0e99e62012-12-02 01:05:46 +01001080 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001081 mutex_lock(&dev->struct_mutex);
1082
Chris Wilsonce453d82011-02-21 14:43:56 +00001083 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001084
1085 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001086 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001087
1088 return ret;
1089 }
1090
Daniel Vetterb14c5672013-09-19 12:18:32 +02001091 params = kmalloc(sizeof(*params), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001092 if (!params)
1093 return -ENOMEM;
1094
Rob Clark7707e652014-07-17 23:30:04 -04001095 drmmode_crtc = drm_crtc_find(dev, put_image_rec->crtc_id);
1096 if (!drmmode_crtc) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001097 ret = -ENOENT;
1098 goto out_free;
1099 }
Rob Clark7707e652014-07-17 23:30:04 -04001100 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001101
Chris Wilson05394f32010-11-08 19:18:58 +00001102 new_bo = to_intel_bo(drm_gem_object_lookup(dev, file_priv,
1103 put_image_rec->bo_handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001104 if (&new_bo->base == NULL) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001105 ret = -ENOENT;
1106 goto out_free;
1107 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001108
Daniel Vettera0e99e62012-12-02 01:05:46 +01001109 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001110 mutex_lock(&dev->struct_mutex);
1111
Chris Wilsond9e86c02010-11-10 16:40:20 +00001112 if (new_bo->tiling_mode) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01001113 DRM_DEBUG_KMS("buffer used for overlay image can not be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00001114 ret = -EINVAL;
1115 goto out_unlock;
1116 }
1117
Chris Wilsonce453d82011-02-21 14:43:56 +00001118 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +01001119 if (ret != 0)
1120 goto out_unlock;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02001121
Daniel Vetter02e792f2009-09-15 22:57:34 +02001122 if (overlay->crtc != crtc) {
1123 struct drm_display_mode *mode = &crtc->base.mode;
Chris Wilsonce453d82011-02-21 14:43:56 +00001124 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001125 if (ret != 0)
1126 goto out_unlock;
1127
1128 ret = check_overlay_possible_on_crtc(overlay, crtc);
1129 if (ret != 0)
1130 goto out_unlock;
1131
1132 overlay->crtc = crtc;
1133 crtc->overlay = overlay;
1134
Chris Wilsone9e331a2010-09-13 01:16:10 +01001135 /* line too wide, i.e. one-line-mode */
1136 if (mode->hdisplay > 1024 &&
1137 intel_panel_fitter_pipe(dev) == crtc->pipe) {
Ville Syrjälä209c2a52015-03-31 10:37:23 +03001138 overlay->pfit_active = true;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001139 update_pfit_vscale_ratio(overlay);
1140 } else
Ville Syrjälä209c2a52015-03-31 10:37:23 +03001141 overlay->pfit_active = false;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001142 }
1143
1144 ret = check_overlay_dst(overlay, put_image_rec);
1145 if (ret != 0)
1146 goto out_unlock;
1147
1148 if (overlay->pfit_active) {
1149 params->dst_y = ((((u32)put_image_rec->dst_y) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001150 overlay->pfit_vscale_ratio);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001151 /* shifting right rounds downwards, so add 1 */
1152 params->dst_h = ((((u32)put_image_rec->dst_height) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001153 overlay->pfit_vscale_ratio) + 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001154 } else {
1155 params->dst_y = put_image_rec->dst_y;
1156 params->dst_h = put_image_rec->dst_height;
1157 }
1158 params->dst_x = put_image_rec->dst_x;
1159 params->dst_w = put_image_rec->dst_width;
1160
1161 params->src_w = put_image_rec->src_width;
1162 params->src_h = put_image_rec->src_height;
1163 params->src_scan_w = put_image_rec->src_scan_width;
1164 params->src_scan_h = put_image_rec->src_scan_height;
Chris Wilson722506f2010-08-12 09:28:50 +01001165 if (params->src_scan_h > params->src_h ||
1166 params->src_scan_w > params->src_w) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001167 ret = -EINVAL;
1168 goto out_unlock;
1169 }
1170
1171 ret = check_overlay_src(dev, put_image_rec, new_bo);
1172 if (ret != 0)
1173 goto out_unlock;
1174 params->format = put_image_rec->flags & ~I915_OVERLAY_FLAGS_MASK;
1175 params->stride_Y = put_image_rec->stride_Y;
1176 params->stride_UV = put_image_rec->stride_UV;
1177 params->offset_Y = put_image_rec->offset_Y;
1178 params->offset_U = put_image_rec->offset_U;
1179 params->offset_V = put_image_rec->offset_V;
1180
1181 /* Check scaling after src size to prevent a divide-by-zero. */
1182 ret = check_overlay_scaling(params);
1183 if (ret != 0)
1184 goto out_unlock;
1185
1186 ret = intel_overlay_do_put_image(overlay, new_bo, params);
1187 if (ret != 0)
1188 goto out_unlock;
1189
1190 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001191 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001192
1193 kfree(params);
1194
1195 return 0;
1196
1197out_unlock:
1198 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001199 drm_modeset_unlock_all(dev);
Chris Wilson05394f32010-11-08 19:18:58 +00001200 drm_gem_object_unreference_unlocked(&new_bo->base);
Dan Carpenter915a4282010-03-06 14:05:39 +03001201out_free:
Daniel Vetter02e792f2009-09-15 22:57:34 +02001202 kfree(params);
1203
1204 return ret;
1205}
1206
1207static void update_reg_attrs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001208 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001209{
Ben Widawsky75020bc2012-04-16 14:07:43 -07001210 iowrite32((overlay->contrast << 18) | (overlay->brightness & 0xff),
1211 &regs->OCLRC0);
1212 iowrite32(overlay->saturation, &regs->OCLRC1);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001213}
1214
1215static bool check_gamma_bounds(u32 gamma1, u32 gamma2)
1216{
1217 int i;
1218
1219 if (gamma1 & 0xff000000 || gamma2 & 0xff000000)
1220 return false;
1221
1222 for (i = 0; i < 3; i++) {
Chris Wilson722506f2010-08-12 09:28:50 +01001223 if (((gamma1 >> i*8) & 0xff) >= ((gamma2 >> i*8) & 0xff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001224 return false;
1225 }
1226
1227 return true;
1228}
1229
1230static bool check_gamma5_errata(u32 gamma5)
1231{
1232 int i;
1233
1234 for (i = 0; i < 3; i++) {
1235 if (((gamma5 >> i*8) & 0xff) == 0x80)
1236 return false;
1237 }
1238
1239 return true;
1240}
1241
1242static int check_gamma(struct drm_intel_overlay_attrs *attrs)
1243{
Chris Wilson722506f2010-08-12 09:28:50 +01001244 if (!check_gamma_bounds(0, attrs->gamma0) ||
1245 !check_gamma_bounds(attrs->gamma0, attrs->gamma1) ||
1246 !check_gamma_bounds(attrs->gamma1, attrs->gamma2) ||
1247 !check_gamma_bounds(attrs->gamma2, attrs->gamma3) ||
1248 !check_gamma_bounds(attrs->gamma3, attrs->gamma4) ||
1249 !check_gamma_bounds(attrs->gamma4, attrs->gamma5) ||
1250 !check_gamma_bounds(attrs->gamma5, 0x00ffffff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001251 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001252
Daniel Vetter02e792f2009-09-15 22:57:34 +02001253 if (!check_gamma5_errata(attrs->gamma5))
1254 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001255
Daniel Vetter02e792f2009-09-15 22:57:34 +02001256 return 0;
1257}
1258
1259int intel_overlay_attrs(struct drm_device *dev, void *data,
Akshay Joshi0206e352011-08-16 15:34:10 -04001260 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001261{
1262 struct drm_intel_overlay_attrs *attrs = data;
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001263 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001264 struct intel_overlay *overlay;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001265 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001266 int ret;
1267
Daniel Vetter02e792f2009-09-15 22:57:34 +02001268 overlay = dev_priv->overlay;
1269 if (!overlay) {
1270 DRM_DEBUG("userspace bug: no overlay\n");
1271 return -ENODEV;
1272 }
1273
Daniel Vettera0e99e62012-12-02 01:05:46 +01001274 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001275 mutex_lock(&dev->struct_mutex);
1276
Chris Wilson60fc3322010-08-12 10:44:45 +01001277 ret = -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001278 if (!(attrs->flags & I915_OVERLAY_UPDATE_ATTRS)) {
Chris Wilson60fc3322010-08-12 10:44:45 +01001279 attrs->color_key = overlay->color_key;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001280 attrs->brightness = overlay->brightness;
Chris Wilson60fc3322010-08-12 10:44:45 +01001281 attrs->contrast = overlay->contrast;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001282 attrs->saturation = overlay->saturation;
1283
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001284 if (!IS_GEN2(dev)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001285 attrs->gamma0 = I915_READ(OGAMC0);
1286 attrs->gamma1 = I915_READ(OGAMC1);
1287 attrs->gamma2 = I915_READ(OGAMC2);
1288 attrs->gamma3 = I915_READ(OGAMC3);
1289 attrs->gamma4 = I915_READ(OGAMC4);
1290 attrs->gamma5 = I915_READ(OGAMC5);
1291 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001292 } else {
Chris Wilson60fc3322010-08-12 10:44:45 +01001293 if (attrs->brightness < -128 || attrs->brightness > 127)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001294 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001295 if (attrs->contrast > 255)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001296 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001297 if (attrs->saturation > 1023)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001298 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001299
Chris Wilson60fc3322010-08-12 10:44:45 +01001300 overlay->color_key = attrs->color_key;
1301 overlay->brightness = attrs->brightness;
1302 overlay->contrast = attrs->contrast;
1303 overlay->saturation = attrs->saturation;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001304
Chris Wilson8d74f652010-08-12 10:35:26 +01001305 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001306 if (!regs) {
1307 ret = -ENOMEM;
1308 goto out_unlock;
1309 }
1310
1311 update_reg_attrs(overlay, regs);
1312
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001313 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001314
1315 if (attrs->flags & I915_OVERLAY_UPDATE_GAMMA) {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001316 if (IS_GEN2(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001317 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001318
1319 if (overlay->active) {
1320 ret = -EBUSY;
1321 goto out_unlock;
1322 }
1323
1324 ret = check_gamma(attrs);
Chris Wilson60fc3322010-08-12 10:44:45 +01001325 if (ret)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001326 goto out_unlock;
1327
1328 I915_WRITE(OGAMC0, attrs->gamma0);
1329 I915_WRITE(OGAMC1, attrs->gamma1);
1330 I915_WRITE(OGAMC2, attrs->gamma2);
1331 I915_WRITE(OGAMC3, attrs->gamma3);
1332 I915_WRITE(OGAMC4, attrs->gamma4);
1333 I915_WRITE(OGAMC5, attrs->gamma5);
1334 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001335 }
Chris Wilsonea9da4e2015-04-02 10:35:08 +01001336 overlay->color_key_enabled = (attrs->flags & I915_OVERLAY_DISABLE_DEST_COLORKEY) == 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001337
Chris Wilson60fc3322010-08-12 10:44:45 +01001338 ret = 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001339out_unlock:
1340 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001341 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001342
1343 return ret;
1344}
1345
1346void intel_setup_overlay(struct drm_device *dev)
1347{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001348 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001349 struct intel_overlay *overlay;
Chris Wilson05394f32010-11-08 19:18:58 +00001350 struct drm_i915_gem_object *reg_bo;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001351 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001352 int ret;
1353
Chris Wilson315781482010-08-12 09:42:51 +01001354 if (!HAS_OVERLAY(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001355 return;
1356
Daniel Vetterb14c5672013-09-19 12:18:32 +02001357 overlay = kzalloc(sizeof(*overlay), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001358 if (!overlay)
1359 return;
Chris Wilson79d24272011-06-28 11:27:47 +01001360
1361 mutex_lock(&dev->struct_mutex);
1362 if (WARN_ON(dev_priv->overlay))
1363 goto out_free;
1364
Daniel Vetter02e792f2009-09-15 22:57:34 +02001365 overlay->dev = dev;
1366
Daniel Vetterf63a4842013-07-23 19:24:38 +02001367 reg_bo = NULL;
1368 if (!OVERLAY_NEEDS_PHYSICAL(dev))
1369 reg_bo = i915_gem_object_create_stolen(dev, PAGE_SIZE);
Chris Wilson80405132012-11-15 11:32:29 +00001370 if (reg_bo == NULL)
1371 reg_bo = i915_gem_alloc_object(dev, PAGE_SIZE);
1372 if (reg_bo == NULL)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001373 goto out_free;
Chris Wilson05394f32010-11-08 19:18:58 +00001374 overlay->reg_bo = reg_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001375
Chris Wilson315781482010-08-12 09:42:51 +01001376 if (OVERLAY_NEEDS_PHYSICAL(dev)) {
Chris Wilson00731152014-05-21 12:42:56 +01001377 ret = i915_gem_object_attach_phys(reg_bo, PAGE_SIZE);
Akshay Joshi0206e352011-08-16 15:34:10 -04001378 if (ret) {
1379 DRM_ERROR("failed to attach phys overlay regs\n");
1380 goto out_free_bo;
1381 }
Chris Wilson00731152014-05-21 12:42:56 +01001382 overlay->flip_addr = reg_bo->phys_handle->busaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001383 } else {
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001384 ret = i915_gem_obj_ggtt_pin(reg_bo, PAGE_SIZE, PIN_MAPPABLE);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001385 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001386 DRM_ERROR("failed to pin overlay register bo\n");
1387 goto out_free_bo;
1388 }
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001389 overlay->flip_addr = i915_gem_obj_ggtt_offset(reg_bo);
Chris Wilson0ddc1282010-08-12 09:35:00 +01001390
1391 ret = i915_gem_object_set_to_gtt_domain(reg_bo, true);
1392 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001393 DRM_ERROR("failed to move overlay register bo into the GTT\n");
1394 goto out_unpin_bo;
1395 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001396 }
1397
1398 /* init all values */
1399 overlay->color_key = 0x0101fe;
Chris Wilsonea9da4e2015-04-02 10:35:08 +01001400 overlay->color_key_enabled = true;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001401 overlay->brightness = -19;
1402 overlay->contrast = 75;
1403 overlay->saturation = 146;
1404
Chris Wilson8d74f652010-08-12 10:35:26 +01001405 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001406 if (!regs)
Chris Wilson79d24272011-06-28 11:27:47 +01001407 goto out_unpin_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001408
Ben Widawsky75020bc2012-04-16 14:07:43 -07001409 memset_io(regs, 0, sizeof(struct overlay_registers));
Daniel Vetter02e792f2009-09-15 22:57:34 +02001410 update_polyphase_filter(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001411 update_reg_attrs(overlay, regs);
1412
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001413 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001414
1415 dev_priv->overlay = overlay;
Chris Wilson79d24272011-06-28 11:27:47 +01001416 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001417 DRM_INFO("initialized overlay support\n");
1418 return;
1419
Chris Wilson0ddc1282010-08-12 09:35:00 +01001420out_unpin_bo:
Chris Wilson79d24272011-06-28 11:27:47 +01001421 if (!OVERLAY_NEEDS_PHYSICAL(dev))
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001422 i915_gem_object_ggtt_unpin(reg_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001423out_free_bo:
Chris Wilson05394f32010-11-08 19:18:58 +00001424 drm_gem_object_unreference(&reg_bo->base);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001425out_free:
Chris Wilson79d24272011-06-28 11:27:47 +01001426 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001427 kfree(overlay);
1428 return;
1429}
1430
1431void intel_cleanup_overlay(struct drm_device *dev)
1432{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001433 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001434
Chris Wilson62cf4e62010-08-12 10:50:36 +01001435 if (!dev_priv->overlay)
1436 return;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001437
Chris Wilson62cf4e62010-08-12 10:50:36 +01001438 /* The bo's should be free'd by the generic code already.
1439 * Furthermore modesetting teardown happens beforehand so the
1440 * hardware should be off already */
Ville Syrjälä77589f52015-03-31 10:37:22 +03001441 WARN_ON(dev_priv->overlay->active);
Chris Wilson62cf4e62010-08-12 10:50:36 +01001442
1443 drm_gem_object_unreference_unlocked(&dev_priv->overlay->reg_bo->base);
1444 kfree(dev_priv->overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001445}
Chris Wilson6ef3d422010-08-04 20:26:07 +01001446
1447struct intel_overlay_error_state {
1448 struct overlay_registers regs;
1449 unsigned long base;
1450 u32 dovsta;
1451 u32 isr;
1452};
1453
Ben Widawsky75020bc2012-04-16 14:07:43 -07001454static struct overlay_registers __iomem *
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001455intel_overlay_map_regs_atomic(struct intel_overlay *overlay)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001456{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001457 struct drm_i915_private *dev_priv = overlay->dev->dev_private;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001458 struct overlay_registers __iomem *regs;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001459
1460 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -07001461 /* Cast to make sparse happy, but it's wc memory anyway, so
1462 * equivalent to the wc io mapping on X86. */
1463 regs = (struct overlay_registers __iomem *)
Chris Wilson00731152014-05-21 12:42:56 +01001464 overlay->reg_bo->phys_handle->vaddr;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001465 else
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001466 regs = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001467 i915_gem_obj_ggtt_offset(overlay->reg_bo));
Chris Wilson3bd3c932010-08-19 08:19:30 +01001468
1469 return regs;
1470}
1471
1472static void intel_overlay_unmap_regs_atomic(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001473 struct overlay_registers __iomem *regs)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001474{
1475 if (!OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001476 io_mapping_unmap_atomic(regs);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001477}
1478
1479
Chris Wilson6ef3d422010-08-04 20:26:07 +01001480struct intel_overlay_error_state *
1481intel_overlay_capture_error_state(struct drm_device *dev)
1482{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001483 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson6ef3d422010-08-04 20:26:07 +01001484 struct intel_overlay *overlay = dev_priv->overlay;
1485 struct intel_overlay_error_state *error;
1486 struct overlay_registers __iomem *regs;
1487
1488 if (!overlay || !overlay->active)
1489 return NULL;
1490
1491 error = kmalloc(sizeof(*error), GFP_ATOMIC);
1492 if (error == NULL)
1493 return NULL;
1494
1495 error->dovsta = I915_READ(DOVSTA);
1496 error->isr = I915_READ(ISR);
Chris Wilson315781482010-08-12 09:42:51 +01001497 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Chris Wilson00731152014-05-21 12:42:56 +01001498 error->base = (__force long)overlay->reg_bo->phys_handle->vaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001499 else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001500 error->base = i915_gem_obj_ggtt_offset(overlay->reg_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001501
1502 regs = intel_overlay_map_regs_atomic(overlay);
1503 if (!regs)
1504 goto err;
1505
1506 memcpy_fromio(&error->regs, regs, sizeof(struct overlay_registers));
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001507 intel_overlay_unmap_regs_atomic(overlay, regs);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001508
1509 return error;
1510
1511err:
1512 kfree(error);
1513 return NULL;
1514}
1515
1516void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001517intel_overlay_print_error_state(struct drm_i915_error_state_buf *m,
1518 struct intel_overlay_error_state *error)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001519{
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001520 i915_error_printf(m, "Overlay, status: 0x%08x, interrupt: 0x%08x\n",
1521 error->dovsta, error->isr);
1522 i915_error_printf(m, " Register file at 0x%08lx:\n",
1523 error->base);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001524
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001525#define P(x) i915_error_printf(m, " " #x ": 0x%08x\n", error->regs.x)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001526 P(OBUF_0Y);
1527 P(OBUF_1Y);
1528 P(OBUF_0U);
1529 P(OBUF_0V);
1530 P(OBUF_1U);
1531 P(OBUF_1V);
1532 P(OSTRIDE);
1533 P(YRGB_VPH);
1534 P(UV_VPH);
1535 P(HORZ_PH);
1536 P(INIT_PHS);
1537 P(DWINPOS);
1538 P(DWINSZ);
1539 P(SWIDTH);
1540 P(SWIDTHSW);
1541 P(SHEIGHT);
1542 P(YRGBSCALE);
1543 P(UVSCALE);
1544 P(OCLRC0);
1545 P(OCLRC1);
1546 P(DCLRKV);
1547 P(DCLRKM);
1548 P(SCLRKVH);
1549 P(SCLRKVL);
1550 P(SCLRKEN);
1551 P(OCONFIG);
1552 P(OCMD);
1553 P(OSTART_0Y);
1554 P(OSTART_1Y);
1555 P(OSTART_0U);
1556 P(OSTART_0V);
1557 P(OSTART_1U);
1558 P(OSTART_1V);
1559 P(OTILEOFF_0Y);
1560 P(OTILEOFF_1Y);
1561 P(OTILEOFF_0U);
1562 P(OTILEOFF_0V);
1563 P(OTILEOFF_1U);
1564 P(OTILEOFF_1V);
1565 P(FASTHSCALE);
1566 P(UVSCALEV);
1567#undef P
1568}