blob: 4a1e774ba8cc35a8326106d4a893bd6cb7543b57 [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{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300193 struct drm_i915_private *dev_priv = to_i915(overlay->dev);
194 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700195 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200196
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100197 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Chris Wilson00731152014-05-21 12:42:56 +0100198 regs = (struct overlay_registers __iomem *)overlay->reg_bo->phys_handle->vaddr;
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100199 else
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300200 regs = io_mapping_map_wc(ggtt->mappable,
Chris Wilsond8dab002016-04-28 09:56:37 +0100201 overlay->flip_addr,
202 PAGE_SIZE);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200203
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100204 return regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200205}
206
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100207static void intel_overlay_unmap_regs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700208 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200209{
Chris Wilson8d74f652010-08-12 10:35:26 +0100210 if (!OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100211 io_mapping_unmap(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200212}
Daniel Vetter02e792f2009-09-15 22:57:34 +0200213
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100214static int intel_overlay_do_wait_request(struct intel_overlay *overlay,
John Harrisondad540c2015-05-29 17:43:47 +0100215 struct drm_i915_gem_request *req,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100216 void (*tail)(struct intel_overlay *))
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100217{
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 Harrisondad540c2015-05-29 17:43:47 +0100221 i915_gem_request_assign(&overlay->last_flip_req, req);
John Harrison75289872015-05-29 17:43:49 +0100222 i915_add_request(req);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100223
Chris Wilsonb303cf92010-08-12 14:03:48 +0100224 overlay->flip_tail = tail;
Daniel Vettera4b3a572014-11-26 14:17:05 +0100225 ret = i915_wait_request(overlay->last_flip_req);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100226 if (ret)
227 return ret;
228
John Harrison9bfc01a2014-11-24 18:49:31 +0000229 i915_gem_request_assign(&overlay->last_flip_req, NULL);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100230 return 0;
231}
232
Daniel Vetter02e792f2009-09-15 22:57:34 +0200233/* overlay needs to be disable in OCMD reg */
234static int intel_overlay_on(struct intel_overlay *overlay)
235{
236 struct drm_device *dev = overlay->dev;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100237 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000238 struct intel_engine_cs *engine = &dev_priv->engine[RCS];
John Harrisondad540c2015-05-29 17:43:47 +0100239 struct drm_i915_gem_request *req;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200240 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200241
Ville Syrjälä77589f52015-03-31 10:37:22 +0300242 WARN_ON(overlay->active);
Daniel Vetter6306cb42012-08-12 19:27:10 +0200243 WARN_ON(IS_I830(dev) && !(dev_priv->quirks & QUIRK_PIPEA_FORCE));
Chris Wilson106dada2010-07-16 17:13:01 +0100244
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000245 req = i915_gem_request_alloc(engine, NULL);
Dave Gordon26827082016-01-19 19:02:53 +0000246 if (IS_ERR(req))
247 return PTR_ERR(req);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100248
John Harrison5fb9de12015-05-29 17:44:07 +0100249 ret = intel_ring_begin(req, 4);
John Harrisondad540c2015-05-29 17:43:47 +0100250 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100251 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100252 return ret;
253 }
254
Ville Syrjälä1c7c4302015-03-31 10:37:24 +0300255 overlay->active = true;
256
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000257 intel_ring_emit(engine, MI_OVERLAY_FLIP | MI_OVERLAY_ON);
258 intel_ring_emit(engine, overlay->flip_addr | OFC_UPDATE);
259 intel_ring_emit(engine, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
260 intel_ring_emit(engine, MI_NOOP);
261 intel_ring_advance(engine);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200262
John Harrisondad540c2015-05-29 17:43:47 +0100263 return intel_overlay_do_wait_request(overlay, req, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200264}
265
266/* overlay needs to be enabled in OCMD reg */
Chris Wilson8dc5d142010-08-12 12:36:12 +0100267static int intel_overlay_continue(struct intel_overlay *overlay,
268 bool load_polyphase_filter)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200269{
270 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300271 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000272 struct intel_engine_cs *engine = &dev_priv->engine[RCS];
John Harrisondad540c2015-05-29 17:43:47 +0100273 struct drm_i915_gem_request *req;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200274 u32 flip_addr = overlay->flip_addr;
275 u32 tmp;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100276 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200277
Ville Syrjälä77589f52015-03-31 10:37:22 +0300278 WARN_ON(!overlay->active);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200279
280 if (load_polyphase_filter)
281 flip_addr |= OFC_UPDATE;
282
283 /* check for underruns */
284 tmp = I915_READ(DOVSTA);
285 if (tmp & (1 << 17))
286 DRM_DEBUG("overlay underrun, DOVSTA: %x\n", tmp);
287
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000288 req = i915_gem_request_alloc(engine, NULL);
Dave Gordon26827082016-01-19 19:02:53 +0000289 if (IS_ERR(req))
290 return PTR_ERR(req);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100291
John Harrison5fb9de12015-05-29 17:44:07 +0100292 ret = intel_ring_begin(req, 2);
John Harrisondad540c2015-05-29 17:43:47 +0100293 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100294 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100295 return ret;
296 }
297
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000298 intel_ring_emit(engine, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
299 intel_ring_emit(engine, flip_addr);
300 intel_ring_advance(engine);
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200301
John Harrison9bfc01a2014-11-24 18:49:31 +0000302 WARN_ON(overlay->last_flip_req);
John Harrisondad540c2015-05-29 17:43:47 +0100303 i915_gem_request_assign(&overlay->last_flip_req, req);
John Harrison75289872015-05-29 17:43:49 +0100304 i915_add_request(req);
John Harrisonbf7dc5b2015-05-29 17:43:24 +0100305
306 return 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200307}
308
Chris Wilsonb303cf92010-08-12 14:03:48 +0100309static void intel_overlay_release_old_vid_tail(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200310{
Chris Wilson05394f32010-11-08 19:18:58 +0000311 struct drm_i915_gem_object *obj = overlay->old_vid_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200312
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800313 i915_gem_object_ggtt_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000314 drm_gem_object_unreference(&obj->base);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200315
Chris Wilsonb303cf92010-08-12 14:03:48 +0100316 overlay->old_vid_bo = NULL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200317}
318
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200319static void intel_overlay_off_tail(struct intel_overlay *overlay)
320{
Chris Wilson05394f32010-11-08 19:18:58 +0000321 struct drm_i915_gem_object *obj = overlay->vid_bo;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200322
323 /* never have the overlay hw on without showing a frame */
Ville Syrjälä77589f52015-03-31 10:37:22 +0300324 if (WARN_ON(!obj))
325 return;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200326
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800327 i915_gem_object_ggtt_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000328 drm_gem_object_unreference(&obj->base);
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200329 overlay->vid_bo = NULL;
330
331 overlay->crtc->overlay = NULL;
332 overlay->crtc = NULL;
Ville Syrjälä209c2a52015-03-31 10:37:23 +0300333 overlay->active = false;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200334}
335
Daniel Vetter02e792f2009-09-15 22:57:34 +0200336/* overlay needs to be disabled in OCMD reg */
Chris Wilsonce453d82011-02-21 14:43:56 +0000337static int intel_overlay_off(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200338{
339 struct drm_device *dev = overlay->dev;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100340 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000341 struct intel_engine_cs *engine = &dev_priv->engine[RCS];
John Harrisondad540c2015-05-29 17:43:47 +0100342 struct drm_i915_gem_request *req;
Chris Wilson8dc5d142010-08-12 12:36:12 +0100343 u32 flip_addr = overlay->flip_addr;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100344 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200345
Ville Syrjälä77589f52015-03-31 10:37:22 +0300346 WARN_ON(!overlay->active);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200347
348 /* According to intel docs the overlay hw may hang (when switching
349 * off) without loading the filter coeffs. It is however unclear whether
350 * this applies to the disabling of the overlay or to the switching off
351 * of the hw. Do it in both cases */
352 flip_addr |= OFC_UPDATE;
353
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000354 req = i915_gem_request_alloc(engine, NULL);
Dave Gordon26827082016-01-19 19:02:53 +0000355 if (IS_ERR(req))
356 return PTR_ERR(req);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100357
John Harrison5fb9de12015-05-29 17:44:07 +0100358 ret = intel_ring_begin(req, 6);
John Harrisondad540c2015-05-29 17:43:47 +0100359 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100360 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100361 return ret;
362 }
363
Daniel Vetter02e792f2009-09-15 22:57:34 +0200364 /* wait for overlay to go idle */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000365 intel_ring_emit(engine, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
366 intel_ring_emit(engine, flip_addr);
367 intel_ring_emit(engine, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Chris Wilson722506f2010-08-12 09:28:50 +0100368 /* turn overlay off */
Daniel Vettera9193982012-10-22 12:55:55 +0200369 if (IS_I830(dev)) {
370 /* Workaround: Don't disable the overlay fully, since otherwise
371 * it dies on the next OVERLAY_ON cmd. */
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000372 intel_ring_emit(engine, MI_NOOP);
373 intel_ring_emit(engine, MI_NOOP);
374 intel_ring_emit(engine, MI_NOOP);
Daniel Vettera9193982012-10-22 12:55:55 +0200375 } else {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000376 intel_ring_emit(engine, MI_OVERLAY_FLIP | MI_OVERLAY_OFF);
377 intel_ring_emit(engine, flip_addr);
378 intel_ring_emit(engine,
379 MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Daniel Vettera9193982012-10-22 12:55:55 +0200380 }
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000381 intel_ring_advance(engine);
Chris Wilson722506f2010-08-12 09:28:50 +0100382
John Harrisondad540c2015-05-29 17:43:47 +0100383 return intel_overlay_do_wait_request(overlay, req, intel_overlay_off_tail);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200384}
385
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200386/* recover from an interruption due to a signal
387 * We have to be careful not to repeat work forever an make forward progess. */
Chris Wilsonce453d82011-02-21 14:43:56 +0000388static int intel_overlay_recover_from_interrupt(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200389{
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200390 int ret;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200391
John Harrison9bfc01a2014-11-24 18:49:31 +0000392 if (overlay->last_flip_req == NULL)
Chris Wilsonb303cf92010-08-12 14:03:48 +0100393 return 0;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200394
Daniel Vettera4b3a572014-11-26 14:17:05 +0100395 ret = i915_wait_request(overlay->last_flip_req);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100396 if (ret)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200397 return ret;
398
Chris Wilsonb303cf92010-08-12 14:03:48 +0100399 if (overlay->flip_tail)
400 overlay->flip_tail(overlay);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200401
John Harrison9bfc01a2014-11-24 18:49:31 +0000402 i915_gem_request_assign(&overlay->last_flip_req, NULL);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200403 return 0;
404}
405
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200406/* Wait for pending overlay flip and release old frame.
407 * Needs to be called before the overlay register are changed
Chris Wilson8d74f652010-08-12 10:35:26 +0100408 * via intel_overlay_(un)map_regs
409 */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200410static int intel_overlay_release_old_vid(struct intel_overlay *overlay)
411{
Chris Wilson5cd68c92010-08-12 12:21:54 +0100412 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300413 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000414 struct intel_engine_cs *engine = &dev_priv->engine[RCS];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200415 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200416
Ville Syrjälä1362b772014-11-26 17:07:29 +0200417 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
418
Chris Wilson5cd68c92010-08-12 12:21:54 +0100419 /* Only wait if there is actually an old frame to release to
420 * guarantee forward progress.
421 */
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200422 if (!overlay->old_vid_bo)
423 return 0;
424
Chris Wilson5cd68c92010-08-12 12:21:54 +0100425 if (I915_READ(ISR) & I915_OVERLAY_PLANE_FLIP_PENDING_INTERRUPT) {
426 /* synchronous slowpath */
John Harrisondad540c2015-05-29 17:43:47 +0100427 struct drm_i915_gem_request *req;
428
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000429 req = i915_gem_request_alloc(engine, NULL);
Dave Gordon26827082016-01-19 19:02:53 +0000430 if (IS_ERR(req))
431 return PTR_ERR(req);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100432
John Harrison5fb9de12015-05-29 17:44:07 +0100433 ret = intel_ring_begin(req, 2);
John Harrisondad540c2015-05-29 17:43:47 +0100434 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100435 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100436 return ret;
437 }
438
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000439 intel_ring_emit(engine,
440 MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
441 intel_ring_emit(engine, MI_NOOP);
442 intel_ring_advance(engine);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200443
John Harrisondad540c2015-05-29 17:43:47 +0100444 ret = intel_overlay_do_wait_request(overlay, req,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100445 intel_overlay_release_old_vid_tail);
Chris Wilson5cd68c92010-08-12 12:21:54 +0100446 if (ret)
447 return ret;
448 }
Daniel Vetter02e792f2009-09-15 22:57:34 +0200449
Chris Wilson5cd68c92010-08-12 12:21:54 +0100450 intel_overlay_release_old_vid_tail(overlay);
Daniel Vettera071fa02014-06-18 23:28:09 +0200451
452
453 i915_gem_track_fb(overlay->old_vid_bo, NULL,
454 INTEL_FRONTBUFFER_OVERLAY(overlay->crtc->pipe));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200455 return 0;
456}
457
Ville Syrjälä1362b772014-11-26 17:07:29 +0200458void intel_overlay_reset(struct drm_i915_private *dev_priv)
459{
460 struct intel_overlay *overlay = dev_priv->overlay;
461
462 if (!overlay)
463 return;
464
465 intel_overlay_release_old_vid(overlay);
466
467 overlay->last_flip_req = NULL;
468 overlay->old_xscale = 0;
469 overlay->old_yscale = 0;
470 overlay->crtc = NULL;
471 overlay->active = false;
472}
473
Daniel Vetter02e792f2009-09-15 22:57:34 +0200474struct put_image_params {
475 int format;
476 short dst_x;
477 short dst_y;
478 short dst_w;
479 short dst_h;
480 short src_w;
481 short src_scan_h;
482 short src_scan_w;
483 short src_h;
484 short stride_Y;
485 short stride_UV;
486 int offset_Y;
487 int offset_U;
488 int offset_V;
489};
490
491static int packed_depth_bytes(u32 format)
492{
493 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100494 case I915_OVERLAY_YUV422:
495 return 4;
496 case I915_OVERLAY_YUV411:
497 /* return 6; not implemented */
498 default:
499 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200500 }
501}
502
503static int packed_width_bytes(u32 format, short width)
504{
505 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100506 case I915_OVERLAY_YUV422:
507 return width << 1;
508 default:
509 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200510 }
511}
512
513static int uv_hsubsampling(u32 format)
514{
515 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100516 case I915_OVERLAY_YUV422:
517 case I915_OVERLAY_YUV420:
518 return 2;
519 case I915_OVERLAY_YUV411:
520 case I915_OVERLAY_YUV410:
521 return 4;
522 default:
523 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200524 }
525}
526
527static int uv_vsubsampling(u32 format)
528{
529 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100530 case I915_OVERLAY_YUV420:
531 case I915_OVERLAY_YUV410:
532 return 2;
533 case I915_OVERLAY_YUV422:
534 case I915_OVERLAY_YUV411:
535 return 1;
536 default:
537 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200538 }
539}
540
541static u32 calc_swidthsw(struct drm_device *dev, u32 offset, u32 width)
542{
543 u32 mask, shift, ret;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100544 if (IS_GEN2(dev)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +0200545 mask = 0x1f;
546 shift = 5;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100547 } else {
548 mask = 0x3f;
549 shift = 6;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200550 }
551 ret = ((offset + width + mask) >> shift) - (offset >> shift);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100552 if (!IS_GEN2(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +0200553 ret <<= 1;
Akshay Joshi0206e352011-08-16 15:34:10 -0400554 ret -= 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200555 return ret << 2;
556}
557
558static const u16 y_static_hcoeffs[N_HORIZ_Y_TAPS * N_PHASES] = {
559 0x3000, 0xb4a0, 0x1930, 0x1920, 0xb4a0,
560 0x3000, 0xb500, 0x19d0, 0x1880, 0xb440,
561 0x3000, 0xb540, 0x1a88, 0x2f80, 0xb3e0,
562 0x3000, 0xb580, 0x1b30, 0x2e20, 0xb380,
563 0x3000, 0xb5c0, 0x1bd8, 0x2cc0, 0xb320,
564 0x3020, 0xb5e0, 0x1c60, 0x2b80, 0xb2c0,
565 0x3020, 0xb5e0, 0x1cf8, 0x2a20, 0xb260,
566 0x3020, 0xb5e0, 0x1d80, 0x28e0, 0xb200,
567 0x3020, 0xb5c0, 0x1e08, 0x3f40, 0xb1c0,
568 0x3020, 0xb580, 0x1e78, 0x3ce0, 0xb160,
569 0x3040, 0xb520, 0x1ed8, 0x3aa0, 0xb120,
570 0x3040, 0xb4a0, 0x1f30, 0x3880, 0xb0e0,
571 0x3040, 0xb400, 0x1f78, 0x3680, 0xb0a0,
572 0x3020, 0xb340, 0x1fb8, 0x34a0, 0xb060,
573 0x3020, 0xb240, 0x1fe0, 0x32e0, 0xb040,
574 0x3020, 0xb140, 0x1ff8, 0x3160, 0xb020,
Chris Wilson722506f2010-08-12 09:28:50 +0100575 0xb000, 0x3000, 0x0800, 0x3000, 0xb000
576};
577
Daniel Vetter02e792f2009-09-15 22:57:34 +0200578static const u16 uv_static_hcoeffs[N_HORIZ_UV_TAPS * N_PHASES] = {
579 0x3000, 0x1800, 0x1800, 0xb000, 0x18d0, 0x2e60,
580 0xb000, 0x1990, 0x2ce0, 0xb020, 0x1a68, 0x2b40,
581 0xb040, 0x1b20, 0x29e0, 0xb060, 0x1bd8, 0x2880,
582 0xb080, 0x1c88, 0x3e60, 0xb0a0, 0x1d28, 0x3c00,
583 0xb0c0, 0x1db8, 0x39e0, 0xb0e0, 0x1e40, 0x37e0,
584 0xb100, 0x1eb8, 0x3620, 0xb100, 0x1f18, 0x34a0,
585 0xb100, 0x1f68, 0x3360, 0xb0e0, 0x1fa8, 0x3240,
586 0xb0c0, 0x1fe0, 0x3140, 0xb060, 0x1ff0, 0x30a0,
Chris Wilson722506f2010-08-12 09:28:50 +0100587 0x3000, 0x0800, 0x3000
588};
Daniel Vetter02e792f2009-09-15 22:57:34 +0200589
Ben Widawsky75020bc2012-04-16 14:07:43 -0700590static void update_polyphase_filter(struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200591{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700592 memcpy_toio(regs->Y_HCOEFS, y_static_hcoeffs, sizeof(y_static_hcoeffs));
593 memcpy_toio(regs->UV_HCOEFS, uv_static_hcoeffs,
594 sizeof(uv_static_hcoeffs));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200595}
596
597static bool update_scaling_factors(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700598 struct overlay_registers __iomem *regs,
Daniel Vetter02e792f2009-09-15 22:57:34 +0200599 struct put_image_params *params)
600{
601 /* fixed point with a 12 bit shift */
602 u32 xscale, yscale, xscale_UV, yscale_UV;
603#define FP_SHIFT 12
604#define FRACT_MASK 0xfff
605 bool scale_changed = false;
606 int uv_hscale = uv_hsubsampling(params->format);
607 int uv_vscale = uv_vsubsampling(params->format);
608
609 if (params->dst_w > 1)
610 xscale = ((params->src_scan_w - 1) << FP_SHIFT)
611 /(params->dst_w);
612 else
613 xscale = 1 << FP_SHIFT;
614
615 if (params->dst_h > 1)
616 yscale = ((params->src_scan_h - 1) << FP_SHIFT)
617 /(params->dst_h);
618 else
619 yscale = 1 << FP_SHIFT;
620
621 /*if (params->format & I915_OVERLAY_YUV_PLANAR) {*/
Chris Wilson722506f2010-08-12 09:28:50 +0100622 xscale_UV = xscale/uv_hscale;
623 yscale_UV = yscale/uv_vscale;
624 /* make the Y scale to UV scale ratio an exact multiply */
625 xscale = xscale_UV * uv_hscale;
626 yscale = yscale_UV * uv_vscale;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200627 /*} else {
Chris Wilson722506f2010-08-12 09:28:50 +0100628 xscale_UV = 0;
629 yscale_UV = 0;
630 }*/
Daniel Vetter02e792f2009-09-15 22:57:34 +0200631
632 if (xscale != overlay->old_xscale || yscale != overlay->old_yscale)
633 scale_changed = true;
634 overlay->old_xscale = xscale;
635 overlay->old_yscale = yscale;
636
Ben Widawsky75020bc2012-04-16 14:07:43 -0700637 iowrite32(((yscale & FRACT_MASK) << 20) |
638 ((xscale >> FP_SHIFT) << 16) |
639 ((xscale & FRACT_MASK) << 3),
640 &regs->YRGBSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100641
Ben Widawsky75020bc2012-04-16 14:07:43 -0700642 iowrite32(((yscale_UV & FRACT_MASK) << 20) |
643 ((xscale_UV >> FP_SHIFT) << 16) |
644 ((xscale_UV & FRACT_MASK) << 3),
645 &regs->UVSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100646
Ben Widawsky75020bc2012-04-16 14:07:43 -0700647 iowrite32((((yscale >> FP_SHIFT) << 16) |
648 ((yscale_UV >> FP_SHIFT) << 0)),
649 &regs->UVSCALEV);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200650
651 if (scale_changed)
652 update_polyphase_filter(regs);
653
654 return scale_changed;
655}
656
657static void update_colorkey(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700658 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200659{
660 u32 key = overlay->color_key;
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100661 u32 flags;
662
663 flags = 0;
664 if (overlay->color_key_enabled)
665 flags |= DST_KEY_ENABLE;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100666
Matt Roperf4510a22014-04-01 15:22:40 -0700667 switch (overlay->crtc->base.primary->fb->bits_per_pixel) {
Chris Wilson722506f2010-08-12 09:28:50 +0100668 case 8:
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100669 key = 0;
670 flags |= CLK_RGB8I_MASK;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100671 break;
672
Chris Wilson722506f2010-08-12 09:28:50 +0100673 case 16:
Matt Roperf4510a22014-04-01 15:22:40 -0700674 if (overlay->crtc->base.primary->fb->depth == 15) {
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100675 key = RGB15_TO_COLORKEY(key);
676 flags |= CLK_RGB15_MASK;
Chris Wilson722506f2010-08-12 09:28:50 +0100677 } else {
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100678 key = RGB16_TO_COLORKEY(key);
679 flags |= CLK_RGB16_MASK;
Chris Wilson722506f2010-08-12 09:28:50 +0100680 }
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100681 break;
682
Chris Wilson722506f2010-08-12 09:28:50 +0100683 case 24:
684 case 32:
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100685 flags |= CLK_RGB24_MASK;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100686 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200687 }
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100688
689 iowrite32(key, &regs->DCLRKV);
690 iowrite32(flags, &regs->DCLRKM);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200691}
692
693static u32 overlay_cmd_reg(struct put_image_params *params)
694{
695 u32 cmd = OCMD_ENABLE | OCMD_BUF_TYPE_FRAME | OCMD_BUFFER0;
696
697 if (params->format & I915_OVERLAY_YUV_PLANAR) {
698 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100699 case I915_OVERLAY_YUV422:
700 cmd |= OCMD_YUV_422_PLANAR;
701 break;
702 case I915_OVERLAY_YUV420:
703 cmd |= OCMD_YUV_420_PLANAR;
704 break;
705 case I915_OVERLAY_YUV411:
706 case I915_OVERLAY_YUV410:
707 cmd |= OCMD_YUV_410_PLANAR;
708 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200709 }
710 } else { /* YUV packed */
711 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100712 case I915_OVERLAY_YUV422:
713 cmd |= OCMD_YUV_422_PACKED;
714 break;
715 case I915_OVERLAY_YUV411:
716 cmd |= OCMD_YUV_411_PACKED;
717 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200718 }
719
720 switch (params->format & I915_OVERLAY_SWAP_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100721 case I915_OVERLAY_NO_SWAP:
722 break;
723 case I915_OVERLAY_UV_SWAP:
724 cmd |= OCMD_UV_SWAP;
725 break;
726 case I915_OVERLAY_Y_SWAP:
727 cmd |= OCMD_Y_SWAP;
728 break;
729 case I915_OVERLAY_Y_AND_UV_SWAP:
730 cmd |= OCMD_Y_AND_UV_SWAP;
731 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200732 }
733 }
734
735 return cmd;
736}
737
Chris Wilson5fe82c52010-08-12 12:38:21 +0100738static int intel_overlay_do_put_image(struct intel_overlay *overlay,
Chris Wilson05394f32010-11-08 19:18:58 +0000739 struct drm_i915_gem_object *new_bo,
Chris Wilson5fe82c52010-08-12 12:38:21 +0100740 struct put_image_params *params)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200741{
742 int ret, tmp_width;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700743 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200744 bool scale_changed = false;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200745 struct drm_device *dev = overlay->dev;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700746 u32 swidth, swidthsw, sheight, ostride;
Daniel Vettera071fa02014-06-18 23:28:09 +0200747 enum pipe pipe = overlay->crtc->pipe;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200748
Ville Syrjälä77589f52015-03-31 10:37:22 +0300749 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
750 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200751
Daniel Vetter02e792f2009-09-15 22:57:34 +0200752 ret = intel_overlay_release_old_vid(overlay);
753 if (ret != 0)
754 return ret;
755
Maarten Lankhorst7580d772015-08-18 13:40:06 +0200756 ret = i915_gem_object_pin_to_display_plane(new_bo, 0,
Tvrtko Ursuline6617332015-03-23 11:10:33 +0000757 &i915_ggtt_view_normal);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200758 if (ret != 0)
759 return ret;
760
Chris Wilsond9e86c02010-11-10 16:40:20 +0000761 ret = i915_gem_object_put_fence(new_bo);
762 if (ret)
763 goto out_unpin;
764
Daniel Vetter02e792f2009-09-15 22:57:34 +0200765 if (!overlay->active) {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700766 u32 oconfig;
Chris Wilson8d74f652010-08-12 10:35:26 +0100767 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200768 if (!regs) {
769 ret = -ENOMEM;
770 goto out_unpin;
771 }
Ben Widawsky75020bc2012-04-16 14:07:43 -0700772 oconfig = OCONF_CC_OUT_8BIT;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100773 if (IS_GEN4(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -0700774 oconfig |= OCONF_CSC_MODE_BT709;
Daniel Vettera071fa02014-06-18 23:28:09 +0200775 oconfig |= pipe == 0 ?
Daniel Vetter02e792f2009-09-15 22:57:34 +0200776 OCONF_PIPE_A : OCONF_PIPE_B;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700777 iowrite32(oconfig, &regs->OCONFIG);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100778 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200779
780 ret = intel_overlay_on(overlay);
781 if (ret != 0)
782 goto out_unpin;
783 }
784
Chris Wilson8d74f652010-08-12 10:35:26 +0100785 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200786 if (!regs) {
787 ret = -ENOMEM;
788 goto out_unpin;
789 }
790
Ben Widawsky75020bc2012-04-16 14:07:43 -0700791 iowrite32((params->dst_y << 16) | params->dst_x, &regs->DWINPOS);
792 iowrite32((params->dst_h << 16) | params->dst_w, &regs->DWINSZ);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200793
794 if (params->format & I915_OVERLAY_YUV_PACKED)
795 tmp_width = packed_width_bytes(params->format, params->src_w);
796 else
797 tmp_width = params->src_w;
798
Ben Widawsky75020bc2012-04-16 14:07:43 -0700799 swidth = params->src_w;
800 swidthsw = calc_swidthsw(overlay->dev, params->offset_Y, tmp_width);
801 sheight = params->src_h;
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700802 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_Y, &regs->OBUF_0Y);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700803 ostride = params->stride_Y;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200804
805 if (params->format & I915_OVERLAY_YUV_PLANAR) {
806 int uv_hscale = uv_hsubsampling(params->format);
807 int uv_vscale = uv_vsubsampling(params->format);
808 u32 tmp_U, tmp_V;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700809 swidth |= (params->src_w/uv_hscale) << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200810 tmp_U = calc_swidthsw(overlay->dev, params->offset_U,
Chris Wilson722506f2010-08-12 09:28:50 +0100811 params->src_w/uv_hscale);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200812 tmp_V = calc_swidthsw(overlay->dev, params->offset_V,
Chris Wilson722506f2010-08-12 09:28:50 +0100813 params->src_w/uv_hscale);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700814 swidthsw |= max_t(u32, tmp_U, tmp_V) << 16;
815 sheight |= (params->src_h/uv_vscale) << 16;
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700816 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_U, &regs->OBUF_0U);
817 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_V, &regs->OBUF_0V);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700818 ostride |= params->stride_UV << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200819 }
820
Ben Widawsky75020bc2012-04-16 14:07:43 -0700821 iowrite32(swidth, &regs->SWIDTH);
822 iowrite32(swidthsw, &regs->SWIDTHSW);
823 iowrite32(sheight, &regs->SHEIGHT);
824 iowrite32(ostride, &regs->OSTRIDE);
825
Daniel Vetter02e792f2009-09-15 22:57:34 +0200826 scale_changed = update_scaling_factors(overlay, regs, params);
827
828 update_colorkey(overlay, regs);
829
Ben Widawsky75020bc2012-04-16 14:07:43 -0700830 iowrite32(overlay_cmd_reg(params), &regs->OCMD);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200831
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100832 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200833
Chris Wilson8dc5d142010-08-12 12:36:12 +0100834 ret = intel_overlay_continue(overlay, scale_changed);
835 if (ret)
836 goto out_unpin;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200837
Daniel Vettera071fa02014-06-18 23:28:09 +0200838 i915_gem_track_fb(overlay->vid_bo, new_bo,
839 INTEL_FRONTBUFFER_OVERLAY(pipe));
840
Daniel Vetter02e792f2009-09-15 22:57:34 +0200841 overlay->old_vid_bo = overlay->vid_bo;
Chris Wilson05394f32010-11-08 19:18:58 +0000842 overlay->vid_bo = new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200843
Daniel Vetterf99d7062014-06-19 16:01:59 +0200844 intel_frontbuffer_flip(dev,
845 INTEL_FRONTBUFFER_OVERLAY(pipe));
846
Daniel Vetter02e792f2009-09-15 22:57:34 +0200847 return 0;
848
849out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800850 i915_gem_object_ggtt_unpin(new_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200851 return ret;
852}
853
Chris Wilsonce453d82011-02-21 14:43:56 +0000854int intel_overlay_switch_off(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200855{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700856 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200857 struct drm_device *dev = overlay->dev;
Chris Wilson5dcdbcb2010-08-12 13:50:28 +0100858 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200859
Ville Syrjälä77589f52015-03-31 10:37:22 +0300860 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
861 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200862
Chris Wilsonce453d82011-02-21 14:43:56 +0000863 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +0100864 if (ret != 0)
865 return ret;
Daniel Vetter9bedb972009-11-30 15:55:49 +0100866
Daniel Vetter02e792f2009-09-15 22:57:34 +0200867 if (!overlay->active)
868 return 0;
869
Daniel Vetter02e792f2009-09-15 22:57:34 +0200870 ret = intel_overlay_release_old_vid(overlay);
871 if (ret != 0)
872 return ret;
873
Chris Wilson8d74f652010-08-12 10:35:26 +0100874 regs = intel_overlay_map_regs(overlay);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700875 iowrite32(0, &regs->OCMD);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100876 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200877
Chris Wilsonce453d82011-02-21 14:43:56 +0000878 ret = intel_overlay_off(overlay);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200879 if (ret != 0)
880 return ret;
881
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200882 intel_overlay_off_tail(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200883 return 0;
884}
885
886static int check_overlay_possible_on_crtc(struct intel_overlay *overlay,
887 struct intel_crtc *crtc)
888{
Chris Wilsonf7abfe82010-09-13 14:19:16 +0100889 if (!crtc->active)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200890 return -EINVAL;
891
Daniel Vetter02e792f2009-09-15 22:57:34 +0200892 /* can't use the overlay with double wide pipe */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200893 if (crtc->config->double_wide)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200894 return -EINVAL;
895
896 return 0;
897}
898
899static void update_pfit_vscale_ratio(struct intel_overlay *overlay)
900{
901 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300902 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200903 u32 pfit_control = I915_READ(PFIT_CONTROL);
Chris Wilson446d2182010-08-12 11:15:58 +0100904 u32 ratio;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200905
906 /* XXX: This is not the same logic as in the xorg driver, but more in
Chris Wilson446d2182010-08-12 11:15:58 +0100907 * line with the intel documentation for the i965
908 */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100909 if (INTEL_INFO(dev)->gen >= 4) {
Akshay Joshi0206e352011-08-16 15:34:10 -0400910 /* on i965 use the PGM reg to read out the autoscaler values */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100911 ratio = I915_READ(PFIT_PGM_RATIOS) >> PFIT_VERT_SCALE_SHIFT_965;
912 } else {
Chris Wilson446d2182010-08-12 11:15:58 +0100913 if (pfit_control & VERT_AUTO_SCALE)
914 ratio = I915_READ(PFIT_AUTO_RATIOS);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200915 else
Chris Wilson446d2182010-08-12 11:15:58 +0100916 ratio = I915_READ(PFIT_PGM_RATIOS);
917 ratio >>= PFIT_VERT_SCALE_SHIFT;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200918 }
919
920 overlay->pfit_vscale_ratio = ratio;
921}
922
923static int check_overlay_dst(struct intel_overlay *overlay,
924 struct drm_intel_overlay_put_image *rec)
925{
926 struct drm_display_mode *mode = &overlay->crtc->base.mode;
927
Daniel Vetter75c13992012-01-28 23:48:46 +0100928 if (rec->dst_x < mode->hdisplay &&
929 rec->dst_x + rec->dst_width <= mode->hdisplay &&
930 rec->dst_y < mode->vdisplay &&
931 rec->dst_y + rec->dst_height <= mode->vdisplay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200932 return 0;
933 else
934 return -EINVAL;
935}
936
937static int check_overlay_scaling(struct put_image_params *rec)
938{
939 u32 tmp;
940
941 /* downscaling limit is 8.0 */
942 tmp = ((rec->src_scan_h << 16) / rec->dst_h) >> 16;
943 if (tmp > 7)
944 return -EINVAL;
945 tmp = ((rec->src_scan_w << 16) / rec->dst_w) >> 16;
946 if (tmp > 7)
947 return -EINVAL;
948
949 return 0;
950}
951
952static int check_overlay_src(struct drm_device *dev,
953 struct drm_intel_overlay_put_image *rec,
Chris Wilson05394f32010-11-08 19:18:58 +0000954 struct drm_i915_gem_object *new_bo)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200955{
Daniel Vetter02e792f2009-09-15 22:57:34 +0200956 int uv_hscale = uv_hsubsampling(rec->flags);
957 int uv_vscale = uv_vsubsampling(rec->flags);
Dan Carpenter8f28f542010-10-27 23:17:25 +0200958 u32 stride_mask;
959 int depth;
960 u32 tmp;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200961
962 /* check src dimensions */
963 if (IS_845G(dev) || IS_I830(dev)) {
Chris Wilson722506f2010-08-12 09:28:50 +0100964 if (rec->src_height > IMAGE_MAX_HEIGHT_LEGACY ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100965 rec->src_width > IMAGE_MAX_WIDTH_LEGACY)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200966 return -EINVAL;
967 } else {
Chris Wilson722506f2010-08-12 09:28:50 +0100968 if (rec->src_height > IMAGE_MAX_HEIGHT ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100969 rec->src_width > IMAGE_MAX_WIDTH)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200970 return -EINVAL;
971 }
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100972
Daniel Vetter02e792f2009-09-15 22:57:34 +0200973 /* better safe than sorry, use 4 as the maximal subsampling ratio */
Chris Wilson722506f2010-08-12 09:28:50 +0100974 if (rec->src_height < N_VERT_Y_TAPS*4 ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100975 rec->src_width < N_HORIZ_Y_TAPS*4)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200976 return -EINVAL;
977
Chris Wilsona1efd142010-07-12 19:35:38 +0100978 /* check alignment constraints */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200979 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100980 case I915_OVERLAY_RGB:
981 /* not implemented */
982 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100983
Chris Wilson722506f2010-08-12 09:28:50 +0100984 case I915_OVERLAY_YUV_PACKED:
Chris Wilson722506f2010-08-12 09:28:50 +0100985 if (uv_vscale != 1)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200986 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100987
988 depth = packed_depth_bytes(rec->flags);
Chris Wilson722506f2010-08-12 09:28:50 +0100989 if (depth < 0)
990 return depth;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100991
Chris Wilson722506f2010-08-12 09:28:50 +0100992 /* ignore UV planes */
993 rec->stride_UV = 0;
994 rec->offset_U = 0;
995 rec->offset_V = 0;
996 /* check pixel alignment */
997 if (rec->offset_Y % depth)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200998 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +0100999 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001000
Chris Wilson722506f2010-08-12 09:28:50 +01001001 case I915_OVERLAY_YUV_PLANAR:
1002 if (uv_vscale < 0 || uv_hscale < 0)
1003 return -EINVAL;
1004 /* no offset restrictions for planar formats */
1005 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001006
Chris Wilson722506f2010-08-12 09:28:50 +01001007 default:
1008 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001009 }
1010
1011 if (rec->src_width % uv_hscale)
1012 return -EINVAL;
1013
1014 /* stride checking */
Chris Wilsona1efd142010-07-12 19:35:38 +01001015 if (IS_I830(dev) || IS_845G(dev))
1016 stride_mask = 255;
1017 else
1018 stride_mask = 63;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001019
1020 if (rec->stride_Y & stride_mask || rec->stride_UV & stride_mask)
1021 return -EINVAL;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001022 if (IS_GEN4(dev) && rec->stride_Y < 512)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001023 return -EINVAL;
1024
1025 tmp = (rec->flags & I915_OVERLAY_TYPE_MASK) == I915_OVERLAY_YUV_PLANAR ?
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001026 4096 : 8192;
1027 if (rec->stride_Y > tmp || rec->stride_UV > 2*1024)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001028 return -EINVAL;
1029
1030 /* check buffer dimensions */
1031 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +01001032 case I915_OVERLAY_RGB:
1033 case I915_OVERLAY_YUV_PACKED:
1034 /* always 4 Y values per depth pixels */
1035 if (packed_width_bytes(rec->flags, rec->src_width) > rec->stride_Y)
1036 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001037
Chris Wilson722506f2010-08-12 09:28:50 +01001038 tmp = rec->stride_Y*rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001039 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001040 return -EINVAL;
1041 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001042
Chris Wilson722506f2010-08-12 09:28:50 +01001043 case I915_OVERLAY_YUV_PLANAR:
1044 if (rec->src_width > rec->stride_Y)
1045 return -EINVAL;
1046 if (rec->src_width/uv_hscale > rec->stride_UV)
1047 return -EINVAL;
1048
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001049 tmp = rec->stride_Y * rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001050 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001051 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001052
1053 tmp = rec->stride_UV * (rec->src_height / uv_vscale);
Chris Wilson05394f32010-11-08 19:18:58 +00001054 if (rec->offset_U + tmp > new_bo->base.size ||
1055 rec->offset_V + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001056 return -EINVAL;
1057 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001058 }
1059
1060 return 0;
1061}
1062
Chris Wilsone9e331a2010-09-13 01:16:10 +01001063/**
1064 * Return the pipe currently connected to the panel fitter,
1065 * or -1 if the panel fitter is not present or not in use
1066 */
1067static int intel_panel_fitter_pipe(struct drm_device *dev)
1068{
1069 struct drm_i915_private *dev_priv = dev->dev_private;
1070 u32 pfit_control;
1071
1072 /* i830 doesn't have a panel fitter */
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02001073 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001074 return -1;
1075
1076 pfit_control = I915_READ(PFIT_CONTROL);
1077
1078 /* See if the panel fitter is in use */
1079 if ((pfit_control & PFIT_ENABLE) == 0)
1080 return -1;
1081
1082 /* 965 can place panel fitter on either pipe */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001083 if (IS_GEN4(dev))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001084 return (pfit_control >> 29) & 0x3;
1085
1086 /* older chips can only use pipe 1 */
1087 return 1;
1088}
1089
Daniel Vetter02e792f2009-09-15 22:57:34 +02001090int intel_overlay_put_image(struct drm_device *dev, void *data,
Akshay Joshi0206e352011-08-16 15:34:10 -04001091 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001092{
1093 struct drm_intel_overlay_put_image *put_image_rec = data;
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001094 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001095 struct intel_overlay *overlay;
Rob Clark7707e652014-07-17 23:30:04 -04001096 struct drm_crtc *drmmode_crtc;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001097 struct intel_crtc *crtc;
Chris Wilson05394f32010-11-08 19:18:58 +00001098 struct drm_i915_gem_object *new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001099 struct put_image_params *params;
1100 int ret;
1101
Daniel Vetter02e792f2009-09-15 22:57:34 +02001102 overlay = dev_priv->overlay;
1103 if (!overlay) {
1104 DRM_DEBUG("userspace bug: no overlay\n");
1105 return -ENODEV;
1106 }
1107
1108 if (!(put_image_rec->flags & I915_OVERLAY_ENABLE)) {
Daniel Vettera0e99e62012-12-02 01:05:46 +01001109 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001110 mutex_lock(&dev->struct_mutex);
1111
Chris Wilsonce453d82011-02-21 14:43:56 +00001112 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001113
1114 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001115 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001116
1117 return ret;
1118 }
1119
Daniel Vetterb14c5672013-09-19 12:18:32 +02001120 params = kmalloc(sizeof(*params), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001121 if (!params)
1122 return -ENOMEM;
1123
Rob Clark7707e652014-07-17 23:30:04 -04001124 drmmode_crtc = drm_crtc_find(dev, put_image_rec->crtc_id);
1125 if (!drmmode_crtc) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001126 ret = -ENOENT;
1127 goto out_free;
1128 }
Rob Clark7707e652014-07-17 23:30:04 -04001129 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001130
Chris Wilson05394f32010-11-08 19:18:58 +00001131 new_bo = to_intel_bo(drm_gem_object_lookup(dev, file_priv,
1132 put_image_rec->bo_handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001133 if (&new_bo->base == NULL) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001134 ret = -ENOENT;
1135 goto out_free;
1136 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001137
Daniel Vettera0e99e62012-12-02 01:05:46 +01001138 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001139 mutex_lock(&dev->struct_mutex);
1140
Chris Wilsond9e86c02010-11-10 16:40:20 +00001141 if (new_bo->tiling_mode) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01001142 DRM_DEBUG_KMS("buffer used for overlay image can not be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00001143 ret = -EINVAL;
1144 goto out_unlock;
1145 }
1146
Chris Wilsonce453d82011-02-21 14:43:56 +00001147 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +01001148 if (ret != 0)
1149 goto out_unlock;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02001150
Daniel Vetter02e792f2009-09-15 22:57:34 +02001151 if (overlay->crtc != crtc) {
1152 struct drm_display_mode *mode = &crtc->base.mode;
Chris Wilsonce453d82011-02-21 14:43:56 +00001153 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001154 if (ret != 0)
1155 goto out_unlock;
1156
1157 ret = check_overlay_possible_on_crtc(overlay, crtc);
1158 if (ret != 0)
1159 goto out_unlock;
1160
1161 overlay->crtc = crtc;
1162 crtc->overlay = overlay;
1163
Chris Wilsone9e331a2010-09-13 01:16:10 +01001164 /* line too wide, i.e. one-line-mode */
1165 if (mode->hdisplay > 1024 &&
1166 intel_panel_fitter_pipe(dev) == crtc->pipe) {
Ville Syrjälä209c2a52015-03-31 10:37:23 +03001167 overlay->pfit_active = true;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001168 update_pfit_vscale_ratio(overlay);
1169 } else
Ville Syrjälä209c2a52015-03-31 10:37:23 +03001170 overlay->pfit_active = false;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001171 }
1172
1173 ret = check_overlay_dst(overlay, put_image_rec);
1174 if (ret != 0)
1175 goto out_unlock;
1176
1177 if (overlay->pfit_active) {
1178 params->dst_y = ((((u32)put_image_rec->dst_y) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001179 overlay->pfit_vscale_ratio);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001180 /* shifting right rounds downwards, so add 1 */
1181 params->dst_h = ((((u32)put_image_rec->dst_height) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001182 overlay->pfit_vscale_ratio) + 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001183 } else {
1184 params->dst_y = put_image_rec->dst_y;
1185 params->dst_h = put_image_rec->dst_height;
1186 }
1187 params->dst_x = put_image_rec->dst_x;
1188 params->dst_w = put_image_rec->dst_width;
1189
1190 params->src_w = put_image_rec->src_width;
1191 params->src_h = put_image_rec->src_height;
1192 params->src_scan_w = put_image_rec->src_scan_width;
1193 params->src_scan_h = put_image_rec->src_scan_height;
Chris Wilson722506f2010-08-12 09:28:50 +01001194 if (params->src_scan_h > params->src_h ||
1195 params->src_scan_w > params->src_w) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001196 ret = -EINVAL;
1197 goto out_unlock;
1198 }
1199
1200 ret = check_overlay_src(dev, put_image_rec, new_bo);
1201 if (ret != 0)
1202 goto out_unlock;
1203 params->format = put_image_rec->flags & ~I915_OVERLAY_FLAGS_MASK;
1204 params->stride_Y = put_image_rec->stride_Y;
1205 params->stride_UV = put_image_rec->stride_UV;
1206 params->offset_Y = put_image_rec->offset_Y;
1207 params->offset_U = put_image_rec->offset_U;
1208 params->offset_V = put_image_rec->offset_V;
1209
1210 /* Check scaling after src size to prevent a divide-by-zero. */
1211 ret = check_overlay_scaling(params);
1212 if (ret != 0)
1213 goto out_unlock;
1214
1215 ret = intel_overlay_do_put_image(overlay, new_bo, params);
1216 if (ret != 0)
1217 goto out_unlock;
1218
1219 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001220 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001221
1222 kfree(params);
1223
1224 return 0;
1225
1226out_unlock:
1227 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001228 drm_modeset_unlock_all(dev);
Chris Wilson05394f32010-11-08 19:18:58 +00001229 drm_gem_object_unreference_unlocked(&new_bo->base);
Dan Carpenter915a4282010-03-06 14:05:39 +03001230out_free:
Daniel Vetter02e792f2009-09-15 22:57:34 +02001231 kfree(params);
1232
1233 return ret;
1234}
1235
1236static void update_reg_attrs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001237 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001238{
Ben Widawsky75020bc2012-04-16 14:07:43 -07001239 iowrite32((overlay->contrast << 18) | (overlay->brightness & 0xff),
1240 &regs->OCLRC0);
1241 iowrite32(overlay->saturation, &regs->OCLRC1);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001242}
1243
1244static bool check_gamma_bounds(u32 gamma1, u32 gamma2)
1245{
1246 int i;
1247
1248 if (gamma1 & 0xff000000 || gamma2 & 0xff000000)
1249 return false;
1250
1251 for (i = 0; i < 3; i++) {
Chris Wilson722506f2010-08-12 09:28:50 +01001252 if (((gamma1 >> i*8) & 0xff) >= ((gamma2 >> i*8) & 0xff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001253 return false;
1254 }
1255
1256 return true;
1257}
1258
1259static bool check_gamma5_errata(u32 gamma5)
1260{
1261 int i;
1262
1263 for (i = 0; i < 3; i++) {
1264 if (((gamma5 >> i*8) & 0xff) == 0x80)
1265 return false;
1266 }
1267
1268 return true;
1269}
1270
1271static int check_gamma(struct drm_intel_overlay_attrs *attrs)
1272{
Chris Wilson722506f2010-08-12 09:28:50 +01001273 if (!check_gamma_bounds(0, attrs->gamma0) ||
1274 !check_gamma_bounds(attrs->gamma0, attrs->gamma1) ||
1275 !check_gamma_bounds(attrs->gamma1, attrs->gamma2) ||
1276 !check_gamma_bounds(attrs->gamma2, attrs->gamma3) ||
1277 !check_gamma_bounds(attrs->gamma3, attrs->gamma4) ||
1278 !check_gamma_bounds(attrs->gamma4, attrs->gamma5) ||
1279 !check_gamma_bounds(attrs->gamma5, 0x00ffffff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001280 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001281
Daniel Vetter02e792f2009-09-15 22:57:34 +02001282 if (!check_gamma5_errata(attrs->gamma5))
1283 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001284
Daniel Vetter02e792f2009-09-15 22:57:34 +02001285 return 0;
1286}
1287
1288int intel_overlay_attrs(struct drm_device *dev, void *data,
Akshay Joshi0206e352011-08-16 15:34:10 -04001289 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001290{
1291 struct drm_intel_overlay_attrs *attrs = data;
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001292 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001293 struct intel_overlay *overlay;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001294 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001295 int ret;
1296
Daniel Vetter02e792f2009-09-15 22:57:34 +02001297 overlay = dev_priv->overlay;
1298 if (!overlay) {
1299 DRM_DEBUG("userspace bug: no overlay\n");
1300 return -ENODEV;
1301 }
1302
Daniel Vettera0e99e62012-12-02 01:05:46 +01001303 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001304 mutex_lock(&dev->struct_mutex);
1305
Chris Wilson60fc3322010-08-12 10:44:45 +01001306 ret = -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001307 if (!(attrs->flags & I915_OVERLAY_UPDATE_ATTRS)) {
Chris Wilson60fc3322010-08-12 10:44:45 +01001308 attrs->color_key = overlay->color_key;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001309 attrs->brightness = overlay->brightness;
Chris Wilson60fc3322010-08-12 10:44:45 +01001310 attrs->contrast = overlay->contrast;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001311 attrs->saturation = overlay->saturation;
1312
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001313 if (!IS_GEN2(dev)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001314 attrs->gamma0 = I915_READ(OGAMC0);
1315 attrs->gamma1 = I915_READ(OGAMC1);
1316 attrs->gamma2 = I915_READ(OGAMC2);
1317 attrs->gamma3 = I915_READ(OGAMC3);
1318 attrs->gamma4 = I915_READ(OGAMC4);
1319 attrs->gamma5 = I915_READ(OGAMC5);
1320 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001321 } else {
Chris Wilson60fc3322010-08-12 10:44:45 +01001322 if (attrs->brightness < -128 || attrs->brightness > 127)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001323 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001324 if (attrs->contrast > 255)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001325 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001326 if (attrs->saturation > 1023)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001327 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001328
Chris Wilson60fc3322010-08-12 10:44:45 +01001329 overlay->color_key = attrs->color_key;
1330 overlay->brightness = attrs->brightness;
1331 overlay->contrast = attrs->contrast;
1332 overlay->saturation = attrs->saturation;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001333
Chris Wilson8d74f652010-08-12 10:35:26 +01001334 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001335 if (!regs) {
1336 ret = -ENOMEM;
1337 goto out_unlock;
1338 }
1339
1340 update_reg_attrs(overlay, regs);
1341
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001342 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001343
1344 if (attrs->flags & I915_OVERLAY_UPDATE_GAMMA) {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001345 if (IS_GEN2(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001346 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001347
1348 if (overlay->active) {
1349 ret = -EBUSY;
1350 goto out_unlock;
1351 }
1352
1353 ret = check_gamma(attrs);
Chris Wilson60fc3322010-08-12 10:44:45 +01001354 if (ret)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001355 goto out_unlock;
1356
1357 I915_WRITE(OGAMC0, attrs->gamma0);
1358 I915_WRITE(OGAMC1, attrs->gamma1);
1359 I915_WRITE(OGAMC2, attrs->gamma2);
1360 I915_WRITE(OGAMC3, attrs->gamma3);
1361 I915_WRITE(OGAMC4, attrs->gamma4);
1362 I915_WRITE(OGAMC5, attrs->gamma5);
1363 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001364 }
Chris Wilsonea9da4e2015-04-02 10:35:08 +01001365 overlay->color_key_enabled = (attrs->flags & I915_OVERLAY_DISABLE_DEST_COLORKEY) == 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001366
Chris Wilson60fc3322010-08-12 10:44:45 +01001367 ret = 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001368out_unlock:
1369 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001370 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001371
1372 return ret;
1373}
1374
1375void intel_setup_overlay(struct drm_device *dev)
1376{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001377 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001378 struct intel_overlay *overlay;
Chris Wilson05394f32010-11-08 19:18:58 +00001379 struct drm_i915_gem_object *reg_bo;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001380 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001381 int ret;
1382
Chris Wilson315781482010-08-12 09:42:51 +01001383 if (!HAS_OVERLAY(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001384 return;
1385
Daniel Vetterb14c5672013-09-19 12:18:32 +02001386 overlay = kzalloc(sizeof(*overlay), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001387 if (!overlay)
1388 return;
Chris Wilson79d24272011-06-28 11:27:47 +01001389
1390 mutex_lock(&dev->struct_mutex);
1391 if (WARN_ON(dev_priv->overlay))
1392 goto out_free;
1393
Daniel Vetter02e792f2009-09-15 22:57:34 +02001394 overlay->dev = dev;
1395
Daniel Vetterf63a4842013-07-23 19:24:38 +02001396 reg_bo = NULL;
1397 if (!OVERLAY_NEEDS_PHYSICAL(dev))
1398 reg_bo = i915_gem_object_create_stolen(dev, PAGE_SIZE);
Chris Wilson80405132012-11-15 11:32:29 +00001399 if (reg_bo == NULL)
Dave Gordond37cd8a2016-04-22 19:14:32 +01001400 reg_bo = i915_gem_object_create(dev, PAGE_SIZE);
Chris Wilsonfe3db792016-04-25 13:32:13 +01001401 if (IS_ERR(reg_bo))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001402 goto out_free;
Chris Wilson05394f32010-11-08 19:18:58 +00001403 overlay->reg_bo = reg_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001404
Chris Wilson315781482010-08-12 09:42:51 +01001405 if (OVERLAY_NEEDS_PHYSICAL(dev)) {
Chris Wilson00731152014-05-21 12:42:56 +01001406 ret = i915_gem_object_attach_phys(reg_bo, PAGE_SIZE);
Akshay Joshi0206e352011-08-16 15:34:10 -04001407 if (ret) {
1408 DRM_ERROR("failed to attach phys overlay regs\n");
1409 goto out_free_bo;
1410 }
Chris Wilson00731152014-05-21 12:42:56 +01001411 overlay->flip_addr = reg_bo->phys_handle->busaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001412 } else {
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001413 ret = i915_gem_obj_ggtt_pin(reg_bo, PAGE_SIZE, PIN_MAPPABLE);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001414 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001415 DRM_ERROR("failed to pin overlay register bo\n");
1416 goto out_free_bo;
1417 }
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001418 overlay->flip_addr = i915_gem_obj_ggtt_offset(reg_bo);
Chris Wilson0ddc1282010-08-12 09:35:00 +01001419
1420 ret = i915_gem_object_set_to_gtt_domain(reg_bo, true);
1421 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001422 DRM_ERROR("failed to move overlay register bo into the GTT\n");
1423 goto out_unpin_bo;
1424 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001425 }
1426
1427 /* init all values */
1428 overlay->color_key = 0x0101fe;
Chris Wilsonea9da4e2015-04-02 10:35:08 +01001429 overlay->color_key_enabled = true;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001430 overlay->brightness = -19;
1431 overlay->contrast = 75;
1432 overlay->saturation = 146;
1433
Chris Wilson8d74f652010-08-12 10:35:26 +01001434 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001435 if (!regs)
Chris Wilson79d24272011-06-28 11:27:47 +01001436 goto out_unpin_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001437
Ben Widawsky75020bc2012-04-16 14:07:43 -07001438 memset_io(regs, 0, sizeof(struct overlay_registers));
Daniel Vetter02e792f2009-09-15 22:57:34 +02001439 update_polyphase_filter(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001440 update_reg_attrs(overlay, regs);
1441
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001442 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001443
1444 dev_priv->overlay = overlay;
Chris Wilson79d24272011-06-28 11:27:47 +01001445 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001446 DRM_INFO("initialized overlay support\n");
1447 return;
1448
Chris Wilson0ddc1282010-08-12 09:35:00 +01001449out_unpin_bo:
Chris Wilson79d24272011-06-28 11:27:47 +01001450 if (!OVERLAY_NEEDS_PHYSICAL(dev))
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001451 i915_gem_object_ggtt_unpin(reg_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001452out_free_bo:
Chris Wilson05394f32010-11-08 19:18:58 +00001453 drm_gem_object_unreference(&reg_bo->base);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001454out_free:
Chris Wilson79d24272011-06-28 11:27:47 +01001455 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001456 kfree(overlay);
1457 return;
1458}
1459
1460void intel_cleanup_overlay(struct drm_device *dev)
1461{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001462 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001463
Chris Wilson62cf4e62010-08-12 10:50:36 +01001464 if (!dev_priv->overlay)
1465 return;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001466
Chris Wilson62cf4e62010-08-12 10:50:36 +01001467 /* The bo's should be free'd by the generic code already.
1468 * Furthermore modesetting teardown happens beforehand so the
1469 * hardware should be off already */
Ville Syrjälä77589f52015-03-31 10:37:22 +03001470 WARN_ON(dev_priv->overlay->active);
Chris Wilson62cf4e62010-08-12 10:50:36 +01001471
1472 drm_gem_object_unreference_unlocked(&dev_priv->overlay->reg_bo->base);
1473 kfree(dev_priv->overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001474}
Chris Wilson6ef3d422010-08-04 20:26:07 +01001475
1476struct intel_overlay_error_state {
1477 struct overlay_registers regs;
1478 unsigned long base;
1479 u32 dovsta;
1480 u32 isr;
1481};
1482
Ben Widawsky75020bc2012-04-16 14:07:43 -07001483static struct overlay_registers __iomem *
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001484intel_overlay_map_regs_atomic(struct intel_overlay *overlay)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001485{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001486 struct drm_i915_private *dev_priv = to_i915(overlay->dev);
1487 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001488 struct overlay_registers __iomem *regs;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001489
1490 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -07001491 /* Cast to make sparse happy, but it's wc memory anyway, so
1492 * equivalent to the wc io mapping on X86. */
1493 regs = (struct overlay_registers __iomem *)
Chris Wilson00731152014-05-21 12:42:56 +01001494 overlay->reg_bo->phys_handle->vaddr;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001495 else
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001496 regs = io_mapping_map_atomic_wc(ggtt->mappable,
Chris Wilsonda6ca032016-04-28 09:56:36 +01001497 overlay->flip_addr);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001498
1499 return regs;
1500}
1501
1502static void intel_overlay_unmap_regs_atomic(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001503 struct overlay_registers __iomem *regs)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001504{
1505 if (!OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001506 io_mapping_unmap_atomic(regs);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001507}
1508
1509
Chris Wilson6ef3d422010-08-04 20:26:07 +01001510struct intel_overlay_error_state *
Chris Wilsonc0336662016-05-06 15:40:21 +01001511intel_overlay_capture_error_state(struct drm_i915_private *dev_priv)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001512{
Chris Wilson6ef3d422010-08-04 20:26:07 +01001513 struct intel_overlay *overlay = dev_priv->overlay;
1514 struct intel_overlay_error_state *error;
1515 struct overlay_registers __iomem *regs;
1516
1517 if (!overlay || !overlay->active)
1518 return NULL;
1519
1520 error = kmalloc(sizeof(*error), GFP_ATOMIC);
1521 if (error == NULL)
1522 return NULL;
1523
1524 error->dovsta = I915_READ(DOVSTA);
1525 error->isr = I915_READ(ISR);
Chris Wilsonda6ca032016-04-28 09:56:36 +01001526 error->base = overlay->flip_addr;
Chris Wilson6ef3d422010-08-04 20:26:07 +01001527
1528 regs = intel_overlay_map_regs_atomic(overlay);
1529 if (!regs)
1530 goto err;
1531
1532 memcpy_fromio(&error->regs, regs, sizeof(struct overlay_registers));
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001533 intel_overlay_unmap_regs_atomic(overlay, regs);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001534
1535 return error;
1536
1537err:
1538 kfree(error);
1539 return NULL;
1540}
1541
1542void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001543intel_overlay_print_error_state(struct drm_i915_error_state_buf *m,
1544 struct intel_overlay_error_state *error)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001545{
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001546 i915_error_printf(m, "Overlay, status: 0x%08x, interrupt: 0x%08x\n",
1547 error->dovsta, error->isr);
1548 i915_error_printf(m, " Register file at 0x%08lx:\n",
1549 error->base);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001550
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001551#define P(x) i915_error_printf(m, " " #x ": 0x%08x\n", error->regs.x)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001552 P(OBUF_0Y);
1553 P(OBUF_1Y);
1554 P(OBUF_0U);
1555 P(OBUF_0V);
1556 P(OBUF_1U);
1557 P(OBUF_1V);
1558 P(OSTRIDE);
1559 P(YRGB_VPH);
1560 P(UV_VPH);
1561 P(HORZ_PH);
1562 P(INIT_PHS);
1563 P(DWINPOS);
1564 P(DWINSZ);
1565 P(SWIDTH);
1566 P(SWIDTHSW);
1567 P(SHEIGHT);
1568 P(YRGBSCALE);
1569 P(UVSCALE);
1570 P(OCLRC0);
1571 P(OCLRC1);
1572 P(DCLRKV);
1573 P(DCLRKM);
1574 P(SCLRKVH);
1575 P(SCLRKVL);
1576 P(SCLRKEN);
1577 P(OCONFIG);
1578 P(OCMD);
1579 P(OSTART_0Y);
1580 P(OSTART_1Y);
1581 P(OSTART_0U);
1582 P(OSTART_0V);
1583 P(OSTART_1U);
1584 P(OSTART_1V);
1585 P(OTILEOFF_0Y);
1586 P(OTILEOFF_1Y);
1587 P(OTILEOFF_0U);
1588 P(OTILEOFF_0V);
1589 P(OTILEOFF_1U);
1590 P(OTILEOFF_1V);
1591 P(FASTHSCALE);
1592 P(UVSCALEV);
1593#undef P
1594}