blob: c4e4b85edf9a6d2769defe2b673595116fec7c05 [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"
Chris Wilson5d723d72016-08-04 16:32:35 +010033#include "intel_frontbuffer.h"
Daniel Vetter02e792f2009-09-15 22:57:34 +020034
35/* Limits for overlay size. According to intel doc, the real limits are:
36 * Y width: 4095, UV width (planar): 2047, Y height: 2047,
37 * UV width (planar): * 1023. But the xorg thinks 2048 for height and width. Use
38 * the mininum of both. */
39#define IMAGE_MAX_WIDTH 2048
40#define IMAGE_MAX_HEIGHT 2046 /* 2 * 1023 */
41/* on 830 and 845 these large limits result in the card hanging */
42#define IMAGE_MAX_WIDTH_LEGACY 1024
43#define IMAGE_MAX_HEIGHT_LEGACY 1088
44
45/* overlay register definitions */
46/* OCMD register */
47#define OCMD_TILED_SURFACE (0x1<<19)
48#define OCMD_MIRROR_MASK (0x3<<17)
49#define OCMD_MIRROR_MODE (0x3<<17)
50#define OCMD_MIRROR_HORIZONTAL (0x1<<17)
51#define OCMD_MIRROR_VERTICAL (0x2<<17)
52#define OCMD_MIRROR_BOTH (0x3<<17)
53#define OCMD_BYTEORDER_MASK (0x3<<14) /* zero for YUYV or FOURCC YUY2 */
54#define OCMD_UV_SWAP (0x1<<14) /* YVYU */
55#define OCMD_Y_SWAP (0x2<<14) /* UYVY or FOURCC UYVY */
56#define OCMD_Y_AND_UV_SWAP (0x3<<14) /* VYUY */
57#define OCMD_SOURCE_FORMAT_MASK (0xf<<10)
58#define OCMD_RGB_888 (0x1<<10) /* not in i965 Intel docs */
59#define OCMD_RGB_555 (0x2<<10) /* not in i965 Intel docs */
60#define OCMD_RGB_565 (0x3<<10) /* not in i965 Intel docs */
61#define OCMD_YUV_422_PACKED (0x8<<10)
62#define OCMD_YUV_411_PACKED (0x9<<10) /* not in i965 Intel docs */
63#define OCMD_YUV_420_PLANAR (0xc<<10)
64#define OCMD_YUV_422_PLANAR (0xd<<10)
65#define OCMD_YUV_410_PLANAR (0xe<<10) /* also 411 */
66#define OCMD_TVSYNCFLIP_PARITY (0x1<<9)
67#define OCMD_TVSYNCFLIP_ENABLE (0x1<<7)
Chris Wilsond7961362010-07-13 13:52:17 +010068#define OCMD_BUF_TYPE_MASK (0x1<<5)
Daniel Vetter02e792f2009-09-15 22:57:34 +020069#define OCMD_BUF_TYPE_FRAME (0x0<<5)
70#define OCMD_BUF_TYPE_FIELD (0x1<<5)
71#define OCMD_TEST_MODE (0x1<<4)
72#define OCMD_BUFFER_SELECT (0x3<<2)
73#define OCMD_BUFFER0 (0x0<<2)
74#define OCMD_BUFFER1 (0x1<<2)
75#define OCMD_FIELD_SELECT (0x1<<2)
76#define OCMD_FIELD0 (0x0<<1)
77#define OCMD_FIELD1 (0x1<<1)
78#define OCMD_ENABLE (0x1<<0)
79
80/* OCONFIG register */
81#define OCONF_PIPE_MASK (0x1<<18)
82#define OCONF_PIPE_A (0x0<<18)
83#define OCONF_PIPE_B (0x1<<18)
84#define OCONF_GAMMA2_ENABLE (0x1<<16)
85#define OCONF_CSC_MODE_BT601 (0x0<<5)
86#define OCONF_CSC_MODE_BT709 (0x1<<5)
87#define OCONF_CSC_BYPASS (0x1<<4)
88#define OCONF_CC_OUT_8BIT (0x1<<3)
89#define OCONF_TEST_MODE (0x1<<2)
90#define OCONF_THREE_LINE_BUFFER (0x1<<0)
91#define OCONF_TWO_LINE_BUFFER (0x0<<0)
92
93/* DCLRKM (dst-key) register */
94#define DST_KEY_ENABLE (0x1<<31)
95#define CLK_RGB24_MASK 0x0
96#define CLK_RGB16_MASK 0x070307
97#define CLK_RGB15_MASK 0x070707
98#define CLK_RGB8I_MASK 0xffffff
99
100#define RGB16_TO_COLORKEY(c) \
101 (((c & 0xF800) << 8) | ((c & 0x07E0) << 5) | ((c & 0x001F) << 3))
102#define RGB15_TO_COLORKEY(c) \
103 (((c & 0x7c00) << 9) | ((c & 0x03E0) << 6) | ((c & 0x001F) << 3))
104
105/* overlay flip addr flag */
106#define OFC_UPDATE 0x1
107
108/* polyphase filter coefficients */
109#define N_HORIZ_Y_TAPS 5
110#define N_VERT_Y_TAPS 3
111#define N_HORIZ_UV_TAPS 3
112#define N_VERT_UV_TAPS 3
113#define N_PHASES 17
114#define MAX_TAPS 5
115
116/* memory bufferd overlay registers */
117struct overlay_registers {
Akshay Joshi0206e352011-08-16 15:34:10 -0400118 u32 OBUF_0Y;
119 u32 OBUF_1Y;
120 u32 OBUF_0U;
121 u32 OBUF_0V;
122 u32 OBUF_1U;
123 u32 OBUF_1V;
124 u32 OSTRIDE;
125 u32 YRGB_VPH;
126 u32 UV_VPH;
127 u32 HORZ_PH;
128 u32 INIT_PHS;
129 u32 DWINPOS;
130 u32 DWINSZ;
131 u32 SWIDTH;
132 u32 SWIDTHSW;
133 u32 SHEIGHT;
134 u32 YRGBSCALE;
135 u32 UVSCALE;
136 u32 OCLRC0;
137 u32 OCLRC1;
138 u32 DCLRKV;
139 u32 DCLRKM;
140 u32 SCLRKVH;
141 u32 SCLRKVL;
142 u32 SCLRKEN;
143 u32 OCONFIG;
144 u32 OCMD;
145 u32 RESERVED1; /* 0x6C */
146 u32 OSTART_0Y;
147 u32 OSTART_1Y;
148 u32 OSTART_0U;
149 u32 OSTART_0V;
150 u32 OSTART_1U;
151 u32 OSTART_1V;
152 u32 OTILEOFF_0Y;
153 u32 OTILEOFF_1Y;
154 u32 OTILEOFF_0U;
155 u32 OTILEOFF_0V;
156 u32 OTILEOFF_1U;
157 u32 OTILEOFF_1V;
158 u32 FASTHSCALE; /* 0xA0 */
159 u32 UVSCALEV; /* 0xA4 */
160 u32 RESERVEDC[(0x200 - 0xA8) / 4]; /* 0xA8 - 0x1FC */
161 u16 Y_VCOEFS[N_VERT_Y_TAPS * N_PHASES]; /* 0x200 */
162 u16 RESERVEDD[0x100 / 2 - N_VERT_Y_TAPS * N_PHASES];
163 u16 Y_HCOEFS[N_HORIZ_Y_TAPS * N_PHASES]; /* 0x300 */
164 u16 RESERVEDE[0x200 / 2 - N_HORIZ_Y_TAPS * N_PHASES];
165 u16 UV_VCOEFS[N_VERT_UV_TAPS * N_PHASES]; /* 0x500 */
166 u16 RESERVEDF[0x100 / 2 - N_VERT_UV_TAPS * N_PHASES];
167 u16 UV_HCOEFS[N_HORIZ_UV_TAPS * N_PHASES]; /* 0x600 */
168 u16 RESERVEDG[0x100 / 2 - N_HORIZ_UV_TAPS * N_PHASES];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200169};
170
Chris Wilson23f09ce2010-08-12 13:53:37 +0100171struct intel_overlay {
Chris Wilson1ee8da62016-05-12 12:43:23 +0100172 struct drm_i915_private *i915;
Chris Wilson23f09ce2010-08-12 13:53:37 +0100173 struct intel_crtc *crtc;
Chris Wilson9b3b7842016-08-15 10:49:01 +0100174 struct i915_vma *vma;
175 struct i915_vma *old_vma;
Ville Syrjälä209c2a52015-03-31 10:37:23 +0300176 bool active;
177 bool pfit_active;
Chris Wilson23f09ce2010-08-12 13:53:37 +0100178 u32 pfit_vscale_ratio; /* shifted-point number, (1<<12) == 1.0 */
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100179 u32 color_key:24;
180 u32 color_key_enabled:1;
Chris Wilson23f09ce2010-08-12 13:53:37 +0100181 u32 brightness, contrast, saturation;
182 u32 old_xscale, old_yscale;
183 /* register access */
184 u32 flip_addr;
185 struct drm_i915_gem_object *reg_bo;
186 /* flip handling */
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100187 struct i915_gem_active last_flip;
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 Wilsonf7bbe782016-08-19 16:54:27 +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 Wilson0d9bdd82016-08-04 07:52:37 +0100213static void intel_overlay_submit_request(struct intel_overlay *overlay,
214 struct drm_i915_gem_request *req,
215 i915_gem_retire_fn retire)
216{
217 GEM_BUG_ON(i915_gem_active_peek(&overlay->last_flip,
218 &overlay->i915->drm.struct_mutex));
Ville Syrjäläecd9caa02016-12-07 17:56:47 +0000219 i915_gem_active_set_retire_fn(&overlay->last_flip, retire,
220 &overlay->i915->drm.struct_mutex);
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100221 i915_gem_active_set(&overlay->last_flip, req);
222 i915_add_request(req);
223}
224
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100225static int intel_overlay_do_wait_request(struct intel_overlay *overlay,
John Harrisondad540c2015-05-29 17:43:47 +0100226 struct drm_i915_gem_request *req,
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100227 i915_gem_retire_fn retire)
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100228{
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100229 intel_overlay_submit_request(overlay, req, retire);
230 return i915_gem_active_retire(&overlay->last_flip,
231 &overlay->i915->drm.struct_mutex);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100232}
233
Chris Wilson8e637172016-08-02 22:50:26 +0100234static struct drm_i915_gem_request *alloc_request(struct intel_overlay *overlay)
235{
236 struct drm_i915_private *dev_priv = overlay->i915;
Akash Goel3b3f1652016-10-13 22:44:48 +0530237 struct intel_engine_cs *engine = dev_priv->engine[RCS];
Chris Wilson8e637172016-08-02 22:50:26 +0100238
239 return i915_gem_request_alloc(engine, dev_priv->kernel_context);
240}
241
Daniel Vetter02e792f2009-09-15 22:57:34 +0200242/* overlay needs to be disable in OCMD reg */
243static int intel_overlay_on(struct intel_overlay *overlay)
244{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100245 struct drm_i915_private *dev_priv = overlay->i915;
John Harrisondad540c2015-05-29 17:43:47 +0100246 struct drm_i915_gem_request *req;
Chris Wilson7e37f882016-08-02 22:50:21 +0100247 struct intel_ring *ring;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200248 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200249
Ville Syrjälä77589f52015-03-31 10:37:22 +0300250 WARN_ON(overlay->active);
Chris Wilson1ee8da62016-05-12 12:43:23 +0100251 WARN_ON(IS_I830(dev_priv) && !(dev_priv->quirks & QUIRK_PIPEA_FORCE));
Chris Wilson106dada2010-07-16 17:13:01 +0100252
Chris Wilson8e637172016-08-02 22:50:26 +0100253 req = alloc_request(overlay);
Dave Gordon26827082016-01-19 19:02:53 +0000254 if (IS_ERR(req))
255 return PTR_ERR(req);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100256
John Harrison5fb9de12015-05-29 17:44:07 +0100257 ret = intel_ring_begin(req, 4);
John Harrisondad540c2015-05-29 17:43:47 +0100258 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100259 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100260 return ret;
261 }
262
Ville Syrjälä1c7c4302015-03-31 10:37:24 +0300263 overlay->active = true;
264
Chris Wilson1dae2df2016-08-02 22:50:19 +0100265 ring = req->ring;
Chris Wilsonb5321f32016-08-02 22:50:18 +0100266 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_ON);
267 intel_ring_emit(ring, overlay->flip_addr | OFC_UPDATE);
268 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
269 intel_ring_emit(ring, MI_NOOP);
270 intel_ring_advance(ring);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200271
John Harrisondad540c2015-05-29 17:43:47 +0100272 return intel_overlay_do_wait_request(overlay, req, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200273}
274
Ville Syrjälä58d09eb2016-12-07 19:28:06 +0200275static void intel_overlay_flip_prepare(struct intel_overlay *overlay,
276 struct i915_vma *vma)
277{
278 enum pipe pipe = overlay->crtc->pipe;
279
280 WARN_ON(overlay->old_vma);
281
282 i915_gem_track_fb(overlay->vma ? overlay->vma->obj : NULL,
283 vma ? vma->obj : NULL,
284 INTEL_FRONTBUFFER_OVERLAY(pipe));
285
286 intel_frontbuffer_flip_prepare(overlay->i915,
287 INTEL_FRONTBUFFER_OVERLAY(pipe));
288
289 overlay->old_vma = overlay->vma;
290 if (vma)
291 overlay->vma = i915_vma_get(vma);
292 else
293 overlay->vma = NULL;
294}
295
Daniel Vetter02e792f2009-09-15 22:57:34 +0200296/* overlay needs to be enabled in OCMD reg */
Chris Wilson8dc5d142010-08-12 12:36:12 +0100297static int intel_overlay_continue(struct intel_overlay *overlay,
Ville Syrjälä58d09eb2016-12-07 19:28:06 +0200298 struct i915_vma *vma,
Chris Wilson8dc5d142010-08-12 12:36:12 +0100299 bool load_polyphase_filter)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200300{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100301 struct drm_i915_private *dev_priv = overlay->i915;
John Harrisondad540c2015-05-29 17:43:47 +0100302 struct drm_i915_gem_request *req;
Chris Wilson7e37f882016-08-02 22:50:21 +0100303 struct intel_ring *ring;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200304 u32 flip_addr = overlay->flip_addr;
305 u32 tmp;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100306 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200307
Ville Syrjälä77589f52015-03-31 10:37:22 +0300308 WARN_ON(!overlay->active);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200309
310 if (load_polyphase_filter)
311 flip_addr |= OFC_UPDATE;
312
313 /* check for underruns */
314 tmp = I915_READ(DOVSTA);
315 if (tmp & (1 << 17))
316 DRM_DEBUG("overlay underrun, DOVSTA: %x\n", tmp);
317
Chris Wilson8e637172016-08-02 22:50:26 +0100318 req = alloc_request(overlay);
Dave Gordon26827082016-01-19 19:02:53 +0000319 if (IS_ERR(req))
320 return PTR_ERR(req);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100321
John Harrison5fb9de12015-05-29 17:44:07 +0100322 ret = intel_ring_begin(req, 2);
John Harrisondad540c2015-05-29 17:43:47 +0100323 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100324 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100325 return ret;
326 }
327
Chris Wilson1dae2df2016-08-02 22:50:19 +0100328 ring = req->ring;
Chris Wilsonb5321f32016-08-02 22:50:18 +0100329 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
330 intel_ring_emit(ring, flip_addr);
331 intel_ring_advance(ring);
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200332
Ville Syrjälä58d09eb2016-12-07 19:28:06 +0200333 intel_overlay_flip_prepare(overlay, vma);
334
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100335 intel_overlay_submit_request(overlay, req, NULL);
John Harrisonbf7dc5b2015-05-29 17:43:24 +0100336
337 return 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200338}
339
Ville Syrjälä58d09eb2016-12-07 19:28:06 +0200340static void intel_overlay_release_old_vma(struct intel_overlay *overlay)
341{
342 struct i915_vma *vma;
343
344 vma = fetch_and_zero(&overlay->old_vma);
345 if (WARN_ON(!vma))
346 return;
347
348 intel_frontbuffer_flip_complete(overlay->i915,
349 INTEL_FRONTBUFFER_OVERLAY(overlay->crtc->pipe));
350
351 i915_gem_object_unpin_from_display_plane(vma);
352 i915_vma_put(vma);
353}
354
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100355static void intel_overlay_release_old_vid_tail(struct i915_gem_active *active,
356 struct drm_i915_gem_request *req)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200357{
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100358 struct intel_overlay *overlay =
359 container_of(active, typeof(*overlay), last_flip);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200360
Ville Syrjälä58d09eb2016-12-07 19:28:06 +0200361 intel_overlay_release_old_vma(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200362}
363
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100364static void intel_overlay_off_tail(struct i915_gem_active *active,
365 struct drm_i915_gem_request *req)
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200366{
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100367 struct intel_overlay *overlay =
368 container_of(active, typeof(*overlay), last_flip);
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200369
Ville Syrjälä58d09eb2016-12-07 19:28:06 +0200370 intel_overlay_release_old_vma(overlay);
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200371
372 overlay->crtc->overlay = NULL;
373 overlay->crtc = NULL;
Ville Syrjälä209c2a52015-03-31 10:37:23 +0300374 overlay->active = false;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200375}
376
Daniel Vetter02e792f2009-09-15 22:57:34 +0200377/* overlay needs to be disabled in OCMD reg */
Chris Wilsonce453d82011-02-21 14:43:56 +0000378static int intel_overlay_off(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200379{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100380 struct drm_i915_private *dev_priv = overlay->i915;
John Harrisondad540c2015-05-29 17:43:47 +0100381 struct drm_i915_gem_request *req;
Chris Wilson7e37f882016-08-02 22:50:21 +0100382 struct intel_ring *ring;
Chris Wilson8dc5d142010-08-12 12:36:12 +0100383 u32 flip_addr = overlay->flip_addr;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100384 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200385
Ville Syrjälä77589f52015-03-31 10:37:22 +0300386 WARN_ON(!overlay->active);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200387
388 /* According to intel docs the overlay hw may hang (when switching
389 * off) without loading the filter coeffs. It is however unclear whether
390 * this applies to the disabling of the overlay or to the switching off
391 * of the hw. Do it in both cases */
392 flip_addr |= OFC_UPDATE;
393
Chris Wilson8e637172016-08-02 22:50:26 +0100394 req = alloc_request(overlay);
Dave Gordon26827082016-01-19 19:02:53 +0000395 if (IS_ERR(req))
396 return PTR_ERR(req);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100397
John Harrison5fb9de12015-05-29 17:44:07 +0100398 ret = intel_ring_begin(req, 6);
John Harrisondad540c2015-05-29 17:43:47 +0100399 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100400 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100401 return ret;
402 }
403
Chris Wilson1dae2df2016-08-02 22:50:19 +0100404 ring = req->ring;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200405 /* wait for overlay to go idle */
Chris Wilsonb5321f32016-08-02 22:50:18 +0100406 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
407 intel_ring_emit(ring, flip_addr);
408 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Chris Wilson722506f2010-08-12 09:28:50 +0100409 /* turn overlay off */
Chris Wilson1ee8da62016-05-12 12:43:23 +0100410 if (IS_I830(dev_priv)) {
Daniel Vettera9193982012-10-22 12:55:55 +0200411 /* Workaround: Don't disable the overlay fully, since otherwise
412 * it dies on the next OVERLAY_ON cmd. */
Chris Wilsonb5321f32016-08-02 22:50:18 +0100413 intel_ring_emit(ring, MI_NOOP);
414 intel_ring_emit(ring, MI_NOOP);
415 intel_ring_emit(ring, MI_NOOP);
Daniel Vettera9193982012-10-22 12:55:55 +0200416 } else {
Chris Wilsonb5321f32016-08-02 22:50:18 +0100417 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_OFF);
418 intel_ring_emit(ring, flip_addr);
419 intel_ring_emit(ring,
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000420 MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Daniel Vettera9193982012-10-22 12:55:55 +0200421 }
Chris Wilsonb5321f32016-08-02 22:50:18 +0100422 intel_ring_advance(ring);
Chris Wilson722506f2010-08-12 09:28:50 +0100423
Ville Syrjälä58d09eb2016-12-07 19:28:06 +0200424 intel_overlay_flip_prepare(overlay, NULL);
425
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100426 return intel_overlay_do_wait_request(overlay, req,
427 intel_overlay_off_tail);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200428}
429
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200430/* recover from an interruption due to a signal
431 * We have to be careful not to repeat work forever an make forward progess. */
Chris Wilsonce453d82011-02-21 14:43:56 +0000432static int intel_overlay_recover_from_interrupt(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200433{
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100434 return i915_gem_active_retire(&overlay->last_flip,
435 &overlay->i915->drm.struct_mutex);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200436}
437
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200438/* Wait for pending overlay flip and release old frame.
439 * Needs to be called before the overlay register are changed
Chris Wilson8d74f652010-08-12 10:35:26 +0100440 * via intel_overlay_(un)map_regs
441 */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200442static int intel_overlay_release_old_vid(struct intel_overlay *overlay)
443{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100444 struct drm_i915_private *dev_priv = overlay->i915;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200445 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200446
Chris Wilson91c8a322016-07-05 10:40:23 +0100447 lockdep_assert_held(&dev_priv->drm.struct_mutex);
Ville Syrjälä1362b772014-11-26 17:07:29 +0200448
Chris Wilson5cd68c92010-08-12 12:21:54 +0100449 /* Only wait if there is actually an old frame to release to
450 * guarantee forward progress.
451 */
Chris Wilson9b3b7842016-08-15 10:49:01 +0100452 if (!overlay->old_vma)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200453 return 0;
454
Chris Wilson5cd68c92010-08-12 12:21:54 +0100455 if (I915_READ(ISR) & I915_OVERLAY_PLANE_FLIP_PENDING_INTERRUPT) {
456 /* synchronous slowpath */
John Harrisondad540c2015-05-29 17:43:47 +0100457 struct drm_i915_gem_request *req;
Chris Wilson7e37f882016-08-02 22:50:21 +0100458 struct intel_ring *ring;
John Harrisondad540c2015-05-29 17:43:47 +0100459
Chris Wilson8e637172016-08-02 22:50:26 +0100460 req = alloc_request(overlay);
Dave Gordon26827082016-01-19 19:02:53 +0000461 if (IS_ERR(req))
462 return PTR_ERR(req);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100463
John Harrison5fb9de12015-05-29 17:44:07 +0100464 ret = intel_ring_begin(req, 2);
John Harrisondad540c2015-05-29 17:43:47 +0100465 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100466 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100467 return ret;
468 }
469
Chris Wilson1dae2df2016-08-02 22:50:19 +0100470 ring = req->ring;
Chris Wilsonb5321f32016-08-02 22:50:18 +0100471 intel_ring_emit(ring,
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000472 MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Chris Wilsonb5321f32016-08-02 22:50:18 +0100473 intel_ring_emit(ring, MI_NOOP);
474 intel_ring_advance(ring);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200475
John Harrisondad540c2015-05-29 17:43:47 +0100476 ret = intel_overlay_do_wait_request(overlay, req,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100477 intel_overlay_release_old_vid_tail);
Chris Wilson5cd68c92010-08-12 12:21:54 +0100478 if (ret)
479 return ret;
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100480 } else
481 intel_overlay_release_old_vid_tail(&overlay->last_flip, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200482
483 return 0;
484}
485
Ville Syrjälä1362b772014-11-26 17:07:29 +0200486void intel_overlay_reset(struct drm_i915_private *dev_priv)
487{
488 struct intel_overlay *overlay = dev_priv->overlay;
489
490 if (!overlay)
491 return;
492
493 intel_overlay_release_old_vid(overlay);
494
Ville Syrjälä1362b772014-11-26 17:07:29 +0200495 overlay->old_xscale = 0;
496 overlay->old_yscale = 0;
497 overlay->crtc = NULL;
498 overlay->active = false;
499}
500
Daniel Vetter02e792f2009-09-15 22:57:34 +0200501struct put_image_params {
502 int format;
503 short dst_x;
504 short dst_y;
505 short dst_w;
506 short dst_h;
507 short src_w;
508 short src_scan_h;
509 short src_scan_w;
510 short src_h;
511 short stride_Y;
512 short stride_UV;
513 int offset_Y;
514 int offset_U;
515 int offset_V;
516};
517
518static int packed_depth_bytes(u32 format)
519{
520 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100521 case I915_OVERLAY_YUV422:
522 return 4;
523 case I915_OVERLAY_YUV411:
524 /* return 6; not implemented */
525 default:
526 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200527 }
528}
529
530static int packed_width_bytes(u32 format, short width)
531{
532 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100533 case I915_OVERLAY_YUV422:
534 return width << 1;
535 default:
536 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200537 }
538}
539
540static int uv_hsubsampling(u32 format)
541{
542 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100543 case I915_OVERLAY_YUV422:
544 case I915_OVERLAY_YUV420:
545 return 2;
546 case I915_OVERLAY_YUV411:
547 case I915_OVERLAY_YUV410:
548 return 4;
549 default:
550 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200551 }
552}
553
554static int uv_vsubsampling(u32 format)
555{
556 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100557 case I915_OVERLAY_YUV420:
558 case I915_OVERLAY_YUV410:
559 return 2;
560 case I915_OVERLAY_YUV422:
561 case I915_OVERLAY_YUV411:
562 return 1;
563 default:
564 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200565 }
566}
567
Chris Wilson1ee8da62016-05-12 12:43:23 +0100568static u32 calc_swidthsw(struct drm_i915_private *dev_priv, u32 offset, u32 width)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200569{
Ville Syrjälä7039a6dc2016-12-07 19:28:09 +0200570 u32 sw;
571
572 if (IS_GEN2(dev_priv))
573 sw = ALIGN((offset & 31) + width, 32);
574 else
575 sw = ALIGN((offset & 63) + width, 64);
576
577 if (sw == 0)
578 return 0;
579
580 return (sw - 32) >> 3;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200581}
582
Ville Syrjälä2daac462016-12-07 19:28:10 +0200583static const u16 y_static_hcoeffs[N_PHASES][N_HORIZ_Y_TAPS] = {
584 [ 0] = { 0x3000, 0xb4a0, 0x1930, 0x1920, 0xb4a0, },
585 [ 1] = { 0x3000, 0xb500, 0x19d0, 0x1880, 0xb440, },
586 [ 2] = { 0x3000, 0xb540, 0x1a88, 0x2f80, 0xb3e0, },
587 [ 3] = { 0x3000, 0xb580, 0x1b30, 0x2e20, 0xb380, },
588 [ 4] = { 0x3000, 0xb5c0, 0x1bd8, 0x2cc0, 0xb320, },
589 [ 5] = { 0x3020, 0xb5e0, 0x1c60, 0x2b80, 0xb2c0, },
590 [ 6] = { 0x3020, 0xb5e0, 0x1cf8, 0x2a20, 0xb260, },
591 [ 7] = { 0x3020, 0xb5e0, 0x1d80, 0x28e0, 0xb200, },
592 [ 8] = { 0x3020, 0xb5c0, 0x1e08, 0x3f40, 0xb1c0, },
593 [ 9] = { 0x3020, 0xb580, 0x1e78, 0x3ce0, 0xb160, },
594 [10] = { 0x3040, 0xb520, 0x1ed8, 0x3aa0, 0xb120, },
595 [11] = { 0x3040, 0xb4a0, 0x1f30, 0x3880, 0xb0e0, },
596 [12] = { 0x3040, 0xb400, 0x1f78, 0x3680, 0xb0a0, },
597 [13] = { 0x3020, 0xb340, 0x1fb8, 0x34a0, 0xb060, },
598 [14] = { 0x3020, 0xb240, 0x1fe0, 0x32e0, 0xb040, },
599 [15] = { 0x3020, 0xb140, 0x1ff8, 0x3160, 0xb020, },
600 [16] = { 0xb000, 0x3000, 0x0800, 0x3000, 0xb000, },
Chris Wilson722506f2010-08-12 09:28:50 +0100601};
602
Ville Syrjälä2daac462016-12-07 19:28:10 +0200603static const u16 uv_static_hcoeffs[N_PHASES][N_HORIZ_UV_TAPS] = {
604 [ 0] = { 0x3000, 0x1800, 0x1800, },
605 [ 1] = { 0xb000, 0x18d0, 0x2e60, },
606 [ 2] = { 0xb000, 0x1990, 0x2ce0, },
607 [ 3] = { 0xb020, 0x1a68, 0x2b40, },
608 [ 4] = { 0xb040, 0x1b20, 0x29e0, },
609 [ 5] = { 0xb060, 0x1bd8, 0x2880, },
610 [ 6] = { 0xb080, 0x1c88, 0x3e60, },
611 [ 7] = { 0xb0a0, 0x1d28, 0x3c00, },
612 [ 8] = { 0xb0c0, 0x1db8, 0x39e0, },
613 [ 9] = { 0xb0e0, 0x1e40, 0x37e0, },
614 [10] = { 0xb100, 0x1eb8, 0x3620, },
615 [11] = { 0xb100, 0x1f18, 0x34a0, },
616 [12] = { 0xb100, 0x1f68, 0x3360, },
617 [13] = { 0xb0e0, 0x1fa8, 0x3240, },
618 [14] = { 0xb0c0, 0x1fe0, 0x3140, },
619 [15] = { 0xb060, 0x1ff0, 0x30a0, },
620 [16] = { 0x3000, 0x0800, 0x3000, },
Chris Wilson722506f2010-08-12 09:28:50 +0100621};
Daniel Vetter02e792f2009-09-15 22:57:34 +0200622
Ben Widawsky75020bc2012-04-16 14:07:43 -0700623static void update_polyphase_filter(struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200624{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700625 memcpy_toio(regs->Y_HCOEFS, y_static_hcoeffs, sizeof(y_static_hcoeffs));
626 memcpy_toio(regs->UV_HCOEFS, uv_static_hcoeffs,
627 sizeof(uv_static_hcoeffs));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200628}
629
630static bool update_scaling_factors(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700631 struct overlay_registers __iomem *regs,
Daniel Vetter02e792f2009-09-15 22:57:34 +0200632 struct put_image_params *params)
633{
634 /* fixed point with a 12 bit shift */
635 u32 xscale, yscale, xscale_UV, yscale_UV;
636#define FP_SHIFT 12
637#define FRACT_MASK 0xfff
638 bool scale_changed = false;
639 int uv_hscale = uv_hsubsampling(params->format);
640 int uv_vscale = uv_vsubsampling(params->format);
641
642 if (params->dst_w > 1)
643 xscale = ((params->src_scan_w - 1) << FP_SHIFT)
644 /(params->dst_w);
645 else
646 xscale = 1 << FP_SHIFT;
647
648 if (params->dst_h > 1)
649 yscale = ((params->src_scan_h - 1) << FP_SHIFT)
650 /(params->dst_h);
651 else
652 yscale = 1 << FP_SHIFT;
653
654 /*if (params->format & I915_OVERLAY_YUV_PLANAR) {*/
Chris Wilson722506f2010-08-12 09:28:50 +0100655 xscale_UV = xscale/uv_hscale;
656 yscale_UV = yscale/uv_vscale;
657 /* make the Y scale to UV scale ratio an exact multiply */
658 xscale = xscale_UV * uv_hscale;
659 yscale = yscale_UV * uv_vscale;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200660 /*} else {
Chris Wilson722506f2010-08-12 09:28:50 +0100661 xscale_UV = 0;
662 yscale_UV = 0;
663 }*/
Daniel Vetter02e792f2009-09-15 22:57:34 +0200664
665 if (xscale != overlay->old_xscale || yscale != overlay->old_yscale)
666 scale_changed = true;
667 overlay->old_xscale = xscale;
668 overlay->old_yscale = yscale;
669
Ben Widawsky75020bc2012-04-16 14:07:43 -0700670 iowrite32(((yscale & FRACT_MASK) << 20) |
671 ((xscale >> FP_SHIFT) << 16) |
672 ((xscale & FRACT_MASK) << 3),
673 &regs->YRGBSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100674
Ben Widawsky75020bc2012-04-16 14:07:43 -0700675 iowrite32(((yscale_UV & FRACT_MASK) << 20) |
676 ((xscale_UV >> FP_SHIFT) << 16) |
677 ((xscale_UV & FRACT_MASK) << 3),
678 &regs->UVSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100679
Ben Widawsky75020bc2012-04-16 14:07:43 -0700680 iowrite32((((yscale >> FP_SHIFT) << 16) |
681 ((yscale_UV >> FP_SHIFT) << 0)),
682 &regs->UVSCALEV);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200683
684 if (scale_changed)
685 update_polyphase_filter(regs);
686
687 return scale_changed;
688}
689
690static void update_colorkey(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700691 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200692{
693 u32 key = overlay->color_key;
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100694 u32 flags;
695
696 flags = 0;
697 if (overlay->color_key_enabled)
698 flags |= DST_KEY_ENABLE;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100699
Matt Roperf4510a22014-04-01 15:22:40 -0700700 switch (overlay->crtc->base.primary->fb->bits_per_pixel) {
Chris Wilson722506f2010-08-12 09:28:50 +0100701 case 8:
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100702 key = 0;
703 flags |= CLK_RGB8I_MASK;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100704 break;
705
Chris Wilson722506f2010-08-12 09:28:50 +0100706 case 16:
Matt Roperf4510a22014-04-01 15:22:40 -0700707 if (overlay->crtc->base.primary->fb->depth == 15) {
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100708 key = RGB15_TO_COLORKEY(key);
709 flags |= CLK_RGB15_MASK;
Chris Wilson722506f2010-08-12 09:28:50 +0100710 } else {
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100711 key = RGB16_TO_COLORKEY(key);
712 flags |= CLK_RGB16_MASK;
Chris Wilson722506f2010-08-12 09:28:50 +0100713 }
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100714 break;
715
Chris Wilson722506f2010-08-12 09:28:50 +0100716 case 24:
717 case 32:
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100718 flags |= CLK_RGB24_MASK;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100719 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200720 }
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100721
722 iowrite32(key, &regs->DCLRKV);
723 iowrite32(flags, &regs->DCLRKM);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200724}
725
726static u32 overlay_cmd_reg(struct put_image_params *params)
727{
728 u32 cmd = OCMD_ENABLE | OCMD_BUF_TYPE_FRAME | OCMD_BUFFER0;
729
730 if (params->format & I915_OVERLAY_YUV_PLANAR) {
731 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100732 case I915_OVERLAY_YUV422:
733 cmd |= OCMD_YUV_422_PLANAR;
734 break;
735 case I915_OVERLAY_YUV420:
736 cmd |= OCMD_YUV_420_PLANAR;
737 break;
738 case I915_OVERLAY_YUV411:
739 case I915_OVERLAY_YUV410:
740 cmd |= OCMD_YUV_410_PLANAR;
741 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200742 }
743 } else { /* YUV packed */
744 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100745 case I915_OVERLAY_YUV422:
746 cmd |= OCMD_YUV_422_PACKED;
747 break;
748 case I915_OVERLAY_YUV411:
749 cmd |= OCMD_YUV_411_PACKED;
750 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200751 }
752
753 switch (params->format & I915_OVERLAY_SWAP_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100754 case I915_OVERLAY_NO_SWAP:
755 break;
756 case I915_OVERLAY_UV_SWAP:
757 cmd |= OCMD_UV_SWAP;
758 break;
759 case I915_OVERLAY_Y_SWAP:
760 cmd |= OCMD_Y_SWAP;
761 break;
762 case I915_OVERLAY_Y_AND_UV_SWAP:
763 cmd |= OCMD_Y_AND_UV_SWAP;
764 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200765 }
766 }
767
768 return cmd;
769}
770
Chris Wilson5fe82c52010-08-12 12:38:21 +0100771static int intel_overlay_do_put_image(struct intel_overlay *overlay,
Chris Wilson05394f32010-11-08 19:18:58 +0000772 struct drm_i915_gem_object *new_bo,
Chris Wilson5fe82c52010-08-12 12:38:21 +0100773 struct put_image_params *params)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200774{
775 int ret, tmp_width;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700776 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200777 bool scale_changed = false;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100778 struct drm_i915_private *dev_priv = overlay->i915;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700779 u32 swidth, swidthsw, sheight, ostride;
Daniel Vettera071fa02014-06-18 23:28:09 +0200780 enum pipe pipe = overlay->crtc->pipe;
Chris Wilson9b3b7842016-08-15 10:49:01 +0100781 struct i915_vma *vma;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200782
Chris Wilson91c8a322016-07-05 10:40:23 +0100783 lockdep_assert_held(&dev_priv->drm.struct_mutex);
784 WARN_ON(!drm_modeset_is_locked(&dev_priv->drm.mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200785
Daniel Vetter02e792f2009-09-15 22:57:34 +0200786 ret = intel_overlay_release_old_vid(overlay);
787 if (ret != 0)
788 return ret;
789
Chris Wilson058d88c2016-08-15 10:49:06 +0100790 vma = i915_gem_object_pin_to_display_plane(new_bo, 0,
Tvrtko Ursuline6617332015-03-23 11:10:33 +0000791 &i915_ggtt_view_normal);
Chris Wilson058d88c2016-08-15 10:49:06 +0100792 if (IS_ERR(vma))
793 return PTR_ERR(vma);
Chris Wilson9b3b7842016-08-15 10:49:01 +0100794
Chris Wilson49ef5292016-08-18 17:17:00 +0100795 ret = i915_vma_put_fence(vma);
Chris Wilsond9e86c02010-11-10 16:40:20 +0000796 if (ret)
797 goto out_unpin;
798
Daniel Vetter02e792f2009-09-15 22:57:34 +0200799 if (!overlay->active) {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700800 u32 oconfig;
Chris Wilson8d74f652010-08-12 10:35:26 +0100801 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200802 if (!regs) {
803 ret = -ENOMEM;
804 goto out_unpin;
805 }
Ben Widawsky75020bc2012-04-16 14:07:43 -0700806 oconfig = OCONF_CC_OUT_8BIT;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100807 if (IS_GEN4(dev_priv))
Ben Widawsky75020bc2012-04-16 14:07:43 -0700808 oconfig |= OCONF_CSC_MODE_BT709;
Daniel Vettera071fa02014-06-18 23:28:09 +0200809 oconfig |= pipe == 0 ?
Daniel Vetter02e792f2009-09-15 22:57:34 +0200810 OCONF_PIPE_A : OCONF_PIPE_B;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700811 iowrite32(oconfig, &regs->OCONFIG);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100812 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200813
814 ret = intel_overlay_on(overlay);
815 if (ret != 0)
816 goto out_unpin;
817 }
818
Chris Wilson8d74f652010-08-12 10:35:26 +0100819 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200820 if (!regs) {
821 ret = -ENOMEM;
822 goto out_unpin;
823 }
824
Ben Widawsky75020bc2012-04-16 14:07:43 -0700825 iowrite32((params->dst_y << 16) | params->dst_x, &regs->DWINPOS);
826 iowrite32((params->dst_h << 16) | params->dst_w, &regs->DWINSZ);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200827
828 if (params->format & I915_OVERLAY_YUV_PACKED)
829 tmp_width = packed_width_bytes(params->format, params->src_w);
830 else
831 tmp_width = params->src_w;
832
Ben Widawsky75020bc2012-04-16 14:07:43 -0700833 swidth = params->src_w;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100834 swidthsw = calc_swidthsw(dev_priv, params->offset_Y, tmp_width);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700835 sheight = params->src_h;
Chris Wilsonbde13eb2016-08-15 10:49:07 +0100836 iowrite32(i915_ggtt_offset(vma) + params->offset_Y, &regs->OBUF_0Y);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700837 ostride = params->stride_Y;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200838
839 if (params->format & I915_OVERLAY_YUV_PLANAR) {
840 int uv_hscale = uv_hsubsampling(params->format);
841 int uv_vscale = uv_vsubsampling(params->format);
842 u32 tmp_U, tmp_V;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700843 swidth |= (params->src_w/uv_hscale) << 16;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100844 tmp_U = calc_swidthsw(dev_priv, params->offset_U,
Chris Wilson722506f2010-08-12 09:28:50 +0100845 params->src_w/uv_hscale);
Chris Wilson1ee8da62016-05-12 12:43:23 +0100846 tmp_V = calc_swidthsw(dev_priv, params->offset_V,
Chris Wilson722506f2010-08-12 09:28:50 +0100847 params->src_w/uv_hscale);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700848 swidthsw |= max_t(u32, tmp_U, tmp_V) << 16;
849 sheight |= (params->src_h/uv_vscale) << 16;
Chris Wilsonbde13eb2016-08-15 10:49:07 +0100850 iowrite32(i915_ggtt_offset(vma) + params->offset_U,
851 &regs->OBUF_0U);
852 iowrite32(i915_ggtt_offset(vma) + params->offset_V,
853 &regs->OBUF_0V);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700854 ostride |= params->stride_UV << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200855 }
856
Ben Widawsky75020bc2012-04-16 14:07:43 -0700857 iowrite32(swidth, &regs->SWIDTH);
858 iowrite32(swidthsw, &regs->SWIDTHSW);
859 iowrite32(sheight, &regs->SHEIGHT);
860 iowrite32(ostride, &regs->OSTRIDE);
861
Daniel Vetter02e792f2009-09-15 22:57:34 +0200862 scale_changed = update_scaling_factors(overlay, regs, params);
863
864 update_colorkey(overlay, regs);
865
Ben Widawsky75020bc2012-04-16 14:07:43 -0700866 iowrite32(overlay_cmd_reg(params), &regs->OCMD);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200867
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100868 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200869
Ville Syrjälä58d09eb2016-12-07 19:28:06 +0200870 ret = intel_overlay_continue(overlay, vma, scale_changed);
Chris Wilson8dc5d142010-08-12 12:36:12 +0100871 if (ret)
872 goto out_unpin;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200873
Daniel Vetter02e792f2009-09-15 22:57:34 +0200874 return 0;
875
876out_unpin:
Chris Wilson058d88c2016-08-15 10:49:06 +0100877 i915_gem_object_unpin_from_display_plane(vma);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200878 return ret;
879}
880
Chris Wilsonce453d82011-02-21 14:43:56 +0000881int intel_overlay_switch_off(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200882{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100883 struct drm_i915_private *dev_priv = overlay->i915;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700884 struct overlay_registers __iomem *regs;
Chris Wilson5dcdbcb2010-08-12 13:50:28 +0100885 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200886
Chris Wilson91c8a322016-07-05 10:40:23 +0100887 lockdep_assert_held(&dev_priv->drm.struct_mutex);
888 WARN_ON(!drm_modeset_is_locked(&dev_priv->drm.mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200889
Chris Wilsonce453d82011-02-21 14:43:56 +0000890 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +0100891 if (ret != 0)
892 return ret;
Daniel Vetter9bedb972009-11-30 15:55:49 +0100893
Daniel Vetter02e792f2009-09-15 22:57:34 +0200894 if (!overlay->active)
895 return 0;
896
Daniel Vetter02e792f2009-09-15 22:57:34 +0200897 ret = intel_overlay_release_old_vid(overlay);
898 if (ret != 0)
899 return ret;
900
Chris Wilson8d74f652010-08-12 10:35:26 +0100901 regs = intel_overlay_map_regs(overlay);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700902 iowrite32(0, &regs->OCMD);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100903 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200904
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100905 return intel_overlay_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200906}
907
908static int check_overlay_possible_on_crtc(struct intel_overlay *overlay,
909 struct intel_crtc *crtc)
910{
Chris Wilsonf7abfe82010-09-13 14:19:16 +0100911 if (!crtc->active)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200912 return -EINVAL;
913
Daniel Vetter02e792f2009-09-15 22:57:34 +0200914 /* can't use the overlay with double wide pipe */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200915 if (crtc->config->double_wide)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200916 return -EINVAL;
917
918 return 0;
919}
920
921static void update_pfit_vscale_ratio(struct intel_overlay *overlay)
922{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100923 struct drm_i915_private *dev_priv = overlay->i915;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200924 u32 pfit_control = I915_READ(PFIT_CONTROL);
Chris Wilson446d2182010-08-12 11:15:58 +0100925 u32 ratio;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200926
927 /* XXX: This is not the same logic as in the xorg driver, but more in
Chris Wilson446d2182010-08-12 11:15:58 +0100928 * line with the intel documentation for the i965
929 */
Chris Wilson1ee8da62016-05-12 12:43:23 +0100930 if (INTEL_GEN(dev_priv) >= 4) {
Akshay Joshi0206e352011-08-16 15:34:10 -0400931 /* on i965 use the PGM reg to read out the autoscaler values */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100932 ratio = I915_READ(PFIT_PGM_RATIOS) >> PFIT_VERT_SCALE_SHIFT_965;
933 } else {
Chris Wilson446d2182010-08-12 11:15:58 +0100934 if (pfit_control & VERT_AUTO_SCALE)
935 ratio = I915_READ(PFIT_AUTO_RATIOS);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200936 else
Chris Wilson446d2182010-08-12 11:15:58 +0100937 ratio = I915_READ(PFIT_PGM_RATIOS);
938 ratio >>= PFIT_VERT_SCALE_SHIFT;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200939 }
940
941 overlay->pfit_vscale_ratio = ratio;
942}
943
944static int check_overlay_dst(struct intel_overlay *overlay,
945 struct drm_intel_overlay_put_image *rec)
946{
Ville Syrjälä73699142016-12-07 19:28:07 +0200947 const struct intel_crtc_state *pipe_config =
948 overlay->crtc->config;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200949
Ville Syrjälä73699142016-12-07 19:28:07 +0200950 if (rec->dst_x < pipe_config->pipe_src_w &&
951 rec->dst_x + rec->dst_width <= pipe_config->pipe_src_w &&
952 rec->dst_y < pipe_config->pipe_src_h &&
953 rec->dst_y + rec->dst_height <= pipe_config->pipe_src_h)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200954 return 0;
955 else
956 return -EINVAL;
957}
958
959static int check_overlay_scaling(struct put_image_params *rec)
960{
961 u32 tmp;
962
963 /* downscaling limit is 8.0 */
964 tmp = ((rec->src_scan_h << 16) / rec->dst_h) >> 16;
965 if (tmp > 7)
966 return -EINVAL;
967 tmp = ((rec->src_scan_w << 16) / rec->dst_w) >> 16;
968 if (tmp > 7)
969 return -EINVAL;
970
971 return 0;
972}
973
Chris Wilson1ee8da62016-05-12 12:43:23 +0100974static int check_overlay_src(struct drm_i915_private *dev_priv,
Daniel Vetter02e792f2009-09-15 22:57:34 +0200975 struct drm_intel_overlay_put_image *rec,
Chris Wilson05394f32010-11-08 19:18:58 +0000976 struct drm_i915_gem_object *new_bo)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200977{
Daniel Vetter02e792f2009-09-15 22:57:34 +0200978 int uv_hscale = uv_hsubsampling(rec->flags);
979 int uv_vscale = uv_vsubsampling(rec->flags);
Dan Carpenter8f28f542010-10-27 23:17:25 +0200980 u32 stride_mask;
981 int depth;
982 u32 tmp;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200983
984 /* check src dimensions */
Jani Nikula2a307c22016-11-30 17:43:04 +0200985 if (IS_I845G(dev_priv) || IS_I830(dev_priv)) {
Chris Wilson722506f2010-08-12 09:28:50 +0100986 if (rec->src_height > IMAGE_MAX_HEIGHT_LEGACY ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100987 rec->src_width > IMAGE_MAX_WIDTH_LEGACY)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200988 return -EINVAL;
989 } else {
Chris Wilson722506f2010-08-12 09:28:50 +0100990 if (rec->src_height > IMAGE_MAX_HEIGHT ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100991 rec->src_width > IMAGE_MAX_WIDTH)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200992 return -EINVAL;
993 }
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100994
Daniel Vetter02e792f2009-09-15 22:57:34 +0200995 /* better safe than sorry, use 4 as the maximal subsampling ratio */
Chris Wilson722506f2010-08-12 09:28:50 +0100996 if (rec->src_height < N_VERT_Y_TAPS*4 ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100997 rec->src_width < N_HORIZ_Y_TAPS*4)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200998 return -EINVAL;
999
Chris Wilsona1efd142010-07-12 19:35:38 +01001000 /* check alignment constraints */
Daniel Vetter02e792f2009-09-15 22:57:34 +02001001 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +01001002 case I915_OVERLAY_RGB:
1003 /* not implemented */
1004 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001005
Chris Wilson722506f2010-08-12 09:28:50 +01001006 case I915_OVERLAY_YUV_PACKED:
Chris Wilson722506f2010-08-12 09:28:50 +01001007 if (uv_vscale != 1)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001008 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001009
1010 depth = packed_depth_bytes(rec->flags);
Chris Wilson722506f2010-08-12 09:28:50 +01001011 if (depth < 0)
1012 return depth;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001013
Chris Wilson722506f2010-08-12 09:28:50 +01001014 /* ignore UV planes */
1015 rec->stride_UV = 0;
1016 rec->offset_U = 0;
1017 rec->offset_V = 0;
1018 /* check pixel alignment */
1019 if (rec->offset_Y % depth)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001020 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001021 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001022
Chris Wilson722506f2010-08-12 09:28:50 +01001023 case I915_OVERLAY_YUV_PLANAR:
1024 if (uv_vscale < 0 || uv_hscale < 0)
1025 return -EINVAL;
1026 /* no offset restrictions for planar formats */
1027 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001028
Chris Wilson722506f2010-08-12 09:28:50 +01001029 default:
1030 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001031 }
1032
1033 if (rec->src_width % uv_hscale)
1034 return -EINVAL;
1035
1036 /* stride checking */
Jani Nikula2a307c22016-11-30 17:43:04 +02001037 if (IS_I830(dev_priv) || IS_I845G(dev_priv))
Chris Wilsona1efd142010-07-12 19:35:38 +01001038 stride_mask = 255;
1039 else
1040 stride_mask = 63;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001041
1042 if (rec->stride_Y & stride_mask || rec->stride_UV & stride_mask)
1043 return -EINVAL;
Chris Wilson1ee8da62016-05-12 12:43:23 +01001044 if (IS_GEN4(dev_priv) && rec->stride_Y < 512)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001045 return -EINVAL;
1046
1047 tmp = (rec->flags & I915_OVERLAY_TYPE_MASK) == I915_OVERLAY_YUV_PLANAR ?
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001048 4096 : 8192;
1049 if (rec->stride_Y > tmp || rec->stride_UV > 2*1024)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001050 return -EINVAL;
1051
1052 /* check buffer dimensions */
1053 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +01001054 case I915_OVERLAY_RGB:
1055 case I915_OVERLAY_YUV_PACKED:
1056 /* always 4 Y values per depth pixels */
1057 if (packed_width_bytes(rec->flags, rec->src_width) > rec->stride_Y)
1058 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001059
Chris Wilson722506f2010-08-12 09:28:50 +01001060 tmp = rec->stride_Y*rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001061 if (rec->offset_Y + 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
Chris Wilson722506f2010-08-12 09:28:50 +01001065 case I915_OVERLAY_YUV_PLANAR:
1066 if (rec->src_width > rec->stride_Y)
1067 return -EINVAL;
1068 if (rec->src_width/uv_hscale > rec->stride_UV)
1069 return -EINVAL;
1070
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001071 tmp = rec->stride_Y * rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001072 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001073 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001074
1075 tmp = rec->stride_UV * (rec->src_height / uv_vscale);
Chris Wilson05394f32010-11-08 19:18:58 +00001076 if (rec->offset_U + tmp > new_bo->base.size ||
1077 rec->offset_V + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001078 return -EINVAL;
1079 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001080 }
1081
1082 return 0;
1083}
1084
Chris Wilson1ee8da62016-05-12 12:43:23 +01001085int intel_overlay_put_image_ioctl(struct drm_device *dev, void *data,
1086 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001087{
1088 struct drm_intel_overlay_put_image *put_image_rec = data;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001089 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001090 struct intel_overlay *overlay;
Rob Clark7707e652014-07-17 23:30:04 -04001091 struct drm_crtc *drmmode_crtc;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001092 struct intel_crtc *crtc;
Chris Wilson05394f32010-11-08 19:18:58 +00001093 struct drm_i915_gem_object *new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001094 struct put_image_params *params;
1095 int ret;
1096
Daniel Vetter02e792f2009-09-15 22:57:34 +02001097 overlay = dev_priv->overlay;
1098 if (!overlay) {
1099 DRM_DEBUG("userspace bug: no overlay\n");
1100 return -ENODEV;
1101 }
1102
1103 if (!(put_image_rec->flags & I915_OVERLAY_ENABLE)) {
Daniel Vettera0e99e62012-12-02 01:05:46 +01001104 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001105 mutex_lock(&dev->struct_mutex);
1106
Chris Wilsonce453d82011-02-21 14:43:56 +00001107 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001108
1109 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001110 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001111
1112 return ret;
1113 }
1114
Daniel Vetterb14c5672013-09-19 12:18:32 +02001115 params = kmalloc(sizeof(*params), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001116 if (!params)
1117 return -ENOMEM;
1118
Rob Clark7707e652014-07-17 23:30:04 -04001119 drmmode_crtc = drm_crtc_find(dev, put_image_rec->crtc_id);
1120 if (!drmmode_crtc) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001121 ret = -ENOENT;
1122 goto out_free;
1123 }
Rob Clark7707e652014-07-17 23:30:04 -04001124 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001125
Chris Wilson03ac0642016-07-20 13:31:51 +01001126 new_bo = i915_gem_object_lookup(file_priv, put_image_rec->bo_handle);
1127 if (!new_bo) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001128 ret = -ENOENT;
1129 goto out_free;
1130 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001131
Daniel Vettera0e99e62012-12-02 01:05:46 +01001132 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001133 mutex_lock(&dev->struct_mutex);
1134
Chris Wilson3e510a82016-08-05 10:14:23 +01001135 if (i915_gem_object_is_tiled(new_bo)) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01001136 DRM_DEBUG_KMS("buffer used for overlay image can not be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00001137 ret = -EINVAL;
1138 goto out_unlock;
1139 }
1140
Chris Wilsonce453d82011-02-21 14:43:56 +00001141 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +01001142 if (ret != 0)
1143 goto out_unlock;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02001144
Daniel Vetter02e792f2009-09-15 22:57:34 +02001145 if (overlay->crtc != crtc) {
Chris Wilsonce453d82011-02-21 14:43:56 +00001146 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001147 if (ret != 0)
1148 goto out_unlock;
1149
1150 ret = check_overlay_possible_on_crtc(overlay, crtc);
1151 if (ret != 0)
1152 goto out_unlock;
1153
1154 overlay->crtc = crtc;
1155 crtc->overlay = overlay;
1156
Chris Wilsone9e331a2010-09-13 01:16:10 +01001157 /* line too wide, i.e. one-line-mode */
Ville Syrjälä73699142016-12-07 19:28:07 +02001158 if (crtc->config->pipe_src_w > 1024 &&
Ville Syrjälä949d8cf2016-12-07 19:28:08 +02001159 crtc->config->gmch_pfit.control & PFIT_ENABLE) {
Ville Syrjälä209c2a52015-03-31 10:37:23 +03001160 overlay->pfit_active = true;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001161 update_pfit_vscale_ratio(overlay);
1162 } else
Ville Syrjälä209c2a52015-03-31 10:37:23 +03001163 overlay->pfit_active = false;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001164 }
1165
1166 ret = check_overlay_dst(overlay, put_image_rec);
1167 if (ret != 0)
1168 goto out_unlock;
1169
1170 if (overlay->pfit_active) {
1171 params->dst_y = ((((u32)put_image_rec->dst_y) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001172 overlay->pfit_vscale_ratio);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001173 /* shifting right rounds downwards, so add 1 */
1174 params->dst_h = ((((u32)put_image_rec->dst_height) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001175 overlay->pfit_vscale_ratio) + 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001176 } else {
1177 params->dst_y = put_image_rec->dst_y;
1178 params->dst_h = put_image_rec->dst_height;
1179 }
1180 params->dst_x = put_image_rec->dst_x;
1181 params->dst_w = put_image_rec->dst_width;
1182
1183 params->src_w = put_image_rec->src_width;
1184 params->src_h = put_image_rec->src_height;
1185 params->src_scan_w = put_image_rec->src_scan_width;
1186 params->src_scan_h = put_image_rec->src_scan_height;
Chris Wilson722506f2010-08-12 09:28:50 +01001187 if (params->src_scan_h > params->src_h ||
1188 params->src_scan_w > params->src_w) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001189 ret = -EINVAL;
1190 goto out_unlock;
1191 }
1192
Chris Wilson1ee8da62016-05-12 12:43:23 +01001193 ret = check_overlay_src(dev_priv, put_image_rec, new_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001194 if (ret != 0)
1195 goto out_unlock;
1196 params->format = put_image_rec->flags & ~I915_OVERLAY_FLAGS_MASK;
1197 params->stride_Y = put_image_rec->stride_Y;
1198 params->stride_UV = put_image_rec->stride_UV;
1199 params->offset_Y = put_image_rec->offset_Y;
1200 params->offset_U = put_image_rec->offset_U;
1201 params->offset_V = put_image_rec->offset_V;
1202
1203 /* Check scaling after src size to prevent a divide-by-zero. */
1204 ret = check_overlay_scaling(params);
1205 if (ret != 0)
1206 goto out_unlock;
1207
1208 ret = intel_overlay_do_put_image(overlay, new_bo, params);
1209 if (ret != 0)
1210 goto out_unlock;
1211
1212 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001213 drm_modeset_unlock_all(dev);
Ville Syrjälä58d09eb2016-12-07 19:28:06 +02001214 i915_gem_object_put(new_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001215
1216 kfree(params);
1217
1218 return 0;
1219
1220out_unlock:
1221 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001222 drm_modeset_unlock_all(dev);
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001223 i915_gem_object_put(new_bo);
Dan Carpenter915a4282010-03-06 14:05:39 +03001224out_free:
Daniel Vetter02e792f2009-09-15 22:57:34 +02001225 kfree(params);
1226
1227 return ret;
1228}
1229
1230static void update_reg_attrs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001231 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001232{
Ben Widawsky75020bc2012-04-16 14:07:43 -07001233 iowrite32((overlay->contrast << 18) | (overlay->brightness & 0xff),
1234 &regs->OCLRC0);
1235 iowrite32(overlay->saturation, &regs->OCLRC1);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001236}
1237
1238static bool check_gamma_bounds(u32 gamma1, u32 gamma2)
1239{
1240 int i;
1241
1242 if (gamma1 & 0xff000000 || gamma2 & 0xff000000)
1243 return false;
1244
1245 for (i = 0; i < 3; i++) {
Chris Wilson722506f2010-08-12 09:28:50 +01001246 if (((gamma1 >> i*8) & 0xff) >= ((gamma2 >> i*8) & 0xff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001247 return false;
1248 }
1249
1250 return true;
1251}
1252
1253static bool check_gamma5_errata(u32 gamma5)
1254{
1255 int i;
1256
1257 for (i = 0; i < 3; i++) {
1258 if (((gamma5 >> i*8) & 0xff) == 0x80)
1259 return false;
1260 }
1261
1262 return true;
1263}
1264
1265static int check_gamma(struct drm_intel_overlay_attrs *attrs)
1266{
Chris Wilson722506f2010-08-12 09:28:50 +01001267 if (!check_gamma_bounds(0, attrs->gamma0) ||
1268 !check_gamma_bounds(attrs->gamma0, attrs->gamma1) ||
1269 !check_gamma_bounds(attrs->gamma1, attrs->gamma2) ||
1270 !check_gamma_bounds(attrs->gamma2, attrs->gamma3) ||
1271 !check_gamma_bounds(attrs->gamma3, attrs->gamma4) ||
1272 !check_gamma_bounds(attrs->gamma4, attrs->gamma5) ||
1273 !check_gamma_bounds(attrs->gamma5, 0x00ffffff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001274 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001275
Daniel Vetter02e792f2009-09-15 22:57:34 +02001276 if (!check_gamma5_errata(attrs->gamma5))
1277 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001278
Daniel Vetter02e792f2009-09-15 22:57:34 +02001279 return 0;
1280}
1281
Chris Wilson1ee8da62016-05-12 12:43:23 +01001282int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data,
1283 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001284{
1285 struct drm_intel_overlay_attrs *attrs = data;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001286 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001287 struct intel_overlay *overlay;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001288 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001289 int ret;
1290
Daniel Vetter02e792f2009-09-15 22:57:34 +02001291 overlay = dev_priv->overlay;
1292 if (!overlay) {
1293 DRM_DEBUG("userspace bug: no overlay\n");
1294 return -ENODEV;
1295 }
1296
Daniel Vettera0e99e62012-12-02 01:05:46 +01001297 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001298 mutex_lock(&dev->struct_mutex);
1299
Chris Wilson60fc3322010-08-12 10:44:45 +01001300 ret = -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001301 if (!(attrs->flags & I915_OVERLAY_UPDATE_ATTRS)) {
Chris Wilson60fc3322010-08-12 10:44:45 +01001302 attrs->color_key = overlay->color_key;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001303 attrs->brightness = overlay->brightness;
Chris Wilson60fc3322010-08-12 10:44:45 +01001304 attrs->contrast = overlay->contrast;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001305 attrs->saturation = overlay->saturation;
1306
Chris Wilson1ee8da62016-05-12 12:43:23 +01001307 if (!IS_GEN2(dev_priv)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001308 attrs->gamma0 = I915_READ(OGAMC0);
1309 attrs->gamma1 = I915_READ(OGAMC1);
1310 attrs->gamma2 = I915_READ(OGAMC2);
1311 attrs->gamma3 = I915_READ(OGAMC3);
1312 attrs->gamma4 = I915_READ(OGAMC4);
1313 attrs->gamma5 = I915_READ(OGAMC5);
1314 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001315 } else {
Chris Wilson60fc3322010-08-12 10:44:45 +01001316 if (attrs->brightness < -128 || attrs->brightness > 127)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001317 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001318 if (attrs->contrast > 255)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001319 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001320 if (attrs->saturation > 1023)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001321 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001322
Chris Wilson60fc3322010-08-12 10:44:45 +01001323 overlay->color_key = attrs->color_key;
1324 overlay->brightness = attrs->brightness;
1325 overlay->contrast = attrs->contrast;
1326 overlay->saturation = attrs->saturation;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001327
Chris Wilson8d74f652010-08-12 10:35:26 +01001328 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001329 if (!regs) {
1330 ret = -ENOMEM;
1331 goto out_unlock;
1332 }
1333
1334 update_reg_attrs(overlay, regs);
1335
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001336 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001337
1338 if (attrs->flags & I915_OVERLAY_UPDATE_GAMMA) {
Chris Wilson1ee8da62016-05-12 12:43:23 +01001339 if (IS_GEN2(dev_priv))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001340 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001341
1342 if (overlay->active) {
1343 ret = -EBUSY;
1344 goto out_unlock;
1345 }
1346
1347 ret = check_gamma(attrs);
Chris Wilson60fc3322010-08-12 10:44:45 +01001348 if (ret)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001349 goto out_unlock;
1350
1351 I915_WRITE(OGAMC0, attrs->gamma0);
1352 I915_WRITE(OGAMC1, attrs->gamma1);
1353 I915_WRITE(OGAMC2, attrs->gamma2);
1354 I915_WRITE(OGAMC3, attrs->gamma3);
1355 I915_WRITE(OGAMC4, attrs->gamma4);
1356 I915_WRITE(OGAMC5, attrs->gamma5);
1357 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001358 }
Chris Wilsonea9da4e2015-04-02 10:35:08 +01001359 overlay->color_key_enabled = (attrs->flags & I915_OVERLAY_DISABLE_DEST_COLORKEY) == 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001360
Chris Wilson60fc3322010-08-12 10:44:45 +01001361 ret = 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001362out_unlock:
1363 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001364 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001365
1366 return ret;
1367}
1368
Chris Wilson1ee8da62016-05-12 12:43:23 +01001369void intel_setup_overlay(struct drm_i915_private *dev_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001370{
Daniel Vetter02e792f2009-09-15 22:57:34 +02001371 struct intel_overlay *overlay;
Chris Wilson05394f32010-11-08 19:18:58 +00001372 struct drm_i915_gem_object *reg_bo;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001373 struct overlay_registers __iomem *regs;
Chris Wilson058d88c2016-08-15 10:49:06 +01001374 struct i915_vma *vma = NULL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001375 int ret;
1376
Chris Wilson1ee8da62016-05-12 12:43:23 +01001377 if (!HAS_OVERLAY(dev_priv))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001378 return;
1379
Daniel Vetterb14c5672013-09-19 12:18:32 +02001380 overlay = kzalloc(sizeof(*overlay), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001381 if (!overlay)
1382 return;
Chris Wilson79d24272011-06-28 11:27:47 +01001383
Chris Wilson91c8a322016-07-05 10:40:23 +01001384 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilson79d24272011-06-28 11:27:47 +01001385 if (WARN_ON(dev_priv->overlay))
1386 goto out_free;
1387
Chris Wilson1ee8da62016-05-12 12:43:23 +01001388 overlay->i915 = dev_priv;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001389
Daniel Vetterf63a4842013-07-23 19:24:38 +02001390 reg_bo = NULL;
Chris Wilson1ee8da62016-05-12 12:43:23 +01001391 if (!OVERLAY_NEEDS_PHYSICAL(dev_priv))
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00001392 reg_bo = i915_gem_object_create_stolen(dev_priv, PAGE_SIZE);
Chris Wilson80405132012-11-15 11:32:29 +00001393 if (reg_bo == NULL)
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +00001394 reg_bo = i915_gem_object_create(dev_priv, PAGE_SIZE);
Chris Wilsonfe3db792016-04-25 13:32:13 +01001395 if (IS_ERR(reg_bo))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001396 goto out_free;
Chris Wilson05394f32010-11-08 19:18:58 +00001397 overlay->reg_bo = reg_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001398
Chris Wilson1ee8da62016-05-12 12:43:23 +01001399 if (OVERLAY_NEEDS_PHYSICAL(dev_priv)) {
Chris Wilson00731152014-05-21 12:42:56 +01001400 ret = i915_gem_object_attach_phys(reg_bo, PAGE_SIZE);
Akshay Joshi0206e352011-08-16 15:34:10 -04001401 if (ret) {
1402 DRM_ERROR("failed to attach phys overlay regs\n");
1403 goto out_free_bo;
1404 }
Chris Wilson00731152014-05-21 12:42:56 +01001405 overlay->flip_addr = reg_bo->phys_handle->busaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001406 } else {
Chris Wilson058d88c2016-08-15 10:49:06 +01001407 vma = i915_gem_object_ggtt_pin(reg_bo, NULL,
Chris Wilsonde895082016-08-04 16:32:34 +01001408 0, PAGE_SIZE, PIN_MAPPABLE);
Chris Wilson058d88c2016-08-15 10:49:06 +01001409 if (IS_ERR(vma)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001410 DRM_ERROR("failed to pin overlay register bo\n");
Chris Wilson058d88c2016-08-15 10:49:06 +01001411 ret = PTR_ERR(vma);
Akshay Joshi0206e352011-08-16 15:34:10 -04001412 goto out_free_bo;
1413 }
Chris Wilsonbde13eb2016-08-15 10:49:07 +01001414 overlay->flip_addr = i915_ggtt_offset(vma);
Chris Wilson0ddc1282010-08-12 09:35:00 +01001415
1416 ret = i915_gem_object_set_to_gtt_domain(reg_bo, true);
1417 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001418 DRM_ERROR("failed to move overlay register bo into the GTT\n");
1419 goto out_unpin_bo;
1420 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001421 }
1422
1423 /* init all values */
1424 overlay->color_key = 0x0101fe;
Chris Wilsonea9da4e2015-04-02 10:35:08 +01001425 overlay->color_key_enabled = true;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001426 overlay->brightness = -19;
1427 overlay->contrast = 75;
1428 overlay->saturation = 146;
1429
Ville Syrjälä330afdb2016-12-21 16:45:47 +02001430 init_request_active(&overlay->last_flip, NULL);
1431
Chris Wilson8d74f652010-08-12 10:35:26 +01001432 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001433 if (!regs)
Chris Wilson79d24272011-06-28 11:27:47 +01001434 goto out_unpin_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001435
Ben Widawsky75020bc2012-04-16 14:07:43 -07001436 memset_io(regs, 0, sizeof(struct overlay_registers));
Daniel Vetter02e792f2009-09-15 22:57:34 +02001437 update_polyphase_filter(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001438 update_reg_attrs(overlay, regs);
1439
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001440 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001441
1442 dev_priv->overlay = overlay;
Chris Wilson91c8a322016-07-05 10:40:23 +01001443 mutex_unlock(&dev_priv->drm.struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001444 DRM_INFO("initialized overlay support\n");
1445 return;
1446
Chris Wilson0ddc1282010-08-12 09:35:00 +01001447out_unpin_bo:
Chris Wilson058d88c2016-08-15 10:49:06 +01001448 if (vma)
1449 i915_vma_unpin(vma);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001450out_free_bo:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01001451 i915_gem_object_put(reg_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001452out_free:
Chris Wilson91c8a322016-07-05 10:40:23 +01001453 mutex_unlock(&dev_priv->drm.struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001454 kfree(overlay);
1455 return;
1456}
1457
Chris Wilson1ee8da62016-05-12 12:43:23 +01001458void intel_cleanup_overlay(struct drm_i915_private *dev_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001459{
Chris Wilson62cf4e62010-08-12 10:50:36 +01001460 if (!dev_priv->overlay)
1461 return;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001462
Chris Wilson62cf4e62010-08-12 10:50:36 +01001463 /* The bo's should be free'd by the generic code already.
1464 * Furthermore modesetting teardown happens beforehand so the
1465 * hardware should be off already */
Ville Syrjälä77589f52015-03-31 10:37:22 +03001466 WARN_ON(dev_priv->overlay->active);
Chris Wilson62cf4e62010-08-12 10:50:36 +01001467
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001468 i915_gem_object_put(dev_priv->overlay->reg_bo);
Chris Wilson62cf4e62010-08-12 10:50:36 +01001469 kfree(dev_priv->overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001470}
Chris Wilson6ef3d422010-08-04 20:26:07 +01001471
Chris Wilson98a2f412016-10-12 10:05:18 +01001472#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
1473
Chris Wilson6ef3d422010-08-04 20:26:07 +01001474struct intel_overlay_error_state {
1475 struct overlay_registers regs;
1476 unsigned long base;
1477 u32 dovsta;
1478 u32 isr;
1479};
1480
Ben Widawsky75020bc2012-04-16 14:07:43 -07001481static struct overlay_registers __iomem *
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001482intel_overlay_map_regs_atomic(struct intel_overlay *overlay)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001483{
Chris Wilson1ee8da62016-05-12 12:43:23 +01001484 struct drm_i915_private *dev_priv = overlay->i915;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001485 struct overlay_registers __iomem *regs;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001486
Chris Wilson1ee8da62016-05-12 12:43:23 +01001487 if (OVERLAY_NEEDS_PHYSICAL(dev_priv))
Ben Widawsky75020bc2012-04-16 14:07:43 -07001488 /* Cast to make sparse happy, but it's wc memory anyway, so
1489 * equivalent to the wc io mapping on X86. */
1490 regs = (struct overlay_registers __iomem *)
Chris Wilson00731152014-05-21 12:42:56 +01001491 overlay->reg_bo->phys_handle->vaddr;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001492 else
Chris Wilsonf7bbe782016-08-19 16:54:27 +01001493 regs = io_mapping_map_atomic_wc(&dev_priv->ggtt.mappable,
Chris Wilsonda6ca032016-04-28 09:56:36 +01001494 overlay->flip_addr);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001495
1496 return regs;
1497}
1498
1499static void intel_overlay_unmap_regs_atomic(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001500 struct overlay_registers __iomem *regs)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001501{
Chris Wilson1ee8da62016-05-12 12:43:23 +01001502 if (!OVERLAY_NEEDS_PHYSICAL(overlay->i915))
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001503 io_mapping_unmap_atomic(regs);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001504}
1505
Chris Wilson6ef3d422010-08-04 20:26:07 +01001506struct intel_overlay_error_state *
Chris Wilsonc0336662016-05-06 15:40:21 +01001507intel_overlay_capture_error_state(struct drm_i915_private *dev_priv)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001508{
Chris Wilson6ef3d422010-08-04 20:26:07 +01001509 struct intel_overlay *overlay = dev_priv->overlay;
1510 struct intel_overlay_error_state *error;
1511 struct overlay_registers __iomem *regs;
1512
1513 if (!overlay || !overlay->active)
1514 return NULL;
1515
1516 error = kmalloc(sizeof(*error), GFP_ATOMIC);
1517 if (error == NULL)
1518 return NULL;
1519
1520 error->dovsta = I915_READ(DOVSTA);
1521 error->isr = I915_READ(ISR);
Chris Wilsonda6ca032016-04-28 09:56:36 +01001522 error->base = overlay->flip_addr;
Chris Wilson6ef3d422010-08-04 20:26:07 +01001523
1524 regs = intel_overlay_map_regs_atomic(overlay);
1525 if (!regs)
1526 goto err;
1527
1528 memcpy_fromio(&error->regs, regs, sizeof(struct overlay_registers));
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001529 intel_overlay_unmap_regs_atomic(overlay, regs);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001530
1531 return error;
1532
1533err:
1534 kfree(error);
1535 return NULL;
1536}
1537
1538void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001539intel_overlay_print_error_state(struct drm_i915_error_state_buf *m,
1540 struct intel_overlay_error_state *error)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001541{
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001542 i915_error_printf(m, "Overlay, status: 0x%08x, interrupt: 0x%08x\n",
1543 error->dovsta, error->isr);
1544 i915_error_printf(m, " Register file at 0x%08lx:\n",
1545 error->base);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001546
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001547#define P(x) i915_error_printf(m, " " #x ": 0x%08x\n", error->regs.x)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001548 P(OBUF_0Y);
1549 P(OBUF_1Y);
1550 P(OBUF_0U);
1551 P(OBUF_0V);
1552 P(OBUF_1U);
1553 P(OBUF_1V);
1554 P(OSTRIDE);
1555 P(YRGB_VPH);
1556 P(UV_VPH);
1557 P(HORZ_PH);
1558 P(INIT_PHS);
1559 P(DWINPOS);
1560 P(DWINSZ);
1561 P(SWIDTH);
1562 P(SWIDTHSW);
1563 P(SHEIGHT);
1564 P(YRGBSCALE);
1565 P(UVSCALE);
1566 P(OCLRC0);
1567 P(OCLRC1);
1568 P(DCLRKV);
1569 P(DCLRKM);
1570 P(SCLRKVH);
1571 P(SCLRKVL);
1572 P(SCLRKEN);
1573 P(OCONFIG);
1574 P(OCMD);
1575 P(OSTART_0Y);
1576 P(OSTART_1Y);
1577 P(OSTART_0U);
1578 P(OSTART_0V);
1579 P(OSTART_1U);
1580 P(OSTART_1V);
1581 P(OTILEOFF_0Y);
1582 P(OTILEOFF_1Y);
1583 P(OTILEOFF_0U);
1584 P(OTILEOFF_0V);
1585 P(OTILEOFF_1U);
1586 P(OTILEOFF_1V);
1587 P(FASTHSCALE);
1588 P(UVSCALEV);
1589#undef P
1590}
Chris Wilson98a2f412016-10-12 10:05:18 +01001591
1592#endif