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:
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
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
26 * Derived from Xorg ddx, xf86-video-intel, src/i830_video.c
29 #include <drm/i915_drm.h>
32 #include "intel_drv.h"
33 #include "intel_frontbuffer.h"
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
45 /* overlay register definitions */
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)
68 #define OCMD_BUF_TYPE_MASK (0x1<<5)
69 #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)
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)
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
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))
105 /* overlay flip addr flag */
106 #define OFC_UPDATE 0x1
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
116 /* memory bufferd overlay registers */
117 struct overlay_registers {
145 u32 RESERVED1; /* 0x6C */
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];
171 struct intel_overlay {
172 struct drm_i915_private *i915;
173 struct intel_crtc *crtc;
174 struct i915_vma *vma;
175 struct i915_vma *old_vma;
178 u32 pfit_vscale_ratio; /* shifted-point number, (1<<12) == 1.0 */
180 u32 color_key_enabled:1;
181 u32 brightness, contrast, saturation;
182 u32 old_xscale, old_yscale;
183 /* register access */
185 struct drm_i915_gem_object *reg_bo;
187 struct i915_gem_active last_flip;
190 static void i830_overlay_clock_gating(struct drm_i915_private *dev_priv,
193 struct pci_dev *pdev = dev_priv->drm.pdev;
196 /* WA_OVERLAY_CLKGATE:alm */
198 I915_WRITE(DSPCLK_GATE_D, 0);
200 I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE);
202 /* WA_DISABLE_L2CACHE_CLOCK_GATING:alm */
203 pci_bus_read_config_byte(pdev->bus,
204 PCI_DEVFN(0, 0), I830_CLOCK_GATE, &val);
206 val &= ~I830_L2_CACHE_CLOCK_GATE_DISABLE;
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);
213 static struct overlay_registers __iomem *
214 intel_overlay_map_regs(struct intel_overlay *overlay)
216 struct drm_i915_private *dev_priv = overlay->i915;
217 struct overlay_registers __iomem *regs;
219 if (OVERLAY_NEEDS_PHYSICAL(dev_priv))
220 regs = (struct overlay_registers __iomem *)overlay->reg_bo->phys_handle->vaddr;
222 regs = io_mapping_map_wc(&dev_priv->ggtt.iomap,
229 static void intel_overlay_unmap_regs(struct intel_overlay *overlay,
230 struct overlay_registers __iomem *regs)
232 if (!OVERLAY_NEEDS_PHYSICAL(overlay->i915))
233 io_mapping_unmap(regs);
236 static void intel_overlay_submit_request(struct intel_overlay *overlay,
237 struct i915_request *rq,
238 i915_gem_retire_fn retire)
240 GEM_BUG_ON(i915_gem_active_peek(&overlay->last_flip,
241 &overlay->i915->drm.struct_mutex));
242 i915_gem_active_set_retire_fn(&overlay->last_flip, retire,
243 &overlay->i915->drm.struct_mutex);
244 i915_gem_active_set(&overlay->last_flip, rq);
245 i915_request_add(rq);
248 static int intel_overlay_do_wait_request(struct intel_overlay *overlay,
249 struct i915_request *rq,
250 i915_gem_retire_fn retire)
252 intel_overlay_submit_request(overlay, rq, retire);
253 return i915_gem_active_retire(&overlay->last_flip,
254 &overlay->i915->drm.struct_mutex);
257 static struct i915_request *alloc_request(struct intel_overlay *overlay)
259 struct drm_i915_private *dev_priv = overlay->i915;
260 struct intel_engine_cs *engine = dev_priv->engine[RCS];
262 return i915_request_alloc(engine, dev_priv->kernel_context);
265 /* overlay needs to be disable in OCMD reg */
266 static int intel_overlay_on(struct intel_overlay *overlay)
268 struct drm_i915_private *dev_priv = overlay->i915;
269 struct i915_request *rq;
272 WARN_ON(overlay->active);
274 rq = alloc_request(overlay);
278 cs = intel_ring_begin(rq, 4);
280 i915_request_add(rq);
284 overlay->active = true;
286 if (IS_I830(dev_priv))
287 i830_overlay_clock_gating(dev_priv, false);
289 *cs++ = MI_OVERLAY_FLIP | MI_OVERLAY_ON;
290 *cs++ = overlay->flip_addr | OFC_UPDATE;
291 *cs++ = MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP;
293 intel_ring_advance(rq, cs);
295 return intel_overlay_do_wait_request(overlay, rq, NULL);
298 static void intel_overlay_flip_prepare(struct intel_overlay *overlay,
299 struct i915_vma *vma)
301 enum pipe pipe = overlay->crtc->pipe;
303 WARN_ON(overlay->old_vma);
305 i915_gem_track_fb(overlay->vma ? overlay->vma->obj : NULL,
306 vma ? vma->obj : NULL,
307 INTEL_FRONTBUFFER_OVERLAY(pipe));
309 intel_frontbuffer_flip_prepare(overlay->i915,
310 INTEL_FRONTBUFFER_OVERLAY(pipe));
312 overlay->old_vma = overlay->vma;
314 overlay->vma = i915_vma_get(vma);
319 /* overlay needs to be enabled in OCMD reg */
320 static int intel_overlay_continue(struct intel_overlay *overlay,
321 struct i915_vma *vma,
322 bool load_polyphase_filter)
324 struct drm_i915_private *dev_priv = overlay->i915;
325 struct i915_request *rq;
326 u32 flip_addr = overlay->flip_addr;
329 WARN_ON(!overlay->active);
331 if (load_polyphase_filter)
332 flip_addr |= OFC_UPDATE;
334 /* check for underruns */
335 tmp = I915_READ(DOVSTA);
337 DRM_DEBUG("overlay underrun, DOVSTA: %x\n", tmp);
339 rq = alloc_request(overlay);
343 cs = intel_ring_begin(rq, 2);
345 i915_request_add(rq);
349 *cs++ = MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE;
351 intel_ring_advance(rq, cs);
353 intel_overlay_flip_prepare(overlay, vma);
355 intel_overlay_submit_request(overlay, rq, NULL);
360 static void intel_overlay_release_old_vma(struct intel_overlay *overlay)
362 struct i915_vma *vma;
364 vma = fetch_and_zero(&overlay->old_vma);
368 intel_frontbuffer_flip_complete(overlay->i915,
369 INTEL_FRONTBUFFER_OVERLAY(overlay->crtc->pipe));
371 i915_gem_object_unpin_from_display_plane(vma);
375 static void intel_overlay_release_old_vid_tail(struct i915_gem_active *active,
376 struct i915_request *rq)
378 struct intel_overlay *overlay =
379 container_of(active, typeof(*overlay), last_flip);
381 intel_overlay_release_old_vma(overlay);
384 static void intel_overlay_off_tail(struct i915_gem_active *active,
385 struct i915_request *rq)
387 struct intel_overlay *overlay =
388 container_of(active, typeof(*overlay), last_flip);
389 struct drm_i915_private *dev_priv = overlay->i915;
391 intel_overlay_release_old_vma(overlay);
393 overlay->crtc->overlay = NULL;
394 overlay->crtc = NULL;
395 overlay->active = false;
397 if (IS_I830(dev_priv))
398 i830_overlay_clock_gating(dev_priv, true);
401 /* overlay needs to be disabled in OCMD reg */
402 static int intel_overlay_off(struct intel_overlay *overlay)
404 struct i915_request *rq;
405 u32 *cs, flip_addr = overlay->flip_addr;
407 WARN_ON(!overlay->active);
409 /* According to intel docs the overlay hw may hang (when switching
410 * off) without loading the filter coeffs. It is however unclear whether
411 * this applies to the disabling of the overlay or to the switching off
412 * of the hw. Do it in both cases */
413 flip_addr |= OFC_UPDATE;
415 rq = alloc_request(overlay);
419 cs = intel_ring_begin(rq, 6);
421 i915_request_add(rq);
425 /* wait for overlay to go idle */
426 *cs++ = MI_OVERLAY_FLIP | MI_OVERLAY_CONTINUE;
428 *cs++ = MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP;
430 /* turn overlay off */
431 *cs++ = MI_OVERLAY_FLIP | MI_OVERLAY_OFF;
433 *cs++ = MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP;
435 intel_ring_advance(rq, cs);
437 intel_overlay_flip_prepare(overlay, NULL);
439 return intel_overlay_do_wait_request(overlay, rq,
440 intel_overlay_off_tail);
443 /* recover from an interruption due to a signal
444 * We have to be careful not to repeat work forever an make forward progess. */
445 static int intel_overlay_recover_from_interrupt(struct intel_overlay *overlay)
447 return i915_gem_active_retire(&overlay->last_flip,
448 &overlay->i915->drm.struct_mutex);
451 /* Wait for pending overlay flip and release old frame.
452 * Needs to be called before the overlay register are changed
453 * via intel_overlay_(un)map_regs
455 static int intel_overlay_release_old_vid(struct intel_overlay *overlay)
457 struct drm_i915_private *dev_priv = overlay->i915;
461 lockdep_assert_held(&dev_priv->drm.struct_mutex);
463 /* Only wait if there is actually an old frame to release to
464 * guarantee forward progress.
466 if (!overlay->old_vma)
469 if (I915_READ(ISR) & I915_OVERLAY_PLANE_FLIP_PENDING_INTERRUPT) {
470 /* synchronous slowpath */
471 struct i915_request *rq;
473 rq = alloc_request(overlay);
477 cs = intel_ring_begin(rq, 2);
479 i915_request_add(rq);
483 *cs++ = MI_WAIT_FOR_EVENT | MI_WAIT_FOR_OVERLAY_FLIP;
485 intel_ring_advance(rq, cs);
487 ret = intel_overlay_do_wait_request(overlay, rq,
488 intel_overlay_release_old_vid_tail);
492 intel_overlay_release_old_vid_tail(&overlay->last_flip, NULL);
497 void intel_overlay_reset(struct drm_i915_private *dev_priv)
499 struct intel_overlay *overlay = dev_priv->overlay;
504 intel_overlay_release_old_vid(overlay);
506 overlay->old_xscale = 0;
507 overlay->old_yscale = 0;
508 overlay->crtc = NULL;
509 overlay->active = false;
512 struct put_image_params {
529 static int packed_depth_bytes(u32 format)
531 switch (format & I915_OVERLAY_DEPTH_MASK) {
532 case I915_OVERLAY_YUV422:
534 case I915_OVERLAY_YUV411:
535 /* return 6; not implemented */
541 static int packed_width_bytes(u32 format, short width)
543 switch (format & I915_OVERLAY_DEPTH_MASK) {
544 case I915_OVERLAY_YUV422:
551 static int uv_hsubsampling(u32 format)
553 switch (format & I915_OVERLAY_DEPTH_MASK) {
554 case I915_OVERLAY_YUV422:
555 case I915_OVERLAY_YUV420:
557 case I915_OVERLAY_YUV411:
558 case I915_OVERLAY_YUV410:
565 static int uv_vsubsampling(u32 format)
567 switch (format & I915_OVERLAY_DEPTH_MASK) {
568 case I915_OVERLAY_YUV420:
569 case I915_OVERLAY_YUV410:
571 case I915_OVERLAY_YUV422:
572 case I915_OVERLAY_YUV411:
579 static u32 calc_swidthsw(struct drm_i915_private *dev_priv, u32 offset, u32 width)
583 if (IS_GEN2(dev_priv))
584 sw = ALIGN((offset & 31) + width, 32);
586 sw = ALIGN((offset & 63) + width, 64);
591 return (sw - 32) >> 3;
594 static const u16 y_static_hcoeffs[N_PHASES][N_HORIZ_Y_TAPS] = {
595 [ 0] = { 0x3000, 0xb4a0, 0x1930, 0x1920, 0xb4a0, },
596 [ 1] = { 0x3000, 0xb500, 0x19d0, 0x1880, 0xb440, },
597 [ 2] = { 0x3000, 0xb540, 0x1a88, 0x2f80, 0xb3e0, },
598 [ 3] = { 0x3000, 0xb580, 0x1b30, 0x2e20, 0xb380, },
599 [ 4] = { 0x3000, 0xb5c0, 0x1bd8, 0x2cc0, 0xb320, },
600 [ 5] = { 0x3020, 0xb5e0, 0x1c60, 0x2b80, 0xb2c0, },
601 [ 6] = { 0x3020, 0xb5e0, 0x1cf8, 0x2a20, 0xb260, },
602 [ 7] = { 0x3020, 0xb5e0, 0x1d80, 0x28e0, 0xb200, },
603 [ 8] = { 0x3020, 0xb5c0, 0x1e08, 0x3f40, 0xb1c0, },
604 [ 9] = { 0x3020, 0xb580, 0x1e78, 0x3ce0, 0xb160, },
605 [10] = { 0x3040, 0xb520, 0x1ed8, 0x3aa0, 0xb120, },
606 [11] = { 0x3040, 0xb4a0, 0x1f30, 0x3880, 0xb0e0, },
607 [12] = { 0x3040, 0xb400, 0x1f78, 0x3680, 0xb0a0, },
608 [13] = { 0x3020, 0xb340, 0x1fb8, 0x34a0, 0xb060, },
609 [14] = { 0x3020, 0xb240, 0x1fe0, 0x32e0, 0xb040, },
610 [15] = { 0x3020, 0xb140, 0x1ff8, 0x3160, 0xb020, },
611 [16] = { 0xb000, 0x3000, 0x0800, 0x3000, 0xb000, },
614 static const u16 uv_static_hcoeffs[N_PHASES][N_HORIZ_UV_TAPS] = {
615 [ 0] = { 0x3000, 0x1800, 0x1800, },
616 [ 1] = { 0xb000, 0x18d0, 0x2e60, },
617 [ 2] = { 0xb000, 0x1990, 0x2ce0, },
618 [ 3] = { 0xb020, 0x1a68, 0x2b40, },
619 [ 4] = { 0xb040, 0x1b20, 0x29e0, },
620 [ 5] = { 0xb060, 0x1bd8, 0x2880, },
621 [ 6] = { 0xb080, 0x1c88, 0x3e60, },
622 [ 7] = { 0xb0a0, 0x1d28, 0x3c00, },
623 [ 8] = { 0xb0c0, 0x1db8, 0x39e0, },
624 [ 9] = { 0xb0e0, 0x1e40, 0x37e0, },
625 [10] = { 0xb100, 0x1eb8, 0x3620, },
626 [11] = { 0xb100, 0x1f18, 0x34a0, },
627 [12] = { 0xb100, 0x1f68, 0x3360, },
628 [13] = { 0xb0e0, 0x1fa8, 0x3240, },
629 [14] = { 0xb0c0, 0x1fe0, 0x3140, },
630 [15] = { 0xb060, 0x1ff0, 0x30a0, },
631 [16] = { 0x3000, 0x0800, 0x3000, },
634 static void update_polyphase_filter(struct overlay_registers __iomem *regs)
636 memcpy_toio(regs->Y_HCOEFS, y_static_hcoeffs, sizeof(y_static_hcoeffs));
637 memcpy_toio(regs->UV_HCOEFS, uv_static_hcoeffs,
638 sizeof(uv_static_hcoeffs));
641 static bool update_scaling_factors(struct intel_overlay *overlay,
642 struct overlay_registers __iomem *regs,
643 struct put_image_params *params)
645 /* fixed point with a 12 bit shift */
646 u32 xscale, yscale, xscale_UV, yscale_UV;
648 #define FRACT_MASK 0xfff
649 bool scale_changed = false;
650 int uv_hscale = uv_hsubsampling(params->format);
651 int uv_vscale = uv_vsubsampling(params->format);
653 if (params->dst_w > 1)
654 xscale = ((params->src_scan_w - 1) << FP_SHIFT)
657 xscale = 1 << FP_SHIFT;
659 if (params->dst_h > 1)
660 yscale = ((params->src_scan_h - 1) << FP_SHIFT)
663 yscale = 1 << FP_SHIFT;
665 /*if (params->format & I915_OVERLAY_YUV_PLANAR) {*/
666 xscale_UV = xscale/uv_hscale;
667 yscale_UV = yscale/uv_vscale;
668 /* make the Y scale to UV scale ratio an exact multiply */
669 xscale = xscale_UV * uv_hscale;
670 yscale = yscale_UV * uv_vscale;
676 if (xscale != overlay->old_xscale || yscale != overlay->old_yscale)
677 scale_changed = true;
678 overlay->old_xscale = xscale;
679 overlay->old_yscale = yscale;
681 iowrite32(((yscale & FRACT_MASK) << 20) |
682 ((xscale >> FP_SHIFT) << 16) |
683 ((xscale & FRACT_MASK) << 3),
686 iowrite32(((yscale_UV & FRACT_MASK) << 20) |
687 ((xscale_UV >> FP_SHIFT) << 16) |
688 ((xscale_UV & FRACT_MASK) << 3),
691 iowrite32((((yscale >> FP_SHIFT) << 16) |
692 ((yscale_UV >> FP_SHIFT) << 0)),
696 update_polyphase_filter(regs);
698 return scale_changed;
701 static void update_colorkey(struct intel_overlay *overlay,
702 struct overlay_registers __iomem *regs)
704 const struct intel_plane_state *state =
705 to_intel_plane_state(overlay->crtc->base.primary->state);
706 u32 key = overlay->color_key;
710 if (overlay->color_key_enabled)
711 flags |= DST_KEY_ENABLE;
713 if (state->base.visible)
714 format = state->base.fb->format->format;
719 flags |= CLK_RGB8I_MASK;
721 case DRM_FORMAT_XRGB1555:
722 key = RGB15_TO_COLORKEY(key);
723 flags |= CLK_RGB15_MASK;
725 case DRM_FORMAT_RGB565:
726 key = RGB16_TO_COLORKEY(key);
727 flags |= CLK_RGB16_MASK;
730 flags |= CLK_RGB24_MASK;
734 iowrite32(key, ®s->DCLRKV);
735 iowrite32(flags, ®s->DCLRKM);
738 static u32 overlay_cmd_reg(struct put_image_params *params)
740 u32 cmd = OCMD_ENABLE | OCMD_BUF_TYPE_FRAME | OCMD_BUFFER0;
742 if (params->format & I915_OVERLAY_YUV_PLANAR) {
743 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
744 case I915_OVERLAY_YUV422:
745 cmd |= OCMD_YUV_422_PLANAR;
747 case I915_OVERLAY_YUV420:
748 cmd |= OCMD_YUV_420_PLANAR;
750 case I915_OVERLAY_YUV411:
751 case I915_OVERLAY_YUV410:
752 cmd |= OCMD_YUV_410_PLANAR;
755 } else { /* YUV packed */
756 switch (params->format & I915_OVERLAY_DEPTH_MASK) {
757 case I915_OVERLAY_YUV422:
758 cmd |= OCMD_YUV_422_PACKED;
760 case I915_OVERLAY_YUV411:
761 cmd |= OCMD_YUV_411_PACKED;
765 switch (params->format & I915_OVERLAY_SWAP_MASK) {
766 case I915_OVERLAY_NO_SWAP:
768 case I915_OVERLAY_UV_SWAP:
771 case I915_OVERLAY_Y_SWAP:
774 case I915_OVERLAY_Y_AND_UV_SWAP:
775 cmd |= OCMD_Y_AND_UV_SWAP;
783 static int intel_overlay_do_put_image(struct intel_overlay *overlay,
784 struct drm_i915_gem_object *new_bo,
785 struct put_image_params *params)
788 struct overlay_registers __iomem *regs;
789 bool scale_changed = false;
790 struct drm_i915_private *dev_priv = overlay->i915;
791 u32 swidth, swidthsw, sheight, ostride;
792 enum pipe pipe = overlay->crtc->pipe;
793 struct i915_vma *vma;
795 lockdep_assert_held(&dev_priv->drm.struct_mutex);
796 WARN_ON(!drm_modeset_is_locked(&dev_priv->drm.mode_config.connection_mutex));
798 ret = intel_overlay_release_old_vid(overlay);
802 atomic_inc(&dev_priv->gpu_error.pending_fb_pin);
804 vma = i915_gem_object_pin_to_display_plane(new_bo,
805 0, NULL, PIN_MAPPABLE);
808 goto out_pin_section;
810 intel_fb_obj_flush(new_bo, ORIGIN_DIRTYFB);
812 ret = i915_vma_put_fence(vma);
816 if (!overlay->active) {
818 regs = intel_overlay_map_regs(overlay);
823 oconfig = OCONF_CC_OUT_8BIT;
824 if (IS_GEN4(dev_priv))
825 oconfig |= OCONF_CSC_MODE_BT709;
826 oconfig |= pipe == 0 ?
827 OCONF_PIPE_A : OCONF_PIPE_B;
828 iowrite32(oconfig, ®s->OCONFIG);
829 intel_overlay_unmap_regs(overlay, regs);
831 ret = intel_overlay_on(overlay);
836 regs = intel_overlay_map_regs(overlay);
842 iowrite32((params->dst_y << 16) | params->dst_x, ®s->DWINPOS);
843 iowrite32((params->dst_h << 16) | params->dst_w, ®s->DWINSZ);
845 if (params->format & I915_OVERLAY_YUV_PACKED)
846 tmp_width = packed_width_bytes(params->format, params->src_w);
848 tmp_width = params->src_w;
850 swidth = params->src_w;
851 swidthsw = calc_swidthsw(dev_priv, params->offset_Y, tmp_width);
852 sheight = params->src_h;
853 iowrite32(i915_ggtt_offset(vma) + params->offset_Y, ®s->OBUF_0Y);
854 ostride = params->stride_Y;
856 if (params->format & I915_OVERLAY_YUV_PLANAR) {
857 int uv_hscale = uv_hsubsampling(params->format);
858 int uv_vscale = uv_vsubsampling(params->format);
860 swidth |= (params->src_w/uv_hscale) << 16;
861 tmp_U = calc_swidthsw(dev_priv, params->offset_U,
862 params->src_w/uv_hscale);
863 tmp_V = calc_swidthsw(dev_priv, params->offset_V,
864 params->src_w/uv_hscale);
865 swidthsw |= max_t(u32, tmp_U, tmp_V) << 16;
866 sheight |= (params->src_h/uv_vscale) << 16;
867 iowrite32(i915_ggtt_offset(vma) + params->offset_U,
869 iowrite32(i915_ggtt_offset(vma) + params->offset_V,
871 ostride |= params->stride_UV << 16;
874 iowrite32(swidth, ®s->SWIDTH);
875 iowrite32(swidthsw, ®s->SWIDTHSW);
876 iowrite32(sheight, ®s->SHEIGHT);
877 iowrite32(ostride, ®s->OSTRIDE);
879 scale_changed = update_scaling_factors(overlay, regs, params);
881 update_colorkey(overlay, regs);
883 iowrite32(overlay_cmd_reg(params), ®s->OCMD);
885 intel_overlay_unmap_regs(overlay, regs);
887 ret = intel_overlay_continue(overlay, vma, scale_changed);
894 i915_gem_object_unpin_from_display_plane(vma);
896 atomic_dec(&dev_priv->gpu_error.pending_fb_pin);
901 int intel_overlay_switch_off(struct intel_overlay *overlay)
903 struct drm_i915_private *dev_priv = overlay->i915;
904 struct overlay_registers __iomem *regs;
907 lockdep_assert_held(&dev_priv->drm.struct_mutex);
908 WARN_ON(!drm_modeset_is_locked(&dev_priv->drm.mode_config.connection_mutex));
910 ret = intel_overlay_recover_from_interrupt(overlay);
914 if (!overlay->active)
917 ret = intel_overlay_release_old_vid(overlay);
921 regs = intel_overlay_map_regs(overlay);
922 iowrite32(0, ®s->OCMD);
923 intel_overlay_unmap_regs(overlay, regs);
925 return intel_overlay_off(overlay);
928 static int check_overlay_possible_on_crtc(struct intel_overlay *overlay,
929 struct intel_crtc *crtc)
934 /* can't use the overlay with double wide pipe */
935 if (crtc->config->double_wide)
941 static void update_pfit_vscale_ratio(struct intel_overlay *overlay)
943 struct drm_i915_private *dev_priv = overlay->i915;
944 u32 pfit_control = I915_READ(PFIT_CONTROL);
947 /* XXX: This is not the same logic as in the xorg driver, but more in
948 * line with the intel documentation for the i965
950 if (INTEL_GEN(dev_priv) >= 4) {
951 /* on i965 use the PGM reg to read out the autoscaler values */
952 ratio = I915_READ(PFIT_PGM_RATIOS) >> PFIT_VERT_SCALE_SHIFT_965;
954 if (pfit_control & VERT_AUTO_SCALE)
955 ratio = I915_READ(PFIT_AUTO_RATIOS);
957 ratio = I915_READ(PFIT_PGM_RATIOS);
958 ratio >>= PFIT_VERT_SCALE_SHIFT;
961 overlay->pfit_vscale_ratio = ratio;
964 static int check_overlay_dst(struct intel_overlay *overlay,
965 struct drm_intel_overlay_put_image *rec)
967 const struct intel_crtc_state *pipe_config =
968 overlay->crtc->config;
970 if (rec->dst_x < pipe_config->pipe_src_w &&
971 rec->dst_x + rec->dst_width <= pipe_config->pipe_src_w &&
972 rec->dst_y < pipe_config->pipe_src_h &&
973 rec->dst_y + rec->dst_height <= pipe_config->pipe_src_h)
979 static int check_overlay_scaling(struct put_image_params *rec)
983 /* downscaling limit is 8.0 */
984 tmp = ((rec->src_scan_h << 16) / rec->dst_h) >> 16;
987 tmp = ((rec->src_scan_w << 16) / rec->dst_w) >> 16;
994 static int check_overlay_src(struct drm_i915_private *dev_priv,
995 struct drm_intel_overlay_put_image *rec,
996 struct drm_i915_gem_object *new_bo)
998 int uv_hscale = uv_hsubsampling(rec->flags);
999 int uv_vscale = uv_vsubsampling(rec->flags);
1004 /* check src dimensions */
1005 if (IS_I845G(dev_priv) || IS_I830(dev_priv)) {
1006 if (rec->src_height > IMAGE_MAX_HEIGHT_LEGACY ||
1007 rec->src_width > IMAGE_MAX_WIDTH_LEGACY)
1010 if (rec->src_height > IMAGE_MAX_HEIGHT ||
1011 rec->src_width > IMAGE_MAX_WIDTH)
1015 /* better safe than sorry, use 4 as the maximal subsampling ratio */
1016 if (rec->src_height < N_VERT_Y_TAPS*4 ||
1017 rec->src_width < N_HORIZ_Y_TAPS*4)
1020 /* check alignment constraints */
1021 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
1022 case I915_OVERLAY_RGB:
1023 /* not implemented */
1026 case I915_OVERLAY_YUV_PACKED:
1030 depth = packed_depth_bytes(rec->flags);
1034 /* ignore UV planes */
1038 /* check pixel alignment */
1039 if (rec->offset_Y % depth)
1043 case I915_OVERLAY_YUV_PLANAR:
1044 if (uv_vscale < 0 || uv_hscale < 0)
1046 /* no offset restrictions for planar formats */
1053 if (rec->src_width % uv_hscale)
1056 /* stride checking */
1057 if (IS_I830(dev_priv) || IS_I845G(dev_priv))
1062 if (rec->stride_Y & stride_mask || rec->stride_UV & stride_mask)
1064 if (IS_GEN4(dev_priv) && rec->stride_Y < 512)
1067 tmp = (rec->flags & I915_OVERLAY_TYPE_MASK) == I915_OVERLAY_YUV_PLANAR ?
1069 if (rec->stride_Y > tmp || rec->stride_UV > 2*1024)
1072 /* check buffer dimensions */
1073 switch (rec->flags & I915_OVERLAY_TYPE_MASK) {
1074 case I915_OVERLAY_RGB:
1075 case I915_OVERLAY_YUV_PACKED:
1076 /* always 4 Y values per depth pixels */
1077 if (packed_width_bytes(rec->flags, rec->src_width) > rec->stride_Y)
1080 tmp = rec->stride_Y*rec->src_height;
1081 if (rec->offset_Y + tmp > new_bo->base.size)
1085 case I915_OVERLAY_YUV_PLANAR:
1086 if (rec->src_width > rec->stride_Y)
1088 if (rec->src_width/uv_hscale > rec->stride_UV)
1091 tmp = rec->stride_Y * rec->src_height;
1092 if (rec->offset_Y + tmp > new_bo->base.size)
1095 tmp = rec->stride_UV * (rec->src_height / uv_vscale);
1096 if (rec->offset_U + tmp > new_bo->base.size ||
1097 rec->offset_V + tmp > new_bo->base.size)
1105 int intel_overlay_put_image_ioctl(struct drm_device *dev, void *data,
1106 struct drm_file *file_priv)
1108 struct drm_intel_overlay_put_image *put_image_rec = data;
1109 struct drm_i915_private *dev_priv = to_i915(dev);
1110 struct intel_overlay *overlay;
1111 struct drm_crtc *drmmode_crtc;
1112 struct intel_crtc *crtc;
1113 struct drm_i915_gem_object *new_bo;
1114 struct put_image_params *params;
1117 overlay = dev_priv->overlay;
1119 DRM_DEBUG("userspace bug: no overlay\n");
1123 if (!(put_image_rec->flags & I915_OVERLAY_ENABLE)) {
1124 drm_modeset_lock_all(dev);
1125 mutex_lock(&dev->struct_mutex);
1127 ret = intel_overlay_switch_off(overlay);
1129 mutex_unlock(&dev->struct_mutex);
1130 drm_modeset_unlock_all(dev);
1135 params = kmalloc(sizeof(*params), GFP_KERNEL);
1139 drmmode_crtc = drm_crtc_find(dev, file_priv, put_image_rec->crtc_id);
1140 if (!drmmode_crtc) {
1144 crtc = to_intel_crtc(drmmode_crtc);
1146 new_bo = i915_gem_object_lookup(file_priv, put_image_rec->bo_handle);
1152 drm_modeset_lock_all(dev);
1153 mutex_lock(&dev->struct_mutex);
1155 if (i915_gem_object_is_tiled(new_bo)) {
1156 DRM_DEBUG_KMS("buffer used for overlay image can not be tiled\n");
1161 ret = intel_overlay_recover_from_interrupt(overlay);
1165 if (overlay->crtc != crtc) {
1166 ret = intel_overlay_switch_off(overlay);
1170 ret = check_overlay_possible_on_crtc(overlay, crtc);
1174 overlay->crtc = crtc;
1175 crtc->overlay = overlay;
1177 /* line too wide, i.e. one-line-mode */
1178 if (crtc->config->pipe_src_w > 1024 &&
1179 crtc->config->gmch_pfit.control & PFIT_ENABLE) {
1180 overlay->pfit_active = true;
1181 update_pfit_vscale_ratio(overlay);
1183 overlay->pfit_active = false;
1186 ret = check_overlay_dst(overlay, put_image_rec);
1190 if (overlay->pfit_active) {
1191 params->dst_y = ((((u32)put_image_rec->dst_y) << 12) /
1192 overlay->pfit_vscale_ratio);
1193 /* shifting right rounds downwards, so add 1 */
1194 params->dst_h = ((((u32)put_image_rec->dst_height) << 12) /
1195 overlay->pfit_vscale_ratio) + 1;
1197 params->dst_y = put_image_rec->dst_y;
1198 params->dst_h = put_image_rec->dst_height;
1200 params->dst_x = put_image_rec->dst_x;
1201 params->dst_w = put_image_rec->dst_width;
1203 params->src_w = put_image_rec->src_width;
1204 params->src_h = put_image_rec->src_height;
1205 params->src_scan_w = put_image_rec->src_scan_width;
1206 params->src_scan_h = put_image_rec->src_scan_height;
1207 if (params->src_scan_h > params->src_h ||
1208 params->src_scan_w > params->src_w) {
1213 ret = check_overlay_src(dev_priv, put_image_rec, new_bo);
1216 params->format = put_image_rec->flags & ~I915_OVERLAY_FLAGS_MASK;
1217 params->stride_Y = put_image_rec->stride_Y;
1218 params->stride_UV = put_image_rec->stride_UV;
1219 params->offset_Y = put_image_rec->offset_Y;
1220 params->offset_U = put_image_rec->offset_U;
1221 params->offset_V = put_image_rec->offset_V;
1223 /* Check scaling after src size to prevent a divide-by-zero. */
1224 ret = check_overlay_scaling(params);
1228 ret = intel_overlay_do_put_image(overlay, new_bo, params);
1232 mutex_unlock(&dev->struct_mutex);
1233 drm_modeset_unlock_all(dev);
1234 i915_gem_object_put(new_bo);
1241 mutex_unlock(&dev->struct_mutex);
1242 drm_modeset_unlock_all(dev);
1243 i915_gem_object_put(new_bo);
1250 static void update_reg_attrs(struct intel_overlay *overlay,
1251 struct overlay_registers __iomem *regs)
1253 iowrite32((overlay->contrast << 18) | (overlay->brightness & 0xff),
1255 iowrite32(overlay->saturation, ®s->OCLRC1);
1258 static bool check_gamma_bounds(u32 gamma1, u32 gamma2)
1262 if (gamma1 & 0xff000000 || gamma2 & 0xff000000)
1265 for (i = 0; i < 3; i++) {
1266 if (((gamma1 >> i*8) & 0xff) >= ((gamma2 >> i*8) & 0xff))
1273 static bool check_gamma5_errata(u32 gamma5)
1277 for (i = 0; i < 3; i++) {
1278 if (((gamma5 >> i*8) & 0xff) == 0x80)
1285 static int check_gamma(struct drm_intel_overlay_attrs *attrs)
1287 if (!check_gamma_bounds(0, attrs->gamma0) ||
1288 !check_gamma_bounds(attrs->gamma0, attrs->gamma1) ||
1289 !check_gamma_bounds(attrs->gamma1, attrs->gamma2) ||
1290 !check_gamma_bounds(attrs->gamma2, attrs->gamma3) ||
1291 !check_gamma_bounds(attrs->gamma3, attrs->gamma4) ||
1292 !check_gamma_bounds(attrs->gamma4, attrs->gamma5) ||
1293 !check_gamma_bounds(attrs->gamma5, 0x00ffffff))
1296 if (!check_gamma5_errata(attrs->gamma5))
1302 int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data,
1303 struct drm_file *file_priv)
1305 struct drm_intel_overlay_attrs *attrs = data;
1306 struct drm_i915_private *dev_priv = to_i915(dev);
1307 struct intel_overlay *overlay;
1308 struct overlay_registers __iomem *regs;
1311 overlay = dev_priv->overlay;
1313 DRM_DEBUG("userspace bug: no overlay\n");
1317 drm_modeset_lock_all(dev);
1318 mutex_lock(&dev->struct_mutex);
1321 if (!(attrs->flags & I915_OVERLAY_UPDATE_ATTRS)) {
1322 attrs->color_key = overlay->color_key;
1323 attrs->brightness = overlay->brightness;
1324 attrs->contrast = overlay->contrast;
1325 attrs->saturation = overlay->saturation;
1327 if (!IS_GEN2(dev_priv)) {
1328 attrs->gamma0 = I915_READ(OGAMC0);
1329 attrs->gamma1 = I915_READ(OGAMC1);
1330 attrs->gamma2 = I915_READ(OGAMC2);
1331 attrs->gamma3 = I915_READ(OGAMC3);
1332 attrs->gamma4 = I915_READ(OGAMC4);
1333 attrs->gamma5 = I915_READ(OGAMC5);
1336 if (attrs->brightness < -128 || attrs->brightness > 127)
1338 if (attrs->contrast > 255)
1340 if (attrs->saturation > 1023)
1343 overlay->color_key = attrs->color_key;
1344 overlay->brightness = attrs->brightness;
1345 overlay->contrast = attrs->contrast;
1346 overlay->saturation = attrs->saturation;
1348 regs = intel_overlay_map_regs(overlay);
1354 update_reg_attrs(overlay, regs);
1356 intel_overlay_unmap_regs(overlay, regs);
1358 if (attrs->flags & I915_OVERLAY_UPDATE_GAMMA) {
1359 if (IS_GEN2(dev_priv))
1362 if (overlay->active) {
1367 ret = check_gamma(attrs);
1371 I915_WRITE(OGAMC0, attrs->gamma0);
1372 I915_WRITE(OGAMC1, attrs->gamma1);
1373 I915_WRITE(OGAMC2, attrs->gamma2);
1374 I915_WRITE(OGAMC3, attrs->gamma3);
1375 I915_WRITE(OGAMC4, attrs->gamma4);
1376 I915_WRITE(OGAMC5, attrs->gamma5);
1379 overlay->color_key_enabled = (attrs->flags & I915_OVERLAY_DISABLE_DEST_COLORKEY) == 0;
1383 mutex_unlock(&dev->struct_mutex);
1384 drm_modeset_unlock_all(dev);
1389 void intel_setup_overlay(struct drm_i915_private *dev_priv)
1391 struct intel_overlay *overlay;
1392 struct drm_i915_gem_object *reg_bo;
1393 struct overlay_registers __iomem *regs;
1394 struct i915_vma *vma = NULL;
1397 if (!HAS_OVERLAY(dev_priv))
1400 overlay = kzalloc(sizeof(*overlay), GFP_KERNEL);
1404 mutex_lock(&dev_priv->drm.struct_mutex);
1405 if (WARN_ON(dev_priv->overlay))
1408 overlay->i915 = dev_priv;
1411 if (!OVERLAY_NEEDS_PHYSICAL(dev_priv))
1412 reg_bo = i915_gem_object_create_stolen(dev_priv, PAGE_SIZE);
1414 reg_bo = i915_gem_object_create(dev_priv, PAGE_SIZE);
1417 overlay->reg_bo = reg_bo;
1419 if (OVERLAY_NEEDS_PHYSICAL(dev_priv)) {
1420 ret = i915_gem_object_attach_phys(reg_bo, PAGE_SIZE);
1422 DRM_ERROR("failed to attach phys overlay regs\n");
1425 overlay->flip_addr = reg_bo->phys_handle->busaddr;
1427 vma = i915_gem_object_ggtt_pin(reg_bo, NULL,
1428 0, PAGE_SIZE, PIN_MAPPABLE);
1430 DRM_ERROR("failed to pin overlay register bo\n");
1434 overlay->flip_addr = i915_ggtt_offset(vma);
1436 ret = i915_gem_object_set_to_gtt_domain(reg_bo, true);
1438 DRM_ERROR("failed to move overlay register bo into the GTT\n");
1443 /* init all values */
1444 overlay->color_key = 0x0101fe;
1445 overlay->color_key_enabled = true;
1446 overlay->brightness = -19;
1447 overlay->contrast = 75;
1448 overlay->saturation = 146;
1450 init_request_active(&overlay->last_flip, NULL);
1452 regs = intel_overlay_map_regs(overlay);
1456 memset_io(regs, 0, sizeof(struct overlay_registers));
1457 update_polyphase_filter(regs);
1458 update_reg_attrs(overlay, regs);
1460 intel_overlay_unmap_regs(overlay, regs);
1462 dev_priv->overlay = overlay;
1463 mutex_unlock(&dev_priv->drm.struct_mutex);
1464 DRM_INFO("initialized overlay support\n");
1469 i915_vma_unpin(vma);
1471 i915_gem_object_put(reg_bo);
1473 mutex_unlock(&dev_priv->drm.struct_mutex);
1478 void intel_cleanup_overlay(struct drm_i915_private *dev_priv)
1480 if (!dev_priv->overlay)
1483 /* The bo's should be free'd by the generic code already.
1484 * Furthermore modesetting teardown happens beforehand so the
1485 * hardware should be off already */
1486 WARN_ON(dev_priv->overlay->active);
1488 i915_gem_object_put(dev_priv->overlay->reg_bo);
1489 kfree(dev_priv->overlay);
1492 #if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
1494 struct intel_overlay_error_state {
1495 struct overlay_registers regs;
1501 static struct overlay_registers __iomem *
1502 intel_overlay_map_regs_atomic(struct intel_overlay *overlay)
1504 struct drm_i915_private *dev_priv = overlay->i915;
1505 struct overlay_registers __iomem *regs;
1507 if (OVERLAY_NEEDS_PHYSICAL(dev_priv))
1508 /* Cast to make sparse happy, but it's wc memory anyway, so
1509 * equivalent to the wc io mapping on X86. */
1510 regs = (struct overlay_registers __iomem *)
1511 overlay->reg_bo->phys_handle->vaddr;
1513 regs = io_mapping_map_atomic_wc(&dev_priv->ggtt.iomap,
1514 overlay->flip_addr);
1519 static void intel_overlay_unmap_regs_atomic(struct intel_overlay *overlay,
1520 struct overlay_registers __iomem *regs)
1522 if (!OVERLAY_NEEDS_PHYSICAL(overlay->i915))
1523 io_mapping_unmap_atomic(regs);
1526 struct intel_overlay_error_state *
1527 intel_overlay_capture_error_state(struct drm_i915_private *dev_priv)
1529 struct intel_overlay *overlay = dev_priv->overlay;
1530 struct intel_overlay_error_state *error;
1531 struct overlay_registers __iomem *regs;
1533 if (!overlay || !overlay->active)
1536 error = kmalloc(sizeof(*error), GFP_ATOMIC);
1540 error->dovsta = I915_READ(DOVSTA);
1541 error->isr = I915_READ(ISR);
1542 error->base = overlay->flip_addr;
1544 regs = intel_overlay_map_regs_atomic(overlay);
1548 memcpy_fromio(&error->regs, regs, sizeof(struct overlay_registers));
1549 intel_overlay_unmap_regs_atomic(overlay, regs);
1559 intel_overlay_print_error_state(struct drm_i915_error_state_buf *m,
1560 struct intel_overlay_error_state *error)
1562 i915_error_printf(m, "Overlay, status: 0x%08x, interrupt: 0x%08x\n",
1563 error->dovsta, error->isr);
1564 i915_error_printf(m, " Register file at 0x%08lx:\n",
1567 #define P(x) i915_error_printf(m, " " #x ": 0x%08x\n", error->regs.x)