blob: 6c530e298b649be411048036e4601b420248147b [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 */
John Harrison9bfc01a2014-11-24 18:49:31 +0000185 struct drm_i915_gem_request *last_flip_req;
Chris Wilsonb303cf92010-08-12 14:03:48 +0100186 void (*flip_tail)(struct intel_overlay *);
Chris Wilson23f09ce2010-08-12 13:53:37 +0100187};
Daniel Vetter02e792f2009-09-15 22:57:34 +0200188
Ben Widawsky75020bc2012-04-16 14:07:43 -0700189static struct overlay_registers __iomem *
Chris Wilson8d74f652010-08-12 10:35:26 +0100190intel_overlay_map_regs(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200191{
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300192 struct drm_i915_private *dev_priv = overlay->dev->dev_private;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700193 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200194
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100195 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Chris Wilson00731152014-05-21 12:42:56 +0100196 regs = (struct overlay_registers __iomem *)overlay->reg_bo->phys_handle->vaddr;
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100197 else
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800198 regs = io_mapping_map_wc(dev_priv->gtt.mappable,
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700199 i915_gem_obj_ggtt_offset(overlay->reg_bo));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200200
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100201 return regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200202}
203
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100204static void intel_overlay_unmap_regs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700205 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200206{
Chris Wilson8d74f652010-08-12 10:35:26 +0100207 if (!OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100208 io_mapping_unmap(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200209}
Daniel Vetter02e792f2009-09-15 22:57:34 +0200210
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100211static int intel_overlay_do_wait_request(struct intel_overlay *overlay,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100212 void (*tail)(struct intel_overlay *))
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100213{
214 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300215 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100216 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100217 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200218
Chris Wilsonb303cf92010-08-12 14:03:48 +0100219 BUG_ON(overlay->last_flip_req);
John Harrison9bfc01a2014-11-24 18:49:31 +0000220 i915_gem_request_assign(&overlay->last_flip_req,
221 ring->outstanding_lazy_request);
222 ret = i915_add_request(ring, NULL);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100223 if (ret)
224 return ret;
225
Chris Wilsonb303cf92010-08-12 14:03:48 +0100226 overlay->flip_tail = tail;
Daniel Vettera4b3a572014-11-26 14:17:05 +0100227 ret = i915_wait_request(overlay->last_flip_req);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100228 if (ret)
229 return ret;
Ben Widawskyb2da9fe2012-04-26 16:02:58 -0700230 i915_gem_retire_requests(dev);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100231
John Harrison9bfc01a2014-11-24 18:49:31 +0000232 i915_gem_request_assign(&overlay->last_flip_req, NULL);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100233 return 0;
234}
235
Daniel Vetter02e792f2009-09-15 22:57:34 +0200236/* overlay needs to be disable in OCMD reg */
237static int intel_overlay_on(struct intel_overlay *overlay)
238{
239 struct drm_device *dev = overlay->dev;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100240 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100241 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200242 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200243
244 BUG_ON(overlay->active);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200245 overlay->active = 1;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200246
Daniel Vetter6306cb42012-08-12 19:27:10 +0200247 WARN_ON(IS_I830(dev) && !(dev_priv->quirks & QUIRK_PIPEA_FORCE));
Chris Wilson106dada2010-07-16 17:13:01 +0100248
Daniel Vetter6d90c952012-04-26 23:28:05 +0200249 ret = intel_ring_begin(ring, 4);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100250 if (ret)
251 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100252
Daniel Vetter6d90c952012-04-26 23:28:05 +0200253 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_ON);
254 intel_ring_emit(ring, overlay->flip_addr | OFC_UPDATE);
255 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
256 intel_ring_emit(ring, MI_NOOP);
257 intel_ring_advance(ring);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200258
Chris Wilsonacb868d2012-09-26 13:47:30 +0100259 return intel_overlay_do_wait_request(overlay, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200260}
261
262/* overlay needs to be enabled in OCMD reg */
Chris Wilson8dc5d142010-08-12 12:36:12 +0100263static int intel_overlay_continue(struct intel_overlay *overlay,
264 bool load_polyphase_filter)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200265{
266 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300267 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100268 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200269 u32 flip_addr = overlay->flip_addr;
270 u32 tmp;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100271 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200272
273 BUG_ON(!overlay->active);
274
275 if (load_polyphase_filter)
276 flip_addr |= OFC_UPDATE;
277
278 /* check for underruns */
279 tmp = I915_READ(DOVSTA);
280 if (tmp & (1 << 17))
281 DRM_DEBUG("overlay underrun, DOVSTA: %x\n", tmp);
282
Daniel Vetter6d90c952012-04-26 23:28:05 +0200283 ret = intel_ring_begin(ring, 2);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100284 if (ret)
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100285 return ret;
Chris Wilsonacb868d2012-09-26 13:47:30 +0100286
Daniel Vetter6d90c952012-04-26 23:28:05 +0200287 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
288 intel_ring_emit(ring, flip_addr);
289 intel_ring_advance(ring);
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200290
John Harrison9bfc01a2014-11-24 18:49:31 +0000291 WARN_ON(overlay->last_flip_req);
292 i915_gem_request_assign(&overlay->last_flip_req,
293 ring->outstanding_lazy_request);
294 return i915_add_request(ring, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200295}
296
Chris Wilsonb303cf92010-08-12 14:03:48 +0100297static void intel_overlay_release_old_vid_tail(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200298{
Chris Wilson05394f32010-11-08 19:18:58 +0000299 struct drm_i915_gem_object *obj = overlay->old_vid_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200300
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800301 i915_gem_object_ggtt_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000302 drm_gem_object_unreference(&obj->base);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200303
Chris Wilsonb303cf92010-08-12 14:03:48 +0100304 overlay->old_vid_bo = NULL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200305}
306
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200307static void intel_overlay_off_tail(struct intel_overlay *overlay)
308{
Chris Wilson05394f32010-11-08 19:18:58 +0000309 struct drm_i915_gem_object *obj = overlay->vid_bo;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200310
311 /* never have the overlay hw on without showing a frame */
312 BUG_ON(!overlay->vid_bo);
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200313
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800314 i915_gem_object_ggtt_unpin(obj);
Chris Wilson05394f32010-11-08 19:18:58 +0000315 drm_gem_object_unreference(&obj->base);
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200316 overlay->vid_bo = NULL;
317
318 overlay->crtc->overlay = NULL;
319 overlay->crtc = NULL;
320 overlay->active = 0;
321}
322
Daniel Vetter02e792f2009-09-15 22:57:34 +0200323/* overlay needs to be disabled in OCMD reg */
Chris Wilsonce453d82011-02-21 14:43:56 +0000324static int intel_overlay_off(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200325{
326 struct drm_device *dev = overlay->dev;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100327 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100328 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Chris Wilson8dc5d142010-08-12 12:36:12 +0100329 u32 flip_addr = overlay->flip_addr;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100330 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200331
332 BUG_ON(!overlay->active);
333
334 /* According to intel docs the overlay hw may hang (when switching
335 * off) without loading the filter coeffs. It is however unclear whether
336 * this applies to the disabling of the overlay or to the switching off
337 * of the hw. Do it in both cases */
338 flip_addr |= OFC_UPDATE;
339
Daniel Vetter6d90c952012-04-26 23:28:05 +0200340 ret = intel_ring_begin(ring, 6);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100341 if (ret)
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100342 return ret;
Chris Wilsonacb868d2012-09-26 13:47:30 +0100343
Daniel Vetter02e792f2009-09-15 22:57:34 +0200344 /* wait for overlay to go idle */
Daniel Vetter6d90c952012-04-26 23:28:05 +0200345 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
346 intel_ring_emit(ring, flip_addr);
347 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Chris Wilson722506f2010-08-12 09:28:50 +0100348 /* turn overlay off */
Daniel Vettera9193982012-10-22 12:55:55 +0200349 if (IS_I830(dev)) {
350 /* Workaround: Don't disable the overlay fully, since otherwise
351 * it dies on the next OVERLAY_ON cmd. */
352 intel_ring_emit(ring, MI_NOOP);
353 intel_ring_emit(ring, MI_NOOP);
354 intel_ring_emit(ring, MI_NOOP);
355 } else {
356 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_OFF);
357 intel_ring_emit(ring, flip_addr);
358 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
359 }
Daniel Vetter6d90c952012-04-26 23:28:05 +0200360 intel_ring_advance(ring);
Chris Wilson722506f2010-08-12 09:28:50 +0100361
Chris Wilsonacb868d2012-09-26 13:47:30 +0100362 return intel_overlay_do_wait_request(overlay, intel_overlay_off_tail);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200363}
364
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200365/* recover from an interruption due to a signal
366 * We have to be careful not to repeat work forever an make forward progess. */
Chris Wilsonce453d82011-02-21 14:43:56 +0000367static int intel_overlay_recover_from_interrupt(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200368{
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200369 int ret;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200370
John Harrison9bfc01a2014-11-24 18:49:31 +0000371 if (overlay->last_flip_req == NULL)
Chris Wilsonb303cf92010-08-12 14:03:48 +0100372 return 0;
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200373
Daniel Vettera4b3a572014-11-26 14:17:05 +0100374 ret = i915_wait_request(overlay->last_flip_req);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100375 if (ret)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200376 return ret;
Daniel Vettera4b3a572014-11-26 14:17:05 +0100377 i915_gem_retire_requests(overlay->dev);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200378
Chris Wilsonb303cf92010-08-12 14:03:48 +0100379 if (overlay->flip_tail)
380 overlay->flip_tail(overlay);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200381
John Harrison9bfc01a2014-11-24 18:49:31 +0000382 i915_gem_request_assign(&overlay->last_flip_req, NULL);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200383 return 0;
384}
385
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200386/* Wait for pending overlay flip and release old frame.
387 * Needs to be called before the overlay register are changed
Chris Wilson8d74f652010-08-12 10:35:26 +0100388 * via intel_overlay_(un)map_regs
389 */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200390static int intel_overlay_release_old_vid(struct intel_overlay *overlay)
391{
Chris Wilson5cd68c92010-08-12 12:21:54 +0100392 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300393 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100394 struct intel_engine_cs *ring = &dev_priv->ring[RCS];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200395 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200396
Chris Wilson5cd68c92010-08-12 12:21:54 +0100397 /* Only wait if there is actually an old frame to release to
398 * guarantee forward progress.
399 */
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200400 if (!overlay->old_vid_bo)
401 return 0;
402
Chris Wilson5cd68c92010-08-12 12:21:54 +0100403 if (I915_READ(ISR) & I915_OVERLAY_PLANE_FLIP_PENDING_INTERRUPT) {
404 /* synchronous slowpath */
Daniel Vetter6d90c952012-04-26 23:28:05 +0200405 ret = intel_ring_begin(ring, 2);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100406 if (ret)
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100407 return ret;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100408
Daniel Vetter6d90c952012-04-26 23:28:05 +0200409 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
410 intel_ring_emit(ring, MI_NOOP);
411 intel_ring_advance(ring);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200412
Chris Wilsonacb868d2012-09-26 13:47:30 +0100413 ret = intel_overlay_do_wait_request(overlay,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100414 intel_overlay_release_old_vid_tail);
Chris Wilson5cd68c92010-08-12 12:21:54 +0100415 if (ret)
416 return ret;
417 }
Daniel Vetter02e792f2009-09-15 22:57:34 +0200418
Chris Wilson5cd68c92010-08-12 12:21:54 +0100419 intel_overlay_release_old_vid_tail(overlay);
Daniel Vettera071fa02014-06-18 23:28:09 +0200420
421
422 i915_gem_track_fb(overlay->old_vid_bo, NULL,
423 INTEL_FRONTBUFFER_OVERLAY(overlay->crtc->pipe));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200424 return 0;
425}
426
427struct put_image_params {
428 int format;
429 short dst_x;
430 short dst_y;
431 short dst_w;
432 short dst_h;
433 short src_w;
434 short src_scan_h;
435 short src_scan_w;
436 short src_h;
437 short stride_Y;
438 short stride_UV;
439 int offset_Y;
440 int offset_U;
441 int offset_V;
442};
443
444static int packed_depth_bytes(u32 format)
445{
446 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100447 case I915_OVERLAY_YUV422:
448 return 4;
449 case I915_OVERLAY_YUV411:
450 /* return 6; not implemented */
451 default:
452 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200453 }
454}
455
456static int packed_width_bytes(u32 format, short width)
457{
458 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100459 case I915_OVERLAY_YUV422:
460 return width << 1;
461 default:
462 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200463 }
464}
465
466static int uv_hsubsampling(u32 format)
467{
468 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100469 case I915_OVERLAY_YUV422:
470 case I915_OVERLAY_YUV420:
471 return 2;
472 case I915_OVERLAY_YUV411:
473 case I915_OVERLAY_YUV410:
474 return 4;
475 default:
476 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200477 }
478}
479
480static int uv_vsubsampling(u32 format)
481{
482 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100483 case I915_OVERLAY_YUV420:
484 case I915_OVERLAY_YUV410:
485 return 2;
486 case I915_OVERLAY_YUV422:
487 case I915_OVERLAY_YUV411:
488 return 1;
489 default:
490 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200491 }
492}
493
494static u32 calc_swidthsw(struct drm_device *dev, u32 offset, u32 width)
495{
496 u32 mask, shift, ret;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100497 if (IS_GEN2(dev)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +0200498 mask = 0x1f;
499 shift = 5;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100500 } else {
501 mask = 0x3f;
502 shift = 6;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200503 }
504 ret = ((offset + width + mask) >> shift) - (offset >> shift);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100505 if (!IS_GEN2(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +0200506 ret <<= 1;
Akshay Joshi0206e352011-08-16 15:34:10 -0400507 ret -= 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200508 return ret << 2;
509}
510
511static const u16 y_static_hcoeffs[N_HORIZ_Y_TAPS * N_PHASES] = {
512 0x3000, 0xb4a0, 0x1930, 0x1920, 0xb4a0,
513 0x3000, 0xb500, 0x19d0, 0x1880, 0xb440,
514 0x3000, 0xb540, 0x1a88, 0x2f80, 0xb3e0,
515 0x3000, 0xb580, 0x1b30, 0x2e20, 0xb380,
516 0x3000, 0xb5c0, 0x1bd8, 0x2cc0, 0xb320,
517 0x3020, 0xb5e0, 0x1c60, 0x2b80, 0xb2c0,
518 0x3020, 0xb5e0, 0x1cf8, 0x2a20, 0xb260,
519 0x3020, 0xb5e0, 0x1d80, 0x28e0, 0xb200,
520 0x3020, 0xb5c0, 0x1e08, 0x3f40, 0xb1c0,
521 0x3020, 0xb580, 0x1e78, 0x3ce0, 0xb160,
522 0x3040, 0xb520, 0x1ed8, 0x3aa0, 0xb120,
523 0x3040, 0xb4a0, 0x1f30, 0x3880, 0xb0e0,
524 0x3040, 0xb400, 0x1f78, 0x3680, 0xb0a0,
525 0x3020, 0xb340, 0x1fb8, 0x34a0, 0xb060,
526 0x3020, 0xb240, 0x1fe0, 0x32e0, 0xb040,
527 0x3020, 0xb140, 0x1ff8, 0x3160, 0xb020,
Chris Wilson722506f2010-08-12 09:28:50 +0100528 0xb000, 0x3000, 0x0800, 0x3000, 0xb000
529};
530
Daniel Vetter02e792f2009-09-15 22:57:34 +0200531static const u16 uv_static_hcoeffs[N_HORIZ_UV_TAPS * N_PHASES] = {
532 0x3000, 0x1800, 0x1800, 0xb000, 0x18d0, 0x2e60,
533 0xb000, 0x1990, 0x2ce0, 0xb020, 0x1a68, 0x2b40,
534 0xb040, 0x1b20, 0x29e0, 0xb060, 0x1bd8, 0x2880,
535 0xb080, 0x1c88, 0x3e60, 0xb0a0, 0x1d28, 0x3c00,
536 0xb0c0, 0x1db8, 0x39e0, 0xb0e0, 0x1e40, 0x37e0,
537 0xb100, 0x1eb8, 0x3620, 0xb100, 0x1f18, 0x34a0,
538 0xb100, 0x1f68, 0x3360, 0xb0e0, 0x1fa8, 0x3240,
539 0xb0c0, 0x1fe0, 0x3140, 0xb060, 0x1ff0, 0x30a0,
Chris Wilson722506f2010-08-12 09:28:50 +0100540 0x3000, 0x0800, 0x3000
541};
Daniel Vetter02e792f2009-09-15 22:57:34 +0200542
Ben Widawsky75020bc2012-04-16 14:07:43 -0700543static void update_polyphase_filter(struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200544{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700545 memcpy_toio(regs->Y_HCOEFS, y_static_hcoeffs, sizeof(y_static_hcoeffs));
546 memcpy_toio(regs->UV_HCOEFS, uv_static_hcoeffs,
547 sizeof(uv_static_hcoeffs));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200548}
549
550static bool update_scaling_factors(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700551 struct overlay_registers __iomem *regs,
Daniel Vetter02e792f2009-09-15 22:57:34 +0200552 struct put_image_params *params)
553{
554 /* fixed point with a 12 bit shift */
555 u32 xscale, yscale, xscale_UV, yscale_UV;
556#define FP_SHIFT 12
557#define FRACT_MASK 0xfff
558 bool scale_changed = false;
559 int uv_hscale = uv_hsubsampling(params->format);
560 int uv_vscale = uv_vsubsampling(params->format);
561
562 if (params->dst_w > 1)
563 xscale = ((params->src_scan_w - 1) << FP_SHIFT)
564 /(params->dst_w);
565 else
566 xscale = 1 << FP_SHIFT;
567
568 if (params->dst_h > 1)
569 yscale = ((params->src_scan_h - 1) << FP_SHIFT)
570 /(params->dst_h);
571 else
572 yscale = 1 << FP_SHIFT;
573
574 /*if (params->format & I915_OVERLAY_YUV_PLANAR) {*/
Chris Wilson722506f2010-08-12 09:28:50 +0100575 xscale_UV = xscale/uv_hscale;
576 yscale_UV = yscale/uv_vscale;
577 /* make the Y scale to UV scale ratio an exact multiply */
578 xscale = xscale_UV * uv_hscale;
579 yscale = yscale_UV * uv_vscale;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200580 /*} else {
Chris Wilson722506f2010-08-12 09:28:50 +0100581 xscale_UV = 0;
582 yscale_UV = 0;
583 }*/
Daniel Vetter02e792f2009-09-15 22:57:34 +0200584
585 if (xscale != overlay->old_xscale || yscale != overlay->old_yscale)
586 scale_changed = true;
587 overlay->old_xscale = xscale;
588 overlay->old_yscale = yscale;
589
Ben Widawsky75020bc2012-04-16 14:07:43 -0700590 iowrite32(((yscale & FRACT_MASK) << 20) |
591 ((xscale >> FP_SHIFT) << 16) |
592 ((xscale & FRACT_MASK) << 3),
593 &regs->YRGBSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100594
Ben Widawsky75020bc2012-04-16 14:07:43 -0700595 iowrite32(((yscale_UV & FRACT_MASK) << 20) |
596 ((xscale_UV >> FP_SHIFT) << 16) |
597 ((xscale_UV & FRACT_MASK) << 3),
598 &regs->UVSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100599
Ben Widawsky75020bc2012-04-16 14:07:43 -0700600 iowrite32((((yscale >> FP_SHIFT) << 16) |
601 ((yscale_UV >> FP_SHIFT) << 0)),
602 &regs->UVSCALEV);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200603
604 if (scale_changed)
605 update_polyphase_filter(regs);
606
607 return scale_changed;
608}
609
610static void update_colorkey(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700611 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200612{
613 u32 key = overlay->color_key;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100614
Matt Roperf4510a22014-04-01 15:22:40 -0700615 switch (overlay->crtc->base.primary->fb->bits_per_pixel) {
Chris Wilson722506f2010-08-12 09:28:50 +0100616 case 8:
Ben Widawsky75020bc2012-04-16 14:07:43 -0700617 iowrite32(0, &regs->DCLRKV);
618 iowrite32(CLK_RGB8I_MASK | DST_KEY_ENABLE, &regs->DCLRKM);
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100619 break;
620
Chris Wilson722506f2010-08-12 09:28:50 +0100621 case 16:
Matt Roperf4510a22014-04-01 15:22:40 -0700622 if (overlay->crtc->base.primary->fb->depth == 15) {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700623 iowrite32(RGB15_TO_COLORKEY(key), &regs->DCLRKV);
624 iowrite32(CLK_RGB15_MASK | DST_KEY_ENABLE,
625 &regs->DCLRKM);
Chris Wilson722506f2010-08-12 09:28:50 +0100626 } else {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700627 iowrite32(RGB16_TO_COLORKEY(key), &regs->DCLRKV);
628 iowrite32(CLK_RGB16_MASK | DST_KEY_ENABLE,
629 &regs->DCLRKM);
Chris Wilson722506f2010-08-12 09:28:50 +0100630 }
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100631 break;
632
Chris Wilson722506f2010-08-12 09:28:50 +0100633 case 24:
634 case 32:
Ben Widawsky75020bc2012-04-16 14:07:43 -0700635 iowrite32(key, &regs->DCLRKV);
636 iowrite32(CLK_RGB24_MASK | DST_KEY_ENABLE, &regs->DCLRKM);
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100637 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200638 }
639}
640
641static u32 overlay_cmd_reg(struct put_image_params *params)
642{
643 u32 cmd = OCMD_ENABLE | OCMD_BUF_TYPE_FRAME | OCMD_BUFFER0;
644
645 if (params->format & I915_OVERLAY_YUV_PLANAR) {
646 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100647 case I915_OVERLAY_YUV422:
648 cmd |= OCMD_YUV_422_PLANAR;
649 break;
650 case I915_OVERLAY_YUV420:
651 cmd |= OCMD_YUV_420_PLANAR;
652 break;
653 case I915_OVERLAY_YUV411:
654 case I915_OVERLAY_YUV410:
655 cmd |= OCMD_YUV_410_PLANAR;
656 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200657 }
658 } else { /* YUV packed */
659 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100660 case I915_OVERLAY_YUV422:
661 cmd |= OCMD_YUV_422_PACKED;
662 break;
663 case I915_OVERLAY_YUV411:
664 cmd |= OCMD_YUV_411_PACKED;
665 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200666 }
667
668 switch (params->format & I915_OVERLAY_SWAP_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100669 case I915_OVERLAY_NO_SWAP:
670 break;
671 case I915_OVERLAY_UV_SWAP:
672 cmd |= OCMD_UV_SWAP;
673 break;
674 case I915_OVERLAY_Y_SWAP:
675 cmd |= OCMD_Y_SWAP;
676 break;
677 case I915_OVERLAY_Y_AND_UV_SWAP:
678 cmd |= OCMD_Y_AND_UV_SWAP;
679 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200680 }
681 }
682
683 return cmd;
684}
685
Chris Wilson5fe82c52010-08-12 12:38:21 +0100686static int intel_overlay_do_put_image(struct intel_overlay *overlay,
Chris Wilson05394f32010-11-08 19:18:58 +0000687 struct drm_i915_gem_object *new_bo,
Chris Wilson5fe82c52010-08-12 12:38:21 +0100688 struct put_image_params *params)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200689{
690 int ret, tmp_width;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700691 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200692 bool scale_changed = false;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200693 struct drm_device *dev = overlay->dev;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700694 u32 swidth, swidthsw, sheight, ostride;
Daniel Vettera071fa02014-06-18 23:28:09 +0200695 enum pipe pipe = overlay->crtc->pipe;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200696
697 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
Rob Clark51fd3712013-11-19 12:10:12 -0500698 BUG_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200699 BUG_ON(!overlay);
700
Daniel Vetter02e792f2009-09-15 22:57:34 +0200701 ret = intel_overlay_release_old_vid(overlay);
702 if (ret != 0)
703 return ret;
704
Chris Wilson2da3b9b2011-04-14 09:41:17 +0100705 ret = i915_gem_object_pin_to_display_plane(new_bo, 0, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200706 if (ret != 0)
707 return ret;
708
Chris Wilsond9e86c02010-11-10 16:40:20 +0000709 ret = i915_gem_object_put_fence(new_bo);
710 if (ret)
711 goto out_unpin;
712
Daniel Vetter02e792f2009-09-15 22:57:34 +0200713 if (!overlay->active) {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700714 u32 oconfig;
Chris Wilson8d74f652010-08-12 10:35:26 +0100715 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200716 if (!regs) {
717 ret = -ENOMEM;
718 goto out_unpin;
719 }
Ben Widawsky75020bc2012-04-16 14:07:43 -0700720 oconfig = OCONF_CC_OUT_8BIT;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100721 if (IS_GEN4(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -0700722 oconfig |= OCONF_CSC_MODE_BT709;
Daniel Vettera071fa02014-06-18 23:28:09 +0200723 oconfig |= pipe == 0 ?
Daniel Vetter02e792f2009-09-15 22:57:34 +0200724 OCONF_PIPE_A : OCONF_PIPE_B;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700725 iowrite32(oconfig, &regs->OCONFIG);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100726 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200727
728 ret = intel_overlay_on(overlay);
729 if (ret != 0)
730 goto out_unpin;
731 }
732
Chris Wilson8d74f652010-08-12 10:35:26 +0100733 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200734 if (!regs) {
735 ret = -ENOMEM;
736 goto out_unpin;
737 }
738
Ben Widawsky75020bc2012-04-16 14:07:43 -0700739 iowrite32((params->dst_y << 16) | params->dst_x, &regs->DWINPOS);
740 iowrite32((params->dst_h << 16) | params->dst_w, &regs->DWINSZ);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200741
742 if (params->format & I915_OVERLAY_YUV_PACKED)
743 tmp_width = packed_width_bytes(params->format, params->src_w);
744 else
745 tmp_width = params->src_w;
746
Ben Widawsky75020bc2012-04-16 14:07:43 -0700747 swidth = params->src_w;
748 swidthsw = calc_swidthsw(overlay->dev, params->offset_Y, tmp_width);
749 sheight = params->src_h;
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700750 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_Y, &regs->OBUF_0Y);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700751 ostride = params->stride_Y;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200752
753 if (params->format & I915_OVERLAY_YUV_PLANAR) {
754 int uv_hscale = uv_hsubsampling(params->format);
755 int uv_vscale = uv_vsubsampling(params->format);
756 u32 tmp_U, tmp_V;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700757 swidth |= (params->src_w/uv_hscale) << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200758 tmp_U = calc_swidthsw(overlay->dev, params->offset_U,
Chris Wilson722506f2010-08-12 09:28:50 +0100759 params->src_w/uv_hscale);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200760 tmp_V = calc_swidthsw(overlay->dev, params->offset_V,
Chris Wilson722506f2010-08-12 09:28:50 +0100761 params->src_w/uv_hscale);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700762 swidthsw |= max_t(u32, tmp_U, tmp_V) << 16;
763 sheight |= (params->src_h/uv_vscale) << 16;
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700764 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_U, &regs->OBUF_0U);
765 iowrite32(i915_gem_obj_ggtt_offset(new_bo) + params->offset_V, &regs->OBUF_0V);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700766 ostride |= params->stride_UV << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200767 }
768
Ben Widawsky75020bc2012-04-16 14:07:43 -0700769 iowrite32(swidth, &regs->SWIDTH);
770 iowrite32(swidthsw, &regs->SWIDTHSW);
771 iowrite32(sheight, &regs->SHEIGHT);
772 iowrite32(ostride, &regs->OSTRIDE);
773
Daniel Vetter02e792f2009-09-15 22:57:34 +0200774 scale_changed = update_scaling_factors(overlay, regs, params);
775
776 update_colorkey(overlay, regs);
777
Ben Widawsky75020bc2012-04-16 14:07:43 -0700778 iowrite32(overlay_cmd_reg(params), &regs->OCMD);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200779
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100780 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200781
Chris Wilson8dc5d142010-08-12 12:36:12 +0100782 ret = intel_overlay_continue(overlay, scale_changed);
783 if (ret)
784 goto out_unpin;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200785
Daniel Vettera071fa02014-06-18 23:28:09 +0200786 i915_gem_track_fb(overlay->vid_bo, new_bo,
787 INTEL_FRONTBUFFER_OVERLAY(pipe));
788
Daniel Vetter02e792f2009-09-15 22:57:34 +0200789 overlay->old_vid_bo = overlay->vid_bo;
Chris Wilson05394f32010-11-08 19:18:58 +0000790 overlay->vid_bo = new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200791
Daniel Vetterf99d7062014-06-19 16:01:59 +0200792 intel_frontbuffer_flip(dev,
793 INTEL_FRONTBUFFER_OVERLAY(pipe));
794
Daniel Vetter02e792f2009-09-15 22:57:34 +0200795 return 0;
796
797out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800798 i915_gem_object_ggtt_unpin(new_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200799 return ret;
800}
801
Chris Wilsonce453d82011-02-21 14:43:56 +0000802int intel_overlay_switch_off(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200803{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700804 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200805 struct drm_device *dev = overlay->dev;
Chris Wilson5dcdbcb2010-08-12 13:50:28 +0100806 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200807
808 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
Rob Clark51fd3712013-11-19 12:10:12 -0500809 BUG_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200810
Chris Wilsonce453d82011-02-21 14:43:56 +0000811 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +0100812 if (ret != 0)
813 return ret;
Daniel Vetter9bedb972009-11-30 15:55:49 +0100814
Daniel Vetter02e792f2009-09-15 22:57:34 +0200815 if (!overlay->active)
816 return 0;
817
Daniel Vetter02e792f2009-09-15 22:57:34 +0200818 ret = intel_overlay_release_old_vid(overlay);
819 if (ret != 0)
820 return ret;
821
Chris Wilson8d74f652010-08-12 10:35:26 +0100822 regs = intel_overlay_map_regs(overlay);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700823 iowrite32(0, &regs->OCMD);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100824 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200825
Chris Wilsonce453d82011-02-21 14:43:56 +0000826 ret = intel_overlay_off(overlay);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200827 if (ret != 0)
828 return ret;
829
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200830 intel_overlay_off_tail(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200831 return 0;
832}
833
834static int check_overlay_possible_on_crtc(struct intel_overlay *overlay,
835 struct intel_crtc *crtc)
836{
Chris Wilsonf7abfe82010-09-13 14:19:16 +0100837 if (!crtc->active)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200838 return -EINVAL;
839
Daniel Vetter02e792f2009-09-15 22:57:34 +0200840 /* can't use the overlay with double wide pipe */
Ville Syrjälä4926cb72013-09-04 18:30:07 +0300841 if (crtc->config.double_wide)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200842 return -EINVAL;
843
844 return 0;
845}
846
847static void update_pfit_vscale_ratio(struct intel_overlay *overlay)
848{
849 struct drm_device *dev = overlay->dev;
Jani Nikulad5d45cc2014-03-31 14:27:20 +0300850 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200851 u32 pfit_control = I915_READ(PFIT_CONTROL);
Chris Wilson446d2182010-08-12 11:15:58 +0100852 u32 ratio;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200853
854 /* XXX: This is not the same logic as in the xorg driver, but more in
Chris Wilson446d2182010-08-12 11:15:58 +0100855 * line with the intel documentation for the i965
856 */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100857 if (INTEL_INFO(dev)->gen >= 4) {
Akshay Joshi0206e352011-08-16 15:34:10 -0400858 /* on i965 use the PGM reg to read out the autoscaler values */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100859 ratio = I915_READ(PFIT_PGM_RATIOS) >> PFIT_VERT_SCALE_SHIFT_965;
860 } else {
Chris Wilson446d2182010-08-12 11:15:58 +0100861 if (pfit_control & VERT_AUTO_SCALE)
862 ratio = I915_READ(PFIT_AUTO_RATIOS);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200863 else
Chris Wilson446d2182010-08-12 11:15:58 +0100864 ratio = I915_READ(PFIT_PGM_RATIOS);
865 ratio >>= PFIT_VERT_SCALE_SHIFT;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200866 }
867
868 overlay->pfit_vscale_ratio = ratio;
869}
870
871static int check_overlay_dst(struct intel_overlay *overlay,
872 struct drm_intel_overlay_put_image *rec)
873{
874 struct drm_display_mode *mode = &overlay->crtc->base.mode;
875
Daniel Vetter75c13992012-01-28 23:48:46 +0100876 if (rec->dst_x < mode->hdisplay &&
877 rec->dst_x + rec->dst_width <= mode->hdisplay &&
878 rec->dst_y < mode->vdisplay &&
879 rec->dst_y + rec->dst_height <= mode->vdisplay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200880 return 0;
881 else
882 return -EINVAL;
883}
884
885static int check_overlay_scaling(struct put_image_params *rec)
886{
887 u32 tmp;
888
889 /* downscaling limit is 8.0 */
890 tmp = ((rec->src_scan_h << 16) / rec->dst_h) >> 16;
891 if (tmp > 7)
892 return -EINVAL;
893 tmp = ((rec->src_scan_w << 16) / rec->dst_w) >> 16;
894 if (tmp > 7)
895 return -EINVAL;
896
897 return 0;
898}
899
900static int check_overlay_src(struct drm_device *dev,
901 struct drm_intel_overlay_put_image *rec,
Chris Wilson05394f32010-11-08 19:18:58 +0000902 struct drm_i915_gem_object *new_bo)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200903{
Daniel Vetter02e792f2009-09-15 22:57:34 +0200904 int uv_hscale = uv_hsubsampling(rec->flags);
905 int uv_vscale = uv_vsubsampling(rec->flags);
Dan Carpenter8f28f542010-10-27 23:17:25 +0200906 u32 stride_mask;
907 int depth;
908 u32 tmp;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200909
910 /* check src dimensions */
911 if (IS_845G(dev) || IS_I830(dev)) {
Chris Wilson722506f2010-08-12 09:28:50 +0100912 if (rec->src_height > IMAGE_MAX_HEIGHT_LEGACY ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100913 rec->src_width > IMAGE_MAX_WIDTH_LEGACY)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200914 return -EINVAL;
915 } else {
Chris Wilson722506f2010-08-12 09:28:50 +0100916 if (rec->src_height > IMAGE_MAX_HEIGHT ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100917 rec->src_width > IMAGE_MAX_WIDTH)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200918 return -EINVAL;
919 }
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100920
Daniel Vetter02e792f2009-09-15 22:57:34 +0200921 /* better safe than sorry, use 4 as the maximal subsampling ratio */
Chris Wilson722506f2010-08-12 09:28:50 +0100922 if (rec->src_height < N_VERT_Y_TAPS*4 ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100923 rec->src_width < N_HORIZ_Y_TAPS*4)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200924 return -EINVAL;
925
Chris Wilsona1efd142010-07-12 19:35:38 +0100926 /* check alignment constraints */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200927 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100928 case I915_OVERLAY_RGB:
929 /* not implemented */
930 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100931
Chris Wilson722506f2010-08-12 09:28:50 +0100932 case I915_OVERLAY_YUV_PACKED:
Chris Wilson722506f2010-08-12 09:28:50 +0100933 if (uv_vscale != 1)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200934 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100935
936 depth = packed_depth_bytes(rec->flags);
Chris Wilson722506f2010-08-12 09:28:50 +0100937 if (depth < 0)
938 return depth;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100939
Chris Wilson722506f2010-08-12 09:28:50 +0100940 /* ignore UV planes */
941 rec->stride_UV = 0;
942 rec->offset_U = 0;
943 rec->offset_V = 0;
944 /* check pixel alignment */
945 if (rec->offset_Y % depth)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200946 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +0100947 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100948
Chris Wilson722506f2010-08-12 09:28:50 +0100949 case I915_OVERLAY_YUV_PLANAR:
950 if (uv_vscale < 0 || uv_hscale < 0)
951 return -EINVAL;
952 /* no offset restrictions for planar formats */
953 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100954
Chris Wilson722506f2010-08-12 09:28:50 +0100955 default:
956 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200957 }
958
959 if (rec->src_width % uv_hscale)
960 return -EINVAL;
961
962 /* stride checking */
Chris Wilsona1efd142010-07-12 19:35:38 +0100963 if (IS_I830(dev) || IS_845G(dev))
964 stride_mask = 255;
965 else
966 stride_mask = 63;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200967
968 if (rec->stride_Y & stride_mask || rec->stride_UV & stride_mask)
969 return -EINVAL;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100970 if (IS_GEN4(dev) && rec->stride_Y < 512)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200971 return -EINVAL;
972
973 tmp = (rec->flags & I915_OVERLAY_TYPE_MASK) == I915_OVERLAY_YUV_PLANAR ?
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100974 4096 : 8192;
975 if (rec->stride_Y > tmp || rec->stride_UV > 2*1024)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200976 return -EINVAL;
977
978 /* check buffer dimensions */
979 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100980 case I915_OVERLAY_RGB:
981 case I915_OVERLAY_YUV_PACKED:
982 /* always 4 Y values per depth pixels */
983 if (packed_width_bytes(rec->flags, rec->src_width) > rec->stride_Y)
984 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200985
Chris Wilson722506f2010-08-12 09:28:50 +0100986 tmp = rec->stride_Y*rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +0000987 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +0100988 return -EINVAL;
989 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200990
Chris Wilson722506f2010-08-12 09:28:50 +0100991 case I915_OVERLAY_YUV_PLANAR:
992 if (rec->src_width > rec->stride_Y)
993 return -EINVAL;
994 if (rec->src_width/uv_hscale > rec->stride_UV)
995 return -EINVAL;
996
Chris Wilson9f7c3f42010-08-12 11:29:34 +0100997 tmp = rec->stride_Y * rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +0000998 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +0100999 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001000
1001 tmp = rec->stride_UV * (rec->src_height / uv_vscale);
Chris Wilson05394f32010-11-08 19:18:58 +00001002 if (rec->offset_U + tmp > new_bo->base.size ||
1003 rec->offset_V + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001004 return -EINVAL;
1005 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001006 }
1007
1008 return 0;
1009}
1010
Chris Wilsone9e331a2010-09-13 01:16:10 +01001011/**
1012 * Return the pipe currently connected to the panel fitter,
1013 * or -1 if the panel fitter is not present or not in use
1014 */
1015static int intel_panel_fitter_pipe(struct drm_device *dev)
1016{
1017 struct drm_i915_private *dev_priv = dev->dev_private;
1018 u32 pfit_control;
1019
1020 /* i830 doesn't have a panel fitter */
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02001021 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001022 return -1;
1023
1024 pfit_control = I915_READ(PFIT_CONTROL);
1025
1026 /* See if the panel fitter is in use */
1027 if ((pfit_control & PFIT_ENABLE) == 0)
1028 return -1;
1029
1030 /* 965 can place panel fitter on either pipe */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001031 if (IS_GEN4(dev))
Chris Wilsone9e331a2010-09-13 01:16:10 +01001032 return (pfit_control >> 29) & 0x3;
1033
1034 /* older chips can only use pipe 1 */
1035 return 1;
1036}
1037
Daniel Vetter02e792f2009-09-15 22:57:34 +02001038int intel_overlay_put_image(struct drm_device *dev, void *data,
Akshay Joshi0206e352011-08-16 15:34:10 -04001039 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001040{
1041 struct drm_intel_overlay_put_image *put_image_rec = data;
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001042 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001043 struct intel_overlay *overlay;
Rob Clark7707e652014-07-17 23:30:04 -04001044 struct drm_crtc *drmmode_crtc;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001045 struct intel_crtc *crtc;
Chris Wilson05394f32010-11-08 19:18:58 +00001046 struct drm_i915_gem_object *new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001047 struct put_image_params *params;
1048 int ret;
1049
Daniel Vetter1cff8f62012-04-24 09:55:08 +02001050 /* No need to check for DRIVER_MODESET - we don't set it up then. */
Daniel Vetter02e792f2009-09-15 22:57:34 +02001051 overlay = dev_priv->overlay;
1052 if (!overlay) {
1053 DRM_DEBUG("userspace bug: no overlay\n");
1054 return -ENODEV;
1055 }
1056
1057 if (!(put_image_rec->flags & I915_OVERLAY_ENABLE)) {
Daniel Vettera0e99e62012-12-02 01:05:46 +01001058 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001059 mutex_lock(&dev->struct_mutex);
1060
Chris Wilsonce453d82011-02-21 14:43:56 +00001061 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001062
1063 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001064 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001065
1066 return ret;
1067 }
1068
Daniel Vetterb14c5672013-09-19 12:18:32 +02001069 params = kmalloc(sizeof(*params), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001070 if (!params)
1071 return -ENOMEM;
1072
Rob Clark7707e652014-07-17 23:30:04 -04001073 drmmode_crtc = drm_crtc_find(dev, put_image_rec->crtc_id);
1074 if (!drmmode_crtc) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001075 ret = -ENOENT;
1076 goto out_free;
1077 }
Rob Clark7707e652014-07-17 23:30:04 -04001078 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001079
Chris Wilson05394f32010-11-08 19:18:58 +00001080 new_bo = to_intel_bo(drm_gem_object_lookup(dev, file_priv,
1081 put_image_rec->bo_handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001082 if (&new_bo->base == NULL) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001083 ret = -ENOENT;
1084 goto out_free;
1085 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001086
Daniel Vettera0e99e62012-12-02 01:05:46 +01001087 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001088 mutex_lock(&dev->struct_mutex);
1089
Chris Wilsond9e86c02010-11-10 16:40:20 +00001090 if (new_bo->tiling_mode) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01001091 DRM_DEBUG_KMS("buffer used for overlay image can not be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00001092 ret = -EINVAL;
1093 goto out_unlock;
1094 }
1095
Chris Wilsonce453d82011-02-21 14:43:56 +00001096 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +01001097 if (ret != 0)
1098 goto out_unlock;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02001099
Daniel Vetter02e792f2009-09-15 22:57:34 +02001100 if (overlay->crtc != crtc) {
1101 struct drm_display_mode *mode = &crtc->base.mode;
Chris Wilsonce453d82011-02-21 14:43:56 +00001102 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001103 if (ret != 0)
1104 goto out_unlock;
1105
1106 ret = check_overlay_possible_on_crtc(overlay, crtc);
1107 if (ret != 0)
1108 goto out_unlock;
1109
1110 overlay->crtc = crtc;
1111 crtc->overlay = overlay;
1112
Chris Wilsone9e331a2010-09-13 01:16:10 +01001113 /* line too wide, i.e. one-line-mode */
1114 if (mode->hdisplay > 1024 &&
1115 intel_panel_fitter_pipe(dev) == crtc->pipe) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001116 overlay->pfit_active = 1;
1117 update_pfit_vscale_ratio(overlay);
1118 } else
1119 overlay->pfit_active = 0;
1120 }
1121
1122 ret = check_overlay_dst(overlay, put_image_rec);
1123 if (ret != 0)
1124 goto out_unlock;
1125
1126 if (overlay->pfit_active) {
1127 params->dst_y = ((((u32)put_image_rec->dst_y) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001128 overlay->pfit_vscale_ratio);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001129 /* shifting right rounds downwards, so add 1 */
1130 params->dst_h = ((((u32)put_image_rec->dst_height) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001131 overlay->pfit_vscale_ratio) + 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001132 } else {
1133 params->dst_y = put_image_rec->dst_y;
1134 params->dst_h = put_image_rec->dst_height;
1135 }
1136 params->dst_x = put_image_rec->dst_x;
1137 params->dst_w = put_image_rec->dst_width;
1138
1139 params->src_w = put_image_rec->src_width;
1140 params->src_h = put_image_rec->src_height;
1141 params->src_scan_w = put_image_rec->src_scan_width;
1142 params->src_scan_h = put_image_rec->src_scan_height;
Chris Wilson722506f2010-08-12 09:28:50 +01001143 if (params->src_scan_h > params->src_h ||
1144 params->src_scan_w > params->src_w) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001145 ret = -EINVAL;
1146 goto out_unlock;
1147 }
1148
1149 ret = check_overlay_src(dev, put_image_rec, new_bo);
1150 if (ret != 0)
1151 goto out_unlock;
1152 params->format = put_image_rec->flags & ~I915_OVERLAY_FLAGS_MASK;
1153 params->stride_Y = put_image_rec->stride_Y;
1154 params->stride_UV = put_image_rec->stride_UV;
1155 params->offset_Y = put_image_rec->offset_Y;
1156 params->offset_U = put_image_rec->offset_U;
1157 params->offset_V = put_image_rec->offset_V;
1158
1159 /* Check scaling after src size to prevent a divide-by-zero. */
1160 ret = check_overlay_scaling(params);
1161 if (ret != 0)
1162 goto out_unlock;
1163
1164 ret = intel_overlay_do_put_image(overlay, new_bo, params);
1165 if (ret != 0)
1166 goto out_unlock;
1167
1168 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001169 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001170
1171 kfree(params);
1172
1173 return 0;
1174
1175out_unlock:
1176 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001177 drm_modeset_unlock_all(dev);
Chris Wilson05394f32010-11-08 19:18:58 +00001178 drm_gem_object_unreference_unlocked(&new_bo->base);
Dan Carpenter915a4282010-03-06 14:05:39 +03001179out_free:
Daniel Vetter02e792f2009-09-15 22:57:34 +02001180 kfree(params);
1181
1182 return ret;
1183}
1184
1185static void update_reg_attrs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001186 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001187{
Ben Widawsky75020bc2012-04-16 14:07:43 -07001188 iowrite32((overlay->contrast << 18) | (overlay->brightness & 0xff),
1189 &regs->OCLRC0);
1190 iowrite32(overlay->saturation, &regs->OCLRC1);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001191}
1192
1193static bool check_gamma_bounds(u32 gamma1, u32 gamma2)
1194{
1195 int i;
1196
1197 if (gamma1 & 0xff000000 || gamma2 & 0xff000000)
1198 return false;
1199
1200 for (i = 0; i < 3; i++) {
Chris Wilson722506f2010-08-12 09:28:50 +01001201 if (((gamma1 >> i*8) & 0xff) >= ((gamma2 >> i*8) & 0xff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001202 return false;
1203 }
1204
1205 return true;
1206}
1207
1208static bool check_gamma5_errata(u32 gamma5)
1209{
1210 int i;
1211
1212 for (i = 0; i < 3; i++) {
1213 if (((gamma5 >> i*8) & 0xff) == 0x80)
1214 return false;
1215 }
1216
1217 return true;
1218}
1219
1220static int check_gamma(struct drm_intel_overlay_attrs *attrs)
1221{
Chris Wilson722506f2010-08-12 09:28:50 +01001222 if (!check_gamma_bounds(0, attrs->gamma0) ||
1223 !check_gamma_bounds(attrs->gamma0, attrs->gamma1) ||
1224 !check_gamma_bounds(attrs->gamma1, attrs->gamma2) ||
1225 !check_gamma_bounds(attrs->gamma2, attrs->gamma3) ||
1226 !check_gamma_bounds(attrs->gamma3, attrs->gamma4) ||
1227 !check_gamma_bounds(attrs->gamma4, attrs->gamma5) ||
1228 !check_gamma_bounds(attrs->gamma5, 0x00ffffff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001229 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001230
Daniel Vetter02e792f2009-09-15 22:57:34 +02001231 if (!check_gamma5_errata(attrs->gamma5))
1232 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001233
Daniel Vetter02e792f2009-09-15 22:57:34 +02001234 return 0;
1235}
1236
1237int intel_overlay_attrs(struct drm_device *dev, void *data,
Akshay Joshi0206e352011-08-16 15:34:10 -04001238 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001239{
1240 struct drm_intel_overlay_attrs *attrs = data;
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001241 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001242 struct intel_overlay *overlay;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001243 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001244 int ret;
1245
Daniel Vetter1cff8f62012-04-24 09:55:08 +02001246 /* No need to check for DRIVER_MODESET - we don't set it up then. */
Daniel Vetter02e792f2009-09-15 22:57:34 +02001247 overlay = dev_priv->overlay;
1248 if (!overlay) {
1249 DRM_DEBUG("userspace bug: no overlay\n");
1250 return -ENODEV;
1251 }
1252
Daniel Vettera0e99e62012-12-02 01:05:46 +01001253 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001254 mutex_lock(&dev->struct_mutex);
1255
Chris Wilson60fc3322010-08-12 10:44:45 +01001256 ret = -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001257 if (!(attrs->flags & I915_OVERLAY_UPDATE_ATTRS)) {
Chris Wilson60fc3322010-08-12 10:44:45 +01001258 attrs->color_key = overlay->color_key;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001259 attrs->brightness = overlay->brightness;
Chris Wilson60fc3322010-08-12 10:44:45 +01001260 attrs->contrast = overlay->contrast;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001261 attrs->saturation = overlay->saturation;
1262
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001263 if (!IS_GEN2(dev)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001264 attrs->gamma0 = I915_READ(OGAMC0);
1265 attrs->gamma1 = I915_READ(OGAMC1);
1266 attrs->gamma2 = I915_READ(OGAMC2);
1267 attrs->gamma3 = I915_READ(OGAMC3);
1268 attrs->gamma4 = I915_READ(OGAMC4);
1269 attrs->gamma5 = I915_READ(OGAMC5);
1270 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001271 } else {
Chris Wilson60fc3322010-08-12 10:44:45 +01001272 if (attrs->brightness < -128 || attrs->brightness > 127)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001273 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001274 if (attrs->contrast > 255)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001275 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001276 if (attrs->saturation > 1023)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001277 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001278
Chris Wilson60fc3322010-08-12 10:44:45 +01001279 overlay->color_key = attrs->color_key;
1280 overlay->brightness = attrs->brightness;
1281 overlay->contrast = attrs->contrast;
1282 overlay->saturation = attrs->saturation;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001283
Chris Wilson8d74f652010-08-12 10:35:26 +01001284 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001285 if (!regs) {
1286 ret = -ENOMEM;
1287 goto out_unlock;
1288 }
1289
1290 update_reg_attrs(overlay, regs);
1291
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001292 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001293
1294 if (attrs->flags & I915_OVERLAY_UPDATE_GAMMA) {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001295 if (IS_GEN2(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001296 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001297
1298 if (overlay->active) {
1299 ret = -EBUSY;
1300 goto out_unlock;
1301 }
1302
1303 ret = check_gamma(attrs);
Chris Wilson60fc3322010-08-12 10:44:45 +01001304 if (ret)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001305 goto out_unlock;
1306
1307 I915_WRITE(OGAMC0, attrs->gamma0);
1308 I915_WRITE(OGAMC1, attrs->gamma1);
1309 I915_WRITE(OGAMC2, attrs->gamma2);
1310 I915_WRITE(OGAMC3, attrs->gamma3);
1311 I915_WRITE(OGAMC4, attrs->gamma4);
1312 I915_WRITE(OGAMC5, attrs->gamma5);
1313 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001314 }
1315
Chris Wilson60fc3322010-08-12 10:44:45 +01001316 ret = 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001317out_unlock:
1318 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001319 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001320
1321 return ret;
1322}
1323
1324void intel_setup_overlay(struct drm_device *dev)
1325{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001326 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001327 struct intel_overlay *overlay;
Chris Wilson05394f32010-11-08 19:18:58 +00001328 struct drm_i915_gem_object *reg_bo;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001329 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001330 int ret;
1331
Chris Wilson315781482010-08-12 09:42:51 +01001332 if (!HAS_OVERLAY(dev))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001333 return;
1334
Daniel Vetterb14c5672013-09-19 12:18:32 +02001335 overlay = kzalloc(sizeof(*overlay), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001336 if (!overlay)
1337 return;
Chris Wilson79d24272011-06-28 11:27:47 +01001338
1339 mutex_lock(&dev->struct_mutex);
1340 if (WARN_ON(dev_priv->overlay))
1341 goto out_free;
1342
Daniel Vetter02e792f2009-09-15 22:57:34 +02001343 overlay->dev = dev;
1344
Daniel Vetterf63a4842013-07-23 19:24:38 +02001345 reg_bo = NULL;
1346 if (!OVERLAY_NEEDS_PHYSICAL(dev))
1347 reg_bo = i915_gem_object_create_stolen(dev, PAGE_SIZE);
Chris Wilson80405132012-11-15 11:32:29 +00001348 if (reg_bo == NULL)
1349 reg_bo = i915_gem_alloc_object(dev, PAGE_SIZE);
1350 if (reg_bo == NULL)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001351 goto out_free;
Chris Wilson05394f32010-11-08 19:18:58 +00001352 overlay->reg_bo = reg_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001353
Chris Wilson315781482010-08-12 09:42:51 +01001354 if (OVERLAY_NEEDS_PHYSICAL(dev)) {
Chris Wilson00731152014-05-21 12:42:56 +01001355 ret = i915_gem_object_attach_phys(reg_bo, PAGE_SIZE);
Akshay Joshi0206e352011-08-16 15:34:10 -04001356 if (ret) {
1357 DRM_ERROR("failed to attach phys overlay regs\n");
1358 goto out_free_bo;
1359 }
Chris Wilson00731152014-05-21 12:42:56 +01001360 overlay->flip_addr = reg_bo->phys_handle->busaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001361 } else {
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001362 ret = i915_gem_obj_ggtt_pin(reg_bo, PAGE_SIZE, PIN_MAPPABLE);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001363 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001364 DRM_ERROR("failed to pin overlay register bo\n");
1365 goto out_free_bo;
1366 }
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001367 overlay->flip_addr = i915_gem_obj_ggtt_offset(reg_bo);
Chris Wilson0ddc1282010-08-12 09:35:00 +01001368
1369 ret = i915_gem_object_set_to_gtt_domain(reg_bo, true);
1370 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001371 DRM_ERROR("failed to move overlay register bo into the GTT\n");
1372 goto out_unpin_bo;
1373 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001374 }
1375
1376 /* init all values */
1377 overlay->color_key = 0x0101fe;
1378 overlay->brightness = -19;
1379 overlay->contrast = 75;
1380 overlay->saturation = 146;
1381
Chris Wilson8d74f652010-08-12 10:35:26 +01001382 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001383 if (!regs)
Chris Wilson79d24272011-06-28 11:27:47 +01001384 goto out_unpin_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001385
Ben Widawsky75020bc2012-04-16 14:07:43 -07001386 memset_io(regs, 0, sizeof(struct overlay_registers));
Daniel Vetter02e792f2009-09-15 22:57:34 +02001387 update_polyphase_filter(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001388 update_reg_attrs(overlay, regs);
1389
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001390 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001391
1392 dev_priv->overlay = overlay;
Chris Wilson79d24272011-06-28 11:27:47 +01001393 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001394 DRM_INFO("initialized overlay support\n");
1395 return;
1396
Chris Wilson0ddc1282010-08-12 09:35:00 +01001397out_unpin_bo:
Chris Wilson79d24272011-06-28 11:27:47 +01001398 if (!OVERLAY_NEEDS_PHYSICAL(dev))
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001399 i915_gem_object_ggtt_unpin(reg_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001400out_free_bo:
Chris Wilson05394f32010-11-08 19:18:58 +00001401 drm_gem_object_unreference(&reg_bo->base);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001402out_free:
Chris Wilson79d24272011-06-28 11:27:47 +01001403 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001404 kfree(overlay);
1405 return;
1406}
1407
1408void intel_cleanup_overlay(struct drm_device *dev)
1409{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001410 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001411
Chris Wilson62cf4e62010-08-12 10:50:36 +01001412 if (!dev_priv->overlay)
1413 return;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001414
Chris Wilson62cf4e62010-08-12 10:50:36 +01001415 /* The bo's should be free'd by the generic code already.
1416 * Furthermore modesetting teardown happens beforehand so the
1417 * hardware should be off already */
1418 BUG_ON(dev_priv->overlay->active);
1419
1420 drm_gem_object_unreference_unlocked(&dev_priv->overlay->reg_bo->base);
1421 kfree(dev_priv->overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001422}
Chris Wilson6ef3d422010-08-04 20:26:07 +01001423
1424struct intel_overlay_error_state {
1425 struct overlay_registers regs;
1426 unsigned long base;
1427 u32 dovsta;
1428 u32 isr;
1429};
1430
Ben Widawsky75020bc2012-04-16 14:07:43 -07001431static struct overlay_registers __iomem *
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001432intel_overlay_map_regs_atomic(struct intel_overlay *overlay)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001433{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001434 struct drm_i915_private *dev_priv = overlay->dev->dev_private;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001435 struct overlay_registers __iomem *regs;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001436
1437 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Ben Widawsky75020bc2012-04-16 14:07:43 -07001438 /* Cast to make sparse happy, but it's wc memory anyway, so
1439 * equivalent to the wc io mapping on X86. */
1440 regs = (struct overlay_registers __iomem *)
Chris Wilson00731152014-05-21 12:42:56 +01001441 overlay->reg_bo->phys_handle->vaddr;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001442 else
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001443 regs = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001444 i915_gem_obj_ggtt_offset(overlay->reg_bo));
Chris Wilson3bd3c932010-08-19 08:19:30 +01001445
1446 return regs;
1447}
1448
1449static void intel_overlay_unmap_regs_atomic(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001450 struct overlay_registers __iomem *regs)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001451{
1452 if (!OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001453 io_mapping_unmap_atomic(regs);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001454}
1455
1456
Chris Wilson6ef3d422010-08-04 20:26:07 +01001457struct intel_overlay_error_state *
1458intel_overlay_capture_error_state(struct drm_device *dev)
1459{
Jani Nikulad5d45cc2014-03-31 14:27:20 +03001460 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson6ef3d422010-08-04 20:26:07 +01001461 struct intel_overlay *overlay = dev_priv->overlay;
1462 struct intel_overlay_error_state *error;
1463 struct overlay_registers __iomem *regs;
1464
1465 if (!overlay || !overlay->active)
1466 return NULL;
1467
1468 error = kmalloc(sizeof(*error), GFP_ATOMIC);
1469 if (error == NULL)
1470 return NULL;
1471
1472 error->dovsta = I915_READ(DOVSTA);
1473 error->isr = I915_READ(ISR);
Chris Wilson315781482010-08-12 09:42:51 +01001474 if (OVERLAY_NEEDS_PHYSICAL(overlay->dev))
Chris Wilson00731152014-05-21 12:42:56 +01001475 error->base = (__force long)overlay->reg_bo->phys_handle->vaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001476 else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001477 error->base = i915_gem_obj_ggtt_offset(overlay->reg_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001478
1479 regs = intel_overlay_map_regs_atomic(overlay);
1480 if (!regs)
1481 goto err;
1482
1483 memcpy_fromio(&error->regs, regs, sizeof(struct overlay_registers));
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001484 intel_overlay_unmap_regs_atomic(overlay, regs);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001485
1486 return error;
1487
1488err:
1489 kfree(error);
1490 return NULL;
1491}
1492
1493void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001494intel_overlay_print_error_state(struct drm_i915_error_state_buf *m,
1495 struct intel_overlay_error_state *error)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001496{
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001497 i915_error_printf(m, "Overlay, status: 0x%08x, interrupt: 0x%08x\n",
1498 error->dovsta, error->isr);
1499 i915_error_printf(m, " Register file at 0x%08lx:\n",
1500 error->base);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001501
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001502#define P(x) i915_error_printf(m, " " #x ": 0x%08x\n", error->regs.x)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001503 P(OBUF_0Y);
1504 P(OBUF_1Y);
1505 P(OBUF_0U);
1506 P(OBUF_0V);
1507 P(OBUF_1U);
1508 P(OBUF_1V);
1509 P(OSTRIDE);
1510 P(YRGB_VPH);
1511 P(UV_VPH);
1512 P(HORZ_PH);
1513 P(INIT_PHS);
1514 P(DWINPOS);
1515 P(DWINSZ);
1516 P(SWIDTH);
1517 P(SWIDTHSW);
1518 P(SHEIGHT);
1519 P(YRGBSCALE);
1520 P(UVSCALE);
1521 P(OCLRC0);
1522 P(OCLRC1);
1523 P(DCLRKV);
1524 P(DCLRKM);
1525 P(SCLRKVH);
1526 P(SCLRKVL);
1527 P(SCLRKEN);
1528 P(OCONFIG);
1529 P(OCMD);
1530 P(OSTART_0Y);
1531 P(OSTART_1Y);
1532 P(OSTART_0U);
1533 P(OSTART_0V);
1534 P(OSTART_1U);
1535 P(OSTART_1V);
1536 P(OTILEOFF_0Y);
1537 P(OTILEOFF_1Y);
1538 P(OTILEOFF_0U);
1539 P(OTILEOFF_0V);
1540 P(OTILEOFF_1U);
1541 P(OTILEOFF_1V);
1542 P(FASTHSCALE);
1543 P(UVSCALEV);
1544#undef P
1545}