blob: 13e22f52666c4fd034f46acb5cb1efe39c4ec2b4 [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,
John Harrisondad540c2015-05-29 17:43:47 +0100213 struct drm_i915_gem_request *req,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100214 void (*tail)(struct intel_overlay *))
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100215{
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100216 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200217
Ville Syrjälä77589f52015-03-31 10:37:22 +0300218 WARN_ON(overlay->last_flip_req);
John Harrisondad540c2015-05-29 17:43:47 +0100219 i915_gem_request_assign(&overlay->last_flip_req, req);
John Harrison75289872015-05-29 17:43:49 +0100220 i915_add_request(req);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100221
Chris Wilsonb303cf92010-08-12 14:03:48 +0100222 overlay->flip_tail = tail;
Daniel Vettera4b3a572014-11-26 14:17:05 +0100223 ret = i915_wait_request(overlay->last_flip_req);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100224 if (ret)
225 return ret;
226
John Harrison9bfc01a2014-11-24 18:49:31 +0000227 i915_gem_request_assign(&overlay->last_flip_req, NULL);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100228 return 0;
229}
230
Daniel Vetter02e792f2009-09-15 22:57:34 +0200231/* overlay needs to be disable in OCMD reg */
232static int intel_overlay_on(struct intel_overlay *overlay)
233{
234 struct drm_device *dev = overlay->dev;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100235 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000236 struct intel_engine_cs *engine = &dev_priv->engine[RCS];
John Harrisondad540c2015-05-29 17:43:47 +0100237 struct drm_i915_gem_request *req;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200238 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200239
Ville Syrjälä77589f52015-03-31 10:37:22 +0300240 WARN_ON(overlay->active);
Daniel Vetter6306cb42012-08-12 19:27:10 +0200241 WARN_ON(IS_I830(dev) && !(dev_priv->quirks & QUIRK_PIPEA_FORCE));
Chris Wilson106dada2010-07-16 17:13:01 +0100242
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000243 req = i915_gem_request_alloc(engine, NULL);
Dave Gordon26827082016-01-19 19:02:53 +0000244 if (IS_ERR(req))
245 return PTR_ERR(req);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100246
John Harrison5fb9de12015-05-29 17:44:07 +0100247 ret = intel_ring_begin(req, 4);
John Harrisondad540c2015-05-29 17:43:47 +0100248 if (ret) {
249 i915_gem_request_cancel(req);
250 return ret;
251 }
252
Ville Syrjälä1c7c4302015-03-31 10:37:24 +0300253 overlay->active = true;
254
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000255 intel_ring_emit(engine, MI_OVERLAY_FLIP | MI_OVERLAY_ON);
256 intel_ring_emit(engine, overlay->flip_addr | OFC_UPDATE);
257 intel_ring_emit(engine, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
258 intel_ring_emit(engine, MI_NOOP);
259 intel_ring_advance(engine);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200260
John Harrisondad540c2015-05-29 17:43:47 +0100261 return intel_overlay_do_wait_request(overlay, req, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200262}
263
264/* overlay needs to be enabled in OCMD reg */
Chris Wilson8dc5d142010-08-12 12:36:12 +0100265static int intel_overlay_continue(struct intel_overlay *overlay,
266 bool load_polyphase_filter)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200267{
268 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300269 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000270 struct intel_engine_cs *engine = &dev_priv->engine[RCS];
John Harrisondad540c2015-05-29 17:43:47 +0100271 struct drm_i915_gem_request *req;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200272 u32 flip_addr = overlay->flip_addr;
273 u32 tmp;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100274 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200275
Ville Syrjälä77589f52015-03-31 10:37:22 +0300276 WARN_ON(!overlay->active);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200277
278 if (load_polyphase_filter)
279 flip_addr |= OFC_UPDATE;
280
281 /* check for underruns */
282 tmp = I915_READ(DOVSTA);
283 if (tmp & (1 << 17))
284 DRM_DEBUG("overlay underrun, DOVSTA: %x\n", tmp);
285
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000286 req = i915_gem_request_alloc(engine, NULL);
Dave Gordon26827082016-01-19 19:02:53 +0000287 if (IS_ERR(req))
288 return PTR_ERR(req);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100289
John Harrison5fb9de12015-05-29 17:44:07 +0100290 ret = intel_ring_begin(req, 2);
John Harrisondad540c2015-05-29 17:43:47 +0100291 if (ret) {
292 i915_gem_request_cancel(req);
293 return ret;
294 }
295
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000296 intel_ring_emit(engine, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
297 intel_ring_emit(engine, flip_addr);
298 intel_ring_advance(engine);
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200299
John Harrison9bfc01a2014-11-24 18:49:31 +0000300 WARN_ON(overlay->last_flip_req);
John Harrisondad540c2015-05-29 17:43:47 +0100301 i915_gem_request_assign(&overlay->last_flip_req, req);
John Harrison75289872015-05-29 17:43:49 +0100302 i915_add_request(req);
John Harrisonbf7dc5b2015-05-29 17:43:24 +0100303
304 return 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200305}
306
Chris Wilsonb303cf92010-08-12 14:03:48 +0100307static void intel_overlay_release_old_vid_tail(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200308{
Chris Wilson05394f32010-11-08 19:18:58 +0000309 struct drm_i915_gem_object *obj = overlay->old_vid_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200310
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800311 i915_gem_object_ggtt_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000312 drm_gem_object_unreference(&obj->base);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200313
Chris Wilsonb303cf92010-08-12 14:03:48 +0100314 overlay->old_vid_bo = NULL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200315}
316
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200317static void intel_overlay_off_tail(struct intel_overlay *overlay)
318{
Chris Wilson05394f32010-11-08 19:18:58 +0000319 struct drm_i915_gem_object *obj = overlay->vid_bo;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200320
321 /* never have the overlay hw on without showing a frame */
Ville Syrjälä77589f52015-03-31 10:37:22 +0300322 if (WARN_ON(!obj))
323 return;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200324
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800325 i915_gem_object_ggtt_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000326 drm_gem_object_unreference(&obj->base);
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200327 overlay->vid_bo = NULL;
328
329 overlay->crtc->overlay = NULL;
330 overlay->crtc = NULL;
Ville Syrjälä209c2a52015-03-31 10:37:23 +0300331 overlay->active = false;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200332}
333
Daniel Vetter02e792f2009-09-15 22:57:34 +0200334/* overlay needs to be disabled in OCMD reg */
Chris Wilsonce453d82011-02-21 14:43:56 +0000335static int intel_overlay_off(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200336{
337 struct drm_device *dev = overlay->dev;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100338 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000339 struct intel_engine_cs *engine = &dev_priv->engine[RCS];
John Harrisondad540c2015-05-29 17:43:47 +0100340 struct drm_i915_gem_request *req;
Chris Wilson8dc5d142010-08-12 12:36:12 +0100341 u32 flip_addr = overlay->flip_addr;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100342 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200343
Ville Syrjälä77589f52015-03-31 10:37:22 +0300344 WARN_ON(!overlay->active);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200345
346 /* According to intel docs the overlay hw may hang (when switching
347 * off) without loading the filter coeffs. It is however unclear whether
348 * this applies to the disabling of the overlay or to the switching off
349 * of the hw. Do it in both cases */
350 flip_addr |= OFC_UPDATE;
351
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000352 req = i915_gem_request_alloc(engine, NULL);
Dave Gordon26827082016-01-19 19:02:53 +0000353 if (IS_ERR(req))
354 return PTR_ERR(req);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100355
John Harrison5fb9de12015-05-29 17:44:07 +0100356 ret = intel_ring_begin(req, 6);
John Harrisondad540c2015-05-29 17:43:47 +0100357 if (ret) {
358 i915_gem_request_cancel(req);
359 return ret;
360 }
361
Daniel Vetter02e792f2009-09-15 22:57:34 +0200362 /* wait for overlay to go idle */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000363 intel_ring_emit(engine, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
364 intel_ring_emit(engine, flip_addr);
365 intel_ring_emit(engine, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Chris Wilson722506f2010-08-12 09:28:50 +0100366 /* turn overlay off */
Daniel Vettera9193982012-10-22 12:55:55 +0200367 if (IS_I830(dev)) {
368 /* Workaround: Don't disable the overlay fully, since otherwise
369 * it dies on the next OVERLAY_ON cmd. */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000370 intel_ring_emit(engine, MI_NOOP);
371 intel_ring_emit(engine, MI_NOOP);
372 intel_ring_emit(engine, MI_NOOP);
Daniel Vettera9193982012-10-22 12:55:55 +0200373 } else {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000374 intel_ring_emit(engine, MI_OVERLAY_FLIP | MI_OVERLAY_OFF);
375 intel_ring_emit(engine, flip_addr);
376 intel_ring_emit(engine,
377 MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Daniel Vettera9193982012-10-22 12:55:55 +0200378 }
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000379 intel_ring_advance(engine);
Chris Wilson722506f2010-08-12 09:28:50 +0100380
John Harrisondad540c2015-05-29 17:43:47 +0100381 return intel_overlay_do_wait_request(overlay, req, intel_overlay_off_tail);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200382}
383
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200384/* recover from an interruption due to a signal
385 * We have to be careful not to repeat work forever an make forward progess. */
Chris Wilsonce453d82011-02-21 14:43:56 +0000386static int intel_overlay_recover_from_interrupt(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200387{
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200388 int ret;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200389
John Harrison9bfc01a2014-11-24 18:49:31 +0000390 if (overlay->last_flip_req == NULL)
Chris Wilsonb303cf92010-08-12 14:03:48 +0100391 return 0;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200392
Daniel Vettera4b3a572014-11-26 14:17:05 +0100393 ret = i915_wait_request(overlay->last_flip_req);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100394 if (ret)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200395 return ret;
396
Chris Wilsonb303cf92010-08-12 14:03:48 +0100397 if (overlay->flip_tail)
398 overlay->flip_tail(overlay);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200399
John Harrison9bfc01a2014-11-24 18:49:31 +0000400 i915_gem_request_assign(&overlay->last_flip_req, NULL);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200401 return 0;
402}
403
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200404/* Wait for pending overlay flip and release old frame.
405 * Needs to be called before the overlay register are changed
Chris Wilson8d74f652010-08-12 10:35:26 +0100406 * via intel_overlay_(un)map_regs
407 */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200408static int intel_overlay_release_old_vid(struct intel_overlay *overlay)
409{
Chris Wilson5cd68c92010-08-12 12:21:54 +0100410 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300411 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000412 struct intel_engine_cs *engine = &dev_priv->engine[RCS];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200413 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200414
Ville Syrjälä1362b772014-11-26 17:07:29 +0200415 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
416
Chris Wilson5cd68c92010-08-12 12:21:54 +0100417 /* Only wait if there is actually an old frame to release to
418 * guarantee forward progress.
419 */
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200420 if (!overlay->old_vid_bo)
421 return 0;
422
Chris Wilson5cd68c92010-08-12 12:21:54 +0100423 if (I915_READ(ISR) & I915_OVERLAY_PLANE_FLIP_PENDING_INTERRUPT) {
424 /* synchronous slowpath */
John Harrisondad540c2015-05-29 17:43:47 +0100425 struct drm_i915_gem_request *req;
426
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000427 req = i915_gem_request_alloc(engine, NULL);
Dave Gordon26827082016-01-19 19:02:53 +0000428 if (IS_ERR(req))
429 return PTR_ERR(req);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100430
John Harrison5fb9de12015-05-29 17:44:07 +0100431 ret = intel_ring_begin(req, 2);
John Harrisondad540c2015-05-29 17:43:47 +0100432 if (ret) {
433 i915_gem_request_cancel(req);
434 return ret;
435 }
436
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000437 intel_ring_emit(engine,
438 MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
439 intel_ring_emit(engine, MI_NOOP);
440 intel_ring_advance(engine);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200441
John Harrisondad540c2015-05-29 17:43:47 +0100442 ret = intel_overlay_do_wait_request(overlay, req,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100443 intel_overlay_release_old_vid_tail);
Chris Wilson5cd68c92010-08-12 12:21:54 +0100444 if (ret)
445 return ret;
446 }
Daniel Vetter02e792f2009-09-15 22:57:34 +0200447
Chris Wilson5cd68c92010-08-12 12:21:54 +0100448 intel_overlay_release_old_vid_tail(overlay);
Daniel Vettera071fa02014-06-18 23:28:09 +0200449
450
451 i915_gem_track_fb(overlay->old_vid_bo, NULL,
452 INTEL_FRONTBUFFER_OVERLAY(overlay->crtc->pipe));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200453 return 0;
454}
455
Ville Syrjälä1362b772014-11-26 17:07:29 +0200456void intel_overlay_reset(struct drm_i915_private *dev_priv)
457{
458 struct intel_overlay *overlay = dev_priv->overlay;
459
460 if (!overlay)
461 return;
462
463 intel_overlay_release_old_vid(overlay);
464
465 overlay->last_flip_req = NULL;
466 overlay->old_xscale = 0;
467 overlay->old_yscale = 0;
468 overlay->crtc = NULL;
469 overlay->active = false;
470}
471
Daniel Vetter02e792f2009-09-15 22:57:34 +0200472struct put_image_params {
473 int format;
474 short dst_x;
475 short dst_y;
476 short dst_w;
477 short dst_h;
478 short src_w;
479 short src_scan_h;
480 short src_scan_w;
481 short src_h;
482 short stride_Y;
483 short stride_UV;
484 int offset_Y;
485 int offset_U;
486 int offset_V;
487};
488
489static int packed_depth_bytes(u32 format)
490{
491 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100492 case I915_OVERLAY_YUV422:
493 return 4;
494 case I915_OVERLAY_YUV411:
495 /* return 6; not implemented */
496 default:
497 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200498 }
499}
500
501static int packed_width_bytes(u32 format, short width)
502{
503 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100504 case I915_OVERLAY_YUV422:
505 return width << 1;
506 default:
507 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200508 }
509}
510
511static int uv_hsubsampling(u32 format)
512{
513 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100514 case I915_OVERLAY_YUV422:
515 case I915_OVERLAY_YUV420:
516 return 2;
517 case I915_OVERLAY_YUV411:
518 case I915_OVERLAY_YUV410:
519 return 4;
520 default:
521 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200522 }
523}
524
525static int uv_vsubsampling(u32 format)
526{
527 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100528 case I915_OVERLAY_YUV420:
529 case I915_OVERLAY_YUV410:
530 return 2;
531 case I915_OVERLAY_YUV422:
532 case I915_OVERLAY_YUV411:
533 return 1;
534 default:
535 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200536 }
537}
538
539static u32 calc_swidthsw(struct drm_device *dev, u32 offset, u32 width)
540{
541 u32 mask, shift, ret;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100542 if (IS_GEN2(dev)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +0200543 mask = 0x1f;
544 shift = 5;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100545 } else {
546 mask = 0x3f;
547 shift = 6;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200548 }
549 ret = ((offset + width + mask) >> shift) - (offset >> shift);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100550 if (!IS_GEN2(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +0200551 ret <<= 1;
Akshay Joshi0206e352011-08-16 15:34:10 -0400552 ret -= 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200553 return ret << 2;
554}
555
556static const u16 y_static_hcoeffs[N_HORIZ_Y_TAPS * N_PHASES] = {
557 0x3000, 0xb4a0, 0x1930, 0x1920, 0xb4a0,
558 0x3000, 0xb500, 0x19d0, 0x1880, 0xb440,
559 0x3000, 0xb540, 0x1a88, 0x2f80, 0xb3e0,
560 0x3000, 0xb580, 0x1b30, 0x2e20, 0xb380,
561 0x3000, 0xb5c0, 0x1bd8, 0x2cc0, 0xb320,
562 0x3020, 0xb5e0, 0x1c60, 0x2b80, 0xb2c0,
563 0x3020, 0xb5e0, 0x1cf8, 0x2a20, 0xb260,
564 0x3020, 0xb5e0, 0x1d80, 0x28e0, 0xb200,
565 0x3020, 0xb5c0, 0x1e08, 0x3f40, 0xb1c0,
566 0x3020, 0xb580, 0x1e78, 0x3ce0, 0xb160,
567 0x3040, 0xb520, 0x1ed8, 0x3aa0, 0xb120,
568 0x3040, 0xb4a0, 0x1f30, 0x3880, 0xb0e0,
569 0x3040, 0xb400, 0x1f78, 0x3680, 0xb0a0,
570 0x3020, 0xb340, 0x1fb8, 0x34a0, 0xb060,
571 0x3020, 0xb240, 0x1fe0, 0x32e0, 0xb040,
572 0x3020, 0xb140, 0x1ff8, 0x3160, 0xb020,
Chris Wilson722506f2010-08-12 09:28:50 +0100573 0xb000, 0x3000, 0x0800, 0x3000, 0xb000
574};
575
Daniel Vetter02e792f2009-09-15 22:57:34 +0200576static const u16 uv_static_hcoeffs[N_HORIZ_UV_TAPS * N_PHASES] = {
577 0x3000, 0x1800, 0x1800, 0xb000, 0x18d0, 0x2e60,
578 0xb000, 0x1990, 0x2ce0, 0xb020, 0x1a68, 0x2b40,
579 0xb040, 0x1b20, 0x29e0, 0xb060, 0x1bd8, 0x2880,
580 0xb080, 0x1c88, 0x3e60, 0xb0a0, 0x1d28, 0x3c00,
581 0xb0c0, 0x1db8, 0x39e0, 0xb0e0, 0x1e40, 0x37e0,
582 0xb100, 0x1eb8, 0x3620, 0xb100, 0x1f18, 0x34a0,
583 0xb100, 0x1f68, 0x3360, 0xb0e0, 0x1fa8, 0x3240,
584 0xb0c0, 0x1fe0, 0x3140, 0xb060, 0x1ff0, 0x30a0,
Chris Wilson722506f2010-08-12 09:28:50 +0100585 0x3000, 0x0800, 0x3000
586};
Daniel Vetter02e792f2009-09-15 22:57:34 +0200587
Ben Widawsky75020bc2012-04-16 14:07:43 -0700588static void update_polyphase_filter(struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200589{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700590 memcpy_toio(regs->Y_HCOEFS, y_static_hcoeffs, sizeof(y_static_hcoeffs));
591 memcpy_toio(regs->UV_HCOEFS, uv_static_hcoeffs,
592 sizeof(uv_static_hcoeffs));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200593}
594
595static bool update_scaling_factors(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700596 struct overlay_registers __iomem *regs,
Daniel Vetter02e792f2009-09-15 22:57:34 +0200597 struct put_image_params *params)
598{
599 /* fixed point with a 12 bit shift */
600 u32 xscale, yscale, xscale_UV, yscale_UV;
601#define FP_SHIFT 12
602#define FRACT_MASK 0xfff
603 bool scale_changed = false;
604 int uv_hscale = uv_hsubsampling(params->format);
605 int uv_vscale = uv_vsubsampling(params->format);
606
607 if (params->dst_w > 1)
608 xscale = ((params->src_scan_w - 1) << FP_SHIFT)
609 /(params->dst_w);
610 else
611 xscale = 1 << FP_SHIFT;
612
613 if (params->dst_h > 1)
614 yscale = ((params->src_scan_h - 1) << FP_SHIFT)
615 /(params->dst_h);
616 else
617 yscale = 1 << FP_SHIFT;
618
619 /*if (params->format & I915_OVERLAY_YUV_PLANAR) {*/
Chris Wilson722506f2010-08-12 09:28:50 +0100620 xscale_UV = xscale/uv_hscale;
621 yscale_UV = yscale/uv_vscale;
622 /* make the Y scale to UV scale ratio an exact multiply */
623 xscale = xscale_UV * uv_hscale;
624 yscale = yscale_UV * uv_vscale;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200625 /*} else {
Chris Wilson722506f2010-08-12 09:28:50 +0100626 xscale_UV = 0;
627 yscale_UV = 0;
628 }*/
Daniel Vetter02e792f2009-09-15 22:57:34 +0200629
630 if (xscale != overlay->old_xscale || yscale != overlay->old_yscale)
631 scale_changed = true;
632 overlay->old_xscale = xscale;
633 overlay->old_yscale = yscale;
634
Ben Widawsky75020bc2012-04-16 14:07:43 -0700635 iowrite32(((yscale & FRACT_MASK) << 20) |
636 ((xscale >> FP_SHIFT) << 16) |
637 ((xscale & FRACT_MASK) << 3),
638 &regs->YRGBSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100639
Ben Widawsky75020bc2012-04-16 14:07:43 -0700640 iowrite32(((yscale_UV & FRACT_MASK) << 20) |
641 ((xscale_UV >> FP_SHIFT) << 16) |
642 ((xscale_UV & FRACT_MASK) << 3),
643 &regs->UVSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100644
Ben Widawsky75020bc2012-04-16 14:07:43 -0700645 iowrite32((((yscale >> FP_SHIFT) << 16) |
646 ((yscale_UV >> FP_SHIFT) << 0)),
647 &regs->UVSCALEV);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200648
649 if (scale_changed)
650 update_polyphase_filter(regs);
651
652 return scale_changed;
653}
654
655static void update_colorkey(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700656 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200657{
658 u32 key = overlay->color_key;
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100659 u32 flags;
660
661 flags = 0;
662 if (overlay->color_key_enabled)
663 flags |= DST_KEY_ENABLE;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100664
Matt Roperf4510a22014-04-01 15:22:40 -0700665 switch (overlay->crtc->base.primary->fb->bits_per_pixel) {
Chris Wilson722506f2010-08-12 09:28:50 +0100666 case 8:
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100667 key = 0;
668 flags |= CLK_RGB8I_MASK;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100669 break;
670
Chris Wilson722506f2010-08-12 09:28:50 +0100671 case 16:
Matt Roperf4510a22014-04-01 15:22:40 -0700672 if (overlay->crtc->base.primary->fb->depth == 15) {
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100673 key = RGB15_TO_COLORKEY(key);
674 flags |= CLK_RGB15_MASK;
Chris Wilson722506f2010-08-12 09:28:50 +0100675 } else {
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100676 key = RGB16_TO_COLORKEY(key);
677 flags |= CLK_RGB16_MASK;
Chris Wilson722506f2010-08-12 09:28:50 +0100678 }
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100679 break;
680
Chris Wilson722506f2010-08-12 09:28:50 +0100681 case 24:
682 case 32:
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100683 flags |= CLK_RGB24_MASK;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100684 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200685 }
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100686
687 iowrite32(key, &regs->DCLRKV);
688 iowrite32(flags, &regs->DCLRKM);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200689}
690
691static u32 overlay_cmd_reg(struct put_image_params *params)
692{
693 u32 cmd = OCMD_ENABLE | OCMD_BUF_TYPE_FRAME | OCMD_BUFFER0;
694
695 if (params->format & I915_OVERLAY_YUV_PLANAR) {
696 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100697 case I915_OVERLAY_YUV422:
698 cmd |= OCMD_YUV_422_PLANAR;
699 break;
700 case I915_OVERLAY_YUV420:
701 cmd |= OCMD_YUV_420_PLANAR;
702 break;
703 case I915_OVERLAY_YUV411:
704 case I915_OVERLAY_YUV410:
705 cmd |= OCMD_YUV_410_PLANAR;
706 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200707 }
708 } else { /* YUV packed */
709 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100710 case I915_OVERLAY_YUV422:
711 cmd |= OCMD_YUV_422_PACKED;
712 break;
713 case I915_OVERLAY_YUV411:
714 cmd |= OCMD_YUV_411_PACKED;
715 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200716 }
717
718 switch (params->format & I915_OVERLAY_SWAP_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100719 case I915_OVERLAY_NO_SWAP:
720 break;
721 case I915_OVERLAY_UV_SWAP:
722 cmd |= OCMD_UV_SWAP;
723 break;
724 case I915_OVERLAY_Y_SWAP:
725 cmd |= OCMD_Y_SWAP;
726 break;
727 case I915_OVERLAY_Y_AND_UV_SWAP:
728 cmd |= OCMD_Y_AND_UV_SWAP;
729 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200730 }
731 }
732
733 return cmd;
734}
735
Chris Wilson5fe82c52010-08-12 12:38:21 +0100736static int intel_overlay_do_put_image(struct intel_overlay *overlay,
Chris Wilson05394f32010-11-08 19:18:58 +0000737 struct drm_i915_gem_object *new_bo,
Chris Wilson5fe82c52010-08-12 12:38:21 +0100738 struct put_image_params *params)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200739{
740 int ret, tmp_width;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700741 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200742 bool scale_changed = false;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200743 struct drm_device *dev = overlay->dev;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700744 u32 swidth, swidthsw, sheight, ostride;
Daniel Vettera071fa02014-06-18 23:28:09 +0200745 enum pipe pipe = overlay->crtc->pipe;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200746
Ville Syrjälä77589f52015-03-31 10:37:22 +0300747 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
748 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200749
Daniel Vetter02e792f2009-09-15 22:57:34 +0200750 ret = intel_overlay_release_old_vid(overlay);
751 if (ret != 0)
752 return ret;
753
Maarten Lankhorst7580d772015-08-18 13:40:06 +0200754 ret = i915_gem_object_pin_to_display_plane(new_bo, 0,
Tvrtko Ursuline6617332015-03-23 11:10:33 +0000755 &i915_ggtt_view_normal);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200756 if (ret != 0)
757 return ret;
758
Chris Wilsond9e86c02010-11-10 16:40:20 +0000759 ret = i915_gem_object_put_fence(new_bo);
760 if (ret)
761 goto out_unpin;
762
Daniel Vetter02e792f2009-09-15 22:57:34 +0200763 if (!overlay->active) {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700764 u32 oconfig;
Chris Wilson8d74f652010-08-12 10:35:26 +0100765 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200766 if (!regs) {
767 ret = -ENOMEM;
768 goto out_unpin;
769 }
Ben Widawsky75020bc2012-04-16 14:07:43 -0700770 oconfig = OCONF_CC_OUT_8BIT;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100771 if (IS_GEN4(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -0700772 oconfig |= OCONF_CSC_MODE_BT709;
Daniel Vettera071fa02014-06-18 23:28:09 +0200773 oconfig |= pipe == 0 ?
Daniel Vetter02e792f2009-09-15 22:57:34 +0200774 OCONF_PIPE_A : OCONF_PIPE_B;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700775 iowrite32(oconfig, &regs->OCONFIG);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100776 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200777
778 ret = intel_overlay_on(overlay);
779 if (ret != 0)
780 goto out_unpin;
781 }
782
Chris Wilson8d74f652010-08-12 10:35:26 +0100783 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200784 if (!regs) {
785 ret = -ENOMEM;
786 goto out_unpin;
787 }
788
Ben Widawsky75020bc2012-04-16 14:07:43 -0700789 iowrite32((params->dst_y << 16) | params->dst_x, &regs->DWINPOS);
790 iowrite32((params->dst_h << 16) | params->dst_w, &regs->DWINSZ);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200791
792 if (params->format & I915_OVERLAY_YUV_PACKED)
793 tmp_width = packed_width_bytes(params->format, params->src_w);
794 else
795 tmp_width = params->src_w;
796
Ben Widawsky75020bc2012-04-16 14:07:43 -0700797 swidth = params->src_w;
798 swidthsw = calc_swidthsw(overlay->dev, params->offset_Y, tmp_width);
799 sheight = params->src_h;
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700800 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_Y, &regs->OBUF_0Y);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700801 ostride = params->stride_Y;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200802
803 if (params->format & I915_OVERLAY_YUV_PLANAR) {
804 int uv_hscale = uv_hsubsampling(params->format);
805 int uv_vscale = uv_vsubsampling(params->format);
806 u32 tmp_U, tmp_V;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700807 swidth |= (params->src_w/uv_hscale) << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200808 tmp_U = calc_swidthsw(overlay->dev, params->offset_U,
Chris Wilson722506f2010-08-12 09:28:50 +0100809 params->src_w/uv_hscale);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200810 tmp_V = calc_swidthsw(overlay->dev, params->offset_V,
Chris Wilson722506f2010-08-12 09:28:50 +0100811 params->src_w/uv_hscale);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700812 swidthsw |= max_t(u32, tmp_U, tmp_V) << 16;
813 sheight |= (params->src_h/uv_vscale) << 16;
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700814 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_U, &regs->OBUF_0U);
815 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_V, &regs->OBUF_0V);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700816 ostride |= params->stride_UV << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200817 }
818
Ben Widawsky75020bc2012-04-16 14:07:43 -0700819 iowrite32(swidth, &regs->SWIDTH);
820 iowrite32(swidthsw, &regs->SWIDTHSW);
821 iowrite32(sheight, &regs->SHEIGHT);
822 iowrite32(ostride, &regs->OSTRIDE);
823
Daniel Vetter02e792f2009-09-15 22:57:34 +0200824 scale_changed = update_scaling_factors(overlay, regs, params);
825
826 update_colorkey(overlay, regs);
827
Ben Widawsky75020bc2012-04-16 14:07:43 -0700828 iowrite32(overlay_cmd_reg(params), &regs->OCMD);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200829
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100830 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200831
Chris Wilson8dc5d142010-08-12 12:36:12 +0100832 ret = intel_overlay_continue(overlay, scale_changed);
833 if (ret)
834 goto out_unpin;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200835
Daniel Vettera071fa02014-06-18 23:28:09 +0200836 i915_gem_track_fb(overlay->vid_bo, new_bo,
837 INTEL_FRONTBUFFER_OVERLAY(pipe));
838
Daniel Vetter02e792f2009-09-15 22:57:34 +0200839 overlay->old_vid_bo = overlay->vid_bo;
Chris Wilson05394f32010-11-08 19:18:58 +0000840 overlay->vid_bo = new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200841
Daniel Vetterf99d7062014-06-19 16:01:59 +0200842 intel_frontbuffer_flip(dev,
843 INTEL_FRONTBUFFER_OVERLAY(pipe));
844
Daniel Vetter02e792f2009-09-15 22:57:34 +0200845 return 0;
846
847out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800848 i915_gem_object_ggtt_unpin(new_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200849 return ret;
850}
851
Chris Wilsonce453d82011-02-21 14:43:56 +0000852int intel_overlay_switch_off(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200853{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700854 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200855 struct drm_device *dev = overlay->dev;
Chris Wilson5dcdbcb2010-08-12 13:50:28 +0100856 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200857
Ville Syrjälä77589f52015-03-31 10:37:22 +0300858 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
859 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200860
Chris Wilsonce453d82011-02-21 14:43:56 +0000861 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +0100862 if (ret != 0)
863 return ret;
Daniel Vetter9bedb972009-11-30 15:55:49 +0100864
Daniel Vetter02e792f2009-09-15 22:57:34 +0200865 if (!overlay->active)
866 return 0;
867
Daniel Vetter02e792f2009-09-15 22:57:34 +0200868 ret = intel_overlay_release_old_vid(overlay);
869 if (ret != 0)
870 return ret;
871
Chris Wilson8d74f652010-08-12 10:35:26 +0100872 regs = intel_overlay_map_regs(overlay);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700873 iowrite32(0, &regs->OCMD);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100874 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200875
Chris Wilsonce453d82011-02-21 14:43:56 +0000876 ret = intel_overlay_off(overlay);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200877 if (ret != 0)
878 return ret;
879
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200880 intel_overlay_off_tail(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200881 return 0;
882}
883
884static int check_overlay_possible_on_crtc(struct intel_overlay *overlay,
885 struct intel_crtc *crtc)
886{
Chris Wilsonf7abfe82010-09-13 14:19:16 +0100887 if (!crtc->active)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200888 return -EINVAL;
889
Daniel Vetter02e792f2009-09-15 22:57:34 +0200890 /* can't use the overlay with double wide pipe */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200891 if (crtc->config->double_wide)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200892 return -EINVAL;
893
894 return 0;
895}
896
897static void update_pfit_vscale_ratio(struct intel_overlay *overlay)
898{
899 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300900 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200901 u32 pfit_control = I915_READ(PFIT_CONTROL);
Chris Wilson446d2182010-08-12 11:15:58 +0100902 u32 ratio;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200903
904 /* XXX: This is not the same logic as in the xorg driver, but more in
Chris Wilson446d2182010-08-12 11:15:58 +0100905 * line with the intel documentation for the i965
906 */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100907 if (INTEL_INFO(dev)->gen >= 4) {
Akshay Joshi0206e352011-08-16 15:34:10 -0400908 /* on i965 use the PGM reg to read out the autoscaler values */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100909 ratio = I915_READ(PFIT_PGM_RATIOS) >> PFIT_VERT_SCALE_SHIFT_965;
910 } else {
Chris Wilson446d2182010-08-12 11:15:58 +0100911 if (pfit_control & VERT_AUTO_SCALE)
912 ratio = I915_READ(PFIT_AUTO_RATIOS);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200913 else
Chris Wilson446d2182010-08-12 11:15:58 +0100914 ratio = I915_READ(PFIT_PGM_RATIOS);
915 ratio >>= PFIT_VERT_SCALE_SHIFT;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200916 }
917
918 overlay->pfit_vscale_ratio = ratio;
919}
920
921static int check_overlay_dst(struct intel_overlay *overlay,
922 struct drm_intel_overlay_put_image *rec)
923{
924 struct drm_display_mode *mode = &overlay->crtc->base.mode;
925
Daniel Vetter75c13992012-01-28 23:48:46 +0100926 if (rec->dst_x < mode->hdisplay &&
927 rec->dst_x + rec->dst_width <= mode->hdisplay &&
928 rec->dst_y < mode->vdisplay &&
929 rec->dst_y + rec->dst_height <= mode->vdisplay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200930 return 0;
931 else
932 return -EINVAL;
933}
934
935static int check_overlay_scaling(struct put_image_params *rec)
936{
937 u32 tmp;
938
939 /* downscaling limit is 8.0 */
940 tmp = ((rec->src_scan_h << 16) / rec->dst_h) >> 16;
941 if (tmp > 7)
942 return -EINVAL;
943 tmp = ((rec->src_scan_w << 16) / rec->dst_w) >> 16;
944 if (tmp > 7)
945 return -EINVAL;
946
947 return 0;
948}
949
950static int check_overlay_src(struct drm_device *dev,
951 struct drm_intel_overlay_put_image *rec,
Chris Wilson05394f32010-11-08 19:18:58 +0000952 struct drm_i915_gem_object *new_bo)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200953{
Daniel Vetter02e792f2009-09-15 22:57:34 +0200954 int uv_hscale = uv_hsubsampling(rec->flags);
955 int uv_vscale = uv_vsubsampling(rec->flags);
Dan Carpenter8f28f542010-10-27 23:17:25 +0200956 u32 stride_mask;
957 int depth;
958 u32 tmp;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200959
960 /* check src dimensions */
961 if (IS_845G(dev) || IS_I830(dev)) {
Chris Wilson722506f2010-08-12 09:28:50 +0100962 if (rec->src_height > IMAGE_MAX_HEIGHT_LEGACY ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100963 rec->src_width > IMAGE_MAX_WIDTH_LEGACY)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200964 return -EINVAL;
965 } else {
Chris Wilson722506f2010-08-12 09:28:50 +0100966 if (rec->src_height > IMAGE_MAX_HEIGHT ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100967 rec->src_width > IMAGE_MAX_WIDTH)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200968 return -EINVAL;
969 }
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100970
Daniel Vetter02e792f2009-09-15 22:57:34 +0200971 /* better safe than sorry, use 4 as the maximal subsampling ratio */
Chris Wilson722506f2010-08-12 09:28:50 +0100972 if (rec->src_height < N_VERT_Y_TAPS*4 ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100973 rec->src_width < N_HORIZ_Y_TAPS*4)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200974 return -EINVAL;
975
Chris Wilsona1efd142010-07-12 19:35:38 +0100976 /* check alignment constraints */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200977 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100978 case I915_OVERLAY_RGB:
979 /* not implemented */
980 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100981
Chris Wilson722506f2010-08-12 09:28:50 +0100982 case I915_OVERLAY_YUV_PACKED:
Chris Wilson722506f2010-08-12 09:28:50 +0100983 if (uv_vscale != 1)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200984 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100985
986 depth = packed_depth_bytes(rec->flags);
Chris Wilson722506f2010-08-12 09:28:50 +0100987 if (depth < 0)
988 return depth;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100989
Chris Wilson722506f2010-08-12 09:28:50 +0100990 /* ignore UV planes */
991 rec->stride_UV = 0;
992 rec->offset_U = 0;
993 rec->offset_V = 0;
994 /* check pixel alignment */
995 if (rec->offset_Y % depth)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200996 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +0100997 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100998
Chris Wilson722506f2010-08-12 09:28:50 +0100999 case I915_OVERLAY_YUV_PLANAR:
1000 if (uv_vscale < 0 || uv_hscale < 0)
1001 return -EINVAL;
1002 /* no offset restrictions for planar formats */
1003 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001004
Chris Wilson722506f2010-08-12 09:28:50 +01001005 default:
1006 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001007 }
1008
1009 if (rec->src_width % uv_hscale)
1010 return -EINVAL;
1011
1012 /* stride checking */
Chris Wilsona1efd142010-07-12 19:35:38 +01001013 if (IS_I830(dev) || IS_845G(dev))
1014 stride_mask = 255;
1015 else
1016 stride_mask = 63;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001017
1018 if (rec->stride_Y & stride_mask || rec->stride_UV & stride_mask)
1019 return -EINVAL;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001020 if (IS_GEN4(dev) && rec->stride_Y < 512)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001021 return -EINVAL;
1022
1023 tmp = (rec->flags & I915_OVERLAY_TYPE_MASK) == I915_OVERLAY_YUV_PLANAR ?
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001024 4096 : 8192;
1025 if (rec->stride_Y > tmp || rec->stride_UV > 2*1024)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001026 return -EINVAL;
1027
1028 /* check buffer dimensions */
1029 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +01001030 case I915_OVERLAY_RGB:
1031 case I915_OVERLAY_YUV_PACKED:
1032 /* always 4 Y values per depth pixels */
1033 if (packed_width_bytes(rec->flags, rec->src_width) > rec->stride_Y)
1034 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001035
Chris Wilson722506f2010-08-12 09:28:50 +01001036 tmp = rec->stride_Y*rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001037 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001038 return -EINVAL;
1039 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001040
Chris Wilson722506f2010-08-12 09:28:50 +01001041 case I915_OVERLAY_YUV_PLANAR:
1042 if (rec->src_width > rec->stride_Y)
1043 return -EINVAL;
1044 if (rec->src_width/uv_hscale > rec->stride_UV)
1045 return -EINVAL;
1046
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001047 tmp = rec->stride_Y * rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001048 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001049 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001050
1051 tmp = rec->stride_UV * (rec->src_height / uv_vscale);
Chris Wilson05394f32010-11-08 19:18:58 +00001052 if (rec->offset_U + tmp > new_bo->base.size ||
1053 rec->offset_V + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001054 return -EINVAL;
1055 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001056 }
1057
1058 return 0;
1059}
1060
Chris Wilsone9e331a2010-09-13 01:16:10 +01001061/**
1062 * Return the pipe currently connected to the panel fitter,
1063 * or -1 if the panel fitter is not present or not in use
1064 */
1065static int intel_panel_fitter_pipe(struct drm_device *dev)
1066{
1067 struct drm_i915_private *dev_priv = dev->dev_private;
1068 u32 pfit_control;
1069
1070 /* i830 doesn't have a panel fitter */
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02001071 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001072 return -1;
1073
1074 pfit_control = I915_READ(PFIT_CONTROL);
1075
1076 /* See if the panel fitter is in use */
1077 if ((pfit_control & PFIT_ENABLE) == 0)
1078 return -1;
1079
1080 /* 965 can place panel fitter on either pipe */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001081 if (IS_GEN4(dev))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001082 return (pfit_control >> 29) & 0x3;
1083
1084 /* older chips can only use pipe 1 */
1085 return 1;
1086}
1087
Daniel Vetter02e792f2009-09-15 22:57:34 +02001088int intel_overlay_put_image(struct drm_device *dev, void *data,
Akshay Joshi0206e352011-08-16 15:34:10 -04001089 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001090{
1091 struct drm_intel_overlay_put_image *put_image_rec = data;
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001092 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001093 struct intel_overlay *overlay;
Rob Clark7707e652014-07-17 23:30:04 -04001094 struct drm_crtc *drmmode_crtc;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001095 struct intel_crtc *crtc;
Chris Wilson05394f32010-11-08 19:18:58 +00001096 struct drm_i915_gem_object *new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001097 struct put_image_params *params;
1098 int ret;
1099
Daniel Vetter02e792f2009-09-15 22:57:34 +02001100 overlay = dev_priv->overlay;
1101 if (!overlay) {
1102 DRM_DEBUG("userspace bug: no overlay\n");
1103 return -ENODEV;
1104 }
1105
1106 if (!(put_image_rec->flags & I915_OVERLAY_ENABLE)) {
Daniel Vettera0e99e62012-12-02 01:05:46 +01001107 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001108 mutex_lock(&dev->struct_mutex);
1109
Chris Wilsonce453d82011-02-21 14:43:56 +00001110 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001111
1112 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001113 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001114
1115 return ret;
1116 }
1117
Daniel Vetterb14c5672013-09-19 12:18:32 +02001118 params = kmalloc(sizeof(*params), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001119 if (!params)
1120 return -ENOMEM;
1121
Rob Clark7707e652014-07-17 23:30:04 -04001122 drmmode_crtc = drm_crtc_find(dev, put_image_rec->crtc_id);
1123 if (!drmmode_crtc) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001124 ret = -ENOENT;
1125 goto out_free;
1126 }
Rob Clark7707e652014-07-17 23:30:04 -04001127 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001128
Chris Wilson05394f32010-11-08 19:18:58 +00001129 new_bo = to_intel_bo(drm_gem_object_lookup(dev, file_priv,
1130 put_image_rec->bo_handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001131 if (&new_bo->base == NULL) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001132 ret = -ENOENT;
1133 goto out_free;
1134 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001135
Daniel Vettera0e99e62012-12-02 01:05:46 +01001136 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001137 mutex_lock(&dev->struct_mutex);
1138
Chris Wilsond9e86c02010-11-10 16:40:20 +00001139 if (new_bo->tiling_mode) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01001140 DRM_DEBUG_KMS("buffer used for overlay image can not be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00001141 ret = -EINVAL;
1142 goto out_unlock;
1143 }
1144
Chris Wilsonce453d82011-02-21 14:43:56 +00001145 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +01001146 if (ret != 0)
1147 goto out_unlock;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02001148
Daniel Vetter02e792f2009-09-15 22:57:34 +02001149 if (overlay->crtc != crtc) {
1150 struct drm_display_mode *mode = &crtc->base.mode;
Chris Wilsonce453d82011-02-21 14:43:56 +00001151 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001152 if (ret != 0)
1153 goto out_unlock;
1154
1155 ret = check_overlay_possible_on_crtc(overlay, crtc);
1156 if (ret != 0)
1157 goto out_unlock;
1158
1159 overlay->crtc = crtc;
1160 crtc->overlay = overlay;
1161
Chris Wilsone9e331a2010-09-13 01:16:10 +01001162 /* line too wide, i.e. one-line-mode */
1163 if (mode->hdisplay > 1024 &&
1164 intel_panel_fitter_pipe(dev) == crtc->pipe) {
Ville Syrjälä209c2a52015-03-31 10:37:23 +03001165 overlay->pfit_active = true;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001166 update_pfit_vscale_ratio(overlay);
1167 } else
Ville Syrjälä209c2a52015-03-31 10:37:23 +03001168 overlay->pfit_active = false;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001169 }
1170
1171 ret = check_overlay_dst(overlay, put_image_rec);
1172 if (ret != 0)
1173 goto out_unlock;
1174
1175 if (overlay->pfit_active) {
1176 params->dst_y = ((((u32)put_image_rec->dst_y) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001177 overlay->pfit_vscale_ratio);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001178 /* shifting right rounds downwards, so add 1 */
1179 params->dst_h = ((((u32)put_image_rec->dst_height) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001180 overlay->pfit_vscale_ratio) + 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001181 } else {
1182 params->dst_y = put_image_rec->dst_y;
1183 params->dst_h = put_image_rec->dst_height;
1184 }
1185 params->dst_x = put_image_rec->dst_x;
1186 params->dst_w = put_image_rec->dst_width;
1187
1188 params->src_w = put_image_rec->src_width;
1189 params->src_h = put_image_rec->src_height;
1190 params->src_scan_w = put_image_rec->src_scan_width;
1191 params->src_scan_h = put_image_rec->src_scan_height;
Chris Wilson722506f2010-08-12 09:28:50 +01001192 if (params->src_scan_h > params->src_h ||
1193 params->src_scan_w > params->src_w) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001194 ret = -EINVAL;
1195 goto out_unlock;
1196 }
1197
1198 ret = check_overlay_src(dev, put_image_rec, new_bo);
1199 if (ret != 0)
1200 goto out_unlock;
1201 params->format = put_image_rec->flags & ~I915_OVERLAY_FLAGS_MASK;
1202 params->stride_Y = put_image_rec->stride_Y;
1203 params->stride_UV = put_image_rec->stride_UV;
1204 params->offset_Y = put_image_rec->offset_Y;
1205 params->offset_U = put_image_rec->offset_U;
1206 params->offset_V = put_image_rec->offset_V;
1207
1208 /* Check scaling after src size to prevent a divide-by-zero. */
1209 ret = check_overlay_scaling(params);
1210 if (ret != 0)
1211 goto out_unlock;
1212
1213 ret = intel_overlay_do_put_image(overlay, new_bo, params);
1214 if (ret != 0)
1215 goto out_unlock;
1216
1217 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001218 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001219
1220 kfree(params);
1221
1222 return 0;
1223
1224out_unlock:
1225 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001226 drm_modeset_unlock_all(dev);
Chris Wilson05394f32010-11-08 19:18:58 +00001227 drm_gem_object_unreference_unlocked(&new_bo->base);
Dan Carpenter915a4282010-03-06 14:05:39 +03001228out_free:
Daniel Vetter02e792f2009-09-15 22:57:34 +02001229 kfree(params);
1230
1231 return ret;
1232}
1233
1234static void update_reg_attrs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001235 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001236{
Ben Widawsky75020bc2012-04-16 14:07:43 -07001237 iowrite32((overlay->contrast << 18) | (overlay->brightness & 0xff),
1238 &regs->OCLRC0);
1239 iowrite32(overlay->saturation, &regs->OCLRC1);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001240}
1241
1242static bool check_gamma_bounds(u32 gamma1, u32 gamma2)
1243{
1244 int i;
1245
1246 if (gamma1 & 0xff000000 || gamma2 & 0xff000000)
1247 return false;
1248
1249 for (i = 0; i < 3; i++) {
Chris Wilson722506f2010-08-12 09:28:50 +01001250 if (((gamma1 >> i*8) & 0xff) >= ((gamma2 >> i*8) & 0xff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001251 return false;
1252 }
1253
1254 return true;
1255}
1256
1257static bool check_gamma5_errata(u32 gamma5)
1258{
1259 int i;
1260
1261 for (i = 0; i < 3; i++) {
1262 if (((gamma5 >> i*8) & 0xff) == 0x80)
1263 return false;
1264 }
1265
1266 return true;
1267}
1268
1269static int check_gamma(struct drm_intel_overlay_attrs *attrs)
1270{
Chris Wilson722506f2010-08-12 09:28:50 +01001271 if (!check_gamma_bounds(0, attrs->gamma0) ||
1272 !check_gamma_bounds(attrs->gamma0, attrs->gamma1) ||
1273 !check_gamma_bounds(attrs->gamma1, attrs->gamma2) ||
1274 !check_gamma_bounds(attrs->gamma2, attrs->gamma3) ||
1275 !check_gamma_bounds(attrs->gamma3, attrs->gamma4) ||
1276 !check_gamma_bounds(attrs->gamma4, attrs->gamma5) ||
1277 !check_gamma_bounds(attrs->gamma5, 0x00ffffff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001278 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001279
Daniel Vetter02e792f2009-09-15 22:57:34 +02001280 if (!check_gamma5_errata(attrs->gamma5))
1281 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001282
Daniel Vetter02e792f2009-09-15 22:57:34 +02001283 return 0;
1284}
1285
1286int intel_overlay_attrs(struct drm_device *dev, void *data,
Akshay Joshi0206e352011-08-16 15:34:10 -04001287 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001288{
1289 struct drm_intel_overlay_attrs *attrs = data;
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001290 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001291 struct intel_overlay *overlay;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001292 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001293 int ret;
1294
Daniel Vetter02e792f2009-09-15 22:57:34 +02001295 overlay = dev_priv->overlay;
1296 if (!overlay) {
1297 DRM_DEBUG("userspace bug: no overlay\n");
1298 return -ENODEV;
1299 }
1300
Daniel Vettera0e99e62012-12-02 01:05:46 +01001301 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001302 mutex_lock(&dev->struct_mutex);
1303
Chris Wilson60fc3322010-08-12 10:44:45 +01001304 ret = -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001305 if (!(attrs->flags & I915_OVERLAY_UPDATE_ATTRS)) {
Chris Wilson60fc3322010-08-12 10:44:45 +01001306 attrs->color_key = overlay->color_key;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001307 attrs->brightness = overlay->brightness;
Chris Wilson60fc3322010-08-12 10:44:45 +01001308 attrs->contrast = overlay->contrast;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001309 attrs->saturation = overlay->saturation;
1310
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001311 if (!IS_GEN2(dev)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001312 attrs->gamma0 = I915_READ(OGAMC0);
1313 attrs->gamma1 = I915_READ(OGAMC1);
1314 attrs->gamma2 = I915_READ(OGAMC2);
1315 attrs->gamma3 = I915_READ(OGAMC3);
1316 attrs->gamma4 = I915_READ(OGAMC4);
1317 attrs->gamma5 = I915_READ(OGAMC5);
1318 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001319 } else {
Chris Wilson60fc3322010-08-12 10:44:45 +01001320 if (attrs->brightness < -128 || attrs->brightness > 127)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001321 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001322 if (attrs->contrast > 255)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001323 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001324 if (attrs->saturation > 1023)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001325 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001326
Chris Wilson60fc3322010-08-12 10:44:45 +01001327 overlay->color_key = attrs->color_key;
1328 overlay->brightness = attrs->brightness;
1329 overlay->contrast = attrs->contrast;
1330 overlay->saturation = attrs->saturation;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001331
Chris Wilson8d74f652010-08-12 10:35:26 +01001332 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001333 if (!regs) {
1334 ret = -ENOMEM;
1335 goto out_unlock;
1336 }
1337
1338 update_reg_attrs(overlay, regs);
1339
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001340 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001341
1342 if (attrs->flags & I915_OVERLAY_UPDATE_GAMMA) {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001343 if (IS_GEN2(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001344 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001345
1346 if (overlay->active) {
1347 ret = -EBUSY;
1348 goto out_unlock;
1349 }
1350
1351 ret = check_gamma(attrs);
Chris Wilson60fc3322010-08-12 10:44:45 +01001352 if (ret)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001353 goto out_unlock;
1354
1355 I915_WRITE(OGAMC0, attrs->gamma0);
1356 I915_WRITE(OGAMC1, attrs->gamma1);
1357 I915_WRITE(OGAMC2, attrs->gamma2);
1358 I915_WRITE(OGAMC3, attrs->gamma3);
1359 I915_WRITE(OGAMC4, attrs->gamma4);
1360 I915_WRITE(OGAMC5, attrs->gamma5);
1361 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001362 }
Chris Wilsonea9da4e2015-04-02 10:35:08 +01001363 overlay->color_key_enabled = (attrs->flags & I915_OVERLAY_DISABLE_DEST_COLORKEY) == 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001364
Chris Wilson60fc3322010-08-12 10:44:45 +01001365 ret = 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001366out_unlock:
1367 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001368 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001369
1370 return ret;
1371}
1372
1373void intel_setup_overlay(struct drm_device *dev)
1374{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001375 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001376 struct intel_overlay *overlay;
Chris Wilson05394f32010-11-08 19:18:58 +00001377 struct drm_i915_gem_object *reg_bo;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001378 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001379 int ret;
1380
Chris Wilson315781482010-08-12 09:42:51 +01001381 if (!HAS_OVERLAY(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001382 return;
1383
Daniel Vetterb14c5672013-09-19 12:18:32 +02001384 overlay = kzalloc(sizeof(*overlay), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001385 if (!overlay)
1386 return;
Chris Wilson79d24272011-06-28 11:27:47 +01001387
1388 mutex_lock(&dev->struct_mutex);
1389 if (WARN_ON(dev_priv->overlay))
1390 goto out_free;
1391
Daniel Vetter02e792f2009-09-15 22:57:34 +02001392 overlay->dev = dev;
1393
Daniel Vetterf63a4842013-07-23 19:24:38 +02001394 reg_bo = NULL;
1395 if (!OVERLAY_NEEDS_PHYSICAL(dev))
1396 reg_bo = i915_gem_object_create_stolen(dev, PAGE_SIZE);
Chris Wilson80405132012-11-15 11:32:29 +00001397 if (reg_bo == NULL)
1398 reg_bo = i915_gem_alloc_object(dev, PAGE_SIZE);
1399 if (reg_bo == NULL)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001400 goto out_free;
Chris Wilson05394f32010-11-08 19:18:58 +00001401 overlay->reg_bo = reg_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001402
Chris Wilson315781482010-08-12 09:42:51 +01001403 if (OVERLAY_NEEDS_PHYSICAL(dev)) {
Chris Wilson00731152014-05-21 12:42:56 +01001404 ret = i915_gem_object_attach_phys(reg_bo, PAGE_SIZE);
Akshay Joshi0206e352011-08-16 15:34:10 -04001405 if (ret) {
1406 DRM_ERROR("failed to attach phys overlay regs\n");
1407 goto out_free_bo;
1408 }
Chris Wilson00731152014-05-21 12:42:56 +01001409 overlay->flip_addr = reg_bo->phys_handle->busaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001410 } else {
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001411 ret = i915_gem_obj_ggtt_pin(reg_bo, PAGE_SIZE, PIN_MAPPABLE);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001412 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001413 DRM_ERROR("failed to pin overlay register bo\n");
1414 goto out_free_bo;
1415 }
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001416 overlay->flip_addr = i915_gem_obj_ggtt_offset(reg_bo);
Chris Wilson0ddc1282010-08-12 09:35:00 +01001417
1418 ret = i915_gem_object_set_to_gtt_domain(reg_bo, true);
1419 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001420 DRM_ERROR("failed to move overlay register bo into the GTT\n");
1421 goto out_unpin_bo;
1422 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001423 }
1424
1425 /* init all values */
1426 overlay->color_key = 0x0101fe;
Chris Wilsonea9da4e2015-04-02 10:35:08 +01001427 overlay->color_key_enabled = true;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001428 overlay->brightness = -19;
1429 overlay->contrast = 75;
1430 overlay->saturation = 146;
1431
Chris Wilson8d74f652010-08-12 10:35:26 +01001432 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001433 if (!regs)
Chris Wilson79d24272011-06-28 11:27:47 +01001434 goto out_unpin_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001435
Ben Widawsky75020bc2012-04-16 14:07:43 -07001436 memset_io(regs, 0, sizeof(struct overlay_registers));
Daniel Vetter02e792f2009-09-15 22:57:34 +02001437 update_polyphase_filter(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001438 update_reg_attrs(overlay, regs);
1439
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001440 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001441
1442 dev_priv->overlay = overlay;
Chris Wilson79d24272011-06-28 11:27:47 +01001443 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001444 DRM_INFO("initialized overlay support\n");
1445 return;
1446
Chris Wilson0ddc1282010-08-12 09:35:00 +01001447out_unpin_bo:
Chris Wilson79d24272011-06-28 11:27:47 +01001448 if (!OVERLAY_NEEDS_PHYSICAL(dev))
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001449 i915_gem_object_ggtt_unpin(reg_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001450out_free_bo:
Chris Wilson05394f32010-11-08 19:18:58 +00001451 drm_gem_object_unreference(&reg_bo->base);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001452out_free:
Chris Wilson79d24272011-06-28 11:27:47 +01001453 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001454 kfree(overlay);
1455 return;
1456}
1457
1458void intel_cleanup_overlay(struct drm_device *dev)
1459{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001460 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001461
Chris Wilson62cf4e62010-08-12 10:50:36 +01001462 if (!dev_priv->overlay)
1463 return;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001464
Chris Wilson62cf4e62010-08-12 10:50:36 +01001465 /* The bo's should be free'd by the generic code already.
1466 * Furthermore modesetting teardown happens beforehand so the
1467 * hardware should be off already */
Ville Syrjälä77589f52015-03-31 10:37:22 +03001468 WARN_ON(dev_priv->overlay->active);
Chris Wilson62cf4e62010-08-12 10:50:36 +01001469
1470 drm_gem_object_unreference_unlocked(&dev_priv->overlay->reg_bo->base);
1471 kfree(dev_priv->overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001472}
Chris Wilson6ef3d422010-08-04 20:26:07 +01001473
1474struct intel_overlay_error_state {
1475 struct overlay_registers regs;
1476 unsigned long base;
1477 u32 dovsta;
1478 u32 isr;
1479};
1480
Ben Widawsky75020bc2012-04-16 14:07:43 -07001481static struct overlay_registers __iomem *
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001482intel_overlay_map_regs_atomic(struct intel_overlay *overlay)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001483{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001484 struct drm_i915_private *dev_priv = overlay->dev->dev_private;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001485 struct overlay_registers __iomem *regs;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001486
1487 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -07001488 /* Cast to make sparse happy, but it's wc memory anyway, so
1489 * equivalent to the wc io mapping on X86. */
1490 regs = (struct overlay_registers __iomem *)
Chris Wilson00731152014-05-21 12:42:56 +01001491 overlay->reg_bo->phys_handle->vaddr;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001492 else
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001493 regs = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001494 i915_gem_obj_ggtt_offset(overlay->reg_bo));
Chris Wilson3bd3c932010-08-19 08:19:30 +01001495
1496 return regs;
1497}
1498
1499static void intel_overlay_unmap_regs_atomic(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001500 struct overlay_registers __iomem *regs)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001501{
1502 if (!OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001503 io_mapping_unmap_atomic(regs);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001504}
1505
1506
Chris Wilson6ef3d422010-08-04 20:26:07 +01001507struct intel_overlay_error_state *
1508intel_overlay_capture_error_state(struct drm_device *dev)
1509{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001510 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson6ef3d422010-08-04 20:26:07 +01001511 struct intel_overlay *overlay = dev_priv->overlay;
1512 struct intel_overlay_error_state *error;
1513 struct overlay_registers __iomem *regs;
1514
1515 if (!overlay || !overlay->active)
1516 return NULL;
1517
1518 error = kmalloc(sizeof(*error), GFP_ATOMIC);
1519 if (error == NULL)
1520 return NULL;
1521
1522 error->dovsta = I915_READ(DOVSTA);
1523 error->isr = I915_READ(ISR);
Chris Wilson315781482010-08-12 09:42:51 +01001524 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Chris Wilson00731152014-05-21 12:42:56 +01001525 error->base = (__force long)overlay->reg_bo->phys_handle->vaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001526 else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001527 error->base = i915_gem_obj_ggtt_offset(overlay->reg_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001528
1529 regs = intel_overlay_map_regs_atomic(overlay);
1530 if (!regs)
1531 goto err;
1532
1533 memcpy_fromio(&error->regs, regs, sizeof(struct overlay_registers));
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001534 intel_overlay_unmap_regs_atomic(overlay, regs);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001535
1536 return error;
1537
1538err:
1539 kfree(error);
1540 return NULL;
1541}
1542
1543void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001544intel_overlay_print_error_state(struct drm_i915_error_state_buf *m,
1545 struct intel_overlay_error_state *error)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001546{
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001547 i915_error_printf(m, "Overlay, status: 0x%08x, interrupt: 0x%08x\n",
1548 error->dovsta, error->isr);
1549 i915_error_printf(m, " Register file at 0x%08lx:\n",
1550 error->base);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001551
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001552#define P(x) i915_error_printf(m, " " #x ": 0x%08x\n", error->regs.x)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001553 P(OBUF_0Y);
1554 P(OBUF_1Y);
1555 P(OBUF_0U);
1556 P(OBUF_0V);
1557 P(OBUF_1U);
1558 P(OBUF_1V);
1559 P(OSTRIDE);
1560 P(YRGB_VPH);
1561 P(UV_VPH);
1562 P(HORZ_PH);
1563 P(INIT_PHS);
1564 P(DWINPOS);
1565 P(DWINSZ);
1566 P(SWIDTH);
1567 P(SWIDTHSW);
1568 P(SHEIGHT);
1569 P(YRGBSCALE);
1570 P(UVSCALE);
1571 P(OCLRC0);
1572 P(OCLRC1);
1573 P(DCLRKV);
1574 P(DCLRKM);
1575 P(SCLRKVH);
1576 P(SCLRKVL);
1577 P(SCLRKEN);
1578 P(OCONFIG);
1579 P(OCMD);
1580 P(OSTART_0Y);
1581 P(OSTART_1Y);
1582 P(OSTART_0U);
1583 P(OSTART_0V);
1584 P(OSTART_1U);
1585 P(OSTART_1V);
1586 P(OTILEOFF_0Y);
1587 P(OTILEOFF_1Y);
1588 P(OTILEOFF_0U);
1589 P(OTILEOFF_0V);
1590 P(OTILEOFF_1U);
1591 P(OTILEOFF_1V);
1592 P(FASTHSCALE);
1593 P(UVSCALEV);
1594#undef P
1595}