blob: 67a2501d519db97bc59e24f0a93c334e58fc1f74 [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{
Akshay Joshi0206e352011-08-16 15:34:10 -0400192 drm_i915_private_t *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))
Ben Widawsky75020bc2012-04-16 14:07:43 -0700196 regs = (struct overlay_registers __iomem *)overlay->reg_bo->phys_obj->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,
Chris Wilson8d74f652010-08-12 10:35:26 +0100199 overlay->reg_bo->gtt_offset);
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;
215 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter6d90c952012-04-26 23:28:05 +0200216 struct intel_ring_buffer *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);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100220 ret = i915_add_request(ring, NULL, &overlay->last_flip_req);
221 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;
Daniel Vetter6d90c952012-04-26 23:28:05 +0200239 struct intel_ring_buffer *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;
Akshay Joshi0206e352011-08-16 15:34:10 -0400265 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter6d90c952012-04-26 23:28:05 +0200266 struct intel_ring_buffer *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
Chris Wilsonacb868d2012-09-26 13:47:30 +0100289 return i915_add_request(ring, NULL, &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
Chris Wilsonb303cf92010-08-12 14:03:48 +0100296 i915_gem_object_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
309 i915_gem_object_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;
Daniel Vetter6d90c952012-04-26 23:28:05 +0200323 struct intel_ring_buffer *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;
Zou Nan hai852835f2010-05-21 09:08:56 +0800365 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter6d90c952012-04-26 23:28:05 +0200366 struct intel_ring_buffer *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;
391 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter6d90c952012-04-26 23:28:05 +0200392 struct intel_ring_buffer *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 Vetter02e792f2009-09-15 22:57:34 +0200418 return 0;
419}
420
421struct put_image_params {
422 int format;
423 short dst_x;
424 short dst_y;
425 short dst_w;
426 short dst_h;
427 short src_w;
428 short src_scan_h;
429 short src_scan_w;
430 short src_h;
431 short stride_Y;
432 short stride_UV;
433 int offset_Y;
434 int offset_U;
435 int offset_V;
436};
437
438static int packed_depth_bytes(u32 format)
439{
440 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100441 case I915_OVERLAY_YUV422:
442 return 4;
443 case I915_OVERLAY_YUV411:
444 /* return 6; not implemented */
445 default:
446 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200447 }
448}
449
450static int packed_width_bytes(u32 format, short width)
451{
452 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100453 case I915_OVERLAY_YUV422:
454 return width << 1;
455 default:
456 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200457 }
458}
459
460static int uv_hsubsampling(u32 format)
461{
462 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100463 case I915_OVERLAY_YUV422:
464 case I915_OVERLAY_YUV420:
465 return 2;
466 case I915_OVERLAY_YUV411:
467 case I915_OVERLAY_YUV410:
468 return 4;
469 default:
470 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200471 }
472}
473
474static int uv_vsubsampling(u32 format)
475{
476 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100477 case I915_OVERLAY_YUV420:
478 case I915_OVERLAY_YUV410:
479 return 2;
480 case I915_OVERLAY_YUV422:
481 case I915_OVERLAY_YUV411:
482 return 1;
483 default:
484 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200485 }
486}
487
488static u32 calc_swidthsw(struct drm_device *dev, u32 offset, u32 width)
489{
490 u32 mask, shift, ret;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100491 if (IS_GEN2(dev)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +0200492 mask = 0x1f;
493 shift = 5;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100494 } else {
495 mask = 0x3f;
496 shift = 6;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200497 }
498 ret = ((offset + width + mask) >> shift) - (offset >> shift);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100499 if (!IS_GEN2(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +0200500 ret <<= 1;
Akshay Joshi0206e352011-08-16 15:34:10 -0400501 ret -= 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200502 return ret << 2;
503}
504
505static const u16 y_static_hcoeffs[N_HORIZ_Y_TAPS * N_PHASES] = {
506 0x3000, 0xb4a0, 0x1930, 0x1920, 0xb4a0,
507 0x3000, 0xb500, 0x19d0, 0x1880, 0xb440,
508 0x3000, 0xb540, 0x1a88, 0x2f80, 0xb3e0,
509 0x3000, 0xb580, 0x1b30, 0x2e20, 0xb380,
510 0x3000, 0xb5c0, 0x1bd8, 0x2cc0, 0xb320,
511 0x3020, 0xb5e0, 0x1c60, 0x2b80, 0xb2c0,
512 0x3020, 0xb5e0, 0x1cf8, 0x2a20, 0xb260,
513 0x3020, 0xb5e0, 0x1d80, 0x28e0, 0xb200,
514 0x3020, 0xb5c0, 0x1e08, 0x3f40, 0xb1c0,
515 0x3020, 0xb580, 0x1e78, 0x3ce0, 0xb160,
516 0x3040, 0xb520, 0x1ed8, 0x3aa0, 0xb120,
517 0x3040, 0xb4a0, 0x1f30, 0x3880, 0xb0e0,
518 0x3040, 0xb400, 0x1f78, 0x3680, 0xb0a0,
519 0x3020, 0xb340, 0x1fb8, 0x34a0, 0xb060,
520 0x3020, 0xb240, 0x1fe0, 0x32e0, 0xb040,
521 0x3020, 0xb140, 0x1ff8, 0x3160, 0xb020,
Chris Wilson722506f2010-08-12 09:28:50 +0100522 0xb000, 0x3000, 0x0800, 0x3000, 0xb000
523};
524
Daniel Vetter02e792f2009-09-15 22:57:34 +0200525static const u16 uv_static_hcoeffs[N_HORIZ_UV_TAPS * N_PHASES] = {
526 0x3000, 0x1800, 0x1800, 0xb000, 0x18d0, 0x2e60,
527 0xb000, 0x1990, 0x2ce0, 0xb020, 0x1a68, 0x2b40,
528 0xb040, 0x1b20, 0x29e0, 0xb060, 0x1bd8, 0x2880,
529 0xb080, 0x1c88, 0x3e60, 0xb0a0, 0x1d28, 0x3c00,
530 0xb0c0, 0x1db8, 0x39e0, 0xb0e0, 0x1e40, 0x37e0,
531 0xb100, 0x1eb8, 0x3620, 0xb100, 0x1f18, 0x34a0,
532 0xb100, 0x1f68, 0x3360, 0xb0e0, 0x1fa8, 0x3240,
533 0xb0c0, 0x1fe0, 0x3140, 0xb060, 0x1ff0, 0x30a0,
Chris Wilson722506f2010-08-12 09:28:50 +0100534 0x3000, 0x0800, 0x3000
535};
Daniel Vetter02e792f2009-09-15 22:57:34 +0200536
Ben Widawsky75020bc2012-04-16 14:07:43 -0700537static void update_polyphase_filter(struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200538{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700539 memcpy_toio(regs->Y_HCOEFS, y_static_hcoeffs, sizeof(y_static_hcoeffs));
540 memcpy_toio(regs->UV_HCOEFS, uv_static_hcoeffs,
541 sizeof(uv_static_hcoeffs));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200542}
543
544static bool update_scaling_factors(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700545 struct overlay_registers __iomem *regs,
Daniel Vetter02e792f2009-09-15 22:57:34 +0200546 struct put_image_params *params)
547{
548 /* fixed point with a 12 bit shift */
549 u32 xscale, yscale, xscale_UV, yscale_UV;
550#define FP_SHIFT 12
551#define FRACT_MASK 0xfff
552 bool scale_changed = false;
553 int uv_hscale = uv_hsubsampling(params->format);
554 int uv_vscale = uv_vsubsampling(params->format);
555
556 if (params->dst_w > 1)
557 xscale = ((params->src_scan_w - 1) << FP_SHIFT)
558 /(params->dst_w);
559 else
560 xscale = 1 << FP_SHIFT;
561
562 if (params->dst_h > 1)
563 yscale = ((params->src_scan_h - 1) << FP_SHIFT)
564 /(params->dst_h);
565 else
566 yscale = 1 << FP_SHIFT;
567
568 /*if (params->format & I915_OVERLAY_YUV_PLANAR) {*/
Chris Wilson722506f2010-08-12 09:28:50 +0100569 xscale_UV = xscale/uv_hscale;
570 yscale_UV = yscale/uv_vscale;
571 /* make the Y scale to UV scale ratio an exact multiply */
572 xscale = xscale_UV * uv_hscale;
573 yscale = yscale_UV * uv_vscale;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200574 /*} else {
Chris Wilson722506f2010-08-12 09:28:50 +0100575 xscale_UV = 0;
576 yscale_UV = 0;
577 }*/
Daniel Vetter02e792f2009-09-15 22:57:34 +0200578
579 if (xscale != overlay->old_xscale || yscale != overlay->old_yscale)
580 scale_changed = true;
581 overlay->old_xscale = xscale;
582 overlay->old_yscale = yscale;
583
Ben Widawsky75020bc2012-04-16 14:07:43 -0700584 iowrite32(((yscale & FRACT_MASK) << 20) |
585 ((xscale >> FP_SHIFT) << 16) |
586 ((xscale & FRACT_MASK) << 3),
587 &regs->YRGBSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100588
Ben Widawsky75020bc2012-04-16 14:07:43 -0700589 iowrite32(((yscale_UV & FRACT_MASK) << 20) |
590 ((xscale_UV >> FP_SHIFT) << 16) |
591 ((xscale_UV & FRACT_MASK) << 3),
592 &regs->UVSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100593
Ben Widawsky75020bc2012-04-16 14:07:43 -0700594 iowrite32((((yscale >> FP_SHIFT) << 16) |
595 ((yscale_UV >> FP_SHIFT) << 0)),
596 &regs->UVSCALEV);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200597
598 if (scale_changed)
599 update_polyphase_filter(regs);
600
601 return scale_changed;
602}
603
604static void update_colorkey(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700605 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200606{
607 u32 key = overlay->color_key;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100608
Daniel Vetter02e792f2009-09-15 22:57:34 +0200609 switch (overlay->crtc->base.fb->bits_per_pixel) {
Chris Wilson722506f2010-08-12 09:28:50 +0100610 case 8:
Ben Widawsky75020bc2012-04-16 14:07:43 -0700611 iowrite32(0, &regs->DCLRKV);
612 iowrite32(CLK_RGB8I_MASK | DST_KEY_ENABLE, &regs->DCLRKM);
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100613 break;
614
Chris Wilson722506f2010-08-12 09:28:50 +0100615 case 16:
616 if (overlay->crtc->base.fb->depth == 15) {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700617 iowrite32(RGB15_TO_COLORKEY(key), &regs->DCLRKV);
618 iowrite32(CLK_RGB15_MASK | DST_KEY_ENABLE,
619 &regs->DCLRKM);
Chris Wilson722506f2010-08-12 09:28:50 +0100620 } else {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700621 iowrite32(RGB16_TO_COLORKEY(key), &regs->DCLRKV);
622 iowrite32(CLK_RGB16_MASK | DST_KEY_ENABLE,
623 &regs->DCLRKM);
Chris Wilson722506f2010-08-12 09:28:50 +0100624 }
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100625 break;
626
Chris Wilson722506f2010-08-12 09:28:50 +0100627 case 24:
628 case 32:
Ben Widawsky75020bc2012-04-16 14:07:43 -0700629 iowrite32(key, &regs->DCLRKV);
630 iowrite32(CLK_RGB24_MASK | DST_KEY_ENABLE, &regs->DCLRKM);
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100631 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200632 }
633}
634
635static u32 overlay_cmd_reg(struct put_image_params *params)
636{
637 u32 cmd = OCMD_ENABLE | OCMD_BUF_TYPE_FRAME | OCMD_BUFFER0;
638
639 if (params->format & I915_OVERLAY_YUV_PLANAR) {
640 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100641 case I915_OVERLAY_YUV422:
642 cmd |= OCMD_YUV_422_PLANAR;
643 break;
644 case I915_OVERLAY_YUV420:
645 cmd |= OCMD_YUV_420_PLANAR;
646 break;
647 case I915_OVERLAY_YUV411:
648 case I915_OVERLAY_YUV410:
649 cmd |= OCMD_YUV_410_PLANAR;
650 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200651 }
652 } else { /* YUV packed */
653 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100654 case I915_OVERLAY_YUV422:
655 cmd |= OCMD_YUV_422_PACKED;
656 break;
657 case I915_OVERLAY_YUV411:
658 cmd |= OCMD_YUV_411_PACKED;
659 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200660 }
661
662 switch (params->format & I915_OVERLAY_SWAP_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100663 case I915_OVERLAY_NO_SWAP:
664 break;
665 case I915_OVERLAY_UV_SWAP:
666 cmd |= OCMD_UV_SWAP;
667 break;
668 case I915_OVERLAY_Y_SWAP:
669 cmd |= OCMD_Y_SWAP;
670 break;
671 case I915_OVERLAY_Y_AND_UV_SWAP:
672 cmd |= OCMD_Y_AND_UV_SWAP;
673 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200674 }
675 }
676
677 return cmd;
678}
679
Chris Wilson5fe82c52010-08-12 12:38:21 +0100680static int intel_overlay_do_put_image(struct intel_overlay *overlay,
Chris Wilson05394f32010-11-08 19:18:58 +0000681 struct drm_i915_gem_object *new_bo,
Chris Wilson5fe82c52010-08-12 12:38:21 +0100682 struct put_image_params *params)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200683{
684 int ret, tmp_width;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700685 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200686 bool scale_changed = false;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200687 struct drm_device *dev = overlay->dev;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700688 u32 swidth, swidthsw, sheight, ostride;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200689
690 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
691 BUG_ON(!mutex_is_locked(&dev->mode_config.mutex));
692 BUG_ON(!overlay);
693
Daniel Vetter02e792f2009-09-15 22:57:34 +0200694 ret = intel_overlay_release_old_vid(overlay);
695 if (ret != 0)
696 return ret;
697
Chris Wilson2da3b9b2011-04-14 09:41:17 +0100698 ret = i915_gem_object_pin_to_display_plane(new_bo, 0, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200699 if (ret != 0)
700 return ret;
701
Chris Wilsond9e86c02010-11-10 16:40:20 +0000702 ret = i915_gem_object_put_fence(new_bo);
703 if (ret)
704 goto out_unpin;
705
Daniel Vetter02e792f2009-09-15 22:57:34 +0200706 if (!overlay->active) {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700707 u32 oconfig;
Chris Wilson8d74f652010-08-12 10:35:26 +0100708 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200709 if (!regs) {
710 ret = -ENOMEM;
711 goto out_unpin;
712 }
Ben Widawsky75020bc2012-04-16 14:07:43 -0700713 oconfig = OCONF_CC_OUT_8BIT;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100714 if (IS_GEN4(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -0700715 oconfig |= OCONF_CSC_MODE_BT709;
716 oconfig |= overlay->crtc->pipe == 0 ?
Daniel Vetter02e792f2009-09-15 22:57:34 +0200717 OCONF_PIPE_A : OCONF_PIPE_B;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700718 iowrite32(oconfig, &regs->OCONFIG);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100719 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200720
721 ret = intel_overlay_on(overlay);
722 if (ret != 0)
723 goto out_unpin;
724 }
725
Chris Wilson8d74f652010-08-12 10:35:26 +0100726 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200727 if (!regs) {
728 ret = -ENOMEM;
729 goto out_unpin;
730 }
731
Ben Widawsky75020bc2012-04-16 14:07:43 -0700732 iowrite32((params->dst_y << 16) | params->dst_x, &regs->DWINPOS);
733 iowrite32((params->dst_h << 16) | params->dst_w, &regs->DWINSZ);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200734
735 if (params->format & I915_OVERLAY_YUV_PACKED)
736 tmp_width = packed_width_bytes(params->format, params->src_w);
737 else
738 tmp_width = params->src_w;
739
Ben Widawsky75020bc2012-04-16 14:07:43 -0700740 swidth = params->src_w;
741 swidthsw = calc_swidthsw(overlay->dev, params->offset_Y, tmp_width);
742 sheight = params->src_h;
743 iowrite32(new_bo->gtt_offset + params->offset_Y, &regs->OBUF_0Y);
744 ostride = params->stride_Y;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200745
746 if (params->format & I915_OVERLAY_YUV_PLANAR) {
747 int uv_hscale = uv_hsubsampling(params->format);
748 int uv_vscale = uv_vsubsampling(params->format);
749 u32 tmp_U, tmp_V;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700750 swidth |= (params->src_w/uv_hscale) << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200751 tmp_U = calc_swidthsw(overlay->dev, params->offset_U,
Chris Wilson722506f2010-08-12 09:28:50 +0100752 params->src_w/uv_hscale);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200753 tmp_V = calc_swidthsw(overlay->dev, params->offset_V,
Chris Wilson722506f2010-08-12 09:28:50 +0100754 params->src_w/uv_hscale);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700755 swidthsw |= max_t(u32, tmp_U, tmp_V) << 16;
756 sheight |= (params->src_h/uv_vscale) << 16;
757 iowrite32(new_bo->gtt_offset + params->offset_U, &regs->OBUF_0U);
758 iowrite32(new_bo->gtt_offset + params->offset_V, &regs->OBUF_0V);
759 ostride |= params->stride_UV << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200760 }
761
Ben Widawsky75020bc2012-04-16 14:07:43 -0700762 iowrite32(swidth, &regs->SWIDTH);
763 iowrite32(swidthsw, &regs->SWIDTHSW);
764 iowrite32(sheight, &regs->SHEIGHT);
765 iowrite32(ostride, &regs->OSTRIDE);
766
Daniel Vetter02e792f2009-09-15 22:57:34 +0200767 scale_changed = update_scaling_factors(overlay, regs, params);
768
769 update_colorkey(overlay, regs);
770
Ben Widawsky75020bc2012-04-16 14:07:43 -0700771 iowrite32(overlay_cmd_reg(params), &regs->OCMD);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200772
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100773 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200774
Chris Wilson8dc5d142010-08-12 12:36:12 +0100775 ret = intel_overlay_continue(overlay, scale_changed);
776 if (ret)
777 goto out_unpin;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200778
779 overlay->old_vid_bo = overlay->vid_bo;
Chris Wilson05394f32010-11-08 19:18:58 +0000780 overlay->vid_bo = new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200781
782 return 0;
783
784out_unpin:
785 i915_gem_object_unpin(new_bo);
786 return ret;
787}
788
Chris Wilsonce453d82011-02-21 14:43:56 +0000789int intel_overlay_switch_off(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200790{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700791 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200792 struct drm_device *dev = overlay->dev;
Chris Wilson5dcdbcb2010-08-12 13:50:28 +0100793 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200794
795 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
796 BUG_ON(!mutex_is_locked(&dev->mode_config.mutex));
797
Chris Wilsonce453d82011-02-21 14:43:56 +0000798 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +0100799 if (ret != 0)
800 return ret;
Daniel Vetter9bedb972009-11-30 15:55:49 +0100801
Daniel Vetter02e792f2009-09-15 22:57:34 +0200802 if (!overlay->active)
803 return 0;
804
Daniel Vetter02e792f2009-09-15 22:57:34 +0200805 ret = intel_overlay_release_old_vid(overlay);
806 if (ret != 0)
807 return ret;
808
Chris Wilson8d74f652010-08-12 10:35:26 +0100809 regs = intel_overlay_map_regs(overlay);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700810 iowrite32(0, &regs->OCMD);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100811 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200812
Chris Wilsonce453d82011-02-21 14:43:56 +0000813 ret = intel_overlay_off(overlay);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200814 if (ret != 0)
815 return ret;
816
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200817 intel_overlay_off_tail(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200818 return 0;
819}
820
821static int check_overlay_possible_on_crtc(struct intel_overlay *overlay,
822 struct intel_crtc *crtc)
823{
Chris Wilson722506f2010-08-12 09:28:50 +0100824 drm_i915_private_t *dev_priv = overlay->dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200825
Chris Wilsonf7abfe82010-09-13 14:19:16 +0100826 if (!crtc->active)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200827 return -EINVAL;
828
Daniel Vetter02e792f2009-09-15 22:57:34 +0200829 /* can't use the overlay with double wide pipe */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100830 if (INTEL_INFO(overlay->dev)->gen < 4 &&
Chris Wilsonf7abfe82010-09-13 14:19:16 +0100831 (I915_READ(PIPECONF(crtc->pipe)) & (PIPECONF_DOUBLE_WIDE | PIPECONF_ENABLE)) != PIPECONF_ENABLE)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200832 return -EINVAL;
833
834 return 0;
835}
836
837static void update_pfit_vscale_ratio(struct intel_overlay *overlay)
838{
839 struct drm_device *dev = overlay->dev;
Chris Wilson722506f2010-08-12 09:28:50 +0100840 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200841 u32 pfit_control = I915_READ(PFIT_CONTROL);
Chris Wilson446d2182010-08-12 11:15:58 +0100842 u32 ratio;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200843
844 /* XXX: This is not the same logic as in the xorg driver, but more in
Chris Wilson446d2182010-08-12 11:15:58 +0100845 * line with the intel documentation for the i965
846 */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100847 if (INTEL_INFO(dev)->gen >= 4) {
Akshay Joshi0206e352011-08-16 15:34:10 -0400848 /* on i965 use the PGM reg to read out the autoscaler values */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100849 ratio = I915_READ(PFIT_PGM_RATIOS) >> PFIT_VERT_SCALE_SHIFT_965;
850 } else {
Chris Wilson446d2182010-08-12 11:15:58 +0100851 if (pfit_control & VERT_AUTO_SCALE)
852 ratio = I915_READ(PFIT_AUTO_RATIOS);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200853 else
Chris Wilson446d2182010-08-12 11:15:58 +0100854 ratio = I915_READ(PFIT_PGM_RATIOS);
855 ratio >>= PFIT_VERT_SCALE_SHIFT;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200856 }
857
858 overlay->pfit_vscale_ratio = ratio;
859}
860
861static int check_overlay_dst(struct intel_overlay *overlay,
862 struct drm_intel_overlay_put_image *rec)
863{
864 struct drm_display_mode *mode = &overlay->crtc->base.mode;
865
Daniel Vetter75c13992012-01-28 23:48:46 +0100866 if (rec->dst_x < mode->hdisplay &&
867 rec->dst_x + rec->dst_width <= mode->hdisplay &&
868 rec->dst_y < mode->vdisplay &&
869 rec->dst_y + rec->dst_height <= mode->vdisplay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200870 return 0;
871 else
872 return -EINVAL;
873}
874
875static int check_overlay_scaling(struct put_image_params *rec)
876{
877 u32 tmp;
878
879 /* downscaling limit is 8.0 */
880 tmp = ((rec->src_scan_h << 16) / rec->dst_h) >> 16;
881 if (tmp > 7)
882 return -EINVAL;
883 tmp = ((rec->src_scan_w << 16) / rec->dst_w) >> 16;
884 if (tmp > 7)
885 return -EINVAL;
886
887 return 0;
888}
889
890static int check_overlay_src(struct drm_device *dev,
891 struct drm_intel_overlay_put_image *rec,
Chris Wilson05394f32010-11-08 19:18:58 +0000892 struct drm_i915_gem_object *new_bo)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200893{
Daniel Vetter02e792f2009-09-15 22:57:34 +0200894 int uv_hscale = uv_hsubsampling(rec->flags);
895 int uv_vscale = uv_vsubsampling(rec->flags);
Dan Carpenter8f28f542010-10-27 23:17:25 +0200896 u32 stride_mask;
897 int depth;
898 u32 tmp;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200899
900 /* check src dimensions */
901 if (IS_845G(dev) || IS_I830(dev)) {
Chris Wilson722506f2010-08-12 09:28:50 +0100902 if (rec->src_height > IMAGE_MAX_HEIGHT_LEGACY ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100903 rec->src_width > IMAGE_MAX_WIDTH_LEGACY)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200904 return -EINVAL;
905 } else {
Chris Wilson722506f2010-08-12 09:28:50 +0100906 if (rec->src_height > IMAGE_MAX_HEIGHT ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100907 rec->src_width > IMAGE_MAX_WIDTH)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200908 return -EINVAL;
909 }
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100910
Daniel Vetter02e792f2009-09-15 22:57:34 +0200911 /* better safe than sorry, use 4 as the maximal subsampling ratio */
Chris Wilson722506f2010-08-12 09:28:50 +0100912 if (rec->src_height < N_VERT_Y_TAPS*4 ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100913 rec->src_width < N_HORIZ_Y_TAPS*4)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200914 return -EINVAL;
915
Chris Wilsona1efd142010-07-12 19:35:38 +0100916 /* check alignment constraints */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200917 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100918 case I915_OVERLAY_RGB:
919 /* not implemented */
920 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100921
Chris Wilson722506f2010-08-12 09:28:50 +0100922 case I915_OVERLAY_YUV_PACKED:
Chris Wilson722506f2010-08-12 09:28:50 +0100923 if (uv_vscale != 1)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200924 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100925
926 depth = packed_depth_bytes(rec->flags);
Chris Wilson722506f2010-08-12 09:28:50 +0100927 if (depth < 0)
928 return depth;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100929
Chris Wilson722506f2010-08-12 09:28:50 +0100930 /* ignore UV planes */
931 rec->stride_UV = 0;
932 rec->offset_U = 0;
933 rec->offset_V = 0;
934 /* check pixel alignment */
935 if (rec->offset_Y % depth)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200936 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +0100937 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100938
Chris Wilson722506f2010-08-12 09:28:50 +0100939 case I915_OVERLAY_YUV_PLANAR:
940 if (uv_vscale < 0 || uv_hscale < 0)
941 return -EINVAL;
942 /* no offset restrictions for planar formats */
943 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100944
Chris Wilson722506f2010-08-12 09:28:50 +0100945 default:
946 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200947 }
948
949 if (rec->src_width % uv_hscale)
950 return -EINVAL;
951
952 /* stride checking */
Chris Wilsona1efd142010-07-12 19:35:38 +0100953 if (IS_I830(dev) || IS_845G(dev))
954 stride_mask = 255;
955 else
956 stride_mask = 63;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200957
958 if (rec->stride_Y & stride_mask || rec->stride_UV & stride_mask)
959 return -EINVAL;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100960 if (IS_GEN4(dev) && rec->stride_Y < 512)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200961 return -EINVAL;
962
963 tmp = (rec->flags & I915_OVERLAY_TYPE_MASK) == I915_OVERLAY_YUV_PLANAR ?
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100964 4096 : 8192;
965 if (rec->stride_Y > tmp || rec->stride_UV > 2*1024)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200966 return -EINVAL;
967
968 /* check buffer dimensions */
969 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100970 case I915_OVERLAY_RGB:
971 case I915_OVERLAY_YUV_PACKED:
972 /* always 4 Y values per depth pixels */
973 if (packed_width_bytes(rec->flags, rec->src_width) > rec->stride_Y)
974 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200975
Chris Wilson722506f2010-08-12 09:28:50 +0100976 tmp = rec->stride_Y*rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +0000977 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +0100978 return -EINVAL;
979 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200980
Chris Wilson722506f2010-08-12 09:28:50 +0100981 case I915_OVERLAY_YUV_PLANAR:
982 if (rec->src_width > rec->stride_Y)
983 return -EINVAL;
984 if (rec->src_width/uv_hscale > rec->stride_UV)
985 return -EINVAL;
986
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100987 tmp = rec->stride_Y * rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +0000988 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +0100989 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100990
991 tmp = rec->stride_UV * (rec->src_height / uv_vscale);
Chris Wilson05394f32010-11-08 19:18:58 +0000992 if (rec->offset_U + tmp > new_bo->base.size ||
993 rec->offset_V + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +0100994 return -EINVAL;
995 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200996 }
997
998 return 0;
999}
1000
Chris Wilsone9e331a2010-09-13 01:16:10 +01001001/**
1002 * Return the pipe currently connected to the panel fitter,
1003 * or -1 if the panel fitter is not present or not in use
1004 */
1005static int intel_panel_fitter_pipe(struct drm_device *dev)
1006{
1007 struct drm_i915_private *dev_priv = dev->dev_private;
1008 u32 pfit_control;
1009
1010 /* i830 doesn't have a panel fitter */
1011 if (IS_I830(dev))
1012 return -1;
1013
1014 pfit_control = I915_READ(PFIT_CONTROL);
1015
1016 /* See if the panel fitter is in use */
1017 if ((pfit_control & PFIT_ENABLE) == 0)
1018 return -1;
1019
1020 /* 965 can place panel fitter on either pipe */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001021 if (IS_GEN4(dev))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001022 return (pfit_control >> 29) & 0x3;
1023
1024 /* older chips can only use pipe 1 */
1025 return 1;
1026}
1027
Daniel Vetter02e792f2009-09-15 22:57:34 +02001028int intel_overlay_put_image(struct drm_device *dev, void *data,
Akshay Joshi0206e352011-08-16 15:34:10 -04001029 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001030{
1031 struct drm_intel_overlay_put_image *put_image_rec = data;
1032 drm_i915_private_t *dev_priv = dev->dev_private;
1033 struct intel_overlay *overlay;
1034 struct drm_mode_object *drmmode_obj;
1035 struct intel_crtc *crtc;
Chris Wilson05394f32010-11-08 19:18:58 +00001036 struct drm_i915_gem_object *new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001037 struct put_image_params *params;
1038 int ret;
1039
Daniel Vetter1cff8f62012-04-24 09:55:08 +02001040 /* No need to check for DRIVER_MODESET - we don't set it up then. */
Daniel Vetter02e792f2009-09-15 22:57:34 +02001041 overlay = dev_priv->overlay;
1042 if (!overlay) {
1043 DRM_DEBUG("userspace bug: no overlay\n");
1044 return -ENODEV;
1045 }
1046
1047 if (!(put_image_rec->flags & I915_OVERLAY_ENABLE)) {
Daniel Vettera0e99e62012-12-02 01:05:46 +01001048 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001049 mutex_lock(&dev->struct_mutex);
1050
Chris Wilsonce453d82011-02-21 14:43:56 +00001051 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001052
1053 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001054 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001055
1056 return ret;
1057 }
1058
1059 params = kmalloc(sizeof(struct put_image_params), GFP_KERNEL);
1060 if (!params)
1061 return -ENOMEM;
1062
1063 drmmode_obj = drm_mode_object_find(dev, put_image_rec->crtc_id,
Chris Wilson722506f2010-08-12 09:28:50 +01001064 DRM_MODE_OBJECT_CRTC);
Dan Carpenter915a4282010-03-06 14:05:39 +03001065 if (!drmmode_obj) {
1066 ret = -ENOENT;
1067 goto out_free;
1068 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001069 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
1070
Chris Wilson05394f32010-11-08 19:18:58 +00001071 new_bo = to_intel_bo(drm_gem_object_lookup(dev, file_priv,
1072 put_image_rec->bo_handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001073 if (&new_bo->base == NULL) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001074 ret = -ENOENT;
1075 goto out_free;
1076 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001077
Daniel Vettera0e99e62012-12-02 01:05:46 +01001078 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001079 mutex_lock(&dev->struct_mutex);
1080
Chris Wilsond9e86c02010-11-10 16:40:20 +00001081 if (new_bo->tiling_mode) {
1082 DRM_ERROR("buffer used for overlay image can not be tiled\n");
1083 ret = -EINVAL;
1084 goto out_unlock;
1085 }
1086
Chris Wilsonce453d82011-02-21 14:43:56 +00001087 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +01001088 if (ret != 0)
1089 goto out_unlock;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02001090
Daniel Vetter02e792f2009-09-15 22:57:34 +02001091 if (overlay->crtc != crtc) {
1092 struct drm_display_mode *mode = &crtc->base.mode;
Chris Wilsonce453d82011-02-21 14:43:56 +00001093 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001094 if (ret != 0)
1095 goto out_unlock;
1096
1097 ret = check_overlay_possible_on_crtc(overlay, crtc);
1098 if (ret != 0)
1099 goto out_unlock;
1100
1101 overlay->crtc = crtc;
1102 crtc->overlay = overlay;
1103
Chris Wilsone9e331a2010-09-13 01:16:10 +01001104 /* line too wide, i.e. one-line-mode */
1105 if (mode->hdisplay > 1024 &&
1106 intel_panel_fitter_pipe(dev) == crtc->pipe) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001107 overlay->pfit_active = 1;
1108 update_pfit_vscale_ratio(overlay);
1109 } else
1110 overlay->pfit_active = 0;
1111 }
1112
1113 ret = check_overlay_dst(overlay, put_image_rec);
1114 if (ret != 0)
1115 goto out_unlock;
1116
1117 if (overlay->pfit_active) {
1118 params->dst_y = ((((u32)put_image_rec->dst_y) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001119 overlay->pfit_vscale_ratio);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001120 /* shifting right rounds downwards, so add 1 */
1121 params->dst_h = ((((u32)put_image_rec->dst_height) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001122 overlay->pfit_vscale_ratio) + 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001123 } else {
1124 params->dst_y = put_image_rec->dst_y;
1125 params->dst_h = put_image_rec->dst_height;
1126 }
1127 params->dst_x = put_image_rec->dst_x;
1128 params->dst_w = put_image_rec->dst_width;
1129
1130 params->src_w = put_image_rec->src_width;
1131 params->src_h = put_image_rec->src_height;
1132 params->src_scan_w = put_image_rec->src_scan_width;
1133 params->src_scan_h = put_image_rec->src_scan_height;
Chris Wilson722506f2010-08-12 09:28:50 +01001134 if (params->src_scan_h > params->src_h ||
1135 params->src_scan_w > params->src_w) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001136 ret = -EINVAL;
1137 goto out_unlock;
1138 }
1139
1140 ret = check_overlay_src(dev, put_image_rec, new_bo);
1141 if (ret != 0)
1142 goto out_unlock;
1143 params->format = put_image_rec->flags & ~I915_OVERLAY_FLAGS_MASK;
1144 params->stride_Y = put_image_rec->stride_Y;
1145 params->stride_UV = put_image_rec->stride_UV;
1146 params->offset_Y = put_image_rec->offset_Y;
1147 params->offset_U = put_image_rec->offset_U;
1148 params->offset_V = put_image_rec->offset_V;
1149
1150 /* Check scaling after src size to prevent a divide-by-zero. */
1151 ret = check_overlay_scaling(params);
1152 if (ret != 0)
1153 goto out_unlock;
1154
1155 ret = intel_overlay_do_put_image(overlay, new_bo, params);
1156 if (ret != 0)
1157 goto out_unlock;
1158
1159 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001160 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001161
1162 kfree(params);
1163
1164 return 0;
1165
1166out_unlock:
1167 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001168 drm_modeset_unlock_all(dev);
Chris Wilson05394f32010-11-08 19:18:58 +00001169 drm_gem_object_unreference_unlocked(&new_bo->base);
Dan Carpenter915a4282010-03-06 14:05:39 +03001170out_free:
Daniel Vetter02e792f2009-09-15 22:57:34 +02001171 kfree(params);
1172
1173 return ret;
1174}
1175
1176static void update_reg_attrs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001177 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001178{
Ben Widawsky75020bc2012-04-16 14:07:43 -07001179 iowrite32((overlay->contrast << 18) | (overlay->brightness & 0xff),
1180 &regs->OCLRC0);
1181 iowrite32(overlay->saturation, &regs->OCLRC1);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001182}
1183
1184static bool check_gamma_bounds(u32 gamma1, u32 gamma2)
1185{
1186 int i;
1187
1188 if (gamma1 & 0xff000000 || gamma2 & 0xff000000)
1189 return false;
1190
1191 for (i = 0; i < 3; i++) {
Chris Wilson722506f2010-08-12 09:28:50 +01001192 if (((gamma1 >> i*8) & 0xff) >= ((gamma2 >> i*8) & 0xff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001193 return false;
1194 }
1195
1196 return true;
1197}
1198
1199static bool check_gamma5_errata(u32 gamma5)
1200{
1201 int i;
1202
1203 for (i = 0; i < 3; i++) {
1204 if (((gamma5 >> i*8) & 0xff) == 0x80)
1205 return false;
1206 }
1207
1208 return true;
1209}
1210
1211static int check_gamma(struct drm_intel_overlay_attrs *attrs)
1212{
Chris Wilson722506f2010-08-12 09:28:50 +01001213 if (!check_gamma_bounds(0, attrs->gamma0) ||
1214 !check_gamma_bounds(attrs->gamma0, attrs->gamma1) ||
1215 !check_gamma_bounds(attrs->gamma1, attrs->gamma2) ||
1216 !check_gamma_bounds(attrs->gamma2, attrs->gamma3) ||
1217 !check_gamma_bounds(attrs->gamma3, attrs->gamma4) ||
1218 !check_gamma_bounds(attrs->gamma4, attrs->gamma5) ||
1219 !check_gamma_bounds(attrs->gamma5, 0x00ffffff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001220 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001221
Daniel Vetter02e792f2009-09-15 22:57:34 +02001222 if (!check_gamma5_errata(attrs->gamma5))
1223 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001224
Daniel Vetter02e792f2009-09-15 22:57:34 +02001225 return 0;
1226}
1227
1228int intel_overlay_attrs(struct drm_device *dev, void *data,
Akshay Joshi0206e352011-08-16 15:34:10 -04001229 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001230{
1231 struct drm_intel_overlay_attrs *attrs = data;
Akshay Joshi0206e352011-08-16 15:34:10 -04001232 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001233 struct intel_overlay *overlay;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001234 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001235 int ret;
1236
Daniel Vetter1cff8f62012-04-24 09:55:08 +02001237 /* No need to check for DRIVER_MODESET - we don't set it up then. */
Daniel Vetter02e792f2009-09-15 22:57:34 +02001238 overlay = dev_priv->overlay;
1239 if (!overlay) {
1240 DRM_DEBUG("userspace bug: no overlay\n");
1241 return -ENODEV;
1242 }
1243
Daniel Vettera0e99e62012-12-02 01:05:46 +01001244 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001245 mutex_lock(&dev->struct_mutex);
1246
Chris Wilson60fc3322010-08-12 10:44:45 +01001247 ret = -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001248 if (!(attrs->flags & I915_OVERLAY_UPDATE_ATTRS)) {
Chris Wilson60fc3322010-08-12 10:44:45 +01001249 attrs->color_key = overlay->color_key;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001250 attrs->brightness = overlay->brightness;
Chris Wilson60fc3322010-08-12 10:44:45 +01001251 attrs->contrast = overlay->contrast;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001252 attrs->saturation = overlay->saturation;
1253
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001254 if (!IS_GEN2(dev)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001255 attrs->gamma0 = I915_READ(OGAMC0);
1256 attrs->gamma1 = I915_READ(OGAMC1);
1257 attrs->gamma2 = I915_READ(OGAMC2);
1258 attrs->gamma3 = I915_READ(OGAMC3);
1259 attrs->gamma4 = I915_READ(OGAMC4);
1260 attrs->gamma5 = I915_READ(OGAMC5);
1261 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001262 } else {
Chris Wilson60fc3322010-08-12 10:44:45 +01001263 if (attrs->brightness < -128 || attrs->brightness > 127)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001264 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001265 if (attrs->contrast > 255)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001266 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001267 if (attrs->saturation > 1023)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001268 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001269
Chris Wilson60fc3322010-08-12 10:44:45 +01001270 overlay->color_key = attrs->color_key;
1271 overlay->brightness = attrs->brightness;
1272 overlay->contrast = attrs->contrast;
1273 overlay->saturation = attrs->saturation;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001274
Chris Wilson8d74f652010-08-12 10:35:26 +01001275 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001276 if (!regs) {
1277 ret = -ENOMEM;
1278 goto out_unlock;
1279 }
1280
1281 update_reg_attrs(overlay, regs);
1282
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001283 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001284
1285 if (attrs->flags & I915_OVERLAY_UPDATE_GAMMA) {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001286 if (IS_GEN2(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001287 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001288
1289 if (overlay->active) {
1290 ret = -EBUSY;
1291 goto out_unlock;
1292 }
1293
1294 ret = check_gamma(attrs);
Chris Wilson60fc3322010-08-12 10:44:45 +01001295 if (ret)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001296 goto out_unlock;
1297
1298 I915_WRITE(OGAMC0, attrs->gamma0);
1299 I915_WRITE(OGAMC1, attrs->gamma1);
1300 I915_WRITE(OGAMC2, attrs->gamma2);
1301 I915_WRITE(OGAMC3, attrs->gamma3);
1302 I915_WRITE(OGAMC4, attrs->gamma4);
1303 I915_WRITE(OGAMC5, attrs->gamma5);
1304 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001305 }
1306
Chris Wilson60fc3322010-08-12 10:44:45 +01001307 ret = 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001308out_unlock:
1309 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001310 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001311
1312 return ret;
1313}
1314
1315void intel_setup_overlay(struct drm_device *dev)
1316{
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;
Chris Wilson05394f32010-11-08 19:18:58 +00001319 struct drm_i915_gem_object *reg_bo;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001320 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001321 int ret;
1322
Chris Wilson315781482010-08-12 09:42:51 +01001323 if (!HAS_OVERLAY(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001324 return;
1325
1326 overlay = kzalloc(sizeof(struct intel_overlay), GFP_KERNEL);
1327 if (!overlay)
1328 return;
Chris Wilson79d24272011-06-28 11:27:47 +01001329
1330 mutex_lock(&dev->struct_mutex);
1331 if (WARN_ON(dev_priv->overlay))
1332 goto out_free;
1333
Daniel Vetter02e792f2009-09-15 22:57:34 +02001334 overlay->dev = dev;
1335
Chris Wilson80405132012-11-15 11:32:29 +00001336 reg_bo = i915_gem_object_create_stolen(dev, PAGE_SIZE);
1337 if (reg_bo == NULL)
1338 reg_bo = i915_gem_alloc_object(dev, PAGE_SIZE);
1339 if (reg_bo == NULL)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001340 goto out_free;
Chris Wilson05394f32010-11-08 19:18:58 +00001341 overlay->reg_bo = reg_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001342
Chris Wilson315781482010-08-12 09:42:51 +01001343 if (OVERLAY_NEEDS_PHYSICAL(dev)) {
1344 ret = i915_gem_attach_phys_object(dev, reg_bo,
1345 I915_GEM_PHYS_OVERLAY_REGS,
Chris Wilsona2930122010-08-12 10:47:56 +01001346 PAGE_SIZE);
Akshay Joshi0206e352011-08-16 15:34:10 -04001347 if (ret) {
1348 DRM_ERROR("failed to attach phys overlay regs\n");
1349 goto out_free_bo;
1350 }
Chris Wilson05394f32010-11-08 19:18:58 +00001351 overlay->flip_addr = reg_bo->phys_obj->handle->busaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001352 } else {
Chris Wilson86a1ee22012-08-11 15:41:04 +01001353 ret = i915_gem_object_pin(reg_bo, PAGE_SIZE, true, false);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001354 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001355 DRM_ERROR("failed to pin overlay register bo\n");
1356 goto out_free_bo;
1357 }
Chris Wilson05394f32010-11-08 19:18:58 +00001358 overlay->flip_addr = reg_bo->gtt_offset;
Chris Wilson0ddc1282010-08-12 09:35:00 +01001359
1360 ret = i915_gem_object_set_to_gtt_domain(reg_bo, true);
1361 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001362 DRM_ERROR("failed to move overlay register bo into the GTT\n");
1363 goto out_unpin_bo;
1364 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001365 }
1366
1367 /* init all values */
1368 overlay->color_key = 0x0101fe;
1369 overlay->brightness = -19;
1370 overlay->contrast = 75;
1371 overlay->saturation = 146;
1372
Chris Wilson8d74f652010-08-12 10:35:26 +01001373 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001374 if (!regs)
Chris Wilson79d24272011-06-28 11:27:47 +01001375 goto out_unpin_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001376
Ben Widawsky75020bc2012-04-16 14:07:43 -07001377 memset_io(regs, 0, sizeof(struct overlay_registers));
Daniel Vetter02e792f2009-09-15 22:57:34 +02001378 update_polyphase_filter(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001379 update_reg_attrs(overlay, regs);
1380
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001381 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001382
1383 dev_priv->overlay = overlay;
Chris Wilson79d24272011-06-28 11:27:47 +01001384 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001385 DRM_INFO("initialized overlay support\n");
1386 return;
1387
Chris Wilson0ddc1282010-08-12 09:35:00 +01001388out_unpin_bo:
Chris Wilson79d24272011-06-28 11:27:47 +01001389 if (!OVERLAY_NEEDS_PHYSICAL(dev))
1390 i915_gem_object_unpin(reg_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001391out_free_bo:
Chris Wilson05394f32010-11-08 19:18:58 +00001392 drm_gem_object_unreference(&reg_bo->base);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001393out_free:
Chris Wilson79d24272011-06-28 11:27:47 +01001394 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001395 kfree(overlay);
1396 return;
1397}
1398
1399void intel_cleanup_overlay(struct drm_device *dev)
1400{
Chris Wilson722506f2010-08-12 09:28:50 +01001401 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001402
Chris Wilson62cf4e62010-08-12 10:50:36 +01001403 if (!dev_priv->overlay)
1404 return;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001405
Chris Wilson62cf4e62010-08-12 10:50:36 +01001406 /* The bo's should be free'd by the generic code already.
1407 * Furthermore modesetting teardown happens beforehand so the
1408 * hardware should be off already */
1409 BUG_ON(dev_priv->overlay->active);
1410
1411 drm_gem_object_unreference_unlocked(&dev_priv->overlay->reg_bo->base);
1412 kfree(dev_priv->overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001413}
Chris Wilson6ef3d422010-08-04 20:26:07 +01001414
Chris Wilson3bd3c932010-08-19 08:19:30 +01001415#ifdef CONFIG_DEBUG_FS
1416#include <linux/seq_file.h>
1417
Chris Wilson6ef3d422010-08-04 20:26:07 +01001418struct intel_overlay_error_state {
1419 struct overlay_registers regs;
1420 unsigned long base;
1421 u32 dovsta;
1422 u32 isr;
1423};
1424
Ben Widawsky75020bc2012-04-16 14:07:43 -07001425static struct overlay_registers __iomem *
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001426intel_overlay_map_regs_atomic(struct intel_overlay *overlay)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001427{
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001428 drm_i915_private_t *dev_priv = overlay->dev->dev_private;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001429 struct overlay_registers __iomem *regs;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001430
1431 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -07001432 /* Cast to make sparse happy, but it's wc memory anyway, so
1433 * equivalent to the wc io mapping on X86. */
1434 regs = (struct overlay_registers __iomem *)
1435 overlay->reg_bo->phys_obj->handle->vaddr;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001436 else
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001437 regs = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001438 overlay->reg_bo->gtt_offset);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001439
1440 return regs;
1441}
1442
1443static void intel_overlay_unmap_regs_atomic(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001444 struct overlay_registers __iomem *regs)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001445{
1446 if (!OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001447 io_mapping_unmap_atomic(regs);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001448}
1449
1450
Chris Wilson6ef3d422010-08-04 20:26:07 +01001451struct intel_overlay_error_state *
1452intel_overlay_capture_error_state(struct drm_device *dev)
1453{
Akshay Joshi0206e352011-08-16 15:34:10 -04001454 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson6ef3d422010-08-04 20:26:07 +01001455 struct intel_overlay *overlay = dev_priv->overlay;
1456 struct intel_overlay_error_state *error;
1457 struct overlay_registers __iomem *regs;
1458
1459 if (!overlay || !overlay->active)
1460 return NULL;
1461
1462 error = kmalloc(sizeof(*error), GFP_ATOMIC);
1463 if (error == NULL)
1464 return NULL;
1465
1466 error->dovsta = I915_READ(DOVSTA);
1467 error->isr = I915_READ(ISR);
Chris Wilson315781482010-08-12 09:42:51 +01001468 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -07001469 error->base = (__force long)overlay->reg_bo->phys_obj->handle->vaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001470 else
Ben Widawsky75020bc2012-04-16 14:07:43 -07001471 error->base = overlay->reg_bo->gtt_offset;
Chris Wilson6ef3d422010-08-04 20:26:07 +01001472
1473 regs = intel_overlay_map_regs_atomic(overlay);
1474 if (!regs)
1475 goto err;
1476
1477 memcpy_fromio(&error->regs, regs, sizeof(struct overlay_registers));
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001478 intel_overlay_unmap_regs_atomic(overlay, regs);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001479
1480 return error;
1481
1482err:
1483 kfree(error);
1484 return NULL;
1485}
1486
1487void
1488intel_overlay_print_error_state(struct seq_file *m, struct intel_overlay_error_state *error)
1489{
1490 seq_printf(m, "Overlay, status: 0x%08x, interrupt: 0x%08x\n",
1491 error->dovsta, error->isr);
1492 seq_printf(m, " Register file at 0x%08lx:\n",
1493 error->base);
1494
1495#define P(x) seq_printf(m, " " #x ": 0x%08x\n", error->regs.x)
1496 P(OBUF_0Y);
1497 P(OBUF_1Y);
1498 P(OBUF_0U);
1499 P(OBUF_0V);
1500 P(OBUF_1U);
1501 P(OBUF_1V);
1502 P(OSTRIDE);
1503 P(YRGB_VPH);
1504 P(UV_VPH);
1505 P(HORZ_PH);
1506 P(INIT_PHS);
1507 P(DWINPOS);
1508 P(DWINSZ);
1509 P(SWIDTH);
1510 P(SWIDTHSW);
1511 P(SHEIGHT);
1512 P(YRGBSCALE);
1513 P(UVSCALE);
1514 P(OCLRC0);
1515 P(OCLRC1);
1516 P(DCLRKV);
1517 P(DCLRKM);
1518 P(SCLRKVH);
1519 P(SCLRKVL);
1520 P(SCLRKEN);
1521 P(OCONFIG);
1522 P(OCMD);
1523 P(OSTART_0Y);
1524 P(OSTART_1Y);
1525 P(OSTART_0U);
1526 P(OSTART_0V);
1527 P(OSTART_1U);
1528 P(OSTART_1V);
1529 P(OTILEOFF_0Y);
1530 P(OTILEOFF_1Y);
1531 P(OTILEOFF_0U);
1532 P(OTILEOFF_0V);
1533 P(OTILEOFF_1U);
1534 P(OTILEOFF_1V);
1535 P(FASTHSCALE);
1536 P(UVSCALEV);
1537#undef P
1538}
Chris Wilson3bd3c932010-08-19 08:19:30 +01001539#endif