blob: e06e46a3075789410a4952fb617e5e0e739c0244 [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 */
28#include "drmP.h"
29#include "drm.h"
30#include "i915_drm.h"
31#include "i915_drv.h"
32#include "i915_reg.h"
33#include "intel_drv.h"
34
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 {
172 struct drm_device *dev;
173 struct intel_crtc *crtc;
174 struct drm_i915_gem_object *vid_bo;
175 struct drm_i915_gem_object *old_vid_bo;
176 int active;
177 int pfit_active;
178 u32 pfit_vscale_ratio; /* shifted-point number, (1<<12) == 1.0 */
179 u32 color_key;
180 u32 brightness, contrast, saturation;
181 u32 old_xscale, old_yscale;
182 /* register access */
183 u32 flip_addr;
184 struct drm_i915_gem_object *reg_bo;
185 /* flip handling */
186 uint32_t last_flip_req;
Chris Wilsonb303cf92010-08-12 14:03:48 +0100187 void (*flip_tail)(struct intel_overlay *);
Chris Wilson23f09ce2010-08-12 13:53:37 +0100188};
Daniel Vetter02e792f2009-09-15 22:57:34 +0200189
Ben Widawsky75020bc2012-04-16 14:07:43 -0700190static struct overlay_registers __iomem *
Chris Wilson8d74f652010-08-12 10:35:26 +0100191intel_overlay_map_regs(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200192{
Akshay Joshi0206e352011-08-16 15:34:10 -0400193 drm_i915_private_t *dev_priv = overlay->dev->dev_private;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700194 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200195
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100196 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -0700197 regs = (struct overlay_registers __iomem *)overlay->reg_bo->phys_obj->handle->vaddr;
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100198 else
Chris Wilson8d74f652010-08-12 10:35:26 +0100199 regs = io_mapping_map_wc(dev_priv->mm.gtt_mapping,
200 overlay->reg_bo->gtt_offset);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200201
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100202 return regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200203}
204
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100205static void intel_overlay_unmap_regs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700206 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200207{
Chris Wilson8d74f652010-08-12 10:35:26 +0100208 if (!OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100209 io_mapping_unmap(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200210}
Daniel Vetter02e792f2009-09-15 22:57:34 +0200211
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100212static int intel_overlay_do_wait_request(struct intel_overlay *overlay,
Chris Wilson8dc5d142010-08-12 12:36:12 +0100213 struct drm_i915_gem_request *request,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100214 void (*tail)(struct intel_overlay *))
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100215{
216 struct drm_device *dev = overlay->dev;
217 drm_i915_private_t *dev_priv = dev->dev_private;
218 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200219
Chris Wilsonb303cf92010-08-12 14:03:48 +0100220 BUG_ON(overlay->last_flip_req);
Chris Wilsondb53a302011-02-03 11:57:46 +0000221 ret = i915_add_request(LP_RING(dev_priv), NULL, request);
Chris Wilson3cce4692010-10-27 16:11:02 +0100222 if (ret) {
223 kfree(request);
224 return ret;
225 }
226 overlay->last_flip_req = request->seqno;
Chris Wilsonb303cf92010-08-12 14:03:48 +0100227 overlay->flip_tail = tail;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -0700228 ret = i915_wait_request(LP_RING(dev_priv), overlay->last_flip_req);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100229 if (ret)
230 return ret;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -0700231 i915_gem_retire_requests(dev);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100232
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100233 overlay->last_flip_req = 0;
234 return 0;
235}
236
Chris Wilson106dada2010-07-16 17:13:01 +0100237/* Workaround for i830 bug where pipe a must be enable to change control regs */
238static int
239i830_activate_pipe_a(struct drm_device *dev)
240{
241 drm_i915_private_t *dev_priv = dev->dev_private;
242 struct intel_crtc *crtc;
243 struct drm_crtc_helper_funcs *crtc_funcs;
244 struct drm_display_mode vesa_640x480 = {
245 DRM_MODE("640x480", DRM_MODE_TYPE_DRIVER, 25175, 640, 656,
246 752, 800, 0, 480, 489, 492, 525, 0,
247 DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC)
248 }, *mode;
249
250 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[0]);
251 if (crtc->dpms_mode == DRM_MODE_DPMS_ON)
252 return 0;
253
254 /* most i8xx have pipe a forced on, so don't trust dpms mode */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800255 if (I915_READ(_PIPEACONF) & PIPECONF_ENABLE)
Chris Wilson106dada2010-07-16 17:13:01 +0100256 return 0;
257
258 crtc_funcs = crtc->base.helper_private;
259 if (crtc_funcs->dpms == NULL)
260 return 0;
261
262 DRM_DEBUG_DRIVER("Enabling pipe A in order to enable overlay\n");
263
264 mode = drm_mode_duplicate(dev, &vesa_640x480);
Daniel Vetterca9bfa72012-01-28 14:49:20 +0100265 drm_mode_set_crtcinfo(mode, 0);
Akshay Joshi0206e352011-08-16 15:34:10 -0400266 if (!drm_crtc_helper_set_mode(&crtc->base, mode,
Chris Wilson106dada2010-07-16 17:13:01 +0100267 crtc->base.x, crtc->base.y,
268 crtc->base.fb))
269 return 0;
270
271 crtc_funcs->dpms(&crtc->base, DRM_MODE_DPMS_ON);
272 return 1;
273}
274
275static void
276i830_deactivate_pipe_a(struct drm_device *dev)
277{
278 drm_i915_private_t *dev_priv = dev->dev_private;
279 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[0];
280 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
281
282 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200283}
284
285/* overlay needs to be disable in OCMD reg */
286static int intel_overlay_on(struct intel_overlay *overlay)
287{
288 struct drm_device *dev = overlay->dev;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100289 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8dc5d142010-08-12 12:36:12 +0100290 struct drm_i915_gem_request *request;
Chris Wilson106dada2010-07-16 17:13:01 +0100291 int pipe_a_quirk = 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200292 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200293
294 BUG_ON(overlay->active);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200295 overlay->active = 1;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200296
Chris Wilson106dada2010-07-16 17:13:01 +0100297 if (IS_I830(dev)) {
298 pipe_a_quirk = i830_activate_pipe_a(dev);
299 if (pipe_a_quirk < 0)
300 return pipe_a_quirk;
301 }
302
Chris Wilson8dc5d142010-08-12 12:36:12 +0100303 request = kzalloc(sizeof(*request), GFP_KERNEL);
Chris Wilson106dada2010-07-16 17:13:01 +0100304 if (request == NULL) {
305 ret = -ENOMEM;
306 goto out;
307 }
Daniel Vetter02e792f2009-09-15 22:57:34 +0200308
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100309 ret = BEGIN_LP_RING(4);
310 if (ret) {
311 kfree(request);
312 goto out;
313 }
314
Daniel Vetter02e792f2009-09-15 22:57:34 +0200315 OUT_RING(MI_OVERLAY_FLIP | MI_OVERLAY_ON);
316 OUT_RING(overlay->flip_addr | OFC_UPDATE);
317 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
318 OUT_RING(MI_NOOP);
319 ADVANCE_LP_RING();
320
Chris Wilsonce453d82011-02-21 14:43:56 +0000321 ret = intel_overlay_do_wait_request(overlay, request, NULL);
Chris Wilson106dada2010-07-16 17:13:01 +0100322out:
323 if (pipe_a_quirk)
324 i830_deactivate_pipe_a(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200325
Chris Wilson106dada2010-07-16 17:13:01 +0100326 return ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200327}
328
329/* overlay needs to be enabled in OCMD reg */
Chris Wilson8dc5d142010-08-12 12:36:12 +0100330static int intel_overlay_continue(struct intel_overlay *overlay,
331 bool load_polyphase_filter)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200332{
333 struct drm_device *dev = overlay->dev;
Akshay Joshi0206e352011-08-16 15:34:10 -0400334 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson8dc5d142010-08-12 12:36:12 +0100335 struct drm_i915_gem_request *request;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200336 u32 flip_addr = overlay->flip_addr;
337 u32 tmp;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100338 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200339
340 BUG_ON(!overlay->active);
341
Chris Wilson8dc5d142010-08-12 12:36:12 +0100342 request = kzalloc(sizeof(*request), GFP_KERNEL);
343 if (request == NULL)
344 return -ENOMEM;
345
Daniel Vetter02e792f2009-09-15 22:57:34 +0200346 if (load_polyphase_filter)
347 flip_addr |= OFC_UPDATE;
348
349 /* check for underruns */
350 tmp = I915_READ(DOVSTA);
351 if (tmp & (1 << 17))
352 DRM_DEBUG("overlay underrun, DOVSTA: %x\n", tmp);
353
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100354 ret = BEGIN_LP_RING(2);
355 if (ret) {
356 kfree(request);
357 return ret;
358 }
Daniel Vetter02e792f2009-09-15 22:57:34 +0200359 OUT_RING(MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
360 OUT_RING(flip_addr);
Akshay Joshi0206e352011-08-16 15:34:10 -0400361 ADVANCE_LP_RING();
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200362
Chris Wilsondb53a302011-02-03 11:57:46 +0000363 ret = i915_add_request(LP_RING(dev_priv), NULL, request);
Chris Wilson3cce4692010-10-27 16:11:02 +0100364 if (ret) {
365 kfree(request);
366 return ret;
367 }
368
369 overlay->last_flip_req = request->seqno;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200370 return 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200371}
372
Chris Wilsonb303cf92010-08-12 14:03:48 +0100373static void intel_overlay_release_old_vid_tail(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200374{
Chris Wilson05394f32010-11-08 19:18:58 +0000375 struct drm_i915_gem_object *obj = overlay->old_vid_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200376
Chris Wilsonb303cf92010-08-12 14:03:48 +0100377 i915_gem_object_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000378 drm_gem_object_unreference(&obj->base);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200379
Chris Wilsonb303cf92010-08-12 14:03:48 +0100380 overlay->old_vid_bo = NULL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200381}
382
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200383static void intel_overlay_off_tail(struct intel_overlay *overlay)
384{
Chris Wilson05394f32010-11-08 19:18:58 +0000385 struct drm_i915_gem_object *obj = overlay->vid_bo;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200386
387 /* never have the overlay hw on without showing a frame */
388 BUG_ON(!overlay->vid_bo);
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200389
390 i915_gem_object_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000391 drm_gem_object_unreference(&obj->base);
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200392 overlay->vid_bo = NULL;
393
394 overlay->crtc->overlay = NULL;
395 overlay->crtc = NULL;
396 overlay->active = 0;
397}
398
Daniel Vetter02e792f2009-09-15 22:57:34 +0200399/* overlay needs to be disabled in OCMD reg */
Chris Wilsonce453d82011-02-21 14:43:56 +0000400static int intel_overlay_off(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200401{
402 struct drm_device *dev = overlay->dev;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100403 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8dc5d142010-08-12 12:36:12 +0100404 u32 flip_addr = overlay->flip_addr;
405 struct drm_i915_gem_request *request;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100406 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200407
408 BUG_ON(!overlay->active);
409
Chris Wilson8dc5d142010-08-12 12:36:12 +0100410 request = kzalloc(sizeof(*request), GFP_KERNEL);
411 if (request == NULL)
412 return -ENOMEM;
413
Daniel Vetter02e792f2009-09-15 22:57:34 +0200414 /* According to intel docs the overlay hw may hang (when switching
415 * off) without loading the filter coeffs. It is however unclear whether
416 * this applies to the disabling of the overlay or to the switching off
417 * of the hw. Do it in both cases */
418 flip_addr |= OFC_UPDATE;
419
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100420 ret = BEGIN_LP_RING(6);
421 if (ret) {
422 kfree(request);
423 return ret;
424 }
Daniel Vetter02e792f2009-09-15 22:57:34 +0200425 /* wait for overlay to go idle */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200426 OUT_RING(MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
427 OUT_RING(flip_addr);
Chris Wilson722506f2010-08-12 09:28:50 +0100428 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Chris Wilson722506f2010-08-12 09:28:50 +0100429 /* turn overlay off */
Chris Wilson722506f2010-08-12 09:28:50 +0100430 OUT_RING(MI_OVERLAY_FLIP | MI_OVERLAY_OFF);
431 OUT_RING(flip_addr);
432 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Chris Wilson722506f2010-08-12 09:28:50 +0100433 ADVANCE_LP_RING();
434
Chris Wilsonce453d82011-02-21 14:43:56 +0000435 return intel_overlay_do_wait_request(overlay, request,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100436 intel_overlay_off_tail);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200437}
438
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200439/* recover from an interruption due to a signal
440 * We have to be careful not to repeat work forever an make forward progess. */
Chris Wilsonce453d82011-02-21 14:43:56 +0000441static int intel_overlay_recover_from_interrupt(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200442{
443 struct drm_device *dev = overlay->dev;
Zou Nan hai852835f2010-05-21 09:08:56 +0800444 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200445 int ret;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200446
Chris Wilsonb303cf92010-08-12 14:03:48 +0100447 if (overlay->last_flip_req == 0)
448 return 0;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200449
Ben Widawskyb2da9fe2012-04-26 16:02:58 -0700450 ret = i915_wait_request(LP_RING(dev_priv), overlay->last_flip_req);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100451 if (ret)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200452 return ret;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -0700453 i915_gem_retire_requests(dev);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200454
Chris Wilsonb303cf92010-08-12 14:03:48 +0100455 if (overlay->flip_tail)
456 overlay->flip_tail(overlay);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200457
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200458 overlay->last_flip_req = 0;
459 return 0;
460}
461
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200462/* Wait for pending overlay flip and release old frame.
463 * Needs to be called before the overlay register are changed
Chris Wilson8d74f652010-08-12 10:35:26 +0100464 * via intel_overlay_(un)map_regs
465 */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200466static int intel_overlay_release_old_vid(struct intel_overlay *overlay)
467{
Chris Wilson5cd68c92010-08-12 12:21:54 +0100468 struct drm_device *dev = overlay->dev;
469 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200470 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200471
Chris Wilson5cd68c92010-08-12 12:21:54 +0100472 /* Only wait if there is actually an old frame to release to
473 * guarantee forward progress.
474 */
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200475 if (!overlay->old_vid_bo)
476 return 0;
477
Chris Wilson5cd68c92010-08-12 12:21:54 +0100478 if (I915_READ(ISR) & I915_OVERLAY_PLANE_FLIP_PENDING_INTERRUPT) {
Chris Wilson8dc5d142010-08-12 12:36:12 +0100479 struct drm_i915_gem_request *request;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200480
Chris Wilson5cd68c92010-08-12 12:21:54 +0100481 /* synchronous slowpath */
Chris Wilson8dc5d142010-08-12 12:36:12 +0100482 request = kzalloc(sizeof(*request), GFP_KERNEL);
483 if (request == NULL)
484 return -ENOMEM;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200485
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100486 ret = BEGIN_LP_RING(2);
487 if (ret) {
488 kfree(request);
489 return ret;
490 }
491
Chris Wilson5cd68c92010-08-12 12:21:54 +0100492 OUT_RING(MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
493 OUT_RING(MI_NOOP);
494 ADVANCE_LP_RING();
Daniel Vetter02e792f2009-09-15 22:57:34 +0200495
Chris Wilsonce453d82011-02-21 14:43:56 +0000496 ret = intel_overlay_do_wait_request(overlay, request,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100497 intel_overlay_release_old_vid_tail);
Chris Wilson5cd68c92010-08-12 12:21:54 +0100498 if (ret)
499 return ret;
500 }
Daniel Vetter02e792f2009-09-15 22:57:34 +0200501
Chris Wilson5cd68c92010-08-12 12:21:54 +0100502 intel_overlay_release_old_vid_tail(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200503 return 0;
504}
505
506struct put_image_params {
507 int format;
508 short dst_x;
509 short dst_y;
510 short dst_w;
511 short dst_h;
512 short src_w;
513 short src_scan_h;
514 short src_scan_w;
515 short src_h;
516 short stride_Y;
517 short stride_UV;
518 int offset_Y;
519 int offset_U;
520 int offset_V;
521};
522
523static int packed_depth_bytes(u32 format)
524{
525 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100526 case I915_OVERLAY_YUV422:
527 return 4;
528 case I915_OVERLAY_YUV411:
529 /* return 6; not implemented */
530 default:
531 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200532 }
533}
534
535static int packed_width_bytes(u32 format, short width)
536{
537 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100538 case I915_OVERLAY_YUV422:
539 return width << 1;
540 default:
541 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200542 }
543}
544
545static int uv_hsubsampling(u32 format)
546{
547 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100548 case I915_OVERLAY_YUV422:
549 case I915_OVERLAY_YUV420:
550 return 2;
551 case I915_OVERLAY_YUV411:
552 case I915_OVERLAY_YUV410:
553 return 4;
554 default:
555 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200556 }
557}
558
559static int uv_vsubsampling(u32 format)
560{
561 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100562 case I915_OVERLAY_YUV420:
563 case I915_OVERLAY_YUV410:
564 return 2;
565 case I915_OVERLAY_YUV422:
566 case I915_OVERLAY_YUV411:
567 return 1;
568 default:
569 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200570 }
571}
572
573static u32 calc_swidthsw(struct drm_device *dev, u32 offset, u32 width)
574{
575 u32 mask, shift, ret;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100576 if (IS_GEN2(dev)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +0200577 mask = 0x1f;
578 shift = 5;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100579 } else {
580 mask = 0x3f;
581 shift = 6;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200582 }
583 ret = ((offset + width + mask) >> shift) - (offset >> shift);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100584 if (!IS_GEN2(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +0200585 ret <<= 1;
Akshay Joshi0206e352011-08-16 15:34:10 -0400586 ret -= 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200587 return ret << 2;
588}
589
590static const u16 y_static_hcoeffs[N_HORIZ_Y_TAPS * N_PHASES] = {
591 0x3000, 0xb4a0, 0x1930, 0x1920, 0xb4a0,
592 0x3000, 0xb500, 0x19d0, 0x1880, 0xb440,
593 0x3000, 0xb540, 0x1a88, 0x2f80, 0xb3e0,
594 0x3000, 0xb580, 0x1b30, 0x2e20, 0xb380,
595 0x3000, 0xb5c0, 0x1bd8, 0x2cc0, 0xb320,
596 0x3020, 0xb5e0, 0x1c60, 0x2b80, 0xb2c0,
597 0x3020, 0xb5e0, 0x1cf8, 0x2a20, 0xb260,
598 0x3020, 0xb5e0, 0x1d80, 0x28e0, 0xb200,
599 0x3020, 0xb5c0, 0x1e08, 0x3f40, 0xb1c0,
600 0x3020, 0xb580, 0x1e78, 0x3ce0, 0xb160,
601 0x3040, 0xb520, 0x1ed8, 0x3aa0, 0xb120,
602 0x3040, 0xb4a0, 0x1f30, 0x3880, 0xb0e0,
603 0x3040, 0xb400, 0x1f78, 0x3680, 0xb0a0,
604 0x3020, 0xb340, 0x1fb8, 0x34a0, 0xb060,
605 0x3020, 0xb240, 0x1fe0, 0x32e0, 0xb040,
606 0x3020, 0xb140, 0x1ff8, 0x3160, 0xb020,
Chris Wilson722506f2010-08-12 09:28:50 +0100607 0xb000, 0x3000, 0x0800, 0x3000, 0xb000
608};
609
Daniel Vetter02e792f2009-09-15 22:57:34 +0200610static const u16 uv_static_hcoeffs[N_HORIZ_UV_TAPS * N_PHASES] = {
611 0x3000, 0x1800, 0x1800, 0xb000, 0x18d0, 0x2e60,
612 0xb000, 0x1990, 0x2ce0, 0xb020, 0x1a68, 0x2b40,
613 0xb040, 0x1b20, 0x29e0, 0xb060, 0x1bd8, 0x2880,
614 0xb080, 0x1c88, 0x3e60, 0xb0a0, 0x1d28, 0x3c00,
615 0xb0c0, 0x1db8, 0x39e0, 0xb0e0, 0x1e40, 0x37e0,
616 0xb100, 0x1eb8, 0x3620, 0xb100, 0x1f18, 0x34a0,
617 0xb100, 0x1f68, 0x3360, 0xb0e0, 0x1fa8, 0x3240,
618 0xb0c0, 0x1fe0, 0x3140, 0xb060, 0x1ff0, 0x30a0,
Chris Wilson722506f2010-08-12 09:28:50 +0100619 0x3000, 0x0800, 0x3000
620};
Daniel Vetter02e792f2009-09-15 22:57:34 +0200621
Ben Widawsky75020bc2012-04-16 14:07:43 -0700622static void update_polyphase_filter(struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200623{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700624 memcpy_toio(regs->Y_HCOEFS, y_static_hcoeffs, sizeof(y_static_hcoeffs));
625 memcpy_toio(regs->UV_HCOEFS, uv_static_hcoeffs,
626 sizeof(uv_static_hcoeffs));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200627}
628
629static bool update_scaling_factors(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700630 struct overlay_registers __iomem *regs,
Daniel Vetter02e792f2009-09-15 22:57:34 +0200631 struct put_image_params *params)
632{
633 /* fixed point with a 12 bit shift */
634 u32 xscale, yscale, xscale_UV, yscale_UV;
635#define FP_SHIFT 12
636#define FRACT_MASK 0xfff
637 bool scale_changed = false;
638 int uv_hscale = uv_hsubsampling(params->format);
639 int uv_vscale = uv_vsubsampling(params->format);
640
641 if (params->dst_w > 1)
642 xscale = ((params->src_scan_w - 1) << FP_SHIFT)
643 /(params->dst_w);
644 else
645 xscale = 1 << FP_SHIFT;
646
647 if (params->dst_h > 1)
648 yscale = ((params->src_scan_h - 1) << FP_SHIFT)
649 /(params->dst_h);
650 else
651 yscale = 1 << FP_SHIFT;
652
653 /*if (params->format & I915_OVERLAY_YUV_PLANAR) {*/
Chris Wilson722506f2010-08-12 09:28:50 +0100654 xscale_UV = xscale/uv_hscale;
655 yscale_UV = yscale/uv_vscale;
656 /* make the Y scale to UV scale ratio an exact multiply */
657 xscale = xscale_UV * uv_hscale;
658 yscale = yscale_UV * uv_vscale;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200659 /*} else {
Chris Wilson722506f2010-08-12 09:28:50 +0100660 xscale_UV = 0;
661 yscale_UV = 0;
662 }*/
Daniel Vetter02e792f2009-09-15 22:57:34 +0200663
664 if (xscale != overlay->old_xscale || yscale != overlay->old_yscale)
665 scale_changed = true;
666 overlay->old_xscale = xscale;
667 overlay->old_yscale = yscale;
668
Ben Widawsky75020bc2012-04-16 14:07:43 -0700669 iowrite32(((yscale & FRACT_MASK) << 20) |
670 ((xscale >> FP_SHIFT) << 16) |
671 ((xscale & FRACT_MASK) << 3),
672 &regs->YRGBSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100673
Ben Widawsky75020bc2012-04-16 14:07:43 -0700674 iowrite32(((yscale_UV & FRACT_MASK) << 20) |
675 ((xscale_UV >> FP_SHIFT) << 16) |
676 ((xscale_UV & FRACT_MASK) << 3),
677 &regs->UVSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100678
Ben Widawsky75020bc2012-04-16 14:07:43 -0700679 iowrite32((((yscale >> FP_SHIFT) << 16) |
680 ((yscale_UV >> FP_SHIFT) << 0)),
681 &regs->UVSCALEV);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200682
683 if (scale_changed)
684 update_polyphase_filter(regs);
685
686 return scale_changed;
687}
688
689static void update_colorkey(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700690 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200691{
692 u32 key = overlay->color_key;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100693
Daniel Vetter02e792f2009-09-15 22:57:34 +0200694 switch (overlay->crtc->base.fb->bits_per_pixel) {
Chris Wilson722506f2010-08-12 09:28:50 +0100695 case 8:
Ben Widawsky75020bc2012-04-16 14:07:43 -0700696 iowrite32(0, &regs->DCLRKV);
697 iowrite32(CLK_RGB8I_MASK | DST_KEY_ENABLE, &regs->DCLRKM);
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100698 break;
699
Chris Wilson722506f2010-08-12 09:28:50 +0100700 case 16:
701 if (overlay->crtc->base.fb->depth == 15) {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700702 iowrite32(RGB15_TO_COLORKEY(key), &regs->DCLRKV);
703 iowrite32(CLK_RGB15_MASK | DST_KEY_ENABLE,
704 &regs->DCLRKM);
Chris Wilson722506f2010-08-12 09:28:50 +0100705 } else {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700706 iowrite32(RGB16_TO_COLORKEY(key), &regs->DCLRKV);
707 iowrite32(CLK_RGB16_MASK | DST_KEY_ENABLE,
708 &regs->DCLRKM);
Chris Wilson722506f2010-08-12 09:28:50 +0100709 }
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100710 break;
711
Chris Wilson722506f2010-08-12 09:28:50 +0100712 case 24:
713 case 32:
Ben Widawsky75020bc2012-04-16 14:07:43 -0700714 iowrite32(key, &regs->DCLRKV);
715 iowrite32(CLK_RGB24_MASK | DST_KEY_ENABLE, &regs->DCLRKM);
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100716 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200717 }
718}
719
720static u32 overlay_cmd_reg(struct put_image_params *params)
721{
722 u32 cmd = OCMD_ENABLE | OCMD_BUF_TYPE_FRAME | OCMD_BUFFER0;
723
724 if (params->format & I915_OVERLAY_YUV_PLANAR) {
725 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100726 case I915_OVERLAY_YUV422:
727 cmd |= OCMD_YUV_422_PLANAR;
728 break;
729 case I915_OVERLAY_YUV420:
730 cmd |= OCMD_YUV_420_PLANAR;
731 break;
732 case I915_OVERLAY_YUV411:
733 case I915_OVERLAY_YUV410:
734 cmd |= OCMD_YUV_410_PLANAR;
735 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200736 }
737 } else { /* YUV packed */
738 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100739 case I915_OVERLAY_YUV422:
740 cmd |= OCMD_YUV_422_PACKED;
741 break;
742 case I915_OVERLAY_YUV411:
743 cmd |= OCMD_YUV_411_PACKED;
744 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200745 }
746
747 switch (params->format & I915_OVERLAY_SWAP_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100748 case I915_OVERLAY_NO_SWAP:
749 break;
750 case I915_OVERLAY_UV_SWAP:
751 cmd |= OCMD_UV_SWAP;
752 break;
753 case I915_OVERLAY_Y_SWAP:
754 cmd |= OCMD_Y_SWAP;
755 break;
756 case I915_OVERLAY_Y_AND_UV_SWAP:
757 cmd |= OCMD_Y_AND_UV_SWAP;
758 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200759 }
760 }
761
762 return cmd;
763}
764
Chris Wilson5fe82c52010-08-12 12:38:21 +0100765static int intel_overlay_do_put_image(struct intel_overlay *overlay,
Chris Wilson05394f32010-11-08 19:18:58 +0000766 struct drm_i915_gem_object *new_bo,
Chris Wilson5fe82c52010-08-12 12:38:21 +0100767 struct put_image_params *params)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200768{
769 int ret, tmp_width;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700770 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200771 bool scale_changed = false;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200772 struct drm_device *dev = overlay->dev;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700773 u32 swidth, swidthsw, sheight, ostride;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200774
775 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
776 BUG_ON(!mutex_is_locked(&dev->mode_config.mutex));
777 BUG_ON(!overlay);
778
Daniel Vetter02e792f2009-09-15 22:57:34 +0200779 ret = intel_overlay_release_old_vid(overlay);
780 if (ret != 0)
781 return ret;
782
Chris Wilson2da3b9b2011-04-14 09:41:17 +0100783 ret = i915_gem_object_pin_to_display_plane(new_bo, 0, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200784 if (ret != 0)
785 return ret;
786
Chris Wilsond9e86c02010-11-10 16:40:20 +0000787 ret = i915_gem_object_put_fence(new_bo);
788 if (ret)
789 goto out_unpin;
790
Daniel Vetter02e792f2009-09-15 22:57:34 +0200791 if (!overlay->active) {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700792 u32 oconfig;
Chris Wilson8d74f652010-08-12 10:35:26 +0100793 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200794 if (!regs) {
795 ret = -ENOMEM;
796 goto out_unpin;
797 }
Ben Widawsky75020bc2012-04-16 14:07:43 -0700798 oconfig = OCONF_CC_OUT_8BIT;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100799 if (IS_GEN4(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -0700800 oconfig |= OCONF_CSC_MODE_BT709;
801 oconfig |= overlay->crtc->pipe == 0 ?
Daniel Vetter02e792f2009-09-15 22:57:34 +0200802 OCONF_PIPE_A : OCONF_PIPE_B;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700803 iowrite32(oconfig, &regs->OCONFIG);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100804 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200805
806 ret = intel_overlay_on(overlay);
807 if (ret != 0)
808 goto out_unpin;
809 }
810
Chris Wilson8d74f652010-08-12 10:35:26 +0100811 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200812 if (!regs) {
813 ret = -ENOMEM;
814 goto out_unpin;
815 }
816
Ben Widawsky75020bc2012-04-16 14:07:43 -0700817 iowrite32((params->dst_y << 16) | params->dst_x, &regs->DWINPOS);
818 iowrite32((params->dst_h << 16) | params->dst_w, &regs->DWINSZ);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200819
820 if (params->format & I915_OVERLAY_YUV_PACKED)
821 tmp_width = packed_width_bytes(params->format, params->src_w);
822 else
823 tmp_width = params->src_w;
824
Ben Widawsky75020bc2012-04-16 14:07:43 -0700825 swidth = params->src_w;
826 swidthsw = calc_swidthsw(overlay->dev, params->offset_Y, tmp_width);
827 sheight = params->src_h;
828 iowrite32(new_bo->gtt_offset + params->offset_Y, &regs->OBUF_0Y);
829 ostride = params->stride_Y;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200830
831 if (params->format & I915_OVERLAY_YUV_PLANAR) {
832 int uv_hscale = uv_hsubsampling(params->format);
833 int uv_vscale = uv_vsubsampling(params->format);
834 u32 tmp_U, tmp_V;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700835 swidth |= (params->src_w/uv_hscale) << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200836 tmp_U = calc_swidthsw(overlay->dev, params->offset_U,
Chris Wilson722506f2010-08-12 09:28:50 +0100837 params->src_w/uv_hscale);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200838 tmp_V = calc_swidthsw(overlay->dev, params->offset_V,
Chris Wilson722506f2010-08-12 09:28:50 +0100839 params->src_w/uv_hscale);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700840 swidthsw |= max_t(u32, tmp_U, tmp_V) << 16;
841 sheight |= (params->src_h/uv_vscale) << 16;
842 iowrite32(new_bo->gtt_offset + params->offset_U, &regs->OBUF_0U);
843 iowrite32(new_bo->gtt_offset + params->offset_V, &regs->OBUF_0V);
844 ostride |= params->stride_UV << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200845 }
846
Ben Widawsky75020bc2012-04-16 14:07:43 -0700847 iowrite32(swidth, &regs->SWIDTH);
848 iowrite32(swidthsw, &regs->SWIDTHSW);
849 iowrite32(sheight, &regs->SHEIGHT);
850 iowrite32(ostride, &regs->OSTRIDE);
851
Daniel Vetter02e792f2009-09-15 22:57:34 +0200852 scale_changed = update_scaling_factors(overlay, regs, params);
853
854 update_colorkey(overlay, regs);
855
Ben Widawsky75020bc2012-04-16 14:07:43 -0700856 iowrite32(overlay_cmd_reg(params), &regs->OCMD);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200857
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100858 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200859
Chris Wilson8dc5d142010-08-12 12:36:12 +0100860 ret = intel_overlay_continue(overlay, scale_changed);
861 if (ret)
862 goto out_unpin;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200863
864 overlay->old_vid_bo = overlay->vid_bo;
Chris Wilson05394f32010-11-08 19:18:58 +0000865 overlay->vid_bo = new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200866
867 return 0;
868
869out_unpin:
870 i915_gem_object_unpin(new_bo);
871 return ret;
872}
873
Chris Wilsonce453d82011-02-21 14:43:56 +0000874int intel_overlay_switch_off(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200875{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700876 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200877 struct drm_device *dev = overlay->dev;
Chris Wilson5dcdbcb2010-08-12 13:50:28 +0100878 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200879
880 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
881 BUG_ON(!mutex_is_locked(&dev->mode_config.mutex));
882
Chris Wilsonce453d82011-02-21 14:43:56 +0000883 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +0100884 if (ret != 0)
885 return ret;
Daniel Vetter9bedb972009-11-30 15:55:49 +0100886
Daniel Vetter02e792f2009-09-15 22:57:34 +0200887 if (!overlay->active)
888 return 0;
889
Daniel Vetter02e792f2009-09-15 22:57:34 +0200890 ret = intel_overlay_release_old_vid(overlay);
891 if (ret != 0)
892 return ret;
893
Chris Wilson8d74f652010-08-12 10:35:26 +0100894 regs = intel_overlay_map_regs(overlay);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700895 iowrite32(0, &regs->OCMD);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100896 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200897
Chris Wilsonce453d82011-02-21 14:43:56 +0000898 ret = intel_overlay_off(overlay);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200899 if (ret != 0)
900 return ret;
901
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200902 intel_overlay_off_tail(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200903 return 0;
904}
905
906static int check_overlay_possible_on_crtc(struct intel_overlay *overlay,
907 struct intel_crtc *crtc)
908{
Chris Wilson722506f2010-08-12 09:28:50 +0100909 drm_i915_private_t *dev_priv = overlay->dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200910
Chris Wilsonf7abfe82010-09-13 14:19:16 +0100911 if (!crtc->active)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200912 return -EINVAL;
913
Daniel Vetter02e792f2009-09-15 22:57:34 +0200914 /* can't use the overlay with double wide pipe */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100915 if (INTEL_INFO(overlay->dev)->gen < 4 &&
Chris Wilsonf7abfe82010-09-13 14:19:16 +0100916 (I915_READ(PIPECONF(crtc->pipe)) & (PIPECONF_DOUBLE_WIDE | PIPECONF_ENABLE)) != PIPECONF_ENABLE)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200917 return -EINVAL;
918
919 return 0;
920}
921
922static void update_pfit_vscale_ratio(struct intel_overlay *overlay)
923{
924 struct drm_device *dev = overlay->dev;
Chris Wilson722506f2010-08-12 09:28:50 +0100925 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200926 u32 pfit_control = I915_READ(PFIT_CONTROL);
Chris Wilson446d2182010-08-12 11:15:58 +0100927 u32 ratio;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200928
929 /* XXX: This is not the same logic as in the xorg driver, but more in
Chris Wilson446d2182010-08-12 11:15:58 +0100930 * line with the intel documentation for the i965
931 */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100932 if (INTEL_INFO(dev)->gen >= 4) {
Akshay Joshi0206e352011-08-16 15:34:10 -0400933 /* on i965 use the PGM reg to read out the autoscaler values */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100934 ratio = I915_READ(PFIT_PGM_RATIOS) >> PFIT_VERT_SCALE_SHIFT_965;
935 } else {
Chris Wilson446d2182010-08-12 11:15:58 +0100936 if (pfit_control & VERT_AUTO_SCALE)
937 ratio = I915_READ(PFIT_AUTO_RATIOS);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200938 else
Chris Wilson446d2182010-08-12 11:15:58 +0100939 ratio = I915_READ(PFIT_PGM_RATIOS);
940 ratio >>= PFIT_VERT_SCALE_SHIFT;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200941 }
942
943 overlay->pfit_vscale_ratio = ratio;
944}
945
946static int check_overlay_dst(struct intel_overlay *overlay,
947 struct drm_intel_overlay_put_image *rec)
948{
949 struct drm_display_mode *mode = &overlay->crtc->base.mode;
950
Daniel Vetter75c13992012-01-28 23:48:46 +0100951 if (rec->dst_x < mode->hdisplay &&
952 rec->dst_x + rec->dst_width <= mode->hdisplay &&
953 rec->dst_y < mode->vdisplay &&
954 rec->dst_y + rec->dst_height <= mode->vdisplay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200955 return 0;
956 else
957 return -EINVAL;
958}
959
960static int check_overlay_scaling(struct put_image_params *rec)
961{
962 u32 tmp;
963
964 /* downscaling limit is 8.0 */
965 tmp = ((rec->src_scan_h << 16) / rec->dst_h) >> 16;
966 if (tmp > 7)
967 return -EINVAL;
968 tmp = ((rec->src_scan_w << 16) / rec->dst_w) >> 16;
969 if (tmp > 7)
970 return -EINVAL;
971
972 return 0;
973}
974
975static int check_overlay_src(struct drm_device *dev,
976 struct drm_intel_overlay_put_image *rec,
Chris Wilson05394f32010-11-08 19:18:58 +0000977 struct drm_i915_gem_object *new_bo)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200978{
Daniel Vetter02e792f2009-09-15 22:57:34 +0200979 int uv_hscale = uv_hsubsampling(rec->flags);
980 int uv_vscale = uv_vsubsampling(rec->flags);
Dan Carpenter8f28f542010-10-27 23:17:25 +0200981 u32 stride_mask;
982 int depth;
983 u32 tmp;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200984
985 /* check src dimensions */
986 if (IS_845G(dev) || IS_I830(dev)) {
Chris Wilson722506f2010-08-12 09:28:50 +0100987 if (rec->src_height > IMAGE_MAX_HEIGHT_LEGACY ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100988 rec->src_width > IMAGE_MAX_WIDTH_LEGACY)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200989 return -EINVAL;
990 } else {
Chris Wilson722506f2010-08-12 09:28:50 +0100991 if (rec->src_height > IMAGE_MAX_HEIGHT ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100992 rec->src_width > IMAGE_MAX_WIDTH)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200993 return -EINVAL;
994 }
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100995
Daniel Vetter02e792f2009-09-15 22:57:34 +0200996 /* better safe than sorry, use 4 as the maximal subsampling ratio */
Chris Wilson722506f2010-08-12 09:28:50 +0100997 if (rec->src_height < N_VERT_Y_TAPS*4 ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100998 rec->src_width < N_HORIZ_Y_TAPS*4)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200999 return -EINVAL;
1000
Chris Wilsona1efd142010-07-12 19:35:38 +01001001 /* check alignment constraints */
Daniel Vetter02e792f2009-09-15 22:57:34 +02001002 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +01001003 case I915_OVERLAY_RGB:
1004 /* not implemented */
1005 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001006
Chris Wilson722506f2010-08-12 09:28:50 +01001007 case I915_OVERLAY_YUV_PACKED:
Chris Wilson722506f2010-08-12 09:28:50 +01001008 if (uv_vscale != 1)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001009 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001010
1011 depth = packed_depth_bytes(rec->flags);
Chris Wilson722506f2010-08-12 09:28:50 +01001012 if (depth < 0)
1013 return depth;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001014
Chris Wilson722506f2010-08-12 09:28:50 +01001015 /* ignore UV planes */
1016 rec->stride_UV = 0;
1017 rec->offset_U = 0;
1018 rec->offset_V = 0;
1019 /* check pixel alignment */
1020 if (rec->offset_Y % depth)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001021 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001022 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001023
Chris Wilson722506f2010-08-12 09:28:50 +01001024 case I915_OVERLAY_YUV_PLANAR:
1025 if (uv_vscale < 0 || uv_hscale < 0)
1026 return -EINVAL;
1027 /* no offset restrictions for planar formats */
1028 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001029
Chris Wilson722506f2010-08-12 09:28:50 +01001030 default:
1031 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001032 }
1033
1034 if (rec->src_width % uv_hscale)
1035 return -EINVAL;
1036
1037 /* stride checking */
Chris Wilsona1efd142010-07-12 19:35:38 +01001038 if (IS_I830(dev) || IS_845G(dev))
1039 stride_mask = 255;
1040 else
1041 stride_mask = 63;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001042
1043 if (rec->stride_Y & stride_mask || rec->stride_UV & stride_mask)
1044 return -EINVAL;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001045 if (IS_GEN4(dev) && rec->stride_Y < 512)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001046 return -EINVAL;
1047
1048 tmp = (rec->flags & I915_OVERLAY_TYPE_MASK) == I915_OVERLAY_YUV_PLANAR ?
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001049 4096 : 8192;
1050 if (rec->stride_Y > tmp || rec->stride_UV > 2*1024)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001051 return -EINVAL;
1052
1053 /* check buffer dimensions */
1054 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +01001055 case I915_OVERLAY_RGB:
1056 case I915_OVERLAY_YUV_PACKED:
1057 /* always 4 Y values per depth pixels */
1058 if (packed_width_bytes(rec->flags, rec->src_width) > rec->stride_Y)
1059 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001060
Chris Wilson722506f2010-08-12 09:28:50 +01001061 tmp = rec->stride_Y*rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001062 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001063 return -EINVAL;
1064 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001065
Chris Wilson722506f2010-08-12 09:28:50 +01001066 case I915_OVERLAY_YUV_PLANAR:
1067 if (rec->src_width > rec->stride_Y)
1068 return -EINVAL;
1069 if (rec->src_width/uv_hscale > rec->stride_UV)
1070 return -EINVAL;
1071
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001072 tmp = rec->stride_Y * rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001073 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001074 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001075
1076 tmp = rec->stride_UV * (rec->src_height / uv_vscale);
Chris Wilson05394f32010-11-08 19:18:58 +00001077 if (rec->offset_U + tmp > new_bo->base.size ||
1078 rec->offset_V + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001079 return -EINVAL;
1080 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001081 }
1082
1083 return 0;
1084}
1085
Chris Wilsone9e331a2010-09-13 01:16:10 +01001086/**
1087 * Return the pipe currently connected to the panel fitter,
1088 * or -1 if the panel fitter is not present or not in use
1089 */
1090static int intel_panel_fitter_pipe(struct drm_device *dev)
1091{
1092 struct drm_i915_private *dev_priv = dev->dev_private;
1093 u32 pfit_control;
1094
1095 /* i830 doesn't have a panel fitter */
1096 if (IS_I830(dev))
1097 return -1;
1098
1099 pfit_control = I915_READ(PFIT_CONTROL);
1100
1101 /* See if the panel fitter is in use */
1102 if ((pfit_control & PFIT_ENABLE) == 0)
1103 return -1;
1104
1105 /* 965 can place panel fitter on either pipe */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001106 if (IS_GEN4(dev))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001107 return (pfit_control >> 29) & 0x3;
1108
1109 /* older chips can only use pipe 1 */
1110 return 1;
1111}
1112
Daniel Vetter02e792f2009-09-15 22:57:34 +02001113int intel_overlay_put_image(struct drm_device *dev, void *data,
Akshay Joshi0206e352011-08-16 15:34:10 -04001114 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001115{
1116 struct drm_intel_overlay_put_image *put_image_rec = data;
1117 drm_i915_private_t *dev_priv = dev->dev_private;
1118 struct intel_overlay *overlay;
1119 struct drm_mode_object *drmmode_obj;
1120 struct intel_crtc *crtc;
Chris Wilson05394f32010-11-08 19:18:58 +00001121 struct drm_i915_gem_object *new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001122 struct put_image_params *params;
1123 int ret;
1124
Daniel Vetter1cff8f62012-04-24 09:55:08 +02001125 /* No need to check for DRIVER_MODESET - we don't set it up then. */
Daniel Vetter02e792f2009-09-15 22:57:34 +02001126 overlay = dev_priv->overlay;
1127 if (!overlay) {
1128 DRM_DEBUG("userspace bug: no overlay\n");
1129 return -ENODEV;
1130 }
1131
1132 if (!(put_image_rec->flags & I915_OVERLAY_ENABLE)) {
1133 mutex_lock(&dev->mode_config.mutex);
1134 mutex_lock(&dev->struct_mutex);
1135
Chris Wilsonce453d82011-02-21 14:43:56 +00001136 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001137
1138 mutex_unlock(&dev->struct_mutex);
1139 mutex_unlock(&dev->mode_config.mutex);
1140
1141 return ret;
1142 }
1143
1144 params = kmalloc(sizeof(struct put_image_params), GFP_KERNEL);
1145 if (!params)
1146 return -ENOMEM;
1147
1148 drmmode_obj = drm_mode_object_find(dev, put_image_rec->crtc_id,
Chris Wilson722506f2010-08-12 09:28:50 +01001149 DRM_MODE_OBJECT_CRTC);
Dan Carpenter915a4282010-03-06 14:05:39 +03001150 if (!drmmode_obj) {
1151 ret = -ENOENT;
1152 goto out_free;
1153 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001154 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
1155
Chris Wilson05394f32010-11-08 19:18:58 +00001156 new_bo = to_intel_bo(drm_gem_object_lookup(dev, file_priv,
1157 put_image_rec->bo_handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001158 if (&new_bo->base == NULL) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001159 ret = -ENOENT;
1160 goto out_free;
1161 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001162
1163 mutex_lock(&dev->mode_config.mutex);
1164 mutex_lock(&dev->struct_mutex);
1165
Chris Wilsond9e86c02010-11-10 16:40:20 +00001166 if (new_bo->tiling_mode) {
1167 DRM_ERROR("buffer used for overlay image can not be tiled\n");
1168 ret = -EINVAL;
1169 goto out_unlock;
1170 }
1171
Chris Wilsonce453d82011-02-21 14:43:56 +00001172 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +01001173 if (ret != 0)
1174 goto out_unlock;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02001175
Daniel Vetter02e792f2009-09-15 22:57:34 +02001176 if (overlay->crtc != crtc) {
1177 struct drm_display_mode *mode = &crtc->base.mode;
Chris Wilsonce453d82011-02-21 14:43:56 +00001178 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001179 if (ret != 0)
1180 goto out_unlock;
1181
1182 ret = check_overlay_possible_on_crtc(overlay, crtc);
1183 if (ret != 0)
1184 goto out_unlock;
1185
1186 overlay->crtc = crtc;
1187 crtc->overlay = overlay;
1188
Chris Wilsone9e331a2010-09-13 01:16:10 +01001189 /* line too wide, i.e. one-line-mode */
1190 if (mode->hdisplay > 1024 &&
1191 intel_panel_fitter_pipe(dev) == crtc->pipe) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001192 overlay->pfit_active = 1;
1193 update_pfit_vscale_ratio(overlay);
1194 } else
1195 overlay->pfit_active = 0;
1196 }
1197
1198 ret = check_overlay_dst(overlay, put_image_rec);
1199 if (ret != 0)
1200 goto out_unlock;
1201
1202 if (overlay->pfit_active) {
1203 params->dst_y = ((((u32)put_image_rec->dst_y) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001204 overlay->pfit_vscale_ratio);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001205 /* shifting right rounds downwards, so add 1 */
1206 params->dst_h = ((((u32)put_image_rec->dst_height) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001207 overlay->pfit_vscale_ratio) + 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001208 } else {
1209 params->dst_y = put_image_rec->dst_y;
1210 params->dst_h = put_image_rec->dst_height;
1211 }
1212 params->dst_x = put_image_rec->dst_x;
1213 params->dst_w = put_image_rec->dst_width;
1214
1215 params->src_w = put_image_rec->src_width;
1216 params->src_h = put_image_rec->src_height;
1217 params->src_scan_w = put_image_rec->src_scan_width;
1218 params->src_scan_h = put_image_rec->src_scan_height;
Chris Wilson722506f2010-08-12 09:28:50 +01001219 if (params->src_scan_h > params->src_h ||
1220 params->src_scan_w > params->src_w) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001221 ret = -EINVAL;
1222 goto out_unlock;
1223 }
1224
1225 ret = check_overlay_src(dev, put_image_rec, new_bo);
1226 if (ret != 0)
1227 goto out_unlock;
1228 params->format = put_image_rec->flags & ~I915_OVERLAY_FLAGS_MASK;
1229 params->stride_Y = put_image_rec->stride_Y;
1230 params->stride_UV = put_image_rec->stride_UV;
1231 params->offset_Y = put_image_rec->offset_Y;
1232 params->offset_U = put_image_rec->offset_U;
1233 params->offset_V = put_image_rec->offset_V;
1234
1235 /* Check scaling after src size to prevent a divide-by-zero. */
1236 ret = check_overlay_scaling(params);
1237 if (ret != 0)
1238 goto out_unlock;
1239
1240 ret = intel_overlay_do_put_image(overlay, new_bo, params);
1241 if (ret != 0)
1242 goto out_unlock;
1243
1244 mutex_unlock(&dev->struct_mutex);
1245 mutex_unlock(&dev->mode_config.mutex);
1246
1247 kfree(params);
1248
1249 return 0;
1250
1251out_unlock:
1252 mutex_unlock(&dev->struct_mutex);
1253 mutex_unlock(&dev->mode_config.mutex);
Chris Wilson05394f32010-11-08 19:18:58 +00001254 drm_gem_object_unreference_unlocked(&new_bo->base);
Dan Carpenter915a4282010-03-06 14:05:39 +03001255out_free:
Daniel Vetter02e792f2009-09-15 22:57:34 +02001256 kfree(params);
1257
1258 return ret;
1259}
1260
1261static void update_reg_attrs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001262 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001263{
Ben Widawsky75020bc2012-04-16 14:07:43 -07001264 iowrite32((overlay->contrast << 18) | (overlay->brightness & 0xff),
1265 &regs->OCLRC0);
1266 iowrite32(overlay->saturation, &regs->OCLRC1);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001267}
1268
1269static bool check_gamma_bounds(u32 gamma1, u32 gamma2)
1270{
1271 int i;
1272
1273 if (gamma1 & 0xff000000 || gamma2 & 0xff000000)
1274 return false;
1275
1276 for (i = 0; i < 3; i++) {
Chris Wilson722506f2010-08-12 09:28:50 +01001277 if (((gamma1 >> i*8) & 0xff) >= ((gamma2 >> i*8) & 0xff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001278 return false;
1279 }
1280
1281 return true;
1282}
1283
1284static bool check_gamma5_errata(u32 gamma5)
1285{
1286 int i;
1287
1288 for (i = 0; i < 3; i++) {
1289 if (((gamma5 >> i*8) & 0xff) == 0x80)
1290 return false;
1291 }
1292
1293 return true;
1294}
1295
1296static int check_gamma(struct drm_intel_overlay_attrs *attrs)
1297{
Chris Wilson722506f2010-08-12 09:28:50 +01001298 if (!check_gamma_bounds(0, attrs->gamma0) ||
1299 !check_gamma_bounds(attrs->gamma0, attrs->gamma1) ||
1300 !check_gamma_bounds(attrs->gamma1, attrs->gamma2) ||
1301 !check_gamma_bounds(attrs->gamma2, attrs->gamma3) ||
1302 !check_gamma_bounds(attrs->gamma3, attrs->gamma4) ||
1303 !check_gamma_bounds(attrs->gamma4, attrs->gamma5) ||
1304 !check_gamma_bounds(attrs->gamma5, 0x00ffffff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001305 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001306
Daniel Vetter02e792f2009-09-15 22:57:34 +02001307 if (!check_gamma5_errata(attrs->gamma5))
1308 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001309
Daniel Vetter02e792f2009-09-15 22:57:34 +02001310 return 0;
1311}
1312
1313int intel_overlay_attrs(struct drm_device *dev, void *data,
Akshay Joshi0206e352011-08-16 15:34:10 -04001314 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001315{
1316 struct drm_intel_overlay_attrs *attrs = data;
Akshay Joshi0206e352011-08-16 15:34:10 -04001317 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001318 struct intel_overlay *overlay;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001319 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001320 int ret;
1321
Daniel Vetter1cff8f62012-04-24 09:55:08 +02001322 /* No need to check for DRIVER_MODESET - we don't set it up then. */
Daniel Vetter02e792f2009-09-15 22:57:34 +02001323 overlay = dev_priv->overlay;
1324 if (!overlay) {
1325 DRM_DEBUG("userspace bug: no overlay\n");
1326 return -ENODEV;
1327 }
1328
1329 mutex_lock(&dev->mode_config.mutex);
1330 mutex_lock(&dev->struct_mutex);
1331
Chris Wilson60fc3322010-08-12 10:44:45 +01001332 ret = -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001333 if (!(attrs->flags & I915_OVERLAY_UPDATE_ATTRS)) {
Chris Wilson60fc3322010-08-12 10:44:45 +01001334 attrs->color_key = overlay->color_key;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001335 attrs->brightness = overlay->brightness;
Chris Wilson60fc3322010-08-12 10:44:45 +01001336 attrs->contrast = overlay->contrast;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001337 attrs->saturation = overlay->saturation;
1338
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001339 if (!IS_GEN2(dev)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001340 attrs->gamma0 = I915_READ(OGAMC0);
1341 attrs->gamma1 = I915_READ(OGAMC1);
1342 attrs->gamma2 = I915_READ(OGAMC2);
1343 attrs->gamma3 = I915_READ(OGAMC3);
1344 attrs->gamma4 = I915_READ(OGAMC4);
1345 attrs->gamma5 = I915_READ(OGAMC5);
1346 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001347 } else {
Chris Wilson60fc3322010-08-12 10:44:45 +01001348 if (attrs->brightness < -128 || attrs->brightness > 127)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001349 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001350 if (attrs->contrast > 255)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001351 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001352 if (attrs->saturation > 1023)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001353 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001354
Chris Wilson60fc3322010-08-12 10:44:45 +01001355 overlay->color_key = attrs->color_key;
1356 overlay->brightness = attrs->brightness;
1357 overlay->contrast = attrs->contrast;
1358 overlay->saturation = attrs->saturation;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001359
Chris Wilson8d74f652010-08-12 10:35:26 +01001360 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001361 if (!regs) {
1362 ret = -ENOMEM;
1363 goto out_unlock;
1364 }
1365
1366 update_reg_attrs(overlay, regs);
1367
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001368 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001369
1370 if (attrs->flags & I915_OVERLAY_UPDATE_GAMMA) {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001371 if (IS_GEN2(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001372 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001373
1374 if (overlay->active) {
1375 ret = -EBUSY;
1376 goto out_unlock;
1377 }
1378
1379 ret = check_gamma(attrs);
Chris Wilson60fc3322010-08-12 10:44:45 +01001380 if (ret)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001381 goto out_unlock;
1382
1383 I915_WRITE(OGAMC0, attrs->gamma0);
1384 I915_WRITE(OGAMC1, attrs->gamma1);
1385 I915_WRITE(OGAMC2, attrs->gamma2);
1386 I915_WRITE(OGAMC3, attrs->gamma3);
1387 I915_WRITE(OGAMC4, attrs->gamma4);
1388 I915_WRITE(OGAMC5, attrs->gamma5);
1389 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001390 }
1391
Chris Wilson60fc3322010-08-12 10:44:45 +01001392 ret = 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001393out_unlock:
1394 mutex_unlock(&dev->struct_mutex);
1395 mutex_unlock(&dev->mode_config.mutex);
1396
1397 return ret;
1398}
1399
1400void intel_setup_overlay(struct drm_device *dev)
1401{
Akshay Joshi0206e352011-08-16 15:34:10 -04001402 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001403 struct intel_overlay *overlay;
Chris Wilson05394f32010-11-08 19:18:58 +00001404 struct drm_i915_gem_object *reg_bo;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001405 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001406 int ret;
1407
Chris Wilson315781482010-08-12 09:42:51 +01001408 if (!HAS_OVERLAY(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001409 return;
1410
1411 overlay = kzalloc(sizeof(struct intel_overlay), GFP_KERNEL);
1412 if (!overlay)
1413 return;
Chris Wilson79d24272011-06-28 11:27:47 +01001414
1415 mutex_lock(&dev->struct_mutex);
1416 if (WARN_ON(dev_priv->overlay))
1417 goto out_free;
1418
Daniel Vetter02e792f2009-09-15 22:57:34 +02001419 overlay->dev = dev;
1420
Daniel Vetterac52bc52010-04-09 19:05:06 +00001421 reg_bo = i915_gem_alloc_object(dev, PAGE_SIZE);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001422 if (!reg_bo)
1423 goto out_free;
Chris Wilson05394f32010-11-08 19:18:58 +00001424 overlay->reg_bo = reg_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001425
Chris Wilson315781482010-08-12 09:42:51 +01001426 if (OVERLAY_NEEDS_PHYSICAL(dev)) {
1427 ret = i915_gem_attach_phys_object(dev, reg_bo,
1428 I915_GEM_PHYS_OVERLAY_REGS,
Chris Wilsona2930122010-08-12 10:47:56 +01001429 PAGE_SIZE);
Akshay Joshi0206e352011-08-16 15:34:10 -04001430 if (ret) {
1431 DRM_ERROR("failed to attach phys overlay regs\n");
1432 goto out_free_bo;
1433 }
Chris Wilson05394f32010-11-08 19:18:58 +00001434 overlay->flip_addr = reg_bo->phys_obj->handle->busaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001435 } else {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001436 ret = i915_gem_object_pin(reg_bo, PAGE_SIZE, true);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001437 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001438 DRM_ERROR("failed to pin overlay register bo\n");
1439 goto out_free_bo;
1440 }
Chris Wilson05394f32010-11-08 19:18:58 +00001441 overlay->flip_addr = reg_bo->gtt_offset;
Chris Wilson0ddc1282010-08-12 09:35:00 +01001442
1443 ret = i915_gem_object_set_to_gtt_domain(reg_bo, true);
1444 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001445 DRM_ERROR("failed to move overlay register bo into the GTT\n");
1446 goto out_unpin_bo;
1447 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001448 }
1449
1450 /* init all values */
1451 overlay->color_key = 0x0101fe;
1452 overlay->brightness = -19;
1453 overlay->contrast = 75;
1454 overlay->saturation = 146;
1455
Chris Wilson8d74f652010-08-12 10:35:26 +01001456 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001457 if (!regs)
Chris Wilson79d24272011-06-28 11:27:47 +01001458 goto out_unpin_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001459
Ben Widawsky75020bc2012-04-16 14:07:43 -07001460 memset_io(regs, 0, sizeof(struct overlay_registers));
Daniel Vetter02e792f2009-09-15 22:57:34 +02001461 update_polyphase_filter(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001462 update_reg_attrs(overlay, regs);
1463
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001464 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001465
1466 dev_priv->overlay = overlay;
Chris Wilson79d24272011-06-28 11:27:47 +01001467 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001468 DRM_INFO("initialized overlay support\n");
1469 return;
1470
Chris Wilson0ddc1282010-08-12 09:35:00 +01001471out_unpin_bo:
Chris Wilson79d24272011-06-28 11:27:47 +01001472 if (!OVERLAY_NEEDS_PHYSICAL(dev))
1473 i915_gem_object_unpin(reg_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001474out_free_bo:
Chris Wilson05394f32010-11-08 19:18:58 +00001475 drm_gem_object_unreference(&reg_bo->base);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001476out_free:
Chris Wilson79d24272011-06-28 11:27:47 +01001477 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001478 kfree(overlay);
1479 return;
1480}
1481
1482void intel_cleanup_overlay(struct drm_device *dev)
1483{
Chris Wilson722506f2010-08-12 09:28:50 +01001484 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001485
Chris Wilson62cf4e62010-08-12 10:50:36 +01001486 if (!dev_priv->overlay)
1487 return;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001488
Chris Wilson62cf4e62010-08-12 10:50:36 +01001489 /* The bo's should be free'd by the generic code already.
1490 * Furthermore modesetting teardown happens beforehand so the
1491 * hardware should be off already */
1492 BUG_ON(dev_priv->overlay->active);
1493
1494 drm_gem_object_unreference_unlocked(&dev_priv->overlay->reg_bo->base);
1495 kfree(dev_priv->overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001496}
Chris Wilson6ef3d422010-08-04 20:26:07 +01001497
Chris Wilson3bd3c932010-08-19 08:19:30 +01001498#ifdef CONFIG_DEBUG_FS
1499#include <linux/seq_file.h>
1500
Chris Wilson6ef3d422010-08-04 20:26:07 +01001501struct intel_overlay_error_state {
1502 struct overlay_registers regs;
1503 unsigned long base;
1504 u32 dovsta;
1505 u32 isr;
1506};
1507
Ben Widawsky75020bc2012-04-16 14:07:43 -07001508static struct overlay_registers __iomem *
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001509intel_overlay_map_regs_atomic(struct intel_overlay *overlay)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001510{
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001511 drm_i915_private_t *dev_priv = overlay->dev->dev_private;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001512 struct overlay_registers __iomem *regs;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001513
1514 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -07001515 /* Cast to make sparse happy, but it's wc memory anyway, so
1516 * equivalent to the wc io mapping on X86. */
1517 regs = (struct overlay_registers __iomem *)
1518 overlay->reg_bo->phys_obj->handle->vaddr;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001519 else
1520 regs = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001521 overlay->reg_bo->gtt_offset);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001522
1523 return regs;
1524}
1525
1526static void intel_overlay_unmap_regs_atomic(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001527 struct overlay_registers __iomem *regs)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001528{
1529 if (!OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001530 io_mapping_unmap_atomic(regs);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001531}
1532
1533
Chris Wilson6ef3d422010-08-04 20:26:07 +01001534struct intel_overlay_error_state *
1535intel_overlay_capture_error_state(struct drm_device *dev)
1536{
Akshay Joshi0206e352011-08-16 15:34:10 -04001537 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson6ef3d422010-08-04 20:26:07 +01001538 struct intel_overlay *overlay = dev_priv->overlay;
1539 struct intel_overlay_error_state *error;
1540 struct overlay_registers __iomem *regs;
1541
1542 if (!overlay || !overlay->active)
1543 return NULL;
1544
1545 error = kmalloc(sizeof(*error), GFP_ATOMIC);
1546 if (error == NULL)
1547 return NULL;
1548
1549 error->dovsta = I915_READ(DOVSTA);
1550 error->isr = I915_READ(ISR);
Chris Wilson315781482010-08-12 09:42:51 +01001551 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -07001552 error->base = (__force long)overlay->reg_bo->phys_obj->handle->vaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001553 else
Ben Widawsky75020bc2012-04-16 14:07:43 -07001554 error->base = overlay->reg_bo->gtt_offset;
Chris Wilson6ef3d422010-08-04 20:26:07 +01001555
1556 regs = intel_overlay_map_regs_atomic(overlay);
1557 if (!regs)
1558 goto err;
1559
1560 memcpy_fromio(&error->regs, regs, sizeof(struct overlay_registers));
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001561 intel_overlay_unmap_regs_atomic(overlay, regs);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001562
1563 return error;
1564
1565err:
1566 kfree(error);
1567 return NULL;
1568}
1569
1570void
1571intel_overlay_print_error_state(struct seq_file *m, struct intel_overlay_error_state *error)
1572{
1573 seq_printf(m, "Overlay, status: 0x%08x, interrupt: 0x%08x\n",
1574 error->dovsta, error->isr);
1575 seq_printf(m, " Register file at 0x%08lx:\n",
1576 error->base);
1577
1578#define P(x) seq_printf(m, " " #x ": 0x%08x\n", error->regs.x)
1579 P(OBUF_0Y);
1580 P(OBUF_1Y);
1581 P(OBUF_0U);
1582 P(OBUF_0V);
1583 P(OBUF_1U);
1584 P(OBUF_1V);
1585 P(OSTRIDE);
1586 P(YRGB_VPH);
1587 P(UV_VPH);
1588 P(HORZ_PH);
1589 P(INIT_PHS);
1590 P(DWINPOS);
1591 P(DWINSZ);
1592 P(SWIDTH);
1593 P(SWIDTHSW);
1594 P(SHEIGHT);
1595 P(YRGBSCALE);
1596 P(UVSCALE);
1597 P(OCLRC0);
1598 P(OCLRC1);
1599 P(DCLRKV);
1600 P(DCLRKM);
1601 P(SCLRKVH);
1602 P(SCLRKVL);
1603 P(SCLRKEN);
1604 P(OCONFIG);
1605 P(OCMD);
1606 P(OSTART_0Y);
1607 P(OSTART_1Y);
1608 P(OSTART_0U);
1609 P(OSTART_0V);
1610 P(OSTART_1U);
1611 P(OSTART_1V);
1612 P(OTILEOFF_0Y);
1613 P(OTILEOFF_1Y);
1614 P(OTILEOFF_0U);
1615 P(OTILEOFF_0V);
1616 P(OTILEOFF_1U);
1617 P(OTILEOFF_1V);
1618 P(FASTHSCALE);
1619 P(UVSCALEV);
1620#undef P
1621}
Chris Wilson3bd3c932010-08-19 08:19:30 +01001622#endif