blob: 651efe4e468e7193edc5cc77429b0beb54f54d44 [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 {
Chris Wilson1ee8da62016-05-12 12:43:23 +0100171 struct drm_i915_private *i915;
Chris Wilson23f09ce2010-08-12 13:53:37 +0100172 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{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100193 struct drm_i915_private *dev_priv = overlay->i915;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700194 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200195
Chris Wilson1ee8da62016-05-12 12:43:23 +0100196 if (OVERLAY_NEEDS_PHYSICAL(dev_priv))
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
Chris Wilson1ee8da62016-05-12 12:43:23 +0100199 regs = io_mapping_map_wc(dev_priv->ggtt.mappable,
Chris Wilsond8dab002016-04-28 09:56:37 +0100200 overlay->flip_addr,
201 PAGE_SIZE);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200202
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100203 return regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200204}
205
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100206static void intel_overlay_unmap_regs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700207 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200208{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100209 if (!OVERLAY_NEEDS_PHYSICAL(overlay->i915))
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100210 io_mapping_unmap(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200211}
Daniel Vetter02e792f2009-09-15 22:57:34 +0200212
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100213static int intel_overlay_do_wait_request(struct intel_overlay *overlay,
John Harrisondad540c2015-05-29 17:43:47 +0100214 struct drm_i915_gem_request *req,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100215 void (*tail)(struct intel_overlay *))
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100216{
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100217 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200218
Ville Syrjälä77589f52015-03-31 10:37:22 +0300219 WARN_ON(overlay->last_flip_req);
John Harrisondad540c2015-05-29 17:43:47 +0100220 i915_gem_request_assign(&overlay->last_flip_req, req);
John Harrison75289872015-05-29 17:43:49 +0100221 i915_add_request(req);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100222
Chris Wilsonb303cf92010-08-12 14:03:48 +0100223 overlay->flip_tail = tail;
Daniel Vettera4b3a572014-11-26 14:17:05 +0100224 ret = i915_wait_request(overlay->last_flip_req);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100225 if (ret)
226 return ret;
227
John Harrison9bfc01a2014-11-24 18:49:31 +0000228 i915_gem_request_assign(&overlay->last_flip_req, NULL);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100229 return 0;
230}
231
Chris Wilson8e637172016-08-02 22:50:26 +0100232static struct drm_i915_gem_request *alloc_request(struct intel_overlay *overlay)
233{
234 struct drm_i915_private *dev_priv = overlay->i915;
235 struct intel_engine_cs *engine = &dev_priv->engine[RCS];
236
237 return i915_gem_request_alloc(engine, dev_priv->kernel_context);
238}
239
Daniel Vetter02e792f2009-09-15 22:57:34 +0200240/* overlay needs to be disable in OCMD reg */
241static int intel_overlay_on(struct intel_overlay *overlay)
242{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100243 struct drm_i915_private *dev_priv = overlay->i915;
John Harrisondad540c2015-05-29 17:43:47 +0100244 struct drm_i915_gem_request *req;
Chris Wilson7e37f882016-08-02 22:50:21 +0100245 struct intel_ring *ring;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200246 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200247
Ville Syrjälä77589f52015-03-31 10:37:22 +0300248 WARN_ON(overlay->active);
Chris Wilson1ee8da62016-05-12 12:43:23 +0100249 WARN_ON(IS_I830(dev_priv) && !(dev_priv->quirks & QUIRK_PIPEA_FORCE));
Chris Wilson106dada2010-07-16 17:13:01 +0100250
Chris Wilson8e637172016-08-02 22:50:26 +0100251 req = alloc_request(overlay);
Dave Gordon26827082016-01-19 19:02:53 +0000252 if (IS_ERR(req))
253 return PTR_ERR(req);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100254
John Harrison5fb9de12015-05-29 17:44:07 +0100255 ret = intel_ring_begin(req, 4);
John Harrisondad540c2015-05-29 17:43:47 +0100256 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100257 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100258 return ret;
259 }
260
Ville Syrjälä1c7c4302015-03-31 10:37:24 +0300261 overlay->active = true;
262
Chris Wilson1dae2df2016-08-02 22:50:19 +0100263 ring = req->ring;
Chris Wilsonb5321f32016-08-02 22:50:18 +0100264 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_ON);
265 intel_ring_emit(ring, overlay->flip_addr | OFC_UPDATE);
266 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
267 intel_ring_emit(ring, MI_NOOP);
268 intel_ring_advance(ring);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200269
John Harrisondad540c2015-05-29 17:43:47 +0100270 return intel_overlay_do_wait_request(overlay, req, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200271}
272
273/* overlay needs to be enabled in OCMD reg */
Chris Wilson8dc5d142010-08-12 12:36:12 +0100274static int intel_overlay_continue(struct intel_overlay *overlay,
275 bool load_polyphase_filter)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200276{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100277 struct drm_i915_private *dev_priv = overlay->i915;
John Harrisondad540c2015-05-29 17:43:47 +0100278 struct drm_i915_gem_request *req;
Chris Wilson7e37f882016-08-02 22:50:21 +0100279 struct intel_ring *ring;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200280 u32 flip_addr = overlay->flip_addr;
281 u32 tmp;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100282 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200283
Ville Syrjälä77589f52015-03-31 10:37:22 +0300284 WARN_ON(!overlay->active);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200285
286 if (load_polyphase_filter)
287 flip_addr |= OFC_UPDATE;
288
289 /* check for underruns */
290 tmp = I915_READ(DOVSTA);
291 if (tmp & (1 << 17))
292 DRM_DEBUG("overlay underrun, DOVSTA: %x\n", tmp);
293
Chris Wilson8e637172016-08-02 22:50:26 +0100294 req = alloc_request(overlay);
Dave Gordon26827082016-01-19 19:02:53 +0000295 if (IS_ERR(req))
296 return PTR_ERR(req);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100297
John Harrison5fb9de12015-05-29 17:44:07 +0100298 ret = intel_ring_begin(req, 2);
John Harrisondad540c2015-05-29 17:43:47 +0100299 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100300 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100301 return ret;
302 }
303
Chris Wilson1dae2df2016-08-02 22:50:19 +0100304 ring = req->ring;
Chris Wilsonb5321f32016-08-02 22:50:18 +0100305 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
306 intel_ring_emit(ring, flip_addr);
307 intel_ring_advance(ring);
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200308
John Harrison9bfc01a2014-11-24 18:49:31 +0000309 WARN_ON(overlay->last_flip_req);
John Harrisondad540c2015-05-29 17:43:47 +0100310 i915_gem_request_assign(&overlay->last_flip_req, req);
John Harrison75289872015-05-29 17:43:49 +0100311 i915_add_request(req);
John Harrisonbf7dc5b2015-05-29 17:43:24 +0100312
313 return 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200314}
315
Chris Wilsonb303cf92010-08-12 14:03:48 +0100316static void intel_overlay_release_old_vid_tail(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200317{
Chris Wilson05394f32010-11-08 19:18:58 +0000318 struct drm_i915_gem_object *obj = overlay->old_vid_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200319
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800320 i915_gem_object_ggtt_unpin(obj);
Chris Wilsonf8c417c2016-07-20 13:31:53 +0100321 i915_gem_object_put(obj);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200322
Chris Wilsonb303cf92010-08-12 14:03:48 +0100323 overlay->old_vid_bo = NULL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200324}
325
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200326static void intel_overlay_off_tail(struct intel_overlay *overlay)
327{
Chris Wilson05394f32010-11-08 19:18:58 +0000328 struct drm_i915_gem_object *obj = overlay->vid_bo;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200329
330 /* never have the overlay hw on without showing a frame */
Ville Syrjälä77589f52015-03-31 10:37:22 +0300331 if (WARN_ON(!obj))
332 return;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200333
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800334 i915_gem_object_ggtt_unpin(obj);
Chris Wilsonf8c417c2016-07-20 13:31:53 +0100335 i915_gem_object_put(obj);
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200336 overlay->vid_bo = NULL;
337
338 overlay->crtc->overlay = NULL;
339 overlay->crtc = NULL;
Ville Syrjälä209c2a52015-03-31 10:37:23 +0300340 overlay->active = false;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200341}
342
Daniel Vetter02e792f2009-09-15 22:57:34 +0200343/* overlay needs to be disabled in OCMD reg */
Chris Wilsonce453d82011-02-21 14:43:56 +0000344static int intel_overlay_off(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200345{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100346 struct drm_i915_private *dev_priv = overlay->i915;
John Harrisondad540c2015-05-29 17:43:47 +0100347 struct drm_i915_gem_request *req;
Chris Wilson7e37f882016-08-02 22:50:21 +0100348 struct intel_ring *ring;
Chris Wilson8dc5d142010-08-12 12:36:12 +0100349 u32 flip_addr = overlay->flip_addr;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100350 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200351
Ville Syrjälä77589f52015-03-31 10:37:22 +0300352 WARN_ON(!overlay->active);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200353
354 /* According to intel docs the overlay hw may hang (when switching
355 * off) without loading the filter coeffs. It is however unclear whether
356 * this applies to the disabling of the overlay or to the switching off
357 * of the hw. Do it in both cases */
358 flip_addr |= OFC_UPDATE;
359
Chris Wilson8e637172016-08-02 22:50:26 +0100360 req = alloc_request(overlay);
Dave Gordon26827082016-01-19 19:02:53 +0000361 if (IS_ERR(req))
362 return PTR_ERR(req);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100363
John Harrison5fb9de12015-05-29 17:44:07 +0100364 ret = intel_ring_begin(req, 6);
John Harrisondad540c2015-05-29 17:43:47 +0100365 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100366 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100367 return ret;
368 }
369
Chris Wilson1dae2df2016-08-02 22:50:19 +0100370 ring = req->ring;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200371 /* wait for overlay to go idle */
Chris Wilsonb5321f32016-08-02 22:50:18 +0100372 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
373 intel_ring_emit(ring, flip_addr);
374 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Chris Wilson722506f2010-08-12 09:28:50 +0100375 /* turn overlay off */
Chris Wilson1ee8da62016-05-12 12:43:23 +0100376 if (IS_I830(dev_priv)) {
Daniel Vettera9193982012-10-22 12:55:55 +0200377 /* Workaround: Don't disable the overlay fully, since otherwise
378 * it dies on the next OVERLAY_ON cmd. */
Chris Wilsonb5321f32016-08-02 22:50:18 +0100379 intel_ring_emit(ring, MI_NOOP);
380 intel_ring_emit(ring, MI_NOOP);
381 intel_ring_emit(ring, MI_NOOP);
Daniel Vettera9193982012-10-22 12:55:55 +0200382 } else {
Chris Wilsonb5321f32016-08-02 22:50:18 +0100383 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_OFF);
384 intel_ring_emit(ring, flip_addr);
385 intel_ring_emit(ring,
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000386 MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Daniel Vettera9193982012-10-22 12:55:55 +0200387 }
Chris Wilsonb5321f32016-08-02 22:50:18 +0100388 intel_ring_advance(ring);
Chris Wilson722506f2010-08-12 09:28:50 +0100389
John Harrisondad540c2015-05-29 17:43:47 +0100390 return intel_overlay_do_wait_request(overlay, req, intel_overlay_off_tail);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200391}
392
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200393/* recover from an interruption due to a signal
394 * We have to be careful not to repeat work forever an make forward progess. */
Chris Wilsonce453d82011-02-21 14:43:56 +0000395static int intel_overlay_recover_from_interrupt(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200396{
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200397 int ret;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200398
John Harrison9bfc01a2014-11-24 18:49:31 +0000399 if (overlay->last_flip_req == NULL)
Chris Wilsonb303cf92010-08-12 14:03:48 +0100400 return 0;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200401
Daniel Vettera4b3a572014-11-26 14:17:05 +0100402 ret = i915_wait_request(overlay->last_flip_req);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100403 if (ret)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200404 return ret;
405
Chris Wilsonb303cf92010-08-12 14:03:48 +0100406 if (overlay->flip_tail)
407 overlay->flip_tail(overlay);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200408
John Harrison9bfc01a2014-11-24 18:49:31 +0000409 i915_gem_request_assign(&overlay->last_flip_req, NULL);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200410 return 0;
411}
412
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200413/* Wait for pending overlay flip and release old frame.
414 * Needs to be called before the overlay register are changed
Chris Wilson8d74f652010-08-12 10:35:26 +0100415 * via intel_overlay_(un)map_regs
416 */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200417static int intel_overlay_release_old_vid(struct intel_overlay *overlay)
418{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100419 struct drm_i915_private *dev_priv = overlay->i915;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200420 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200421
Chris Wilson91c8a322016-07-05 10:40:23 +0100422 lockdep_assert_held(&dev_priv->drm.struct_mutex);
Ville Syrjälä1362b772014-11-26 17:07:29 +0200423
Chris Wilson5cd68c92010-08-12 12:21:54 +0100424 /* Only wait if there is actually an old frame to release to
425 * guarantee forward progress.
426 */
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200427 if (!overlay->old_vid_bo)
428 return 0;
429
Chris Wilson5cd68c92010-08-12 12:21:54 +0100430 if (I915_READ(ISR) & I915_OVERLAY_PLANE_FLIP_PENDING_INTERRUPT) {
431 /* synchronous slowpath */
John Harrisondad540c2015-05-29 17:43:47 +0100432 struct drm_i915_gem_request *req;
Chris Wilson7e37f882016-08-02 22:50:21 +0100433 struct intel_ring *ring;
John Harrisondad540c2015-05-29 17:43:47 +0100434
Chris Wilson8e637172016-08-02 22:50:26 +0100435 req = alloc_request(overlay);
Dave Gordon26827082016-01-19 19:02:53 +0000436 if (IS_ERR(req))
437 return PTR_ERR(req);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100438
John Harrison5fb9de12015-05-29 17:44:07 +0100439 ret = intel_ring_begin(req, 2);
John Harrisondad540c2015-05-29 17:43:47 +0100440 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100441 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100442 return ret;
443 }
444
Chris Wilson1dae2df2016-08-02 22:50:19 +0100445 ring = req->ring;
Chris Wilsonb5321f32016-08-02 22:50:18 +0100446 intel_ring_emit(ring,
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000447 MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Chris Wilsonb5321f32016-08-02 22:50:18 +0100448 intel_ring_emit(ring, MI_NOOP);
449 intel_ring_advance(ring);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200450
John Harrisondad540c2015-05-29 17:43:47 +0100451 ret = intel_overlay_do_wait_request(overlay, req,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100452 intel_overlay_release_old_vid_tail);
Chris Wilson5cd68c92010-08-12 12:21:54 +0100453 if (ret)
454 return ret;
455 }
Daniel Vetter02e792f2009-09-15 22:57:34 +0200456
Chris Wilson5cd68c92010-08-12 12:21:54 +0100457 intel_overlay_release_old_vid_tail(overlay);
Daniel Vettera071fa02014-06-18 23:28:09 +0200458
459
460 i915_gem_track_fb(overlay->old_vid_bo, NULL,
461 INTEL_FRONTBUFFER_OVERLAY(overlay->crtc->pipe));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200462 return 0;
463}
464
Ville Syrjälä1362b772014-11-26 17:07:29 +0200465void intel_overlay_reset(struct drm_i915_private *dev_priv)
466{
467 struct intel_overlay *overlay = dev_priv->overlay;
468
469 if (!overlay)
470 return;
471
472 intel_overlay_release_old_vid(overlay);
473
474 overlay->last_flip_req = NULL;
475 overlay->old_xscale = 0;
476 overlay->old_yscale = 0;
477 overlay->crtc = NULL;
478 overlay->active = false;
479}
480
Daniel Vetter02e792f2009-09-15 22:57:34 +0200481struct put_image_params {
482 int format;
483 short dst_x;
484 short dst_y;
485 short dst_w;
486 short dst_h;
487 short src_w;
488 short src_scan_h;
489 short src_scan_w;
490 short src_h;
491 short stride_Y;
492 short stride_UV;
493 int offset_Y;
494 int offset_U;
495 int offset_V;
496};
497
498static int packed_depth_bytes(u32 format)
499{
500 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100501 case I915_OVERLAY_YUV422:
502 return 4;
503 case I915_OVERLAY_YUV411:
504 /* return 6; not implemented */
505 default:
506 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200507 }
508}
509
510static int packed_width_bytes(u32 format, short width)
511{
512 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100513 case I915_OVERLAY_YUV422:
514 return width << 1;
515 default:
516 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200517 }
518}
519
520static int uv_hsubsampling(u32 format)
521{
522 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100523 case I915_OVERLAY_YUV422:
524 case I915_OVERLAY_YUV420:
525 return 2;
526 case I915_OVERLAY_YUV411:
527 case I915_OVERLAY_YUV410:
528 return 4;
529 default:
530 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200531 }
532}
533
534static int uv_vsubsampling(u32 format)
535{
536 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100537 case I915_OVERLAY_YUV420:
538 case I915_OVERLAY_YUV410:
539 return 2;
540 case I915_OVERLAY_YUV422:
541 case I915_OVERLAY_YUV411:
542 return 1;
543 default:
544 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200545 }
546}
547
Chris Wilson1ee8da62016-05-12 12:43:23 +0100548static u32 calc_swidthsw(struct drm_i915_private *dev_priv, u32 offset, u32 width)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200549{
550 u32 mask, shift, ret;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100551 if (IS_GEN2(dev_priv)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +0200552 mask = 0x1f;
553 shift = 5;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100554 } else {
555 mask = 0x3f;
556 shift = 6;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200557 }
558 ret = ((offset + width + mask) >> shift) - (offset >> shift);
Chris Wilson1ee8da62016-05-12 12:43:23 +0100559 if (!IS_GEN2(dev_priv))
Daniel Vetter02e792f2009-09-15 22:57:34 +0200560 ret <<= 1;
Akshay Joshi0206e352011-08-16 15:34:10 -0400561 ret -= 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200562 return ret << 2;
563}
564
565static const u16 y_static_hcoeffs[N_HORIZ_Y_TAPS * N_PHASES] = {
566 0x3000, 0xb4a0, 0x1930, 0x1920, 0xb4a0,
567 0x3000, 0xb500, 0x19d0, 0x1880, 0xb440,
568 0x3000, 0xb540, 0x1a88, 0x2f80, 0xb3e0,
569 0x3000, 0xb580, 0x1b30, 0x2e20, 0xb380,
570 0x3000, 0xb5c0, 0x1bd8, 0x2cc0, 0xb320,
571 0x3020, 0xb5e0, 0x1c60, 0x2b80, 0xb2c0,
572 0x3020, 0xb5e0, 0x1cf8, 0x2a20, 0xb260,
573 0x3020, 0xb5e0, 0x1d80, 0x28e0, 0xb200,
574 0x3020, 0xb5c0, 0x1e08, 0x3f40, 0xb1c0,
575 0x3020, 0xb580, 0x1e78, 0x3ce0, 0xb160,
576 0x3040, 0xb520, 0x1ed8, 0x3aa0, 0xb120,
577 0x3040, 0xb4a0, 0x1f30, 0x3880, 0xb0e0,
578 0x3040, 0xb400, 0x1f78, 0x3680, 0xb0a0,
579 0x3020, 0xb340, 0x1fb8, 0x34a0, 0xb060,
580 0x3020, 0xb240, 0x1fe0, 0x32e0, 0xb040,
581 0x3020, 0xb140, 0x1ff8, 0x3160, 0xb020,
Chris Wilson722506f2010-08-12 09:28:50 +0100582 0xb000, 0x3000, 0x0800, 0x3000, 0xb000
583};
584
Daniel Vetter02e792f2009-09-15 22:57:34 +0200585static const u16 uv_static_hcoeffs[N_HORIZ_UV_TAPS * N_PHASES] = {
586 0x3000, 0x1800, 0x1800, 0xb000, 0x18d0, 0x2e60,
587 0xb000, 0x1990, 0x2ce0, 0xb020, 0x1a68, 0x2b40,
588 0xb040, 0x1b20, 0x29e0, 0xb060, 0x1bd8, 0x2880,
589 0xb080, 0x1c88, 0x3e60, 0xb0a0, 0x1d28, 0x3c00,
590 0xb0c0, 0x1db8, 0x39e0, 0xb0e0, 0x1e40, 0x37e0,
591 0xb100, 0x1eb8, 0x3620, 0xb100, 0x1f18, 0x34a0,
592 0xb100, 0x1f68, 0x3360, 0xb0e0, 0x1fa8, 0x3240,
593 0xb0c0, 0x1fe0, 0x3140, 0xb060, 0x1ff0, 0x30a0,
Chris Wilson722506f2010-08-12 09:28:50 +0100594 0x3000, 0x0800, 0x3000
595};
Daniel Vetter02e792f2009-09-15 22:57:34 +0200596
Ben Widawsky75020bc2012-04-16 14:07:43 -0700597static void update_polyphase_filter(struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200598{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700599 memcpy_toio(regs->Y_HCOEFS, y_static_hcoeffs, sizeof(y_static_hcoeffs));
600 memcpy_toio(regs->UV_HCOEFS, uv_static_hcoeffs,
601 sizeof(uv_static_hcoeffs));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200602}
603
604static bool update_scaling_factors(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700605 struct overlay_registers __iomem *regs,
Daniel Vetter02e792f2009-09-15 22:57:34 +0200606 struct put_image_params *params)
607{
608 /* fixed point with a 12 bit shift */
609 u32 xscale, yscale, xscale_UV, yscale_UV;
610#define FP_SHIFT 12
611#define FRACT_MASK 0xfff
612 bool scale_changed = false;
613 int uv_hscale = uv_hsubsampling(params->format);
614 int uv_vscale = uv_vsubsampling(params->format);
615
616 if (params->dst_w > 1)
617 xscale = ((params->src_scan_w - 1) << FP_SHIFT)
618 /(params->dst_w);
619 else
620 xscale = 1 << FP_SHIFT;
621
622 if (params->dst_h > 1)
623 yscale = ((params->src_scan_h - 1) << FP_SHIFT)
624 /(params->dst_h);
625 else
626 yscale = 1 << FP_SHIFT;
627
628 /*if (params->format & I915_OVERLAY_YUV_PLANAR) {*/
Chris Wilson722506f2010-08-12 09:28:50 +0100629 xscale_UV = xscale/uv_hscale;
630 yscale_UV = yscale/uv_vscale;
631 /* make the Y scale to UV scale ratio an exact multiply */
632 xscale = xscale_UV * uv_hscale;
633 yscale = yscale_UV * uv_vscale;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200634 /*} else {
Chris Wilson722506f2010-08-12 09:28:50 +0100635 xscale_UV = 0;
636 yscale_UV = 0;
637 }*/
Daniel Vetter02e792f2009-09-15 22:57:34 +0200638
639 if (xscale != overlay->old_xscale || yscale != overlay->old_yscale)
640 scale_changed = true;
641 overlay->old_xscale = xscale;
642 overlay->old_yscale = yscale;
643
Ben Widawsky75020bc2012-04-16 14:07:43 -0700644 iowrite32(((yscale & FRACT_MASK) << 20) |
645 ((xscale >> FP_SHIFT) << 16) |
646 ((xscale & FRACT_MASK) << 3),
647 &regs->YRGBSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100648
Ben Widawsky75020bc2012-04-16 14:07:43 -0700649 iowrite32(((yscale_UV & FRACT_MASK) << 20) |
650 ((xscale_UV >> FP_SHIFT) << 16) |
651 ((xscale_UV & FRACT_MASK) << 3),
652 &regs->UVSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100653
Ben Widawsky75020bc2012-04-16 14:07:43 -0700654 iowrite32((((yscale >> FP_SHIFT) << 16) |
655 ((yscale_UV >> FP_SHIFT) << 0)),
656 &regs->UVSCALEV);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200657
658 if (scale_changed)
659 update_polyphase_filter(regs);
660
661 return scale_changed;
662}
663
664static void update_colorkey(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700665 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200666{
667 u32 key = overlay->color_key;
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100668 u32 flags;
669
670 flags = 0;
671 if (overlay->color_key_enabled)
672 flags |= DST_KEY_ENABLE;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100673
Matt Roperf4510a22014-04-01 15:22:40 -0700674 switch (overlay->crtc->base.primary->fb->bits_per_pixel) {
Chris Wilson722506f2010-08-12 09:28:50 +0100675 case 8:
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100676 key = 0;
677 flags |= CLK_RGB8I_MASK;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100678 break;
679
Chris Wilson722506f2010-08-12 09:28:50 +0100680 case 16:
Matt Roperf4510a22014-04-01 15:22:40 -0700681 if (overlay->crtc->base.primary->fb->depth == 15) {
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100682 key = RGB15_TO_COLORKEY(key);
683 flags |= CLK_RGB15_MASK;
Chris Wilson722506f2010-08-12 09:28:50 +0100684 } else {
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100685 key = RGB16_TO_COLORKEY(key);
686 flags |= CLK_RGB16_MASK;
Chris Wilson722506f2010-08-12 09:28:50 +0100687 }
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100688 break;
689
Chris Wilson722506f2010-08-12 09:28:50 +0100690 case 24:
691 case 32:
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100692 flags |= CLK_RGB24_MASK;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100693 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200694 }
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100695
696 iowrite32(key, &regs->DCLRKV);
697 iowrite32(flags, &regs->DCLRKM);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200698}
699
700static u32 overlay_cmd_reg(struct put_image_params *params)
701{
702 u32 cmd = OCMD_ENABLE | OCMD_BUF_TYPE_FRAME | OCMD_BUFFER0;
703
704 if (params->format & I915_OVERLAY_YUV_PLANAR) {
705 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100706 case I915_OVERLAY_YUV422:
707 cmd |= OCMD_YUV_422_PLANAR;
708 break;
709 case I915_OVERLAY_YUV420:
710 cmd |= OCMD_YUV_420_PLANAR;
711 break;
712 case I915_OVERLAY_YUV411:
713 case I915_OVERLAY_YUV410:
714 cmd |= OCMD_YUV_410_PLANAR;
715 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200716 }
717 } else { /* YUV packed */
718 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100719 case I915_OVERLAY_YUV422:
720 cmd |= OCMD_YUV_422_PACKED;
721 break;
722 case I915_OVERLAY_YUV411:
723 cmd |= OCMD_YUV_411_PACKED;
724 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200725 }
726
727 switch (params->format & I915_OVERLAY_SWAP_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100728 case I915_OVERLAY_NO_SWAP:
729 break;
730 case I915_OVERLAY_UV_SWAP:
731 cmd |= OCMD_UV_SWAP;
732 break;
733 case I915_OVERLAY_Y_SWAP:
734 cmd |= OCMD_Y_SWAP;
735 break;
736 case I915_OVERLAY_Y_AND_UV_SWAP:
737 cmd |= OCMD_Y_AND_UV_SWAP;
738 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200739 }
740 }
741
742 return cmd;
743}
744
Chris Wilson5fe82c52010-08-12 12:38:21 +0100745static int intel_overlay_do_put_image(struct intel_overlay *overlay,
Chris Wilson05394f32010-11-08 19:18:58 +0000746 struct drm_i915_gem_object *new_bo,
Chris Wilson5fe82c52010-08-12 12:38:21 +0100747 struct put_image_params *params)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200748{
749 int ret, tmp_width;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700750 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200751 bool scale_changed = false;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100752 struct drm_i915_private *dev_priv = overlay->i915;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700753 u32 swidth, swidthsw, sheight, ostride;
Daniel Vettera071fa02014-06-18 23:28:09 +0200754 enum pipe pipe = overlay->crtc->pipe;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200755
Chris Wilson91c8a322016-07-05 10:40:23 +0100756 lockdep_assert_held(&dev_priv->drm.struct_mutex);
757 WARN_ON(!drm_modeset_is_locked(&dev_priv->drm.mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200758
Daniel Vetter02e792f2009-09-15 22:57:34 +0200759 ret = intel_overlay_release_old_vid(overlay);
760 if (ret != 0)
761 return ret;
762
Maarten Lankhorst7580d772015-08-18 13:40:06 +0200763 ret = i915_gem_object_pin_to_display_plane(new_bo, 0,
Tvrtko Ursuline6617332015-03-23 11:10:33 +0000764 &i915_ggtt_view_normal);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200765 if (ret != 0)
766 return ret;
767
Chris Wilsond9e86c02010-11-10 16:40:20 +0000768 ret = i915_gem_object_put_fence(new_bo);
769 if (ret)
770 goto out_unpin;
771
Daniel Vetter02e792f2009-09-15 22:57:34 +0200772 if (!overlay->active) {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700773 u32 oconfig;
Chris Wilson8d74f652010-08-12 10:35:26 +0100774 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200775 if (!regs) {
776 ret = -ENOMEM;
777 goto out_unpin;
778 }
Ben Widawsky75020bc2012-04-16 14:07:43 -0700779 oconfig = OCONF_CC_OUT_8BIT;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100780 if (IS_GEN4(dev_priv))
Ben Widawsky75020bc2012-04-16 14:07:43 -0700781 oconfig |= OCONF_CSC_MODE_BT709;
Daniel Vettera071fa02014-06-18 23:28:09 +0200782 oconfig |= pipe == 0 ?
Daniel Vetter02e792f2009-09-15 22:57:34 +0200783 OCONF_PIPE_A : OCONF_PIPE_B;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700784 iowrite32(oconfig, &regs->OCONFIG);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100785 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200786
787 ret = intel_overlay_on(overlay);
788 if (ret != 0)
789 goto out_unpin;
790 }
791
Chris Wilson8d74f652010-08-12 10:35:26 +0100792 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200793 if (!regs) {
794 ret = -ENOMEM;
795 goto out_unpin;
796 }
797
Ben Widawsky75020bc2012-04-16 14:07:43 -0700798 iowrite32((params->dst_y << 16) | params->dst_x, &regs->DWINPOS);
799 iowrite32((params->dst_h << 16) | params->dst_w, &regs->DWINSZ);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200800
801 if (params->format & I915_OVERLAY_YUV_PACKED)
802 tmp_width = packed_width_bytes(params->format, params->src_w);
803 else
804 tmp_width = params->src_w;
805
Ben Widawsky75020bc2012-04-16 14:07:43 -0700806 swidth = params->src_w;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100807 swidthsw = calc_swidthsw(dev_priv, params->offset_Y, tmp_width);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700808 sheight = params->src_h;
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700809 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_Y, &regs->OBUF_0Y);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700810 ostride = params->stride_Y;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200811
812 if (params->format & I915_OVERLAY_YUV_PLANAR) {
813 int uv_hscale = uv_hsubsampling(params->format);
814 int uv_vscale = uv_vsubsampling(params->format);
815 u32 tmp_U, tmp_V;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700816 swidth |= (params->src_w/uv_hscale) << 16;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100817 tmp_U = calc_swidthsw(dev_priv, params->offset_U,
Chris Wilson722506f2010-08-12 09:28:50 +0100818 params->src_w/uv_hscale);
Chris Wilson1ee8da62016-05-12 12:43:23 +0100819 tmp_V = calc_swidthsw(dev_priv, params->offset_V,
Chris Wilson722506f2010-08-12 09:28:50 +0100820 params->src_w/uv_hscale);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700821 swidthsw |= max_t(u32, tmp_U, tmp_V) << 16;
822 sheight |= (params->src_h/uv_vscale) << 16;
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700823 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_U, &regs->OBUF_0U);
824 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_V, &regs->OBUF_0V);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700825 ostride |= params->stride_UV << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200826 }
827
Ben Widawsky75020bc2012-04-16 14:07:43 -0700828 iowrite32(swidth, &regs->SWIDTH);
829 iowrite32(swidthsw, &regs->SWIDTHSW);
830 iowrite32(sheight, &regs->SHEIGHT);
831 iowrite32(ostride, &regs->OSTRIDE);
832
Daniel Vetter02e792f2009-09-15 22:57:34 +0200833 scale_changed = update_scaling_factors(overlay, regs, params);
834
835 update_colorkey(overlay, regs);
836
Ben Widawsky75020bc2012-04-16 14:07:43 -0700837 iowrite32(overlay_cmd_reg(params), &regs->OCMD);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200838
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100839 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200840
Chris Wilson8dc5d142010-08-12 12:36:12 +0100841 ret = intel_overlay_continue(overlay, scale_changed);
842 if (ret)
843 goto out_unpin;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200844
Daniel Vettera071fa02014-06-18 23:28:09 +0200845 i915_gem_track_fb(overlay->vid_bo, new_bo,
846 INTEL_FRONTBUFFER_OVERLAY(pipe));
847
Daniel Vetter02e792f2009-09-15 22:57:34 +0200848 overlay->old_vid_bo = overlay->vid_bo;
Chris Wilson05394f32010-11-08 19:18:58 +0000849 overlay->vid_bo = new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200850
Chris Wilson91c8a322016-07-05 10:40:23 +0100851 intel_frontbuffer_flip(&dev_priv->drm,
852 INTEL_FRONTBUFFER_OVERLAY(pipe));
Daniel Vetterf99d7062014-06-19 16:01:59 +0200853
Daniel Vetter02e792f2009-09-15 22:57:34 +0200854 return 0;
855
856out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800857 i915_gem_object_ggtt_unpin(new_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200858 return ret;
859}
860
Chris Wilsonce453d82011-02-21 14:43:56 +0000861int intel_overlay_switch_off(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200862{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100863 struct drm_i915_private *dev_priv = overlay->i915;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700864 struct overlay_registers __iomem *regs;
Chris Wilson5dcdbcb2010-08-12 13:50:28 +0100865 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200866
Chris Wilson91c8a322016-07-05 10:40:23 +0100867 lockdep_assert_held(&dev_priv->drm.struct_mutex);
868 WARN_ON(!drm_modeset_is_locked(&dev_priv->drm.mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200869
Chris Wilsonce453d82011-02-21 14:43:56 +0000870 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +0100871 if (ret != 0)
872 return ret;
Daniel Vetter9bedb972009-11-30 15:55:49 +0100873
Daniel Vetter02e792f2009-09-15 22:57:34 +0200874 if (!overlay->active)
875 return 0;
876
Daniel Vetter02e792f2009-09-15 22:57:34 +0200877 ret = intel_overlay_release_old_vid(overlay);
878 if (ret != 0)
879 return ret;
880
Chris Wilson8d74f652010-08-12 10:35:26 +0100881 regs = intel_overlay_map_regs(overlay);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700882 iowrite32(0, &regs->OCMD);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100883 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200884
Chris Wilsonce453d82011-02-21 14:43:56 +0000885 ret = intel_overlay_off(overlay);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200886 if (ret != 0)
887 return ret;
888
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200889 intel_overlay_off_tail(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200890 return 0;
891}
892
893static int check_overlay_possible_on_crtc(struct intel_overlay *overlay,
894 struct intel_crtc *crtc)
895{
Chris Wilsonf7abfe82010-09-13 14:19:16 +0100896 if (!crtc->active)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200897 return -EINVAL;
898
Daniel Vetter02e792f2009-09-15 22:57:34 +0200899 /* can't use the overlay with double wide pipe */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200900 if (crtc->config->double_wide)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200901 return -EINVAL;
902
903 return 0;
904}
905
906static void update_pfit_vscale_ratio(struct intel_overlay *overlay)
907{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100908 struct drm_i915_private *dev_priv = overlay->i915;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200909 u32 pfit_control = I915_READ(PFIT_CONTROL);
Chris Wilson446d2182010-08-12 11:15:58 +0100910 u32 ratio;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200911
912 /* XXX: This is not the same logic as in the xorg driver, but more in
Chris Wilson446d2182010-08-12 11:15:58 +0100913 * line with the intel documentation for the i965
914 */
Chris Wilson1ee8da62016-05-12 12:43:23 +0100915 if (INTEL_GEN(dev_priv) >= 4) {
Akshay Joshi0206e352011-08-16 15:34:10 -0400916 /* on i965 use the PGM reg to read out the autoscaler values */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100917 ratio = I915_READ(PFIT_PGM_RATIOS) >> PFIT_VERT_SCALE_SHIFT_965;
918 } else {
Chris Wilson446d2182010-08-12 11:15:58 +0100919 if (pfit_control & VERT_AUTO_SCALE)
920 ratio = I915_READ(PFIT_AUTO_RATIOS);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200921 else
Chris Wilson446d2182010-08-12 11:15:58 +0100922 ratio = I915_READ(PFIT_PGM_RATIOS);
923 ratio >>= PFIT_VERT_SCALE_SHIFT;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200924 }
925
926 overlay->pfit_vscale_ratio = ratio;
927}
928
929static int check_overlay_dst(struct intel_overlay *overlay,
930 struct drm_intel_overlay_put_image *rec)
931{
932 struct drm_display_mode *mode = &overlay->crtc->base.mode;
933
Daniel Vetter75c13992012-01-28 23:48:46 +0100934 if (rec->dst_x < mode->hdisplay &&
935 rec->dst_x + rec->dst_width <= mode->hdisplay &&
936 rec->dst_y < mode->vdisplay &&
937 rec->dst_y + rec->dst_height <= mode->vdisplay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200938 return 0;
939 else
940 return -EINVAL;
941}
942
943static int check_overlay_scaling(struct put_image_params *rec)
944{
945 u32 tmp;
946
947 /* downscaling limit is 8.0 */
948 tmp = ((rec->src_scan_h << 16) / rec->dst_h) >> 16;
949 if (tmp > 7)
950 return -EINVAL;
951 tmp = ((rec->src_scan_w << 16) / rec->dst_w) >> 16;
952 if (tmp > 7)
953 return -EINVAL;
954
955 return 0;
956}
957
Chris Wilson1ee8da62016-05-12 12:43:23 +0100958static int check_overlay_src(struct drm_i915_private *dev_priv,
Daniel Vetter02e792f2009-09-15 22:57:34 +0200959 struct drm_intel_overlay_put_image *rec,
Chris Wilson05394f32010-11-08 19:18:58 +0000960 struct drm_i915_gem_object *new_bo)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200961{
Daniel Vetter02e792f2009-09-15 22:57:34 +0200962 int uv_hscale = uv_hsubsampling(rec->flags);
963 int uv_vscale = uv_vsubsampling(rec->flags);
Dan Carpenter8f28f542010-10-27 23:17:25 +0200964 u32 stride_mask;
965 int depth;
966 u32 tmp;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200967
968 /* check src dimensions */
Chris Wilson1ee8da62016-05-12 12:43:23 +0100969 if (IS_845G(dev_priv) || IS_I830(dev_priv)) {
Chris Wilson722506f2010-08-12 09:28:50 +0100970 if (rec->src_height > IMAGE_MAX_HEIGHT_LEGACY ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100971 rec->src_width > IMAGE_MAX_WIDTH_LEGACY)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200972 return -EINVAL;
973 } else {
Chris Wilson722506f2010-08-12 09:28:50 +0100974 if (rec->src_height > IMAGE_MAX_HEIGHT ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100975 rec->src_width > IMAGE_MAX_WIDTH)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200976 return -EINVAL;
977 }
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100978
Daniel Vetter02e792f2009-09-15 22:57:34 +0200979 /* better safe than sorry, use 4 as the maximal subsampling ratio */
Chris Wilson722506f2010-08-12 09:28:50 +0100980 if (rec->src_height < N_VERT_Y_TAPS*4 ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100981 rec->src_width < N_HORIZ_Y_TAPS*4)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200982 return -EINVAL;
983
Chris Wilsona1efd142010-07-12 19:35:38 +0100984 /* check alignment constraints */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200985 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100986 case I915_OVERLAY_RGB:
987 /* not implemented */
988 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100989
Chris Wilson722506f2010-08-12 09:28:50 +0100990 case I915_OVERLAY_YUV_PACKED:
Chris Wilson722506f2010-08-12 09:28:50 +0100991 if (uv_vscale != 1)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200992 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100993
994 depth = packed_depth_bytes(rec->flags);
Chris Wilson722506f2010-08-12 09:28:50 +0100995 if (depth < 0)
996 return depth;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100997
Chris Wilson722506f2010-08-12 09:28:50 +0100998 /* ignore UV planes */
999 rec->stride_UV = 0;
1000 rec->offset_U = 0;
1001 rec->offset_V = 0;
1002 /* check pixel alignment */
1003 if (rec->offset_Y % depth)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001004 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001005 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001006
Chris Wilson722506f2010-08-12 09:28:50 +01001007 case I915_OVERLAY_YUV_PLANAR:
1008 if (uv_vscale < 0 || uv_hscale < 0)
1009 return -EINVAL;
1010 /* no offset restrictions for planar formats */
1011 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001012
Chris Wilson722506f2010-08-12 09:28:50 +01001013 default:
1014 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001015 }
1016
1017 if (rec->src_width % uv_hscale)
1018 return -EINVAL;
1019
1020 /* stride checking */
Chris Wilson1ee8da62016-05-12 12:43:23 +01001021 if (IS_I830(dev_priv) || IS_845G(dev_priv))
Chris Wilsona1efd142010-07-12 19:35:38 +01001022 stride_mask = 255;
1023 else
1024 stride_mask = 63;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001025
1026 if (rec->stride_Y & stride_mask || rec->stride_UV & stride_mask)
1027 return -EINVAL;
Chris Wilson1ee8da62016-05-12 12:43:23 +01001028 if (IS_GEN4(dev_priv) && rec->stride_Y < 512)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001029 return -EINVAL;
1030
1031 tmp = (rec->flags & I915_OVERLAY_TYPE_MASK) == I915_OVERLAY_YUV_PLANAR ?
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001032 4096 : 8192;
1033 if (rec->stride_Y > tmp || rec->stride_UV > 2*1024)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001034 return -EINVAL;
1035
1036 /* check buffer dimensions */
1037 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +01001038 case I915_OVERLAY_RGB:
1039 case I915_OVERLAY_YUV_PACKED:
1040 /* always 4 Y values per depth pixels */
1041 if (packed_width_bytes(rec->flags, rec->src_width) > rec->stride_Y)
1042 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001043
Chris Wilson722506f2010-08-12 09:28:50 +01001044 tmp = rec->stride_Y*rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001045 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001046 return -EINVAL;
1047 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001048
Chris Wilson722506f2010-08-12 09:28:50 +01001049 case I915_OVERLAY_YUV_PLANAR:
1050 if (rec->src_width > rec->stride_Y)
1051 return -EINVAL;
1052 if (rec->src_width/uv_hscale > rec->stride_UV)
1053 return -EINVAL;
1054
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001055 tmp = rec->stride_Y * rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001056 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001057 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001058
1059 tmp = rec->stride_UV * (rec->src_height / uv_vscale);
Chris Wilson05394f32010-11-08 19:18:58 +00001060 if (rec->offset_U + tmp > new_bo->base.size ||
1061 rec->offset_V + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001062 return -EINVAL;
1063 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001064 }
1065
1066 return 0;
1067}
1068
Chris Wilsone9e331a2010-09-13 01:16:10 +01001069/**
1070 * Return the pipe currently connected to the panel fitter,
1071 * or -1 if the panel fitter is not present or not in use
1072 */
Chris Wilson1ee8da62016-05-12 12:43:23 +01001073static int intel_panel_fitter_pipe(struct drm_i915_private *dev_priv)
Chris Wilsone9e331a2010-09-13 01:16:10 +01001074{
Chris Wilsone9e331a2010-09-13 01:16:10 +01001075 u32 pfit_control;
1076
1077 /* i830 doesn't have a panel fitter */
Chris Wilson1ee8da62016-05-12 12:43:23 +01001078 if (INTEL_GEN(dev_priv) <= 3 &&
1079 (IS_I830(dev_priv) || !IS_MOBILE(dev_priv)))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001080 return -1;
1081
1082 pfit_control = I915_READ(PFIT_CONTROL);
1083
1084 /* See if the panel fitter is in use */
1085 if ((pfit_control & PFIT_ENABLE) == 0)
1086 return -1;
1087
1088 /* 965 can place panel fitter on either pipe */
Chris Wilson1ee8da62016-05-12 12:43:23 +01001089 if (IS_GEN4(dev_priv))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001090 return (pfit_control >> 29) & 0x3;
1091
1092 /* older chips can only use pipe 1 */
1093 return 1;
1094}
1095
Chris Wilson1ee8da62016-05-12 12:43:23 +01001096int intel_overlay_put_image_ioctl(struct drm_device *dev, void *data,
1097 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001098{
1099 struct drm_intel_overlay_put_image *put_image_rec = data;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001100 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001101 struct intel_overlay *overlay;
Rob Clark7707e652014-07-17 23:30:04 -04001102 struct drm_crtc *drmmode_crtc;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001103 struct intel_crtc *crtc;
Chris Wilson05394f32010-11-08 19:18:58 +00001104 struct drm_i915_gem_object *new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001105 struct put_image_params *params;
1106 int ret;
1107
Daniel Vetter02e792f2009-09-15 22:57:34 +02001108 overlay = dev_priv->overlay;
1109 if (!overlay) {
1110 DRM_DEBUG("userspace bug: no overlay\n");
1111 return -ENODEV;
1112 }
1113
1114 if (!(put_image_rec->flags & I915_OVERLAY_ENABLE)) {
Daniel Vettera0e99e62012-12-02 01:05:46 +01001115 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001116 mutex_lock(&dev->struct_mutex);
1117
Chris Wilsonce453d82011-02-21 14:43:56 +00001118 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001119
1120 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001121 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001122
1123 return ret;
1124 }
1125
Daniel Vetterb14c5672013-09-19 12:18:32 +02001126 params = kmalloc(sizeof(*params), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001127 if (!params)
1128 return -ENOMEM;
1129
Rob Clark7707e652014-07-17 23:30:04 -04001130 drmmode_crtc = drm_crtc_find(dev, put_image_rec->crtc_id);
1131 if (!drmmode_crtc) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001132 ret = -ENOENT;
1133 goto out_free;
1134 }
Rob Clark7707e652014-07-17 23:30:04 -04001135 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001136
Chris Wilson03ac0642016-07-20 13:31:51 +01001137 new_bo = i915_gem_object_lookup(file_priv, put_image_rec->bo_handle);
1138 if (!new_bo) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001139 ret = -ENOENT;
1140 goto out_free;
1141 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001142
Daniel Vettera0e99e62012-12-02 01:05:46 +01001143 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001144 mutex_lock(&dev->struct_mutex);
1145
Chris Wilsond9e86c02010-11-10 16:40:20 +00001146 if (new_bo->tiling_mode) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01001147 DRM_DEBUG_KMS("buffer used for overlay image can not be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00001148 ret = -EINVAL;
1149 goto out_unlock;
1150 }
1151
Chris Wilsonce453d82011-02-21 14:43:56 +00001152 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +01001153 if (ret != 0)
1154 goto out_unlock;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02001155
Daniel Vetter02e792f2009-09-15 22:57:34 +02001156 if (overlay->crtc != crtc) {
1157 struct drm_display_mode *mode = &crtc->base.mode;
Chris Wilsonce453d82011-02-21 14:43:56 +00001158 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001159 if (ret != 0)
1160 goto out_unlock;
1161
1162 ret = check_overlay_possible_on_crtc(overlay, crtc);
1163 if (ret != 0)
1164 goto out_unlock;
1165
1166 overlay->crtc = crtc;
1167 crtc->overlay = overlay;
1168
Chris Wilsone9e331a2010-09-13 01:16:10 +01001169 /* line too wide, i.e. one-line-mode */
1170 if (mode->hdisplay > 1024 &&
Chris Wilson1ee8da62016-05-12 12:43:23 +01001171 intel_panel_fitter_pipe(dev_priv) == crtc->pipe) {
Ville Syrjälä209c2a52015-03-31 10:37:23 +03001172 overlay->pfit_active = true;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001173 update_pfit_vscale_ratio(overlay);
1174 } else
Ville Syrjälä209c2a52015-03-31 10:37:23 +03001175 overlay->pfit_active = false;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001176 }
1177
1178 ret = check_overlay_dst(overlay, put_image_rec);
1179 if (ret != 0)
1180 goto out_unlock;
1181
1182 if (overlay->pfit_active) {
1183 params->dst_y = ((((u32)put_image_rec->dst_y) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001184 overlay->pfit_vscale_ratio);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001185 /* shifting right rounds downwards, so add 1 */
1186 params->dst_h = ((((u32)put_image_rec->dst_height) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001187 overlay->pfit_vscale_ratio) + 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001188 } else {
1189 params->dst_y = put_image_rec->dst_y;
1190 params->dst_h = put_image_rec->dst_height;
1191 }
1192 params->dst_x = put_image_rec->dst_x;
1193 params->dst_w = put_image_rec->dst_width;
1194
1195 params->src_w = put_image_rec->src_width;
1196 params->src_h = put_image_rec->src_height;
1197 params->src_scan_w = put_image_rec->src_scan_width;
1198 params->src_scan_h = put_image_rec->src_scan_height;
Chris Wilson722506f2010-08-12 09:28:50 +01001199 if (params->src_scan_h > params->src_h ||
1200 params->src_scan_w > params->src_w) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001201 ret = -EINVAL;
1202 goto out_unlock;
1203 }
1204
Chris Wilson1ee8da62016-05-12 12:43:23 +01001205 ret = check_overlay_src(dev_priv, put_image_rec, new_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001206 if (ret != 0)
1207 goto out_unlock;
1208 params->format = put_image_rec->flags & ~I915_OVERLAY_FLAGS_MASK;
1209 params->stride_Y = put_image_rec->stride_Y;
1210 params->stride_UV = put_image_rec->stride_UV;
1211 params->offset_Y = put_image_rec->offset_Y;
1212 params->offset_U = put_image_rec->offset_U;
1213 params->offset_V = put_image_rec->offset_V;
1214
1215 /* Check scaling after src size to prevent a divide-by-zero. */
1216 ret = check_overlay_scaling(params);
1217 if (ret != 0)
1218 goto out_unlock;
1219
1220 ret = intel_overlay_do_put_image(overlay, new_bo, params);
1221 if (ret != 0)
1222 goto out_unlock;
1223
1224 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001225 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001226
1227 kfree(params);
1228
1229 return 0;
1230
1231out_unlock:
1232 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001233 drm_modeset_unlock_all(dev);
Dave Gordon13f17b22016-07-21 18:39:38 +01001234 i915_gem_object_put_unlocked(new_bo);
Dan Carpenter915a4282010-03-06 14:05:39 +03001235out_free:
Daniel Vetter02e792f2009-09-15 22:57:34 +02001236 kfree(params);
1237
1238 return ret;
1239}
1240
1241static void update_reg_attrs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001242 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001243{
Ben Widawsky75020bc2012-04-16 14:07:43 -07001244 iowrite32((overlay->contrast << 18) | (overlay->brightness & 0xff),
1245 &regs->OCLRC0);
1246 iowrite32(overlay->saturation, &regs->OCLRC1);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001247}
1248
1249static bool check_gamma_bounds(u32 gamma1, u32 gamma2)
1250{
1251 int i;
1252
1253 if (gamma1 & 0xff000000 || gamma2 & 0xff000000)
1254 return false;
1255
1256 for (i = 0; i < 3; i++) {
Chris Wilson722506f2010-08-12 09:28:50 +01001257 if (((gamma1 >> i*8) & 0xff) >= ((gamma2 >> i*8) & 0xff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001258 return false;
1259 }
1260
1261 return true;
1262}
1263
1264static bool check_gamma5_errata(u32 gamma5)
1265{
1266 int i;
1267
1268 for (i = 0; i < 3; i++) {
1269 if (((gamma5 >> i*8) & 0xff) == 0x80)
1270 return false;
1271 }
1272
1273 return true;
1274}
1275
1276static int check_gamma(struct drm_intel_overlay_attrs *attrs)
1277{
Chris Wilson722506f2010-08-12 09:28:50 +01001278 if (!check_gamma_bounds(0, attrs->gamma0) ||
1279 !check_gamma_bounds(attrs->gamma0, attrs->gamma1) ||
1280 !check_gamma_bounds(attrs->gamma1, attrs->gamma2) ||
1281 !check_gamma_bounds(attrs->gamma2, attrs->gamma3) ||
1282 !check_gamma_bounds(attrs->gamma3, attrs->gamma4) ||
1283 !check_gamma_bounds(attrs->gamma4, attrs->gamma5) ||
1284 !check_gamma_bounds(attrs->gamma5, 0x00ffffff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001285 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001286
Daniel Vetter02e792f2009-09-15 22:57:34 +02001287 if (!check_gamma5_errata(attrs->gamma5))
1288 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001289
Daniel Vetter02e792f2009-09-15 22:57:34 +02001290 return 0;
1291}
1292
Chris Wilson1ee8da62016-05-12 12:43:23 +01001293int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data,
1294 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001295{
1296 struct drm_intel_overlay_attrs *attrs = data;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001297 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001298 struct intel_overlay *overlay;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001299 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001300 int ret;
1301
Daniel Vetter02e792f2009-09-15 22:57:34 +02001302 overlay = dev_priv->overlay;
1303 if (!overlay) {
1304 DRM_DEBUG("userspace bug: no overlay\n");
1305 return -ENODEV;
1306 }
1307
Daniel Vettera0e99e62012-12-02 01:05:46 +01001308 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001309 mutex_lock(&dev->struct_mutex);
1310
Chris Wilson60fc3322010-08-12 10:44:45 +01001311 ret = -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001312 if (!(attrs->flags & I915_OVERLAY_UPDATE_ATTRS)) {
Chris Wilson60fc3322010-08-12 10:44:45 +01001313 attrs->color_key = overlay->color_key;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001314 attrs->brightness = overlay->brightness;
Chris Wilson60fc3322010-08-12 10:44:45 +01001315 attrs->contrast = overlay->contrast;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001316 attrs->saturation = overlay->saturation;
1317
Chris Wilson1ee8da62016-05-12 12:43:23 +01001318 if (!IS_GEN2(dev_priv)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001319 attrs->gamma0 = I915_READ(OGAMC0);
1320 attrs->gamma1 = I915_READ(OGAMC1);
1321 attrs->gamma2 = I915_READ(OGAMC2);
1322 attrs->gamma3 = I915_READ(OGAMC3);
1323 attrs->gamma4 = I915_READ(OGAMC4);
1324 attrs->gamma5 = I915_READ(OGAMC5);
1325 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001326 } else {
Chris Wilson60fc3322010-08-12 10:44:45 +01001327 if (attrs->brightness < -128 || attrs->brightness > 127)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001328 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001329 if (attrs->contrast > 255)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001330 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001331 if (attrs->saturation > 1023)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001332 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001333
Chris Wilson60fc3322010-08-12 10:44:45 +01001334 overlay->color_key = attrs->color_key;
1335 overlay->brightness = attrs->brightness;
1336 overlay->contrast = attrs->contrast;
1337 overlay->saturation = attrs->saturation;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001338
Chris Wilson8d74f652010-08-12 10:35:26 +01001339 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001340 if (!regs) {
1341 ret = -ENOMEM;
1342 goto out_unlock;
1343 }
1344
1345 update_reg_attrs(overlay, regs);
1346
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001347 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001348
1349 if (attrs->flags & I915_OVERLAY_UPDATE_GAMMA) {
Chris Wilson1ee8da62016-05-12 12:43:23 +01001350 if (IS_GEN2(dev_priv))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001351 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001352
1353 if (overlay->active) {
1354 ret = -EBUSY;
1355 goto out_unlock;
1356 }
1357
1358 ret = check_gamma(attrs);
Chris Wilson60fc3322010-08-12 10:44:45 +01001359 if (ret)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001360 goto out_unlock;
1361
1362 I915_WRITE(OGAMC0, attrs->gamma0);
1363 I915_WRITE(OGAMC1, attrs->gamma1);
1364 I915_WRITE(OGAMC2, attrs->gamma2);
1365 I915_WRITE(OGAMC3, attrs->gamma3);
1366 I915_WRITE(OGAMC4, attrs->gamma4);
1367 I915_WRITE(OGAMC5, attrs->gamma5);
1368 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001369 }
Chris Wilsonea9da4e2015-04-02 10:35:08 +01001370 overlay->color_key_enabled = (attrs->flags & I915_OVERLAY_DISABLE_DEST_COLORKEY) == 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001371
Chris Wilson60fc3322010-08-12 10:44:45 +01001372 ret = 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001373out_unlock:
1374 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001375 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001376
1377 return ret;
1378}
1379
Chris Wilson1ee8da62016-05-12 12:43:23 +01001380void intel_setup_overlay(struct drm_i915_private *dev_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001381{
Daniel Vetter02e792f2009-09-15 22:57:34 +02001382 struct intel_overlay *overlay;
Chris Wilson05394f32010-11-08 19:18:58 +00001383 struct drm_i915_gem_object *reg_bo;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001384 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001385 int ret;
1386
Chris Wilson1ee8da62016-05-12 12:43:23 +01001387 if (!HAS_OVERLAY(dev_priv))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001388 return;
1389
Daniel Vetterb14c5672013-09-19 12:18:32 +02001390 overlay = kzalloc(sizeof(*overlay), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001391 if (!overlay)
1392 return;
Chris Wilson79d24272011-06-28 11:27:47 +01001393
Chris Wilson91c8a322016-07-05 10:40:23 +01001394 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilson79d24272011-06-28 11:27:47 +01001395 if (WARN_ON(dev_priv->overlay))
1396 goto out_free;
1397
Chris Wilson1ee8da62016-05-12 12:43:23 +01001398 overlay->i915 = dev_priv;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001399
Daniel Vetterf63a4842013-07-23 19:24:38 +02001400 reg_bo = NULL;
Chris Wilson1ee8da62016-05-12 12:43:23 +01001401 if (!OVERLAY_NEEDS_PHYSICAL(dev_priv))
Chris Wilson91c8a322016-07-05 10:40:23 +01001402 reg_bo = i915_gem_object_create_stolen(&dev_priv->drm,
1403 PAGE_SIZE);
Chris Wilson80405132012-11-15 11:32:29 +00001404 if (reg_bo == NULL)
Chris Wilson91c8a322016-07-05 10:40:23 +01001405 reg_bo = i915_gem_object_create(&dev_priv->drm, PAGE_SIZE);
Chris Wilsonfe3db792016-04-25 13:32:13 +01001406 if (IS_ERR(reg_bo))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001407 goto out_free;
Chris Wilson05394f32010-11-08 19:18:58 +00001408 overlay->reg_bo = reg_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001409
Chris Wilson1ee8da62016-05-12 12:43:23 +01001410 if (OVERLAY_NEEDS_PHYSICAL(dev_priv)) {
Chris Wilson00731152014-05-21 12:42:56 +01001411 ret = i915_gem_object_attach_phys(reg_bo, PAGE_SIZE);
Akshay Joshi0206e352011-08-16 15:34:10 -04001412 if (ret) {
1413 DRM_ERROR("failed to attach phys overlay regs\n");
1414 goto out_free_bo;
1415 }
Chris Wilson00731152014-05-21 12:42:56 +01001416 overlay->flip_addr = reg_bo->phys_handle->busaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001417 } else {
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001418 ret = i915_gem_obj_ggtt_pin(reg_bo, PAGE_SIZE, PIN_MAPPABLE);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001419 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001420 DRM_ERROR("failed to pin overlay register bo\n");
1421 goto out_free_bo;
1422 }
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001423 overlay->flip_addr = i915_gem_obj_ggtt_offset(reg_bo);
Chris Wilson0ddc1282010-08-12 09:35:00 +01001424
1425 ret = i915_gem_object_set_to_gtt_domain(reg_bo, true);
1426 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001427 DRM_ERROR("failed to move overlay register bo into the GTT\n");
1428 goto out_unpin_bo;
1429 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001430 }
1431
1432 /* init all values */
1433 overlay->color_key = 0x0101fe;
Chris Wilsonea9da4e2015-04-02 10:35:08 +01001434 overlay->color_key_enabled = true;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001435 overlay->brightness = -19;
1436 overlay->contrast = 75;
1437 overlay->saturation = 146;
1438
Chris Wilson8d74f652010-08-12 10:35:26 +01001439 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001440 if (!regs)
Chris Wilson79d24272011-06-28 11:27:47 +01001441 goto out_unpin_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001442
Ben Widawsky75020bc2012-04-16 14:07:43 -07001443 memset_io(regs, 0, sizeof(struct overlay_registers));
Daniel Vetter02e792f2009-09-15 22:57:34 +02001444 update_polyphase_filter(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001445 update_reg_attrs(overlay, regs);
1446
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001447 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001448
1449 dev_priv->overlay = overlay;
Chris Wilson91c8a322016-07-05 10:40:23 +01001450 mutex_unlock(&dev_priv->drm.struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001451 DRM_INFO("initialized overlay support\n");
1452 return;
1453
Chris Wilson0ddc1282010-08-12 09:35:00 +01001454out_unpin_bo:
Chris Wilson1ee8da62016-05-12 12:43:23 +01001455 if (!OVERLAY_NEEDS_PHYSICAL(dev_priv))
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001456 i915_gem_object_ggtt_unpin(reg_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001457out_free_bo:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01001458 i915_gem_object_put(reg_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001459out_free:
Chris Wilson91c8a322016-07-05 10:40:23 +01001460 mutex_unlock(&dev_priv->drm.struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001461 kfree(overlay);
1462 return;
1463}
1464
Chris Wilson1ee8da62016-05-12 12:43:23 +01001465void intel_cleanup_overlay(struct drm_i915_private *dev_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001466{
Chris Wilson62cf4e62010-08-12 10:50:36 +01001467 if (!dev_priv->overlay)
1468 return;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001469
Chris Wilson62cf4e62010-08-12 10:50:36 +01001470 /* The bo's should be free'd by the generic code already.
1471 * Furthermore modesetting teardown happens beforehand so the
1472 * hardware should be off already */
Ville Syrjälä77589f52015-03-31 10:37:22 +03001473 WARN_ON(dev_priv->overlay->active);
Chris Wilson62cf4e62010-08-12 10:50:36 +01001474
Chris Wilson34911fd2016-07-20 13:31:54 +01001475 i915_gem_object_put_unlocked(dev_priv->overlay->reg_bo);
Chris Wilson62cf4e62010-08-12 10:50:36 +01001476 kfree(dev_priv->overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001477}
Chris Wilson6ef3d422010-08-04 20:26:07 +01001478
1479struct intel_overlay_error_state {
1480 struct overlay_registers regs;
1481 unsigned long base;
1482 u32 dovsta;
1483 u32 isr;
1484};
1485
Ben Widawsky75020bc2012-04-16 14:07:43 -07001486static struct overlay_registers __iomem *
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001487intel_overlay_map_regs_atomic(struct intel_overlay *overlay)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001488{
Chris Wilson1ee8da62016-05-12 12:43:23 +01001489 struct drm_i915_private *dev_priv = overlay->i915;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001490 struct overlay_registers __iomem *regs;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001491
Chris Wilson1ee8da62016-05-12 12:43:23 +01001492 if (OVERLAY_NEEDS_PHYSICAL(dev_priv))
Ben Widawsky75020bc2012-04-16 14:07:43 -07001493 /* Cast to make sparse happy, but it's wc memory anyway, so
1494 * equivalent to the wc io mapping on X86. */
1495 regs = (struct overlay_registers __iomem *)
Chris Wilson00731152014-05-21 12:42:56 +01001496 overlay->reg_bo->phys_handle->vaddr;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001497 else
Chris Wilson1ee8da62016-05-12 12:43:23 +01001498 regs = io_mapping_map_atomic_wc(dev_priv->ggtt.mappable,
Chris Wilsonda6ca032016-04-28 09:56:36 +01001499 overlay->flip_addr);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001500
1501 return regs;
1502}
1503
1504static void intel_overlay_unmap_regs_atomic(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001505 struct overlay_registers __iomem *regs)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001506{
Chris Wilson1ee8da62016-05-12 12:43:23 +01001507 if (!OVERLAY_NEEDS_PHYSICAL(overlay->i915))
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001508 io_mapping_unmap_atomic(regs);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001509}
1510
Chris Wilson6ef3d422010-08-04 20:26:07 +01001511struct intel_overlay_error_state *
Chris Wilsonc0336662016-05-06 15:40:21 +01001512intel_overlay_capture_error_state(struct drm_i915_private *dev_priv)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001513{
Chris Wilson6ef3d422010-08-04 20:26:07 +01001514 struct intel_overlay *overlay = dev_priv->overlay;
1515 struct intel_overlay_error_state *error;
1516 struct overlay_registers __iomem *regs;
1517
1518 if (!overlay || !overlay->active)
1519 return NULL;
1520
1521 error = kmalloc(sizeof(*error), GFP_ATOMIC);
1522 if (error == NULL)
1523 return NULL;
1524
1525 error->dovsta = I915_READ(DOVSTA);
1526 error->isr = I915_READ(ISR);
Chris Wilsonda6ca032016-04-28 09:56:36 +01001527 error->base = overlay->flip_addr;
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}