2 * Copyright © 2011 Intel Corporation
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
24 * Jesse Barnes <jbarnes@virtuousgeek.org>
26 * New plane/sprite handling.
28 * The older chips had a separate interface for programming plane related
29 * registers; newer ones are much simpler and we can use the new DRM plane
33 #include <drm/drm_atomic.h>
34 #include <drm/drm_atomic_helper.h>
35 #include <drm/drm_color_mgmt.h>
36 #include <drm/drm_crtc.h>
37 #include <drm/drm_fourcc.h>
38 #include <drm/drm_plane_helper.h>
39 #include <drm/drm_rect.h>
40 #include <drm/i915_drm.h>
43 #include "i915_trace.h"
44 #include "intel_atomic_plane.h"
45 #include "intel_display_types.h"
46 #include "intel_frontbuffer.h"
48 #include "intel_psr.h"
49 #include "intel_sprite.h"
51 int intel_usecs_to_scanlines(const struct drm_display_mode
*adjusted_mode
,
55 if (!adjusted_mode
->crtc_htotal
)
58 return DIV_ROUND_UP(usecs
* adjusted_mode
->crtc_clock
,
59 1000 * adjusted_mode
->crtc_htotal
);
62 /* FIXME: We should instead only take spinlocks once for the entire update
63 * instead of once per mmio. */
64 #if IS_ENABLED(CONFIG_PROVE_LOCKING)
65 #define VBLANK_EVASION_TIME_US 250
67 #define VBLANK_EVASION_TIME_US 100
71 * intel_pipe_update_start() - start update of a set of display registers
72 * @new_crtc_state: the new crtc state
74 * Mark the start of an update to pipe registers that should be updated
75 * atomically regarding vblank. If the next vblank will happens within
76 * the next 100 us, this function waits until the vblank passes.
78 * After a successful call to this function, interrupts will be disabled
79 * until a subsequent call to intel_pipe_update_end(). That is done to
80 * avoid random delays.
82 void intel_pipe_update_start(const struct intel_crtc_state
*new_crtc_state
)
84 struct intel_crtc
*crtc
= to_intel_crtc(new_crtc_state
->uapi
.crtc
);
85 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
86 const struct drm_display_mode
*adjusted_mode
= &new_crtc_state
->hw
.adjusted_mode
;
87 long timeout
= msecs_to_jiffies_timeout(1);
88 int scanline
, min
, max
, vblank_start
;
89 wait_queue_head_t
*wq
= drm_crtc_vblank_waitqueue(&crtc
->base
);
90 bool need_vlv_dsi_wa
= (IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
)) &&
91 intel_crtc_has_type(new_crtc_state
, INTEL_OUTPUT_DSI
);
95 vblank_start
= adjusted_mode
->crtc_vblank_start
;
96 if (adjusted_mode
->flags
& DRM_MODE_FLAG_INTERLACE
)
97 vblank_start
= DIV_ROUND_UP(vblank_start
, 2);
99 /* FIXME needs to be calibrated sensibly */
100 min
= vblank_start
- intel_usecs_to_scanlines(adjusted_mode
,
101 VBLANK_EVASION_TIME_US
);
102 max
= vblank_start
- 1;
104 if (min
<= 0 || max
<= 0)
107 if (WARN_ON(drm_crtc_vblank_get(&crtc
->base
)))
111 * Wait for psr to idle out after enabling the VBL interrupts
112 * VBL interrupts will start the PSR exit and prevent a PSR
115 if (intel_psr_wait_for_idle(new_crtc_state
, &psr_status
))
116 DRM_ERROR("PSR idle timed out 0x%x, atomic update may fail\n",
121 crtc
->debug
.min_vbl
= min
;
122 crtc
->debug
.max_vbl
= max
;
123 trace_intel_pipe_update_start(crtc
);
127 * prepare_to_wait() has a memory barrier, which guarantees
128 * other CPUs can see the task state update by the time we
131 prepare_to_wait(wq
, &wait
, TASK_UNINTERRUPTIBLE
);
133 scanline
= intel_get_crtc_scanline(crtc
);
134 if (scanline
< min
|| scanline
> max
)
138 DRM_ERROR("Potential atomic update failure on pipe %c\n",
139 pipe_name(crtc
->pipe
));
145 timeout
= schedule_timeout(timeout
);
150 finish_wait(wq
, &wait
);
152 drm_crtc_vblank_put(&crtc
->base
);
155 * On VLV/CHV DSI the scanline counter would appear to
156 * increment approx. 1/3 of a scanline before start of vblank.
157 * The registers still get latched at start of vblank however.
158 * This means we must not write any registers on the first
159 * line of vblank (since not the whole line is actually in
160 * vblank). And unfortunately we can't use the interrupt to
161 * wait here since it will fire too soon. We could use the
162 * frame start interrupt instead since it will fire after the
163 * critical scanline, but that would require more changes
164 * in the interrupt code. So for now we'll just do the nasty
165 * thing and poll for the bad scanline to pass us by.
167 * FIXME figure out if BXT+ DSI suffers from this as well
169 while (need_vlv_dsi_wa
&& scanline
== vblank_start
)
170 scanline
= intel_get_crtc_scanline(crtc
);
172 crtc
->debug
.scanline_start
= scanline
;
173 crtc
->debug
.start_vbl_time
= ktime_get();
174 crtc
->debug
.start_vbl_count
= intel_crtc_get_vblank_counter(crtc
);
176 trace_intel_pipe_update_vblank_evaded(crtc
);
184 * intel_pipe_update_end() - end update of a set of display registers
185 * @new_crtc_state: the new crtc state
187 * Mark the end of an update started with intel_pipe_update_start(). This
188 * re-enables interrupts and verifies the update was actually completed
191 void intel_pipe_update_end(struct intel_crtc_state
*new_crtc_state
)
193 struct intel_crtc
*crtc
= to_intel_crtc(new_crtc_state
->uapi
.crtc
);
194 enum pipe pipe
= crtc
->pipe
;
195 int scanline_end
= intel_get_crtc_scanline(crtc
);
196 u32 end_vbl_count
= intel_crtc_get_vblank_counter(crtc
);
197 ktime_t end_vbl_time
= ktime_get();
198 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
200 trace_intel_pipe_update_end(crtc
, end_vbl_count
, scanline_end
);
202 /* We're still in the vblank-evade critical section, this can't race.
203 * Would be slightly nice to just grab the vblank count and arm the
204 * event outside of the critical section - the spinlock might spin for a
206 if (new_crtc_state
->uapi
.event
) {
207 WARN_ON(drm_crtc_vblank_get(&crtc
->base
) != 0);
209 spin_lock(&crtc
->base
.dev
->event_lock
);
210 drm_crtc_arm_vblank_event(&crtc
->base
,
211 new_crtc_state
->uapi
.event
);
212 spin_unlock(&crtc
->base
.dev
->event_lock
);
214 new_crtc_state
->uapi
.event
= NULL
;
219 if (intel_vgpu_active(dev_priv
))
222 if (crtc
->debug
.start_vbl_count
&&
223 crtc
->debug
.start_vbl_count
!= end_vbl_count
) {
224 DRM_ERROR("Atomic update failure on pipe %c (start=%u end=%u) time %lld us, min %d, max %d, scanline start %d, end %d\n",
225 pipe_name(pipe
), crtc
->debug
.start_vbl_count
,
227 ktime_us_delta(end_vbl_time
, crtc
->debug
.start_vbl_time
),
228 crtc
->debug
.min_vbl
, crtc
->debug
.max_vbl
,
229 crtc
->debug
.scanline_start
, scanline_end
);
231 #ifdef CONFIG_DRM_I915_DEBUG_VBLANK_EVADE
232 else if (ktime_us_delta(end_vbl_time
, crtc
->debug
.start_vbl_time
) >
233 VBLANK_EVASION_TIME_US
)
234 DRM_WARN("Atomic update on pipe (%c) took %lld us, max time under evasion is %u us\n",
236 ktime_us_delta(end_vbl_time
, crtc
->debug
.start_vbl_time
),
237 VBLANK_EVASION_TIME_US
);
241 int intel_plane_check_stride(const struct intel_plane_state
*plane_state
)
243 struct intel_plane
*plane
= to_intel_plane(plane_state
->uapi
.plane
);
244 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
245 unsigned int rotation
= plane_state
->hw
.rotation
;
246 u32 stride
, max_stride
;
249 * We ignore stride for all invisible planes that
250 * can be remapped. Otherwise we could end up
251 * with a false positive when the remapping didn't
252 * kick in due the plane being invisible.
254 if (intel_plane_can_remap(plane_state
) &&
255 !plane_state
->uapi
.visible
)
258 /* FIXME other color planes? */
259 stride
= plane_state
->color_plane
[0].stride
;
260 max_stride
= plane
->max_stride(plane
, fb
->format
->format
,
261 fb
->modifier
, rotation
);
263 if (stride
> max_stride
) {
264 DRM_DEBUG_KMS("[FB:%d] stride (%d) exceeds [PLANE:%d:%s] max stride (%d)\n",
266 plane
->base
.base
.id
, plane
->base
.name
, max_stride
);
273 int intel_plane_check_src_coordinates(struct intel_plane_state
*plane_state
)
275 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
276 struct drm_rect
*src
= &plane_state
->uapi
.src
;
277 u32 src_x
, src_y
, src_w
, src_h
, hsub
, vsub
;
278 bool rotated
= drm_rotation_90_or_270(plane_state
->hw
.rotation
);
281 * Hardware doesn't handle subpixel coordinates.
282 * Adjust to (macro)pixel boundary, but be careful not to
283 * increase the source viewport size, because that could
284 * push the downscaling factor out of bounds.
286 src_x
= src
->x1
>> 16;
287 src_w
= drm_rect_width(src
) >> 16;
288 src_y
= src
->y1
>> 16;
289 src_h
= drm_rect_height(src
) >> 16;
291 drm_rect_init(src
, src_x
<< 16, src_y
<< 16,
292 src_w
<< 16, src_h
<< 16);
294 if (!fb
->format
->is_yuv
)
297 /* YUV specific checks */
299 hsub
= fb
->format
->hsub
;
300 vsub
= fb
->format
->vsub
;
302 hsub
= vsub
= max(fb
->format
->hsub
, fb
->format
->vsub
);
305 if (src_x
% hsub
|| src_w
% hsub
) {
306 DRM_DEBUG_KMS("src x/w (%u, %u) must be a multiple of %u for %sYUV planes\n",
307 src_x
, src_w
, hsub
, rotated
? "rotated " : "");
311 if (src_y
% vsub
|| src_h
% vsub
) {
312 DRM_DEBUG_KMS("src y/h (%u, %u) must be a multiple of %u for %sYUV planes\n",
313 src_y
, src_h
, vsub
, rotated
? "rotated " : "");
320 bool icl_is_hdr_plane(struct drm_i915_private
*dev_priv
, enum plane_id plane_id
)
322 return INTEL_GEN(dev_priv
) >= 11 &&
323 icl_hdr_plane_mask() & BIT(plane_id
);
327 skl_plane_ratio(const struct intel_crtc_state
*crtc_state
,
328 const struct intel_plane_state
*plane_state
,
329 unsigned int *num
, unsigned int *den
)
331 struct drm_i915_private
*dev_priv
= to_i915(plane_state
->uapi
.plane
->dev
);
332 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
334 if (fb
->format
->cpp
[0] == 8) {
335 if (INTEL_GEN(dev_priv
) >= 10 || IS_GEMINILAKE(dev_priv
)) {
348 static int skl_plane_min_cdclk(const struct intel_crtc_state
*crtc_state
,
349 const struct intel_plane_state
*plane_state
)
351 struct drm_i915_private
*dev_priv
= to_i915(plane_state
->uapi
.plane
->dev
);
352 unsigned int pixel_rate
= crtc_state
->pixel_rate
;
353 unsigned int src_w
, src_h
, dst_w
, dst_h
;
354 unsigned int num
, den
;
356 skl_plane_ratio(crtc_state
, plane_state
, &num
, &den
);
358 /* two pixels per clock on glk+ */
359 if (INTEL_GEN(dev_priv
) >= 10 || IS_GEMINILAKE(dev_priv
))
362 src_w
= drm_rect_width(&plane_state
->uapi
.src
) >> 16;
363 src_h
= drm_rect_height(&plane_state
->uapi
.src
) >> 16;
364 dst_w
= drm_rect_width(&plane_state
->uapi
.dst
);
365 dst_h
= drm_rect_height(&plane_state
->uapi
.dst
);
367 /* Downscaling limits the maximum pixel rate */
368 dst_w
= min(src_w
, dst_w
);
369 dst_h
= min(src_h
, dst_h
);
371 return DIV64_U64_ROUND_UP(mul_u32_u32(pixel_rate
* num
, src_w
* src_h
),
372 mul_u32_u32(den
, dst_w
* dst_h
));
376 skl_plane_max_stride(struct intel_plane
*plane
,
377 u32 pixel_format
, u64 modifier
,
378 unsigned int rotation
)
380 const struct drm_format_info
*info
= drm_format_info(pixel_format
);
381 int cpp
= info
->cpp
[0];
384 * "The stride in bytes must not exceed the
385 * of the size of 8K pixels and 32K bytes."
387 if (drm_rotation_90_or_270(rotation
))
388 return min(8192, 32768 / cpp
);
390 return min(8192 * cpp
, 32768);
394 skl_program_scaler(struct intel_plane
*plane
,
395 const struct intel_crtc_state
*crtc_state
,
396 const struct intel_plane_state
*plane_state
)
398 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
399 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
400 enum pipe pipe
= plane
->pipe
;
401 int scaler_id
= plane_state
->scaler_id
;
402 const struct intel_scaler
*scaler
=
403 &crtc_state
->scaler_state
.scalers
[scaler_id
];
404 int crtc_x
= plane_state
->uapi
.dst
.x1
;
405 int crtc_y
= plane_state
->uapi
.dst
.y1
;
406 u32 crtc_w
= drm_rect_width(&plane_state
->uapi
.dst
);
407 u32 crtc_h
= drm_rect_height(&plane_state
->uapi
.dst
);
408 u16 y_hphase
, uv_rgb_hphase
;
409 u16 y_vphase
, uv_rgb_vphase
;
412 hscale
= drm_rect_calc_hscale(&plane_state
->uapi
.src
,
413 &plane_state
->uapi
.dst
,
415 vscale
= drm_rect_calc_vscale(&plane_state
->uapi
.src
,
416 &plane_state
->uapi
.dst
,
419 /* TODO: handle sub-pixel coordinates */
420 if (intel_format_info_is_yuv_semiplanar(fb
->format
, fb
->modifier
) &&
421 !icl_is_hdr_plane(dev_priv
, plane
->id
)) {
422 y_hphase
= skl_scaler_calc_phase(1, hscale
, false);
423 y_vphase
= skl_scaler_calc_phase(1, vscale
, false);
425 /* MPEG2 chroma siting convention */
426 uv_rgb_hphase
= skl_scaler_calc_phase(2, hscale
, true);
427 uv_rgb_vphase
= skl_scaler_calc_phase(2, vscale
, false);
433 uv_rgb_hphase
= skl_scaler_calc_phase(1, hscale
, false);
434 uv_rgb_vphase
= skl_scaler_calc_phase(1, vscale
, false);
437 I915_WRITE_FW(SKL_PS_CTRL(pipe
, scaler_id
),
438 PS_SCALER_EN
| PS_PLANE_SEL(plane
->id
) | scaler
->mode
);
439 I915_WRITE_FW(SKL_PS_VPHASE(pipe
, scaler_id
),
440 PS_Y_PHASE(y_vphase
) | PS_UV_RGB_PHASE(uv_rgb_vphase
));
441 I915_WRITE_FW(SKL_PS_HPHASE(pipe
, scaler_id
),
442 PS_Y_PHASE(y_hphase
) | PS_UV_RGB_PHASE(uv_rgb_hphase
));
443 I915_WRITE_FW(SKL_PS_WIN_POS(pipe
, scaler_id
), (crtc_x
<< 16) | crtc_y
);
444 I915_WRITE_FW(SKL_PS_WIN_SZ(pipe
, scaler_id
), (crtc_w
<< 16) | crtc_h
);
447 /* Preoffset values for YUV to RGB Conversion */
448 #define PREOFF_YUV_TO_RGB_HI 0x1800
449 #define PREOFF_YUV_TO_RGB_ME 0x1F00
450 #define PREOFF_YUV_TO_RGB_LO 0x1800
452 #define ROFF(x) (((x) & 0xffff) << 16)
453 #define GOFF(x) (((x) & 0xffff) << 0)
454 #define BOFF(x) (((x) & 0xffff) << 16)
457 icl_program_input_csc(struct intel_plane
*plane
,
458 const struct intel_crtc_state
*crtc_state
,
459 const struct intel_plane_state
*plane_state
)
461 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
462 enum pipe pipe
= plane
->pipe
;
463 enum plane_id plane_id
= plane
->id
;
465 static const u16 input_csc_matrix
[][9] = {
467 * BT.601 full range YCbCr -> full range RGB
468 * The matrix required is :
469 * [1.000, 0.000, 1.371,
470 * 1.000, -0.336, -0.698,
471 * 1.000, 1.732, 0.0000]
473 [DRM_COLOR_YCBCR_BT601
] = {
475 0x8B28, 0x7800, 0x9AC0,
479 * BT.709 full range YCbCr -> full range RGB
480 * The matrix required is :
481 * [1.000, 0.000, 1.574,
482 * 1.000, -0.187, -0.468,
483 * 1.000, 1.855, 0.0000]
485 [DRM_COLOR_YCBCR_BT709
] = {
487 0x9EF8, 0x7800, 0xAC00,
491 * BT.2020 full range YCbCr -> full range RGB
492 * The matrix required is :
493 * [1.000, 0.000, 1.474,
494 * 1.000, -0.1645, -0.5713,
495 * 1.000, 1.8814, 0.0000]
497 [DRM_COLOR_YCBCR_BT2020
] = {
499 0x8928, 0x7800, 0xAA88,
504 /* Matrix for Limited Range to Full Range Conversion */
505 static const u16 input_csc_matrix_lr
[][9] = {
507 * BT.601 Limted range YCbCr -> full range RGB
508 * The matrix required is :
509 * [1.164384, 0.000, 1.596027,
510 * 1.164384, -0.39175, -0.812813,
511 * 1.164384, 2.017232, 0.0000]
513 [DRM_COLOR_YCBCR_BT601
] = {
515 0x8D00, 0x7950, 0x9C88,
519 * BT.709 Limited range YCbCr -> full range RGB
520 * The matrix required is :
521 * [1.164384, 0.000, 1.792741,
522 * 1.164384, -0.213249, -0.532909,
523 * 1.164384, 2.112402, 0.0000]
525 [DRM_COLOR_YCBCR_BT709
] = {
527 0x8888, 0x7950, 0xADA8,
531 * BT.2020 Limited range YCbCr -> full range RGB
532 * The matrix required is :
533 * [1.164, 0.000, 1.678,
534 * 1.164, -0.1873, -0.6504,
535 * 1.164, 2.1417, 0.0000]
537 [DRM_COLOR_YCBCR_BT2020
] = {
539 0x8A68, 0x7950, 0xAC00,
545 if (plane_state
->hw
.color_range
== DRM_COLOR_YCBCR_FULL_RANGE
)
546 csc
= input_csc_matrix
[plane_state
->hw
.color_encoding
];
548 csc
= input_csc_matrix_lr
[plane_state
->hw
.color_encoding
];
550 I915_WRITE_FW(PLANE_INPUT_CSC_COEFF(pipe
, plane_id
, 0), ROFF(csc
[0]) |
552 I915_WRITE_FW(PLANE_INPUT_CSC_COEFF(pipe
, plane_id
, 1), BOFF(csc
[2]));
553 I915_WRITE_FW(PLANE_INPUT_CSC_COEFF(pipe
, plane_id
, 2), ROFF(csc
[3]) |
555 I915_WRITE_FW(PLANE_INPUT_CSC_COEFF(pipe
, plane_id
, 3), BOFF(csc
[5]));
556 I915_WRITE_FW(PLANE_INPUT_CSC_COEFF(pipe
, plane_id
, 4), ROFF(csc
[6]) |
558 I915_WRITE_FW(PLANE_INPUT_CSC_COEFF(pipe
, plane_id
, 5), BOFF(csc
[8]));
560 I915_WRITE_FW(PLANE_INPUT_CSC_PREOFF(pipe
, plane_id
, 0),
561 PREOFF_YUV_TO_RGB_HI
);
562 if (plane_state
->hw
.color_range
== DRM_COLOR_YCBCR_FULL_RANGE
)
563 I915_WRITE_FW(PLANE_INPUT_CSC_PREOFF(pipe
, plane_id
, 1), 0);
565 I915_WRITE_FW(PLANE_INPUT_CSC_PREOFF(pipe
, plane_id
, 1),
566 PREOFF_YUV_TO_RGB_ME
);
567 I915_WRITE_FW(PLANE_INPUT_CSC_PREOFF(pipe
, plane_id
, 2),
568 PREOFF_YUV_TO_RGB_LO
);
569 I915_WRITE_FW(PLANE_INPUT_CSC_POSTOFF(pipe
, plane_id
, 0), 0x0);
570 I915_WRITE_FW(PLANE_INPUT_CSC_POSTOFF(pipe
, plane_id
, 1), 0x0);
571 I915_WRITE_FW(PLANE_INPUT_CSC_POSTOFF(pipe
, plane_id
, 2), 0x0);
575 skl_program_plane(struct intel_plane
*plane
,
576 const struct intel_crtc_state
*crtc_state
,
577 const struct intel_plane_state
*plane_state
,
580 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
581 enum plane_id plane_id
= plane
->id
;
582 enum pipe pipe
= plane
->pipe
;
583 const struct drm_intel_sprite_colorkey
*key
= &plane_state
->ckey
;
584 u32 surf_addr
= plane_state
->color_plane
[color_plane
].offset
;
585 u32 stride
= skl_plane_stride(plane_state
, color_plane
);
586 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
587 int aux_plane
= intel_main_to_aux_plane(fb
, color_plane
);
588 u32 aux_dist
= plane_state
->color_plane
[aux_plane
].offset
- surf_addr
;
589 u32 aux_stride
= skl_plane_stride(plane_state
, aux_plane
);
590 int crtc_x
= plane_state
->uapi
.dst
.x1
;
591 int crtc_y
= plane_state
->uapi
.dst
.y1
;
592 u32 x
= plane_state
->color_plane
[color_plane
].x
;
593 u32 y
= plane_state
->color_plane
[color_plane
].y
;
594 u32 src_w
= drm_rect_width(&plane_state
->uapi
.src
) >> 16;
595 u32 src_h
= drm_rect_height(&plane_state
->uapi
.src
) >> 16;
596 u8 alpha
= plane_state
->hw
.alpha
>> 8;
597 u32 plane_color_ctl
= 0;
598 unsigned long irqflags
;
600 u32 plane_ctl
= plane_state
->ctl
;
602 plane_ctl
|= skl_plane_ctl_crtc(crtc_state
);
604 if (INTEL_GEN(dev_priv
) >= 10 || IS_GEMINILAKE(dev_priv
))
605 plane_color_ctl
= plane_state
->color_ctl
|
606 glk_plane_color_ctl_crtc(crtc_state
);
608 /* Sizes are 0 based */
612 keymax
= (key
->max_value
& 0xffffff) | PLANE_KEYMAX_ALPHA(alpha
);
614 keymsk
= key
->channel_mask
& 0x7ffffff;
616 keymsk
|= PLANE_KEYMSK_ALPHA_ENABLE
;
618 /* The scaler will handle the output position */
619 if (plane_state
->scaler_id
>= 0) {
624 spin_lock_irqsave(&dev_priv
->uncore
.lock
, irqflags
);
626 I915_WRITE_FW(PLANE_STRIDE(pipe
, plane_id
), stride
);
627 I915_WRITE_FW(PLANE_POS(pipe
, plane_id
), (crtc_y
<< 16) | crtc_x
);
628 I915_WRITE_FW(PLANE_SIZE(pipe
, plane_id
), (src_h
<< 16) | src_w
);
630 if (INTEL_GEN(dev_priv
) < 12)
631 aux_dist
|= aux_stride
;
632 I915_WRITE_FW(PLANE_AUX_DIST(pipe
, plane_id
), aux_dist
);
634 if (icl_is_hdr_plane(dev_priv
, plane_id
))
635 I915_WRITE_FW(PLANE_CUS_CTL(pipe
, plane_id
), plane_state
->cus_ctl
);
637 if (INTEL_GEN(dev_priv
) >= 10 || IS_GEMINILAKE(dev_priv
))
638 I915_WRITE_FW(PLANE_COLOR_CTL(pipe
, plane_id
), plane_color_ctl
);
640 if (fb
->format
->is_yuv
&& icl_is_hdr_plane(dev_priv
, plane_id
))
641 icl_program_input_csc(plane
, crtc_state
, plane_state
);
643 skl_write_plane_wm(plane
, crtc_state
);
645 I915_WRITE_FW(PLANE_KEYVAL(pipe
, plane_id
), key
->min_value
);
646 I915_WRITE_FW(PLANE_KEYMSK(pipe
, plane_id
), keymsk
);
647 I915_WRITE_FW(PLANE_KEYMAX(pipe
, plane_id
), keymax
);
649 I915_WRITE_FW(PLANE_OFFSET(pipe
, plane_id
), (y
<< 16) | x
);
651 if (INTEL_GEN(dev_priv
) < 11)
652 I915_WRITE_FW(PLANE_AUX_OFFSET(pipe
, plane_id
),
653 (plane_state
->color_plane
[1].y
<< 16) |
654 plane_state
->color_plane
[1].x
);
657 * The control register self-arms if the plane was previously
658 * disabled. Try to make the plane enable atomic by writing
659 * the control register just before the surface register.
661 I915_WRITE_FW(PLANE_CTL(pipe
, plane_id
), plane_ctl
);
662 I915_WRITE_FW(PLANE_SURF(pipe
, plane_id
),
663 intel_plane_ggtt_offset(plane_state
) + surf_addr
);
665 if (plane_state
->scaler_id
>= 0)
666 skl_program_scaler(plane
, crtc_state
, plane_state
);
668 spin_unlock_irqrestore(&dev_priv
->uncore
.lock
, irqflags
);
672 skl_update_plane(struct intel_plane
*plane
,
673 const struct intel_crtc_state
*crtc_state
,
674 const struct intel_plane_state
*plane_state
)
678 if (plane_state
->planar_linked_plane
&& !plane_state
->planar_slave
)
679 /* Program the UV plane on planar master */
682 skl_program_plane(plane
, crtc_state
, plane_state
, color_plane
);
685 skl_disable_plane(struct intel_plane
*plane
,
686 const struct intel_crtc_state
*crtc_state
)
688 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
689 enum plane_id plane_id
= plane
->id
;
690 enum pipe pipe
= plane
->pipe
;
691 unsigned long irqflags
;
693 spin_lock_irqsave(&dev_priv
->uncore
.lock
, irqflags
);
695 if (icl_is_hdr_plane(dev_priv
, plane_id
))
696 I915_WRITE_FW(PLANE_CUS_CTL(pipe
, plane_id
), 0);
698 skl_write_plane_wm(plane
, crtc_state
);
700 I915_WRITE_FW(PLANE_CTL(pipe
, plane_id
), 0);
701 I915_WRITE_FW(PLANE_SURF(pipe
, plane_id
), 0);
703 spin_unlock_irqrestore(&dev_priv
->uncore
.lock
, irqflags
);
707 skl_plane_get_hw_state(struct intel_plane
*plane
,
710 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
711 enum intel_display_power_domain power_domain
;
712 enum plane_id plane_id
= plane
->id
;
713 intel_wakeref_t wakeref
;
716 power_domain
= POWER_DOMAIN_PIPE(plane
->pipe
);
717 wakeref
= intel_display_power_get_if_enabled(dev_priv
, power_domain
);
721 ret
= I915_READ(PLANE_CTL(plane
->pipe
, plane_id
)) & PLANE_CTL_ENABLE
;
725 intel_display_power_put(dev_priv
, power_domain
, wakeref
);
730 static void i9xx_plane_linear_gamma(u16 gamma
[8])
732 /* The points are not evenly spaced. */
733 static const u8 in
[8] = { 0, 1, 2, 4, 8, 16, 24, 32 };
736 for (i
= 0; i
< 8; i
++)
737 gamma
[i
] = (in
[i
] << 8) / 32;
741 chv_update_csc(const struct intel_plane_state
*plane_state
)
743 struct intel_plane
*plane
= to_intel_plane(plane_state
->uapi
.plane
);
744 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
745 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
746 enum plane_id plane_id
= plane
->id
;
748 * |r| | c0 c1 c2 | |cr|
749 * |g| = | c3 c4 c5 | x |y |
750 * |b| | c6 c7 c8 | |cb|
752 * Coefficients are s3.12.
754 * Cb and Cr apparently come in as signed already, and
755 * we always get full range data in on account of CLRC0/1.
757 static const s16 csc_matrix
[][9] = {
758 /* BT.601 full range YCbCr -> full range RGB */
759 [DRM_COLOR_YCBCR_BT601
] = {
764 /* BT.709 full range YCbCr -> full range RGB */
765 [DRM_COLOR_YCBCR_BT709
] = {
771 const s16
*csc
= csc_matrix
[plane_state
->hw
.color_encoding
];
773 /* Seems RGB data bypasses the CSC always */
774 if (!fb
->format
->is_yuv
)
777 I915_WRITE_FW(SPCSCYGOFF(plane_id
), SPCSC_OOFF(0) | SPCSC_IOFF(0));
778 I915_WRITE_FW(SPCSCCBOFF(plane_id
), SPCSC_OOFF(0) | SPCSC_IOFF(0));
779 I915_WRITE_FW(SPCSCCROFF(plane_id
), SPCSC_OOFF(0) | SPCSC_IOFF(0));
781 I915_WRITE_FW(SPCSCC01(plane_id
), SPCSC_C1(csc
[1]) | SPCSC_C0(csc
[0]));
782 I915_WRITE_FW(SPCSCC23(plane_id
), SPCSC_C1(csc
[3]) | SPCSC_C0(csc
[2]));
783 I915_WRITE_FW(SPCSCC45(plane_id
), SPCSC_C1(csc
[5]) | SPCSC_C0(csc
[4]));
784 I915_WRITE_FW(SPCSCC67(plane_id
), SPCSC_C1(csc
[7]) | SPCSC_C0(csc
[6]));
785 I915_WRITE_FW(SPCSCC8(plane_id
), SPCSC_C0(csc
[8]));
787 I915_WRITE_FW(SPCSCYGICLAMP(plane_id
), SPCSC_IMAX(1023) | SPCSC_IMIN(0));
788 I915_WRITE_FW(SPCSCCBICLAMP(plane_id
), SPCSC_IMAX(512) | SPCSC_IMIN(-512));
789 I915_WRITE_FW(SPCSCCRICLAMP(plane_id
), SPCSC_IMAX(512) | SPCSC_IMIN(-512));
791 I915_WRITE_FW(SPCSCYGOCLAMP(plane_id
), SPCSC_OMAX(1023) | SPCSC_OMIN(0));
792 I915_WRITE_FW(SPCSCCBOCLAMP(plane_id
), SPCSC_OMAX(1023) | SPCSC_OMIN(0));
793 I915_WRITE_FW(SPCSCCROCLAMP(plane_id
), SPCSC_OMAX(1023) | SPCSC_OMIN(0));
800 vlv_update_clrc(const struct intel_plane_state
*plane_state
)
802 struct intel_plane
*plane
= to_intel_plane(plane_state
->uapi
.plane
);
803 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
804 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
805 enum pipe pipe
= plane
->pipe
;
806 enum plane_id plane_id
= plane
->id
;
807 int contrast
, brightness
, sh_scale
, sh_sin
, sh_cos
;
809 if (fb
->format
->is_yuv
&&
810 plane_state
->hw
.color_range
== DRM_COLOR_YCBCR_LIMITED_RANGE
) {
812 * Expand limited range to full range:
813 * Contrast is applied first and is used to expand Y range.
814 * Brightness is applied second and is used to remove the
815 * offset from Y. Saturation/hue is used to expand CbCr range.
817 contrast
= DIV_ROUND_CLOSEST(255 << 6, 235 - 16);
818 brightness
= -DIV_ROUND_CLOSEST(16 * 255, 235 - 16);
819 sh_scale
= DIV_ROUND_CLOSEST(128 << 7, 240 - 128);
820 sh_sin
= SIN_0
* sh_scale
;
821 sh_cos
= COS_0
* sh_scale
;
823 /* Pass-through everything. */
827 sh_sin
= SIN_0
* sh_scale
;
828 sh_cos
= COS_0
* sh_scale
;
831 /* FIXME these register are single buffered :( */
832 I915_WRITE_FW(SPCLRC0(pipe
, plane_id
),
833 SP_CONTRAST(contrast
) | SP_BRIGHTNESS(brightness
));
834 I915_WRITE_FW(SPCLRC1(pipe
, plane_id
),
835 SP_SH_SIN(sh_sin
) | SP_SH_COS(sh_cos
));
839 vlv_plane_ratio(const struct intel_crtc_state
*crtc_state
,
840 const struct intel_plane_state
*plane_state
,
841 unsigned int *num
, unsigned int *den
)
843 u8 active_planes
= crtc_state
->active_planes
& ~BIT(PLANE_CURSOR
);
844 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
845 unsigned int cpp
= fb
->format
->cpp
[0];
848 * VLV bspec only considers cases where all three planes are
849 * enabled, and cases where the primary and one sprite is enabled.
850 * Let's assume the case with just two sprites enabled also
851 * maps to the latter case.
853 if (hweight8(active_planes
) == 3) {
868 } else if (hweight8(active_planes
) == 2) {
897 int vlv_plane_min_cdclk(const struct intel_crtc_state
*crtc_state
,
898 const struct intel_plane_state
*plane_state
)
900 unsigned int pixel_rate
;
901 unsigned int num
, den
;
904 * Note that crtc_state->pixel_rate accounts for both
905 * horizontal and vertical panel fitter downscaling factors.
906 * Pre-HSW bspec tells us to only consider the horizontal
907 * downscaling factor here. We ignore that and just consider
908 * both for simplicity.
910 pixel_rate
= crtc_state
->pixel_rate
;
912 vlv_plane_ratio(crtc_state
, plane_state
, &num
, &den
);
914 return DIV_ROUND_UP(pixel_rate
* num
, den
);
917 static u32
vlv_sprite_ctl_crtc(const struct intel_crtc_state
*crtc_state
)
921 if (crtc_state
->gamma_enable
)
922 sprctl
|= SP_GAMMA_ENABLE
;
927 static u32
vlv_sprite_ctl(const struct intel_crtc_state
*crtc_state
,
928 const struct intel_plane_state
*plane_state
)
930 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
931 unsigned int rotation
= plane_state
->hw
.rotation
;
932 const struct drm_intel_sprite_colorkey
*key
= &plane_state
->ckey
;
937 switch (fb
->format
->format
) {
938 case DRM_FORMAT_YUYV
:
939 sprctl
|= SP_FORMAT_YUV422
| SP_YUV_ORDER_YUYV
;
941 case DRM_FORMAT_YVYU
:
942 sprctl
|= SP_FORMAT_YUV422
| SP_YUV_ORDER_YVYU
;
944 case DRM_FORMAT_UYVY
:
945 sprctl
|= SP_FORMAT_YUV422
| SP_YUV_ORDER_UYVY
;
947 case DRM_FORMAT_VYUY
:
948 sprctl
|= SP_FORMAT_YUV422
| SP_YUV_ORDER_VYUY
;
951 sprctl
|= SP_FORMAT_8BPP
;
953 case DRM_FORMAT_RGB565
:
954 sprctl
|= SP_FORMAT_BGR565
;
956 case DRM_FORMAT_XRGB8888
:
957 sprctl
|= SP_FORMAT_BGRX8888
;
959 case DRM_FORMAT_ARGB8888
:
960 sprctl
|= SP_FORMAT_BGRA8888
;
962 case DRM_FORMAT_XBGR2101010
:
963 sprctl
|= SP_FORMAT_RGBX1010102
;
965 case DRM_FORMAT_ABGR2101010
:
966 sprctl
|= SP_FORMAT_RGBA1010102
;
968 case DRM_FORMAT_XRGB2101010
:
969 sprctl
|= SP_FORMAT_BGRX1010102
;
971 case DRM_FORMAT_ARGB2101010
:
972 sprctl
|= SP_FORMAT_BGRA1010102
;
974 case DRM_FORMAT_XBGR8888
:
975 sprctl
|= SP_FORMAT_RGBX8888
;
977 case DRM_FORMAT_ABGR8888
:
978 sprctl
|= SP_FORMAT_RGBA8888
;
981 MISSING_CASE(fb
->format
->format
);
985 if (plane_state
->hw
.color_encoding
== DRM_COLOR_YCBCR_BT709
)
986 sprctl
|= SP_YUV_FORMAT_BT709
;
988 if (fb
->modifier
== I915_FORMAT_MOD_X_TILED
)
991 if (rotation
& DRM_MODE_ROTATE_180
)
992 sprctl
|= SP_ROTATE_180
;
994 if (rotation
& DRM_MODE_REFLECT_X
)
997 if (key
->flags
& I915_SET_COLORKEY_SOURCE
)
998 sprctl
|= SP_SOURCE_KEY
;
1003 static void vlv_update_gamma(const struct intel_plane_state
*plane_state
)
1005 struct intel_plane
*plane
= to_intel_plane(plane_state
->uapi
.plane
);
1006 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
1007 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
1008 enum pipe pipe
= plane
->pipe
;
1009 enum plane_id plane_id
= plane
->id
;
1013 /* Seems RGB data bypasses the gamma always */
1014 if (!fb
->format
->is_yuv
)
1017 i9xx_plane_linear_gamma(gamma
);
1019 /* FIXME these register are single buffered :( */
1020 /* The two end points are implicit (0.0 and 1.0) */
1021 for (i
= 1; i
< 8 - 1; i
++)
1022 I915_WRITE_FW(SPGAMC(pipe
, plane_id
, i
- 1),
1029 vlv_update_plane(struct intel_plane
*plane
,
1030 const struct intel_crtc_state
*crtc_state
,
1031 const struct intel_plane_state
*plane_state
)
1033 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
1034 enum pipe pipe
= plane
->pipe
;
1035 enum plane_id plane_id
= plane
->id
;
1036 u32 sprsurf_offset
= plane_state
->color_plane
[0].offset
;
1038 const struct drm_intel_sprite_colorkey
*key
= &plane_state
->ckey
;
1039 int crtc_x
= plane_state
->uapi
.dst
.x1
;
1040 int crtc_y
= plane_state
->uapi
.dst
.y1
;
1041 u32 crtc_w
= drm_rect_width(&plane_state
->uapi
.dst
);
1042 u32 crtc_h
= drm_rect_height(&plane_state
->uapi
.dst
);
1043 u32 x
= plane_state
->color_plane
[0].x
;
1044 u32 y
= plane_state
->color_plane
[0].y
;
1045 unsigned long irqflags
;
1048 sprctl
= plane_state
->ctl
| vlv_sprite_ctl_crtc(crtc_state
);
1050 /* Sizes are 0 based */
1054 linear_offset
= intel_fb_xy_to_linear(x
, y
, plane_state
, 0);
1056 spin_lock_irqsave(&dev_priv
->uncore
.lock
, irqflags
);
1058 I915_WRITE_FW(SPSTRIDE(pipe
, plane_id
),
1059 plane_state
->color_plane
[0].stride
);
1060 I915_WRITE_FW(SPPOS(pipe
, plane_id
), (crtc_y
<< 16) | crtc_x
);
1061 I915_WRITE_FW(SPSIZE(pipe
, plane_id
), (crtc_h
<< 16) | crtc_w
);
1062 I915_WRITE_FW(SPCONSTALPHA(pipe
, plane_id
), 0);
1064 if (IS_CHERRYVIEW(dev_priv
) && pipe
== PIPE_B
)
1065 chv_update_csc(plane_state
);
1068 I915_WRITE_FW(SPKEYMINVAL(pipe
, plane_id
), key
->min_value
);
1069 I915_WRITE_FW(SPKEYMSK(pipe
, plane_id
), key
->channel_mask
);
1070 I915_WRITE_FW(SPKEYMAXVAL(pipe
, plane_id
), key
->max_value
);
1073 I915_WRITE_FW(SPLINOFF(pipe
, plane_id
), linear_offset
);
1074 I915_WRITE_FW(SPTILEOFF(pipe
, plane_id
), (y
<< 16) | x
);
1077 * The control register self-arms if the plane was previously
1078 * disabled. Try to make the plane enable atomic by writing
1079 * the control register just before the surface register.
1081 I915_WRITE_FW(SPCNTR(pipe
, plane_id
), sprctl
);
1082 I915_WRITE_FW(SPSURF(pipe
, plane_id
),
1083 intel_plane_ggtt_offset(plane_state
) + sprsurf_offset
);
1085 vlv_update_clrc(plane_state
);
1086 vlv_update_gamma(plane_state
);
1088 spin_unlock_irqrestore(&dev_priv
->uncore
.lock
, irqflags
);
1092 vlv_disable_plane(struct intel_plane
*plane
,
1093 const struct intel_crtc_state
*crtc_state
)
1095 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
1096 enum pipe pipe
= plane
->pipe
;
1097 enum plane_id plane_id
= plane
->id
;
1098 unsigned long irqflags
;
1100 spin_lock_irqsave(&dev_priv
->uncore
.lock
, irqflags
);
1102 I915_WRITE_FW(SPCNTR(pipe
, plane_id
), 0);
1103 I915_WRITE_FW(SPSURF(pipe
, plane_id
), 0);
1105 spin_unlock_irqrestore(&dev_priv
->uncore
.lock
, irqflags
);
1109 vlv_plane_get_hw_state(struct intel_plane
*plane
,
1112 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
1113 enum intel_display_power_domain power_domain
;
1114 enum plane_id plane_id
= plane
->id
;
1115 intel_wakeref_t wakeref
;
1118 power_domain
= POWER_DOMAIN_PIPE(plane
->pipe
);
1119 wakeref
= intel_display_power_get_if_enabled(dev_priv
, power_domain
);
1123 ret
= I915_READ(SPCNTR(plane
->pipe
, plane_id
)) & SP_ENABLE
;
1125 *pipe
= plane
->pipe
;
1127 intel_display_power_put(dev_priv
, power_domain
, wakeref
);
1132 static void ivb_plane_ratio(const struct intel_crtc_state
*crtc_state
,
1133 const struct intel_plane_state
*plane_state
,
1134 unsigned int *num
, unsigned int *den
)
1136 u8 active_planes
= crtc_state
->active_planes
& ~BIT(PLANE_CURSOR
);
1137 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
1138 unsigned int cpp
= fb
->format
->cpp
[0];
1140 if (hweight8(active_planes
) == 2) {
1169 static void ivb_plane_ratio_scaling(const struct intel_crtc_state
*crtc_state
,
1170 const struct intel_plane_state
*plane_state
,
1171 unsigned int *num
, unsigned int *den
)
1173 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
1174 unsigned int cpp
= fb
->format
->cpp
[0];
1196 int ivb_plane_min_cdclk(const struct intel_crtc_state
*crtc_state
,
1197 const struct intel_plane_state
*plane_state
)
1199 unsigned int pixel_rate
;
1200 unsigned int num
, den
;
1203 * Note that crtc_state->pixel_rate accounts for both
1204 * horizontal and vertical panel fitter downscaling factors.
1205 * Pre-HSW bspec tells us to only consider the horizontal
1206 * downscaling factor here. We ignore that and just consider
1207 * both for simplicity.
1209 pixel_rate
= crtc_state
->pixel_rate
;
1211 ivb_plane_ratio(crtc_state
, plane_state
, &num
, &den
);
1213 return DIV_ROUND_UP(pixel_rate
* num
, den
);
1216 static int ivb_sprite_min_cdclk(const struct intel_crtc_state
*crtc_state
,
1217 const struct intel_plane_state
*plane_state
)
1219 unsigned int src_w
, dst_w
, pixel_rate
;
1220 unsigned int num
, den
;
1223 * Note that crtc_state->pixel_rate accounts for both
1224 * horizontal and vertical panel fitter downscaling factors.
1225 * Pre-HSW bspec tells us to only consider the horizontal
1226 * downscaling factor here. We ignore that and just consider
1227 * both for simplicity.
1229 pixel_rate
= crtc_state
->pixel_rate
;
1231 src_w
= drm_rect_width(&plane_state
->uapi
.src
) >> 16;
1232 dst_w
= drm_rect_width(&plane_state
->uapi
.dst
);
1235 ivb_plane_ratio_scaling(crtc_state
, plane_state
, &num
, &den
);
1237 ivb_plane_ratio(crtc_state
, plane_state
, &num
, &den
);
1239 /* Horizontal downscaling limits the maximum pixel rate */
1240 dst_w
= min(src_w
, dst_w
);
1242 return DIV_ROUND_UP_ULL(mul_u32_u32(pixel_rate
, num
* src_w
),
1246 static void hsw_plane_ratio(const struct intel_crtc_state
*crtc_state
,
1247 const struct intel_plane_state
*plane_state
,
1248 unsigned int *num
, unsigned int *den
)
1250 u8 active_planes
= crtc_state
->active_planes
& ~BIT(PLANE_CURSOR
);
1251 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
1252 unsigned int cpp
= fb
->format
->cpp
[0];
1254 if (hweight8(active_planes
) == 2) {
1279 int hsw_plane_min_cdclk(const struct intel_crtc_state
*crtc_state
,
1280 const struct intel_plane_state
*plane_state
)
1282 unsigned int pixel_rate
= crtc_state
->pixel_rate
;
1283 unsigned int num
, den
;
1285 hsw_plane_ratio(crtc_state
, plane_state
, &num
, &den
);
1287 return DIV_ROUND_UP(pixel_rate
* num
, den
);
1290 static u32
ivb_sprite_ctl_crtc(const struct intel_crtc_state
*crtc_state
)
1294 if (crtc_state
->gamma_enable
)
1295 sprctl
|= SPRITE_GAMMA_ENABLE
;
1297 if (crtc_state
->csc_enable
)
1298 sprctl
|= SPRITE_PIPE_CSC_ENABLE
;
1303 static bool ivb_need_sprite_gamma(const struct intel_plane_state
*plane_state
)
1305 struct drm_i915_private
*dev_priv
=
1306 to_i915(plane_state
->uapi
.plane
->dev
);
1307 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
1309 return fb
->format
->cpp
[0] == 8 &&
1310 (IS_IVYBRIDGE(dev_priv
) || IS_HASWELL(dev_priv
));
1313 static u32
ivb_sprite_ctl(const struct intel_crtc_state
*crtc_state
,
1314 const struct intel_plane_state
*plane_state
)
1316 struct drm_i915_private
*dev_priv
=
1317 to_i915(plane_state
->uapi
.plane
->dev
);
1318 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
1319 unsigned int rotation
= plane_state
->hw
.rotation
;
1320 const struct drm_intel_sprite_colorkey
*key
= &plane_state
->ckey
;
1323 sprctl
= SPRITE_ENABLE
;
1325 if (IS_IVYBRIDGE(dev_priv
))
1326 sprctl
|= SPRITE_TRICKLE_FEED_DISABLE
;
1328 switch (fb
->format
->format
) {
1329 case DRM_FORMAT_XBGR8888
:
1330 sprctl
|= SPRITE_FORMAT_RGBX888
| SPRITE_RGB_ORDER_RGBX
;
1332 case DRM_FORMAT_XRGB8888
:
1333 sprctl
|= SPRITE_FORMAT_RGBX888
;
1335 case DRM_FORMAT_XBGR2101010
:
1336 sprctl
|= SPRITE_FORMAT_RGBX101010
| SPRITE_RGB_ORDER_RGBX
;
1338 case DRM_FORMAT_XRGB2101010
:
1339 sprctl
|= SPRITE_FORMAT_RGBX101010
;
1341 case DRM_FORMAT_XBGR16161616F
:
1342 sprctl
|= SPRITE_FORMAT_RGBX161616
| SPRITE_RGB_ORDER_RGBX
;
1344 case DRM_FORMAT_XRGB16161616F
:
1345 sprctl
|= SPRITE_FORMAT_RGBX161616
;
1347 case DRM_FORMAT_YUYV
:
1348 sprctl
|= SPRITE_FORMAT_YUV422
| SPRITE_YUV_ORDER_YUYV
;
1350 case DRM_FORMAT_YVYU
:
1351 sprctl
|= SPRITE_FORMAT_YUV422
| SPRITE_YUV_ORDER_YVYU
;
1353 case DRM_FORMAT_UYVY
:
1354 sprctl
|= SPRITE_FORMAT_YUV422
| SPRITE_YUV_ORDER_UYVY
;
1356 case DRM_FORMAT_VYUY
:
1357 sprctl
|= SPRITE_FORMAT_YUV422
| SPRITE_YUV_ORDER_VYUY
;
1360 MISSING_CASE(fb
->format
->format
);
1364 if (!ivb_need_sprite_gamma(plane_state
))
1365 sprctl
|= SPRITE_INT_GAMMA_DISABLE
;
1367 if (plane_state
->hw
.color_encoding
== DRM_COLOR_YCBCR_BT709
)
1368 sprctl
|= SPRITE_YUV_TO_RGB_CSC_FORMAT_BT709
;
1370 if (plane_state
->hw
.color_range
== DRM_COLOR_YCBCR_FULL_RANGE
)
1371 sprctl
|= SPRITE_YUV_RANGE_CORRECTION_DISABLE
;
1373 if (fb
->modifier
== I915_FORMAT_MOD_X_TILED
)
1374 sprctl
|= SPRITE_TILED
;
1376 if (rotation
& DRM_MODE_ROTATE_180
)
1377 sprctl
|= SPRITE_ROTATE_180
;
1379 if (key
->flags
& I915_SET_COLORKEY_DESTINATION
)
1380 sprctl
|= SPRITE_DEST_KEY
;
1381 else if (key
->flags
& I915_SET_COLORKEY_SOURCE
)
1382 sprctl
|= SPRITE_SOURCE_KEY
;
1387 static void ivb_sprite_linear_gamma(const struct intel_plane_state
*plane_state
,
1393 * WaFP16GammaEnabling:ivb,hsw
1394 * "Workaround : When using the 64-bit format, the sprite output
1395 * on each color channel has one quarter amplitude. It can be
1396 * brought up to full amplitude by using sprite internal gamma
1397 * correction, pipe gamma correction, or pipe color space
1398 * conversion to multiply the sprite output by four."
1402 for (i
= 0; i
< 16; i
++)
1403 gamma
[i
] = min((scale
* i
<< 10) / 16, (1 << 10) - 1);
1405 gamma
[i
] = min((scale
* i
<< 10) / 16, 1 << 10);
1412 static void ivb_update_gamma(const struct intel_plane_state
*plane_state
)
1414 struct intel_plane
*plane
= to_intel_plane(plane_state
->uapi
.plane
);
1415 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
1416 enum pipe pipe
= plane
->pipe
;
1420 if (!ivb_need_sprite_gamma(plane_state
))
1423 ivb_sprite_linear_gamma(plane_state
, gamma
);
1425 /* FIXME these register are single buffered :( */
1426 for (i
= 0; i
< 16; i
++)
1427 I915_WRITE_FW(SPRGAMC(pipe
, i
),
1432 I915_WRITE_FW(SPRGAMC16(pipe
, 0), gamma
[i
]);
1433 I915_WRITE_FW(SPRGAMC16(pipe
, 1), gamma
[i
]);
1434 I915_WRITE_FW(SPRGAMC16(pipe
, 2), gamma
[i
]);
1437 I915_WRITE_FW(SPRGAMC17(pipe
, 0), gamma
[i
]);
1438 I915_WRITE_FW(SPRGAMC17(pipe
, 1), gamma
[i
]);
1439 I915_WRITE_FW(SPRGAMC17(pipe
, 2), gamma
[i
]);
1444 ivb_update_plane(struct intel_plane
*plane
,
1445 const struct intel_crtc_state
*crtc_state
,
1446 const struct intel_plane_state
*plane_state
)
1448 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
1449 enum pipe pipe
= plane
->pipe
;
1450 u32 sprsurf_offset
= plane_state
->color_plane
[0].offset
;
1452 const struct drm_intel_sprite_colorkey
*key
= &plane_state
->ckey
;
1453 int crtc_x
= plane_state
->uapi
.dst
.x1
;
1454 int crtc_y
= plane_state
->uapi
.dst
.y1
;
1455 u32 crtc_w
= drm_rect_width(&plane_state
->uapi
.dst
);
1456 u32 crtc_h
= drm_rect_height(&plane_state
->uapi
.dst
);
1457 u32 x
= plane_state
->color_plane
[0].x
;
1458 u32 y
= plane_state
->color_plane
[0].y
;
1459 u32 src_w
= drm_rect_width(&plane_state
->uapi
.src
) >> 16;
1460 u32 src_h
= drm_rect_height(&plane_state
->uapi
.src
) >> 16;
1461 u32 sprctl
, sprscale
= 0;
1462 unsigned long irqflags
;
1464 sprctl
= plane_state
->ctl
| ivb_sprite_ctl_crtc(crtc_state
);
1466 /* Sizes are 0 based */
1472 if (crtc_w
!= src_w
|| crtc_h
!= src_h
)
1473 sprscale
= SPRITE_SCALE_ENABLE
| (src_w
<< 16) | src_h
;
1475 linear_offset
= intel_fb_xy_to_linear(x
, y
, plane_state
, 0);
1477 spin_lock_irqsave(&dev_priv
->uncore
.lock
, irqflags
);
1479 I915_WRITE_FW(SPRSTRIDE(pipe
), plane_state
->color_plane
[0].stride
);
1480 I915_WRITE_FW(SPRPOS(pipe
), (crtc_y
<< 16) | crtc_x
);
1481 I915_WRITE_FW(SPRSIZE(pipe
), (crtc_h
<< 16) | crtc_w
);
1482 if (IS_IVYBRIDGE(dev_priv
))
1483 I915_WRITE_FW(SPRSCALE(pipe
), sprscale
);
1486 I915_WRITE_FW(SPRKEYVAL(pipe
), key
->min_value
);
1487 I915_WRITE_FW(SPRKEYMSK(pipe
), key
->channel_mask
);
1488 I915_WRITE_FW(SPRKEYMAX(pipe
), key
->max_value
);
1491 /* HSW consolidates SPRTILEOFF and SPRLINOFF into a single SPROFFSET
1493 if (IS_HASWELL(dev_priv
) || IS_BROADWELL(dev_priv
)) {
1494 I915_WRITE_FW(SPROFFSET(pipe
), (y
<< 16) | x
);
1496 I915_WRITE_FW(SPRLINOFF(pipe
), linear_offset
);
1497 I915_WRITE_FW(SPRTILEOFF(pipe
), (y
<< 16) | x
);
1501 * The control register self-arms if the plane was previously
1502 * disabled. Try to make the plane enable atomic by writing
1503 * the control register just before the surface register.
1505 I915_WRITE_FW(SPRCTL(pipe
), sprctl
);
1506 I915_WRITE_FW(SPRSURF(pipe
),
1507 intel_plane_ggtt_offset(plane_state
) + sprsurf_offset
);
1509 ivb_update_gamma(plane_state
);
1511 spin_unlock_irqrestore(&dev_priv
->uncore
.lock
, irqflags
);
1515 ivb_disable_plane(struct intel_plane
*plane
,
1516 const struct intel_crtc_state
*crtc_state
)
1518 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
1519 enum pipe pipe
= plane
->pipe
;
1520 unsigned long irqflags
;
1522 spin_lock_irqsave(&dev_priv
->uncore
.lock
, irqflags
);
1524 I915_WRITE_FW(SPRCTL(pipe
), 0);
1525 /* Disable the scaler */
1526 if (IS_IVYBRIDGE(dev_priv
))
1527 I915_WRITE_FW(SPRSCALE(pipe
), 0);
1528 I915_WRITE_FW(SPRSURF(pipe
), 0);
1530 spin_unlock_irqrestore(&dev_priv
->uncore
.lock
, irqflags
);
1534 ivb_plane_get_hw_state(struct intel_plane
*plane
,
1537 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
1538 enum intel_display_power_domain power_domain
;
1539 intel_wakeref_t wakeref
;
1542 power_domain
= POWER_DOMAIN_PIPE(plane
->pipe
);
1543 wakeref
= intel_display_power_get_if_enabled(dev_priv
, power_domain
);
1547 ret
= I915_READ(SPRCTL(plane
->pipe
)) & SPRITE_ENABLE
;
1549 *pipe
= plane
->pipe
;
1551 intel_display_power_put(dev_priv
, power_domain
, wakeref
);
1556 static int g4x_sprite_min_cdclk(const struct intel_crtc_state
*crtc_state
,
1557 const struct intel_plane_state
*plane_state
)
1559 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
1560 unsigned int hscale
, pixel_rate
;
1561 unsigned int limit
, decimate
;
1564 * Note that crtc_state->pixel_rate accounts for both
1565 * horizontal and vertical panel fitter downscaling factors.
1566 * Pre-HSW bspec tells us to only consider the horizontal
1567 * downscaling factor here. We ignore that and just consider
1568 * both for simplicity.
1570 pixel_rate
= crtc_state
->pixel_rate
;
1572 /* Horizontal downscaling limits the maximum pixel rate */
1573 hscale
= drm_rect_calc_hscale(&plane_state
->uapi
.src
,
1574 &plane_state
->uapi
.dst
,
1576 if (hscale
< 0x10000)
1579 /* Decimation steps at 2x,4x,8x,16x */
1580 decimate
= ilog2(hscale
>> 16);
1581 hscale
>>= decimate
;
1583 /* Starting limit is 90% of cdclk */
1586 /* -10% per decimation step */
1590 if (fb
->format
->cpp
[0] >= 4)
1591 limit
--; /* -10% for RGB */
1594 * We should also do -10% if sprite scaling is enabled
1595 * on the other pipe, but we can't really check for that,
1599 return DIV_ROUND_UP_ULL(mul_u32_u32(pixel_rate
, 10 * hscale
),
1604 g4x_sprite_max_stride(struct intel_plane
*plane
,
1605 u32 pixel_format
, u64 modifier
,
1606 unsigned int rotation
)
1611 static u32
g4x_sprite_ctl_crtc(const struct intel_crtc_state
*crtc_state
)
1615 if (crtc_state
->gamma_enable
)
1616 dvscntr
|= DVS_GAMMA_ENABLE
;
1618 if (crtc_state
->csc_enable
)
1619 dvscntr
|= DVS_PIPE_CSC_ENABLE
;
1624 static u32
g4x_sprite_ctl(const struct intel_crtc_state
*crtc_state
,
1625 const struct intel_plane_state
*plane_state
)
1627 struct drm_i915_private
*dev_priv
=
1628 to_i915(plane_state
->uapi
.plane
->dev
);
1629 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
1630 unsigned int rotation
= plane_state
->hw
.rotation
;
1631 const struct drm_intel_sprite_colorkey
*key
= &plane_state
->ckey
;
1634 dvscntr
= DVS_ENABLE
;
1636 if (IS_GEN(dev_priv
, 6))
1637 dvscntr
|= DVS_TRICKLE_FEED_DISABLE
;
1639 switch (fb
->format
->format
) {
1640 case DRM_FORMAT_XBGR8888
:
1641 dvscntr
|= DVS_FORMAT_RGBX888
| DVS_RGB_ORDER_XBGR
;
1643 case DRM_FORMAT_XRGB8888
:
1644 dvscntr
|= DVS_FORMAT_RGBX888
;
1646 case DRM_FORMAT_XBGR2101010
:
1647 dvscntr
|= DVS_FORMAT_RGBX101010
| DVS_RGB_ORDER_XBGR
;
1649 case DRM_FORMAT_XRGB2101010
:
1650 dvscntr
|= DVS_FORMAT_RGBX101010
;
1652 case DRM_FORMAT_XBGR16161616F
:
1653 dvscntr
|= DVS_FORMAT_RGBX161616
| DVS_RGB_ORDER_XBGR
;
1655 case DRM_FORMAT_XRGB16161616F
:
1656 dvscntr
|= DVS_FORMAT_RGBX161616
;
1658 case DRM_FORMAT_YUYV
:
1659 dvscntr
|= DVS_FORMAT_YUV422
| DVS_YUV_ORDER_YUYV
;
1661 case DRM_FORMAT_YVYU
:
1662 dvscntr
|= DVS_FORMAT_YUV422
| DVS_YUV_ORDER_YVYU
;
1664 case DRM_FORMAT_UYVY
:
1665 dvscntr
|= DVS_FORMAT_YUV422
| DVS_YUV_ORDER_UYVY
;
1667 case DRM_FORMAT_VYUY
:
1668 dvscntr
|= DVS_FORMAT_YUV422
| DVS_YUV_ORDER_VYUY
;
1671 MISSING_CASE(fb
->format
->format
);
1675 if (plane_state
->hw
.color_encoding
== DRM_COLOR_YCBCR_BT709
)
1676 dvscntr
|= DVS_YUV_FORMAT_BT709
;
1678 if (plane_state
->hw
.color_range
== DRM_COLOR_YCBCR_FULL_RANGE
)
1679 dvscntr
|= DVS_YUV_RANGE_CORRECTION_DISABLE
;
1681 if (fb
->modifier
== I915_FORMAT_MOD_X_TILED
)
1682 dvscntr
|= DVS_TILED
;
1684 if (rotation
& DRM_MODE_ROTATE_180
)
1685 dvscntr
|= DVS_ROTATE_180
;
1687 if (key
->flags
& I915_SET_COLORKEY_DESTINATION
)
1688 dvscntr
|= DVS_DEST_KEY
;
1689 else if (key
->flags
& I915_SET_COLORKEY_SOURCE
)
1690 dvscntr
|= DVS_SOURCE_KEY
;
1695 static void g4x_update_gamma(const struct intel_plane_state
*plane_state
)
1697 struct intel_plane
*plane
= to_intel_plane(plane_state
->uapi
.plane
);
1698 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
1699 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
1700 enum pipe pipe
= plane
->pipe
;
1704 /* Seems RGB data bypasses the gamma always */
1705 if (!fb
->format
->is_yuv
)
1708 i9xx_plane_linear_gamma(gamma
);
1710 /* FIXME these register are single buffered :( */
1711 /* The two end points are implicit (0.0 and 1.0) */
1712 for (i
= 1; i
< 8 - 1; i
++)
1713 I915_WRITE_FW(DVSGAMC_G4X(pipe
, i
- 1),
1719 static void ilk_sprite_linear_gamma(u16 gamma
[17])
1723 for (i
= 0; i
< 17; i
++)
1724 gamma
[i
] = (i
<< 10) / 16;
1727 static void ilk_update_gamma(const struct intel_plane_state
*plane_state
)
1729 struct intel_plane
*plane
= to_intel_plane(plane_state
->uapi
.plane
);
1730 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
1731 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
1732 enum pipe pipe
= plane
->pipe
;
1736 /* Seems RGB data bypasses the gamma always */
1737 if (!fb
->format
->is_yuv
)
1740 ilk_sprite_linear_gamma(gamma
);
1742 /* FIXME these register are single buffered :( */
1743 for (i
= 0; i
< 16; i
++)
1744 I915_WRITE_FW(DVSGAMC_ILK(pipe
, i
),
1749 I915_WRITE_FW(DVSGAMCMAX_ILK(pipe
, 0), gamma
[i
]);
1750 I915_WRITE_FW(DVSGAMCMAX_ILK(pipe
, 1), gamma
[i
]);
1751 I915_WRITE_FW(DVSGAMCMAX_ILK(pipe
, 2), gamma
[i
]);
1756 g4x_update_plane(struct intel_plane
*plane
,
1757 const struct intel_crtc_state
*crtc_state
,
1758 const struct intel_plane_state
*plane_state
)
1760 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
1761 enum pipe pipe
= plane
->pipe
;
1762 u32 dvssurf_offset
= plane_state
->color_plane
[0].offset
;
1764 const struct drm_intel_sprite_colorkey
*key
= &plane_state
->ckey
;
1765 int crtc_x
= plane_state
->uapi
.dst
.x1
;
1766 int crtc_y
= plane_state
->uapi
.dst
.y1
;
1767 u32 crtc_w
= drm_rect_width(&plane_state
->uapi
.dst
);
1768 u32 crtc_h
= drm_rect_height(&plane_state
->uapi
.dst
);
1769 u32 x
= plane_state
->color_plane
[0].x
;
1770 u32 y
= plane_state
->color_plane
[0].y
;
1771 u32 src_w
= drm_rect_width(&plane_state
->uapi
.src
) >> 16;
1772 u32 src_h
= drm_rect_height(&plane_state
->uapi
.src
) >> 16;
1773 u32 dvscntr
, dvsscale
= 0;
1774 unsigned long irqflags
;
1776 dvscntr
= plane_state
->ctl
| g4x_sprite_ctl_crtc(crtc_state
);
1778 /* Sizes are 0 based */
1784 if (crtc_w
!= src_w
|| crtc_h
!= src_h
)
1785 dvsscale
= DVS_SCALE_ENABLE
| (src_w
<< 16) | src_h
;
1787 linear_offset
= intel_fb_xy_to_linear(x
, y
, plane_state
, 0);
1789 spin_lock_irqsave(&dev_priv
->uncore
.lock
, irqflags
);
1791 I915_WRITE_FW(DVSSTRIDE(pipe
), plane_state
->color_plane
[0].stride
);
1792 I915_WRITE_FW(DVSPOS(pipe
), (crtc_y
<< 16) | crtc_x
);
1793 I915_WRITE_FW(DVSSIZE(pipe
), (crtc_h
<< 16) | crtc_w
);
1794 I915_WRITE_FW(DVSSCALE(pipe
), dvsscale
);
1797 I915_WRITE_FW(DVSKEYVAL(pipe
), key
->min_value
);
1798 I915_WRITE_FW(DVSKEYMSK(pipe
), key
->channel_mask
);
1799 I915_WRITE_FW(DVSKEYMAX(pipe
), key
->max_value
);
1802 I915_WRITE_FW(DVSLINOFF(pipe
), linear_offset
);
1803 I915_WRITE_FW(DVSTILEOFF(pipe
), (y
<< 16) | x
);
1806 * The control register self-arms if the plane was previously
1807 * disabled. Try to make the plane enable atomic by writing
1808 * the control register just before the surface register.
1810 I915_WRITE_FW(DVSCNTR(pipe
), dvscntr
);
1811 I915_WRITE_FW(DVSSURF(pipe
),
1812 intel_plane_ggtt_offset(plane_state
) + dvssurf_offset
);
1814 if (IS_G4X(dev_priv
))
1815 g4x_update_gamma(plane_state
);
1817 ilk_update_gamma(plane_state
);
1819 spin_unlock_irqrestore(&dev_priv
->uncore
.lock
, irqflags
);
1823 g4x_disable_plane(struct intel_plane
*plane
,
1824 const struct intel_crtc_state
*crtc_state
)
1826 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
1827 enum pipe pipe
= plane
->pipe
;
1828 unsigned long irqflags
;
1830 spin_lock_irqsave(&dev_priv
->uncore
.lock
, irqflags
);
1832 I915_WRITE_FW(DVSCNTR(pipe
), 0);
1833 /* Disable the scaler */
1834 I915_WRITE_FW(DVSSCALE(pipe
), 0);
1835 I915_WRITE_FW(DVSSURF(pipe
), 0);
1837 spin_unlock_irqrestore(&dev_priv
->uncore
.lock
, irqflags
);
1841 g4x_plane_get_hw_state(struct intel_plane
*plane
,
1844 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
1845 enum intel_display_power_domain power_domain
;
1846 intel_wakeref_t wakeref
;
1849 power_domain
= POWER_DOMAIN_PIPE(plane
->pipe
);
1850 wakeref
= intel_display_power_get_if_enabled(dev_priv
, power_domain
);
1854 ret
= I915_READ(DVSCNTR(plane
->pipe
)) & DVS_ENABLE
;
1856 *pipe
= plane
->pipe
;
1858 intel_display_power_put(dev_priv
, power_domain
, wakeref
);
1863 static bool intel_fb_scalable(const struct drm_framebuffer
*fb
)
1868 switch (fb
->format
->format
) {
1871 case DRM_FORMAT_XRGB16161616F
:
1872 case DRM_FORMAT_ARGB16161616F
:
1873 case DRM_FORMAT_XBGR16161616F
:
1874 case DRM_FORMAT_ABGR16161616F
:
1875 return INTEL_GEN(to_i915(fb
->dev
)) >= 11;
1882 g4x_sprite_check_scaling(struct intel_crtc_state
*crtc_state
,
1883 struct intel_plane_state
*plane_state
)
1885 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
1886 const struct drm_rect
*src
= &plane_state
->uapi
.src
;
1887 const struct drm_rect
*dst
= &plane_state
->uapi
.dst
;
1888 int src_x
, src_w
, src_h
, crtc_w
, crtc_h
;
1889 const struct drm_display_mode
*adjusted_mode
=
1890 &crtc_state
->hw
.adjusted_mode
;
1891 unsigned int stride
= plane_state
->color_plane
[0].stride
;
1892 unsigned int cpp
= fb
->format
->cpp
[0];
1893 unsigned int width_bytes
;
1894 int min_width
, min_height
;
1896 crtc_w
= drm_rect_width(dst
);
1897 crtc_h
= drm_rect_height(dst
);
1899 src_x
= src
->x1
>> 16;
1900 src_w
= drm_rect_width(src
) >> 16;
1901 src_h
= drm_rect_height(src
) >> 16;
1903 if (src_w
== crtc_w
&& src_h
== crtc_h
)
1908 if (adjusted_mode
->flags
& DRM_MODE_FLAG_INTERLACE
) {
1910 DRM_DEBUG_KMS("Source height must be even with interlaced modes\n");
1918 width_bytes
= ((src_x
* cpp
) & 63) + src_w
* cpp
;
1920 if (src_w
< min_width
|| src_h
< min_height
||
1921 src_w
> 2048 || src_h
> 2048) {
1922 DRM_DEBUG_KMS("Source dimensions (%dx%d) exceed hardware limits (%dx%d - %dx%d)\n",
1923 src_w
, src_h
, min_width
, min_height
, 2048, 2048);
1927 if (width_bytes
> 4096) {
1928 DRM_DEBUG_KMS("Fetch width (%d) exceeds hardware max with scaling (%u)\n",
1933 if (stride
> 4096) {
1934 DRM_DEBUG_KMS("Stride (%u) exceeds hardware max with scaling (%u)\n",
1943 g4x_sprite_check(struct intel_crtc_state
*crtc_state
,
1944 struct intel_plane_state
*plane_state
)
1946 struct intel_plane
*plane
= to_intel_plane(plane_state
->uapi
.plane
);
1947 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
1948 int min_scale
= DRM_PLANE_HELPER_NO_SCALING
;
1949 int max_scale
= DRM_PLANE_HELPER_NO_SCALING
;
1952 if (intel_fb_scalable(plane_state
->hw
.fb
)) {
1953 if (INTEL_GEN(dev_priv
) < 7) {
1955 max_scale
= 16 << 16;
1956 } else if (IS_IVYBRIDGE(dev_priv
)) {
1958 max_scale
= 2 << 16;
1962 ret
= drm_atomic_helper_check_plane_state(&plane_state
->uapi
,
1964 min_scale
, max_scale
,
1969 ret
= i9xx_check_plane_surface(plane_state
);
1973 if (!plane_state
->uapi
.visible
)
1976 ret
= intel_plane_check_src_coordinates(plane_state
);
1980 ret
= g4x_sprite_check_scaling(crtc_state
, plane_state
);
1984 if (INTEL_GEN(dev_priv
) >= 7)
1985 plane_state
->ctl
= ivb_sprite_ctl(crtc_state
, plane_state
);
1987 plane_state
->ctl
= g4x_sprite_ctl(crtc_state
, plane_state
);
1992 int chv_plane_check_rotation(const struct intel_plane_state
*plane_state
)
1994 struct intel_plane
*plane
= to_intel_plane(plane_state
->uapi
.plane
);
1995 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
1996 unsigned int rotation
= plane_state
->hw
.rotation
;
1998 /* CHV ignores the mirror bit when the rotate bit is set :( */
1999 if (IS_CHERRYVIEW(dev_priv
) &&
2000 rotation
& DRM_MODE_ROTATE_180
&&
2001 rotation
& DRM_MODE_REFLECT_X
) {
2002 DRM_DEBUG_KMS("Cannot rotate and reflect at the same time\n");
2010 vlv_sprite_check(struct intel_crtc_state
*crtc_state
,
2011 struct intel_plane_state
*plane_state
)
2015 ret
= chv_plane_check_rotation(plane_state
);
2019 ret
= drm_atomic_helper_check_plane_state(&plane_state
->uapi
,
2021 DRM_PLANE_HELPER_NO_SCALING
,
2022 DRM_PLANE_HELPER_NO_SCALING
,
2027 ret
= i9xx_check_plane_surface(plane_state
);
2031 if (!plane_state
->uapi
.visible
)
2034 ret
= intel_plane_check_src_coordinates(plane_state
);
2038 plane_state
->ctl
= vlv_sprite_ctl(crtc_state
, plane_state
);
2043 static int skl_plane_check_fb(const struct intel_crtc_state
*crtc_state
,
2044 const struct intel_plane_state
*plane_state
)
2046 struct intel_plane
*plane
= to_intel_plane(plane_state
->uapi
.plane
);
2047 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
2048 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
2049 unsigned int rotation
= plane_state
->hw
.rotation
;
2050 struct drm_format_name_buf format_name
;
2055 if (rotation
& ~(DRM_MODE_ROTATE_0
| DRM_MODE_ROTATE_180
) &&
2056 is_ccs_modifier(fb
->modifier
)) {
2057 DRM_DEBUG_KMS("RC support only with 0/180 degree rotation (%x)\n",
2062 if (rotation
& DRM_MODE_REFLECT_X
&&
2063 fb
->modifier
== DRM_FORMAT_MOD_LINEAR
) {
2064 DRM_DEBUG_KMS("horizontal flip is not supported with linear surface formats\n");
2068 if (drm_rotation_90_or_270(rotation
)) {
2069 if (fb
->modifier
!= I915_FORMAT_MOD_Y_TILED
&&
2070 fb
->modifier
!= I915_FORMAT_MOD_Yf_TILED
) {
2071 DRM_DEBUG_KMS("Y/Yf tiling required for 90/270!\n");
2076 * 90/270 is not allowed with RGB64 16:16:16:16 and
2077 * Indexed 8-bit. RGB 16-bit 5:6:5 is allowed gen11 onwards.
2079 switch (fb
->format
->format
) {
2080 case DRM_FORMAT_RGB565
:
2081 if (INTEL_GEN(dev_priv
) >= 11)
2085 case DRM_FORMAT_XRGB16161616F
:
2086 case DRM_FORMAT_XBGR16161616F
:
2087 case DRM_FORMAT_ARGB16161616F
:
2088 case DRM_FORMAT_ABGR16161616F
:
2089 case DRM_FORMAT_Y210
:
2090 case DRM_FORMAT_Y212
:
2091 case DRM_FORMAT_Y216
:
2092 case DRM_FORMAT_XVYU12_16161616
:
2093 case DRM_FORMAT_XVYU16161616
:
2094 DRM_DEBUG_KMS("Unsupported pixel format %s for 90/270!\n",
2095 drm_get_format_name(fb
->format
->format
,
2103 /* Y-tiling is not supported in IF-ID Interlace mode */
2104 if (crtc_state
->hw
.enable
&&
2105 crtc_state
->hw
.adjusted_mode
.flags
& DRM_MODE_FLAG_INTERLACE
&&
2106 (fb
->modifier
== I915_FORMAT_MOD_Y_TILED
||
2107 fb
->modifier
== I915_FORMAT_MOD_Yf_TILED
||
2108 fb
->modifier
== I915_FORMAT_MOD_Y_TILED_CCS
||
2109 fb
->modifier
== I915_FORMAT_MOD_Yf_TILED_CCS
||
2110 fb
->modifier
== I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS
||
2111 fb
->modifier
== I915_FORMAT_MOD_Y_TILED_GEN12_MC_CCS
)) {
2112 DRM_DEBUG_KMS("Y/Yf tiling not supported in IF-ID mode\n");
2119 static int skl_plane_check_dst_coordinates(const struct intel_crtc_state
*crtc_state
,
2120 const struct intel_plane_state
*plane_state
)
2122 struct drm_i915_private
*dev_priv
=
2123 to_i915(plane_state
->uapi
.plane
->dev
);
2124 int crtc_x
= plane_state
->uapi
.dst
.x1
;
2125 int crtc_w
= drm_rect_width(&plane_state
->uapi
.dst
);
2126 int pipe_src_w
= crtc_state
->pipe_src_w
;
2129 * Display WA #1175: cnl,glk
2130 * Planes other than the cursor may cause FIFO underflow and display
2131 * corruption if starting less than 4 pixels from the right edge of
2133 * Besides the above WA fix the similar problem, where planes other
2134 * than the cursor ending less than 4 pixels from the left edge of the
2135 * screen may cause FIFO underflow and display corruption.
2137 if ((IS_GEMINILAKE(dev_priv
) || IS_CANNONLAKE(dev_priv
)) &&
2138 (crtc_x
+ crtc_w
< 4 || crtc_x
> pipe_src_w
- 4)) {
2139 DRM_DEBUG_KMS("requested plane X %s position %d invalid (valid range %d-%d)\n",
2140 crtc_x
+ crtc_w
< 4 ? "end" : "start",
2141 crtc_x
+ crtc_w
< 4 ? crtc_x
+ crtc_w
: crtc_x
,
2149 static int skl_plane_check_nv12_rotation(const struct intel_plane_state
*plane_state
)
2151 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
2152 unsigned int rotation
= plane_state
->hw
.rotation
;
2153 int src_w
= drm_rect_width(&plane_state
->uapi
.src
) >> 16;
2155 /* Display WA #1106 */
2156 if (intel_format_info_is_yuv_semiplanar(fb
->format
, fb
->modifier
) &&
2158 (rotation
== DRM_MODE_ROTATE_270
||
2159 rotation
== (DRM_MODE_REFLECT_X
| DRM_MODE_ROTATE_90
))) {
2160 DRM_DEBUG_KMS("src width must be multiple of 4 for rotated planar YUV\n");
2167 static int skl_plane_max_scale(struct drm_i915_private
*dev_priv
,
2168 const struct drm_framebuffer
*fb
)
2171 * We don't yet know the final source width nor
2172 * whether we can use the HQ scaler mode. Assume
2174 * FIXME need to properly check this later.
2176 if (INTEL_GEN(dev_priv
) >= 10 || IS_GEMINILAKE(dev_priv
) ||
2177 !intel_format_info_is_yuv_semiplanar(fb
->format
, fb
->modifier
))
2183 static int skl_plane_check(struct intel_crtc_state
*crtc_state
,
2184 struct intel_plane_state
*plane_state
)
2186 struct intel_plane
*plane
= to_intel_plane(plane_state
->uapi
.plane
);
2187 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
2188 const struct drm_framebuffer
*fb
= plane_state
->hw
.fb
;
2189 int min_scale
= DRM_PLANE_HELPER_NO_SCALING
;
2190 int max_scale
= DRM_PLANE_HELPER_NO_SCALING
;
2193 ret
= skl_plane_check_fb(crtc_state
, plane_state
);
2197 /* use scaler when colorkey is not required */
2198 if (!plane_state
->ckey
.flags
&& intel_fb_scalable(fb
)) {
2200 max_scale
= skl_plane_max_scale(dev_priv
, fb
);
2203 ret
= drm_atomic_helper_check_plane_state(&plane_state
->uapi
,
2205 min_scale
, max_scale
,
2210 ret
= skl_check_plane_surface(plane_state
);
2214 if (!plane_state
->uapi
.visible
)
2217 ret
= skl_plane_check_dst_coordinates(crtc_state
, plane_state
);
2221 ret
= intel_plane_check_src_coordinates(plane_state
);
2225 ret
= skl_plane_check_nv12_rotation(plane_state
);
2229 /* HW only has 8 bits pixel precision, disable plane if invisible */
2230 if (!(plane_state
->hw
.alpha
>> 8))
2231 plane_state
->uapi
.visible
= false;
2233 plane_state
->ctl
= skl_plane_ctl(crtc_state
, plane_state
);
2235 if (INTEL_GEN(dev_priv
) >= 10 || IS_GEMINILAKE(dev_priv
))
2236 plane_state
->color_ctl
= glk_plane_color_ctl(crtc_state
,
2239 if (intel_format_info_is_yuv_semiplanar(fb
->format
, fb
->modifier
) &&
2240 icl_is_hdr_plane(dev_priv
, plane
->id
))
2241 /* Enable and use MPEG-2 chroma siting */
2242 plane_state
->cus_ctl
= PLANE_CUS_ENABLE
|
2243 PLANE_CUS_HPHASE_0
|
2244 PLANE_CUS_VPHASE_SIGN_NEGATIVE
| PLANE_CUS_VPHASE_0_25
;
2246 plane_state
->cus_ctl
= 0;
2251 static bool has_dst_key_in_primary_plane(struct drm_i915_private
*dev_priv
)
2253 return INTEL_GEN(dev_priv
) >= 9;
2256 static void intel_plane_set_ckey(struct intel_plane_state
*plane_state
,
2257 const struct drm_intel_sprite_colorkey
*set
)
2259 struct intel_plane
*plane
= to_intel_plane(plane_state
->uapi
.plane
);
2260 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
2261 struct drm_intel_sprite_colorkey
*key
= &plane_state
->ckey
;
2266 * We want src key enabled on the
2267 * sprite and not on the primary.
2269 if (plane
->id
== PLANE_PRIMARY
&&
2270 set
->flags
& I915_SET_COLORKEY_SOURCE
)
2274 * On SKL+ we want dst key enabled on
2275 * the primary and not on the sprite.
2277 if (INTEL_GEN(dev_priv
) >= 9 && plane
->id
!= PLANE_PRIMARY
&&
2278 set
->flags
& I915_SET_COLORKEY_DESTINATION
)
2282 int intel_sprite_set_colorkey_ioctl(struct drm_device
*dev
, void *data
,
2283 struct drm_file
*file_priv
)
2285 struct drm_i915_private
*dev_priv
= to_i915(dev
);
2286 struct drm_intel_sprite_colorkey
*set
= data
;
2287 struct drm_plane
*plane
;
2288 struct drm_plane_state
*plane_state
;
2289 struct drm_atomic_state
*state
;
2290 struct drm_modeset_acquire_ctx ctx
;
2293 /* ignore the pointless "none" flag */
2294 set
->flags
&= ~I915_SET_COLORKEY_NONE
;
2296 if (set
->flags
& ~(I915_SET_COLORKEY_DESTINATION
| I915_SET_COLORKEY_SOURCE
))
2299 /* Make sure we don't try to enable both src & dest simultaneously */
2300 if ((set
->flags
& (I915_SET_COLORKEY_DESTINATION
| I915_SET_COLORKEY_SOURCE
)) == (I915_SET_COLORKEY_DESTINATION
| I915_SET_COLORKEY_SOURCE
))
2303 if ((IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
)) &&
2304 set
->flags
& I915_SET_COLORKEY_DESTINATION
)
2307 plane
= drm_plane_find(dev
, file_priv
, set
->plane_id
);
2308 if (!plane
|| plane
->type
!= DRM_PLANE_TYPE_OVERLAY
)
2312 * SKL+ only plane 2 can do destination keying against plane 1.
2313 * Also multiple planes can't do destination keying on the same
2314 * pipe simultaneously.
2316 if (INTEL_GEN(dev_priv
) >= 9 &&
2317 to_intel_plane(plane
)->id
>= PLANE_SPRITE1
&&
2318 set
->flags
& I915_SET_COLORKEY_DESTINATION
)
2321 drm_modeset_acquire_init(&ctx
, 0);
2323 state
= drm_atomic_state_alloc(plane
->dev
);
2328 state
->acquire_ctx
= &ctx
;
2331 plane_state
= drm_atomic_get_plane_state(state
, plane
);
2332 ret
= PTR_ERR_OR_ZERO(plane_state
);
2334 intel_plane_set_ckey(to_intel_plane_state(plane_state
), set
);
2337 * On some platforms we have to configure
2338 * the dst colorkey on the primary plane.
2340 if (!ret
&& has_dst_key_in_primary_plane(dev_priv
)) {
2341 struct intel_crtc
*crtc
=
2342 intel_get_crtc_for_pipe(dev_priv
,
2343 to_intel_plane(plane
)->pipe
);
2345 plane_state
= drm_atomic_get_plane_state(state
,
2346 crtc
->base
.primary
);
2347 ret
= PTR_ERR_OR_ZERO(plane_state
);
2349 intel_plane_set_ckey(to_intel_plane_state(plane_state
), set
);
2353 ret
= drm_atomic_commit(state
);
2355 if (ret
!= -EDEADLK
)
2358 drm_atomic_state_clear(state
);
2359 drm_modeset_backoff(&ctx
);
2362 drm_atomic_state_put(state
);
2364 drm_modeset_drop_locks(&ctx
);
2365 drm_modeset_acquire_fini(&ctx
);
2369 static const u32 g4x_plane_formats
[] = {
2370 DRM_FORMAT_XRGB8888
,
2377 static const u64 i9xx_plane_format_modifiers
[] = {
2378 I915_FORMAT_MOD_X_TILED
,
2379 DRM_FORMAT_MOD_LINEAR
,
2380 DRM_FORMAT_MOD_INVALID
2383 static const u32 snb_plane_formats
[] = {
2384 DRM_FORMAT_XRGB8888
,
2385 DRM_FORMAT_XBGR8888
,
2386 DRM_FORMAT_XRGB2101010
,
2387 DRM_FORMAT_XBGR2101010
,
2388 DRM_FORMAT_XRGB16161616F
,
2389 DRM_FORMAT_XBGR16161616F
,
2396 static const u32 vlv_plane_formats
[] = {
2399 DRM_FORMAT_XRGB8888
,
2400 DRM_FORMAT_XBGR8888
,
2401 DRM_FORMAT_ARGB8888
,
2402 DRM_FORMAT_ABGR8888
,
2403 DRM_FORMAT_XBGR2101010
,
2404 DRM_FORMAT_ABGR2101010
,
2411 static const u32 chv_pipe_b_sprite_formats
[] = {
2414 DRM_FORMAT_XRGB8888
,
2415 DRM_FORMAT_XBGR8888
,
2416 DRM_FORMAT_ARGB8888
,
2417 DRM_FORMAT_ABGR8888
,
2418 DRM_FORMAT_XRGB2101010
,
2419 DRM_FORMAT_XBGR2101010
,
2420 DRM_FORMAT_ARGB2101010
,
2421 DRM_FORMAT_ABGR2101010
,
2428 static const u32 skl_plane_formats
[] = {
2431 DRM_FORMAT_XRGB8888
,
2432 DRM_FORMAT_XBGR8888
,
2433 DRM_FORMAT_ARGB8888
,
2434 DRM_FORMAT_ABGR8888
,
2435 DRM_FORMAT_XRGB2101010
,
2436 DRM_FORMAT_XBGR2101010
,
2437 DRM_FORMAT_XRGB16161616F
,
2438 DRM_FORMAT_XBGR16161616F
,
2445 static const u32 skl_planar_formats
[] = {
2448 DRM_FORMAT_XRGB8888
,
2449 DRM_FORMAT_XBGR8888
,
2450 DRM_FORMAT_ARGB8888
,
2451 DRM_FORMAT_ABGR8888
,
2452 DRM_FORMAT_XRGB2101010
,
2453 DRM_FORMAT_XBGR2101010
,
2454 DRM_FORMAT_XRGB16161616F
,
2455 DRM_FORMAT_XBGR16161616F
,
2463 static const u32 glk_planar_formats
[] = {
2466 DRM_FORMAT_XRGB8888
,
2467 DRM_FORMAT_XBGR8888
,
2468 DRM_FORMAT_ARGB8888
,
2469 DRM_FORMAT_ABGR8888
,
2470 DRM_FORMAT_XRGB2101010
,
2471 DRM_FORMAT_XBGR2101010
,
2472 DRM_FORMAT_XRGB16161616F
,
2473 DRM_FORMAT_XBGR16161616F
,
2484 static const u32 icl_sdr_y_plane_formats
[] = {
2487 DRM_FORMAT_XRGB8888
,
2488 DRM_FORMAT_XBGR8888
,
2489 DRM_FORMAT_ARGB8888
,
2490 DRM_FORMAT_ABGR8888
,
2491 DRM_FORMAT_XRGB2101010
,
2492 DRM_FORMAT_XBGR2101010
,
2493 DRM_FORMAT_ARGB2101010
,
2494 DRM_FORMAT_ABGR2101010
,
2502 DRM_FORMAT_XVYU2101010
,
2503 DRM_FORMAT_XVYU12_16161616
,
2504 DRM_FORMAT_XVYU16161616
,
2507 static const u32 icl_sdr_uv_plane_formats
[] = {
2510 DRM_FORMAT_XRGB8888
,
2511 DRM_FORMAT_XBGR8888
,
2512 DRM_FORMAT_ARGB8888
,
2513 DRM_FORMAT_ABGR8888
,
2514 DRM_FORMAT_XRGB2101010
,
2515 DRM_FORMAT_XBGR2101010
,
2516 DRM_FORMAT_ARGB2101010
,
2517 DRM_FORMAT_ABGR2101010
,
2529 DRM_FORMAT_XVYU2101010
,
2530 DRM_FORMAT_XVYU12_16161616
,
2531 DRM_FORMAT_XVYU16161616
,
2534 static const u32 icl_hdr_plane_formats
[] = {
2537 DRM_FORMAT_XRGB8888
,
2538 DRM_FORMAT_XBGR8888
,
2539 DRM_FORMAT_ARGB8888
,
2540 DRM_FORMAT_ABGR8888
,
2541 DRM_FORMAT_XRGB2101010
,
2542 DRM_FORMAT_XBGR2101010
,
2543 DRM_FORMAT_ARGB2101010
,
2544 DRM_FORMAT_ABGR2101010
,
2545 DRM_FORMAT_XRGB16161616F
,
2546 DRM_FORMAT_XBGR16161616F
,
2547 DRM_FORMAT_ARGB16161616F
,
2548 DRM_FORMAT_ABGR16161616F
,
2560 DRM_FORMAT_XVYU2101010
,
2561 DRM_FORMAT_XVYU12_16161616
,
2562 DRM_FORMAT_XVYU16161616
,
2565 static const u64 skl_plane_format_modifiers_noccs
[] = {
2566 I915_FORMAT_MOD_Yf_TILED
,
2567 I915_FORMAT_MOD_Y_TILED
,
2568 I915_FORMAT_MOD_X_TILED
,
2569 DRM_FORMAT_MOD_LINEAR
,
2570 DRM_FORMAT_MOD_INVALID
2573 static const u64 skl_plane_format_modifiers_ccs
[] = {
2574 I915_FORMAT_MOD_Yf_TILED_CCS
,
2575 I915_FORMAT_MOD_Y_TILED_CCS
,
2576 I915_FORMAT_MOD_Yf_TILED
,
2577 I915_FORMAT_MOD_Y_TILED
,
2578 I915_FORMAT_MOD_X_TILED
,
2579 DRM_FORMAT_MOD_LINEAR
,
2580 DRM_FORMAT_MOD_INVALID
2583 static const u64 gen12_plane_format_modifiers_mc_ccs
[] = {
2584 I915_FORMAT_MOD_Y_TILED_GEN12_MC_CCS
,
2585 I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS
,
2586 I915_FORMAT_MOD_Y_TILED
,
2587 I915_FORMAT_MOD_X_TILED
,
2588 DRM_FORMAT_MOD_LINEAR
,
2589 DRM_FORMAT_MOD_INVALID
2592 static const u64 gen12_plane_format_modifiers_rc_ccs
[] = {
2593 I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS
,
2594 I915_FORMAT_MOD_Y_TILED
,
2595 I915_FORMAT_MOD_X_TILED
,
2596 DRM_FORMAT_MOD_LINEAR
,
2597 DRM_FORMAT_MOD_INVALID
2600 static bool g4x_sprite_format_mod_supported(struct drm_plane
*_plane
,
2601 u32 format
, u64 modifier
)
2604 case DRM_FORMAT_MOD_LINEAR
:
2605 case I915_FORMAT_MOD_X_TILED
:
2612 case DRM_FORMAT_XRGB8888
:
2613 case DRM_FORMAT_YUYV
:
2614 case DRM_FORMAT_YVYU
:
2615 case DRM_FORMAT_UYVY
:
2616 case DRM_FORMAT_VYUY
:
2617 if (modifier
== DRM_FORMAT_MOD_LINEAR
||
2618 modifier
== I915_FORMAT_MOD_X_TILED
)
2626 static bool snb_sprite_format_mod_supported(struct drm_plane
*_plane
,
2627 u32 format
, u64 modifier
)
2630 case DRM_FORMAT_MOD_LINEAR
:
2631 case I915_FORMAT_MOD_X_TILED
:
2638 case DRM_FORMAT_XRGB8888
:
2639 case DRM_FORMAT_XBGR8888
:
2640 case DRM_FORMAT_XRGB2101010
:
2641 case DRM_FORMAT_XBGR2101010
:
2642 case DRM_FORMAT_XRGB16161616F
:
2643 case DRM_FORMAT_XBGR16161616F
:
2644 case DRM_FORMAT_YUYV
:
2645 case DRM_FORMAT_YVYU
:
2646 case DRM_FORMAT_UYVY
:
2647 case DRM_FORMAT_VYUY
:
2648 if (modifier
== DRM_FORMAT_MOD_LINEAR
||
2649 modifier
== I915_FORMAT_MOD_X_TILED
)
2657 static bool vlv_sprite_format_mod_supported(struct drm_plane
*_plane
,
2658 u32 format
, u64 modifier
)
2661 case DRM_FORMAT_MOD_LINEAR
:
2662 case I915_FORMAT_MOD_X_TILED
:
2670 case DRM_FORMAT_RGB565
:
2671 case DRM_FORMAT_ABGR8888
:
2672 case DRM_FORMAT_ARGB8888
:
2673 case DRM_FORMAT_XBGR8888
:
2674 case DRM_FORMAT_XRGB8888
:
2675 case DRM_FORMAT_XBGR2101010
:
2676 case DRM_FORMAT_ABGR2101010
:
2677 case DRM_FORMAT_XRGB2101010
:
2678 case DRM_FORMAT_ARGB2101010
:
2679 case DRM_FORMAT_YUYV
:
2680 case DRM_FORMAT_YVYU
:
2681 case DRM_FORMAT_UYVY
:
2682 case DRM_FORMAT_VYUY
:
2683 if (modifier
== DRM_FORMAT_MOD_LINEAR
||
2684 modifier
== I915_FORMAT_MOD_X_TILED
)
2692 static bool skl_plane_format_mod_supported(struct drm_plane
*_plane
,
2693 u32 format
, u64 modifier
)
2695 struct intel_plane
*plane
= to_intel_plane(_plane
);
2698 case DRM_FORMAT_MOD_LINEAR
:
2699 case I915_FORMAT_MOD_X_TILED
:
2700 case I915_FORMAT_MOD_Y_TILED
:
2701 case I915_FORMAT_MOD_Yf_TILED
:
2703 case I915_FORMAT_MOD_Y_TILED_CCS
:
2704 case I915_FORMAT_MOD_Yf_TILED_CCS
:
2705 if (!plane
->has_ccs
)
2713 case DRM_FORMAT_XRGB8888
:
2714 case DRM_FORMAT_XBGR8888
:
2715 case DRM_FORMAT_ARGB8888
:
2716 case DRM_FORMAT_ABGR8888
:
2717 if (is_ccs_modifier(modifier
))
2720 case DRM_FORMAT_RGB565
:
2721 case DRM_FORMAT_XRGB2101010
:
2722 case DRM_FORMAT_XBGR2101010
:
2723 case DRM_FORMAT_ARGB2101010
:
2724 case DRM_FORMAT_ABGR2101010
:
2725 case DRM_FORMAT_YUYV
:
2726 case DRM_FORMAT_YVYU
:
2727 case DRM_FORMAT_UYVY
:
2728 case DRM_FORMAT_VYUY
:
2729 case DRM_FORMAT_NV12
:
2730 case DRM_FORMAT_P010
:
2731 case DRM_FORMAT_P012
:
2732 case DRM_FORMAT_P016
:
2733 case DRM_FORMAT_XVYU2101010
:
2734 if (modifier
== I915_FORMAT_MOD_Yf_TILED
)
2738 case DRM_FORMAT_XBGR16161616F
:
2739 case DRM_FORMAT_ABGR16161616F
:
2740 case DRM_FORMAT_XRGB16161616F
:
2741 case DRM_FORMAT_ARGB16161616F
:
2742 case DRM_FORMAT_Y210
:
2743 case DRM_FORMAT_Y212
:
2744 case DRM_FORMAT_Y216
:
2745 case DRM_FORMAT_XVYU12_16161616
:
2746 case DRM_FORMAT_XVYU16161616
:
2747 if (modifier
== DRM_FORMAT_MOD_LINEAR
||
2748 modifier
== I915_FORMAT_MOD_X_TILED
||
2749 modifier
== I915_FORMAT_MOD_Y_TILED
)
2757 static bool gen12_plane_supports_mc_ccs(enum plane_id plane_id
)
2759 return plane_id
< PLANE_SPRITE4
;
2762 static bool gen12_plane_format_mod_supported(struct drm_plane
*_plane
,
2763 u32 format
, u64 modifier
)
2765 struct intel_plane
*plane
= to_intel_plane(_plane
);
2768 case I915_FORMAT_MOD_Y_TILED_GEN12_MC_CCS
:
2769 if (!gen12_plane_supports_mc_ccs(plane
->id
))
2772 case DRM_FORMAT_MOD_LINEAR
:
2773 case I915_FORMAT_MOD_X_TILED
:
2774 case I915_FORMAT_MOD_Y_TILED
:
2775 case I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS
:
2782 case DRM_FORMAT_XRGB8888
:
2783 case DRM_FORMAT_XBGR8888
:
2784 case DRM_FORMAT_ARGB8888
:
2785 case DRM_FORMAT_ABGR8888
:
2786 if (is_ccs_modifier(modifier
))
2789 case DRM_FORMAT_YUYV
:
2790 case DRM_FORMAT_YVYU
:
2791 case DRM_FORMAT_UYVY
:
2792 case DRM_FORMAT_VYUY
:
2793 case DRM_FORMAT_NV12
:
2794 case DRM_FORMAT_P010
:
2795 case DRM_FORMAT_P012
:
2796 case DRM_FORMAT_P016
:
2797 if (modifier
== I915_FORMAT_MOD_Y_TILED_GEN12_MC_CCS
)
2800 case DRM_FORMAT_RGB565
:
2801 case DRM_FORMAT_XRGB2101010
:
2802 case DRM_FORMAT_XBGR2101010
:
2803 case DRM_FORMAT_ARGB2101010
:
2804 case DRM_FORMAT_ABGR2101010
:
2805 case DRM_FORMAT_XVYU2101010
:
2807 case DRM_FORMAT_XBGR16161616F
:
2808 case DRM_FORMAT_ABGR16161616F
:
2809 case DRM_FORMAT_XRGB16161616F
:
2810 case DRM_FORMAT_ARGB16161616F
:
2811 case DRM_FORMAT_Y210
:
2812 case DRM_FORMAT_Y212
:
2813 case DRM_FORMAT_Y216
:
2814 case DRM_FORMAT_XVYU12_16161616
:
2815 case DRM_FORMAT_XVYU16161616
:
2816 if (modifier
== DRM_FORMAT_MOD_LINEAR
||
2817 modifier
== I915_FORMAT_MOD_X_TILED
||
2818 modifier
== I915_FORMAT_MOD_Y_TILED
)
2826 static const struct drm_plane_funcs g4x_sprite_funcs
= {
2827 .update_plane
= drm_atomic_helper_update_plane
,
2828 .disable_plane
= drm_atomic_helper_disable_plane
,
2829 .destroy
= intel_plane_destroy
,
2830 .atomic_duplicate_state
= intel_plane_duplicate_state
,
2831 .atomic_destroy_state
= intel_plane_destroy_state
,
2832 .format_mod_supported
= g4x_sprite_format_mod_supported
,
2835 static const struct drm_plane_funcs snb_sprite_funcs
= {
2836 .update_plane
= drm_atomic_helper_update_plane
,
2837 .disable_plane
= drm_atomic_helper_disable_plane
,
2838 .destroy
= intel_plane_destroy
,
2839 .atomic_duplicate_state
= intel_plane_duplicate_state
,
2840 .atomic_destroy_state
= intel_plane_destroy_state
,
2841 .format_mod_supported
= snb_sprite_format_mod_supported
,
2844 static const struct drm_plane_funcs vlv_sprite_funcs
= {
2845 .update_plane
= drm_atomic_helper_update_plane
,
2846 .disable_plane
= drm_atomic_helper_disable_plane
,
2847 .destroy
= intel_plane_destroy
,
2848 .atomic_duplicate_state
= intel_plane_duplicate_state
,
2849 .atomic_destroy_state
= intel_plane_destroy_state
,
2850 .format_mod_supported
= vlv_sprite_format_mod_supported
,
2853 static const struct drm_plane_funcs skl_plane_funcs
= {
2854 .update_plane
= drm_atomic_helper_update_plane
,
2855 .disable_plane
= drm_atomic_helper_disable_plane
,
2856 .destroy
= intel_plane_destroy
,
2857 .atomic_duplicate_state
= intel_plane_duplicate_state
,
2858 .atomic_destroy_state
= intel_plane_destroy_state
,
2859 .format_mod_supported
= skl_plane_format_mod_supported
,
2862 static const struct drm_plane_funcs gen12_plane_funcs
= {
2863 .update_plane
= drm_atomic_helper_update_plane
,
2864 .disable_plane
= drm_atomic_helper_disable_plane
,
2865 .destroy
= intel_plane_destroy
,
2866 .atomic_duplicate_state
= intel_plane_duplicate_state
,
2867 .atomic_destroy_state
= intel_plane_destroy_state
,
2868 .format_mod_supported
= gen12_plane_format_mod_supported
,
2871 static bool skl_plane_has_fbc(struct drm_i915_private
*dev_priv
,
2872 enum pipe pipe
, enum plane_id plane_id
)
2874 if (!HAS_FBC(dev_priv
))
2877 return pipe
== PIPE_A
&& plane_id
== PLANE_PRIMARY
;
2880 static bool skl_plane_has_planar(struct drm_i915_private
*dev_priv
,
2881 enum pipe pipe
, enum plane_id plane_id
)
2883 /* Display WA #0870: skl, bxt */
2884 if (IS_SKYLAKE(dev_priv
) || IS_BROXTON(dev_priv
))
2887 if (IS_GEN(dev_priv
, 9) && !IS_GEMINILAKE(dev_priv
) && pipe
== PIPE_C
)
2890 if (plane_id
!= PLANE_PRIMARY
&& plane_id
!= PLANE_SPRITE0
)
2896 static const u32
*skl_get_plane_formats(struct drm_i915_private
*dev_priv
,
2897 enum pipe pipe
, enum plane_id plane_id
,
2900 if (skl_plane_has_planar(dev_priv
, pipe
, plane_id
)) {
2901 *num_formats
= ARRAY_SIZE(skl_planar_formats
);
2902 return skl_planar_formats
;
2904 *num_formats
= ARRAY_SIZE(skl_plane_formats
);
2905 return skl_plane_formats
;
2909 static const u32
*glk_get_plane_formats(struct drm_i915_private
*dev_priv
,
2910 enum pipe pipe
, enum plane_id plane_id
,
2913 if (skl_plane_has_planar(dev_priv
, pipe
, plane_id
)) {
2914 *num_formats
= ARRAY_SIZE(glk_planar_formats
);
2915 return glk_planar_formats
;
2917 *num_formats
= ARRAY_SIZE(skl_plane_formats
);
2918 return skl_plane_formats
;
2922 static const u32
*icl_get_plane_formats(struct drm_i915_private
*dev_priv
,
2923 enum pipe pipe
, enum plane_id plane_id
,
2926 if (icl_is_hdr_plane(dev_priv
, plane_id
)) {
2927 *num_formats
= ARRAY_SIZE(icl_hdr_plane_formats
);
2928 return icl_hdr_plane_formats
;
2929 } else if (icl_is_nv12_y_plane(plane_id
)) {
2930 *num_formats
= ARRAY_SIZE(icl_sdr_y_plane_formats
);
2931 return icl_sdr_y_plane_formats
;
2933 *num_formats
= ARRAY_SIZE(icl_sdr_uv_plane_formats
);
2934 return icl_sdr_uv_plane_formats
;
2938 static const u64
*gen12_get_plane_modifiers(enum plane_id plane_id
)
2940 if (gen12_plane_supports_mc_ccs(plane_id
))
2941 return gen12_plane_format_modifiers_mc_ccs
;
2943 return gen12_plane_format_modifiers_rc_ccs
;
2946 static bool skl_plane_has_ccs(struct drm_i915_private
*dev_priv
,
2947 enum pipe pipe
, enum plane_id plane_id
)
2949 if (plane_id
== PLANE_CURSOR
)
2952 if (INTEL_GEN(dev_priv
) >= 10)
2955 if (IS_GEMINILAKE(dev_priv
))
2956 return pipe
!= PIPE_C
;
2958 return pipe
!= PIPE_C
&&
2959 (plane_id
== PLANE_PRIMARY
||
2960 plane_id
== PLANE_SPRITE0
);
2963 struct intel_plane
*
2964 skl_universal_plane_create(struct drm_i915_private
*dev_priv
,
2965 enum pipe pipe
, enum plane_id plane_id
)
2967 const struct drm_plane_funcs
*plane_funcs
;
2968 struct intel_plane
*plane
;
2969 enum drm_plane_type plane_type
;
2970 unsigned int supported_rotations
;
2971 unsigned int possible_crtcs
;
2972 const u64
*modifiers
;
2977 plane
= intel_plane_alloc();
2982 plane
->id
= plane_id
;
2983 plane
->frontbuffer_bit
= INTEL_FRONTBUFFER(pipe
, plane_id
);
2985 plane
->has_fbc
= skl_plane_has_fbc(dev_priv
, pipe
, plane_id
);
2986 if (plane
->has_fbc
) {
2987 struct intel_fbc
*fbc
= &dev_priv
->fbc
;
2989 fbc
->possible_framebuffer_bits
|= plane
->frontbuffer_bit
;
2992 plane
->max_stride
= skl_plane_max_stride
;
2993 plane
->update_plane
= skl_update_plane
;
2994 plane
->disable_plane
= skl_disable_plane
;
2995 plane
->get_hw_state
= skl_plane_get_hw_state
;
2996 plane
->check_plane
= skl_plane_check
;
2997 plane
->min_cdclk
= skl_plane_min_cdclk
;
2999 if (INTEL_GEN(dev_priv
) >= 11)
3000 formats
= icl_get_plane_formats(dev_priv
, pipe
,
3001 plane_id
, &num_formats
);
3002 else if (INTEL_GEN(dev_priv
) >= 10 || IS_GEMINILAKE(dev_priv
))
3003 formats
= glk_get_plane_formats(dev_priv
, pipe
,
3004 plane_id
, &num_formats
);
3006 formats
= skl_get_plane_formats(dev_priv
, pipe
,
3007 plane_id
, &num_formats
);
3009 plane
->has_ccs
= skl_plane_has_ccs(dev_priv
, pipe
, plane_id
);
3010 if (INTEL_GEN(dev_priv
) >= 12) {
3011 modifiers
= gen12_get_plane_modifiers(plane_id
);
3012 plane_funcs
= &gen12_plane_funcs
;
3015 modifiers
= skl_plane_format_modifiers_ccs
;
3017 modifiers
= skl_plane_format_modifiers_noccs
;
3018 plane_funcs
= &skl_plane_funcs
;
3021 if (plane_id
== PLANE_PRIMARY
)
3022 plane_type
= DRM_PLANE_TYPE_PRIMARY
;
3024 plane_type
= DRM_PLANE_TYPE_OVERLAY
;
3026 possible_crtcs
= BIT(pipe
);
3028 ret
= drm_universal_plane_init(&dev_priv
->drm
, &plane
->base
,
3029 possible_crtcs
, plane_funcs
,
3030 formats
, num_formats
, modifiers
,
3032 "plane %d%c", plane_id
+ 1,
3037 supported_rotations
=
3038 DRM_MODE_ROTATE_0
| DRM_MODE_ROTATE_90
|
3039 DRM_MODE_ROTATE_180
| DRM_MODE_ROTATE_270
;
3041 if (INTEL_GEN(dev_priv
) >= 10)
3042 supported_rotations
|= DRM_MODE_REFLECT_X
;
3044 drm_plane_create_rotation_property(&plane
->base
,
3046 supported_rotations
);
3048 drm_plane_create_color_properties(&plane
->base
,
3049 BIT(DRM_COLOR_YCBCR_BT601
) |
3050 BIT(DRM_COLOR_YCBCR_BT709
),
3051 BIT(DRM_COLOR_YCBCR_LIMITED_RANGE
) |
3052 BIT(DRM_COLOR_YCBCR_FULL_RANGE
),
3053 DRM_COLOR_YCBCR_BT709
,
3054 DRM_COLOR_YCBCR_LIMITED_RANGE
);
3056 drm_plane_create_alpha_property(&plane
->base
);
3057 drm_plane_create_blend_mode_property(&plane
->base
,
3058 BIT(DRM_MODE_BLEND_PIXEL_NONE
) |
3059 BIT(DRM_MODE_BLEND_PREMULTI
) |
3060 BIT(DRM_MODE_BLEND_COVERAGE
));
3062 drm_plane_create_zpos_immutable_property(&plane
->base
, plane_id
);
3064 drm_plane_helper_add(&plane
->base
, &intel_plane_helper_funcs
);
3069 intel_plane_free(plane
);
3071 return ERR_PTR(ret
);
3074 struct intel_plane
*
3075 intel_sprite_plane_create(struct drm_i915_private
*dev_priv
,
3076 enum pipe pipe
, int sprite
)
3078 struct intel_plane
*plane
;
3079 const struct drm_plane_funcs
*plane_funcs
;
3080 unsigned long possible_crtcs
;
3081 unsigned int supported_rotations
;
3082 const u64
*modifiers
;
3087 if (INTEL_GEN(dev_priv
) >= 9)
3088 return skl_universal_plane_create(dev_priv
, pipe
,
3089 PLANE_SPRITE0
+ sprite
);
3091 plane
= intel_plane_alloc();
3095 if (IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
)) {
3096 plane
->max_stride
= i9xx_plane_max_stride
;
3097 plane
->update_plane
= vlv_update_plane
;
3098 plane
->disable_plane
= vlv_disable_plane
;
3099 plane
->get_hw_state
= vlv_plane_get_hw_state
;
3100 plane
->check_plane
= vlv_sprite_check
;
3101 plane
->min_cdclk
= vlv_plane_min_cdclk
;
3103 if (IS_CHERRYVIEW(dev_priv
) && pipe
== PIPE_B
) {
3104 formats
= chv_pipe_b_sprite_formats
;
3105 num_formats
= ARRAY_SIZE(chv_pipe_b_sprite_formats
);
3107 formats
= vlv_plane_formats
;
3108 num_formats
= ARRAY_SIZE(vlv_plane_formats
);
3110 modifiers
= i9xx_plane_format_modifiers
;
3112 plane_funcs
= &vlv_sprite_funcs
;
3113 } else if (INTEL_GEN(dev_priv
) >= 7) {
3114 plane
->max_stride
= g4x_sprite_max_stride
;
3115 plane
->update_plane
= ivb_update_plane
;
3116 plane
->disable_plane
= ivb_disable_plane
;
3117 plane
->get_hw_state
= ivb_plane_get_hw_state
;
3118 plane
->check_plane
= g4x_sprite_check
;
3120 if (IS_BROADWELL(dev_priv
) || IS_HASWELL(dev_priv
))
3121 plane
->min_cdclk
= hsw_plane_min_cdclk
;
3123 plane
->min_cdclk
= ivb_sprite_min_cdclk
;
3125 formats
= snb_plane_formats
;
3126 num_formats
= ARRAY_SIZE(snb_plane_formats
);
3127 modifiers
= i9xx_plane_format_modifiers
;
3129 plane_funcs
= &snb_sprite_funcs
;
3131 plane
->max_stride
= g4x_sprite_max_stride
;
3132 plane
->update_plane
= g4x_update_plane
;
3133 plane
->disable_plane
= g4x_disable_plane
;
3134 plane
->get_hw_state
= g4x_plane_get_hw_state
;
3135 plane
->check_plane
= g4x_sprite_check
;
3136 plane
->min_cdclk
= g4x_sprite_min_cdclk
;
3138 modifiers
= i9xx_plane_format_modifiers
;
3139 if (IS_GEN(dev_priv
, 6)) {
3140 formats
= snb_plane_formats
;
3141 num_formats
= ARRAY_SIZE(snb_plane_formats
);
3143 plane_funcs
= &snb_sprite_funcs
;
3145 formats
= g4x_plane_formats
;
3146 num_formats
= ARRAY_SIZE(g4x_plane_formats
);
3148 plane_funcs
= &g4x_sprite_funcs
;
3152 if (IS_CHERRYVIEW(dev_priv
) && pipe
== PIPE_B
) {
3153 supported_rotations
=
3154 DRM_MODE_ROTATE_0
| DRM_MODE_ROTATE_180
|
3157 supported_rotations
=
3158 DRM_MODE_ROTATE_0
| DRM_MODE_ROTATE_180
;
3162 plane
->id
= PLANE_SPRITE0
+ sprite
;
3163 plane
->frontbuffer_bit
= INTEL_FRONTBUFFER(pipe
, plane
->id
);
3165 possible_crtcs
= BIT(pipe
);
3167 ret
= drm_universal_plane_init(&dev_priv
->drm
, &plane
->base
,
3168 possible_crtcs
, plane_funcs
,
3169 formats
, num_formats
, modifiers
,
3170 DRM_PLANE_TYPE_OVERLAY
,
3171 "sprite %c", sprite_name(pipe
, sprite
));
3175 drm_plane_create_rotation_property(&plane
->base
,
3177 supported_rotations
);
3179 drm_plane_create_color_properties(&plane
->base
,
3180 BIT(DRM_COLOR_YCBCR_BT601
) |
3181 BIT(DRM_COLOR_YCBCR_BT709
),
3182 BIT(DRM_COLOR_YCBCR_LIMITED_RANGE
) |
3183 BIT(DRM_COLOR_YCBCR_FULL_RANGE
),
3184 DRM_COLOR_YCBCR_BT709
,
3185 DRM_COLOR_YCBCR_LIMITED_RANGE
);
3188 drm_plane_create_zpos_immutable_property(&plane
->base
, zpos
);
3190 drm_plane_helper_add(&plane
->base
, &intel_plane_helper_funcs
);
3195 intel_plane_free(plane
);
3197 return ERR_PTR(ret
);