blob: f59d183708cde7427d1d50d9229557d590620c6a [file] [log] [blame]
Daniel Vetter02e792f2009-09-15 22:57:34 +02001/*
2 * Copyright © 2009
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 * Authors:
24 * Daniel Vetter <daniel@ffwll.ch>
25 *
26 * Derived from Xorg ddx, xf86-video-intel, src/i830_video.c
27 */
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
29#include <drm/i915_drm.h>
Daniel Vetter02e792f2009-09-15 22:57:34 +020030#include "i915_drv.h"
31#include "i915_reg.h"
32#include "intel_drv.h"
Chris Wilson5d723d72016-08-04 16:32:35 +010033#include "intel_frontbuffer.h"
Daniel Vetter02e792f2009-09-15 22:57:34 +020034
35/* Limits for overlay size. According to intel doc, the real limits are:
36 * Y width: 4095, UV width (planar): 2047, Y height: 2047,
37 * UV width (planar): * 1023. But the xorg thinks 2048 for height and width. Use
38 * the mininum of both. */
39#define IMAGE_MAX_WIDTH 2048
40#define IMAGE_MAX_HEIGHT 2046 /* 2 * 1023 */
41/* on 830 and 845 these large limits result in the card hanging */
42#define IMAGE_MAX_WIDTH_LEGACY 1024
43#define IMAGE_MAX_HEIGHT_LEGACY 1088
44
45/* overlay register definitions */
46/* OCMD register */
47#define OCMD_TILED_SURFACE (0x1<<19)
48#define OCMD_MIRROR_MASK (0x3<<17)
49#define OCMD_MIRROR_MODE (0x3<<17)
50#define OCMD_MIRROR_HORIZONTAL (0x1<<17)
51#define OCMD_MIRROR_VERTICAL (0x2<<17)
52#define OCMD_MIRROR_BOTH (0x3<<17)
53#define OCMD_BYTEORDER_MASK (0x3<<14) /* zero for YUYV or FOURCC YUY2 */
54#define OCMD_UV_SWAP (0x1<<14) /* YVYU */
55#define OCMD_Y_SWAP (0x2<<14) /* UYVY or FOURCC UYVY */
56#define OCMD_Y_AND_UV_SWAP (0x3<<14) /* VYUY */
57#define OCMD_SOURCE_FORMAT_MASK (0xf<<10)
58#define OCMD_RGB_888 (0x1<<10) /* not in i965 Intel docs */
59#define OCMD_RGB_555 (0x2<<10) /* not in i965 Intel docs */
60#define OCMD_RGB_565 (0x3<<10) /* not in i965 Intel docs */
61#define OCMD_YUV_422_PACKED (0x8<<10)
62#define OCMD_YUV_411_PACKED (0x9<<10) /* not in i965 Intel docs */
63#define OCMD_YUV_420_PLANAR (0xc<<10)
64#define OCMD_YUV_422_PLANAR (0xd<<10)
65#define OCMD_YUV_410_PLANAR (0xe<<10) /* also 411 */
66#define OCMD_TVSYNCFLIP_PARITY (0x1<<9)
67#define OCMD_TVSYNCFLIP_ENABLE (0x1<<7)
Chris Wilsond7961362010-07-13 13:52:17 +010068#define OCMD_BUF_TYPE_MASK (0x1<<5)
Daniel Vetter02e792f2009-09-15 22:57:34 +020069#define OCMD_BUF_TYPE_FRAME (0x0<<5)
70#define OCMD_BUF_TYPE_FIELD (0x1<<5)
71#define OCMD_TEST_MODE (0x1<<4)
72#define OCMD_BUFFER_SELECT (0x3<<2)
73#define OCMD_BUFFER0 (0x0<<2)
74#define OCMD_BUFFER1 (0x1<<2)
75#define OCMD_FIELD_SELECT (0x1<<2)
76#define OCMD_FIELD0 (0x0<<1)
77#define OCMD_FIELD1 (0x1<<1)
78#define OCMD_ENABLE (0x1<<0)
79
80/* OCONFIG register */
81#define OCONF_PIPE_MASK (0x1<<18)
82#define OCONF_PIPE_A (0x0<<18)
83#define OCONF_PIPE_B (0x1<<18)
84#define OCONF_GAMMA2_ENABLE (0x1<<16)
85#define OCONF_CSC_MODE_BT601 (0x0<<5)
86#define OCONF_CSC_MODE_BT709 (0x1<<5)
87#define OCONF_CSC_BYPASS (0x1<<4)
88#define OCONF_CC_OUT_8BIT (0x1<<3)
89#define OCONF_TEST_MODE (0x1<<2)
90#define OCONF_THREE_LINE_BUFFER (0x1<<0)
91#define OCONF_TWO_LINE_BUFFER (0x0<<0)
92
93/* DCLRKM (dst-key) register */
94#define DST_KEY_ENABLE (0x1<<31)
95#define CLK_RGB24_MASK 0x0
96#define CLK_RGB16_MASK 0x070307
97#define CLK_RGB15_MASK 0x070707
98#define CLK_RGB8I_MASK 0xffffff
99
100#define RGB16_TO_COLORKEY(c) \
101 (((c & 0xF800) << 8) | ((c & 0x07E0) << 5) | ((c & 0x001F) << 3))
102#define RGB15_TO_COLORKEY(c) \
103 (((c & 0x7c00) << 9) | ((c & 0x03E0) << 6) | ((c & 0x001F) << 3))
104
105/* overlay flip addr flag */
106#define OFC_UPDATE 0x1
107
108/* polyphase filter coefficients */
109#define N_HORIZ_Y_TAPS 5
110#define N_VERT_Y_TAPS 3
111#define N_HORIZ_UV_TAPS 3
112#define N_VERT_UV_TAPS 3
113#define N_PHASES 17
114#define MAX_TAPS 5
115
116/* memory bufferd overlay registers */
117struct overlay_registers {
Akshay Joshi0206e352011-08-16 15:34:10 -0400118 u32 OBUF_0Y;
119 u32 OBUF_1Y;
120 u32 OBUF_0U;
121 u32 OBUF_0V;
122 u32 OBUF_1U;
123 u32 OBUF_1V;
124 u32 OSTRIDE;
125 u32 YRGB_VPH;
126 u32 UV_VPH;
127 u32 HORZ_PH;
128 u32 INIT_PHS;
129 u32 DWINPOS;
130 u32 DWINSZ;
131 u32 SWIDTH;
132 u32 SWIDTHSW;
133 u32 SHEIGHT;
134 u32 YRGBSCALE;
135 u32 UVSCALE;
136 u32 OCLRC0;
137 u32 OCLRC1;
138 u32 DCLRKV;
139 u32 DCLRKM;
140 u32 SCLRKVH;
141 u32 SCLRKVL;
142 u32 SCLRKEN;
143 u32 OCONFIG;
144 u32 OCMD;
145 u32 RESERVED1; /* 0x6C */
146 u32 OSTART_0Y;
147 u32 OSTART_1Y;
148 u32 OSTART_0U;
149 u32 OSTART_0V;
150 u32 OSTART_1U;
151 u32 OSTART_1V;
152 u32 OTILEOFF_0Y;
153 u32 OTILEOFF_1Y;
154 u32 OTILEOFF_0U;
155 u32 OTILEOFF_0V;
156 u32 OTILEOFF_1U;
157 u32 OTILEOFF_1V;
158 u32 FASTHSCALE; /* 0xA0 */
159 u32 UVSCALEV; /* 0xA4 */
160 u32 RESERVEDC[(0x200 - 0xA8) / 4]; /* 0xA8 - 0x1FC */
161 u16 Y_VCOEFS[N_VERT_Y_TAPS * N_PHASES]; /* 0x200 */
162 u16 RESERVEDD[0x100 / 2 - N_VERT_Y_TAPS * N_PHASES];
163 u16 Y_HCOEFS[N_HORIZ_Y_TAPS * N_PHASES]; /* 0x300 */
164 u16 RESERVEDE[0x200 / 2 - N_HORIZ_Y_TAPS * N_PHASES];
165 u16 UV_VCOEFS[N_VERT_UV_TAPS * N_PHASES]; /* 0x500 */
166 u16 RESERVEDF[0x100 / 2 - N_VERT_UV_TAPS * N_PHASES];
167 u16 UV_HCOEFS[N_HORIZ_UV_TAPS * N_PHASES]; /* 0x600 */
168 u16 RESERVEDG[0x100 / 2 - N_HORIZ_UV_TAPS * N_PHASES];
Daniel Vetter02e792f2009-09-15 22:57:34 +0200169};
170
Chris Wilson23f09ce2010-08-12 13:53:37 +0100171struct intel_overlay {
Chris Wilson1ee8da62016-05-12 12:43:23 +0100172 struct drm_i915_private *i915;
Chris Wilson23f09ce2010-08-12 13:53:37 +0100173 struct intel_crtc *crtc;
Chris Wilson9b3b7842016-08-15 10:49:01 +0100174 struct i915_vma *vma;
175 struct i915_vma *old_vma;
Ville Syrjälä209c2a52015-03-31 10:37:23 +0300176 bool active;
177 bool pfit_active;
Chris Wilson23f09ce2010-08-12 13:53:37 +0100178 u32 pfit_vscale_ratio; /* shifted-point number, (1<<12) == 1.0 */
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100179 u32 color_key:24;
180 u32 color_key_enabled:1;
Chris Wilson23f09ce2010-08-12 13:53:37 +0100181 u32 brightness, contrast, saturation;
182 u32 old_xscale, old_yscale;
183 /* register access */
184 u32 flip_addr;
185 struct drm_i915_gem_object *reg_bo;
186 /* flip handling */
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100187 struct i915_gem_active last_flip;
Chris Wilson23f09ce2010-08-12 13:53:37 +0100188};
Daniel Vetter02e792f2009-09-15 22:57:34 +0200189
Ville Syrjälä8fdded82016-12-07 19:28:12 +0200190static void i830_overlay_clock_gating(struct drm_i915_private *dev_priv,
191 bool enable)
192{
193 struct pci_dev *pdev = dev_priv->drm.pdev;
194 u8 val;
195
196 /* WA_OVERLAY_CLKGATE:alm */
197 if (enable)
198 I915_WRITE(DSPCLK_GATE_D, 0);
199 else
200 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
201
202 /* WA_DISABLE_L2CACHE_CLOCK_GATING:alm */
203 pci_bus_read_config_byte(pdev->bus,
204 PCI_DEVFN(0, 0), I830_CLOCK_GATE, &val);
205 if (enable)
206 val &= ~I830_L2_CACHE_CLOCK_GATE_DISABLE;
207 else
208 val |= I830_L2_CACHE_CLOCK_GATE_DISABLE;
209 pci_bus_write_config_byte(pdev->bus,
210 PCI_DEVFN(0, 0), I830_CLOCK_GATE, val);
211}
212
Ben Widawsky75020bc2012-04-16 14:07:43 -0700213static struct overlay_registers __iomem *
Chris Wilson8d74f652010-08-12 10:35:26 +0100214intel_overlay_map_regs(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200215{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100216 struct drm_i915_private *dev_priv = overlay->i915;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700217 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200218
Chris Wilson1ee8da62016-05-12 12:43:23 +0100219 if (OVERLAY_NEEDS_PHYSICAL(dev_priv))
Chris Wilson00731152014-05-21 12:42:56 +0100220 regs = (struct overlay_registers __iomem *)overlay->reg_bo->phys_handle->vaddr;
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100221 else
Chris Wilsonf7bbe782016-08-19 16:54:27 +0100222 regs = io_mapping_map_wc(&dev_priv->ggtt.mappable,
Chris Wilsond8dab002016-04-28 09:56:37 +0100223 overlay->flip_addr,
224 PAGE_SIZE);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200225
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100226 return regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200227}
228
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100229static void intel_overlay_unmap_regs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700230 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200231{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100232 if (!OVERLAY_NEEDS_PHYSICAL(overlay->i915))
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100233 io_mapping_unmap(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200234}
Daniel Vetter02e792f2009-09-15 22:57:34 +0200235
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100236static void intel_overlay_submit_request(struct intel_overlay *overlay,
237 struct drm_i915_gem_request *req,
238 i915_gem_retire_fn retire)
239{
240 GEM_BUG_ON(i915_gem_active_peek(&overlay->last_flip,
241 &overlay->i915->drm.struct_mutex));
Ville Syrjäläecd9caa02016-12-07 17:56:47 +0000242 i915_gem_active_set_retire_fn(&overlay->last_flip, retire,
243 &overlay->i915->drm.struct_mutex);
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100244 i915_gem_active_set(&overlay->last_flip, req);
245 i915_add_request(req);
246}
247
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100248static int intel_overlay_do_wait_request(struct intel_overlay *overlay,
John Harrisondad540c2015-05-29 17:43:47 +0100249 struct drm_i915_gem_request *req,
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100250 i915_gem_retire_fn retire)
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100251{
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100252 intel_overlay_submit_request(overlay, req, retire);
253 return i915_gem_active_retire(&overlay->last_flip,
254 &overlay->i915->drm.struct_mutex);
Chris Wilsonb6c028e2010-08-12 11:55:08 +0100255}
256
Chris Wilson8e637172016-08-02 22:50:26 +0100257static struct drm_i915_gem_request *alloc_request(struct intel_overlay *overlay)
258{
259 struct drm_i915_private *dev_priv = overlay->i915;
Akash Goel3b3f1652016-10-13 22:44:48 +0530260 struct intel_engine_cs *engine = dev_priv->engine[RCS];
Chris Wilson8e637172016-08-02 22:50:26 +0100261
262 return i915_gem_request_alloc(engine, dev_priv->kernel_context);
263}
264
Daniel Vetter02e792f2009-09-15 22:57:34 +0200265/* overlay needs to be disable in OCMD reg */
266static int intel_overlay_on(struct intel_overlay *overlay)
267{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100268 struct drm_i915_private *dev_priv = overlay->i915;
John Harrisondad540c2015-05-29 17:43:47 +0100269 struct drm_i915_gem_request *req;
Chris Wilson7e37f882016-08-02 22:50:21 +0100270 struct intel_ring *ring;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200271 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200272
Ville Syrjälä77589f52015-03-31 10:37:22 +0300273 WARN_ON(overlay->active);
Chris Wilson1ee8da62016-05-12 12:43:23 +0100274 WARN_ON(IS_I830(dev_priv) && !(dev_priv->quirks & QUIRK_PIPEA_FORCE));
Chris Wilson106dada2010-07-16 17:13:01 +0100275
Chris Wilson8e637172016-08-02 22:50:26 +0100276 req = alloc_request(overlay);
Dave Gordon26827082016-01-19 19:02:53 +0000277 if (IS_ERR(req))
278 return PTR_ERR(req);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100279
John Harrison5fb9de12015-05-29 17:44:07 +0100280 ret = intel_ring_begin(req, 4);
John Harrisondad540c2015-05-29 17:43:47 +0100281 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100282 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100283 return ret;
284 }
285
Ville Syrjälä1c7c4302015-03-31 10:37:24 +0300286 overlay->active = true;
287
Ville Syrjälä8fdded82016-12-07 19:28:12 +0200288 if (IS_I830(dev_priv))
289 i830_overlay_clock_gating(dev_priv, false);
290
Chris Wilson1dae2df2016-08-02 22:50:19 +0100291 ring = req->ring;
Chris Wilsonb5321f32016-08-02 22:50:18 +0100292 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_ON);
293 intel_ring_emit(ring, overlay->flip_addr | OFC_UPDATE);
294 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
295 intel_ring_emit(ring, MI_NOOP);
296 intel_ring_advance(ring);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200297
John Harrisondad540c2015-05-29 17:43:47 +0100298 return intel_overlay_do_wait_request(overlay, req, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200299}
300
Ville Syrjälä58d09eb2016-12-07 19:28:06 +0200301static void intel_overlay_flip_prepare(struct intel_overlay *overlay,
302 struct i915_vma *vma)
303{
304 enum pipe pipe = overlay->crtc->pipe;
305
306 WARN_ON(overlay->old_vma);
307
308 i915_gem_track_fb(overlay->vma ? overlay->vma->obj : NULL,
309 vma ? vma->obj : NULL,
310 INTEL_FRONTBUFFER_OVERLAY(pipe));
311
312 intel_frontbuffer_flip_prepare(overlay->i915,
313 INTEL_FRONTBUFFER_OVERLAY(pipe));
314
315 overlay->old_vma = overlay->vma;
316 if (vma)
317 overlay->vma = i915_vma_get(vma);
318 else
319 overlay->vma = NULL;
320}
321
Daniel Vetter02e792f2009-09-15 22:57:34 +0200322/* overlay needs to be enabled in OCMD reg */
Chris Wilson8dc5d142010-08-12 12:36:12 +0100323static int intel_overlay_continue(struct intel_overlay *overlay,
Ville Syrjälä58d09eb2016-12-07 19:28:06 +0200324 struct i915_vma *vma,
Chris Wilson8dc5d142010-08-12 12:36:12 +0100325 bool load_polyphase_filter)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200326{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100327 struct drm_i915_private *dev_priv = overlay->i915;
John Harrisondad540c2015-05-29 17:43:47 +0100328 struct drm_i915_gem_request *req;
Chris Wilson7e37f882016-08-02 22:50:21 +0100329 struct intel_ring *ring;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200330 u32 flip_addr = overlay->flip_addr;
331 u32 tmp;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100332 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200333
Ville Syrjälä77589f52015-03-31 10:37:22 +0300334 WARN_ON(!overlay->active);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200335
336 if (load_polyphase_filter)
337 flip_addr |= OFC_UPDATE;
338
339 /* check for underruns */
340 tmp = I915_READ(DOVSTA);
341 if (tmp & (1 << 17))
342 DRM_DEBUG("overlay underrun, DOVSTA: %x\n", tmp);
343
Chris Wilson8e637172016-08-02 22:50:26 +0100344 req = alloc_request(overlay);
Dave Gordon26827082016-01-19 19:02:53 +0000345 if (IS_ERR(req))
346 return PTR_ERR(req);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100347
John Harrison5fb9de12015-05-29 17:44:07 +0100348 ret = intel_ring_begin(req, 2);
John Harrisondad540c2015-05-29 17:43:47 +0100349 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100350 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100351 return ret;
352 }
353
Chris Wilson1dae2df2016-08-02 22:50:19 +0100354 ring = req->ring;
Chris Wilsonb5321f32016-08-02 22:50:18 +0100355 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
356 intel_ring_emit(ring, flip_addr);
357 intel_ring_advance(ring);
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200358
Ville Syrjälä58d09eb2016-12-07 19:28:06 +0200359 intel_overlay_flip_prepare(overlay, vma);
360
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100361 intel_overlay_submit_request(overlay, req, NULL);
John Harrisonbf7dc5b2015-05-29 17:43:24 +0100362
363 return 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200364}
365
Ville Syrjälä58d09eb2016-12-07 19:28:06 +0200366static void intel_overlay_release_old_vma(struct intel_overlay *overlay)
367{
368 struct i915_vma *vma;
369
370 vma = fetch_and_zero(&overlay->old_vma);
371 if (WARN_ON(!vma))
372 return;
373
374 intel_frontbuffer_flip_complete(overlay->i915,
375 INTEL_FRONTBUFFER_OVERLAY(overlay->crtc->pipe));
376
377 i915_gem_object_unpin_from_display_plane(vma);
378 i915_vma_put(vma);
379}
380
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100381static void intel_overlay_release_old_vid_tail(struct i915_gem_active *active,
382 struct drm_i915_gem_request *req)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200383{
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100384 struct intel_overlay *overlay =
385 container_of(active, typeof(*overlay), last_flip);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200386
Ville Syrjälä58d09eb2016-12-07 19:28:06 +0200387 intel_overlay_release_old_vma(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200388}
389
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100390static void intel_overlay_off_tail(struct i915_gem_active *active,
391 struct drm_i915_gem_request *req)
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200392{
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100393 struct intel_overlay *overlay =
394 container_of(active, typeof(*overlay), last_flip);
Ville Syrjälä8fdded82016-12-07 19:28:12 +0200395 struct drm_i915_private *dev_priv = overlay->i915;
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200396
Ville Syrjälä58d09eb2016-12-07 19:28:06 +0200397 intel_overlay_release_old_vma(overlay);
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200398
399 overlay->crtc->overlay = NULL;
400 overlay->crtc = NULL;
Ville Syrjälä209c2a52015-03-31 10:37:23 +0300401 overlay->active = false;
Ville Syrjälä8fdded82016-12-07 19:28:12 +0200402
403 if (IS_I830(dev_priv))
404 i830_overlay_clock_gating(dev_priv, true);
Daniel Vetter12ca45f2037-04-25 10:08:26 +0200405}
406
Daniel Vetter02e792f2009-09-15 22:57:34 +0200407/* overlay needs to be disabled in OCMD reg */
Chris Wilsonce453d82011-02-21 14:43:56 +0000408static int intel_overlay_off(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200409{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100410 struct drm_i915_private *dev_priv = overlay->i915;
John Harrisondad540c2015-05-29 17:43:47 +0100411 struct drm_i915_gem_request *req;
Chris Wilson7e37f882016-08-02 22:50:21 +0100412 struct intel_ring *ring;
Chris Wilson8dc5d142010-08-12 12:36:12 +0100413 u32 flip_addr = overlay->flip_addr;
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100414 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200415
Ville Syrjälä77589f52015-03-31 10:37:22 +0300416 WARN_ON(!overlay->active);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200417
418 /* According to intel docs the overlay hw may hang (when switching
419 * off) without loading the filter coeffs. It is however unclear whether
420 * this applies to the disabling of the overlay or to the switching off
421 * of the hw. Do it in both cases */
422 flip_addr |= OFC_UPDATE;
423
Chris Wilson8e637172016-08-02 22:50:26 +0100424 req = alloc_request(overlay);
Dave Gordon26827082016-01-19 19:02:53 +0000425 if (IS_ERR(req))
426 return PTR_ERR(req);
Chris Wilsonacb868d2012-09-26 13:47:30 +0100427
John Harrison5fb9de12015-05-29 17:44:07 +0100428 ret = intel_ring_begin(req, 6);
John Harrisondad540c2015-05-29 17:43:47 +0100429 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100430 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100431 return ret;
432 }
433
Chris Wilson1dae2df2016-08-02 22:50:19 +0100434 ring = req->ring;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200435 /* wait for overlay to go idle */
Chris Wilsonb5321f32016-08-02 22:50:18 +0100436 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE);
437 intel_ring_emit(ring, flip_addr);
438 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Chris Wilson722506f2010-08-12 09:28:50 +0100439 /* turn overlay off */
Chris Wilson1ee8da62016-05-12 12:43:23 +0100440 if (IS_I830(dev_priv)) {
Daniel Vettera9193982012-10-22 12:55:55 +0200441 /* Workaround: Don't disable the overlay fully, since otherwise
442 * it dies on the next OVERLAY_ON cmd. */
Chris Wilsonb5321f32016-08-02 22:50:18 +0100443 intel_ring_emit(ring, MI_NOOP);
444 intel_ring_emit(ring, MI_NOOP);
445 intel_ring_emit(ring, MI_NOOP);
Daniel Vettera9193982012-10-22 12:55:55 +0200446 } else {
Chris Wilsonb5321f32016-08-02 22:50:18 +0100447 intel_ring_emit(ring, MI_OVERLAY_FLIP | MI_OVERLAY_OFF);
448 intel_ring_emit(ring, flip_addr);
449 intel_ring_emit(ring,
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000450 MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Daniel Vettera9193982012-10-22 12:55:55 +0200451 }
Chris Wilsonb5321f32016-08-02 22:50:18 +0100452 intel_ring_advance(ring);
Chris Wilson722506f2010-08-12 09:28:50 +0100453
Ville Syrjälä58d09eb2016-12-07 19:28:06 +0200454 intel_overlay_flip_prepare(overlay, NULL);
455
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100456 return intel_overlay_do_wait_request(overlay, req,
457 intel_overlay_off_tail);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200458}
459
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200460/* recover from an interruption due to a signal
461 * We have to be careful not to repeat work forever an make forward progess. */
Chris Wilsonce453d82011-02-21 14:43:56 +0000462static int intel_overlay_recover_from_interrupt(struct intel_overlay *overlay)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200463{
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100464 return i915_gem_active_retire(&overlay->last_flip,
465 &overlay->i915->drm.struct_mutex);
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200466}
467
Daniel Vetter5a5a0c62009-09-15 22:57:36 +0200468/* Wait for pending overlay flip and release old frame.
469 * Needs to be called before the overlay register are changed
Chris Wilson8d74f652010-08-12 10:35:26 +0100470 * via intel_overlay_(un)map_regs
471 */
Daniel Vetter02e792f2009-09-15 22:57:34 +0200472static int intel_overlay_release_old_vid(struct intel_overlay *overlay)
473{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100474 struct drm_i915_private *dev_priv = overlay->i915;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200475 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200476
Chris Wilson91c8a322016-07-05 10:40:23 +0100477 lockdep_assert_held(&dev_priv->drm.struct_mutex);
Ville Syrjälä1362b772014-11-26 17:07:29 +0200478
Chris Wilson5cd68c92010-08-12 12:21:54 +0100479 /* Only wait if there is actually an old frame to release to
480 * guarantee forward progress.
481 */
Chris Wilson9b3b7842016-08-15 10:49:01 +0100482 if (!overlay->old_vma)
Daniel Vetter03f77ea2009-09-15 22:57:37 +0200483 return 0;
484
Chris Wilson5cd68c92010-08-12 12:21:54 +0100485 if (I915_READ(ISR) & I915_OVERLAY_PLANE_FLIP_PENDING_INTERRUPT) {
486 /* synchronous slowpath */
John Harrisondad540c2015-05-29 17:43:47 +0100487 struct drm_i915_gem_request *req;
Chris Wilson7e37f882016-08-02 22:50:21 +0100488 struct intel_ring *ring;
John Harrisondad540c2015-05-29 17:43:47 +0100489
Chris Wilson8e637172016-08-02 22:50:26 +0100490 req = alloc_request(overlay);
Dave Gordon26827082016-01-19 19:02:53 +0000491 if (IS_ERR(req))
492 return PTR_ERR(req);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100493
John Harrison5fb9de12015-05-29 17:44:07 +0100494 ret = intel_ring_begin(req, 2);
John Harrisondad540c2015-05-29 17:43:47 +0100495 if (ret) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +0100496 i915_add_request_no_flush(req);
John Harrisondad540c2015-05-29 17:43:47 +0100497 return ret;
498 }
499
Chris Wilson1dae2df2016-08-02 22:50:19 +0100500 ring = req->ring;
Chris Wilsonb5321f32016-08-02 22:50:18 +0100501 intel_ring_emit(ring,
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000502 MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP);
Chris Wilsonb5321f32016-08-02 22:50:18 +0100503 intel_ring_emit(ring, MI_NOOP);
504 intel_ring_advance(ring);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200505
John Harrisondad540c2015-05-29 17:43:47 +0100506 ret = intel_overlay_do_wait_request(overlay, req,
Chris Wilsonb303cf92010-08-12 14:03:48 +0100507 intel_overlay_release_old_vid_tail);
Chris Wilson5cd68c92010-08-12 12:21:54 +0100508 if (ret)
509 return ret;
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100510 } else
511 intel_overlay_release_old_vid_tail(&overlay->last_flip, NULL);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200512
513 return 0;
514}
515
Ville Syrjälä1362b772014-11-26 17:07:29 +0200516void intel_overlay_reset(struct drm_i915_private *dev_priv)
517{
518 struct intel_overlay *overlay = dev_priv->overlay;
519
520 if (!overlay)
521 return;
522
523 intel_overlay_release_old_vid(overlay);
524
Ville Syrjälä1362b772014-11-26 17:07:29 +0200525 overlay->old_xscale = 0;
526 overlay->old_yscale = 0;
527 overlay->crtc = NULL;
528 overlay->active = false;
529}
530
Daniel Vetter02e792f2009-09-15 22:57:34 +0200531struct put_image_params {
532 int format;
533 short dst_x;
534 short dst_y;
535 short dst_w;
536 short dst_h;
537 short src_w;
538 short src_scan_h;
539 short src_scan_w;
540 short src_h;
541 short stride_Y;
542 short stride_UV;
543 int offset_Y;
544 int offset_U;
545 int offset_V;
546};
547
548static int packed_depth_bytes(u32 format)
549{
550 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100551 case I915_OVERLAY_YUV422:
552 return 4;
553 case I915_OVERLAY_YUV411:
554 /* return 6; not implemented */
555 default:
556 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200557 }
558}
559
560static int packed_width_bytes(u32 format, short width)
561{
562 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100563 case I915_OVERLAY_YUV422:
564 return width << 1;
565 default:
566 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200567 }
568}
569
570static int uv_hsubsampling(u32 format)
571{
572 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100573 case I915_OVERLAY_YUV422:
574 case I915_OVERLAY_YUV420:
575 return 2;
576 case I915_OVERLAY_YUV411:
577 case I915_OVERLAY_YUV410:
578 return 4;
579 default:
580 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200581 }
582}
583
584static int uv_vsubsampling(u32 format)
585{
586 switch (format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100587 case I915_OVERLAY_YUV420:
588 case I915_OVERLAY_YUV410:
589 return 2;
590 case I915_OVERLAY_YUV422:
591 case I915_OVERLAY_YUV411:
592 return 1;
593 default:
594 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200595 }
596}
597
Chris Wilson1ee8da62016-05-12 12:43:23 +0100598static u32 calc_swidthsw(struct drm_i915_private *dev_priv, u32 offset, u32 width)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200599{
Ville Syrjälä7039a6dc2016-12-07 19:28:09 +0200600 u32 sw;
601
602 if (IS_GEN2(dev_priv))
603 sw = ALIGN((offset & 31) + width, 32);
604 else
605 sw = ALIGN((offset & 63) + width, 64);
606
607 if (sw == 0)
608 return 0;
609
610 return (sw - 32) >> 3;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200611}
612
Ville Syrjälä2daac462016-12-07 19:28:10 +0200613static const u16 y_static_hcoeffs[N_PHASES][N_HORIZ_Y_TAPS] = {
614 [ 0] = { 0x3000, 0xb4a0, 0x1930, 0x1920, 0xb4a0, },
615 [ 1] = { 0x3000, 0xb500, 0x19d0, 0x1880, 0xb440, },
616 [ 2] = { 0x3000, 0xb540, 0x1a88, 0x2f80, 0xb3e0, },
617 [ 3] = { 0x3000, 0xb580, 0x1b30, 0x2e20, 0xb380, },
618 [ 4] = { 0x3000, 0xb5c0, 0x1bd8, 0x2cc0, 0xb320, },
619 [ 5] = { 0x3020, 0xb5e0, 0x1c60, 0x2b80, 0xb2c0, },
620 [ 6] = { 0x3020, 0xb5e0, 0x1cf8, 0x2a20, 0xb260, },
621 [ 7] = { 0x3020, 0xb5e0, 0x1d80, 0x28e0, 0xb200, },
622 [ 8] = { 0x3020, 0xb5c0, 0x1e08, 0x3f40, 0xb1c0, },
623 [ 9] = { 0x3020, 0xb580, 0x1e78, 0x3ce0, 0xb160, },
624 [10] = { 0x3040, 0xb520, 0x1ed8, 0x3aa0, 0xb120, },
625 [11] = { 0x3040, 0xb4a0, 0x1f30, 0x3880, 0xb0e0, },
626 [12] = { 0x3040, 0xb400, 0x1f78, 0x3680, 0xb0a0, },
627 [13] = { 0x3020, 0xb340, 0x1fb8, 0x34a0, 0xb060, },
628 [14] = { 0x3020, 0xb240, 0x1fe0, 0x32e0, 0xb040, },
629 [15] = { 0x3020, 0xb140, 0x1ff8, 0x3160, 0xb020, },
630 [16] = { 0xb000, 0x3000, 0x0800, 0x3000, 0xb000, },
Chris Wilson722506f2010-08-12 09:28:50 +0100631};
632
Ville Syrjälä2daac462016-12-07 19:28:10 +0200633static const u16 uv_static_hcoeffs[N_PHASES][N_HORIZ_UV_TAPS] = {
634 [ 0] = { 0x3000, 0x1800, 0x1800, },
635 [ 1] = { 0xb000, 0x18d0, 0x2e60, },
636 [ 2] = { 0xb000, 0x1990, 0x2ce0, },
637 [ 3] = { 0xb020, 0x1a68, 0x2b40, },
638 [ 4] = { 0xb040, 0x1b20, 0x29e0, },
639 [ 5] = { 0xb060, 0x1bd8, 0x2880, },
640 [ 6] = { 0xb080, 0x1c88, 0x3e60, },
641 [ 7] = { 0xb0a0, 0x1d28, 0x3c00, },
642 [ 8] = { 0xb0c0, 0x1db8, 0x39e0, },
643 [ 9] = { 0xb0e0, 0x1e40, 0x37e0, },
644 [10] = { 0xb100, 0x1eb8, 0x3620, },
645 [11] = { 0xb100, 0x1f18, 0x34a0, },
646 [12] = { 0xb100, 0x1f68, 0x3360, },
647 [13] = { 0xb0e0, 0x1fa8, 0x3240, },
648 [14] = { 0xb0c0, 0x1fe0, 0x3140, },
649 [15] = { 0xb060, 0x1ff0, 0x30a0, },
650 [16] = { 0x3000, 0x0800, 0x3000, },
Chris Wilson722506f2010-08-12 09:28:50 +0100651};
Daniel Vetter02e792f2009-09-15 22:57:34 +0200652
Ben Widawsky75020bc2012-04-16 14:07:43 -0700653static void update_polyphase_filter(struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200654{
Ben Widawsky75020bc2012-04-16 14:07:43 -0700655 memcpy_toio(regs->Y_HCOEFS, y_static_hcoeffs, sizeof(y_static_hcoeffs));
656 memcpy_toio(regs->UV_HCOEFS, uv_static_hcoeffs,
657 sizeof(uv_static_hcoeffs));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200658}
659
660static bool update_scaling_factors(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700661 struct overlay_registers __iomem *regs,
Daniel Vetter02e792f2009-09-15 22:57:34 +0200662 struct put_image_params *params)
663{
664 /* fixed point with a 12 bit shift */
665 u32 xscale, yscale, xscale_UV, yscale_UV;
666#define FP_SHIFT 12
667#define FRACT_MASK 0xfff
668 bool scale_changed = false;
669 int uv_hscale = uv_hsubsampling(params->format);
670 int uv_vscale = uv_vsubsampling(params->format);
671
672 if (params->dst_w > 1)
673 xscale = ((params->src_scan_w - 1) << FP_SHIFT)
674 /(params->dst_w);
675 else
676 xscale = 1 << FP_SHIFT;
677
678 if (params->dst_h > 1)
679 yscale = ((params->src_scan_h - 1) << FP_SHIFT)
680 /(params->dst_h);
681 else
682 yscale = 1 << FP_SHIFT;
683
684 /*if (params->format & I915_OVERLAY_YUV_PLANAR) {*/
Chris Wilson722506f2010-08-12 09:28:50 +0100685 xscale_UV = xscale/uv_hscale;
686 yscale_UV = yscale/uv_vscale;
687 /* make the Y scale to UV scale ratio an exact multiply */
688 xscale = xscale_UV * uv_hscale;
689 yscale = yscale_UV * uv_vscale;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200690 /*} else {
Chris Wilson722506f2010-08-12 09:28:50 +0100691 xscale_UV = 0;
692 yscale_UV = 0;
693 }*/
Daniel Vetter02e792f2009-09-15 22:57:34 +0200694
695 if (xscale != overlay->old_xscale || yscale != overlay->old_yscale)
696 scale_changed = true;
697 overlay->old_xscale = xscale;
698 overlay->old_yscale = yscale;
699
Ben Widawsky75020bc2012-04-16 14:07:43 -0700700 iowrite32(((yscale & FRACT_MASK) << 20) |
701 ((xscale >> FP_SHIFT) << 16) |
702 ((xscale & FRACT_MASK) << 3),
703 &regs->YRGBSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100704
Ben Widawsky75020bc2012-04-16 14:07:43 -0700705 iowrite32(((yscale_UV & FRACT_MASK) << 20) |
706 ((xscale_UV >> FP_SHIFT) << 16) |
707 ((xscale_UV & FRACT_MASK) << 3),
708 &regs->UVSCALE);
Chris Wilson722506f2010-08-12 09:28:50 +0100709
Ben Widawsky75020bc2012-04-16 14:07:43 -0700710 iowrite32((((yscale >> FP_SHIFT) << 16) |
711 ((yscale_UV >> FP_SHIFT) << 0)),
712 &regs->UVSCALEV);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200713
714 if (scale_changed)
715 update_polyphase_filter(regs);
716
717 return scale_changed;
718}
719
720static void update_colorkey(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -0700721 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200722{
Ville Syrjälä39ccc042016-12-07 19:28:11 +0200723 const struct intel_plane_state *state =
724 to_intel_plane_state(overlay->crtc->base.primary->state);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200725 u32 key = overlay->color_key;
Ville Syrjälä39ccc042016-12-07 19:28:11 +0200726 u32 format = 0;
727 u32 flags = 0;
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100728
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100729 if (overlay->color_key_enabled)
730 flags |= DST_KEY_ENABLE;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100731
Ville Syrjälä39ccc042016-12-07 19:28:11 +0200732 if (state->base.visible)
733 format = state->base.fb->pixel_format;
734
735 switch (format) {
736 case DRM_FORMAT_C8:
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100737 key = 0;
738 flags |= CLK_RGB8I_MASK;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100739 break;
Ville Syrjälä39ccc042016-12-07 19:28:11 +0200740 case DRM_FORMAT_XRGB1555:
741 key = RGB15_TO_COLORKEY(key);
742 flags |= CLK_RGB15_MASK;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100743 break;
Ville Syrjälä39ccc042016-12-07 19:28:11 +0200744 case DRM_FORMAT_RGB565:
745 key = RGB16_TO_COLORKEY(key);
746 flags |= CLK_RGB16_MASK;
747 break;
748 default:
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100749 flags |= CLK_RGB24_MASK;
Chris Wilson6ba3ddd2010-08-12 09:30:58 +0100750 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200751 }
Chris Wilsonea9da4e2015-04-02 10:35:08 +0100752
753 iowrite32(key, &regs->DCLRKV);
754 iowrite32(flags, &regs->DCLRKM);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200755}
756
757static u32 overlay_cmd_reg(struct put_image_params *params)
758{
759 u32 cmd = OCMD_ENABLE | OCMD_BUF_TYPE_FRAME | OCMD_BUFFER0;
760
761 if (params->format & I915_OVERLAY_YUV_PLANAR) {
762 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100763 case I915_OVERLAY_YUV422:
764 cmd |= OCMD_YUV_422_PLANAR;
765 break;
766 case I915_OVERLAY_YUV420:
767 cmd |= OCMD_YUV_420_PLANAR;
768 break;
769 case I915_OVERLAY_YUV411:
770 case I915_OVERLAY_YUV410:
771 cmd |= OCMD_YUV_410_PLANAR;
772 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200773 }
774 } else { /* YUV packed */
775 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100776 case I915_OVERLAY_YUV422:
777 cmd |= OCMD_YUV_422_PACKED;
778 break;
779 case I915_OVERLAY_YUV411:
780 cmd |= OCMD_YUV_411_PACKED;
781 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200782 }
783
784 switch (params->format & I915_OVERLAY_SWAP_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +0100785 case I915_OVERLAY_NO_SWAP:
786 break;
787 case I915_OVERLAY_UV_SWAP:
788 cmd |= OCMD_UV_SWAP;
789 break;
790 case I915_OVERLAY_Y_SWAP:
791 cmd |= OCMD_Y_SWAP;
792 break;
793 case I915_OVERLAY_Y_AND_UV_SWAP:
794 cmd |= OCMD_Y_AND_UV_SWAP;
795 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200796 }
797 }
798
799 return cmd;
800}
801
Chris Wilson5fe82c52010-08-12 12:38:21 +0100802static int intel_overlay_do_put_image(struct intel_overlay *overlay,
Chris Wilson05394f32010-11-08 19:18:58 +0000803 struct drm_i915_gem_object *new_bo,
Chris Wilson5fe82c52010-08-12 12:38:21 +0100804 struct put_image_params *params)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200805{
806 int ret, tmp_width;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700807 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200808 bool scale_changed = false;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100809 struct drm_i915_private *dev_priv = overlay->i915;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700810 u32 swidth, swidthsw, sheight, ostride;
Daniel Vettera071fa02014-06-18 23:28:09 +0200811 enum pipe pipe = overlay->crtc->pipe;
Chris Wilson9b3b7842016-08-15 10:49:01 +0100812 struct i915_vma *vma;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200813
Chris Wilson91c8a322016-07-05 10:40:23 +0100814 lockdep_assert_held(&dev_priv->drm.struct_mutex);
815 WARN_ON(!drm_modeset_is_locked(&dev_priv->drm.mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200816
Daniel Vetter02e792f2009-09-15 22:57:34 +0200817 ret = intel_overlay_release_old_vid(overlay);
818 if (ret != 0)
819 return ret;
820
Chris Wilson058d88c2016-08-15 10:49:06 +0100821 vma = i915_gem_object_pin_to_display_plane(new_bo, 0,
Tvrtko Ursuline6617332015-03-23 11:10:33 +0000822 &i915_ggtt_view_normal);
Chris Wilson058d88c2016-08-15 10:49:06 +0100823 if (IS_ERR(vma))
824 return PTR_ERR(vma);
Chris Wilson9b3b7842016-08-15 10:49:01 +0100825
Chris Wilson49ef5292016-08-18 17:17:00 +0100826 ret = i915_vma_put_fence(vma);
Chris Wilsond9e86c02010-11-10 16:40:20 +0000827 if (ret)
828 goto out_unpin;
829
Daniel Vetter02e792f2009-09-15 22:57:34 +0200830 if (!overlay->active) {
Ben Widawsky75020bc2012-04-16 14:07:43 -0700831 u32 oconfig;
Chris Wilson8d74f652010-08-12 10:35:26 +0100832 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200833 if (!regs) {
834 ret = -ENOMEM;
835 goto out_unpin;
836 }
Ben Widawsky75020bc2012-04-16 14:07:43 -0700837 oconfig = OCONF_CC_OUT_8BIT;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100838 if (IS_GEN4(dev_priv))
Ben Widawsky75020bc2012-04-16 14:07:43 -0700839 oconfig |= OCONF_CSC_MODE_BT709;
Daniel Vettera071fa02014-06-18 23:28:09 +0200840 oconfig |= pipe == 0 ?
Daniel Vetter02e792f2009-09-15 22:57:34 +0200841 OCONF_PIPE_A : OCONF_PIPE_B;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700842 iowrite32(oconfig, &regs->OCONFIG);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100843 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200844
845 ret = intel_overlay_on(overlay);
846 if (ret != 0)
847 goto out_unpin;
848 }
849
Chris Wilson8d74f652010-08-12 10:35:26 +0100850 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200851 if (!regs) {
852 ret = -ENOMEM;
853 goto out_unpin;
854 }
855
Ben Widawsky75020bc2012-04-16 14:07:43 -0700856 iowrite32((params->dst_y << 16) | params->dst_x, &regs->DWINPOS);
857 iowrite32((params->dst_h << 16) | params->dst_w, &regs->DWINSZ);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200858
859 if (params->format & I915_OVERLAY_YUV_PACKED)
860 tmp_width = packed_width_bytes(params->format, params->src_w);
861 else
862 tmp_width = params->src_w;
863
Ben Widawsky75020bc2012-04-16 14:07:43 -0700864 swidth = params->src_w;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100865 swidthsw = calc_swidthsw(dev_priv, params->offset_Y, tmp_width);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700866 sheight = params->src_h;
Chris Wilsonbde13eb2016-08-15 10:49:07 +0100867 iowrite32(i915_ggtt_offset(vma) + params->offset_Y, &regs->OBUF_0Y);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700868 ostride = params->stride_Y;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200869
870 if (params->format & I915_OVERLAY_YUV_PLANAR) {
871 int uv_hscale = uv_hsubsampling(params->format);
872 int uv_vscale = uv_vsubsampling(params->format);
873 u32 tmp_U, tmp_V;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700874 swidth |= (params->src_w/uv_hscale) << 16;
Chris Wilson1ee8da62016-05-12 12:43:23 +0100875 tmp_U = calc_swidthsw(dev_priv, params->offset_U,
Chris Wilson722506f2010-08-12 09:28:50 +0100876 params->src_w/uv_hscale);
Chris Wilson1ee8da62016-05-12 12:43:23 +0100877 tmp_V = calc_swidthsw(dev_priv, params->offset_V,
Chris Wilson722506f2010-08-12 09:28:50 +0100878 params->src_w/uv_hscale);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700879 swidthsw |= max_t(u32, tmp_U, tmp_V) << 16;
880 sheight |= (params->src_h/uv_vscale) << 16;
Chris Wilsonbde13eb2016-08-15 10:49:07 +0100881 iowrite32(i915_ggtt_offset(vma) + params->offset_U,
882 &regs->OBUF_0U);
883 iowrite32(i915_ggtt_offset(vma) + params->offset_V,
884 &regs->OBUF_0V);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700885 ostride |= params->stride_UV << 16;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200886 }
887
Ben Widawsky75020bc2012-04-16 14:07:43 -0700888 iowrite32(swidth, &regs->SWIDTH);
889 iowrite32(swidthsw, &regs->SWIDTHSW);
890 iowrite32(sheight, &regs->SHEIGHT);
891 iowrite32(ostride, &regs->OSTRIDE);
892
Daniel Vetter02e792f2009-09-15 22:57:34 +0200893 scale_changed = update_scaling_factors(overlay, regs, params);
894
895 update_colorkey(overlay, regs);
896
Ben Widawsky75020bc2012-04-16 14:07:43 -0700897 iowrite32(overlay_cmd_reg(params), &regs->OCMD);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200898
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100899 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200900
Ville Syrjälä58d09eb2016-12-07 19:28:06 +0200901 ret = intel_overlay_continue(overlay, vma, scale_changed);
Chris Wilson8dc5d142010-08-12 12:36:12 +0100902 if (ret)
903 goto out_unpin;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200904
Daniel Vetter02e792f2009-09-15 22:57:34 +0200905 return 0;
906
907out_unpin:
Chris Wilson058d88c2016-08-15 10:49:06 +0100908 i915_gem_object_unpin_from_display_plane(vma);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200909 return ret;
910}
911
Chris Wilsonce453d82011-02-21 14:43:56 +0000912int intel_overlay_switch_off(struct intel_overlay *overlay)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200913{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100914 struct drm_i915_private *dev_priv = overlay->i915;
Ben Widawsky75020bc2012-04-16 14:07:43 -0700915 struct overlay_registers __iomem *regs;
Chris Wilson5dcdbcb2010-08-12 13:50:28 +0100916 int ret;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200917
Chris Wilson91c8a322016-07-05 10:40:23 +0100918 lockdep_assert_held(&dev_priv->drm.struct_mutex);
919 WARN_ON(!drm_modeset_is_locked(&dev_priv->drm.mode_config.connection_mutex));
Daniel Vetter02e792f2009-09-15 22:57:34 +0200920
Chris Wilsonce453d82011-02-21 14:43:56 +0000921 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +0100922 if (ret != 0)
923 return ret;
Daniel Vetter9bedb972009-11-30 15:55:49 +0100924
Daniel Vetter02e792f2009-09-15 22:57:34 +0200925 if (!overlay->active)
926 return 0;
927
Daniel Vetter02e792f2009-09-15 22:57:34 +0200928 ret = intel_overlay_release_old_vid(overlay);
929 if (ret != 0)
930 return ret;
931
Chris Wilson8d74f652010-08-12 10:35:26 +0100932 regs = intel_overlay_map_regs(overlay);
Ben Widawsky75020bc2012-04-16 14:07:43 -0700933 iowrite32(0, &regs->OCMD);
Chris Wilson9bb2ff72010-08-12 12:02:11 +0100934 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200935
Chris Wilson0d9bdd82016-08-04 07:52:37 +0100936 return intel_overlay_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200937}
938
939static int check_overlay_possible_on_crtc(struct intel_overlay *overlay,
940 struct intel_crtc *crtc)
941{
Chris Wilsonf7abfe82010-09-13 14:19:16 +0100942 if (!crtc->active)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200943 return -EINVAL;
944
Daniel Vetter02e792f2009-09-15 22:57:34 +0200945 /* can't use the overlay with double wide pipe */
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200946 if (crtc->config->double_wide)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200947 return -EINVAL;
948
949 return 0;
950}
951
952static void update_pfit_vscale_ratio(struct intel_overlay *overlay)
953{
Chris Wilson1ee8da62016-05-12 12:43:23 +0100954 struct drm_i915_private *dev_priv = overlay->i915;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200955 u32 pfit_control = I915_READ(PFIT_CONTROL);
Chris Wilson446d2182010-08-12 11:15:58 +0100956 u32 ratio;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200957
958 /* XXX: This is not the same logic as in the xorg driver, but more in
Chris Wilson446d2182010-08-12 11:15:58 +0100959 * line with the intel documentation for the i965
960 */
Chris Wilson1ee8da62016-05-12 12:43:23 +0100961 if (INTEL_GEN(dev_priv) >= 4) {
Akshay Joshi0206e352011-08-16 15:34:10 -0400962 /* on i965 use the PGM reg to read out the autoscaler values */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100963 ratio = I915_READ(PFIT_PGM_RATIOS) >> PFIT_VERT_SCALE_SHIFT_965;
964 } else {
Chris Wilson446d2182010-08-12 11:15:58 +0100965 if (pfit_control & VERT_AUTO_SCALE)
966 ratio = I915_READ(PFIT_AUTO_RATIOS);
Daniel Vetter02e792f2009-09-15 22:57:34 +0200967 else
Chris Wilson446d2182010-08-12 11:15:58 +0100968 ratio = I915_READ(PFIT_PGM_RATIOS);
969 ratio >>= PFIT_VERT_SCALE_SHIFT;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200970 }
971
972 overlay->pfit_vscale_ratio = ratio;
973}
974
975static int check_overlay_dst(struct intel_overlay *overlay,
976 struct drm_intel_overlay_put_image *rec)
977{
Ville Syrjälä73699142016-12-07 19:28:07 +0200978 const struct intel_crtc_state *pipe_config =
979 overlay->crtc->config;
Daniel Vetter02e792f2009-09-15 22:57:34 +0200980
Ville Syrjälä73699142016-12-07 19:28:07 +0200981 if (rec->dst_x < pipe_config->pipe_src_w &&
982 rec->dst_x + rec->dst_width <= pipe_config->pipe_src_w &&
983 rec->dst_y < pipe_config->pipe_src_h &&
984 rec->dst_y + rec->dst_height <= pipe_config->pipe_src_h)
Daniel Vetter02e792f2009-09-15 22:57:34 +0200985 return 0;
986 else
987 return -EINVAL;
988}
989
990static int check_overlay_scaling(struct put_image_params *rec)
991{
992 u32 tmp;
993
994 /* downscaling limit is 8.0 */
995 tmp = ((rec->src_scan_h << 16) / rec->dst_h) >> 16;
996 if (tmp > 7)
997 return -EINVAL;
998 tmp = ((rec->src_scan_w << 16) / rec->dst_w) >> 16;
999 if (tmp > 7)
1000 return -EINVAL;
1001
1002 return 0;
1003}
1004
Chris Wilson1ee8da62016-05-12 12:43:23 +01001005static int check_overlay_src(struct drm_i915_private *dev_priv,
Daniel Vetter02e792f2009-09-15 22:57:34 +02001006 struct drm_intel_overlay_put_image *rec,
Chris Wilson05394f32010-11-08 19:18:58 +00001007 struct drm_i915_gem_object *new_bo)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001008{
Daniel Vetter02e792f2009-09-15 22:57:34 +02001009 int uv_hscale = uv_hsubsampling(rec->flags);
1010 int uv_vscale = uv_vsubsampling(rec->flags);
Dan Carpenter8f28f542010-10-27 23:17:25 +02001011 u32 stride_mask;
1012 int depth;
1013 u32 tmp;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001014
1015 /* check src dimensions */
Jani Nikula2a307c22016-11-30 17:43:04 +02001016 if (IS_I845G(dev_priv) || IS_I830(dev_priv)) {
Chris Wilson722506f2010-08-12 09:28:50 +01001017 if (rec->src_height > IMAGE_MAX_HEIGHT_LEGACY ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001018 rec->src_width > IMAGE_MAX_WIDTH_LEGACY)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001019 return -EINVAL;
1020 } else {
Chris Wilson722506f2010-08-12 09:28:50 +01001021 if (rec->src_height > IMAGE_MAX_HEIGHT ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001022 rec->src_width > IMAGE_MAX_WIDTH)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001023 return -EINVAL;
1024 }
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001025
Daniel Vetter02e792f2009-09-15 22:57:34 +02001026 /* better safe than sorry, use 4 as the maximal subsampling ratio */
Chris Wilson722506f2010-08-12 09:28:50 +01001027 if (rec->src_height < N_VERT_Y_TAPS*4 ||
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001028 rec->src_width < N_HORIZ_Y_TAPS*4)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001029 return -EINVAL;
1030
Chris Wilsona1efd142010-07-12 19:35:38 +01001031 /* check alignment constraints */
Daniel Vetter02e792f2009-09-15 22:57:34 +02001032 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +01001033 case I915_OVERLAY_RGB:
1034 /* not implemented */
1035 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001036
Chris Wilson722506f2010-08-12 09:28:50 +01001037 case I915_OVERLAY_YUV_PACKED:
Chris Wilson722506f2010-08-12 09:28:50 +01001038 if (uv_vscale != 1)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001039 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001040
1041 depth = packed_depth_bytes(rec->flags);
Chris Wilson722506f2010-08-12 09:28:50 +01001042 if (depth < 0)
1043 return depth;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001044
Chris Wilson722506f2010-08-12 09:28:50 +01001045 /* ignore UV planes */
1046 rec->stride_UV = 0;
1047 rec->offset_U = 0;
1048 rec->offset_V = 0;
1049 /* check pixel alignment */
1050 if (rec->offset_Y % depth)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001051 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001052 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001053
Chris Wilson722506f2010-08-12 09:28:50 +01001054 case I915_OVERLAY_YUV_PLANAR:
1055 if (uv_vscale < 0 || uv_hscale < 0)
1056 return -EINVAL;
1057 /* no offset restrictions for planar formats */
1058 break;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001059
Chris Wilson722506f2010-08-12 09:28:50 +01001060 default:
1061 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001062 }
1063
1064 if (rec->src_width % uv_hscale)
1065 return -EINVAL;
1066
1067 /* stride checking */
Jani Nikula2a307c22016-11-30 17:43:04 +02001068 if (IS_I830(dev_priv) || IS_I845G(dev_priv))
Chris Wilsona1efd142010-07-12 19:35:38 +01001069 stride_mask = 255;
1070 else
1071 stride_mask = 63;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001072
1073 if (rec->stride_Y & stride_mask || rec->stride_UV & stride_mask)
1074 return -EINVAL;
Chris Wilson1ee8da62016-05-12 12:43:23 +01001075 if (IS_GEN4(dev_priv) && rec->stride_Y < 512)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001076 return -EINVAL;
1077
1078 tmp = (rec->flags & I915_OVERLAY_TYPE_MASK) == I915_OVERLAY_YUV_PLANAR ?
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001079 4096 : 8192;
1080 if (rec->stride_Y > tmp || rec->stride_UV > 2*1024)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001081 return -EINVAL;
1082
1083 /* check buffer dimensions */
1084 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
Chris Wilson722506f2010-08-12 09:28:50 +01001085 case I915_OVERLAY_RGB:
1086 case I915_OVERLAY_YUV_PACKED:
1087 /* always 4 Y values per depth pixels */
1088 if (packed_width_bytes(rec->flags, rec->src_width) > rec->stride_Y)
1089 return -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001090
Chris Wilson722506f2010-08-12 09:28:50 +01001091 tmp = rec->stride_Y*rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001092 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001093 return -EINVAL;
1094 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001095
Chris Wilson722506f2010-08-12 09:28:50 +01001096 case I915_OVERLAY_YUV_PLANAR:
1097 if (rec->src_width > rec->stride_Y)
1098 return -EINVAL;
1099 if (rec->src_width/uv_hscale > rec->stride_UV)
1100 return -EINVAL;
1101
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001102 tmp = rec->stride_Y * rec->src_height;
Chris Wilson05394f32010-11-08 19:18:58 +00001103 if (rec->offset_Y + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001104 return -EINVAL;
Chris Wilson9f7c3f42010-08-12 11:29:34 +01001105
1106 tmp = rec->stride_UV * (rec->src_height / uv_vscale);
Chris Wilson05394f32010-11-08 19:18:58 +00001107 if (rec->offset_U + tmp > new_bo->base.size ||
1108 rec->offset_V + tmp > new_bo->base.size)
Chris Wilson722506f2010-08-12 09:28:50 +01001109 return -EINVAL;
1110 break;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001111 }
1112
1113 return 0;
1114}
1115
Chris Wilson1ee8da62016-05-12 12:43:23 +01001116int intel_overlay_put_image_ioctl(struct drm_device *dev, void *data,
1117 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001118{
1119 struct drm_intel_overlay_put_image *put_image_rec = data;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001120 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001121 struct intel_overlay *overlay;
Rob Clark7707e652014-07-17 23:30:04 -04001122 struct drm_crtc *drmmode_crtc;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001123 struct intel_crtc *crtc;
Chris Wilson05394f32010-11-08 19:18:58 +00001124 struct drm_i915_gem_object *new_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001125 struct put_image_params *params;
1126 int ret;
1127
Daniel Vetter02e792f2009-09-15 22:57:34 +02001128 overlay = dev_priv->overlay;
1129 if (!overlay) {
1130 DRM_DEBUG("userspace bug: no overlay\n");
1131 return -ENODEV;
1132 }
1133
1134 if (!(put_image_rec->flags & I915_OVERLAY_ENABLE)) {
Daniel Vettera0e99e62012-12-02 01:05:46 +01001135 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001136 mutex_lock(&dev->struct_mutex);
1137
Chris Wilsonce453d82011-02-21 14:43:56 +00001138 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001139
1140 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001141 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001142
1143 return ret;
1144 }
1145
Daniel Vetterb14c5672013-09-19 12:18:32 +02001146 params = kmalloc(sizeof(*params), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001147 if (!params)
1148 return -ENOMEM;
1149
Rob Clark7707e652014-07-17 23:30:04 -04001150 drmmode_crtc = drm_crtc_find(dev, put_image_rec->crtc_id);
1151 if (!drmmode_crtc) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001152 ret = -ENOENT;
1153 goto out_free;
1154 }
Rob Clark7707e652014-07-17 23:30:04 -04001155 crtc = to_intel_crtc(drmmode_crtc);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001156
Chris Wilson03ac0642016-07-20 13:31:51 +01001157 new_bo = i915_gem_object_lookup(file_priv, put_image_rec->bo_handle);
1158 if (!new_bo) {
Dan Carpenter915a4282010-03-06 14:05:39 +03001159 ret = -ENOENT;
1160 goto out_free;
1161 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001162
Daniel Vettera0e99e62012-12-02 01:05:46 +01001163 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001164 mutex_lock(&dev->struct_mutex);
1165
Chris Wilson3e510a82016-08-05 10:14:23 +01001166 if (i915_gem_object_is_tiled(new_bo)) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01001167 DRM_DEBUG_KMS("buffer used for overlay image can not be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00001168 ret = -EINVAL;
1169 goto out_unlock;
1170 }
1171
Chris Wilsonce453d82011-02-21 14:43:56 +00001172 ret = intel_overlay_recover_from_interrupt(overlay);
Chris Wilsonb303cf92010-08-12 14:03:48 +01001173 if (ret != 0)
1174 goto out_unlock;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02001175
Daniel Vetter02e792f2009-09-15 22:57:34 +02001176 if (overlay->crtc != crtc) {
Chris Wilsonce453d82011-02-21 14:43:56 +00001177 ret = intel_overlay_switch_off(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001178 if (ret != 0)
1179 goto out_unlock;
1180
1181 ret = check_overlay_possible_on_crtc(overlay, crtc);
1182 if (ret != 0)
1183 goto out_unlock;
1184
1185 overlay->crtc = crtc;
1186 crtc->overlay = overlay;
1187
Chris Wilsone9e331a2010-09-13 01:16:10 +01001188 /* line too wide, i.e. one-line-mode */
Ville Syrjälä73699142016-12-07 19:28:07 +02001189 if (crtc->config->pipe_src_w > 1024 &&
Ville Syrjälä949d8cf2016-12-07 19:28:08 +02001190 crtc->config->gmch_pfit.control & PFIT_ENABLE) {
Ville Syrjälä209c2a52015-03-31 10:37:23 +03001191 overlay->pfit_active = true;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001192 update_pfit_vscale_ratio(overlay);
1193 } else
Ville Syrjälä209c2a52015-03-31 10:37:23 +03001194 overlay->pfit_active = false;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001195 }
1196
1197 ret = check_overlay_dst(overlay, put_image_rec);
1198 if (ret != 0)
1199 goto out_unlock;
1200
1201 if (overlay->pfit_active) {
1202 params->dst_y = ((((u32)put_image_rec->dst_y) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001203 overlay->pfit_vscale_ratio);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001204 /* shifting right rounds downwards, so add 1 */
1205 params->dst_h = ((((u32)put_image_rec->dst_height) << 12) /
Chris Wilson722506f2010-08-12 09:28:50 +01001206 overlay->pfit_vscale_ratio) + 1;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001207 } else {
1208 params->dst_y = put_image_rec->dst_y;
1209 params->dst_h = put_image_rec->dst_height;
1210 }
1211 params->dst_x = put_image_rec->dst_x;
1212 params->dst_w = put_image_rec->dst_width;
1213
1214 params->src_w = put_image_rec->src_width;
1215 params->src_h = put_image_rec->src_height;
1216 params->src_scan_w = put_image_rec->src_scan_width;
1217 params->src_scan_h = put_image_rec->src_scan_height;
Chris Wilson722506f2010-08-12 09:28:50 +01001218 if (params->src_scan_h > params->src_h ||
1219 params->src_scan_w > params->src_w) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001220 ret = -EINVAL;
1221 goto out_unlock;
1222 }
1223
Chris Wilson1ee8da62016-05-12 12:43:23 +01001224 ret = check_overlay_src(dev_priv, put_image_rec, new_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001225 if (ret != 0)
1226 goto out_unlock;
1227 params->format = put_image_rec->flags & ~I915_OVERLAY_FLAGS_MASK;
1228 params->stride_Y = put_image_rec->stride_Y;
1229 params->stride_UV = put_image_rec->stride_UV;
1230 params->offset_Y = put_image_rec->offset_Y;
1231 params->offset_U = put_image_rec->offset_U;
1232 params->offset_V = put_image_rec->offset_V;
1233
1234 /* Check scaling after src size to prevent a divide-by-zero. */
1235 ret = check_overlay_scaling(params);
1236 if (ret != 0)
1237 goto out_unlock;
1238
1239 ret = intel_overlay_do_put_image(overlay, new_bo, params);
1240 if (ret != 0)
1241 goto out_unlock;
1242
1243 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001244 drm_modeset_unlock_all(dev);
Ville Syrjälä58d09eb2016-12-07 19:28:06 +02001245 i915_gem_object_put(new_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001246
1247 kfree(params);
1248
1249 return 0;
1250
1251out_unlock:
1252 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001253 drm_modeset_unlock_all(dev);
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001254 i915_gem_object_put(new_bo);
Dan Carpenter915a4282010-03-06 14:05:39 +03001255out_free:
Daniel Vetter02e792f2009-09-15 22:57:34 +02001256 kfree(params);
1257
1258 return ret;
1259}
1260
1261static void update_reg_attrs(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001262 struct overlay_registers __iomem *regs)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001263{
Ben Widawsky75020bc2012-04-16 14:07:43 -07001264 iowrite32((overlay->contrast << 18) | (overlay->brightness & 0xff),
1265 &regs->OCLRC0);
1266 iowrite32(overlay->saturation, &regs->OCLRC1);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001267}
1268
1269static bool check_gamma_bounds(u32 gamma1, u32 gamma2)
1270{
1271 int i;
1272
1273 if (gamma1 & 0xff000000 || gamma2 & 0xff000000)
1274 return false;
1275
1276 for (i = 0; i < 3; i++) {
Chris Wilson722506f2010-08-12 09:28:50 +01001277 if (((gamma1 >> i*8) & 0xff) >= ((gamma2 >> i*8) & 0xff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001278 return false;
1279 }
1280
1281 return true;
1282}
1283
1284static bool check_gamma5_errata(u32 gamma5)
1285{
1286 int i;
1287
1288 for (i = 0; i < 3; i++) {
1289 if (((gamma5 >> i*8) & 0xff) == 0x80)
1290 return false;
1291 }
1292
1293 return true;
1294}
1295
1296static int check_gamma(struct drm_intel_overlay_attrs *attrs)
1297{
Chris Wilson722506f2010-08-12 09:28:50 +01001298 if (!check_gamma_bounds(0, attrs->gamma0) ||
1299 !check_gamma_bounds(attrs->gamma0, attrs->gamma1) ||
1300 !check_gamma_bounds(attrs->gamma1, attrs->gamma2) ||
1301 !check_gamma_bounds(attrs->gamma2, attrs->gamma3) ||
1302 !check_gamma_bounds(attrs->gamma3, attrs->gamma4) ||
1303 !check_gamma_bounds(attrs->gamma4, attrs->gamma5) ||
1304 !check_gamma_bounds(attrs->gamma5, 0x00ffffff))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001305 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001306
Daniel Vetter02e792f2009-09-15 22:57:34 +02001307 if (!check_gamma5_errata(attrs->gamma5))
1308 return -EINVAL;
Chris Wilson722506f2010-08-12 09:28:50 +01001309
Daniel Vetter02e792f2009-09-15 22:57:34 +02001310 return 0;
1311}
1312
Chris Wilson1ee8da62016-05-12 12:43:23 +01001313int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data,
1314 struct drm_file *file_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001315{
1316 struct drm_intel_overlay_attrs *attrs = data;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001317 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001318 struct intel_overlay *overlay;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001319 struct overlay_registers __iomem *regs;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001320 int ret;
1321
Daniel Vetter02e792f2009-09-15 22:57:34 +02001322 overlay = dev_priv->overlay;
1323 if (!overlay) {
1324 DRM_DEBUG("userspace bug: no overlay\n");
1325 return -ENODEV;
1326 }
1327
Daniel Vettera0e99e62012-12-02 01:05:46 +01001328 drm_modeset_lock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001329 mutex_lock(&dev->struct_mutex);
1330
Chris Wilson60fc3322010-08-12 10:44:45 +01001331 ret = -EINVAL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001332 if (!(attrs->flags & I915_OVERLAY_UPDATE_ATTRS)) {
Chris Wilson60fc3322010-08-12 10:44:45 +01001333 attrs->color_key = overlay->color_key;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001334 attrs->brightness = overlay->brightness;
Chris Wilson60fc3322010-08-12 10:44:45 +01001335 attrs->contrast = overlay->contrast;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001336 attrs->saturation = overlay->saturation;
1337
Chris Wilson1ee8da62016-05-12 12:43:23 +01001338 if (!IS_GEN2(dev_priv)) {
Daniel Vetter02e792f2009-09-15 22:57:34 +02001339 attrs->gamma0 = I915_READ(OGAMC0);
1340 attrs->gamma1 = I915_READ(OGAMC1);
1341 attrs->gamma2 = I915_READ(OGAMC2);
1342 attrs->gamma3 = I915_READ(OGAMC3);
1343 attrs->gamma4 = I915_READ(OGAMC4);
1344 attrs->gamma5 = I915_READ(OGAMC5);
1345 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001346 } else {
Chris Wilson60fc3322010-08-12 10:44:45 +01001347 if (attrs->brightness < -128 || attrs->brightness > 127)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001348 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001349 if (attrs->contrast > 255)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001350 goto out_unlock;
Chris Wilson60fc3322010-08-12 10:44:45 +01001351 if (attrs->saturation > 1023)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001352 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001353
Chris Wilson60fc3322010-08-12 10:44:45 +01001354 overlay->color_key = attrs->color_key;
1355 overlay->brightness = attrs->brightness;
1356 overlay->contrast = attrs->contrast;
1357 overlay->saturation = attrs->saturation;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001358
Chris Wilson8d74f652010-08-12 10:35:26 +01001359 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001360 if (!regs) {
1361 ret = -ENOMEM;
1362 goto out_unlock;
1363 }
1364
1365 update_reg_attrs(overlay, regs);
1366
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001367 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001368
1369 if (attrs->flags & I915_OVERLAY_UPDATE_GAMMA) {
Chris Wilson1ee8da62016-05-12 12:43:23 +01001370 if (IS_GEN2(dev_priv))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001371 goto out_unlock;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001372
1373 if (overlay->active) {
1374 ret = -EBUSY;
1375 goto out_unlock;
1376 }
1377
1378 ret = check_gamma(attrs);
Chris Wilson60fc3322010-08-12 10:44:45 +01001379 if (ret)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001380 goto out_unlock;
1381
1382 I915_WRITE(OGAMC0, attrs->gamma0);
1383 I915_WRITE(OGAMC1, attrs->gamma1);
1384 I915_WRITE(OGAMC2, attrs->gamma2);
1385 I915_WRITE(OGAMC3, attrs->gamma3);
1386 I915_WRITE(OGAMC4, attrs->gamma4);
1387 I915_WRITE(OGAMC5, attrs->gamma5);
1388 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001389 }
Chris Wilsonea9da4e2015-04-02 10:35:08 +01001390 overlay->color_key_enabled = (attrs->flags & I915_OVERLAY_DISABLE_DEST_COLORKEY) == 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001391
Chris Wilson60fc3322010-08-12 10:44:45 +01001392 ret = 0;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001393out_unlock:
1394 mutex_unlock(&dev->struct_mutex);
Daniel Vettera0e99e62012-12-02 01:05:46 +01001395 drm_modeset_unlock_all(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001396
1397 return ret;
1398}
1399
Chris Wilson1ee8da62016-05-12 12:43:23 +01001400void intel_setup_overlay(struct drm_i915_private *dev_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001401{
Daniel Vetter02e792f2009-09-15 22:57:34 +02001402 struct intel_overlay *overlay;
Chris Wilson05394f32010-11-08 19:18:58 +00001403 struct drm_i915_gem_object *reg_bo;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001404 struct overlay_registers __iomem *regs;
Chris Wilson058d88c2016-08-15 10:49:06 +01001405 struct i915_vma *vma = NULL;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001406 int ret;
1407
Chris Wilson1ee8da62016-05-12 12:43:23 +01001408 if (!HAS_OVERLAY(dev_priv))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001409 return;
1410
Daniel Vetterb14c5672013-09-19 12:18:32 +02001411 overlay = kzalloc(sizeof(*overlay), GFP_KERNEL);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001412 if (!overlay)
1413 return;
Chris Wilson79d24272011-06-28 11:27:47 +01001414
Chris Wilson91c8a322016-07-05 10:40:23 +01001415 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilson79d24272011-06-28 11:27:47 +01001416 if (WARN_ON(dev_priv->overlay))
1417 goto out_free;
1418
Chris Wilson1ee8da62016-05-12 12:43:23 +01001419 overlay->i915 = dev_priv;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001420
Daniel Vetterf63a4842013-07-23 19:24:38 +02001421 reg_bo = NULL;
Chris Wilson1ee8da62016-05-12 12:43:23 +01001422 if (!OVERLAY_NEEDS_PHYSICAL(dev_priv))
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00001423 reg_bo = i915_gem_object_create_stolen(dev_priv, PAGE_SIZE);
Chris Wilson80405132012-11-15 11:32:29 +00001424 if (reg_bo == NULL)
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +00001425 reg_bo = i915_gem_object_create(dev_priv, PAGE_SIZE);
Chris Wilsonfe3db792016-04-25 13:32:13 +01001426 if (IS_ERR(reg_bo))
Daniel Vetter02e792f2009-09-15 22:57:34 +02001427 goto out_free;
Chris Wilson05394f32010-11-08 19:18:58 +00001428 overlay->reg_bo = reg_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001429
Chris Wilson1ee8da62016-05-12 12:43:23 +01001430 if (OVERLAY_NEEDS_PHYSICAL(dev_priv)) {
Chris Wilson00731152014-05-21 12:42:56 +01001431 ret = i915_gem_object_attach_phys(reg_bo, PAGE_SIZE);
Akshay Joshi0206e352011-08-16 15:34:10 -04001432 if (ret) {
1433 DRM_ERROR("failed to attach phys overlay regs\n");
1434 goto out_free_bo;
1435 }
Chris Wilson00731152014-05-21 12:42:56 +01001436 overlay->flip_addr = reg_bo->phys_handle->busaddr;
Chris Wilson315781482010-08-12 09:42:51 +01001437 } else {
Chris Wilson058d88c2016-08-15 10:49:06 +01001438 vma = i915_gem_object_ggtt_pin(reg_bo, NULL,
Chris Wilsonde895082016-08-04 16:32:34 +01001439 0, PAGE_SIZE, PIN_MAPPABLE);
Chris Wilson058d88c2016-08-15 10:49:06 +01001440 if (IS_ERR(vma)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001441 DRM_ERROR("failed to pin overlay register bo\n");
Chris Wilson058d88c2016-08-15 10:49:06 +01001442 ret = PTR_ERR(vma);
Akshay Joshi0206e352011-08-16 15:34:10 -04001443 goto out_free_bo;
1444 }
Chris Wilsonbde13eb2016-08-15 10:49:07 +01001445 overlay->flip_addr = i915_ggtt_offset(vma);
Chris Wilson0ddc1282010-08-12 09:35:00 +01001446
1447 ret = i915_gem_object_set_to_gtt_domain(reg_bo, true);
1448 if (ret) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001449 DRM_ERROR("failed to move overlay register bo into the GTT\n");
1450 goto out_unpin_bo;
1451 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02001452 }
1453
1454 /* init all values */
1455 overlay->color_key = 0x0101fe;
Chris Wilsonea9da4e2015-04-02 10:35:08 +01001456 overlay->color_key_enabled = true;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001457 overlay->brightness = -19;
1458 overlay->contrast = 75;
1459 overlay->saturation = 146;
1460
Ville Syrjälä330afdb2016-12-21 16:45:47 +02001461 init_request_active(&overlay->last_flip, NULL);
1462
Chris Wilson8d74f652010-08-12 10:35:26 +01001463 regs = intel_overlay_map_regs(overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001464 if (!regs)
Chris Wilson79d24272011-06-28 11:27:47 +01001465 goto out_unpin_bo;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001466
Ben Widawsky75020bc2012-04-16 14:07:43 -07001467 memset_io(regs, 0, sizeof(struct overlay_registers));
Daniel Vetter02e792f2009-09-15 22:57:34 +02001468 update_polyphase_filter(regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001469 update_reg_attrs(overlay, regs);
1470
Chris Wilson9bb2ff72010-08-12 12:02:11 +01001471 intel_overlay_unmap_regs(overlay, regs);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001472
1473 dev_priv->overlay = overlay;
Chris Wilson91c8a322016-07-05 10:40:23 +01001474 mutex_unlock(&dev_priv->drm.struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001475 DRM_INFO("initialized overlay support\n");
1476 return;
1477
Chris Wilson0ddc1282010-08-12 09:35:00 +01001478out_unpin_bo:
Chris Wilson058d88c2016-08-15 10:49:06 +01001479 if (vma)
1480 i915_vma_unpin(vma);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001481out_free_bo:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01001482 i915_gem_object_put(reg_bo);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001483out_free:
Chris Wilson91c8a322016-07-05 10:40:23 +01001484 mutex_unlock(&dev_priv->drm.struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001485 kfree(overlay);
1486 return;
1487}
1488
Chris Wilson1ee8da62016-05-12 12:43:23 +01001489void intel_cleanup_overlay(struct drm_i915_private *dev_priv)
Daniel Vetter02e792f2009-09-15 22:57:34 +02001490{
Chris Wilson62cf4e62010-08-12 10:50:36 +01001491 if (!dev_priv->overlay)
1492 return;
Daniel Vetter02e792f2009-09-15 22:57:34 +02001493
Chris Wilson62cf4e62010-08-12 10:50:36 +01001494 /* The bo's should be free'd by the generic code already.
1495 * Furthermore modesetting teardown happens beforehand so the
1496 * hardware should be off already */
Ville Syrjälä77589f52015-03-31 10:37:22 +03001497 WARN_ON(dev_priv->overlay->active);
Chris Wilson62cf4e62010-08-12 10:50:36 +01001498
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001499 i915_gem_object_put(dev_priv->overlay->reg_bo);
Chris Wilson62cf4e62010-08-12 10:50:36 +01001500 kfree(dev_priv->overlay);
Daniel Vetter02e792f2009-09-15 22:57:34 +02001501}
Chris Wilson6ef3d422010-08-04 20:26:07 +01001502
Chris Wilson98a2f412016-10-12 10:05:18 +01001503#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
1504
Chris Wilson6ef3d422010-08-04 20:26:07 +01001505struct intel_overlay_error_state {
1506 struct overlay_registers regs;
1507 unsigned long base;
1508 u32 dovsta;
1509 u32 isr;
1510};
1511
Ben Widawsky75020bc2012-04-16 14:07:43 -07001512static struct overlay_registers __iomem *
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001513intel_overlay_map_regs_atomic(struct intel_overlay *overlay)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001514{
Chris Wilson1ee8da62016-05-12 12:43:23 +01001515 struct drm_i915_private *dev_priv = overlay->i915;
Ben Widawsky75020bc2012-04-16 14:07:43 -07001516 struct overlay_registers __iomem *regs;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001517
Chris Wilson1ee8da62016-05-12 12:43:23 +01001518 if (OVERLAY_NEEDS_PHYSICAL(dev_priv))
Ben Widawsky75020bc2012-04-16 14:07:43 -07001519 /* Cast to make sparse happy, but it's wc memory anyway, so
1520 * equivalent to the wc io mapping on X86. */
1521 regs = (struct overlay_registers __iomem *)
Chris Wilson00731152014-05-21 12:42:56 +01001522 overlay->reg_bo->phys_handle->vaddr;
Chris Wilson3bd3c932010-08-19 08:19:30 +01001523 else
Chris Wilsonf7bbe782016-08-19 16:54:27 +01001524 regs = io_mapping_map_atomic_wc(&dev_priv->ggtt.mappable,
Chris Wilsonda6ca032016-04-28 09:56:36 +01001525 overlay->flip_addr);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001526
1527 return regs;
1528}
1529
1530static void intel_overlay_unmap_regs_atomic(struct intel_overlay *overlay,
Ben Widawsky75020bc2012-04-16 14:07:43 -07001531 struct overlay_registers __iomem *regs)
Chris Wilson3bd3c932010-08-19 08:19:30 +01001532{
Chris Wilson1ee8da62016-05-12 12:43:23 +01001533 if (!OVERLAY_NEEDS_PHYSICAL(overlay->i915))
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001534 io_mapping_unmap_atomic(regs);
Chris Wilson3bd3c932010-08-19 08:19:30 +01001535}
1536
Chris Wilson6ef3d422010-08-04 20:26:07 +01001537struct intel_overlay_error_state *
Chris Wilsonc0336662016-05-06 15:40:21 +01001538intel_overlay_capture_error_state(struct drm_i915_private *dev_priv)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001539{
Chris Wilson6ef3d422010-08-04 20:26:07 +01001540 struct intel_overlay *overlay = dev_priv->overlay;
1541 struct intel_overlay_error_state *error;
1542 struct overlay_registers __iomem *regs;
1543
1544 if (!overlay || !overlay->active)
1545 return NULL;
1546
1547 error = kmalloc(sizeof(*error), GFP_ATOMIC);
1548 if (error == NULL)
1549 return NULL;
1550
1551 error->dovsta = I915_READ(DOVSTA);
1552 error->isr = I915_READ(ISR);
Chris Wilsonda6ca032016-04-28 09:56:36 +01001553 error->base = overlay->flip_addr;
Chris Wilson6ef3d422010-08-04 20:26:07 +01001554
1555 regs = intel_overlay_map_regs_atomic(overlay);
1556 if (!regs)
1557 goto err;
1558
1559 memcpy_fromio(&error->regs, regs, sizeof(struct overlay_registers));
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07001560 intel_overlay_unmap_regs_atomic(overlay, regs);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001561
1562 return error;
1563
1564err:
1565 kfree(error);
1566 return NULL;
1567}
1568
1569void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001570intel_overlay_print_error_state(struct drm_i915_error_state_buf *m,
1571 struct intel_overlay_error_state *error)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001572{
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001573 i915_error_printf(m, "Overlay, status: 0x%08x, interrupt: 0x%08x\n",
1574 error->dovsta, error->isr);
1575 i915_error_printf(m, " Register file at 0x%08lx:\n",
1576 error->base);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001577
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001578#define P(x) i915_error_printf(m, " " #x ": 0x%08x\n", error->regs.x)
Chris Wilson6ef3d422010-08-04 20:26:07 +01001579 P(OBUF_0Y);
1580 P(OBUF_1Y);
1581 P(OBUF_0U);
1582 P(OBUF_0V);
1583 P(OBUF_1U);
1584 P(OBUF_1V);
1585 P(OSTRIDE);
1586 P(YRGB_VPH);
1587 P(UV_VPH);
1588 P(HORZ_PH);
1589 P(INIT_PHS);
1590 P(DWINPOS);
1591 P(DWINSZ);
1592 P(SWIDTH);
1593 P(SWIDTHSW);
1594 P(SHEIGHT);
1595 P(YRGBSCALE);
1596 P(UVSCALE);
1597 P(OCLRC0);
1598 P(OCLRC1);
1599 P(DCLRKV);
1600 P(DCLRKM);
1601 P(SCLRKVH);
1602 P(SCLRKVL);
1603 P(SCLRKEN);
1604 P(OCONFIG);
1605 P(OCMD);
1606 P(OSTART_0Y);
1607 P(OSTART_1Y);
1608 P(OSTART_0U);
1609 P(OSTART_0V);
1610 P(OSTART_1U);
1611 P(OSTART_1V);
1612 P(OTILEOFF_0Y);
1613 P(OTILEOFF_1Y);
1614 P(OTILEOFF_0U);
1615 P(OTILEOFF_0V);
1616 P(OTILEOFF_1U);
1617 P(OTILEOFF_1V);
1618 P(FASTHSCALE);
1619 P(UVSCALEV);
1620#undef P
1621}
Chris Wilson98a2f412016-10-12 10:05:18 +01001622
1623#endif