blob: dc2f4f26c961e0849c19551ad3cf4385ee76b599 [file] [log] [blame]
Daniel Vetter02e792f2009-09-15 22:57:34 +02001/*
2 * Copyright © 2009
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 * Authors:
24 * Daniel Vetter <daniel@ffwll.ch>
25 *
26 * Derived from Xorg ddx, xf86-video-intel, src/i830_video.c
27 */
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
29#include <drm/i915_drm.h>
Daniel Vetter02e792f2009-09-15 22:57:34 +020030#include "i915_drv.h"
31#include "i915_reg.h"
32#include "intel_drv.h"
33
34/* Limits for overlay size. According to intel doc, the real limits are:
35 * Y width: 4095, UV width (planar): 2047, Y height: 2047,
36 * UV width (planar): * 1023. But the xorg thinks 2048 for height and width. Use
37 * the mininum of both. */
38#define IMAGE_MAX_WIDTH 2048
39#define IMAGE_MAX_HEIGHT 2046 /* 2 * 1023 */
40/* on 830 and 845 these large limits result in the card hanging */
41#define IMAGE_MAX_WIDTH_LEGACY 1024
42#define IMAGE_MAX_HEIGHT_LEGACY 1088
43
44/* overlay register definitions */
45/* OCMD register */
46#define OCMD_TILED_SURFACE (0x1<<19)
47#define OCMD_MIRROR_MASK (0x3<<17)
48#define OCMD_MIRROR_MODE (0x3<<17)
49#define OCMD_MIRROR_HORIZONTAL (0x1<<17)
50#define OCMD_MIRROR_VERTICAL (0x2<<17)
51#define OCMD_MIRROR_BOTH (0x3<<17)
52#define OCMD_BYTEORDER_MASK (0x3<<14) /* zero for YUYV or FOURCC YUY2 */
53#define OCMD_UV_SWAP (0x1<<14) /* YVYU */
54#define OCMD_Y_SWAP (0x2<<14) /* UYVY or FOURCC UYVY */
55#define OCMD_Y_AND_UV_SWAP (0x3<<14) /* VYUY */
56#define OCMD_SOURCE_FORMAT_MASK (0xf<<10)
57#define OCMD_RGB_888 (0x1<<10) /* not in i965 Intel docs */
58#define OCMD_RGB_555 (0x2<<10) /* not in i965 Intel docs */
59#define OCMD_RGB_565 (0x3<<10) /* not in i965 Intel docs */
60#define OCMD_YUV_422_PACKED (0x8<<10)
61#define OCMD_YUV_411_PACKED (0x9<<10) /* not in i965 Intel docs */
62#define OCMD_YUV_420_PLANAR (0xc<<10)
63#define OCMD_YUV_422_PLANAR (0xd<<10)
64#define OCMD_YUV_410_PLANAR (0xe<<10) /* also 411 */
65#define OCMD_TVSYNCFLIP_PARITY (0x1<<9)
66#define OCMD_TVSYNCFLIP_ENABLE (0x1<<7)
Chris Wilsond7961362010-07-13 13:52:17 +010067#define OCMD_BUF_TYPE_MASK (0x1<<5)
Daniel Vetter02e792f2009-09-15 22:57:34 +020068#define OCMD_BUF_TYPE_FRAME (0x0<<5)
69#define OCMD_BUF_TYPE_FIELD (0x1<<5)
70#define OCMD_TEST_MODE (0x1<<4)
71#define OCMD_BUFFER_SELECT (0x3<<2)
72#define OCMD_BUFFER0 (0x0<<2)
73#define OCMD_BUFFER1 (0x1<<2)
74#define OCMD_FIELD_SELECT (0x1<<2)
75#define OCMD_FIELD0 (0x0<<1)
76#define OCMD_FIELD1 (0x1<<1)
77#define OCMD_ENABLE (0x1<<0)
78
79/* OCONFIG register */
80#define OCONF_PIPE_MASK (0x1<<18)
81#define OCONF_PIPE_A (0x0<<18)
82#define OCONF_PIPE_B (0x1<<18)
83#define OCONF_GAMMA2_ENABLE (0x1<<16)
84#define OCONF_CSC_MODE_BT601 (0x0<<5)
85#define OCONF_CSC_MODE_BT709 (0x1<<5)
86#define OCONF_CSC_BYPASS (0x1<<4)
87#define OCONF_CC_OUT_8BIT (0x1<<3)
88#define OCONF_TEST_MODE (0x1<<2)
89#define OCONF_THREE_LINE_BUFFER (0x1<<0)
90#define OCONF_TWO_LINE_BUFFER (0x0<<0)
91
92/* DCLRKM (dst-key) register */
93#define DST_KEY_ENABLE (0x1<<31)
94#define CLK_RGB24_MASK 0x0
95#define CLK_RGB16_MASK 0x070307
96#define CLK_RGB15_MASK 0x070707
97#define CLK_RGB8I_MASK 0xffffff
98
99#define RGB16_TO_COLORKEY(c) \
100 (((c & 0xF800) << 8) | ((c & 0x07E0) << 5) | ((c & 0x001F) << 3))
101#define RGB15_TO_COLORKEY(c) \
102 (((c & 0x7c00) << 9) | ((c & 0x03E0) << 6) | ((c & 0x001F) << 3))
103
104/* overlay flip addr flag */
105#define OFC_UPDATE 0x1
106
107/* polyphase filter coefficients */
108#define N_HORIZ_Y_TAPS 5
109#define N_VERT_Y_TAPS 3
110#define N_HORIZ_UV_TAPS 3
111#define N_VERT_UV_TAPS 3
112#define N_PHASES 17
113#define MAX_TAPS 5
114
115/* memory bufferd overlay registers */
116struct overlay_registers {
Akshay Joshi0206e352011-08-16 15:34:10 -0400117 u32 OBUF_0Y;
118 u32 OBUF_1Y;
119 u32 OBUF_0U;
120 u32 OBUF_0V;
121 u32 OBUF_1U;
122 u32 OBUF_1V;
123 u32 OSTRIDE;
124 u32 YRGB_VPH;
125 u32 UV_VPH;
126 u32 HORZ_PH;
127 u32 INIT_PHS;
128 u32 DWINPOS;
129 u32 DWINSZ;
130 u32 SWIDTH;
131 u32 SWIDTHSW;
132 u32 SHEIGHT;
133 u32 YRGBSCALE;
134 u32 UVSCALE;
135 u32 OCLRC0;
136 u32 OCLRC1;
137 u32 DCLRKV;
138 u32 DCLRKM;
139 u32 SCLRKVH;
140 u32 SCLRKVL;
141 u32 SCLRKEN;
142 u32 OCONFIG;
143 u32 OCMD;
144 u32 RESERVED1; /* 0x6C */
145 u32 OSTART_0Y;
146 u32 OSTART_1Y;
147 u32 OSTART_0U;
148 u32 OSTART_0V;
149 u32 OSTART_1U;
150 u32 OSTART_1V;
151 u32 OTILEOFF_0Y;
152 u32 OTILEOFF_1Y;
153 u32 OTILEOFF_0U;
154 u32 OTILEOFF_0V;
155 u32 OTILEOFF_1U;
156 u32 OTILEOFF_1V;
157 u32 FASTHSCALE; /* 0xA0 */
158 u32 UVSCALEV; /* 0xA4 */
159 u32 RESERVEDC[(0x200 - 0xA8) / 4]; /* 0xA8 - 0x1FC */
160 u16 Y_VCOEFS[N_VERT_Y_TAPS * N_PHASES]; /* 0x200 */
161 u16 RESERVEDD[0x100 / 2 - N_VERT_Y_TAPS * N_PHASES];
162 u16 Y_HCOEFS[N_HORIZ_Y_TAPS * N_PHASES]; /* 0x300 */
163 u16 RESERVEDE[0x200 / 2 - N_HORIZ_Y_TAPS * N_PHASES];
164 u16 UV_VCOEFS[N_VERT_UV_TAPS * N_PHASES]; /* 0x500 */
165 u16 RESERVEDF[0x100 / 2 - N_VERT_UV_TAPS * N_PHASES];
166 u16 UV_HCOEFS[N_HORIZ_UV_TAPS * N_PHASES]; /* 0x600 */
167 u16 RESERVEDG[0x100 / 2 - N_HORIZ_UV_TAPS * N_PHASES];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200168};
169
Chris Wilson23f09ce2010-08-12 13:53:37 +0100170struct intel_overlay {
171 struct drm_device *dev;
172 struct intel_crtc *crtc;
173 struct drm_i915_gem_object *vid_bo;
174 struct drm_i915_gem_object *old_vid_bo;
175 int active;
176 int pfit_active;
177 u32 pfit_vscale_ratio; /* shifted-point number, (1<<12) == 1.0 */
178 u32 color_key;
179 u32 brightness, contrast, saturation;
180 u32 old_xscale, old_yscale;
181 /* register access */
182 u32 flip_addr;
183 struct drm_i915_gem_object *reg_bo;
184 /* flip handling */
185 uint32_t last_flip_req;
Chris Wilsonb303cf92010-08-12 14:03:48 +0100186 void (*flip_tail)(struct intel_overlay *);
Chris Wilson23f09ce2010-08-12 13:53:37 +0100187};
Daniel Vetter02e792f2009-09-15 22:57:34 +0200188
Ben Widawsky75020bc2012-04-16 14:07:43 -0700189static struct overlay_registers __iomem *
Chris Wilson8d74f652010-08-12 10:35:26 +0100190intel_overlay_map_regs(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200191{
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300192 struct drm_i915_private *dev_priv = overlay->dev->dev_private;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700193 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200194
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100195 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Chris Wilson00731152014-05-21 12:42:56 +0100196 regs = (struct overlay_registers __iomem *)overlay->reg_bo->phys_handle->vaddr;
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100197 else
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800198 regs = io_mapping_map_wc(dev_priv->gtt.mappable,
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700199 i915_gem_obj_ggtt_offset(overlay->reg_bo));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200200
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100201 return regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200202}
203
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100204static void intel_overlay_unmap_regs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700205 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200206{
Chris Wilson8d74f652010-08-12 10:35:26 +0100207 if (!OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100208 io_mapping_unmap(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200209}
Daniel Vetter02e792f2009-09-15 22:57:34 +0200210
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100211static int intel_overlay_do_wait_request(struct intel_overlay *overlay,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100212 void (*tail)(struct intel_overlay *))
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100213{
214 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300215 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100216 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100217 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200218
Chris Wilsonb303cf92010-08-12 14:03:48 +0100219 BUG_ON(overlay->last_flip_req);
Mika Kuoppala0025c072013-06-12 12:35:30 +0300220 ret = i915_add_request(ring, &overlay->last_flip_req);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100221 if (ret)
222 return ret;
223
Chris Wilsonb303cf92010-08-12 14:03:48 +0100224 overlay->flip_tail = tail;
Ben Widawsky199b2bc2012-05-24 15:03:11 -0700225 ret = i915_wait_seqno(ring, overlay->last_flip_req);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100226 if (ret)
227 return ret;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -0700228 i915_gem_retire_requests(dev);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100229
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100230 overlay->last_flip_req = 0;
231 return 0;
232}
233
Daniel Vetter02e792f2009-09-15 22:57:34 +0200234/* overlay needs to be disable in OCMD reg */
235static int intel_overlay_on(struct intel_overlay *overlay)
236{
237 struct drm_device *dev = overlay->dev;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100238 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100239 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200240 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200241
242 BUG_ON(overlay->active);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200243 overlay->active = 1;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200244
Daniel Vetter6306cb42012-08-12 19:27:10 +0200245 WARN_ON(IS_I830(dev) && !(dev_priv->quirks & QUIRK_PIPEA_FORCE));
Chris Wilson106dada2010-07-16 17:13:01 +0100246
Daniel Vetter6d90c952012-04-26 23:28:05 +0200247 ret = intel_ring_begin(ring, 4);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100248 if (ret)
249 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100250
Daniel Vetter6d90c952012-04-26 23:28:05 +0200251 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_ON);
252 intel_ring_emit(ring, overlay->flip_addr | OFC_UPDATE);
253 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
254 intel_ring_emit(ring, MI_NOOP);
255 intel_ring_advance(ring);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200256
Chris Wilsonacb868d2012-09-26 13:47:30 +0100257 return intel_overlay_do_wait_request(overlay, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200258}
259
260/* overlay needs to be enabled in OCMD reg */
Chris Wilson8dc5d142010-08-12 12:36:12 +0100261static int intel_overlay_continue(struct intel_overlay *overlay,
262 bool load_polyphase_filter)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200263{
264 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300265 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100266 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200267 u32 flip_addr = overlay->flip_addr;
268 u32 tmp;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100269 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200270
271 BUG_ON(!overlay->active);
272
273 if (load_polyphase_filter)
274 flip_addr |= OFC_UPDATE;
275
276 /* check for underruns */
277 tmp = I915_READ(DOVSTA);
278 if (tmp & (1 << 17))
279 DRM_DEBUG("overlay underrun, DOVSTA: %x\n", tmp);
280
Daniel Vetter6d90c952012-04-26 23:28:05 +0200281 ret = intel_ring_begin(ring, 2);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100282 if (ret)
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100283 return ret;
Chris Wilsonacb868d2012-09-26 13:47:30 +0100284
Daniel Vetter6d90c952012-04-26 23:28:05 +0200285 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
286 intel_ring_emit(ring, flip_addr);
287 intel_ring_advance(ring);
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200288
Mika Kuoppala0025c072013-06-12 12:35:30 +0300289 return i915_add_request(ring, &overlay->last_flip_req);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200290}
291
Chris Wilsonb303cf92010-08-12 14:03:48 +0100292static void intel_overlay_release_old_vid_tail(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200293{
Chris Wilson05394f32010-11-08 19:18:58 +0000294 struct drm_i915_gem_object *obj = overlay->old_vid_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200295
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800296 i915_gem_object_ggtt_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000297 drm_gem_object_unreference(&obj->base);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200298
Chris Wilsonb303cf92010-08-12 14:03:48 +0100299 overlay->old_vid_bo = NULL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200300}
301
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200302static void intel_overlay_off_tail(struct intel_overlay *overlay)
303{
Chris Wilson05394f32010-11-08 19:18:58 +0000304 struct drm_i915_gem_object *obj = overlay->vid_bo;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200305
306 /* never have the overlay hw on without showing a frame */
307 BUG_ON(!overlay->vid_bo);
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200308
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800309 i915_gem_object_ggtt_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000310 drm_gem_object_unreference(&obj->base);
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200311 overlay->vid_bo = NULL;
312
313 overlay->crtc->overlay = NULL;
314 overlay->crtc = NULL;
315 overlay->active = 0;
316}
317
Daniel Vetter02e792f2009-09-15 22:57:34 +0200318/* overlay needs to be disabled in OCMD reg */
Chris Wilsonce453d82011-02-21 14:43:56 +0000319static int intel_overlay_off(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200320{
321 struct drm_device *dev = overlay->dev;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100322 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100323 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Chris Wilson8dc5d142010-08-12 12:36:12 +0100324 u32 flip_addr = overlay->flip_addr;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100325 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200326
327 BUG_ON(!overlay->active);
328
329 /* According to intel docs the overlay hw may hang (when switching
330 * off) without loading the filter coeffs. It is however unclear whether
331 * this applies to the disabling of the overlay or to the switching off
332 * of the hw. Do it in both cases */
333 flip_addr |= OFC_UPDATE;
334
Daniel Vetter6d90c952012-04-26 23:28:05 +0200335 ret = intel_ring_begin(ring, 6);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100336 if (ret)
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100337 return ret;
Chris Wilsonacb868d2012-09-26 13:47:30 +0100338
Daniel Vetter02e792f2009-09-15 22:57:34 +0200339 /* wait for overlay to go idle */
Daniel Vetter6d90c952012-04-26 23:28:05 +0200340 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
341 intel_ring_emit(ring, flip_addr);
342 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Chris Wilson722506f2010-08-12 09:28:50 +0100343 /* turn overlay off */
Daniel Vettera9193982012-10-22 12:55:55 +0200344 if (IS_I830(dev)) {
345 /* Workaround: Don't disable the overlay fully, since otherwise
346 * it dies on the next OVERLAY_ON cmd. */
347 intel_ring_emit(ring, MI_NOOP);
348 intel_ring_emit(ring, MI_NOOP);
349 intel_ring_emit(ring, MI_NOOP);
350 } else {
351 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_OFF);
352 intel_ring_emit(ring, flip_addr);
353 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
354 }
Daniel Vetter6d90c952012-04-26 23:28:05 +0200355 intel_ring_advance(ring);
Chris Wilson722506f2010-08-12 09:28:50 +0100356
Chris Wilsonacb868d2012-09-26 13:47:30 +0100357 return intel_overlay_do_wait_request(overlay, intel_overlay_off_tail);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200358}
359
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200360/* recover from an interruption due to a signal
361 * We have to be careful not to repeat work forever an make forward progess. */
Chris Wilsonce453d82011-02-21 14:43:56 +0000362static int intel_overlay_recover_from_interrupt(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200363{
364 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300365 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100366 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200367 int ret;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200368
Chris Wilsonb303cf92010-08-12 14:03:48 +0100369 if (overlay->last_flip_req == 0)
370 return 0;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200371
Ben Widawsky199b2bc2012-05-24 15:03:11 -0700372 ret = i915_wait_seqno(ring, overlay->last_flip_req);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100373 if (ret)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200374 return ret;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -0700375 i915_gem_retire_requests(dev);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200376
Chris Wilsonb303cf92010-08-12 14:03:48 +0100377 if (overlay->flip_tail)
378 overlay->flip_tail(overlay);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200379
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200380 overlay->last_flip_req = 0;
381 return 0;
382}
383
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200384/* Wait for pending overlay flip and release old frame.
385 * Needs to be called before the overlay register are changed
Chris Wilson8d74f652010-08-12 10:35:26 +0100386 * via intel_overlay_(un)map_regs
387 */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200388static int intel_overlay_release_old_vid(struct intel_overlay *overlay)
389{
Chris Wilson5cd68c92010-08-12 12:21:54 +0100390 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300391 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100392 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200393 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200394
Chris Wilson5cd68c92010-08-12 12:21:54 +0100395 /* Only wait if there is actually an old frame to release to
396 * guarantee forward progress.
397 */
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200398 if (!overlay->old_vid_bo)
399 return 0;
400
Chris Wilson5cd68c92010-08-12 12:21:54 +0100401 if (I915_READ(ISR) & I915_OVERLAY_PLANE_FLIP_PENDING_INTERRUPT) {
402 /* synchronous slowpath */
Daniel Vetter6d90c952012-04-26 23:28:05 +0200403 ret = intel_ring_begin(ring, 2);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100404 if (ret)
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100405 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100406
Daniel Vetter6d90c952012-04-26 23:28:05 +0200407 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
408 intel_ring_emit(ring, MI_NOOP);
409 intel_ring_advance(ring);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200410
Chris Wilsonacb868d2012-09-26 13:47:30 +0100411 ret = intel_overlay_do_wait_request(overlay,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100412 intel_overlay_release_old_vid_tail);
Chris Wilson5cd68c92010-08-12 12:21:54 +0100413 if (ret)
414 return ret;
415 }
Daniel Vetter02e792f2009-09-15 22:57:34 +0200416
Chris Wilson5cd68c92010-08-12 12:21:54 +0100417 intel_overlay_release_old_vid_tail(overlay);
Daniel Vettera071fa02014-06-18 23:28:09 +0200418
419
420 i915_gem_track_fb(overlay->old_vid_bo, NULL,
421 INTEL_FRONTBUFFER_OVERLAY(overlay->crtc->pipe));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200422 return 0;
423}
424
425struct put_image_params {
426 int format;
427 short dst_x;
428 short dst_y;
429 short dst_w;
430 short dst_h;
431 short src_w;
432 short src_scan_h;
433 short src_scan_w;
434 short src_h;
435 short stride_Y;
436 short stride_UV;
437 int offset_Y;
438 int offset_U;
439 int offset_V;
440};
441
442static int packed_depth_bytes(u32 format)
443{
444 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100445 case I915_OVERLAY_YUV422:
446 return 4;
447 case I915_OVERLAY_YUV411:
448 /* return 6; not implemented */
449 default:
450 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200451 }
452}
453
454static int packed_width_bytes(u32 format, short width)
455{
456 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100457 case I915_OVERLAY_YUV422:
458 return width << 1;
459 default:
460 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200461 }
462}
463
464static int uv_hsubsampling(u32 format)
465{
466 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100467 case I915_OVERLAY_YUV422:
468 case I915_OVERLAY_YUV420:
469 return 2;
470 case I915_OVERLAY_YUV411:
471 case I915_OVERLAY_YUV410:
472 return 4;
473 default:
474 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200475 }
476}
477
478static int uv_vsubsampling(u32 format)
479{
480 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100481 case I915_OVERLAY_YUV420:
482 case I915_OVERLAY_YUV410:
483 return 2;
484 case I915_OVERLAY_YUV422:
485 case I915_OVERLAY_YUV411:
486 return 1;
487 default:
488 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200489 }
490}
491
492static u32 calc_swidthsw(struct drm_device *dev, u32 offset, u32 width)
493{
494 u32 mask, shift, ret;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100495 if (IS_GEN2(dev)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +0200496 mask = 0x1f;
497 shift = 5;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100498 } else {
499 mask = 0x3f;
500 shift = 6;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200501 }
502 ret = ((offset + width + mask) >> shift) - (offset >> shift);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100503 if (!IS_GEN2(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +0200504 ret <<= 1;
Akshay Joshi0206e352011-08-16 15:34:10 -0400505 ret -= 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200506 return ret << 2;
507}
508
509static const u16 y_static_hcoeffs[N_HORIZ_Y_TAPS * N_PHASES] = {
510 0x3000, 0xb4a0, 0x1930, 0x1920, 0xb4a0,
511 0x3000, 0xb500, 0x19d0, 0x1880, 0xb440,
512 0x3000, 0xb540, 0x1a88, 0x2f80, 0xb3e0,
513 0x3000, 0xb580, 0x1b30, 0x2e20, 0xb380,
514 0x3000, 0xb5c0, 0x1bd8, 0x2cc0, 0xb320,
515 0x3020, 0xb5e0, 0x1c60, 0x2b80, 0xb2c0,
516 0x3020, 0xb5e0, 0x1cf8, 0x2a20, 0xb260,
517 0x3020, 0xb5e0, 0x1d80, 0x28e0, 0xb200,
518 0x3020, 0xb5c0, 0x1e08, 0x3f40, 0xb1c0,
519 0x3020, 0xb580, 0x1e78, 0x3ce0, 0xb160,
520 0x3040, 0xb520, 0x1ed8, 0x3aa0, 0xb120,
521 0x3040, 0xb4a0, 0x1f30, 0x3880, 0xb0e0,
522 0x3040, 0xb400, 0x1f78, 0x3680, 0xb0a0,
523 0x3020, 0xb340, 0x1fb8, 0x34a0, 0xb060,
524 0x3020, 0xb240, 0x1fe0, 0x32e0, 0xb040,
525 0x3020, 0xb140, 0x1ff8, 0x3160, 0xb020,
Chris Wilson722506f2010-08-12 09:28:50 +0100526 0xb000, 0x3000, 0x0800, 0x3000, 0xb000
527};
528
Daniel Vetter02e792f2009-09-15 22:57:34 +0200529static const u16 uv_static_hcoeffs[N_HORIZ_UV_TAPS * N_PHASES] = {
530 0x3000, 0x1800, 0x1800, 0xb000, 0x18d0, 0x2e60,
531 0xb000, 0x1990, 0x2ce0, 0xb020, 0x1a68, 0x2b40,
532 0xb040, 0x1b20, 0x29e0, 0xb060, 0x1bd8, 0x2880,
533 0xb080, 0x1c88, 0x3e60, 0xb0a0, 0x1d28, 0x3c00,
534 0xb0c0, 0x1db8, 0x39e0, 0xb0e0, 0x1e40, 0x37e0,
535 0xb100, 0x1eb8, 0x3620, 0xb100, 0x1f18, 0x34a0,
536 0xb100, 0x1f68, 0x3360, 0xb0e0, 0x1fa8, 0x3240,
537 0xb0c0, 0x1fe0, 0x3140, 0xb060, 0x1ff0, 0x30a0,
Chris Wilson722506f2010-08-12 09:28:50 +0100538 0x3000, 0x0800, 0x3000
539};
Daniel Vetter02e792f2009-09-15 22:57:34 +0200540
Ben Widawsky75020bc2012-04-16 14:07:43 -0700541static void update_polyphase_filter(struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200542{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700543 memcpy_toio(regs->Y_HCOEFS, y_static_hcoeffs, sizeof(y_static_hcoeffs));
544 memcpy_toio(regs->UV_HCOEFS, uv_static_hcoeffs,
545 sizeof(uv_static_hcoeffs));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200546}
547
548static bool update_scaling_factors(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700549 struct overlay_registers __iomem *regs,
Daniel Vetter02e792f2009-09-15 22:57:34 +0200550 struct put_image_params *params)
551{
552 /* fixed point with a 12 bit shift */
553 u32 xscale, yscale, xscale_UV, yscale_UV;
554#define FP_SHIFT 12
555#define FRACT_MASK 0xfff
556 bool scale_changed = false;
557 int uv_hscale = uv_hsubsampling(params->format);
558 int uv_vscale = uv_vsubsampling(params->format);
559
560 if (params->dst_w > 1)
561 xscale = ((params->src_scan_w - 1) << FP_SHIFT)
562 /(params->dst_w);
563 else
564 xscale = 1 << FP_SHIFT;
565
566 if (params->dst_h > 1)
567 yscale = ((params->src_scan_h - 1) << FP_SHIFT)
568 /(params->dst_h);
569 else
570 yscale = 1 << FP_SHIFT;
571
572 /*if (params->format & I915_OVERLAY_YUV_PLANAR) {*/
Chris Wilson722506f2010-08-12 09:28:50 +0100573 xscale_UV = xscale/uv_hscale;
574 yscale_UV = yscale/uv_vscale;
575 /* make the Y scale to UV scale ratio an exact multiply */
576 xscale = xscale_UV * uv_hscale;
577 yscale = yscale_UV * uv_vscale;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200578 /*} else {
Chris Wilson722506f2010-08-12 09:28:50 +0100579 xscale_UV = 0;
580 yscale_UV = 0;
581 }*/
Daniel Vetter02e792f2009-09-15 22:57:34 +0200582
583 if (xscale != overlay->old_xscale || yscale != overlay->old_yscale)
584 scale_changed = true;
585 overlay->old_xscale = xscale;
586 overlay->old_yscale = yscale;
587
Ben Widawsky75020bc2012-04-16 14:07:43 -0700588 iowrite32(((yscale & FRACT_MASK) << 20) |
589 ((xscale >> FP_SHIFT) << 16) |
590 ((xscale & FRACT_MASK) << 3),
591 &regs->YRGBSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100592
Ben Widawsky75020bc2012-04-16 14:07:43 -0700593 iowrite32(((yscale_UV & FRACT_MASK) << 20) |
594 ((xscale_UV >> FP_SHIFT) << 16) |
595 ((xscale_UV & FRACT_MASK) << 3),
596 &regs->UVSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100597
Ben Widawsky75020bc2012-04-16 14:07:43 -0700598 iowrite32((((yscale >> FP_SHIFT) << 16) |
599 ((yscale_UV >> FP_SHIFT) << 0)),
600 &regs->UVSCALEV);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200601
602 if (scale_changed)
603 update_polyphase_filter(regs);
604
605 return scale_changed;
606}
607
608static void update_colorkey(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700609 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200610{
611 u32 key = overlay->color_key;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100612
Matt Roperf4510a22014-04-01 15:22:40 -0700613 switch (overlay->crtc->base.primary->fb->bits_per_pixel) {
Chris Wilson722506f2010-08-12 09:28:50 +0100614 case 8:
Ben Widawsky75020bc2012-04-16 14:07:43 -0700615 iowrite32(0, &regs->DCLRKV);
616 iowrite32(CLK_RGB8I_MASK | DST_KEY_ENABLE, &regs->DCLRKM);
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100617 break;
618
Chris Wilson722506f2010-08-12 09:28:50 +0100619 case 16:
Matt Roperf4510a22014-04-01 15:22:40 -0700620 if (overlay->crtc->base.primary->fb->depth == 15) {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700621 iowrite32(RGB15_TO_COLORKEY(key), &regs->DCLRKV);
622 iowrite32(CLK_RGB15_MASK | DST_KEY_ENABLE,
623 &regs->DCLRKM);
Chris Wilson722506f2010-08-12 09:28:50 +0100624 } else {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700625 iowrite32(RGB16_TO_COLORKEY(key), &regs->DCLRKV);
626 iowrite32(CLK_RGB16_MASK | DST_KEY_ENABLE,
627 &regs->DCLRKM);
Chris Wilson722506f2010-08-12 09:28:50 +0100628 }
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100629 break;
630
Chris Wilson722506f2010-08-12 09:28:50 +0100631 case 24:
632 case 32:
Ben Widawsky75020bc2012-04-16 14:07:43 -0700633 iowrite32(key, &regs->DCLRKV);
634 iowrite32(CLK_RGB24_MASK | DST_KEY_ENABLE, &regs->DCLRKM);
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100635 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200636 }
637}
638
639static u32 overlay_cmd_reg(struct put_image_params *params)
640{
641 u32 cmd = OCMD_ENABLE | OCMD_BUF_TYPE_FRAME | OCMD_BUFFER0;
642
643 if (params->format & I915_OVERLAY_YUV_PLANAR) {
644 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100645 case I915_OVERLAY_YUV422:
646 cmd |= OCMD_YUV_422_PLANAR;
647 break;
648 case I915_OVERLAY_YUV420:
649 cmd |= OCMD_YUV_420_PLANAR;
650 break;
651 case I915_OVERLAY_YUV411:
652 case I915_OVERLAY_YUV410:
653 cmd |= OCMD_YUV_410_PLANAR;
654 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200655 }
656 } else { /* YUV packed */
657 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100658 case I915_OVERLAY_YUV422:
659 cmd |= OCMD_YUV_422_PACKED;
660 break;
661 case I915_OVERLAY_YUV411:
662 cmd |= OCMD_YUV_411_PACKED;
663 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200664 }
665
666 switch (params->format & I915_OVERLAY_SWAP_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100667 case I915_OVERLAY_NO_SWAP:
668 break;
669 case I915_OVERLAY_UV_SWAP:
670 cmd |= OCMD_UV_SWAP;
671 break;
672 case I915_OVERLAY_Y_SWAP:
673 cmd |= OCMD_Y_SWAP;
674 break;
675 case I915_OVERLAY_Y_AND_UV_SWAP:
676 cmd |= OCMD_Y_AND_UV_SWAP;
677 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200678 }
679 }
680
681 return cmd;
682}
683
Chris Wilson5fe82c52010-08-12 12:38:21 +0100684static int intel_overlay_do_put_image(struct intel_overlay *overlay,
Chris Wilson05394f32010-11-08 19:18:58 +0000685 struct drm_i915_gem_object *new_bo,
Chris Wilson5fe82c52010-08-12 12:38:21 +0100686 struct put_image_params *params)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200687{
688 int ret, tmp_width;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700689 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200690 bool scale_changed = false;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200691 struct drm_device *dev = overlay->dev;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700692 u32 swidth, swidthsw, sheight, ostride;
Daniel Vettera071fa02014-06-18 23:28:09 +0200693 enum pipe pipe = overlay->crtc->pipe;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200694
695 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
Rob Clark51fd3712013-11-19 12:10:12 -0500696 BUG_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200697 BUG_ON(!overlay);
698
Daniel Vetter02e792f2009-09-15 22:57:34 +0200699 ret = intel_overlay_release_old_vid(overlay);
700 if (ret != 0)
701 return ret;
702
Chris Wilson2da3b9b2011-04-14 09:41:17 +0100703 ret = i915_gem_object_pin_to_display_plane(new_bo, 0, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200704 if (ret != 0)
705 return ret;
706
Chris Wilsond9e86c02010-11-10 16:40:20 +0000707 ret = i915_gem_object_put_fence(new_bo);
708 if (ret)
709 goto out_unpin;
710
Daniel Vetter02e792f2009-09-15 22:57:34 +0200711 if (!overlay->active) {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700712 u32 oconfig;
Chris Wilson8d74f652010-08-12 10:35:26 +0100713 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200714 if (!regs) {
715 ret = -ENOMEM;
716 goto out_unpin;
717 }
Ben Widawsky75020bc2012-04-16 14:07:43 -0700718 oconfig = OCONF_CC_OUT_8BIT;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100719 if (IS_GEN4(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -0700720 oconfig |= OCONF_CSC_MODE_BT709;
Daniel Vettera071fa02014-06-18 23:28:09 +0200721 oconfig |= pipe == 0 ?
Daniel Vetter02e792f2009-09-15 22:57:34 +0200722 OCONF_PIPE_A : OCONF_PIPE_B;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700723 iowrite32(oconfig, &regs->OCONFIG);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100724 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200725
726 ret = intel_overlay_on(overlay);
727 if (ret != 0)
728 goto out_unpin;
729 }
730
Chris Wilson8d74f652010-08-12 10:35:26 +0100731 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200732 if (!regs) {
733 ret = -ENOMEM;
734 goto out_unpin;
735 }
736
Ben Widawsky75020bc2012-04-16 14:07:43 -0700737 iowrite32((params->dst_y << 16) | params->dst_x, &regs->DWINPOS);
738 iowrite32((params->dst_h << 16) | params->dst_w, &regs->DWINSZ);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200739
740 if (params->format & I915_OVERLAY_YUV_PACKED)
741 tmp_width = packed_width_bytes(params->format, params->src_w);
742 else
743 tmp_width = params->src_w;
744
Ben Widawsky75020bc2012-04-16 14:07:43 -0700745 swidth = params->src_w;
746 swidthsw = calc_swidthsw(overlay->dev, params->offset_Y, tmp_width);
747 sheight = params->src_h;
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700748 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_Y, &regs->OBUF_0Y);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700749 ostride = params->stride_Y;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200750
751 if (params->format & I915_OVERLAY_YUV_PLANAR) {
752 int uv_hscale = uv_hsubsampling(params->format);
753 int uv_vscale = uv_vsubsampling(params->format);
754 u32 tmp_U, tmp_V;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700755 swidth |= (params->src_w/uv_hscale) << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200756 tmp_U = calc_swidthsw(overlay->dev, params->offset_U,
Chris Wilson722506f2010-08-12 09:28:50 +0100757 params->src_w/uv_hscale);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200758 tmp_V = calc_swidthsw(overlay->dev, params->offset_V,
Chris Wilson722506f2010-08-12 09:28:50 +0100759 params->src_w/uv_hscale);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700760 swidthsw |= max_t(u32, tmp_U, tmp_V) << 16;
761 sheight |= (params->src_h/uv_vscale) << 16;
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700762 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_U, &regs->OBUF_0U);
763 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_V, &regs->OBUF_0V);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700764 ostride |= params->stride_UV << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200765 }
766
Ben Widawsky75020bc2012-04-16 14:07:43 -0700767 iowrite32(swidth, &regs->SWIDTH);
768 iowrite32(swidthsw, &regs->SWIDTHSW);
769 iowrite32(sheight, &regs->SHEIGHT);
770 iowrite32(ostride, &regs->OSTRIDE);
771
Daniel Vetter02e792f2009-09-15 22:57:34 +0200772 scale_changed = update_scaling_factors(overlay, regs, params);
773
774 update_colorkey(overlay, regs);
775
Ben Widawsky75020bc2012-04-16 14:07:43 -0700776 iowrite32(overlay_cmd_reg(params), &regs->OCMD);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200777
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100778 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200779
Chris Wilson8dc5d142010-08-12 12:36:12 +0100780 ret = intel_overlay_continue(overlay, scale_changed);
781 if (ret)
782 goto out_unpin;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200783
Daniel Vettera071fa02014-06-18 23:28:09 +0200784 i915_gem_track_fb(overlay->vid_bo, new_bo,
785 INTEL_FRONTBUFFER_OVERLAY(pipe));
786
Daniel Vetter02e792f2009-09-15 22:57:34 +0200787 overlay->old_vid_bo = overlay->vid_bo;
Chris Wilson05394f32010-11-08 19:18:58 +0000788 overlay->vid_bo = new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200789
Daniel Vetterf99d7062014-06-19 16:01:59 +0200790 intel_frontbuffer_flip(dev,
791 INTEL_FRONTBUFFER_OVERLAY(pipe));
792
Daniel Vetter02e792f2009-09-15 22:57:34 +0200793 return 0;
794
795out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800796 i915_gem_object_ggtt_unpin(new_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200797 return ret;
798}
799
Chris Wilsonce453d82011-02-21 14:43:56 +0000800int intel_overlay_switch_off(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200801{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700802 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200803 struct drm_device *dev = overlay->dev;
Chris Wilson5dcdbcb2010-08-12 13:50:28 +0100804 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200805
806 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
Rob Clark51fd3712013-11-19 12:10:12 -0500807 BUG_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200808
Chris Wilsonce453d82011-02-21 14:43:56 +0000809 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +0100810 if (ret != 0)
811 return ret;
Daniel Vetter9bedb972009-11-30 15:55:49 +0100812
Daniel Vetter02e792f2009-09-15 22:57:34 +0200813 if (!overlay->active)
814 return 0;
815
Daniel Vetter02e792f2009-09-15 22:57:34 +0200816 ret = intel_overlay_release_old_vid(overlay);
817 if (ret != 0)
818 return ret;
819
Chris Wilson8d74f652010-08-12 10:35:26 +0100820 regs = intel_overlay_map_regs(overlay);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700821 iowrite32(0, &regs->OCMD);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100822 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200823
Chris Wilsonce453d82011-02-21 14:43:56 +0000824 ret = intel_overlay_off(overlay);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200825 if (ret != 0)
826 return ret;
827
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200828 intel_overlay_off_tail(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200829 return 0;
830}
831
832static int check_overlay_possible_on_crtc(struct intel_overlay *overlay,
833 struct intel_crtc *crtc)
834{
Chris Wilsonf7abfe82010-09-13 14:19:16 +0100835 if (!crtc->active)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200836 return -EINVAL;
837
Daniel Vetter02e792f2009-09-15 22:57:34 +0200838 /* can't use the overlay with double wide pipe */
Ville Syrjälä4926cb72013-09-04 18:30:07 +0300839 if (crtc->config.double_wide)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200840 return -EINVAL;
841
842 return 0;
843}
844
845static void update_pfit_vscale_ratio(struct intel_overlay *overlay)
846{
847 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300848 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200849 u32 pfit_control = I915_READ(PFIT_CONTROL);
Chris Wilson446d2182010-08-12 11:15:58 +0100850 u32 ratio;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200851
852 /* XXX: This is not the same logic as in the xorg driver, but more in
Chris Wilson446d2182010-08-12 11:15:58 +0100853 * line with the intel documentation for the i965
854 */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100855 if (INTEL_INFO(dev)->gen >= 4) {
Akshay Joshi0206e352011-08-16 15:34:10 -0400856 /* on i965 use the PGM reg to read out the autoscaler values */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100857 ratio = I915_READ(PFIT_PGM_RATIOS) >> PFIT_VERT_SCALE_SHIFT_965;
858 } else {
Chris Wilson446d2182010-08-12 11:15:58 +0100859 if (pfit_control & VERT_AUTO_SCALE)
860 ratio = I915_READ(PFIT_AUTO_RATIOS);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200861 else
Chris Wilson446d2182010-08-12 11:15:58 +0100862 ratio = I915_READ(PFIT_PGM_RATIOS);
863 ratio >>= PFIT_VERT_SCALE_SHIFT;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200864 }
865
866 overlay->pfit_vscale_ratio = ratio;
867}
868
869static int check_overlay_dst(struct intel_overlay *overlay,
870 struct drm_intel_overlay_put_image *rec)
871{
872 struct drm_display_mode *mode = &overlay->crtc->base.mode;
873
Daniel Vetter75c13992012-01-28 23:48:46 +0100874 if (rec->dst_x < mode->hdisplay &&
875 rec->dst_x + rec->dst_width <= mode->hdisplay &&
876 rec->dst_y < mode->vdisplay &&
877 rec->dst_y + rec->dst_height <= mode->vdisplay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200878 return 0;
879 else
880 return -EINVAL;
881}
882
883static int check_overlay_scaling(struct put_image_params *rec)
884{
885 u32 tmp;
886
887 /* downscaling limit is 8.0 */
888 tmp = ((rec->src_scan_h << 16) / rec->dst_h) >> 16;
889 if (tmp > 7)
890 return -EINVAL;
891 tmp = ((rec->src_scan_w << 16) / rec->dst_w) >> 16;
892 if (tmp > 7)
893 return -EINVAL;
894
895 return 0;
896}
897
898static int check_overlay_src(struct drm_device *dev,
899 struct drm_intel_overlay_put_image *rec,
Chris Wilson05394f32010-11-08 19:18:58 +0000900 struct drm_i915_gem_object *new_bo)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200901{
Daniel Vetter02e792f2009-09-15 22:57:34 +0200902 int uv_hscale = uv_hsubsampling(rec->flags);
903 int uv_vscale = uv_vsubsampling(rec->flags);
Dan Carpenter8f28f542010-10-27 23:17:25 +0200904 u32 stride_mask;
905 int depth;
906 u32 tmp;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200907
908 /* check src dimensions */
909 if (IS_845G(dev) || IS_I830(dev)) {
Chris Wilson722506f2010-08-12 09:28:50 +0100910 if (rec->src_height > IMAGE_MAX_HEIGHT_LEGACY ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100911 rec->src_width > IMAGE_MAX_WIDTH_LEGACY)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200912 return -EINVAL;
913 } else {
Chris Wilson722506f2010-08-12 09:28:50 +0100914 if (rec->src_height > IMAGE_MAX_HEIGHT ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100915 rec->src_width > IMAGE_MAX_WIDTH)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200916 return -EINVAL;
917 }
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100918
Daniel Vetter02e792f2009-09-15 22:57:34 +0200919 /* better safe than sorry, use 4 as the maximal subsampling ratio */
Chris Wilson722506f2010-08-12 09:28:50 +0100920 if (rec->src_height < N_VERT_Y_TAPS*4 ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100921 rec->src_width < N_HORIZ_Y_TAPS*4)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200922 return -EINVAL;
923
Chris Wilsona1efd142010-07-12 19:35:38 +0100924 /* check alignment constraints */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200925 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100926 case I915_OVERLAY_RGB:
927 /* not implemented */
928 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100929
Chris Wilson722506f2010-08-12 09:28:50 +0100930 case I915_OVERLAY_YUV_PACKED:
Chris Wilson722506f2010-08-12 09:28:50 +0100931 if (uv_vscale != 1)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200932 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100933
934 depth = packed_depth_bytes(rec->flags);
Chris Wilson722506f2010-08-12 09:28:50 +0100935 if (depth < 0)
936 return depth;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100937
Chris Wilson722506f2010-08-12 09:28:50 +0100938 /* ignore UV planes */
939 rec->stride_UV = 0;
940 rec->offset_U = 0;
941 rec->offset_V = 0;
942 /* check pixel alignment */
943 if (rec->offset_Y % depth)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200944 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +0100945 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100946
Chris Wilson722506f2010-08-12 09:28:50 +0100947 case I915_OVERLAY_YUV_PLANAR:
948 if (uv_vscale < 0 || uv_hscale < 0)
949 return -EINVAL;
950 /* no offset restrictions for planar formats */
951 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100952
Chris Wilson722506f2010-08-12 09:28:50 +0100953 default:
954 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200955 }
956
957 if (rec->src_width % uv_hscale)
958 return -EINVAL;
959
960 /* stride checking */
Chris Wilsona1efd142010-07-12 19:35:38 +0100961 if (IS_I830(dev) || IS_845G(dev))
962 stride_mask = 255;
963 else
964 stride_mask = 63;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200965
966 if (rec->stride_Y & stride_mask || rec->stride_UV & stride_mask)
967 return -EINVAL;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100968 if (IS_GEN4(dev) && rec->stride_Y < 512)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200969 return -EINVAL;
970
971 tmp = (rec->flags & I915_OVERLAY_TYPE_MASK) == I915_OVERLAY_YUV_PLANAR ?
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100972 4096 : 8192;
973 if (rec->stride_Y > tmp || rec->stride_UV > 2*1024)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200974 return -EINVAL;
975
976 /* check buffer dimensions */
977 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100978 case I915_OVERLAY_RGB:
979 case I915_OVERLAY_YUV_PACKED:
980 /* always 4 Y values per depth pixels */
981 if (packed_width_bytes(rec->flags, rec->src_width) > rec->stride_Y)
982 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200983
Chris Wilson722506f2010-08-12 09:28:50 +0100984 tmp = rec->stride_Y*rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +0000985 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +0100986 return -EINVAL;
987 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200988
Chris Wilson722506f2010-08-12 09:28:50 +0100989 case I915_OVERLAY_YUV_PLANAR:
990 if (rec->src_width > rec->stride_Y)
991 return -EINVAL;
992 if (rec->src_width/uv_hscale > rec->stride_UV)
993 return -EINVAL;
994
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100995 tmp = rec->stride_Y * rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +0000996 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +0100997 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100998
999 tmp = rec->stride_UV * (rec->src_height / uv_vscale);
Chris Wilson05394f32010-11-08 19:18:58 +00001000 if (rec->offset_U + tmp > new_bo->base.size ||
1001 rec->offset_V + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001002 return -EINVAL;
1003 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001004 }
1005
1006 return 0;
1007}
1008
Chris Wilsone9e331a2010-09-13 01:16:10 +01001009/**
1010 * Return the pipe currently connected to the panel fitter,
1011 * or -1 if the panel fitter is not present or not in use
1012 */
1013static int intel_panel_fitter_pipe(struct drm_device *dev)
1014{
1015 struct drm_i915_private *dev_priv = dev->dev_private;
1016 u32 pfit_control;
1017
1018 /* i830 doesn't have a panel fitter */
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02001019 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001020 return -1;
1021
1022 pfit_control = I915_READ(PFIT_CONTROL);
1023
1024 /* See if the panel fitter is in use */
1025 if ((pfit_control & PFIT_ENABLE) == 0)
1026 return -1;
1027
1028 /* 965 can place panel fitter on either pipe */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001029 if (IS_GEN4(dev))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001030 return (pfit_control >> 29) & 0x3;
1031
1032 /* older chips can only use pipe 1 */
1033 return 1;
1034}
1035
Daniel Vetter02e792f2009-09-15 22:57:34 +02001036int intel_overlay_put_image(struct drm_device *dev, void *data,
Akshay Joshi0206e352011-08-16 15:34:10 -04001037 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001038{
1039 struct drm_intel_overlay_put_image *put_image_rec = data;
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001040 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001041 struct intel_overlay *overlay;
Rob Clark7707e652014-07-17 23:30:04 -04001042 struct drm_crtc *drmmode_crtc;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001043 struct intel_crtc *crtc;
Chris Wilson05394f32010-11-08 19:18:58 +00001044 struct drm_i915_gem_object *new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001045 struct put_image_params *params;
1046 int ret;
1047
Daniel Vetter1cff8f62012-04-24 09:55:08 +02001048 /* No need to check for DRIVER_MODESET - we don't set it up then. */
Daniel Vetter02e792f2009-09-15 22:57:34 +02001049 overlay = dev_priv->overlay;
1050 if (!overlay) {
1051 DRM_DEBUG("userspace bug: no overlay\n");
1052 return -ENODEV;
1053 }
1054
1055 if (!(put_image_rec->flags & I915_OVERLAY_ENABLE)) {
Daniel Vettera0e99e62012-12-02 01:05:46 +01001056 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001057 mutex_lock(&dev->struct_mutex);
1058
Chris Wilsonce453d82011-02-21 14:43:56 +00001059 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001060
1061 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001062 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001063
1064 return ret;
1065 }
1066
Daniel Vetterb14c5672013-09-19 12:18:32 +02001067 params = kmalloc(sizeof(*params), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001068 if (!params)
1069 return -ENOMEM;
1070
Rob Clark7707e652014-07-17 23:30:04 -04001071 drmmode_crtc = drm_crtc_find(dev, put_image_rec->crtc_id);
1072 if (!drmmode_crtc) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001073 ret = -ENOENT;
1074 goto out_free;
1075 }
Rob Clark7707e652014-07-17 23:30:04 -04001076 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001077
Chris Wilson05394f32010-11-08 19:18:58 +00001078 new_bo = to_intel_bo(drm_gem_object_lookup(dev, file_priv,
1079 put_image_rec->bo_handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001080 if (&new_bo->base == NULL) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001081 ret = -ENOENT;
1082 goto out_free;
1083 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001084
Daniel Vettera0e99e62012-12-02 01:05:46 +01001085 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001086 mutex_lock(&dev->struct_mutex);
1087
Chris Wilsond9e86c02010-11-10 16:40:20 +00001088 if (new_bo->tiling_mode) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01001089 DRM_DEBUG_KMS("buffer used for overlay image can not be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00001090 ret = -EINVAL;
1091 goto out_unlock;
1092 }
1093
Chris Wilsonce453d82011-02-21 14:43:56 +00001094 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +01001095 if (ret != 0)
1096 goto out_unlock;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02001097
Daniel Vetter02e792f2009-09-15 22:57:34 +02001098 if (overlay->crtc != crtc) {
1099 struct drm_display_mode *mode = &crtc->base.mode;
Chris Wilsonce453d82011-02-21 14:43:56 +00001100 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001101 if (ret != 0)
1102 goto out_unlock;
1103
1104 ret = check_overlay_possible_on_crtc(overlay, crtc);
1105 if (ret != 0)
1106 goto out_unlock;
1107
1108 overlay->crtc = crtc;
1109 crtc->overlay = overlay;
1110
Chris Wilsone9e331a2010-09-13 01:16:10 +01001111 /* line too wide, i.e. one-line-mode */
1112 if (mode->hdisplay > 1024 &&
1113 intel_panel_fitter_pipe(dev) == crtc->pipe) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001114 overlay->pfit_active = 1;
1115 update_pfit_vscale_ratio(overlay);
1116 } else
1117 overlay->pfit_active = 0;
1118 }
1119
1120 ret = check_overlay_dst(overlay, put_image_rec);
1121 if (ret != 0)
1122 goto out_unlock;
1123
1124 if (overlay->pfit_active) {
1125 params->dst_y = ((((u32)put_image_rec->dst_y) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001126 overlay->pfit_vscale_ratio);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001127 /* shifting right rounds downwards, so add 1 */
1128 params->dst_h = ((((u32)put_image_rec->dst_height) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001129 overlay->pfit_vscale_ratio) + 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001130 } else {
1131 params->dst_y = put_image_rec->dst_y;
1132 params->dst_h = put_image_rec->dst_height;
1133 }
1134 params->dst_x = put_image_rec->dst_x;
1135 params->dst_w = put_image_rec->dst_width;
1136
1137 params->src_w = put_image_rec->src_width;
1138 params->src_h = put_image_rec->src_height;
1139 params->src_scan_w = put_image_rec->src_scan_width;
1140 params->src_scan_h = put_image_rec->src_scan_height;
Chris Wilson722506f2010-08-12 09:28:50 +01001141 if (params->src_scan_h > params->src_h ||
1142 params->src_scan_w > params->src_w) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001143 ret = -EINVAL;
1144 goto out_unlock;
1145 }
1146
1147 ret = check_overlay_src(dev, put_image_rec, new_bo);
1148 if (ret != 0)
1149 goto out_unlock;
1150 params->format = put_image_rec->flags & ~I915_OVERLAY_FLAGS_MASK;
1151 params->stride_Y = put_image_rec->stride_Y;
1152 params->stride_UV = put_image_rec->stride_UV;
1153 params->offset_Y = put_image_rec->offset_Y;
1154 params->offset_U = put_image_rec->offset_U;
1155 params->offset_V = put_image_rec->offset_V;
1156
1157 /* Check scaling after src size to prevent a divide-by-zero. */
1158 ret = check_overlay_scaling(params);
1159 if (ret != 0)
1160 goto out_unlock;
1161
1162 ret = intel_overlay_do_put_image(overlay, new_bo, params);
1163 if (ret != 0)
1164 goto out_unlock;
1165
1166 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001167 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001168
1169 kfree(params);
1170
1171 return 0;
1172
1173out_unlock:
1174 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001175 drm_modeset_unlock_all(dev);
Chris Wilson05394f32010-11-08 19:18:58 +00001176 drm_gem_object_unreference_unlocked(&new_bo->base);
Dan Carpenter915a4282010-03-06 14:05:39 +03001177out_free:
Daniel Vetter02e792f2009-09-15 22:57:34 +02001178 kfree(params);
1179
1180 return ret;
1181}
1182
1183static void update_reg_attrs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001184 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001185{
Ben Widawsky75020bc2012-04-16 14:07:43 -07001186 iowrite32((overlay->contrast << 18) | (overlay->brightness & 0xff),
1187 &regs->OCLRC0);
1188 iowrite32(overlay->saturation, &regs->OCLRC1);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001189}
1190
1191static bool check_gamma_bounds(u32 gamma1, u32 gamma2)
1192{
1193 int i;
1194
1195 if (gamma1 & 0xff000000 || gamma2 & 0xff000000)
1196 return false;
1197
1198 for (i = 0; i < 3; i++) {
Chris Wilson722506f2010-08-12 09:28:50 +01001199 if (((gamma1 >> i*8) & 0xff) >= ((gamma2 >> i*8) & 0xff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001200 return false;
1201 }
1202
1203 return true;
1204}
1205
1206static bool check_gamma5_errata(u32 gamma5)
1207{
1208 int i;
1209
1210 for (i = 0; i < 3; i++) {
1211 if (((gamma5 >> i*8) & 0xff) == 0x80)
1212 return false;
1213 }
1214
1215 return true;
1216}
1217
1218static int check_gamma(struct drm_intel_overlay_attrs *attrs)
1219{
Chris Wilson722506f2010-08-12 09:28:50 +01001220 if (!check_gamma_bounds(0, attrs->gamma0) ||
1221 !check_gamma_bounds(attrs->gamma0, attrs->gamma1) ||
1222 !check_gamma_bounds(attrs->gamma1, attrs->gamma2) ||
1223 !check_gamma_bounds(attrs->gamma2, attrs->gamma3) ||
1224 !check_gamma_bounds(attrs->gamma3, attrs->gamma4) ||
1225 !check_gamma_bounds(attrs->gamma4, attrs->gamma5) ||
1226 !check_gamma_bounds(attrs->gamma5, 0x00ffffff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001227 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001228
Daniel Vetter02e792f2009-09-15 22:57:34 +02001229 if (!check_gamma5_errata(attrs->gamma5))
1230 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001231
Daniel Vetter02e792f2009-09-15 22:57:34 +02001232 return 0;
1233}
1234
1235int intel_overlay_attrs(struct drm_device *dev, void *data,
Akshay Joshi0206e352011-08-16 15:34:10 -04001236 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001237{
1238 struct drm_intel_overlay_attrs *attrs = data;
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001239 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001240 struct intel_overlay *overlay;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001241 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001242 int ret;
1243
Daniel Vetter1cff8f62012-04-24 09:55:08 +02001244 /* No need to check for DRIVER_MODESET - we don't set it up then. */
Daniel Vetter02e792f2009-09-15 22:57:34 +02001245 overlay = dev_priv->overlay;
1246 if (!overlay) {
1247 DRM_DEBUG("userspace bug: no overlay\n");
1248 return -ENODEV;
1249 }
1250
Daniel Vettera0e99e62012-12-02 01:05:46 +01001251 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001252 mutex_lock(&dev->struct_mutex);
1253
Chris Wilson60fc3322010-08-12 10:44:45 +01001254 ret = -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001255 if (!(attrs->flags & I915_OVERLAY_UPDATE_ATTRS)) {
Chris Wilson60fc3322010-08-12 10:44:45 +01001256 attrs->color_key = overlay->color_key;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001257 attrs->brightness = overlay->brightness;
Chris Wilson60fc3322010-08-12 10:44:45 +01001258 attrs->contrast = overlay->contrast;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001259 attrs->saturation = overlay->saturation;
1260
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001261 if (!IS_GEN2(dev)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001262 attrs->gamma0 = I915_READ(OGAMC0);
1263 attrs->gamma1 = I915_READ(OGAMC1);
1264 attrs->gamma2 = I915_READ(OGAMC2);
1265 attrs->gamma3 = I915_READ(OGAMC3);
1266 attrs->gamma4 = I915_READ(OGAMC4);
1267 attrs->gamma5 = I915_READ(OGAMC5);
1268 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001269 } else {
Chris Wilson60fc3322010-08-12 10:44:45 +01001270 if (attrs->brightness < -128 || attrs->brightness > 127)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001271 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001272 if (attrs->contrast > 255)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001273 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001274 if (attrs->saturation > 1023)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001275 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001276
Chris Wilson60fc3322010-08-12 10:44:45 +01001277 overlay->color_key = attrs->color_key;
1278 overlay->brightness = attrs->brightness;
1279 overlay->contrast = attrs->contrast;
1280 overlay->saturation = attrs->saturation;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001281
Chris Wilson8d74f652010-08-12 10:35:26 +01001282 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001283 if (!regs) {
1284 ret = -ENOMEM;
1285 goto out_unlock;
1286 }
1287
1288 update_reg_attrs(overlay, regs);
1289
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001290 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001291
1292 if (attrs->flags & I915_OVERLAY_UPDATE_GAMMA) {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001293 if (IS_GEN2(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001294 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001295
1296 if (overlay->active) {
1297 ret = -EBUSY;
1298 goto out_unlock;
1299 }
1300
1301 ret = check_gamma(attrs);
Chris Wilson60fc3322010-08-12 10:44:45 +01001302 if (ret)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001303 goto out_unlock;
1304
1305 I915_WRITE(OGAMC0, attrs->gamma0);
1306 I915_WRITE(OGAMC1, attrs->gamma1);
1307 I915_WRITE(OGAMC2, attrs->gamma2);
1308 I915_WRITE(OGAMC3, attrs->gamma3);
1309 I915_WRITE(OGAMC4, attrs->gamma4);
1310 I915_WRITE(OGAMC5, attrs->gamma5);
1311 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001312 }
1313
Chris Wilson60fc3322010-08-12 10:44:45 +01001314 ret = 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001315out_unlock:
1316 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001317 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001318
1319 return ret;
1320}
1321
1322void intel_setup_overlay(struct drm_device *dev)
1323{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001324 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001325 struct intel_overlay *overlay;
Chris Wilson05394f32010-11-08 19:18:58 +00001326 struct drm_i915_gem_object *reg_bo;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001327 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001328 int ret;
1329
Chris Wilson315781482010-08-12 09:42:51 +01001330 if (!HAS_OVERLAY(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001331 return;
1332
Daniel Vetterb14c5672013-09-19 12:18:32 +02001333 overlay = kzalloc(sizeof(*overlay), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001334 if (!overlay)
1335 return;
Chris Wilson79d24272011-06-28 11:27:47 +01001336
1337 mutex_lock(&dev->struct_mutex);
1338 if (WARN_ON(dev_priv->overlay))
1339 goto out_free;
1340
Daniel Vetter02e792f2009-09-15 22:57:34 +02001341 overlay->dev = dev;
1342
Daniel Vetterf63a4842013-07-23 19:24:38 +02001343 reg_bo = NULL;
1344 if (!OVERLAY_NEEDS_PHYSICAL(dev))
1345 reg_bo = i915_gem_object_create_stolen(dev, PAGE_SIZE);
Chris Wilson80405132012-11-15 11:32:29 +00001346 if (reg_bo == NULL)
1347 reg_bo = i915_gem_alloc_object(dev, PAGE_SIZE);
1348 if (reg_bo == NULL)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001349 goto out_free;
Chris Wilson05394f32010-11-08 19:18:58 +00001350 overlay->reg_bo = reg_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001351
Chris Wilson315781482010-08-12 09:42:51 +01001352 if (OVERLAY_NEEDS_PHYSICAL(dev)) {
Chris Wilson00731152014-05-21 12:42:56 +01001353 ret = i915_gem_object_attach_phys(reg_bo, PAGE_SIZE);
Akshay Joshi0206e352011-08-16 15:34:10 -04001354 if (ret) {
1355 DRM_ERROR("failed to attach phys overlay regs\n");
1356 goto out_free_bo;
1357 }
Chris Wilson00731152014-05-21 12:42:56 +01001358 overlay->flip_addr = reg_bo->phys_handle->busaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001359 } else {
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001360 ret = i915_gem_obj_ggtt_pin(reg_bo, PAGE_SIZE, PIN_MAPPABLE);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001361 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001362 DRM_ERROR("failed to pin overlay register bo\n");
1363 goto out_free_bo;
1364 }
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001365 overlay->flip_addr = i915_gem_obj_ggtt_offset(reg_bo);
Chris Wilson0ddc1282010-08-12 09:35:00 +01001366
1367 ret = i915_gem_object_set_to_gtt_domain(reg_bo, true);
1368 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001369 DRM_ERROR("failed to move overlay register bo into the GTT\n");
1370 goto out_unpin_bo;
1371 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001372 }
1373
1374 /* init all values */
1375 overlay->color_key = 0x0101fe;
1376 overlay->brightness = -19;
1377 overlay->contrast = 75;
1378 overlay->saturation = 146;
1379
Chris Wilson8d74f652010-08-12 10:35:26 +01001380 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001381 if (!regs)
Chris Wilson79d24272011-06-28 11:27:47 +01001382 goto out_unpin_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001383
Ben Widawsky75020bc2012-04-16 14:07:43 -07001384 memset_io(regs, 0, sizeof(struct overlay_registers));
Daniel Vetter02e792f2009-09-15 22:57:34 +02001385 update_polyphase_filter(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001386 update_reg_attrs(overlay, regs);
1387
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001388 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001389
1390 dev_priv->overlay = overlay;
Chris Wilson79d24272011-06-28 11:27:47 +01001391 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001392 DRM_INFO("initialized overlay support\n");
1393 return;
1394
Chris Wilson0ddc1282010-08-12 09:35:00 +01001395out_unpin_bo:
Chris Wilson79d24272011-06-28 11:27:47 +01001396 if (!OVERLAY_NEEDS_PHYSICAL(dev))
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001397 i915_gem_object_ggtt_unpin(reg_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001398out_free_bo:
Chris Wilson05394f32010-11-08 19:18:58 +00001399 drm_gem_object_unreference(&reg_bo->base);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001400out_free:
Chris Wilson79d24272011-06-28 11:27:47 +01001401 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001402 kfree(overlay);
1403 return;
1404}
1405
1406void intel_cleanup_overlay(struct drm_device *dev)
1407{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001408 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001409
Chris Wilson62cf4e62010-08-12 10:50:36 +01001410 if (!dev_priv->overlay)
1411 return;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001412
Chris Wilson62cf4e62010-08-12 10:50:36 +01001413 /* The bo's should be free'd by the generic code already.
1414 * Furthermore modesetting teardown happens beforehand so the
1415 * hardware should be off already */
1416 BUG_ON(dev_priv->overlay->active);
1417
1418 drm_gem_object_unreference_unlocked(&dev_priv->overlay->reg_bo->base);
1419 kfree(dev_priv->overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001420}
Chris Wilson6ef3d422010-08-04 20:26:07 +01001421
1422struct intel_overlay_error_state {
1423 struct overlay_registers regs;
1424 unsigned long base;
1425 u32 dovsta;
1426 u32 isr;
1427};
1428
Ben Widawsky75020bc2012-04-16 14:07:43 -07001429static struct overlay_registers __iomem *
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001430intel_overlay_map_regs_atomic(struct intel_overlay *overlay)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001431{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001432 struct drm_i915_private *dev_priv = overlay->dev->dev_private;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001433 struct overlay_registers __iomem *regs;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001434
1435 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -07001436 /* Cast to make sparse happy, but it's wc memory anyway, so
1437 * equivalent to the wc io mapping on X86. */
1438 regs = (struct overlay_registers __iomem *)
Chris Wilson00731152014-05-21 12:42:56 +01001439 overlay->reg_bo->phys_handle->vaddr;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001440 else
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001441 regs = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001442 i915_gem_obj_ggtt_offset(overlay->reg_bo));
Chris Wilson3bd3c932010-08-19 08:19:30 +01001443
1444 return regs;
1445}
1446
1447static void intel_overlay_unmap_regs_atomic(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001448 struct overlay_registers __iomem *regs)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001449{
1450 if (!OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001451 io_mapping_unmap_atomic(regs);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001452}
1453
1454
Chris Wilson6ef3d422010-08-04 20:26:07 +01001455struct intel_overlay_error_state *
1456intel_overlay_capture_error_state(struct drm_device *dev)
1457{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001458 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson6ef3d422010-08-04 20:26:07 +01001459 struct intel_overlay *overlay = dev_priv->overlay;
1460 struct intel_overlay_error_state *error;
1461 struct overlay_registers __iomem *regs;
1462
1463 if (!overlay || !overlay->active)
1464 return NULL;
1465
1466 error = kmalloc(sizeof(*error), GFP_ATOMIC);
1467 if (error == NULL)
1468 return NULL;
1469
1470 error->dovsta = I915_READ(DOVSTA);
1471 error->isr = I915_READ(ISR);
Chris Wilson315781482010-08-12 09:42:51 +01001472 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Chris Wilson00731152014-05-21 12:42:56 +01001473 error->base = (__force long)overlay->reg_bo->phys_handle->vaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001474 else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001475 error->base = i915_gem_obj_ggtt_offset(overlay->reg_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001476
1477 regs = intel_overlay_map_regs_atomic(overlay);
1478 if (!regs)
1479 goto err;
1480
1481 memcpy_fromio(&error->regs, regs, sizeof(struct overlay_registers));
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001482 intel_overlay_unmap_regs_atomic(overlay, regs);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001483
1484 return error;
1485
1486err:
1487 kfree(error);
1488 return NULL;
1489}
1490
1491void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001492intel_overlay_print_error_state(struct drm_i915_error_state_buf *m,
1493 struct intel_overlay_error_state *error)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001494{
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001495 i915_error_printf(m, "Overlay, status: 0x%08x, interrupt: 0x%08x\n",
1496 error->dovsta, error->isr);
1497 i915_error_printf(m, " Register file at 0x%08lx:\n",
1498 error->base);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001499
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001500#define P(x) i915_error_printf(m, " " #x ": 0x%08x\n", error->regs.x)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001501 P(OBUF_0Y);
1502 P(OBUF_1Y);
1503 P(OBUF_0U);
1504 P(OBUF_0V);
1505 P(OBUF_1U);
1506 P(OBUF_1V);
1507 P(OSTRIDE);
1508 P(YRGB_VPH);
1509 P(UV_VPH);
1510 P(HORZ_PH);
1511 P(INIT_PHS);
1512 P(DWINPOS);
1513 P(DWINSZ);
1514 P(SWIDTH);
1515 P(SWIDTHSW);
1516 P(SHEIGHT);
1517 P(YRGBSCALE);
1518 P(UVSCALE);
1519 P(OCLRC0);
1520 P(OCLRC1);
1521 P(DCLRKV);
1522 P(DCLRKM);
1523 P(SCLRKVH);
1524 P(SCLRKVL);
1525 P(SCLRKEN);
1526 P(OCONFIG);
1527 P(OCMD);
1528 P(OSTART_0Y);
1529 P(OSTART_1Y);
1530 P(OSTART_0U);
1531 P(OSTART_0V);
1532 P(OSTART_1U);
1533 P(OSTART_1V);
1534 P(OTILEOFF_0Y);
1535 P(OTILEOFF_1Y);
1536 P(OTILEOFF_0U);
1537 P(OTILEOFF_0V);
1538 P(OTILEOFF_1U);
1539 P(OTILEOFF_1V);
1540 P(FASTHSCALE);
1541 P(UVSCALEV);
1542#undef P
1543}