blob: fd0e4dac7cc16f35ff658466bc107a7296407354 [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));
219 overlay->last_flip.retire = retire;
220 i915_gem_active_set(&overlay->last_flip, req);
221 i915_add_request(req);
222}
223
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100224static int intel_overlay_do_wait_request(struct intel_overlay *overlay,
John Harrisondad540c2015-05-29 17:43:47 +0100225 struct drm_i915_gem_request *req,
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100226 i915_gem_retire_fn retire)
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100227{
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100228 intel_overlay_submit_request(overlay, req, retire);
229 return i915_gem_active_retire(&overlay->last_flip,
230 &overlay->i915->drm.struct_mutex);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100231}
232
Chris Wilson8e637172016-08-02 22:50:26 +0100233static struct drm_i915_gem_request *alloc_request(struct intel_overlay *overlay)
234{
235 struct drm_i915_private *dev_priv = overlay->i915;
Akash Goel3b3f1652016-10-13 22:44:48 +0530236 struct intel_engine_cs *engine = dev_priv->engine[RCS];
Chris Wilson8e637172016-08-02 22:50:26 +0100237
238 return i915_gem_request_alloc(engine, dev_priv->kernel_context);
239}
240
Daniel Vetter02e792f2009-09-15 22:57:34 +0200241/* overlay needs to be disable in OCMD reg */
242static int intel_overlay_on(struct intel_overlay *overlay)
243{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100244 struct drm_i915_private *dev_priv = overlay->i915;
John Harrisondad540c2015-05-29 17:43:47 +0100245 struct drm_i915_gem_request *req;
Chris Wilson7e37f882016-08-02 22:50:21 +0100246 struct intel_ring *ring;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200247 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200248
Ville Syrjälä77589f52015-03-31 10:37:22 +0300249 WARN_ON(overlay->active);
Chris Wilson1ee8da62016-05-12 12:43:23 +0100250 WARN_ON(IS_I830(dev_priv) && !(dev_priv->quirks & QUIRK_PIPEA_FORCE));
Chris Wilson106dada2010-07-16 17:13:01 +0100251
Chris Wilson8e637172016-08-02 22:50:26 +0100252 req = alloc_request(overlay);
Dave Gordon26827082016-01-19 19:02:53 +0000253 if (IS_ERR(req))
254 return PTR_ERR(req);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100255
John Harrison5fb9de12015-05-29 17:44:07 +0100256 ret = intel_ring_begin(req, 4);
John Harrisondad540c2015-05-29 17:43:47 +0100257 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100258 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100259 return ret;
260 }
261
Ville Syrjälä1c7c4302015-03-31 10:37:24 +0300262 overlay->active = true;
263
Chris Wilson1dae2df2016-08-02 22:50:19 +0100264 ring = req->ring;
Chris Wilsonb5321f32016-08-02 22:50:18 +0100265 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_ON);
266 intel_ring_emit(ring, overlay->flip_addr | OFC_UPDATE);
267 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
268 intel_ring_emit(ring, MI_NOOP);
269 intel_ring_advance(ring);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200270
John Harrisondad540c2015-05-29 17:43:47 +0100271 return intel_overlay_do_wait_request(overlay, req, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200272}
273
274/* overlay needs to be enabled in OCMD reg */
Chris Wilson8dc5d142010-08-12 12:36:12 +0100275static int intel_overlay_continue(struct intel_overlay *overlay,
276 bool load_polyphase_filter)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200277{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100278 struct drm_i915_private *dev_priv = overlay->i915;
John Harrisondad540c2015-05-29 17:43:47 +0100279 struct drm_i915_gem_request *req;
Chris Wilson7e37f882016-08-02 22:50:21 +0100280 struct intel_ring *ring;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200281 u32 flip_addr = overlay->flip_addr;
282 u32 tmp;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100283 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200284
Ville Syrjälä77589f52015-03-31 10:37:22 +0300285 WARN_ON(!overlay->active);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200286
287 if (load_polyphase_filter)
288 flip_addr |= OFC_UPDATE;
289
290 /* check for underruns */
291 tmp = I915_READ(DOVSTA);
292 if (tmp & (1 << 17))
293 DRM_DEBUG("overlay underrun, DOVSTA: %x\n", tmp);
294
Chris Wilson8e637172016-08-02 22:50:26 +0100295 req = alloc_request(overlay);
Dave Gordon26827082016-01-19 19:02:53 +0000296 if (IS_ERR(req))
297 return PTR_ERR(req);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100298
John Harrison5fb9de12015-05-29 17:44:07 +0100299 ret = intel_ring_begin(req, 2);
John Harrisondad540c2015-05-29 17:43:47 +0100300 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100301 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100302 return ret;
303 }
304
Chris Wilson1dae2df2016-08-02 22:50:19 +0100305 ring = req->ring;
Chris Wilsonb5321f32016-08-02 22:50:18 +0100306 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
307 intel_ring_emit(ring, flip_addr);
308 intel_ring_advance(ring);
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200309
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100310 intel_overlay_submit_request(overlay, req, NULL);
John Harrisonbf7dc5b2015-05-29 17:43:24 +0100311
312 return 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200313}
314
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100315static void intel_overlay_release_old_vid_tail(struct i915_gem_active *active,
316 struct drm_i915_gem_request *req)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200317{
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100318 struct intel_overlay *overlay =
319 container_of(active, typeof(*overlay), last_flip);
Chris Wilson9b3b7842016-08-15 10:49:01 +0100320 struct i915_vma *vma;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200321
Chris Wilson9b3b7842016-08-15 10:49:01 +0100322 vma = fetch_and_zero(&overlay->old_vma);
323 if (WARN_ON(!vma))
324 return;
325
326 i915_gem_track_fb(vma->obj, NULL,
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100327 INTEL_FRONTBUFFER_OVERLAY(overlay->crtc->pipe));
328
Chris Wilson058d88c2016-08-15 10:49:06 +0100329 i915_gem_object_unpin_from_display_plane(vma);
Chris Wilson9b3b7842016-08-15 10:49:01 +0100330 i915_vma_put(vma);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200331}
332
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100333static void intel_overlay_off_tail(struct i915_gem_active *active,
334 struct drm_i915_gem_request *req)
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200335{
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100336 struct intel_overlay *overlay =
337 container_of(active, typeof(*overlay), last_flip);
Chris Wilson9b3b7842016-08-15 10:49:01 +0100338 struct i915_vma *vma;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200339
340 /* never have the overlay hw on without showing a frame */
Chris Wilson9b3b7842016-08-15 10:49:01 +0100341 vma = fetch_and_zero(&overlay->vma);
342 if (WARN_ON(!vma))
Ville Syrjälä77589f52015-03-31 10:37:22 +0300343 return;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200344
Chris Wilson058d88c2016-08-15 10:49:06 +0100345 i915_gem_object_unpin_from_display_plane(vma);
Chris Wilson9b3b7842016-08-15 10:49:01 +0100346 i915_vma_put(vma);
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200347
348 overlay->crtc->overlay = NULL;
349 overlay->crtc = NULL;
Ville Syrjälä209c2a52015-03-31 10:37:23 +0300350 overlay->active = false;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200351}
352
Daniel Vetter02e792f2009-09-15 22:57:34 +0200353/* overlay needs to be disabled in OCMD reg */
Chris Wilsonce453d82011-02-21 14:43:56 +0000354static int intel_overlay_off(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200355{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100356 struct drm_i915_private *dev_priv = overlay->i915;
John Harrisondad540c2015-05-29 17:43:47 +0100357 struct drm_i915_gem_request *req;
Chris Wilson7e37f882016-08-02 22:50:21 +0100358 struct intel_ring *ring;
Chris Wilson8dc5d142010-08-12 12:36:12 +0100359 u32 flip_addr = overlay->flip_addr;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100360 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200361
Ville Syrjälä77589f52015-03-31 10:37:22 +0300362 WARN_ON(!overlay->active);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200363
364 /* According to intel docs the overlay hw may hang (when switching
365 * off) without loading the filter coeffs. It is however unclear whether
366 * this applies to the disabling of the overlay or to the switching off
367 * of the hw. Do it in both cases */
368 flip_addr |= OFC_UPDATE;
369
Chris Wilson8e637172016-08-02 22:50:26 +0100370 req = alloc_request(overlay);
Dave Gordon26827082016-01-19 19:02:53 +0000371 if (IS_ERR(req))
372 return PTR_ERR(req);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100373
John Harrison5fb9de12015-05-29 17:44:07 +0100374 ret = intel_ring_begin(req, 6);
John Harrisondad540c2015-05-29 17:43:47 +0100375 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100376 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100377 return ret;
378 }
379
Chris Wilson1dae2df2016-08-02 22:50:19 +0100380 ring = req->ring;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200381 /* wait for overlay to go idle */
Chris Wilsonb5321f32016-08-02 22:50:18 +0100382 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
383 intel_ring_emit(ring, flip_addr);
384 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Chris Wilson722506f2010-08-12 09:28:50 +0100385 /* turn overlay off */
Chris Wilson1ee8da62016-05-12 12:43:23 +0100386 if (IS_I830(dev_priv)) {
Daniel Vettera9193982012-10-22 12:55:55 +0200387 /* Workaround: Don't disable the overlay fully, since otherwise
388 * it dies on the next OVERLAY_ON cmd. */
Chris Wilsonb5321f32016-08-02 22:50:18 +0100389 intel_ring_emit(ring, MI_NOOP);
390 intel_ring_emit(ring, MI_NOOP);
391 intel_ring_emit(ring, MI_NOOP);
Daniel Vettera9193982012-10-22 12:55:55 +0200392 } else {
Chris Wilsonb5321f32016-08-02 22:50:18 +0100393 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_OFF);
394 intel_ring_emit(ring, flip_addr);
395 intel_ring_emit(ring,
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000396 MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Daniel Vettera9193982012-10-22 12:55:55 +0200397 }
Chris Wilsonb5321f32016-08-02 22:50:18 +0100398 intel_ring_advance(ring);
Chris Wilson722506f2010-08-12 09:28:50 +0100399
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100400 return intel_overlay_do_wait_request(overlay, req,
401 intel_overlay_off_tail);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200402}
403
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200404/* recover from an interruption due to a signal
405 * We have to be careful not to repeat work forever an make forward progess. */
Chris Wilsonce453d82011-02-21 14:43:56 +0000406static int intel_overlay_recover_from_interrupt(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200407{
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100408 return i915_gem_active_retire(&overlay->last_flip,
409 &overlay->i915->drm.struct_mutex);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200410}
411
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200412/* Wait for pending overlay flip and release old frame.
413 * Needs to be called before the overlay register are changed
Chris Wilson8d74f652010-08-12 10:35:26 +0100414 * via intel_overlay_(un)map_regs
415 */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200416static int intel_overlay_release_old_vid(struct intel_overlay *overlay)
417{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100418 struct drm_i915_private *dev_priv = overlay->i915;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200419 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200420
Chris Wilson91c8a322016-07-05 10:40:23 +0100421 lockdep_assert_held(&dev_priv->drm.struct_mutex);
Ville Syrjälä1362b772014-11-26 17:07:29 +0200422
Chris Wilson5cd68c92010-08-12 12:21:54 +0100423 /* Only wait if there is actually an old frame to release to
424 * guarantee forward progress.
425 */
Chris Wilson9b3b7842016-08-15 10:49:01 +0100426 if (!overlay->old_vma)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200427 return 0;
428
Chris Wilson5cd68c92010-08-12 12:21:54 +0100429 if (I915_READ(ISR) & I915_OVERLAY_PLANE_FLIP_PENDING_INTERRUPT) {
430 /* synchronous slowpath */
John Harrisondad540c2015-05-29 17:43:47 +0100431 struct drm_i915_gem_request *req;
Chris Wilson7e37f882016-08-02 22:50:21 +0100432 struct intel_ring *ring;
John Harrisondad540c2015-05-29 17:43:47 +0100433
Chris Wilson8e637172016-08-02 22:50:26 +0100434 req = alloc_request(overlay);
Dave Gordon26827082016-01-19 19:02:53 +0000435 if (IS_ERR(req))
436 return PTR_ERR(req);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100437
John Harrison5fb9de12015-05-29 17:44:07 +0100438 ret = intel_ring_begin(req, 2);
John Harrisondad540c2015-05-29 17:43:47 +0100439 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100440 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100441 return ret;
442 }
443
Chris Wilson1dae2df2016-08-02 22:50:19 +0100444 ring = req->ring;
Chris Wilsonb5321f32016-08-02 22:50:18 +0100445 intel_ring_emit(ring,
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000446 MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Chris Wilsonb5321f32016-08-02 22:50:18 +0100447 intel_ring_emit(ring, MI_NOOP);
448 intel_ring_advance(ring);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200449
John Harrisondad540c2015-05-29 17:43:47 +0100450 ret = intel_overlay_do_wait_request(overlay, req,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100451 intel_overlay_release_old_vid_tail);
Chris Wilson5cd68c92010-08-12 12:21:54 +0100452 if (ret)
453 return ret;
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100454 } else
455 intel_overlay_release_old_vid_tail(&overlay->last_flip, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200456
457 return 0;
458}
459
Ville Syrjälä1362b772014-11-26 17:07:29 +0200460void intel_overlay_reset(struct drm_i915_private *dev_priv)
461{
462 struct intel_overlay *overlay = dev_priv->overlay;
463
464 if (!overlay)
465 return;
466
467 intel_overlay_release_old_vid(overlay);
468
Ville Syrjälä1362b772014-11-26 17:07:29 +0200469 overlay->old_xscale = 0;
470 overlay->old_yscale = 0;
471 overlay->crtc = NULL;
472 overlay->active = false;
473}
474
Daniel Vetter02e792f2009-09-15 22:57:34 +0200475struct put_image_params {
476 int format;
477 short dst_x;
478 short dst_y;
479 short dst_w;
480 short dst_h;
481 short src_w;
482 short src_scan_h;
483 short src_scan_w;
484 short src_h;
485 short stride_Y;
486 short stride_UV;
487 int offset_Y;
488 int offset_U;
489 int offset_V;
490};
491
492static int packed_depth_bytes(u32 format)
493{
494 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100495 case I915_OVERLAY_YUV422:
496 return 4;
497 case I915_OVERLAY_YUV411:
498 /* return 6; not implemented */
499 default:
500 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200501 }
502}
503
504static int packed_width_bytes(u32 format, short width)
505{
506 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100507 case I915_OVERLAY_YUV422:
508 return width << 1;
509 default:
510 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200511 }
512}
513
514static int uv_hsubsampling(u32 format)
515{
516 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100517 case I915_OVERLAY_YUV422:
518 case I915_OVERLAY_YUV420:
519 return 2;
520 case I915_OVERLAY_YUV411:
521 case I915_OVERLAY_YUV410:
522 return 4;
523 default:
524 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200525 }
526}
527
528static int uv_vsubsampling(u32 format)
529{
530 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100531 case I915_OVERLAY_YUV420:
532 case I915_OVERLAY_YUV410:
533 return 2;
534 case I915_OVERLAY_YUV422:
535 case I915_OVERLAY_YUV411:
536 return 1;
537 default:
538 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200539 }
540}
541
Chris Wilson1ee8da62016-05-12 12:43:23 +0100542static u32 calc_swidthsw(struct drm_i915_private *dev_priv, u32 offset, u32 width)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200543{
544 u32 mask, shift, ret;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100545 if (IS_GEN2(dev_priv)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +0200546 mask = 0x1f;
547 shift = 5;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100548 } else {
549 mask = 0x3f;
550 shift = 6;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200551 }
552 ret = ((offset + width + mask) >> shift) - (offset >> shift);
Chris Wilson1ee8da62016-05-12 12:43:23 +0100553 if (!IS_GEN2(dev_priv))
Daniel Vetter02e792f2009-09-15 22:57:34 +0200554 ret <<= 1;
Akshay Joshi0206e352011-08-16 15:34:10 -0400555 ret -= 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200556 return ret << 2;
557}
558
559static const u16 y_static_hcoeffs[N_HORIZ_Y_TAPS * N_PHASES] = {
560 0x3000, 0xb4a0, 0x1930, 0x1920, 0xb4a0,
561 0x3000, 0xb500, 0x19d0, 0x1880, 0xb440,
562 0x3000, 0xb540, 0x1a88, 0x2f80, 0xb3e0,
563 0x3000, 0xb580, 0x1b30, 0x2e20, 0xb380,
564 0x3000, 0xb5c0, 0x1bd8, 0x2cc0, 0xb320,
565 0x3020, 0xb5e0, 0x1c60, 0x2b80, 0xb2c0,
566 0x3020, 0xb5e0, 0x1cf8, 0x2a20, 0xb260,
567 0x3020, 0xb5e0, 0x1d80, 0x28e0, 0xb200,
568 0x3020, 0xb5c0, 0x1e08, 0x3f40, 0xb1c0,
569 0x3020, 0xb580, 0x1e78, 0x3ce0, 0xb160,
570 0x3040, 0xb520, 0x1ed8, 0x3aa0, 0xb120,
571 0x3040, 0xb4a0, 0x1f30, 0x3880, 0xb0e0,
572 0x3040, 0xb400, 0x1f78, 0x3680, 0xb0a0,
573 0x3020, 0xb340, 0x1fb8, 0x34a0, 0xb060,
574 0x3020, 0xb240, 0x1fe0, 0x32e0, 0xb040,
575 0x3020, 0xb140, 0x1ff8, 0x3160, 0xb020,
Chris Wilson722506f2010-08-12 09:28:50 +0100576 0xb000, 0x3000, 0x0800, 0x3000, 0xb000
577};
578
Daniel Vetter02e792f2009-09-15 22:57:34 +0200579static const u16 uv_static_hcoeffs[N_HORIZ_UV_TAPS * N_PHASES] = {
580 0x3000, 0x1800, 0x1800, 0xb000, 0x18d0, 0x2e60,
581 0xb000, 0x1990, 0x2ce0, 0xb020, 0x1a68, 0x2b40,
582 0xb040, 0x1b20, 0x29e0, 0xb060, 0x1bd8, 0x2880,
583 0xb080, 0x1c88, 0x3e60, 0xb0a0, 0x1d28, 0x3c00,
584 0xb0c0, 0x1db8, 0x39e0, 0xb0e0, 0x1e40, 0x37e0,
585 0xb100, 0x1eb8, 0x3620, 0xb100, 0x1f18, 0x34a0,
586 0xb100, 0x1f68, 0x3360, 0xb0e0, 0x1fa8, 0x3240,
587 0xb0c0, 0x1fe0, 0x3140, 0xb060, 0x1ff0, 0x30a0,
Chris Wilson722506f2010-08-12 09:28:50 +0100588 0x3000, 0x0800, 0x3000
589};
Daniel Vetter02e792f2009-09-15 22:57:34 +0200590
Ben Widawsky75020bc2012-04-16 14:07:43 -0700591static void update_polyphase_filter(struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200592{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700593 memcpy_toio(regs->Y_HCOEFS, y_static_hcoeffs, sizeof(y_static_hcoeffs));
594 memcpy_toio(regs->UV_HCOEFS, uv_static_hcoeffs,
595 sizeof(uv_static_hcoeffs));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200596}
597
598static bool update_scaling_factors(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700599 struct overlay_registers __iomem *regs,
Daniel Vetter02e792f2009-09-15 22:57:34 +0200600 struct put_image_params *params)
601{
602 /* fixed point with a 12 bit shift */
603 u32 xscale, yscale, xscale_UV, yscale_UV;
604#define FP_SHIFT 12
605#define FRACT_MASK 0xfff
606 bool scale_changed = false;
607 int uv_hscale = uv_hsubsampling(params->format);
608 int uv_vscale = uv_vsubsampling(params->format);
609
610 if (params->dst_w > 1)
611 xscale = ((params->src_scan_w - 1) << FP_SHIFT)
612 /(params->dst_w);
613 else
614 xscale = 1 << FP_SHIFT;
615
616 if (params->dst_h > 1)
617 yscale = ((params->src_scan_h - 1) << FP_SHIFT)
618 /(params->dst_h);
619 else
620 yscale = 1 << FP_SHIFT;
621
622 /*if (params->format & I915_OVERLAY_YUV_PLANAR) {*/
Chris Wilson722506f2010-08-12 09:28:50 +0100623 xscale_UV = xscale/uv_hscale;
624 yscale_UV = yscale/uv_vscale;
625 /* make the Y scale to UV scale ratio an exact multiply */
626 xscale = xscale_UV * uv_hscale;
627 yscale = yscale_UV * uv_vscale;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200628 /*} else {
Chris Wilson722506f2010-08-12 09:28:50 +0100629 xscale_UV = 0;
630 yscale_UV = 0;
631 }*/
Daniel Vetter02e792f2009-09-15 22:57:34 +0200632
633 if (xscale != overlay->old_xscale || yscale != overlay->old_yscale)
634 scale_changed = true;
635 overlay->old_xscale = xscale;
636 overlay->old_yscale = yscale;
637
Ben Widawsky75020bc2012-04-16 14:07:43 -0700638 iowrite32(((yscale & FRACT_MASK) << 20) |
639 ((xscale >> FP_SHIFT) << 16) |
640 ((xscale & FRACT_MASK) << 3),
641 &regs->YRGBSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100642
Ben Widawsky75020bc2012-04-16 14:07:43 -0700643 iowrite32(((yscale_UV & FRACT_MASK) << 20) |
644 ((xscale_UV >> FP_SHIFT) << 16) |
645 ((xscale_UV & FRACT_MASK) << 3),
646 &regs->UVSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100647
Ben Widawsky75020bc2012-04-16 14:07:43 -0700648 iowrite32((((yscale >> FP_SHIFT) << 16) |
649 ((yscale_UV >> FP_SHIFT) << 0)),
650 &regs->UVSCALEV);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200651
652 if (scale_changed)
653 update_polyphase_filter(regs);
654
655 return scale_changed;
656}
657
658static void update_colorkey(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700659 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200660{
661 u32 key = overlay->color_key;
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100662 u32 flags;
663
664 flags = 0;
665 if (overlay->color_key_enabled)
666 flags |= DST_KEY_ENABLE;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100667
Matt Roperf4510a22014-04-01 15:22:40 -0700668 switch (overlay->crtc->base.primary->fb->bits_per_pixel) {
Chris Wilson722506f2010-08-12 09:28:50 +0100669 case 8:
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100670 key = 0;
671 flags |= CLK_RGB8I_MASK;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100672 break;
673
Chris Wilson722506f2010-08-12 09:28:50 +0100674 case 16:
Matt Roperf4510a22014-04-01 15:22:40 -0700675 if (overlay->crtc->base.primary->fb->depth == 15) {
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100676 key = RGB15_TO_COLORKEY(key);
677 flags |= CLK_RGB15_MASK;
Chris Wilson722506f2010-08-12 09:28:50 +0100678 } else {
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100679 key = RGB16_TO_COLORKEY(key);
680 flags |= CLK_RGB16_MASK;
Chris Wilson722506f2010-08-12 09:28:50 +0100681 }
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100682 break;
683
Chris Wilson722506f2010-08-12 09:28:50 +0100684 case 24:
685 case 32:
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100686 flags |= CLK_RGB24_MASK;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100687 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200688 }
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100689
690 iowrite32(key, &regs->DCLRKV);
691 iowrite32(flags, &regs->DCLRKM);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200692}
693
694static u32 overlay_cmd_reg(struct put_image_params *params)
695{
696 u32 cmd = OCMD_ENABLE | OCMD_BUF_TYPE_FRAME | OCMD_BUFFER0;
697
698 if (params->format & I915_OVERLAY_YUV_PLANAR) {
699 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100700 case I915_OVERLAY_YUV422:
701 cmd |= OCMD_YUV_422_PLANAR;
702 break;
703 case I915_OVERLAY_YUV420:
704 cmd |= OCMD_YUV_420_PLANAR;
705 break;
706 case I915_OVERLAY_YUV411:
707 case I915_OVERLAY_YUV410:
708 cmd |= OCMD_YUV_410_PLANAR;
709 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200710 }
711 } else { /* YUV packed */
712 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100713 case I915_OVERLAY_YUV422:
714 cmd |= OCMD_YUV_422_PACKED;
715 break;
716 case I915_OVERLAY_YUV411:
717 cmd |= OCMD_YUV_411_PACKED;
718 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200719 }
720
721 switch (params->format & I915_OVERLAY_SWAP_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100722 case I915_OVERLAY_NO_SWAP:
723 break;
724 case I915_OVERLAY_UV_SWAP:
725 cmd |= OCMD_UV_SWAP;
726 break;
727 case I915_OVERLAY_Y_SWAP:
728 cmd |= OCMD_Y_SWAP;
729 break;
730 case I915_OVERLAY_Y_AND_UV_SWAP:
731 cmd |= OCMD_Y_AND_UV_SWAP;
732 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200733 }
734 }
735
736 return cmd;
737}
738
Chris Wilson5fe82c52010-08-12 12:38:21 +0100739static int intel_overlay_do_put_image(struct intel_overlay *overlay,
Chris Wilson05394f32010-11-08 19:18:58 +0000740 struct drm_i915_gem_object *new_bo,
Chris Wilson5fe82c52010-08-12 12:38:21 +0100741 struct put_image_params *params)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200742{
743 int ret, tmp_width;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700744 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200745 bool scale_changed = false;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100746 struct drm_i915_private *dev_priv = overlay->i915;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700747 u32 swidth, swidthsw, sheight, ostride;
Daniel Vettera071fa02014-06-18 23:28:09 +0200748 enum pipe pipe = overlay->crtc->pipe;
Chris Wilson9b3b7842016-08-15 10:49:01 +0100749 struct i915_vma *vma;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200750
Chris Wilson91c8a322016-07-05 10:40:23 +0100751 lockdep_assert_held(&dev_priv->drm.struct_mutex);
752 WARN_ON(!drm_modeset_is_locked(&dev_priv->drm.mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200753
Daniel Vetter02e792f2009-09-15 22:57:34 +0200754 ret = intel_overlay_release_old_vid(overlay);
755 if (ret != 0)
756 return ret;
757
Chris Wilson058d88c2016-08-15 10:49:06 +0100758 vma = i915_gem_object_pin_to_display_plane(new_bo, 0,
Tvrtko Ursuline6617332015-03-23 11:10:33 +0000759 &i915_ggtt_view_normal);
Chris Wilson058d88c2016-08-15 10:49:06 +0100760 if (IS_ERR(vma))
761 return PTR_ERR(vma);
Chris Wilson9b3b7842016-08-15 10:49:01 +0100762
Chris Wilson49ef5292016-08-18 17:17:00 +0100763 ret = i915_vma_put_fence(vma);
Chris Wilsond9e86c02010-11-10 16:40:20 +0000764 if (ret)
765 goto out_unpin;
766
Daniel Vetter02e792f2009-09-15 22:57:34 +0200767 if (!overlay->active) {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700768 u32 oconfig;
Chris Wilson8d74f652010-08-12 10:35:26 +0100769 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200770 if (!regs) {
771 ret = -ENOMEM;
772 goto out_unpin;
773 }
Ben Widawsky75020bc2012-04-16 14:07:43 -0700774 oconfig = OCONF_CC_OUT_8BIT;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100775 if (IS_GEN4(dev_priv))
Ben Widawsky75020bc2012-04-16 14:07:43 -0700776 oconfig |= OCONF_CSC_MODE_BT709;
Daniel Vettera071fa02014-06-18 23:28:09 +0200777 oconfig |= pipe == 0 ?
Daniel Vetter02e792f2009-09-15 22:57:34 +0200778 OCONF_PIPE_A : OCONF_PIPE_B;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700779 iowrite32(oconfig, &regs->OCONFIG);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100780 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200781
782 ret = intel_overlay_on(overlay);
783 if (ret != 0)
784 goto out_unpin;
785 }
786
Chris Wilson8d74f652010-08-12 10:35:26 +0100787 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200788 if (!regs) {
789 ret = -ENOMEM;
790 goto out_unpin;
791 }
792
Ben Widawsky75020bc2012-04-16 14:07:43 -0700793 iowrite32((params->dst_y << 16) | params->dst_x, &regs->DWINPOS);
794 iowrite32((params->dst_h << 16) | params->dst_w, &regs->DWINSZ);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200795
796 if (params->format & I915_OVERLAY_YUV_PACKED)
797 tmp_width = packed_width_bytes(params->format, params->src_w);
798 else
799 tmp_width = params->src_w;
800
Ben Widawsky75020bc2012-04-16 14:07:43 -0700801 swidth = params->src_w;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100802 swidthsw = calc_swidthsw(dev_priv, params->offset_Y, tmp_width);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700803 sheight = params->src_h;
Chris Wilsonbde13eb2016-08-15 10:49:07 +0100804 iowrite32(i915_ggtt_offset(vma) + params->offset_Y, &regs->OBUF_0Y);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700805 ostride = params->stride_Y;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200806
807 if (params->format & I915_OVERLAY_YUV_PLANAR) {
808 int uv_hscale = uv_hsubsampling(params->format);
809 int uv_vscale = uv_vsubsampling(params->format);
810 u32 tmp_U, tmp_V;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700811 swidth |= (params->src_w/uv_hscale) << 16;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100812 tmp_U = calc_swidthsw(dev_priv, params->offset_U,
Chris Wilson722506f2010-08-12 09:28:50 +0100813 params->src_w/uv_hscale);
Chris Wilson1ee8da62016-05-12 12:43:23 +0100814 tmp_V = calc_swidthsw(dev_priv, params->offset_V,
Chris Wilson722506f2010-08-12 09:28:50 +0100815 params->src_w/uv_hscale);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700816 swidthsw |= max_t(u32, tmp_U, tmp_V) << 16;
817 sheight |= (params->src_h/uv_vscale) << 16;
Chris Wilsonbde13eb2016-08-15 10:49:07 +0100818 iowrite32(i915_ggtt_offset(vma) + params->offset_U,
819 &regs->OBUF_0U);
820 iowrite32(i915_ggtt_offset(vma) + params->offset_V,
821 &regs->OBUF_0V);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700822 ostride |= params->stride_UV << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200823 }
824
Ben Widawsky75020bc2012-04-16 14:07:43 -0700825 iowrite32(swidth, &regs->SWIDTH);
826 iowrite32(swidthsw, &regs->SWIDTHSW);
827 iowrite32(sheight, &regs->SHEIGHT);
828 iowrite32(ostride, &regs->OSTRIDE);
829
Daniel Vetter02e792f2009-09-15 22:57:34 +0200830 scale_changed = update_scaling_factors(overlay, regs, params);
831
832 update_colorkey(overlay, regs);
833
Ben Widawsky75020bc2012-04-16 14:07:43 -0700834 iowrite32(overlay_cmd_reg(params), &regs->OCMD);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200835
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100836 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200837
Chris Wilson8dc5d142010-08-12 12:36:12 +0100838 ret = intel_overlay_continue(overlay, scale_changed);
839 if (ret)
840 goto out_unpin;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200841
Chris Wilson9b3b7842016-08-15 10:49:01 +0100842 i915_gem_track_fb(overlay->vma->obj, new_bo,
Daniel Vettera071fa02014-06-18 23:28:09 +0200843 INTEL_FRONTBUFFER_OVERLAY(pipe));
844
Chris Wilson9b3b7842016-08-15 10:49:01 +0100845 overlay->old_vma = overlay->vma;
846 overlay->vma = vma;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200847
Chris Wilson5748b6a2016-08-04 16:32:38 +0100848 intel_frontbuffer_flip(dev_priv, INTEL_FRONTBUFFER_OVERLAY(pipe));
Daniel Vetterf99d7062014-06-19 16:01:59 +0200849
Daniel Vetter02e792f2009-09-15 22:57:34 +0200850 return 0;
851
852out_unpin:
Chris Wilson058d88c2016-08-15 10:49:06 +0100853 i915_gem_object_unpin_from_display_plane(vma);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200854 return ret;
855}
856
Chris Wilsonce453d82011-02-21 14:43:56 +0000857int intel_overlay_switch_off(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200858{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100859 struct drm_i915_private *dev_priv = overlay->i915;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700860 struct overlay_registers __iomem *regs;
Chris Wilson5dcdbcb2010-08-12 13:50:28 +0100861 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200862
Chris Wilson91c8a322016-07-05 10:40:23 +0100863 lockdep_assert_held(&dev_priv->drm.struct_mutex);
864 WARN_ON(!drm_modeset_is_locked(&dev_priv->drm.mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200865
Chris Wilsonce453d82011-02-21 14:43:56 +0000866 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +0100867 if (ret != 0)
868 return ret;
Daniel Vetter9bedb972009-11-30 15:55:49 +0100869
Daniel Vetter02e792f2009-09-15 22:57:34 +0200870 if (!overlay->active)
871 return 0;
872
Daniel Vetter02e792f2009-09-15 22:57:34 +0200873 ret = intel_overlay_release_old_vid(overlay);
874 if (ret != 0)
875 return ret;
876
Chris Wilson8d74f652010-08-12 10:35:26 +0100877 regs = intel_overlay_map_regs(overlay);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700878 iowrite32(0, &regs->OCMD);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100879 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200880
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100881 return intel_overlay_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200882}
883
884static int check_overlay_possible_on_crtc(struct intel_overlay *overlay,
885 struct intel_crtc *crtc)
886{
Chris Wilsonf7abfe82010-09-13 14:19:16 +0100887 if (!crtc->active)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200888 return -EINVAL;
889
Daniel Vetter02e792f2009-09-15 22:57:34 +0200890 /* can't use the overlay with double wide pipe */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200891 if (crtc->config->double_wide)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200892 return -EINVAL;
893
894 return 0;
895}
896
897static void update_pfit_vscale_ratio(struct intel_overlay *overlay)
898{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100899 struct drm_i915_private *dev_priv = overlay->i915;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200900 u32 pfit_control = I915_READ(PFIT_CONTROL);
Chris Wilson446d2182010-08-12 11:15:58 +0100901 u32 ratio;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200902
903 /* XXX: This is not the same logic as in the xorg driver, but more in
Chris Wilson446d2182010-08-12 11:15:58 +0100904 * line with the intel documentation for the i965
905 */
Chris Wilson1ee8da62016-05-12 12:43:23 +0100906 if (INTEL_GEN(dev_priv) >= 4) {
Akshay Joshi0206e352011-08-16 15:34:10 -0400907 /* on i965 use the PGM reg to read out the autoscaler values */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100908 ratio = I915_READ(PFIT_PGM_RATIOS) >> PFIT_VERT_SCALE_SHIFT_965;
909 } else {
Chris Wilson446d2182010-08-12 11:15:58 +0100910 if (pfit_control & VERT_AUTO_SCALE)
911 ratio = I915_READ(PFIT_AUTO_RATIOS);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200912 else
Chris Wilson446d2182010-08-12 11:15:58 +0100913 ratio = I915_READ(PFIT_PGM_RATIOS);
914 ratio >>= PFIT_VERT_SCALE_SHIFT;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200915 }
916
917 overlay->pfit_vscale_ratio = ratio;
918}
919
920static int check_overlay_dst(struct intel_overlay *overlay,
921 struct drm_intel_overlay_put_image *rec)
922{
923 struct drm_display_mode *mode = &overlay->crtc->base.mode;
924
Daniel Vetter75c13992012-01-28 23:48:46 +0100925 if (rec->dst_x < mode->hdisplay &&
926 rec->dst_x + rec->dst_width <= mode->hdisplay &&
927 rec->dst_y < mode->vdisplay &&
928 rec->dst_y + rec->dst_height <= mode->vdisplay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200929 return 0;
930 else
931 return -EINVAL;
932}
933
934static int check_overlay_scaling(struct put_image_params *rec)
935{
936 u32 tmp;
937
938 /* downscaling limit is 8.0 */
939 tmp = ((rec->src_scan_h << 16) / rec->dst_h) >> 16;
940 if (tmp > 7)
941 return -EINVAL;
942 tmp = ((rec->src_scan_w << 16) / rec->dst_w) >> 16;
943 if (tmp > 7)
944 return -EINVAL;
945
946 return 0;
947}
948
Chris Wilson1ee8da62016-05-12 12:43:23 +0100949static int check_overlay_src(struct drm_i915_private *dev_priv,
Daniel Vetter02e792f2009-09-15 22:57:34 +0200950 struct drm_intel_overlay_put_image *rec,
Chris Wilson05394f32010-11-08 19:18:58 +0000951 struct drm_i915_gem_object *new_bo)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200952{
Daniel Vetter02e792f2009-09-15 22:57:34 +0200953 int uv_hscale = uv_hsubsampling(rec->flags);
954 int uv_vscale = uv_vsubsampling(rec->flags);
Dan Carpenter8f28f542010-10-27 23:17:25 +0200955 u32 stride_mask;
956 int depth;
957 u32 tmp;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200958
959 /* check src dimensions */
Chris Wilson1ee8da62016-05-12 12:43:23 +0100960 if (IS_845G(dev_priv) || IS_I830(dev_priv)) {
Chris Wilson722506f2010-08-12 09:28:50 +0100961 if (rec->src_height > IMAGE_MAX_HEIGHT_LEGACY ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100962 rec->src_width > IMAGE_MAX_WIDTH_LEGACY)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200963 return -EINVAL;
964 } else {
Chris Wilson722506f2010-08-12 09:28:50 +0100965 if (rec->src_height > IMAGE_MAX_HEIGHT ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100966 rec->src_width > IMAGE_MAX_WIDTH)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200967 return -EINVAL;
968 }
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100969
Daniel Vetter02e792f2009-09-15 22:57:34 +0200970 /* better safe than sorry, use 4 as the maximal subsampling ratio */
Chris Wilson722506f2010-08-12 09:28:50 +0100971 if (rec->src_height < N_VERT_Y_TAPS*4 ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100972 rec->src_width < N_HORIZ_Y_TAPS*4)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200973 return -EINVAL;
974
Chris Wilsona1efd142010-07-12 19:35:38 +0100975 /* check alignment constraints */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200976 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100977 case I915_OVERLAY_RGB:
978 /* not implemented */
979 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100980
Chris Wilson722506f2010-08-12 09:28:50 +0100981 case I915_OVERLAY_YUV_PACKED:
Chris Wilson722506f2010-08-12 09:28:50 +0100982 if (uv_vscale != 1)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200983 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100984
985 depth = packed_depth_bytes(rec->flags);
Chris Wilson722506f2010-08-12 09:28:50 +0100986 if (depth < 0)
987 return depth;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100988
Chris Wilson722506f2010-08-12 09:28:50 +0100989 /* ignore UV planes */
990 rec->stride_UV = 0;
991 rec->offset_U = 0;
992 rec->offset_V = 0;
993 /* check pixel alignment */
994 if (rec->offset_Y % depth)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200995 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +0100996 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100997
Chris Wilson722506f2010-08-12 09:28:50 +0100998 case I915_OVERLAY_YUV_PLANAR:
999 if (uv_vscale < 0 || uv_hscale < 0)
1000 return -EINVAL;
1001 /* no offset restrictions for planar formats */
1002 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001003
Chris Wilson722506f2010-08-12 09:28:50 +01001004 default:
1005 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001006 }
1007
1008 if (rec->src_width % uv_hscale)
1009 return -EINVAL;
1010
1011 /* stride checking */
Chris Wilson1ee8da62016-05-12 12:43:23 +01001012 if (IS_I830(dev_priv) || IS_845G(dev_priv))
Chris Wilsona1efd142010-07-12 19:35:38 +01001013 stride_mask = 255;
1014 else
1015 stride_mask = 63;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001016
1017 if (rec->stride_Y & stride_mask || rec->stride_UV & stride_mask)
1018 return -EINVAL;
Chris Wilson1ee8da62016-05-12 12:43:23 +01001019 if (IS_GEN4(dev_priv) && rec->stride_Y < 512)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001020 return -EINVAL;
1021
1022 tmp = (rec->flags & I915_OVERLAY_TYPE_MASK) == I915_OVERLAY_YUV_PLANAR ?
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001023 4096 : 8192;
1024 if (rec->stride_Y > tmp || rec->stride_UV > 2*1024)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001025 return -EINVAL;
1026
1027 /* check buffer dimensions */
1028 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +01001029 case I915_OVERLAY_RGB:
1030 case I915_OVERLAY_YUV_PACKED:
1031 /* always 4 Y values per depth pixels */
1032 if (packed_width_bytes(rec->flags, rec->src_width) > rec->stride_Y)
1033 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001034
Chris Wilson722506f2010-08-12 09:28:50 +01001035 tmp = rec->stride_Y*rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001036 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001037 return -EINVAL;
1038 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001039
Chris Wilson722506f2010-08-12 09:28:50 +01001040 case I915_OVERLAY_YUV_PLANAR:
1041 if (rec->src_width > rec->stride_Y)
1042 return -EINVAL;
1043 if (rec->src_width/uv_hscale > rec->stride_UV)
1044 return -EINVAL;
1045
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001046 tmp = rec->stride_Y * rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001047 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001048 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001049
1050 tmp = rec->stride_UV * (rec->src_height / uv_vscale);
Chris Wilson05394f32010-11-08 19:18:58 +00001051 if (rec->offset_U + tmp > new_bo->base.size ||
1052 rec->offset_V + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001053 return -EINVAL;
1054 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001055 }
1056
1057 return 0;
1058}
1059
Chris Wilsone9e331a2010-09-13 01:16:10 +01001060/**
1061 * Return the pipe currently connected to the panel fitter,
1062 * or -1 if the panel fitter is not present or not in use
1063 */
Chris Wilson1ee8da62016-05-12 12:43:23 +01001064static int intel_panel_fitter_pipe(struct drm_i915_private *dev_priv)
Chris Wilsone9e331a2010-09-13 01:16:10 +01001065{
Chris Wilsone9e331a2010-09-13 01:16:10 +01001066 u32 pfit_control;
1067
1068 /* i830 doesn't have a panel fitter */
Chris Wilson1ee8da62016-05-12 12:43:23 +01001069 if (INTEL_GEN(dev_priv) <= 3 &&
1070 (IS_I830(dev_priv) || !IS_MOBILE(dev_priv)))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001071 return -1;
1072
1073 pfit_control = I915_READ(PFIT_CONTROL);
1074
1075 /* See if the panel fitter is in use */
1076 if ((pfit_control & PFIT_ENABLE) == 0)
1077 return -1;
1078
1079 /* 965 can place panel fitter on either pipe */
Chris Wilson1ee8da62016-05-12 12:43:23 +01001080 if (IS_GEN4(dev_priv))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001081 return (pfit_control >> 29) & 0x3;
1082
1083 /* older chips can only use pipe 1 */
1084 return 1;
1085}
1086
Chris Wilson1ee8da62016-05-12 12:43:23 +01001087int intel_overlay_put_image_ioctl(struct drm_device *dev, void *data,
1088 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001089{
1090 struct drm_intel_overlay_put_image *put_image_rec = data;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001091 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001092 struct intel_overlay *overlay;
Rob Clark7707e652014-07-17 23:30:04 -04001093 struct drm_crtc *drmmode_crtc;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001094 struct intel_crtc *crtc;
Chris Wilson05394f32010-11-08 19:18:58 +00001095 struct drm_i915_gem_object *new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001096 struct put_image_params *params;
1097 int ret;
1098
Daniel Vetter02e792f2009-09-15 22:57:34 +02001099 overlay = dev_priv->overlay;
1100 if (!overlay) {
1101 DRM_DEBUG("userspace bug: no overlay\n");
1102 return -ENODEV;
1103 }
1104
1105 if (!(put_image_rec->flags & I915_OVERLAY_ENABLE)) {
Daniel Vettera0e99e62012-12-02 01:05:46 +01001106 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001107 mutex_lock(&dev->struct_mutex);
1108
Chris Wilsonce453d82011-02-21 14:43:56 +00001109 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001110
1111 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001112 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001113
1114 return ret;
1115 }
1116
Daniel Vetterb14c5672013-09-19 12:18:32 +02001117 params = kmalloc(sizeof(*params), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001118 if (!params)
1119 return -ENOMEM;
1120
Rob Clark7707e652014-07-17 23:30:04 -04001121 drmmode_crtc = drm_crtc_find(dev, put_image_rec->crtc_id);
1122 if (!drmmode_crtc) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001123 ret = -ENOENT;
1124 goto out_free;
1125 }
Rob Clark7707e652014-07-17 23:30:04 -04001126 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001127
Chris Wilson03ac0642016-07-20 13:31:51 +01001128 new_bo = i915_gem_object_lookup(file_priv, put_image_rec->bo_handle);
1129 if (!new_bo) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001130 ret = -ENOENT;
1131 goto out_free;
1132 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001133
Daniel Vettera0e99e62012-12-02 01:05:46 +01001134 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001135 mutex_lock(&dev->struct_mutex);
1136
Chris Wilson3e510a82016-08-05 10:14:23 +01001137 if (i915_gem_object_is_tiled(new_bo)) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01001138 DRM_DEBUG_KMS("buffer used for overlay image can not be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00001139 ret = -EINVAL;
1140 goto out_unlock;
1141 }
1142
Chris Wilsonce453d82011-02-21 14:43:56 +00001143 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +01001144 if (ret != 0)
1145 goto out_unlock;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02001146
Daniel Vetter02e792f2009-09-15 22:57:34 +02001147 if (overlay->crtc != crtc) {
1148 struct drm_display_mode *mode = &crtc->base.mode;
Chris Wilsonce453d82011-02-21 14:43:56 +00001149 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001150 if (ret != 0)
1151 goto out_unlock;
1152
1153 ret = check_overlay_possible_on_crtc(overlay, crtc);
1154 if (ret != 0)
1155 goto out_unlock;
1156
1157 overlay->crtc = crtc;
1158 crtc->overlay = overlay;
1159
Chris Wilsone9e331a2010-09-13 01:16:10 +01001160 /* line too wide, i.e. one-line-mode */
1161 if (mode->hdisplay > 1024 &&
Chris Wilson1ee8da62016-05-12 12:43:23 +01001162 intel_panel_fitter_pipe(dev_priv) == crtc->pipe) {
Ville Syrjälä209c2a52015-03-31 10:37:23 +03001163 overlay->pfit_active = true;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001164 update_pfit_vscale_ratio(overlay);
1165 } else
Ville Syrjälä209c2a52015-03-31 10:37:23 +03001166 overlay->pfit_active = false;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001167 }
1168
1169 ret = check_overlay_dst(overlay, put_image_rec);
1170 if (ret != 0)
1171 goto out_unlock;
1172
1173 if (overlay->pfit_active) {
1174 params->dst_y = ((((u32)put_image_rec->dst_y) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001175 overlay->pfit_vscale_ratio);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001176 /* shifting right rounds downwards, so add 1 */
1177 params->dst_h = ((((u32)put_image_rec->dst_height) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001178 overlay->pfit_vscale_ratio) + 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001179 } else {
1180 params->dst_y = put_image_rec->dst_y;
1181 params->dst_h = put_image_rec->dst_height;
1182 }
1183 params->dst_x = put_image_rec->dst_x;
1184 params->dst_w = put_image_rec->dst_width;
1185
1186 params->src_w = put_image_rec->src_width;
1187 params->src_h = put_image_rec->src_height;
1188 params->src_scan_w = put_image_rec->src_scan_width;
1189 params->src_scan_h = put_image_rec->src_scan_height;
Chris Wilson722506f2010-08-12 09:28:50 +01001190 if (params->src_scan_h > params->src_h ||
1191 params->src_scan_w > params->src_w) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001192 ret = -EINVAL;
1193 goto out_unlock;
1194 }
1195
Chris Wilson1ee8da62016-05-12 12:43:23 +01001196 ret = check_overlay_src(dev_priv, put_image_rec, new_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001197 if (ret != 0)
1198 goto out_unlock;
1199 params->format = put_image_rec->flags & ~I915_OVERLAY_FLAGS_MASK;
1200 params->stride_Y = put_image_rec->stride_Y;
1201 params->stride_UV = put_image_rec->stride_UV;
1202 params->offset_Y = put_image_rec->offset_Y;
1203 params->offset_U = put_image_rec->offset_U;
1204 params->offset_V = put_image_rec->offset_V;
1205
1206 /* Check scaling after src size to prevent a divide-by-zero. */
1207 ret = check_overlay_scaling(params);
1208 if (ret != 0)
1209 goto out_unlock;
1210
1211 ret = intel_overlay_do_put_image(overlay, new_bo, params);
1212 if (ret != 0)
1213 goto out_unlock;
1214
1215 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001216 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001217
1218 kfree(params);
1219
1220 return 0;
1221
1222out_unlock:
1223 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001224 drm_modeset_unlock_all(dev);
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001225 i915_gem_object_put(new_bo);
Dan Carpenter915a4282010-03-06 14:05:39 +03001226out_free:
Daniel Vetter02e792f2009-09-15 22:57:34 +02001227 kfree(params);
1228
1229 return ret;
1230}
1231
1232static void update_reg_attrs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001233 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001234{
Ben Widawsky75020bc2012-04-16 14:07:43 -07001235 iowrite32((overlay->contrast << 18) | (overlay->brightness & 0xff),
1236 &regs->OCLRC0);
1237 iowrite32(overlay->saturation, &regs->OCLRC1);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001238}
1239
1240static bool check_gamma_bounds(u32 gamma1, u32 gamma2)
1241{
1242 int i;
1243
1244 if (gamma1 & 0xff000000 || gamma2 & 0xff000000)
1245 return false;
1246
1247 for (i = 0; i < 3; i++) {
Chris Wilson722506f2010-08-12 09:28:50 +01001248 if (((gamma1 >> i*8) & 0xff) >= ((gamma2 >> i*8) & 0xff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001249 return false;
1250 }
1251
1252 return true;
1253}
1254
1255static bool check_gamma5_errata(u32 gamma5)
1256{
1257 int i;
1258
1259 for (i = 0; i < 3; i++) {
1260 if (((gamma5 >> i*8) & 0xff) == 0x80)
1261 return false;
1262 }
1263
1264 return true;
1265}
1266
1267static int check_gamma(struct drm_intel_overlay_attrs *attrs)
1268{
Chris Wilson722506f2010-08-12 09:28:50 +01001269 if (!check_gamma_bounds(0, attrs->gamma0) ||
1270 !check_gamma_bounds(attrs->gamma0, attrs->gamma1) ||
1271 !check_gamma_bounds(attrs->gamma1, attrs->gamma2) ||
1272 !check_gamma_bounds(attrs->gamma2, attrs->gamma3) ||
1273 !check_gamma_bounds(attrs->gamma3, attrs->gamma4) ||
1274 !check_gamma_bounds(attrs->gamma4, attrs->gamma5) ||
1275 !check_gamma_bounds(attrs->gamma5, 0x00ffffff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001276 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001277
Daniel Vetter02e792f2009-09-15 22:57:34 +02001278 if (!check_gamma5_errata(attrs->gamma5))
1279 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001280
Daniel Vetter02e792f2009-09-15 22:57:34 +02001281 return 0;
1282}
1283
Chris Wilson1ee8da62016-05-12 12:43:23 +01001284int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data,
1285 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001286{
1287 struct drm_intel_overlay_attrs *attrs = data;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001288 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001289 struct intel_overlay *overlay;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001290 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001291 int ret;
1292
Daniel Vetter02e792f2009-09-15 22:57:34 +02001293 overlay = dev_priv->overlay;
1294 if (!overlay) {
1295 DRM_DEBUG("userspace bug: no overlay\n");
1296 return -ENODEV;
1297 }
1298
Daniel Vettera0e99e62012-12-02 01:05:46 +01001299 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001300 mutex_lock(&dev->struct_mutex);
1301
Chris Wilson60fc3322010-08-12 10:44:45 +01001302 ret = -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001303 if (!(attrs->flags & I915_OVERLAY_UPDATE_ATTRS)) {
Chris Wilson60fc3322010-08-12 10:44:45 +01001304 attrs->color_key = overlay->color_key;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001305 attrs->brightness = overlay->brightness;
Chris Wilson60fc3322010-08-12 10:44:45 +01001306 attrs->contrast = overlay->contrast;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001307 attrs->saturation = overlay->saturation;
1308
Chris Wilson1ee8da62016-05-12 12:43:23 +01001309 if (!IS_GEN2(dev_priv)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001310 attrs->gamma0 = I915_READ(OGAMC0);
1311 attrs->gamma1 = I915_READ(OGAMC1);
1312 attrs->gamma2 = I915_READ(OGAMC2);
1313 attrs->gamma3 = I915_READ(OGAMC3);
1314 attrs->gamma4 = I915_READ(OGAMC4);
1315 attrs->gamma5 = I915_READ(OGAMC5);
1316 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001317 } else {
Chris Wilson60fc3322010-08-12 10:44:45 +01001318 if (attrs->brightness < -128 || attrs->brightness > 127)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001319 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001320 if (attrs->contrast > 255)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001321 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001322 if (attrs->saturation > 1023)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001323 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001324
Chris Wilson60fc3322010-08-12 10:44:45 +01001325 overlay->color_key = attrs->color_key;
1326 overlay->brightness = attrs->brightness;
1327 overlay->contrast = attrs->contrast;
1328 overlay->saturation = attrs->saturation;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001329
Chris Wilson8d74f652010-08-12 10:35:26 +01001330 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001331 if (!regs) {
1332 ret = -ENOMEM;
1333 goto out_unlock;
1334 }
1335
1336 update_reg_attrs(overlay, regs);
1337
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001338 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001339
1340 if (attrs->flags & I915_OVERLAY_UPDATE_GAMMA) {
Chris Wilson1ee8da62016-05-12 12:43:23 +01001341 if (IS_GEN2(dev_priv))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001342 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001343
1344 if (overlay->active) {
1345 ret = -EBUSY;
1346 goto out_unlock;
1347 }
1348
1349 ret = check_gamma(attrs);
Chris Wilson60fc3322010-08-12 10:44:45 +01001350 if (ret)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001351 goto out_unlock;
1352
1353 I915_WRITE(OGAMC0, attrs->gamma0);
1354 I915_WRITE(OGAMC1, attrs->gamma1);
1355 I915_WRITE(OGAMC2, attrs->gamma2);
1356 I915_WRITE(OGAMC3, attrs->gamma3);
1357 I915_WRITE(OGAMC4, attrs->gamma4);
1358 I915_WRITE(OGAMC5, attrs->gamma5);
1359 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001360 }
Chris Wilsonea9da4e2015-04-02 10:35:08 +01001361 overlay->color_key_enabled = (attrs->flags & I915_OVERLAY_DISABLE_DEST_COLORKEY) == 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001362
Chris Wilson60fc3322010-08-12 10:44:45 +01001363 ret = 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001364out_unlock:
1365 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001366 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001367
1368 return ret;
1369}
1370
Chris Wilson1ee8da62016-05-12 12:43:23 +01001371void intel_setup_overlay(struct drm_i915_private *dev_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001372{
Daniel Vetter02e792f2009-09-15 22:57:34 +02001373 struct intel_overlay *overlay;
Chris Wilson05394f32010-11-08 19:18:58 +00001374 struct drm_i915_gem_object *reg_bo;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001375 struct overlay_registers __iomem *regs;
Chris Wilson058d88c2016-08-15 10:49:06 +01001376 struct i915_vma *vma = NULL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001377 int ret;
1378
Chris Wilson1ee8da62016-05-12 12:43:23 +01001379 if (!HAS_OVERLAY(dev_priv))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001380 return;
1381
Daniel Vetterb14c5672013-09-19 12:18:32 +02001382 overlay = kzalloc(sizeof(*overlay), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001383 if (!overlay)
1384 return;
Chris Wilson79d24272011-06-28 11:27:47 +01001385
Chris Wilson91c8a322016-07-05 10:40:23 +01001386 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilson79d24272011-06-28 11:27:47 +01001387 if (WARN_ON(dev_priv->overlay))
1388 goto out_free;
1389
Chris Wilson1ee8da62016-05-12 12:43:23 +01001390 overlay->i915 = dev_priv;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001391
Daniel Vetterf63a4842013-07-23 19:24:38 +02001392 reg_bo = NULL;
Chris Wilson1ee8da62016-05-12 12:43:23 +01001393 if (!OVERLAY_NEEDS_PHYSICAL(dev_priv))
Chris Wilson91c8a322016-07-05 10:40:23 +01001394 reg_bo = i915_gem_object_create_stolen(&dev_priv->drm,
1395 PAGE_SIZE);
Chris Wilson80405132012-11-15 11:32:29 +00001396 if (reg_bo == NULL)
Chris Wilson91c8a322016-07-05 10:40:23 +01001397 reg_bo = i915_gem_object_create(&dev_priv->drm, PAGE_SIZE);
Chris Wilsonfe3db792016-04-25 13:32:13 +01001398 if (IS_ERR(reg_bo))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001399 goto out_free;
Chris Wilson05394f32010-11-08 19:18:58 +00001400 overlay->reg_bo = reg_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001401
Chris Wilson1ee8da62016-05-12 12:43:23 +01001402 if (OVERLAY_NEEDS_PHYSICAL(dev_priv)) {
Chris Wilson00731152014-05-21 12:42:56 +01001403 ret = i915_gem_object_attach_phys(reg_bo, PAGE_SIZE);
Akshay Joshi0206e352011-08-16 15:34:10 -04001404 if (ret) {
1405 DRM_ERROR("failed to attach phys overlay regs\n");
1406 goto out_free_bo;
1407 }
Chris Wilson00731152014-05-21 12:42:56 +01001408 overlay->flip_addr = reg_bo->phys_handle->busaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001409 } else {
Chris Wilson058d88c2016-08-15 10:49:06 +01001410 vma = i915_gem_object_ggtt_pin(reg_bo, NULL,
Chris Wilsonde895082016-08-04 16:32:34 +01001411 0, PAGE_SIZE, PIN_MAPPABLE);
Chris Wilson058d88c2016-08-15 10:49:06 +01001412 if (IS_ERR(vma)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001413 DRM_ERROR("failed to pin overlay register bo\n");
Chris Wilson058d88c2016-08-15 10:49:06 +01001414 ret = PTR_ERR(vma);
Akshay Joshi0206e352011-08-16 15:34:10 -04001415 goto out_free_bo;
1416 }
Chris Wilsonbde13eb2016-08-15 10:49:07 +01001417 overlay->flip_addr = i915_ggtt_offset(vma);
Chris Wilson0ddc1282010-08-12 09:35:00 +01001418
1419 ret = i915_gem_object_set_to_gtt_domain(reg_bo, true);
1420 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001421 DRM_ERROR("failed to move overlay register bo into the GTT\n");
1422 goto out_unpin_bo;
1423 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001424 }
1425
1426 /* init all values */
1427 overlay->color_key = 0x0101fe;
Chris Wilsonea9da4e2015-04-02 10:35:08 +01001428 overlay->color_key_enabled = true;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001429 overlay->brightness = -19;
1430 overlay->contrast = 75;
1431 overlay->saturation = 146;
1432
Chris Wilson8d74f652010-08-12 10:35:26 +01001433 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001434 if (!regs)
Chris Wilson79d24272011-06-28 11:27:47 +01001435 goto out_unpin_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001436
Ben Widawsky75020bc2012-04-16 14:07:43 -07001437 memset_io(regs, 0, sizeof(struct overlay_registers));
Daniel Vetter02e792f2009-09-15 22:57:34 +02001438 update_polyphase_filter(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001439 update_reg_attrs(overlay, regs);
1440
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001441 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001442
1443 dev_priv->overlay = overlay;
Chris Wilson91c8a322016-07-05 10:40:23 +01001444 mutex_unlock(&dev_priv->drm.struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001445 DRM_INFO("initialized overlay support\n");
1446 return;
1447
Chris Wilson0ddc1282010-08-12 09:35:00 +01001448out_unpin_bo:
Chris Wilson058d88c2016-08-15 10:49:06 +01001449 if (vma)
1450 i915_vma_unpin(vma);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001451out_free_bo:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01001452 i915_gem_object_put(reg_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001453out_free:
Chris Wilson91c8a322016-07-05 10:40:23 +01001454 mutex_unlock(&dev_priv->drm.struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001455 kfree(overlay);
1456 return;
1457}
1458
Chris Wilson1ee8da62016-05-12 12:43:23 +01001459void intel_cleanup_overlay(struct drm_i915_private *dev_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001460{
Chris Wilson62cf4e62010-08-12 10:50:36 +01001461 if (!dev_priv->overlay)
1462 return;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001463
Chris Wilson62cf4e62010-08-12 10:50:36 +01001464 /* The bo's should be free'd by the generic code already.
1465 * Furthermore modesetting teardown happens beforehand so the
1466 * hardware should be off already */
Ville Syrjälä77589f52015-03-31 10:37:22 +03001467 WARN_ON(dev_priv->overlay->active);
Chris Wilson62cf4e62010-08-12 10:50:36 +01001468
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001469 i915_gem_object_put(dev_priv->overlay->reg_bo);
Chris Wilson62cf4e62010-08-12 10:50:36 +01001470 kfree(dev_priv->overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001471}
Chris Wilson6ef3d422010-08-04 20:26:07 +01001472
Chris Wilson98a2f412016-10-12 10:05:18 +01001473#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
1474
Chris Wilson6ef3d422010-08-04 20:26:07 +01001475struct intel_overlay_error_state {
1476 struct overlay_registers regs;
1477 unsigned long base;
1478 u32 dovsta;
1479 u32 isr;
1480};
1481
Ben Widawsky75020bc2012-04-16 14:07:43 -07001482static struct overlay_registers __iomem *
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001483intel_overlay_map_regs_atomic(struct intel_overlay *overlay)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001484{
Chris Wilson1ee8da62016-05-12 12:43:23 +01001485 struct drm_i915_private *dev_priv = overlay->i915;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001486 struct overlay_registers __iomem *regs;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001487
Chris Wilson1ee8da62016-05-12 12:43:23 +01001488 if (OVERLAY_NEEDS_PHYSICAL(dev_priv))
Ben Widawsky75020bc2012-04-16 14:07:43 -07001489 /* Cast to make sparse happy, but it's wc memory anyway, so
1490 * equivalent to the wc io mapping on X86. */
1491 regs = (struct overlay_registers __iomem *)
Chris Wilson00731152014-05-21 12:42:56 +01001492 overlay->reg_bo->phys_handle->vaddr;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001493 else
Chris Wilsonf7bbe782016-08-19 16:54:27 +01001494 regs = io_mapping_map_atomic_wc(&dev_priv->ggtt.mappable,
Chris Wilsonda6ca032016-04-28 09:56:36 +01001495 overlay->flip_addr);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001496
1497 return regs;
1498}
1499
1500static void intel_overlay_unmap_regs_atomic(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001501 struct overlay_registers __iomem *regs)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001502{
Chris Wilson1ee8da62016-05-12 12:43:23 +01001503 if (!OVERLAY_NEEDS_PHYSICAL(overlay->i915))
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001504 io_mapping_unmap_atomic(regs);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001505}
1506
Chris Wilson6ef3d422010-08-04 20:26:07 +01001507struct intel_overlay_error_state *
Chris Wilsonc0336662016-05-06 15:40:21 +01001508intel_overlay_capture_error_state(struct drm_i915_private *dev_priv)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001509{
Chris Wilson6ef3d422010-08-04 20:26:07 +01001510 struct intel_overlay *overlay = dev_priv->overlay;
1511 struct intel_overlay_error_state *error;
1512 struct overlay_registers __iomem *regs;
1513
1514 if (!overlay || !overlay->active)
1515 return NULL;
1516
1517 error = kmalloc(sizeof(*error), GFP_ATOMIC);
1518 if (error == NULL)
1519 return NULL;
1520
1521 error->dovsta = I915_READ(DOVSTA);
1522 error->isr = I915_READ(ISR);
Chris Wilsonda6ca032016-04-28 09:56:36 +01001523 error->base = overlay->flip_addr;
Chris Wilson6ef3d422010-08-04 20:26:07 +01001524
1525 regs = intel_overlay_map_regs_atomic(overlay);
1526 if (!regs)
1527 goto err;
1528
1529 memcpy_fromio(&error->regs, regs, sizeof(struct overlay_registers));
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001530 intel_overlay_unmap_regs_atomic(overlay, regs);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001531
1532 return error;
1533
1534err:
1535 kfree(error);
1536 return NULL;
1537}
1538
1539void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001540intel_overlay_print_error_state(struct drm_i915_error_state_buf *m,
1541 struct intel_overlay_error_state *error)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001542{
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001543 i915_error_printf(m, "Overlay, status: 0x%08x, interrupt: 0x%08x\n",
1544 error->dovsta, error->isr);
1545 i915_error_printf(m, " Register file at 0x%08lx:\n",
1546 error->base);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001547
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001548#define P(x) i915_error_printf(m, " " #x ": 0x%08x\n", error->regs.x)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001549 P(OBUF_0Y);
1550 P(OBUF_1Y);
1551 P(OBUF_0U);
1552 P(OBUF_0V);
1553 P(OBUF_1U);
1554 P(OBUF_1V);
1555 P(OSTRIDE);
1556 P(YRGB_VPH);
1557 P(UV_VPH);
1558 P(HORZ_PH);
1559 P(INIT_PHS);
1560 P(DWINPOS);
1561 P(DWINSZ);
1562 P(SWIDTH);
1563 P(SWIDTHSW);
1564 P(SHEIGHT);
1565 P(YRGBSCALE);
1566 P(UVSCALE);
1567 P(OCLRC0);
1568 P(OCLRC1);
1569 P(DCLRKV);
1570 P(DCLRKM);
1571 P(SCLRKVH);
1572 P(SCLRKVL);
1573 P(SCLRKEN);
1574 P(OCONFIG);
1575 P(OCMD);
1576 P(OSTART_0Y);
1577 P(OSTART_1Y);
1578 P(OSTART_0U);
1579 P(OSTART_0V);
1580 P(OSTART_1U);
1581 P(OSTART_1V);
1582 P(OTILEOFF_0Y);
1583 P(OTILEOFF_1Y);
1584 P(OTILEOFF_0U);
1585 P(OTILEOFF_0V);
1586 P(OTILEOFF_1U);
1587 P(OTILEOFF_1V);
1588 P(FASTHSCALE);
1589 P(UVSCALEV);
1590#undef P
1591}
Chris Wilson98a2f412016-10-12 10:05:18 +01001592
1593#endif