blob: 5fd2d5ac02e2dc2692c9a3d6a7d8d3fd0fc95f81 [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 Harrison9400ae52014-11-24 18:49:36 +0000223 ret = i915_add_request(ring);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100224 if (ret)
225 return ret;
226
Chris Wilsonb303cf92010-08-12 14:03:48 +0100227 overlay->flip_tail = tail;
Daniel Vettera4b3a572014-11-26 14:17:05 +0100228 ret = i915_wait_request(overlay->last_flip_req);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100229 if (ret)
230 return ret;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -0700231 i915_gem_retire_requests(dev);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100232
John Harrison9bfc01a2014-11-24 18:49:31 +0000233 i915_gem_request_assign(&overlay->last_flip_req, NULL);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100234 return 0;
235}
236
Daniel Vetter02e792f2009-09-15 22:57:34 +0200237/* overlay needs to be disable in OCMD reg */
238static int intel_overlay_on(struct intel_overlay *overlay)
239{
240 struct drm_device *dev = overlay->dev;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100241 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100242 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200243 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200244
Ville Syrjälä77589f52015-03-31 10:37:22 +0300245 WARN_ON(overlay->active);
Daniel Vetter6306cb42012-08-12 19:27:10 +0200246 WARN_ON(IS_I830(dev) && !(dev_priv->quirks & QUIRK_PIPEA_FORCE));
Chris Wilson106dada2010-07-16 17:13:01 +0100247
Daniel Vetter6d90c952012-04-26 23:28:05 +0200248 ret = intel_ring_begin(ring, 4);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100249 if (ret)
250 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100251
Ville Syrjälä1c7c4302015-03-31 10:37:24 +0300252 overlay->active = true;
253
Daniel Vetter6d90c952012-04-26 23:28:05 +0200254 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_ON);
255 intel_ring_emit(ring, overlay->flip_addr | OFC_UPDATE);
256 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
257 intel_ring_emit(ring, MI_NOOP);
258 intel_ring_advance(ring);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200259
Chris Wilsonacb868d2012-09-26 13:47:30 +0100260 return intel_overlay_do_wait_request(overlay, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200261}
262
263/* overlay needs to be enabled in OCMD reg */
Chris Wilson8dc5d142010-08-12 12:36:12 +0100264static int intel_overlay_continue(struct intel_overlay *overlay,
265 bool load_polyphase_filter)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200266{
267 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300268 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100269 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200270 u32 flip_addr = overlay->flip_addr;
271 u32 tmp;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100272 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200273
Ville Syrjälä77589f52015-03-31 10:37:22 +0300274 WARN_ON(!overlay->active);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200275
276 if (load_polyphase_filter)
277 flip_addr |= OFC_UPDATE;
278
279 /* check for underruns */
280 tmp = I915_READ(DOVSTA);
281 if (tmp & (1 << 17))
282 DRM_DEBUG("overlay underrun, DOVSTA: %x\n", tmp);
283
Daniel Vetter6d90c952012-04-26 23:28:05 +0200284 ret = intel_ring_begin(ring, 2);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100285 if (ret)
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100286 return ret;
Chris Wilsonacb868d2012-09-26 13:47:30 +0100287
Daniel Vetter6d90c952012-04-26 23:28:05 +0200288 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
289 intel_ring_emit(ring, flip_addr);
290 intel_ring_advance(ring);
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200291
John Harrison9bfc01a2014-11-24 18:49:31 +0000292 WARN_ON(overlay->last_flip_req);
293 i915_gem_request_assign(&overlay->last_flip_req,
294 ring->outstanding_lazy_request);
John Harrison9400ae52014-11-24 18:49:36 +0000295 return i915_add_request(ring);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200296}
297
Chris Wilsonb303cf92010-08-12 14:03:48 +0100298static void intel_overlay_release_old_vid_tail(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200299{
Chris Wilson05394f32010-11-08 19:18:58 +0000300 struct drm_i915_gem_object *obj = overlay->old_vid_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200301
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800302 i915_gem_object_ggtt_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000303 drm_gem_object_unreference(&obj->base);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200304
Chris Wilsonb303cf92010-08-12 14:03:48 +0100305 overlay->old_vid_bo = NULL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200306}
307
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200308static void intel_overlay_off_tail(struct intel_overlay *overlay)
309{
Chris Wilson05394f32010-11-08 19:18:58 +0000310 struct drm_i915_gem_object *obj = overlay->vid_bo;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200311
312 /* never have the overlay hw on without showing a frame */
Ville Syrjälä77589f52015-03-31 10:37:22 +0300313 if (WARN_ON(!obj))
314 return;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200315
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800316 i915_gem_object_ggtt_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000317 drm_gem_object_unreference(&obj->base);
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200318 overlay->vid_bo = NULL;
319
320 overlay->crtc->overlay = NULL;
321 overlay->crtc = NULL;
Ville Syrjälä209c2a52015-03-31 10:37:23 +0300322 overlay->active = false;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200323}
324
Daniel Vetter02e792f2009-09-15 22:57:34 +0200325/* overlay needs to be disabled in OCMD reg */
Chris Wilsonce453d82011-02-21 14:43:56 +0000326static int intel_overlay_off(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200327{
328 struct drm_device *dev = overlay->dev;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100329 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100330 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Chris Wilson8dc5d142010-08-12 12:36:12 +0100331 u32 flip_addr = overlay->flip_addr;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100332 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200333
Ville Syrjälä77589f52015-03-31 10:37:22 +0300334 WARN_ON(!overlay->active);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200335
336 /* According to intel docs the overlay hw may hang (when switching
337 * off) without loading the filter coeffs. It is however unclear whether
338 * this applies to the disabling of the overlay or to the switching off
339 * of the hw. Do it in both cases */
340 flip_addr |= OFC_UPDATE;
341
Daniel Vetter6d90c952012-04-26 23:28:05 +0200342 ret = intel_ring_begin(ring, 6);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100343 if (ret)
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100344 return ret;
Chris Wilsonacb868d2012-09-26 13:47:30 +0100345
Daniel Vetter02e792f2009-09-15 22:57:34 +0200346 /* wait for overlay to go idle */
Daniel Vetter6d90c952012-04-26 23:28:05 +0200347 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
348 intel_ring_emit(ring, flip_addr);
349 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Chris Wilson722506f2010-08-12 09:28:50 +0100350 /* turn overlay off */
Daniel Vettera9193982012-10-22 12:55:55 +0200351 if (IS_I830(dev)) {
352 /* Workaround: Don't disable the overlay fully, since otherwise
353 * it dies on the next OVERLAY_ON cmd. */
354 intel_ring_emit(ring, MI_NOOP);
355 intel_ring_emit(ring, MI_NOOP);
356 intel_ring_emit(ring, MI_NOOP);
357 } else {
358 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_OFF);
359 intel_ring_emit(ring, flip_addr);
360 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
361 }
Daniel Vetter6d90c952012-04-26 23:28:05 +0200362 intel_ring_advance(ring);
Chris Wilson722506f2010-08-12 09:28:50 +0100363
Chris Wilsonacb868d2012-09-26 13:47:30 +0100364 return intel_overlay_do_wait_request(overlay, intel_overlay_off_tail);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200365}
366
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200367/* recover from an interruption due to a signal
368 * We have to be careful not to repeat work forever an make forward progess. */
Chris Wilsonce453d82011-02-21 14:43:56 +0000369static int intel_overlay_recover_from_interrupt(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200370{
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200371 int ret;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200372
John Harrison9bfc01a2014-11-24 18:49:31 +0000373 if (overlay->last_flip_req == NULL)
Chris Wilsonb303cf92010-08-12 14:03:48 +0100374 return 0;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200375
Daniel Vettera4b3a572014-11-26 14:17:05 +0100376 ret = i915_wait_request(overlay->last_flip_req);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100377 if (ret)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200378 return ret;
Daniel Vettera4b3a572014-11-26 14:17:05 +0100379 i915_gem_retire_requests(overlay->dev);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200380
Chris Wilsonb303cf92010-08-12 14:03:48 +0100381 if (overlay->flip_tail)
382 overlay->flip_tail(overlay);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200383
John Harrison9bfc01a2014-11-24 18:49:31 +0000384 i915_gem_request_assign(&overlay->last_flip_req, NULL);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200385 return 0;
386}
387
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200388/* Wait for pending overlay flip and release old frame.
389 * Needs to be called before the overlay register are changed
Chris Wilson8d74f652010-08-12 10:35:26 +0100390 * via intel_overlay_(un)map_regs
391 */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200392static int intel_overlay_release_old_vid(struct intel_overlay *overlay)
393{
Chris Wilson5cd68c92010-08-12 12:21:54 +0100394 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300395 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100396 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200397 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200398
Ville Syrjälä1362b772014-11-26 17:07:29 +0200399 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
400
Chris Wilson5cd68c92010-08-12 12:21:54 +0100401 /* Only wait if there is actually an old frame to release to
402 * guarantee forward progress.
403 */
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200404 if (!overlay->old_vid_bo)
405 return 0;
406
Chris Wilson5cd68c92010-08-12 12:21:54 +0100407 if (I915_READ(ISR) & I915_OVERLAY_PLANE_FLIP_PENDING_INTERRUPT) {
408 /* synchronous slowpath */
Daniel Vetter6d90c952012-04-26 23:28:05 +0200409 ret = intel_ring_begin(ring, 2);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100410 if (ret)
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100411 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100412
Daniel Vetter6d90c952012-04-26 23:28:05 +0200413 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
414 intel_ring_emit(ring, MI_NOOP);
415 intel_ring_advance(ring);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200416
Chris Wilsonacb868d2012-09-26 13:47:30 +0100417 ret = intel_overlay_do_wait_request(overlay,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100418 intel_overlay_release_old_vid_tail);
Chris Wilson5cd68c92010-08-12 12:21:54 +0100419 if (ret)
420 return ret;
421 }
Daniel Vetter02e792f2009-09-15 22:57:34 +0200422
Chris Wilson5cd68c92010-08-12 12:21:54 +0100423 intel_overlay_release_old_vid_tail(overlay);
Daniel Vettera071fa02014-06-18 23:28:09 +0200424
425
426 i915_gem_track_fb(overlay->old_vid_bo, NULL,
427 INTEL_FRONTBUFFER_OVERLAY(overlay->crtc->pipe));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200428 return 0;
429}
430
Ville Syrjälä1362b772014-11-26 17:07:29 +0200431void intel_overlay_reset(struct drm_i915_private *dev_priv)
432{
433 struct intel_overlay *overlay = dev_priv->overlay;
434
435 if (!overlay)
436 return;
437
438 intel_overlay_release_old_vid(overlay);
439
440 overlay->last_flip_req = NULL;
441 overlay->old_xscale = 0;
442 overlay->old_yscale = 0;
443 overlay->crtc = NULL;
444 overlay->active = false;
445}
446
Daniel Vetter02e792f2009-09-15 22:57:34 +0200447struct put_image_params {
448 int format;
449 short dst_x;
450 short dst_y;
451 short dst_w;
452 short dst_h;
453 short src_w;
454 short src_scan_h;
455 short src_scan_w;
456 short src_h;
457 short stride_Y;
458 short stride_UV;
459 int offset_Y;
460 int offset_U;
461 int offset_V;
462};
463
464static int packed_depth_bytes(u32 format)
465{
466 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100467 case I915_OVERLAY_YUV422:
468 return 4;
469 case I915_OVERLAY_YUV411:
470 /* return 6; not implemented */
471 default:
472 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200473 }
474}
475
476static int packed_width_bytes(u32 format, short width)
477{
478 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100479 case I915_OVERLAY_YUV422:
480 return width << 1;
481 default:
482 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200483 }
484}
485
486static int uv_hsubsampling(u32 format)
487{
488 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100489 case I915_OVERLAY_YUV422:
490 case I915_OVERLAY_YUV420:
491 return 2;
492 case I915_OVERLAY_YUV411:
493 case I915_OVERLAY_YUV410:
494 return 4;
495 default:
496 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200497 }
498}
499
500static int uv_vsubsampling(u32 format)
501{
502 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100503 case I915_OVERLAY_YUV420:
504 case I915_OVERLAY_YUV410:
505 return 2;
506 case I915_OVERLAY_YUV422:
507 case I915_OVERLAY_YUV411:
508 return 1;
509 default:
510 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200511 }
512}
513
514static u32 calc_swidthsw(struct drm_device *dev, u32 offset, u32 width)
515{
516 u32 mask, shift, ret;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100517 if (IS_GEN2(dev)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +0200518 mask = 0x1f;
519 shift = 5;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100520 } else {
521 mask = 0x3f;
522 shift = 6;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200523 }
524 ret = ((offset + width + mask) >> shift) - (offset >> shift);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100525 if (!IS_GEN2(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +0200526 ret <<= 1;
Akshay Joshi0206e352011-08-16 15:34:10 -0400527 ret -= 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200528 return ret << 2;
529}
530
531static const u16 y_static_hcoeffs[N_HORIZ_Y_TAPS * N_PHASES] = {
532 0x3000, 0xb4a0, 0x1930, 0x1920, 0xb4a0,
533 0x3000, 0xb500, 0x19d0, 0x1880, 0xb440,
534 0x3000, 0xb540, 0x1a88, 0x2f80, 0xb3e0,
535 0x3000, 0xb580, 0x1b30, 0x2e20, 0xb380,
536 0x3000, 0xb5c0, 0x1bd8, 0x2cc0, 0xb320,
537 0x3020, 0xb5e0, 0x1c60, 0x2b80, 0xb2c0,
538 0x3020, 0xb5e0, 0x1cf8, 0x2a20, 0xb260,
539 0x3020, 0xb5e0, 0x1d80, 0x28e0, 0xb200,
540 0x3020, 0xb5c0, 0x1e08, 0x3f40, 0xb1c0,
541 0x3020, 0xb580, 0x1e78, 0x3ce0, 0xb160,
542 0x3040, 0xb520, 0x1ed8, 0x3aa0, 0xb120,
543 0x3040, 0xb4a0, 0x1f30, 0x3880, 0xb0e0,
544 0x3040, 0xb400, 0x1f78, 0x3680, 0xb0a0,
545 0x3020, 0xb340, 0x1fb8, 0x34a0, 0xb060,
546 0x3020, 0xb240, 0x1fe0, 0x32e0, 0xb040,
547 0x3020, 0xb140, 0x1ff8, 0x3160, 0xb020,
Chris Wilson722506f2010-08-12 09:28:50 +0100548 0xb000, 0x3000, 0x0800, 0x3000, 0xb000
549};
550
Daniel Vetter02e792f2009-09-15 22:57:34 +0200551static const u16 uv_static_hcoeffs[N_HORIZ_UV_TAPS * N_PHASES] = {
552 0x3000, 0x1800, 0x1800, 0xb000, 0x18d0, 0x2e60,
553 0xb000, 0x1990, 0x2ce0, 0xb020, 0x1a68, 0x2b40,
554 0xb040, 0x1b20, 0x29e0, 0xb060, 0x1bd8, 0x2880,
555 0xb080, 0x1c88, 0x3e60, 0xb0a0, 0x1d28, 0x3c00,
556 0xb0c0, 0x1db8, 0x39e0, 0xb0e0, 0x1e40, 0x37e0,
557 0xb100, 0x1eb8, 0x3620, 0xb100, 0x1f18, 0x34a0,
558 0xb100, 0x1f68, 0x3360, 0xb0e0, 0x1fa8, 0x3240,
559 0xb0c0, 0x1fe0, 0x3140, 0xb060, 0x1ff0, 0x30a0,
Chris Wilson722506f2010-08-12 09:28:50 +0100560 0x3000, 0x0800, 0x3000
561};
Daniel Vetter02e792f2009-09-15 22:57:34 +0200562
Ben Widawsky75020bc2012-04-16 14:07:43 -0700563static void update_polyphase_filter(struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200564{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700565 memcpy_toio(regs->Y_HCOEFS, y_static_hcoeffs, sizeof(y_static_hcoeffs));
566 memcpy_toio(regs->UV_HCOEFS, uv_static_hcoeffs,
567 sizeof(uv_static_hcoeffs));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200568}
569
570static bool update_scaling_factors(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700571 struct overlay_registers __iomem *regs,
Daniel Vetter02e792f2009-09-15 22:57:34 +0200572 struct put_image_params *params)
573{
574 /* fixed point with a 12 bit shift */
575 u32 xscale, yscale, xscale_UV, yscale_UV;
576#define FP_SHIFT 12
577#define FRACT_MASK 0xfff
578 bool scale_changed = false;
579 int uv_hscale = uv_hsubsampling(params->format);
580 int uv_vscale = uv_vsubsampling(params->format);
581
582 if (params->dst_w > 1)
583 xscale = ((params->src_scan_w - 1) << FP_SHIFT)
584 /(params->dst_w);
585 else
586 xscale = 1 << FP_SHIFT;
587
588 if (params->dst_h > 1)
589 yscale = ((params->src_scan_h - 1) << FP_SHIFT)
590 /(params->dst_h);
591 else
592 yscale = 1 << FP_SHIFT;
593
594 /*if (params->format & I915_OVERLAY_YUV_PLANAR) {*/
Chris Wilson722506f2010-08-12 09:28:50 +0100595 xscale_UV = xscale/uv_hscale;
596 yscale_UV = yscale/uv_vscale;
597 /* make the Y scale to UV scale ratio an exact multiply */
598 xscale = xscale_UV * uv_hscale;
599 yscale = yscale_UV * uv_vscale;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200600 /*} else {
Chris Wilson722506f2010-08-12 09:28:50 +0100601 xscale_UV = 0;
602 yscale_UV = 0;
603 }*/
Daniel Vetter02e792f2009-09-15 22:57:34 +0200604
605 if (xscale != overlay->old_xscale || yscale != overlay->old_yscale)
606 scale_changed = true;
607 overlay->old_xscale = xscale;
608 overlay->old_yscale = yscale;
609
Ben Widawsky75020bc2012-04-16 14:07:43 -0700610 iowrite32(((yscale & FRACT_MASK) << 20) |
611 ((xscale >> FP_SHIFT) << 16) |
612 ((xscale & FRACT_MASK) << 3),
613 &regs->YRGBSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100614
Ben Widawsky75020bc2012-04-16 14:07:43 -0700615 iowrite32(((yscale_UV & FRACT_MASK) << 20) |
616 ((xscale_UV >> FP_SHIFT) << 16) |
617 ((xscale_UV & FRACT_MASK) << 3),
618 &regs->UVSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100619
Ben Widawsky75020bc2012-04-16 14:07:43 -0700620 iowrite32((((yscale >> FP_SHIFT) << 16) |
621 ((yscale_UV >> FP_SHIFT) << 0)),
622 &regs->UVSCALEV);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200623
624 if (scale_changed)
625 update_polyphase_filter(regs);
626
627 return scale_changed;
628}
629
630static void update_colorkey(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700631 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200632{
633 u32 key = overlay->color_key;
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100634 u32 flags;
635
636 flags = 0;
637 if (overlay->color_key_enabled)
638 flags |= DST_KEY_ENABLE;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100639
Matt Roperf4510a22014-04-01 15:22:40 -0700640 switch (overlay->crtc->base.primary->fb->bits_per_pixel) {
Chris Wilson722506f2010-08-12 09:28:50 +0100641 case 8:
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100642 key = 0;
643 flags |= CLK_RGB8I_MASK;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100644 break;
645
Chris Wilson722506f2010-08-12 09:28:50 +0100646 case 16:
Matt Roperf4510a22014-04-01 15:22:40 -0700647 if (overlay->crtc->base.primary->fb->depth == 15) {
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100648 key = RGB15_TO_COLORKEY(key);
649 flags |= CLK_RGB15_MASK;
Chris Wilson722506f2010-08-12 09:28:50 +0100650 } else {
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100651 key = RGB16_TO_COLORKEY(key);
652 flags |= CLK_RGB16_MASK;
Chris Wilson722506f2010-08-12 09:28:50 +0100653 }
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100654 break;
655
Chris Wilson722506f2010-08-12 09:28:50 +0100656 case 24:
657 case 32:
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100658 flags |= CLK_RGB24_MASK;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100659 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200660 }
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100661
662 iowrite32(key, &regs->DCLRKV);
663 iowrite32(flags, &regs->DCLRKM);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200664}
665
666static u32 overlay_cmd_reg(struct put_image_params *params)
667{
668 u32 cmd = OCMD_ENABLE | OCMD_BUF_TYPE_FRAME | OCMD_BUFFER0;
669
670 if (params->format & I915_OVERLAY_YUV_PLANAR) {
671 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100672 case I915_OVERLAY_YUV422:
673 cmd |= OCMD_YUV_422_PLANAR;
674 break;
675 case I915_OVERLAY_YUV420:
676 cmd |= OCMD_YUV_420_PLANAR;
677 break;
678 case I915_OVERLAY_YUV411:
679 case I915_OVERLAY_YUV410:
680 cmd |= OCMD_YUV_410_PLANAR;
681 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200682 }
683 } else { /* YUV packed */
684 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100685 case I915_OVERLAY_YUV422:
686 cmd |= OCMD_YUV_422_PACKED;
687 break;
688 case I915_OVERLAY_YUV411:
689 cmd |= OCMD_YUV_411_PACKED;
690 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200691 }
692
693 switch (params->format & I915_OVERLAY_SWAP_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100694 case I915_OVERLAY_NO_SWAP:
695 break;
696 case I915_OVERLAY_UV_SWAP:
697 cmd |= OCMD_UV_SWAP;
698 break;
699 case I915_OVERLAY_Y_SWAP:
700 cmd |= OCMD_Y_SWAP;
701 break;
702 case I915_OVERLAY_Y_AND_UV_SWAP:
703 cmd |= OCMD_Y_AND_UV_SWAP;
704 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200705 }
706 }
707
708 return cmd;
709}
710
Chris Wilson5fe82c52010-08-12 12:38:21 +0100711static int intel_overlay_do_put_image(struct intel_overlay *overlay,
Chris Wilson05394f32010-11-08 19:18:58 +0000712 struct drm_i915_gem_object *new_bo,
Chris Wilson5fe82c52010-08-12 12:38:21 +0100713 struct put_image_params *params)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200714{
715 int ret, tmp_width;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700716 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200717 bool scale_changed = false;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200718 struct drm_device *dev = overlay->dev;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700719 u32 swidth, swidthsw, sheight, ostride;
Daniel Vettera071fa02014-06-18 23:28:09 +0200720 enum pipe pipe = overlay->crtc->pipe;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200721
Ville Syrjälä77589f52015-03-31 10:37:22 +0300722 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
723 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200724
Daniel Vetter02e792f2009-09-15 22:57:34 +0200725 ret = intel_overlay_release_old_vid(overlay);
726 if (ret != 0)
727 return ret;
728
Tvrtko Ursuline6617332015-03-23 11:10:33 +0000729 ret = i915_gem_object_pin_to_display_plane(new_bo, 0, NULL,
730 &i915_ggtt_view_normal);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200731 if (ret != 0)
732 return ret;
733
Chris Wilsond9e86c02010-11-10 16:40:20 +0000734 ret = i915_gem_object_put_fence(new_bo);
735 if (ret)
736 goto out_unpin;
737
Daniel Vetter02e792f2009-09-15 22:57:34 +0200738 if (!overlay->active) {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700739 u32 oconfig;
Chris Wilson8d74f652010-08-12 10:35:26 +0100740 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200741 if (!regs) {
742 ret = -ENOMEM;
743 goto out_unpin;
744 }
Ben Widawsky75020bc2012-04-16 14:07:43 -0700745 oconfig = OCONF_CC_OUT_8BIT;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100746 if (IS_GEN4(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -0700747 oconfig |= OCONF_CSC_MODE_BT709;
Daniel Vettera071fa02014-06-18 23:28:09 +0200748 oconfig |= pipe == 0 ?
Daniel Vetter02e792f2009-09-15 22:57:34 +0200749 OCONF_PIPE_A : OCONF_PIPE_B;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700750 iowrite32(oconfig, &regs->OCONFIG);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100751 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200752
753 ret = intel_overlay_on(overlay);
754 if (ret != 0)
755 goto out_unpin;
756 }
757
Chris Wilson8d74f652010-08-12 10:35:26 +0100758 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200759 if (!regs) {
760 ret = -ENOMEM;
761 goto out_unpin;
762 }
763
Ben Widawsky75020bc2012-04-16 14:07:43 -0700764 iowrite32((params->dst_y << 16) | params->dst_x, &regs->DWINPOS);
765 iowrite32((params->dst_h << 16) | params->dst_w, &regs->DWINSZ);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200766
767 if (params->format & I915_OVERLAY_YUV_PACKED)
768 tmp_width = packed_width_bytes(params->format, params->src_w);
769 else
770 tmp_width = params->src_w;
771
Ben Widawsky75020bc2012-04-16 14:07:43 -0700772 swidth = params->src_w;
773 swidthsw = calc_swidthsw(overlay->dev, params->offset_Y, tmp_width);
774 sheight = params->src_h;
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700775 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_Y, &regs->OBUF_0Y);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700776 ostride = params->stride_Y;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200777
778 if (params->format & I915_OVERLAY_YUV_PLANAR) {
779 int uv_hscale = uv_hsubsampling(params->format);
780 int uv_vscale = uv_vsubsampling(params->format);
781 u32 tmp_U, tmp_V;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700782 swidth |= (params->src_w/uv_hscale) << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200783 tmp_U = calc_swidthsw(overlay->dev, params->offset_U,
Chris Wilson722506f2010-08-12 09:28:50 +0100784 params->src_w/uv_hscale);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200785 tmp_V = calc_swidthsw(overlay->dev, params->offset_V,
Chris Wilson722506f2010-08-12 09:28:50 +0100786 params->src_w/uv_hscale);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700787 swidthsw |= max_t(u32, tmp_U, tmp_V) << 16;
788 sheight |= (params->src_h/uv_vscale) << 16;
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700789 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_U, &regs->OBUF_0U);
790 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_V, &regs->OBUF_0V);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700791 ostride |= params->stride_UV << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200792 }
793
Ben Widawsky75020bc2012-04-16 14:07:43 -0700794 iowrite32(swidth, &regs->SWIDTH);
795 iowrite32(swidthsw, &regs->SWIDTHSW);
796 iowrite32(sheight, &regs->SHEIGHT);
797 iowrite32(ostride, &regs->OSTRIDE);
798
Daniel Vetter02e792f2009-09-15 22:57:34 +0200799 scale_changed = update_scaling_factors(overlay, regs, params);
800
801 update_colorkey(overlay, regs);
802
Ben Widawsky75020bc2012-04-16 14:07:43 -0700803 iowrite32(overlay_cmd_reg(params), &regs->OCMD);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200804
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100805 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200806
Chris Wilson8dc5d142010-08-12 12:36:12 +0100807 ret = intel_overlay_continue(overlay, scale_changed);
808 if (ret)
809 goto out_unpin;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200810
Daniel Vettera071fa02014-06-18 23:28:09 +0200811 i915_gem_track_fb(overlay->vid_bo, new_bo,
812 INTEL_FRONTBUFFER_OVERLAY(pipe));
813
Daniel Vetter02e792f2009-09-15 22:57:34 +0200814 overlay->old_vid_bo = overlay->vid_bo;
Chris Wilson05394f32010-11-08 19:18:58 +0000815 overlay->vid_bo = new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200816
Daniel Vetterf99d7062014-06-19 16:01:59 +0200817 intel_frontbuffer_flip(dev,
818 INTEL_FRONTBUFFER_OVERLAY(pipe));
819
Daniel Vetter02e792f2009-09-15 22:57:34 +0200820 return 0;
821
822out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800823 i915_gem_object_ggtt_unpin(new_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200824 return ret;
825}
826
Chris Wilsonce453d82011-02-21 14:43:56 +0000827int intel_overlay_switch_off(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200828{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700829 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200830 struct drm_device *dev = overlay->dev;
Chris Wilson5dcdbcb2010-08-12 13:50:28 +0100831 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200832
Ville Syrjälä77589f52015-03-31 10:37:22 +0300833 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
834 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200835
Chris Wilsonce453d82011-02-21 14:43:56 +0000836 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +0100837 if (ret != 0)
838 return ret;
Daniel Vetter9bedb972009-11-30 15:55:49 +0100839
Daniel Vetter02e792f2009-09-15 22:57:34 +0200840 if (!overlay->active)
841 return 0;
842
Daniel Vetter02e792f2009-09-15 22:57:34 +0200843 ret = intel_overlay_release_old_vid(overlay);
844 if (ret != 0)
845 return ret;
846
Chris Wilson8d74f652010-08-12 10:35:26 +0100847 regs = intel_overlay_map_regs(overlay);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700848 iowrite32(0, &regs->OCMD);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100849 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200850
Chris Wilsonce453d82011-02-21 14:43:56 +0000851 ret = intel_overlay_off(overlay);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200852 if (ret != 0)
853 return ret;
854
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200855 intel_overlay_off_tail(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200856 return 0;
857}
858
859static int check_overlay_possible_on_crtc(struct intel_overlay *overlay,
860 struct intel_crtc *crtc)
861{
Chris Wilsonf7abfe82010-09-13 14:19:16 +0100862 if (!crtc->active)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200863 return -EINVAL;
864
Daniel Vetter02e792f2009-09-15 22:57:34 +0200865 /* can't use the overlay with double wide pipe */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200866 if (crtc->config->double_wide)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200867 return -EINVAL;
868
869 return 0;
870}
871
872static void update_pfit_vscale_ratio(struct intel_overlay *overlay)
873{
874 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300875 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200876 u32 pfit_control = I915_READ(PFIT_CONTROL);
Chris Wilson446d2182010-08-12 11:15:58 +0100877 u32 ratio;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200878
879 /* XXX: This is not the same logic as in the xorg driver, but more in
Chris Wilson446d2182010-08-12 11:15:58 +0100880 * line with the intel documentation for the i965
881 */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100882 if (INTEL_INFO(dev)->gen >= 4) {
Akshay Joshi0206e352011-08-16 15:34:10 -0400883 /* on i965 use the PGM reg to read out the autoscaler values */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100884 ratio = I915_READ(PFIT_PGM_RATIOS) >> PFIT_VERT_SCALE_SHIFT_965;
885 } else {
Chris Wilson446d2182010-08-12 11:15:58 +0100886 if (pfit_control & VERT_AUTO_SCALE)
887 ratio = I915_READ(PFIT_AUTO_RATIOS);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200888 else
Chris Wilson446d2182010-08-12 11:15:58 +0100889 ratio = I915_READ(PFIT_PGM_RATIOS);
890 ratio >>= PFIT_VERT_SCALE_SHIFT;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200891 }
892
893 overlay->pfit_vscale_ratio = ratio;
894}
895
896static int check_overlay_dst(struct intel_overlay *overlay,
897 struct drm_intel_overlay_put_image *rec)
898{
899 struct drm_display_mode *mode = &overlay->crtc->base.mode;
900
Daniel Vetter75c13992012-01-28 23:48:46 +0100901 if (rec->dst_x < mode->hdisplay &&
902 rec->dst_x + rec->dst_width <= mode->hdisplay &&
903 rec->dst_y < mode->vdisplay &&
904 rec->dst_y + rec->dst_height <= mode->vdisplay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200905 return 0;
906 else
907 return -EINVAL;
908}
909
910static int check_overlay_scaling(struct put_image_params *rec)
911{
912 u32 tmp;
913
914 /* downscaling limit is 8.0 */
915 tmp = ((rec->src_scan_h << 16) / rec->dst_h) >> 16;
916 if (tmp > 7)
917 return -EINVAL;
918 tmp = ((rec->src_scan_w << 16) / rec->dst_w) >> 16;
919 if (tmp > 7)
920 return -EINVAL;
921
922 return 0;
923}
924
925static int check_overlay_src(struct drm_device *dev,
926 struct drm_intel_overlay_put_image *rec,
Chris Wilson05394f32010-11-08 19:18:58 +0000927 struct drm_i915_gem_object *new_bo)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200928{
Daniel Vetter02e792f2009-09-15 22:57:34 +0200929 int uv_hscale = uv_hsubsampling(rec->flags);
930 int uv_vscale = uv_vsubsampling(rec->flags);
Dan Carpenter8f28f542010-10-27 23:17:25 +0200931 u32 stride_mask;
932 int depth;
933 u32 tmp;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200934
935 /* check src dimensions */
936 if (IS_845G(dev) || IS_I830(dev)) {
Chris Wilson722506f2010-08-12 09:28:50 +0100937 if (rec->src_height > IMAGE_MAX_HEIGHT_LEGACY ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100938 rec->src_width > IMAGE_MAX_WIDTH_LEGACY)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200939 return -EINVAL;
940 } else {
Chris Wilson722506f2010-08-12 09:28:50 +0100941 if (rec->src_height > IMAGE_MAX_HEIGHT ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100942 rec->src_width > IMAGE_MAX_WIDTH)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200943 return -EINVAL;
944 }
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100945
Daniel Vetter02e792f2009-09-15 22:57:34 +0200946 /* better safe than sorry, use 4 as the maximal subsampling ratio */
Chris Wilson722506f2010-08-12 09:28:50 +0100947 if (rec->src_height < N_VERT_Y_TAPS*4 ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100948 rec->src_width < N_HORIZ_Y_TAPS*4)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200949 return -EINVAL;
950
Chris Wilsona1efd142010-07-12 19:35:38 +0100951 /* check alignment constraints */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200952 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100953 case I915_OVERLAY_RGB:
954 /* not implemented */
955 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100956
Chris Wilson722506f2010-08-12 09:28:50 +0100957 case I915_OVERLAY_YUV_PACKED:
Chris Wilson722506f2010-08-12 09:28:50 +0100958 if (uv_vscale != 1)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200959 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100960
961 depth = packed_depth_bytes(rec->flags);
Chris Wilson722506f2010-08-12 09:28:50 +0100962 if (depth < 0)
963 return depth;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100964
Chris Wilson722506f2010-08-12 09:28:50 +0100965 /* ignore UV planes */
966 rec->stride_UV = 0;
967 rec->offset_U = 0;
968 rec->offset_V = 0;
969 /* check pixel alignment */
970 if (rec->offset_Y % depth)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200971 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +0100972 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100973
Chris Wilson722506f2010-08-12 09:28:50 +0100974 case I915_OVERLAY_YUV_PLANAR:
975 if (uv_vscale < 0 || uv_hscale < 0)
976 return -EINVAL;
977 /* no offset restrictions for planar formats */
978 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100979
Chris Wilson722506f2010-08-12 09:28:50 +0100980 default:
981 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200982 }
983
984 if (rec->src_width % uv_hscale)
985 return -EINVAL;
986
987 /* stride checking */
Chris Wilsona1efd142010-07-12 19:35:38 +0100988 if (IS_I830(dev) || IS_845G(dev))
989 stride_mask = 255;
990 else
991 stride_mask = 63;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200992
993 if (rec->stride_Y & stride_mask || rec->stride_UV & stride_mask)
994 return -EINVAL;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100995 if (IS_GEN4(dev) && rec->stride_Y < 512)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200996 return -EINVAL;
997
998 tmp = (rec->flags & I915_OVERLAY_TYPE_MASK) == I915_OVERLAY_YUV_PLANAR ?
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100999 4096 : 8192;
1000 if (rec->stride_Y > tmp || rec->stride_UV > 2*1024)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001001 return -EINVAL;
1002
1003 /* check buffer dimensions */
1004 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +01001005 case I915_OVERLAY_RGB:
1006 case I915_OVERLAY_YUV_PACKED:
1007 /* always 4 Y values per depth pixels */
1008 if (packed_width_bytes(rec->flags, rec->src_width) > rec->stride_Y)
1009 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001010
Chris Wilson722506f2010-08-12 09:28:50 +01001011 tmp = rec->stride_Y*rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001012 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001013 return -EINVAL;
1014 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001015
Chris Wilson722506f2010-08-12 09:28:50 +01001016 case I915_OVERLAY_YUV_PLANAR:
1017 if (rec->src_width > rec->stride_Y)
1018 return -EINVAL;
1019 if (rec->src_width/uv_hscale > rec->stride_UV)
1020 return -EINVAL;
1021
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001022 tmp = rec->stride_Y * rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001023 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001024 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001025
1026 tmp = rec->stride_UV * (rec->src_height / uv_vscale);
Chris Wilson05394f32010-11-08 19:18:58 +00001027 if (rec->offset_U + tmp > new_bo->base.size ||
1028 rec->offset_V + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001029 return -EINVAL;
1030 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001031 }
1032
1033 return 0;
1034}
1035
Chris Wilsone9e331a2010-09-13 01:16:10 +01001036/**
1037 * Return the pipe currently connected to the panel fitter,
1038 * or -1 if the panel fitter is not present or not in use
1039 */
1040static int intel_panel_fitter_pipe(struct drm_device *dev)
1041{
1042 struct drm_i915_private *dev_priv = dev->dev_private;
1043 u32 pfit_control;
1044
1045 /* i830 doesn't have a panel fitter */
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02001046 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001047 return -1;
1048
1049 pfit_control = I915_READ(PFIT_CONTROL);
1050
1051 /* See if the panel fitter is in use */
1052 if ((pfit_control & PFIT_ENABLE) == 0)
1053 return -1;
1054
1055 /* 965 can place panel fitter on either pipe */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001056 if (IS_GEN4(dev))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001057 return (pfit_control >> 29) & 0x3;
1058
1059 /* older chips can only use pipe 1 */
1060 return 1;
1061}
1062
Daniel Vetter02e792f2009-09-15 22:57:34 +02001063int intel_overlay_put_image(struct drm_device *dev, void *data,
Akshay Joshi0206e352011-08-16 15:34:10 -04001064 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001065{
1066 struct drm_intel_overlay_put_image *put_image_rec = data;
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001067 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001068 struct intel_overlay *overlay;
Rob Clark7707e652014-07-17 23:30:04 -04001069 struct drm_crtc *drmmode_crtc;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001070 struct intel_crtc *crtc;
Chris Wilson05394f32010-11-08 19:18:58 +00001071 struct drm_i915_gem_object *new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001072 struct put_image_params *params;
1073 int ret;
1074
Daniel Vetter02e792f2009-09-15 22:57:34 +02001075 overlay = dev_priv->overlay;
1076 if (!overlay) {
1077 DRM_DEBUG("userspace bug: no overlay\n");
1078 return -ENODEV;
1079 }
1080
1081 if (!(put_image_rec->flags & I915_OVERLAY_ENABLE)) {
Daniel Vettera0e99e62012-12-02 01:05:46 +01001082 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001083 mutex_lock(&dev->struct_mutex);
1084
Chris Wilsonce453d82011-02-21 14:43:56 +00001085 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001086
1087 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001088 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001089
1090 return ret;
1091 }
1092
Daniel Vetterb14c5672013-09-19 12:18:32 +02001093 params = kmalloc(sizeof(*params), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001094 if (!params)
1095 return -ENOMEM;
1096
Rob Clark7707e652014-07-17 23:30:04 -04001097 drmmode_crtc = drm_crtc_find(dev, put_image_rec->crtc_id);
1098 if (!drmmode_crtc) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001099 ret = -ENOENT;
1100 goto out_free;
1101 }
Rob Clark7707e652014-07-17 23:30:04 -04001102 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001103
Chris Wilson05394f32010-11-08 19:18:58 +00001104 new_bo = to_intel_bo(drm_gem_object_lookup(dev, file_priv,
1105 put_image_rec->bo_handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001106 if (&new_bo->base == NULL) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001107 ret = -ENOENT;
1108 goto out_free;
1109 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001110
Daniel Vettera0e99e62012-12-02 01:05:46 +01001111 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001112 mutex_lock(&dev->struct_mutex);
1113
Chris Wilsond9e86c02010-11-10 16:40:20 +00001114 if (new_bo->tiling_mode) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01001115 DRM_DEBUG_KMS("buffer used for overlay image can not be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00001116 ret = -EINVAL;
1117 goto out_unlock;
1118 }
1119
Chris Wilsonce453d82011-02-21 14:43:56 +00001120 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +01001121 if (ret != 0)
1122 goto out_unlock;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02001123
Daniel Vetter02e792f2009-09-15 22:57:34 +02001124 if (overlay->crtc != crtc) {
1125 struct drm_display_mode *mode = &crtc->base.mode;
Chris Wilsonce453d82011-02-21 14:43:56 +00001126 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001127 if (ret != 0)
1128 goto out_unlock;
1129
1130 ret = check_overlay_possible_on_crtc(overlay, crtc);
1131 if (ret != 0)
1132 goto out_unlock;
1133
1134 overlay->crtc = crtc;
1135 crtc->overlay = overlay;
1136
Chris Wilsone9e331a2010-09-13 01:16:10 +01001137 /* line too wide, i.e. one-line-mode */
1138 if (mode->hdisplay > 1024 &&
1139 intel_panel_fitter_pipe(dev) == crtc->pipe) {
Ville Syrjälä209c2a52015-03-31 10:37:23 +03001140 overlay->pfit_active = true;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001141 update_pfit_vscale_ratio(overlay);
1142 } else
Ville Syrjälä209c2a52015-03-31 10:37:23 +03001143 overlay->pfit_active = false;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001144 }
1145
1146 ret = check_overlay_dst(overlay, put_image_rec);
1147 if (ret != 0)
1148 goto out_unlock;
1149
1150 if (overlay->pfit_active) {
1151 params->dst_y = ((((u32)put_image_rec->dst_y) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001152 overlay->pfit_vscale_ratio);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001153 /* shifting right rounds downwards, so add 1 */
1154 params->dst_h = ((((u32)put_image_rec->dst_height) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001155 overlay->pfit_vscale_ratio) + 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001156 } else {
1157 params->dst_y = put_image_rec->dst_y;
1158 params->dst_h = put_image_rec->dst_height;
1159 }
1160 params->dst_x = put_image_rec->dst_x;
1161 params->dst_w = put_image_rec->dst_width;
1162
1163 params->src_w = put_image_rec->src_width;
1164 params->src_h = put_image_rec->src_height;
1165 params->src_scan_w = put_image_rec->src_scan_width;
1166 params->src_scan_h = put_image_rec->src_scan_height;
Chris Wilson722506f2010-08-12 09:28:50 +01001167 if (params->src_scan_h > params->src_h ||
1168 params->src_scan_w > params->src_w) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001169 ret = -EINVAL;
1170 goto out_unlock;
1171 }
1172
1173 ret = check_overlay_src(dev, put_image_rec, new_bo);
1174 if (ret != 0)
1175 goto out_unlock;
1176 params->format = put_image_rec->flags & ~I915_OVERLAY_FLAGS_MASK;
1177 params->stride_Y = put_image_rec->stride_Y;
1178 params->stride_UV = put_image_rec->stride_UV;
1179 params->offset_Y = put_image_rec->offset_Y;
1180 params->offset_U = put_image_rec->offset_U;
1181 params->offset_V = put_image_rec->offset_V;
1182
1183 /* Check scaling after src size to prevent a divide-by-zero. */
1184 ret = check_overlay_scaling(params);
1185 if (ret != 0)
1186 goto out_unlock;
1187
1188 ret = intel_overlay_do_put_image(overlay, new_bo, params);
1189 if (ret != 0)
1190 goto out_unlock;
1191
1192 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001193 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001194
1195 kfree(params);
1196
1197 return 0;
1198
1199out_unlock:
1200 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001201 drm_modeset_unlock_all(dev);
Chris Wilson05394f32010-11-08 19:18:58 +00001202 drm_gem_object_unreference_unlocked(&new_bo->base);
Dan Carpenter915a4282010-03-06 14:05:39 +03001203out_free:
Daniel Vetter02e792f2009-09-15 22:57:34 +02001204 kfree(params);
1205
1206 return ret;
1207}
1208
1209static void update_reg_attrs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001210 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001211{
Ben Widawsky75020bc2012-04-16 14:07:43 -07001212 iowrite32((overlay->contrast << 18) | (overlay->brightness & 0xff),
1213 &regs->OCLRC0);
1214 iowrite32(overlay->saturation, &regs->OCLRC1);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001215}
1216
1217static bool check_gamma_bounds(u32 gamma1, u32 gamma2)
1218{
1219 int i;
1220
1221 if (gamma1 & 0xff000000 || gamma2 & 0xff000000)
1222 return false;
1223
1224 for (i = 0; i < 3; i++) {
Chris Wilson722506f2010-08-12 09:28:50 +01001225 if (((gamma1 >> i*8) & 0xff) >= ((gamma2 >> i*8) & 0xff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001226 return false;
1227 }
1228
1229 return true;
1230}
1231
1232static bool check_gamma5_errata(u32 gamma5)
1233{
1234 int i;
1235
1236 for (i = 0; i < 3; i++) {
1237 if (((gamma5 >> i*8) & 0xff) == 0x80)
1238 return false;
1239 }
1240
1241 return true;
1242}
1243
1244static int check_gamma(struct drm_intel_overlay_attrs *attrs)
1245{
Chris Wilson722506f2010-08-12 09:28:50 +01001246 if (!check_gamma_bounds(0, attrs->gamma0) ||
1247 !check_gamma_bounds(attrs->gamma0, attrs->gamma1) ||
1248 !check_gamma_bounds(attrs->gamma1, attrs->gamma2) ||
1249 !check_gamma_bounds(attrs->gamma2, attrs->gamma3) ||
1250 !check_gamma_bounds(attrs->gamma3, attrs->gamma4) ||
1251 !check_gamma_bounds(attrs->gamma4, attrs->gamma5) ||
1252 !check_gamma_bounds(attrs->gamma5, 0x00ffffff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001253 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001254
Daniel Vetter02e792f2009-09-15 22:57:34 +02001255 if (!check_gamma5_errata(attrs->gamma5))
1256 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001257
Daniel Vetter02e792f2009-09-15 22:57:34 +02001258 return 0;
1259}
1260
1261int intel_overlay_attrs(struct drm_device *dev, void *data,
Akshay Joshi0206e352011-08-16 15:34:10 -04001262 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001263{
1264 struct drm_intel_overlay_attrs *attrs = data;
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001265 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001266 struct intel_overlay *overlay;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001267 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001268 int ret;
1269
Daniel Vetter02e792f2009-09-15 22:57:34 +02001270 overlay = dev_priv->overlay;
1271 if (!overlay) {
1272 DRM_DEBUG("userspace bug: no overlay\n");
1273 return -ENODEV;
1274 }
1275
Daniel Vettera0e99e62012-12-02 01:05:46 +01001276 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001277 mutex_lock(&dev->struct_mutex);
1278
Chris Wilson60fc3322010-08-12 10:44:45 +01001279 ret = -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001280 if (!(attrs->flags & I915_OVERLAY_UPDATE_ATTRS)) {
Chris Wilson60fc3322010-08-12 10:44:45 +01001281 attrs->color_key = overlay->color_key;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001282 attrs->brightness = overlay->brightness;
Chris Wilson60fc3322010-08-12 10:44:45 +01001283 attrs->contrast = overlay->contrast;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001284 attrs->saturation = overlay->saturation;
1285
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001286 if (!IS_GEN2(dev)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001287 attrs->gamma0 = I915_READ(OGAMC0);
1288 attrs->gamma1 = I915_READ(OGAMC1);
1289 attrs->gamma2 = I915_READ(OGAMC2);
1290 attrs->gamma3 = I915_READ(OGAMC3);
1291 attrs->gamma4 = I915_READ(OGAMC4);
1292 attrs->gamma5 = I915_READ(OGAMC5);
1293 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001294 } else {
Chris Wilson60fc3322010-08-12 10:44:45 +01001295 if (attrs->brightness < -128 || attrs->brightness > 127)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001296 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001297 if (attrs->contrast > 255)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001298 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001299 if (attrs->saturation > 1023)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001300 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001301
Chris Wilson60fc3322010-08-12 10:44:45 +01001302 overlay->color_key = attrs->color_key;
1303 overlay->brightness = attrs->brightness;
1304 overlay->contrast = attrs->contrast;
1305 overlay->saturation = attrs->saturation;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001306
Chris Wilson8d74f652010-08-12 10:35:26 +01001307 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001308 if (!regs) {
1309 ret = -ENOMEM;
1310 goto out_unlock;
1311 }
1312
1313 update_reg_attrs(overlay, regs);
1314
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001315 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001316
1317 if (attrs->flags & I915_OVERLAY_UPDATE_GAMMA) {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001318 if (IS_GEN2(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001319 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001320
1321 if (overlay->active) {
1322 ret = -EBUSY;
1323 goto out_unlock;
1324 }
1325
1326 ret = check_gamma(attrs);
Chris Wilson60fc3322010-08-12 10:44:45 +01001327 if (ret)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001328 goto out_unlock;
1329
1330 I915_WRITE(OGAMC0, attrs->gamma0);
1331 I915_WRITE(OGAMC1, attrs->gamma1);
1332 I915_WRITE(OGAMC2, attrs->gamma2);
1333 I915_WRITE(OGAMC3, attrs->gamma3);
1334 I915_WRITE(OGAMC4, attrs->gamma4);
1335 I915_WRITE(OGAMC5, attrs->gamma5);
1336 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001337 }
Chris Wilsonea9da4e2015-04-02 10:35:08 +01001338 overlay->color_key_enabled = (attrs->flags & I915_OVERLAY_DISABLE_DEST_COLORKEY) == 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001339
Chris Wilson60fc3322010-08-12 10:44:45 +01001340 ret = 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001341out_unlock:
1342 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001343 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001344
1345 return ret;
1346}
1347
1348void intel_setup_overlay(struct drm_device *dev)
1349{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001350 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001351 struct intel_overlay *overlay;
Chris Wilson05394f32010-11-08 19:18:58 +00001352 struct drm_i915_gem_object *reg_bo;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001353 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001354 int ret;
1355
Chris Wilson315781482010-08-12 09:42:51 +01001356 if (!HAS_OVERLAY(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001357 return;
1358
Daniel Vetterb14c5672013-09-19 12:18:32 +02001359 overlay = kzalloc(sizeof(*overlay), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001360 if (!overlay)
1361 return;
Chris Wilson79d24272011-06-28 11:27:47 +01001362
1363 mutex_lock(&dev->struct_mutex);
1364 if (WARN_ON(dev_priv->overlay))
1365 goto out_free;
1366
Daniel Vetter02e792f2009-09-15 22:57:34 +02001367 overlay->dev = dev;
1368
Daniel Vetterf63a4842013-07-23 19:24:38 +02001369 reg_bo = NULL;
1370 if (!OVERLAY_NEEDS_PHYSICAL(dev))
1371 reg_bo = i915_gem_object_create_stolen(dev, PAGE_SIZE);
Chris Wilson80405132012-11-15 11:32:29 +00001372 if (reg_bo == NULL)
1373 reg_bo = i915_gem_alloc_object(dev, PAGE_SIZE);
1374 if (reg_bo == NULL)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001375 goto out_free;
Chris Wilson05394f32010-11-08 19:18:58 +00001376 overlay->reg_bo = reg_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001377
Chris Wilson315781482010-08-12 09:42:51 +01001378 if (OVERLAY_NEEDS_PHYSICAL(dev)) {
Chris Wilson00731152014-05-21 12:42:56 +01001379 ret = i915_gem_object_attach_phys(reg_bo, PAGE_SIZE);
Akshay Joshi0206e352011-08-16 15:34:10 -04001380 if (ret) {
1381 DRM_ERROR("failed to attach phys overlay regs\n");
1382 goto out_free_bo;
1383 }
Chris Wilson00731152014-05-21 12:42:56 +01001384 overlay->flip_addr = reg_bo->phys_handle->busaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001385 } else {
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001386 ret = i915_gem_obj_ggtt_pin(reg_bo, PAGE_SIZE, PIN_MAPPABLE);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001387 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001388 DRM_ERROR("failed to pin overlay register bo\n");
1389 goto out_free_bo;
1390 }
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001391 overlay->flip_addr = i915_gem_obj_ggtt_offset(reg_bo);
Chris Wilson0ddc1282010-08-12 09:35:00 +01001392
1393 ret = i915_gem_object_set_to_gtt_domain(reg_bo, true);
1394 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001395 DRM_ERROR("failed to move overlay register bo into the GTT\n");
1396 goto out_unpin_bo;
1397 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001398 }
1399
1400 /* init all values */
1401 overlay->color_key = 0x0101fe;
Chris Wilsonea9da4e2015-04-02 10:35:08 +01001402 overlay->color_key_enabled = true;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001403 overlay->brightness = -19;
1404 overlay->contrast = 75;
1405 overlay->saturation = 146;
1406
Chris Wilson8d74f652010-08-12 10:35:26 +01001407 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001408 if (!regs)
Chris Wilson79d24272011-06-28 11:27:47 +01001409 goto out_unpin_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001410
Ben Widawsky75020bc2012-04-16 14:07:43 -07001411 memset_io(regs, 0, sizeof(struct overlay_registers));
Daniel Vetter02e792f2009-09-15 22:57:34 +02001412 update_polyphase_filter(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001413 update_reg_attrs(overlay, regs);
1414
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001415 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001416
1417 dev_priv->overlay = overlay;
Chris Wilson79d24272011-06-28 11:27:47 +01001418 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001419 DRM_INFO("initialized overlay support\n");
1420 return;
1421
Chris Wilson0ddc1282010-08-12 09:35:00 +01001422out_unpin_bo:
Chris Wilson79d24272011-06-28 11:27:47 +01001423 if (!OVERLAY_NEEDS_PHYSICAL(dev))
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001424 i915_gem_object_ggtt_unpin(reg_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001425out_free_bo:
Chris Wilson05394f32010-11-08 19:18:58 +00001426 drm_gem_object_unreference(&reg_bo->base);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001427out_free:
Chris Wilson79d24272011-06-28 11:27:47 +01001428 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001429 kfree(overlay);
1430 return;
1431}
1432
1433void intel_cleanup_overlay(struct drm_device *dev)
1434{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001435 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001436
Chris Wilson62cf4e62010-08-12 10:50:36 +01001437 if (!dev_priv->overlay)
1438 return;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001439
Chris Wilson62cf4e62010-08-12 10:50:36 +01001440 /* The bo's should be free'd by the generic code already.
1441 * Furthermore modesetting teardown happens beforehand so the
1442 * hardware should be off already */
Ville Syrjälä77589f52015-03-31 10:37:22 +03001443 WARN_ON(dev_priv->overlay->active);
Chris Wilson62cf4e62010-08-12 10:50:36 +01001444
1445 drm_gem_object_unreference_unlocked(&dev_priv->overlay->reg_bo->base);
1446 kfree(dev_priv->overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001447}
Chris Wilson6ef3d422010-08-04 20:26:07 +01001448
1449struct intel_overlay_error_state {
1450 struct overlay_registers regs;
1451 unsigned long base;
1452 u32 dovsta;
1453 u32 isr;
1454};
1455
Ben Widawsky75020bc2012-04-16 14:07:43 -07001456static struct overlay_registers __iomem *
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001457intel_overlay_map_regs_atomic(struct intel_overlay *overlay)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001458{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001459 struct drm_i915_private *dev_priv = overlay->dev->dev_private;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001460 struct overlay_registers __iomem *regs;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001461
1462 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -07001463 /* Cast to make sparse happy, but it's wc memory anyway, so
1464 * equivalent to the wc io mapping on X86. */
1465 regs = (struct overlay_registers __iomem *)
Chris Wilson00731152014-05-21 12:42:56 +01001466 overlay->reg_bo->phys_handle->vaddr;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001467 else
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001468 regs = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001469 i915_gem_obj_ggtt_offset(overlay->reg_bo));
Chris Wilson3bd3c932010-08-19 08:19:30 +01001470
1471 return regs;
1472}
1473
1474static void intel_overlay_unmap_regs_atomic(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001475 struct overlay_registers __iomem *regs)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001476{
1477 if (!OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001478 io_mapping_unmap_atomic(regs);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001479}
1480
1481
Chris Wilson6ef3d422010-08-04 20:26:07 +01001482struct intel_overlay_error_state *
1483intel_overlay_capture_error_state(struct drm_device *dev)
1484{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001485 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson6ef3d422010-08-04 20:26:07 +01001486 struct intel_overlay *overlay = dev_priv->overlay;
1487 struct intel_overlay_error_state *error;
1488 struct overlay_registers __iomem *regs;
1489
1490 if (!overlay || !overlay->active)
1491 return NULL;
1492
1493 error = kmalloc(sizeof(*error), GFP_ATOMIC);
1494 if (error == NULL)
1495 return NULL;
1496
1497 error->dovsta = I915_READ(DOVSTA);
1498 error->isr = I915_READ(ISR);
Chris Wilson315781482010-08-12 09:42:51 +01001499 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Chris Wilson00731152014-05-21 12:42:56 +01001500 error->base = (__force long)overlay->reg_bo->phys_handle->vaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001501 else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001502 error->base = i915_gem_obj_ggtt_offset(overlay->reg_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001503
1504 regs = intel_overlay_map_regs_atomic(overlay);
1505 if (!regs)
1506 goto err;
1507
1508 memcpy_fromio(&error->regs, regs, sizeof(struct overlay_registers));
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001509 intel_overlay_unmap_regs_atomic(overlay, regs);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001510
1511 return error;
1512
1513err:
1514 kfree(error);
1515 return NULL;
1516}
1517
1518void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001519intel_overlay_print_error_state(struct drm_i915_error_state_buf *m,
1520 struct intel_overlay_error_state *error)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001521{
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001522 i915_error_printf(m, "Overlay, status: 0x%08x, interrupt: 0x%08x\n",
1523 error->dovsta, error->isr);
1524 i915_error_printf(m, " Register file at 0x%08lx:\n",
1525 error->base);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001526
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001527#define P(x) i915_error_printf(m, " " #x ": 0x%08x\n", error->regs.x)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001528 P(OBUF_0Y);
1529 P(OBUF_1Y);
1530 P(OBUF_0U);
1531 P(OBUF_0V);
1532 P(OBUF_1U);
1533 P(OBUF_1V);
1534 P(OSTRIDE);
1535 P(YRGB_VPH);
1536 P(UV_VPH);
1537 P(HORZ_PH);
1538 P(INIT_PHS);
1539 P(DWINPOS);
1540 P(DWINSZ);
1541 P(SWIDTH);
1542 P(SWIDTHSW);
1543 P(SHEIGHT);
1544 P(YRGBSCALE);
1545 P(UVSCALE);
1546 P(OCLRC0);
1547 P(OCLRC1);
1548 P(DCLRKV);
1549 P(DCLRKM);
1550 P(SCLRKVH);
1551 P(SCLRKVL);
1552 P(SCLRKEN);
1553 P(OCONFIG);
1554 P(OCMD);
1555 P(OSTART_0Y);
1556 P(OSTART_1Y);
1557 P(OSTART_0U);
1558 P(OSTART_0V);
1559 P(OSTART_1U);
1560 P(OSTART_1V);
1561 P(OTILEOFF_0Y);
1562 P(OTILEOFF_1Y);
1563 P(OTILEOFF_0U);
1564 P(OTILEOFF_0V);
1565 P(OTILEOFF_1U);
1566 P(OTILEOFF_1V);
1567 P(FASTHSCALE);
1568 P(UVSCALEV);
1569#undef P
1570}