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_crtc.h>
34 #include <drm/drm_fourcc.h>
35 #include <drm/drm_rect.h>
36 #include <drm/drm_atomic.h>
37 #include <drm/drm_plane_helper.h>
38 #include "intel_drv.h"
39 #include <drm/i915_drm.h>
43 format_is_yuv(uint32_t format
)
56 static int usecs_to_scanlines(const struct drm_display_mode
*adjusted_mode
,
60 if (!adjusted_mode
->crtc_htotal
)
63 return DIV_ROUND_UP(usecs
* adjusted_mode
->crtc_clock
,
64 1000 * adjusted_mode
->crtc_htotal
);
68 * intel_pipe_update_start() - start update of a set of display registers
69 * @crtc: the crtc of which the registers are going to be updated
70 * @start_vbl_count: vblank counter return pointer used for error checking
72 * Mark the start of an update to pipe registers that should be updated
73 * atomically regarding vblank. If the next vblank will happens within
74 * the next 100 us, this function waits until the vblank passes.
76 * After a successful call to this function, interrupts will be disabled
77 * until a subsequent call to intel_pipe_update_end(). That is done to
78 * avoid random delays. The value written to @start_vbl_count should be
79 * supplied to intel_pipe_update_end() for error checking.
81 void intel_pipe_update_start(struct intel_crtc
*crtc
)
83 struct drm_device
*dev
= crtc
->base
.dev
;
84 const struct drm_display_mode
*adjusted_mode
= &crtc
->config
->base
.adjusted_mode
;
85 enum pipe pipe
= crtc
->pipe
;
86 long timeout
= msecs_to_jiffies_timeout(1);
87 int scanline
, min
, max
, vblank_start
;
88 wait_queue_head_t
*wq
= drm_crtc_vblank_waitqueue(&crtc
->base
);
91 vblank_start
= adjusted_mode
->crtc_vblank_start
;
92 if (adjusted_mode
->flags
& DRM_MODE_FLAG_INTERLACE
)
93 vblank_start
= DIV_ROUND_UP(vblank_start
, 2);
95 /* FIXME needs to be calibrated sensibly */
96 min
= vblank_start
- usecs_to_scanlines(adjusted_mode
, 100);
97 max
= vblank_start
- 1;
101 if (min
<= 0 || max
<= 0)
104 if (WARN_ON(drm_crtc_vblank_get(&crtc
->base
)))
107 crtc
->debug
.min_vbl
= min
;
108 crtc
->debug
.max_vbl
= max
;
109 trace_i915_pipe_update_start(crtc
);
113 * prepare_to_wait() has a memory barrier, which guarantees
114 * other CPUs can see the task state update by the time we
117 prepare_to_wait(wq
, &wait
, TASK_UNINTERRUPTIBLE
);
119 scanline
= intel_get_crtc_scanline(crtc
);
120 if (scanline
< min
|| scanline
> max
)
124 DRM_ERROR("Potential atomic update failure on pipe %c\n",
125 pipe_name(crtc
->pipe
));
131 timeout
= schedule_timeout(timeout
);
136 finish_wait(wq
, &wait
);
138 drm_crtc_vblank_put(&crtc
->base
);
140 crtc
->debug
.scanline_start
= scanline
;
141 crtc
->debug
.start_vbl_time
= ktime_get();
142 crtc
->debug
.start_vbl_count
=
143 dev
->driver
->get_vblank_counter(dev
, pipe
);
145 trace_i915_pipe_update_vblank_evaded(crtc
);
149 * intel_pipe_update_end() - end update of a set of display registers
150 * @crtc: the crtc of which the registers were updated
151 * @start_vbl_count: start vblank counter (used for error checking)
153 * Mark the end of an update started with intel_pipe_update_start(). This
154 * re-enables interrupts and verifies the update was actually completed
155 * before a vblank using the value of @start_vbl_count.
157 void intel_pipe_update_end(struct intel_crtc
*crtc
)
159 struct drm_device
*dev
= crtc
->base
.dev
;
160 enum pipe pipe
= crtc
->pipe
;
161 int scanline_end
= intel_get_crtc_scanline(crtc
);
162 u32 end_vbl_count
= dev
->driver
->get_vblank_counter(dev
, pipe
);
163 ktime_t end_vbl_time
= ktime_get();
165 trace_i915_pipe_update_end(crtc
, end_vbl_count
, scanline_end
);
169 if (crtc
->debug
.start_vbl_count
&&
170 crtc
->debug
.start_vbl_count
!= end_vbl_count
) {
171 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",
172 pipe_name(pipe
), crtc
->debug
.start_vbl_count
,
174 ktime_us_delta(end_vbl_time
, crtc
->debug
.start_vbl_time
),
175 crtc
->debug
.min_vbl
, crtc
->debug
.max_vbl
,
176 crtc
->debug
.scanline_start
, scanline_end
);
181 skl_update_plane(struct drm_plane
*drm_plane
, struct drm_crtc
*crtc
,
182 struct drm_framebuffer
*fb
,
183 int crtc_x
, int crtc_y
,
184 unsigned int crtc_w
, unsigned int crtc_h
,
185 uint32_t x
, uint32_t y
,
186 uint32_t src_w
, uint32_t src_h
)
188 struct drm_device
*dev
= drm_plane
->dev
;
189 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
190 struct intel_plane
*intel_plane
= to_intel_plane(drm_plane
);
191 struct drm_i915_gem_object
*obj
= intel_fb_obj(fb
);
192 const int pipe
= intel_plane
->pipe
;
193 const int plane
= intel_plane
->plane
+ 1;
194 u32 plane_ctl
, stride_div
, stride
;
195 int pixel_size
= drm_format_plane_cpp(fb
->pixel_format
, 0);
196 const struct drm_intel_sprite_colorkey
*key
=
197 &to_intel_plane_state(drm_plane
->state
)->ckey
;
198 unsigned long surf_addr
;
199 u32 tile_height
, plane_offset
, plane_size
;
200 unsigned int rotation
;
201 int x_offset
, y_offset
;
202 struct intel_crtc_state
*crtc_state
= to_intel_crtc(crtc
)->config
;
205 plane_ctl
= PLANE_CTL_ENABLE
|
206 PLANE_CTL_PIPE_GAMMA_ENABLE
|
207 PLANE_CTL_PIPE_CSC_ENABLE
;
209 plane_ctl
|= skl_plane_ctl_format(fb
->pixel_format
);
210 plane_ctl
|= skl_plane_ctl_tiling(fb
->modifier
[0]);
212 rotation
= drm_plane
->state
->rotation
;
213 plane_ctl
|= skl_plane_ctl_rotation(rotation
);
215 intel_update_sprite_watermarks(drm_plane
, crtc
, src_w
, src_h
,
217 src_w
!= crtc_w
|| src_h
!= crtc_h
);
219 stride_div
= intel_fb_stride_alignment(dev
, fb
->modifier
[0],
222 scaler_id
= to_intel_plane_state(drm_plane
->state
)->scaler_id
;
224 /* Sizes are 0 based */
231 I915_WRITE(PLANE_KEYVAL(pipe
, plane
), key
->min_value
);
232 I915_WRITE(PLANE_KEYMAX(pipe
, plane
), key
->max_value
);
233 I915_WRITE(PLANE_KEYMSK(pipe
, plane
), key
->channel_mask
);
236 if (key
->flags
& I915_SET_COLORKEY_DESTINATION
)
237 plane_ctl
|= PLANE_CTL_KEY_ENABLE_DESTINATION
;
238 else if (key
->flags
& I915_SET_COLORKEY_SOURCE
)
239 plane_ctl
|= PLANE_CTL_KEY_ENABLE_SOURCE
;
241 surf_addr
= intel_plane_obj_offset(intel_plane
, obj
, 0);
243 if (intel_rotation_90_or_270(rotation
)) {
244 /* stride: Surface height in tiles */
245 tile_height
= intel_tile_height(dev
, fb
->pixel_format
,
247 stride
= DIV_ROUND_UP(fb
->height
, tile_height
);
248 plane_size
= (src_w
<< 16) | src_h
;
249 x_offset
= stride
* tile_height
- y
- (src_h
+ 1);
252 stride
= fb
->pitches
[0] / stride_div
;
253 plane_size
= (src_h
<< 16) | src_w
;
257 plane_offset
= y_offset
<< 16 | x_offset
;
259 I915_WRITE(PLANE_OFFSET(pipe
, plane
), plane_offset
);
260 I915_WRITE(PLANE_STRIDE(pipe
, plane
), stride
);
261 I915_WRITE(PLANE_SIZE(pipe
, plane
), plane_size
);
263 /* program plane scaler */
264 if (scaler_id
>= 0) {
265 uint32_t ps_ctrl
= 0;
267 DRM_DEBUG_KMS("plane = %d PS_PLANE_SEL(plane) = 0x%x\n", plane
,
268 PS_PLANE_SEL(plane
));
269 ps_ctrl
= PS_SCALER_EN
| PS_PLANE_SEL(plane
) |
270 crtc_state
->scaler_state
.scalers
[scaler_id
].mode
;
271 I915_WRITE(SKL_PS_CTRL(pipe
, scaler_id
), ps_ctrl
);
272 I915_WRITE(SKL_PS_PWR_GATE(pipe
, scaler_id
), 0);
273 I915_WRITE(SKL_PS_WIN_POS(pipe
, scaler_id
), (crtc_x
<< 16) | crtc_y
);
274 I915_WRITE(SKL_PS_WIN_SZ(pipe
, scaler_id
),
275 ((crtc_w
+ 1) << 16)|(crtc_h
+ 1));
277 I915_WRITE(PLANE_POS(pipe
, plane
), 0);
279 I915_WRITE(PLANE_POS(pipe
, plane
), (crtc_y
<< 16) | crtc_x
);
282 I915_WRITE(PLANE_CTL(pipe
, plane
), plane_ctl
);
283 I915_WRITE(PLANE_SURF(pipe
, plane
), surf_addr
);
284 POSTING_READ(PLANE_SURF(pipe
, plane
));
288 skl_disable_plane(struct drm_plane
*dplane
, struct drm_crtc
*crtc
)
290 struct drm_device
*dev
= dplane
->dev
;
291 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
292 struct intel_plane
*intel_plane
= to_intel_plane(dplane
);
293 const int pipe
= intel_plane
->pipe
;
294 const int plane
= intel_plane
->plane
+ 1;
296 I915_WRITE(PLANE_CTL(pipe
, plane
), 0);
298 I915_WRITE(PLANE_SURF(pipe
, plane
), 0);
299 POSTING_READ(PLANE_SURF(pipe
, plane
));
301 intel_update_sprite_watermarks(dplane
, crtc
, 0, 0, 0, false, false);
305 chv_update_csc(struct intel_plane
*intel_plane
, uint32_t format
)
307 struct drm_i915_private
*dev_priv
= intel_plane
->base
.dev
->dev_private
;
308 int plane
= intel_plane
->plane
;
310 /* Seems RGB data bypasses the CSC always */
311 if (!format_is_yuv(format
))
315 * BT.601 limited range YCbCr -> full range RGB
317 * |r| | 6537 4769 0| |cr |
318 * |g| = |-3330 4769 -1605| x |y-64|
319 * |b| | 0 4769 8263| |cb |
321 * Cb and Cr apparently come in as signed already, so no
322 * need for any offset. For Y we need to remove the offset.
324 I915_WRITE(SPCSCYGOFF(plane
), SPCSC_OOFF(0) | SPCSC_IOFF(-64));
325 I915_WRITE(SPCSCCBOFF(plane
), SPCSC_OOFF(0) | SPCSC_IOFF(0));
326 I915_WRITE(SPCSCCROFF(plane
), SPCSC_OOFF(0) | SPCSC_IOFF(0));
328 I915_WRITE(SPCSCC01(plane
), SPCSC_C1(4769) | SPCSC_C0(6537));
329 I915_WRITE(SPCSCC23(plane
), SPCSC_C1(-3330) | SPCSC_C0(0));
330 I915_WRITE(SPCSCC45(plane
), SPCSC_C1(-1605) | SPCSC_C0(4769));
331 I915_WRITE(SPCSCC67(plane
), SPCSC_C1(4769) | SPCSC_C0(0));
332 I915_WRITE(SPCSCC8(plane
), SPCSC_C0(8263));
334 I915_WRITE(SPCSCYGICLAMP(plane
), SPCSC_IMAX(940) | SPCSC_IMIN(64));
335 I915_WRITE(SPCSCCBICLAMP(plane
), SPCSC_IMAX(448) | SPCSC_IMIN(-448));
336 I915_WRITE(SPCSCCRICLAMP(plane
), SPCSC_IMAX(448) | SPCSC_IMIN(-448));
338 I915_WRITE(SPCSCYGOCLAMP(plane
), SPCSC_OMAX(1023) | SPCSC_OMIN(0));
339 I915_WRITE(SPCSCCBOCLAMP(plane
), SPCSC_OMAX(1023) | SPCSC_OMIN(0));
340 I915_WRITE(SPCSCCROCLAMP(plane
), SPCSC_OMAX(1023) | SPCSC_OMIN(0));
344 vlv_update_plane(struct drm_plane
*dplane
, struct drm_crtc
*crtc
,
345 struct drm_framebuffer
*fb
,
346 int crtc_x
, int crtc_y
,
347 unsigned int crtc_w
, unsigned int crtc_h
,
348 uint32_t x
, uint32_t y
,
349 uint32_t src_w
, uint32_t src_h
)
351 struct drm_device
*dev
= dplane
->dev
;
352 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
353 struct intel_plane
*intel_plane
= to_intel_plane(dplane
);
354 struct drm_i915_gem_object
*obj
= intel_fb_obj(fb
);
355 int pipe
= intel_plane
->pipe
;
356 int plane
= intel_plane
->plane
;
358 unsigned long sprsurf_offset
, linear_offset
;
359 int pixel_size
= drm_format_plane_cpp(fb
->pixel_format
, 0);
360 const struct drm_intel_sprite_colorkey
*key
=
361 &to_intel_plane_state(dplane
->state
)->ckey
;
365 switch (fb
->pixel_format
) {
366 case DRM_FORMAT_YUYV
:
367 sprctl
|= SP_FORMAT_YUV422
| SP_YUV_ORDER_YUYV
;
369 case DRM_FORMAT_YVYU
:
370 sprctl
|= SP_FORMAT_YUV422
| SP_YUV_ORDER_YVYU
;
372 case DRM_FORMAT_UYVY
:
373 sprctl
|= SP_FORMAT_YUV422
| SP_YUV_ORDER_UYVY
;
375 case DRM_FORMAT_VYUY
:
376 sprctl
|= SP_FORMAT_YUV422
| SP_YUV_ORDER_VYUY
;
378 case DRM_FORMAT_RGB565
:
379 sprctl
|= SP_FORMAT_BGR565
;
381 case DRM_FORMAT_XRGB8888
:
382 sprctl
|= SP_FORMAT_BGRX8888
;
384 case DRM_FORMAT_ARGB8888
:
385 sprctl
|= SP_FORMAT_BGRA8888
;
387 case DRM_FORMAT_XBGR2101010
:
388 sprctl
|= SP_FORMAT_RGBX1010102
;
390 case DRM_FORMAT_ABGR2101010
:
391 sprctl
|= SP_FORMAT_RGBA1010102
;
393 case DRM_FORMAT_XBGR8888
:
394 sprctl
|= SP_FORMAT_RGBX8888
;
396 case DRM_FORMAT_ABGR8888
:
397 sprctl
|= SP_FORMAT_RGBA8888
;
401 * If we get here one of the upper layers failed to filter
402 * out the unsupported plane formats
409 * Enable gamma to match primary/cursor plane behaviour.
410 * FIXME should be user controllable via propertiesa.
412 sprctl
|= SP_GAMMA_ENABLE
;
414 if (obj
->tiling_mode
!= I915_TILING_NONE
)
417 /* Sizes are 0 based */
423 linear_offset
= y
* fb
->pitches
[0] + x
* pixel_size
;
424 sprsurf_offset
= intel_gen4_compute_page_offset(dev_priv
,
429 linear_offset
-= sprsurf_offset
;
431 if (dplane
->state
->rotation
== BIT(DRM_ROTATE_180
)) {
432 sprctl
|= SP_ROTATE_180
;
436 linear_offset
+= src_h
* fb
->pitches
[0] + src_w
* pixel_size
;
440 I915_WRITE(SPKEYMINVAL(pipe
, plane
), key
->min_value
);
441 I915_WRITE(SPKEYMAXVAL(pipe
, plane
), key
->max_value
);
442 I915_WRITE(SPKEYMSK(pipe
, plane
), key
->channel_mask
);
445 if (key
->flags
& I915_SET_COLORKEY_SOURCE
)
446 sprctl
|= SP_SOURCE_KEY
;
448 if (IS_CHERRYVIEW(dev
) && pipe
== PIPE_B
)
449 chv_update_csc(intel_plane
, fb
->pixel_format
);
451 I915_WRITE(SPSTRIDE(pipe
, plane
), fb
->pitches
[0]);
452 I915_WRITE(SPPOS(pipe
, plane
), (crtc_y
<< 16) | crtc_x
);
454 if (obj
->tiling_mode
!= I915_TILING_NONE
)
455 I915_WRITE(SPTILEOFF(pipe
, plane
), (y
<< 16) | x
);
457 I915_WRITE(SPLINOFF(pipe
, plane
), linear_offset
);
459 I915_WRITE(SPCONSTALPHA(pipe
, plane
), 0);
461 I915_WRITE(SPSIZE(pipe
, plane
), (crtc_h
<< 16) | crtc_w
);
462 I915_WRITE(SPCNTR(pipe
, plane
), sprctl
);
463 I915_WRITE(SPSURF(pipe
, plane
), i915_gem_obj_ggtt_offset(obj
) +
465 POSTING_READ(SPSURF(pipe
, plane
));
469 vlv_disable_plane(struct drm_plane
*dplane
, struct drm_crtc
*crtc
)
471 struct drm_device
*dev
= dplane
->dev
;
472 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
473 struct intel_plane
*intel_plane
= to_intel_plane(dplane
);
474 int pipe
= intel_plane
->pipe
;
475 int plane
= intel_plane
->plane
;
477 I915_WRITE(SPCNTR(pipe
, plane
), 0);
479 I915_WRITE(SPSURF(pipe
, plane
), 0);
480 POSTING_READ(SPSURF(pipe
, plane
));
484 ivb_update_plane(struct drm_plane
*plane
, struct drm_crtc
*crtc
,
485 struct drm_framebuffer
*fb
,
486 int crtc_x
, int crtc_y
,
487 unsigned int crtc_w
, unsigned int crtc_h
,
488 uint32_t x
, uint32_t y
,
489 uint32_t src_w
, uint32_t src_h
)
491 struct drm_device
*dev
= plane
->dev
;
492 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
493 struct intel_plane
*intel_plane
= to_intel_plane(plane
);
494 struct drm_i915_gem_object
*obj
= intel_fb_obj(fb
);
495 enum pipe pipe
= intel_plane
->pipe
;
496 u32 sprctl
, sprscale
= 0;
497 unsigned long sprsurf_offset
, linear_offset
;
498 int pixel_size
= drm_format_plane_cpp(fb
->pixel_format
, 0);
499 const struct drm_intel_sprite_colorkey
*key
=
500 &to_intel_plane_state(plane
->state
)->ckey
;
502 sprctl
= SPRITE_ENABLE
;
504 switch (fb
->pixel_format
) {
505 case DRM_FORMAT_XBGR8888
:
506 sprctl
|= SPRITE_FORMAT_RGBX888
| SPRITE_RGB_ORDER_RGBX
;
508 case DRM_FORMAT_XRGB8888
:
509 sprctl
|= SPRITE_FORMAT_RGBX888
;
511 case DRM_FORMAT_YUYV
:
512 sprctl
|= SPRITE_FORMAT_YUV422
| SPRITE_YUV_ORDER_YUYV
;
514 case DRM_FORMAT_YVYU
:
515 sprctl
|= SPRITE_FORMAT_YUV422
| SPRITE_YUV_ORDER_YVYU
;
517 case DRM_FORMAT_UYVY
:
518 sprctl
|= SPRITE_FORMAT_YUV422
| SPRITE_YUV_ORDER_UYVY
;
520 case DRM_FORMAT_VYUY
:
521 sprctl
|= SPRITE_FORMAT_YUV422
| SPRITE_YUV_ORDER_VYUY
;
528 * Enable gamma to match primary/cursor plane behaviour.
529 * FIXME should be user controllable via propertiesa.
531 sprctl
|= SPRITE_GAMMA_ENABLE
;
533 if (obj
->tiling_mode
!= I915_TILING_NONE
)
534 sprctl
|= SPRITE_TILED
;
536 if (IS_HASWELL(dev
) || IS_BROADWELL(dev
))
537 sprctl
&= ~SPRITE_TRICKLE_FEED_DISABLE
;
539 sprctl
|= SPRITE_TRICKLE_FEED_DISABLE
;
541 if (IS_HASWELL(dev
) || IS_BROADWELL(dev
))
542 sprctl
|= SPRITE_PIPE_CSC_ENABLE
;
544 intel_update_sprite_watermarks(plane
, crtc
, src_w
, src_h
, pixel_size
,
546 src_w
!= crtc_w
|| src_h
!= crtc_h
);
548 /* Sizes are 0 based */
554 if (crtc_w
!= src_w
|| crtc_h
!= src_h
)
555 sprscale
= SPRITE_SCALE_ENABLE
| (src_w
<< 16) | src_h
;
557 linear_offset
= y
* fb
->pitches
[0] + x
* pixel_size
;
559 intel_gen4_compute_page_offset(dev_priv
,
560 &x
, &y
, obj
->tiling_mode
,
561 pixel_size
, fb
->pitches
[0]);
562 linear_offset
-= sprsurf_offset
;
564 if (plane
->state
->rotation
== BIT(DRM_ROTATE_180
)) {
565 sprctl
|= SPRITE_ROTATE_180
;
567 /* HSW and BDW does this automagically in hardware */
568 if (!IS_HASWELL(dev
) && !IS_BROADWELL(dev
)) {
571 linear_offset
+= src_h
* fb
->pitches
[0] +
577 I915_WRITE(SPRKEYVAL(pipe
), key
->min_value
);
578 I915_WRITE(SPRKEYMAX(pipe
), key
->max_value
);
579 I915_WRITE(SPRKEYMSK(pipe
), key
->channel_mask
);
582 if (key
->flags
& I915_SET_COLORKEY_DESTINATION
)
583 sprctl
|= SPRITE_DEST_KEY
;
584 else if (key
->flags
& I915_SET_COLORKEY_SOURCE
)
585 sprctl
|= SPRITE_SOURCE_KEY
;
587 I915_WRITE(SPRSTRIDE(pipe
), fb
->pitches
[0]);
588 I915_WRITE(SPRPOS(pipe
), (crtc_y
<< 16) | crtc_x
);
590 /* HSW consolidates SPRTILEOFF and SPRLINOFF into a single SPROFFSET
592 if (IS_HASWELL(dev
) || IS_BROADWELL(dev
))
593 I915_WRITE(SPROFFSET(pipe
), (y
<< 16) | x
);
594 else if (obj
->tiling_mode
!= I915_TILING_NONE
)
595 I915_WRITE(SPRTILEOFF(pipe
), (y
<< 16) | x
);
597 I915_WRITE(SPRLINOFF(pipe
), linear_offset
);
599 I915_WRITE(SPRSIZE(pipe
), (crtc_h
<< 16) | crtc_w
);
600 if (intel_plane
->can_scale
)
601 I915_WRITE(SPRSCALE(pipe
), sprscale
);
602 I915_WRITE(SPRCTL(pipe
), sprctl
);
603 I915_WRITE(SPRSURF(pipe
),
604 i915_gem_obj_ggtt_offset(obj
) + sprsurf_offset
);
605 POSTING_READ(SPRSURF(pipe
));
609 ivb_disable_plane(struct drm_plane
*plane
, struct drm_crtc
*crtc
)
611 struct drm_device
*dev
= plane
->dev
;
612 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
613 struct intel_plane
*intel_plane
= to_intel_plane(plane
);
614 int pipe
= intel_plane
->pipe
;
616 I915_WRITE(SPRCTL(pipe
), 0);
617 /* Can't leave the scaler enabled... */
618 if (intel_plane
->can_scale
)
619 I915_WRITE(SPRSCALE(pipe
), 0);
621 I915_WRITE(SPRSURF(pipe
), 0);
622 POSTING_READ(SPRSURF(pipe
));
626 ilk_update_plane(struct drm_plane
*plane
, struct drm_crtc
*crtc
,
627 struct drm_framebuffer
*fb
,
628 int crtc_x
, int crtc_y
,
629 unsigned int crtc_w
, unsigned int crtc_h
,
630 uint32_t x
, uint32_t y
,
631 uint32_t src_w
, uint32_t src_h
)
633 struct drm_device
*dev
= plane
->dev
;
634 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
635 struct intel_plane
*intel_plane
= to_intel_plane(plane
);
636 struct drm_i915_gem_object
*obj
= intel_fb_obj(fb
);
637 int pipe
= intel_plane
->pipe
;
638 unsigned long dvssurf_offset
, linear_offset
;
639 u32 dvscntr
, dvsscale
;
640 int pixel_size
= drm_format_plane_cpp(fb
->pixel_format
, 0);
641 const struct drm_intel_sprite_colorkey
*key
=
642 &to_intel_plane_state(plane
->state
)->ckey
;
644 dvscntr
= DVS_ENABLE
;
646 switch (fb
->pixel_format
) {
647 case DRM_FORMAT_XBGR8888
:
648 dvscntr
|= DVS_FORMAT_RGBX888
| DVS_RGB_ORDER_XBGR
;
650 case DRM_FORMAT_XRGB8888
:
651 dvscntr
|= DVS_FORMAT_RGBX888
;
653 case DRM_FORMAT_YUYV
:
654 dvscntr
|= DVS_FORMAT_YUV422
| DVS_YUV_ORDER_YUYV
;
656 case DRM_FORMAT_YVYU
:
657 dvscntr
|= DVS_FORMAT_YUV422
| DVS_YUV_ORDER_YVYU
;
659 case DRM_FORMAT_UYVY
:
660 dvscntr
|= DVS_FORMAT_YUV422
| DVS_YUV_ORDER_UYVY
;
662 case DRM_FORMAT_VYUY
:
663 dvscntr
|= DVS_FORMAT_YUV422
| DVS_YUV_ORDER_VYUY
;
670 * Enable gamma to match primary/cursor plane behaviour.
671 * FIXME should be user controllable via propertiesa.
673 dvscntr
|= DVS_GAMMA_ENABLE
;
675 if (obj
->tiling_mode
!= I915_TILING_NONE
)
676 dvscntr
|= DVS_TILED
;
679 dvscntr
|= DVS_TRICKLE_FEED_DISABLE
; /* must disable */
681 intel_update_sprite_watermarks(plane
, crtc
, src_w
, src_h
,
683 src_w
!= crtc_w
|| src_h
!= crtc_h
);
685 /* Sizes are 0 based */
692 if (crtc_w
!= src_w
|| crtc_h
!= src_h
)
693 dvsscale
= DVS_SCALE_ENABLE
| (src_w
<< 16) | src_h
;
695 linear_offset
= y
* fb
->pitches
[0] + x
* pixel_size
;
697 intel_gen4_compute_page_offset(dev_priv
,
698 &x
, &y
, obj
->tiling_mode
,
699 pixel_size
, fb
->pitches
[0]);
700 linear_offset
-= dvssurf_offset
;
702 if (plane
->state
->rotation
== BIT(DRM_ROTATE_180
)) {
703 dvscntr
|= DVS_ROTATE_180
;
707 linear_offset
+= src_h
* fb
->pitches
[0] + src_w
* pixel_size
;
711 I915_WRITE(DVSKEYVAL(pipe
), key
->min_value
);
712 I915_WRITE(DVSKEYMAX(pipe
), key
->max_value
);
713 I915_WRITE(DVSKEYMSK(pipe
), key
->channel_mask
);
716 if (key
->flags
& I915_SET_COLORKEY_DESTINATION
)
717 dvscntr
|= DVS_DEST_KEY
;
718 else if (key
->flags
& I915_SET_COLORKEY_SOURCE
)
719 dvscntr
|= DVS_SOURCE_KEY
;
721 I915_WRITE(DVSSTRIDE(pipe
), fb
->pitches
[0]);
722 I915_WRITE(DVSPOS(pipe
), (crtc_y
<< 16) | crtc_x
);
724 if (obj
->tiling_mode
!= I915_TILING_NONE
)
725 I915_WRITE(DVSTILEOFF(pipe
), (y
<< 16) | x
);
727 I915_WRITE(DVSLINOFF(pipe
), linear_offset
);
729 I915_WRITE(DVSSIZE(pipe
), (crtc_h
<< 16) | crtc_w
);
730 I915_WRITE(DVSSCALE(pipe
), dvsscale
);
731 I915_WRITE(DVSCNTR(pipe
), dvscntr
);
732 I915_WRITE(DVSSURF(pipe
),
733 i915_gem_obj_ggtt_offset(obj
) + dvssurf_offset
);
734 POSTING_READ(DVSSURF(pipe
));
738 ilk_disable_plane(struct drm_plane
*plane
, struct drm_crtc
*crtc
)
740 struct drm_device
*dev
= plane
->dev
;
741 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
742 struct intel_plane
*intel_plane
= to_intel_plane(plane
);
743 int pipe
= intel_plane
->pipe
;
745 I915_WRITE(DVSCNTR(pipe
), 0);
746 /* Disable the scaler */
747 I915_WRITE(DVSSCALE(pipe
), 0);
749 I915_WRITE(DVSSURF(pipe
), 0);
750 POSTING_READ(DVSSURF(pipe
));
754 intel_check_sprite_plane(struct drm_plane
*plane
,
755 struct intel_crtc_state
*crtc_state
,
756 struct intel_plane_state
*state
)
758 struct drm_device
*dev
= plane
->dev
;
759 struct drm_crtc
*crtc
= state
->base
.crtc
;
760 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
761 struct intel_plane
*intel_plane
= to_intel_plane(plane
);
762 struct drm_framebuffer
*fb
= state
->base
.fb
;
764 unsigned int crtc_w
, crtc_h
;
765 uint32_t src_x
, src_y
, src_w
, src_h
;
766 struct drm_rect
*src
= &state
->src
;
767 struct drm_rect
*dst
= &state
->dst
;
768 const struct drm_rect
*clip
= &state
->clip
;
770 int max_scale
, min_scale
;
775 state
->visible
= false;
779 /* Don't modify another pipe's plane */
780 if (intel_plane
->pipe
!= intel_crtc
->pipe
) {
781 DRM_DEBUG_KMS("Wrong plane <-> crtc mapping\n");
785 /* FIXME check all gen limits */
786 if (fb
->width
< 3 || fb
->height
< 3 || fb
->pitches
[0] > 16384) {
787 DRM_DEBUG_KMS("Unsuitable framebuffer for plane\n");
791 /* setup can_scale, min_scale, max_scale */
792 if (INTEL_INFO(dev
)->gen
>= 9) {
793 /* use scaler when colorkey is not required */
794 if (state
->ckey
.flags
== I915_SET_COLORKEY_NONE
) {
797 max_scale
= skl_max_scale(intel_crtc
, crtc_state
);
800 min_scale
= DRM_PLANE_HELPER_NO_SCALING
;
801 max_scale
= DRM_PLANE_HELPER_NO_SCALING
;
804 can_scale
= intel_plane
->can_scale
;
805 max_scale
= intel_plane
->max_downscale
<< 16;
806 min_scale
= intel_plane
->can_scale
? 1 : (1 << 16);
810 * FIXME the following code does a bunch of fuzzy adjustments to the
811 * coordinates and sizes. We probably need some way to decide whether
812 * more strict checking should be done instead.
814 drm_rect_rotate(src
, fb
->width
<< 16, fb
->height
<< 16,
815 state
->base
.rotation
);
817 hscale
= drm_rect_calc_hscale_relaxed(src
, dst
, min_scale
, max_scale
);
820 vscale
= drm_rect_calc_vscale_relaxed(src
, dst
, min_scale
, max_scale
);
823 state
->visible
= drm_rect_clip_scaled(src
, dst
, clip
, hscale
, vscale
);
827 crtc_w
= drm_rect_width(dst
);
828 crtc_h
= drm_rect_height(dst
);
830 if (state
->visible
) {
831 /* check again in case clipping clamped the results */
832 hscale
= drm_rect_calc_hscale(src
, dst
, min_scale
, max_scale
);
834 DRM_DEBUG_KMS("Horizontal scaling factor out of limits\n");
835 drm_rect_debug_print(src
, true);
836 drm_rect_debug_print(dst
, false);
841 vscale
= drm_rect_calc_vscale(src
, dst
, min_scale
, max_scale
);
843 DRM_DEBUG_KMS("Vertical scaling factor out of limits\n");
844 drm_rect_debug_print(src
, true);
845 drm_rect_debug_print(dst
, false);
850 /* Make the source viewport size an exact multiple of the scaling factors. */
851 drm_rect_adjust_size(src
,
852 drm_rect_width(dst
) * hscale
- drm_rect_width(src
),
853 drm_rect_height(dst
) * vscale
- drm_rect_height(src
));
855 drm_rect_rotate_inv(src
, fb
->width
<< 16, fb
->height
<< 16,
856 state
->base
.rotation
);
858 /* sanity check to make sure the src viewport wasn't enlarged */
859 WARN_ON(src
->x1
< (int) state
->base
.src_x
||
860 src
->y1
< (int) state
->base
.src_y
||
861 src
->x2
> (int) state
->base
.src_x
+ state
->base
.src_w
||
862 src
->y2
> (int) state
->base
.src_y
+ state
->base
.src_h
);
865 * Hardware doesn't handle subpixel coordinates.
866 * Adjust to (macro)pixel boundary, but be careful not to
867 * increase the source viewport size, because that could
868 * push the downscaling factor out of bounds.
870 src_x
= src
->x1
>> 16;
871 src_w
= drm_rect_width(src
) >> 16;
872 src_y
= src
->y1
>> 16;
873 src_h
= drm_rect_height(src
) >> 16;
875 if (format_is_yuv(fb
->pixel_format
)) {
880 * Must keep src and dst the
881 * same if we can't scale.
887 state
->visible
= false;
891 /* Check size restrictions when scaling */
892 if (state
->visible
&& (src_w
!= crtc_w
|| src_h
!= crtc_h
)) {
893 unsigned int width_bytes
;
897 /* FIXME interlacing min height is 6 */
899 if (crtc_w
< 3 || crtc_h
< 3)
900 state
->visible
= false;
902 if (src_w
< 3 || src_h
< 3)
903 state
->visible
= false;
905 pixel_size
= drm_format_plane_cpp(fb
->pixel_format
, 0);
906 width_bytes
= ((src_x
* pixel_size
) & 63) +
909 if (INTEL_INFO(dev
)->gen
< 9 && (src_w
> 2048 || src_h
> 2048 ||
910 width_bytes
> 4096 || fb
->pitches
[0] > 4096)) {
911 DRM_DEBUG_KMS("Source dimensions exceed hardware limits\n");
916 if (state
->visible
) {
917 src
->x1
= src_x
<< 16;
918 src
->x2
= (src_x
+ src_w
) << 16;
919 src
->y1
= src_y
<< 16;
920 src
->y2
= (src_y
+ src_h
) << 16;
924 dst
->x2
= crtc_x
+ crtc_w
;
926 dst
->y2
= crtc_y
+ crtc_h
;
932 intel_commit_sprite_plane(struct drm_plane
*plane
,
933 struct intel_plane_state
*state
)
935 struct drm_crtc
*crtc
= state
->base
.crtc
;
936 struct intel_plane
*intel_plane
= to_intel_plane(plane
);
937 struct drm_framebuffer
*fb
= state
->base
.fb
;
939 crtc
= crtc
? crtc
: plane
->crtc
;
941 if (!crtc
->state
->active
)
944 if (state
->visible
) {
945 intel_plane
->update_plane(plane
, crtc
, fb
,
946 state
->dst
.x1
, state
->dst
.y1
,
947 drm_rect_width(&state
->dst
),
948 drm_rect_height(&state
->dst
),
951 drm_rect_width(&state
->src
) >> 16,
952 drm_rect_height(&state
->src
) >> 16);
954 intel_plane
->disable_plane(plane
, crtc
);
958 int intel_sprite_set_colorkey(struct drm_device
*dev
, void *data
,
959 struct drm_file
*file_priv
)
961 struct drm_intel_sprite_colorkey
*set
= data
;
962 struct drm_plane
*plane
;
963 struct drm_plane_state
*plane_state
;
964 struct drm_atomic_state
*state
;
965 struct drm_modeset_acquire_ctx ctx
;
968 /* Make sure we don't try to enable both src & dest simultaneously */
969 if ((set
->flags
& (I915_SET_COLORKEY_DESTINATION
| I915_SET_COLORKEY_SOURCE
)) == (I915_SET_COLORKEY_DESTINATION
| I915_SET_COLORKEY_SOURCE
))
972 if (IS_VALLEYVIEW(dev
) &&
973 set
->flags
& I915_SET_COLORKEY_DESTINATION
)
976 plane
= drm_plane_find(dev
, set
->plane_id
);
977 if (!plane
|| plane
->type
!= DRM_PLANE_TYPE_OVERLAY
)
980 drm_modeset_acquire_init(&ctx
, 0);
982 state
= drm_atomic_state_alloc(plane
->dev
);
987 state
->acquire_ctx
= &ctx
;
990 plane_state
= drm_atomic_get_plane_state(state
, plane
);
991 ret
= PTR_ERR_OR_ZERO(plane_state
);
993 to_intel_plane_state(plane_state
)->ckey
= *set
;
994 ret
= drm_atomic_commit(state
);
1000 drm_atomic_state_clear(state
);
1001 drm_modeset_backoff(&ctx
);
1005 drm_atomic_state_free(state
);
1008 drm_modeset_drop_locks(&ctx
);
1009 drm_modeset_acquire_fini(&ctx
);
1013 static const uint32_t ilk_plane_formats
[] = {
1014 DRM_FORMAT_XRGB8888
,
1021 static const uint32_t snb_plane_formats
[] = {
1022 DRM_FORMAT_XBGR8888
,
1023 DRM_FORMAT_XRGB8888
,
1030 static const uint32_t vlv_plane_formats
[] = {
1032 DRM_FORMAT_ABGR8888
,
1033 DRM_FORMAT_ARGB8888
,
1034 DRM_FORMAT_XBGR8888
,
1035 DRM_FORMAT_XRGB8888
,
1036 DRM_FORMAT_XBGR2101010
,
1037 DRM_FORMAT_ABGR2101010
,
1044 static uint32_t skl_plane_formats
[] = {
1046 DRM_FORMAT_ABGR8888
,
1047 DRM_FORMAT_ARGB8888
,
1048 DRM_FORMAT_XBGR8888
,
1049 DRM_FORMAT_XRGB8888
,
1057 intel_plane_init(struct drm_device
*dev
, enum pipe pipe
, int plane
)
1059 struct intel_plane
*intel_plane
;
1060 struct intel_plane_state
*state
;
1061 unsigned long possible_crtcs
;
1062 const uint32_t *plane_formats
;
1063 int num_plane_formats
;
1066 if (INTEL_INFO(dev
)->gen
< 5)
1069 intel_plane
= kzalloc(sizeof(*intel_plane
), GFP_KERNEL
);
1073 state
= intel_create_plane_state(&intel_plane
->base
);
1078 intel_plane
->base
.state
= &state
->base
;
1080 switch (INTEL_INFO(dev
)->gen
) {
1083 intel_plane
->can_scale
= true;
1084 intel_plane
->max_downscale
= 16;
1085 intel_plane
->update_plane
= ilk_update_plane
;
1086 intel_plane
->disable_plane
= ilk_disable_plane
;
1089 plane_formats
= snb_plane_formats
;
1090 num_plane_formats
= ARRAY_SIZE(snb_plane_formats
);
1092 plane_formats
= ilk_plane_formats
;
1093 num_plane_formats
= ARRAY_SIZE(ilk_plane_formats
);
1099 if (IS_IVYBRIDGE(dev
)) {
1100 intel_plane
->can_scale
= true;
1101 intel_plane
->max_downscale
= 2;
1103 intel_plane
->can_scale
= false;
1104 intel_plane
->max_downscale
= 1;
1107 if (IS_VALLEYVIEW(dev
)) {
1108 intel_plane
->update_plane
= vlv_update_plane
;
1109 intel_plane
->disable_plane
= vlv_disable_plane
;
1111 plane_formats
= vlv_plane_formats
;
1112 num_plane_formats
= ARRAY_SIZE(vlv_plane_formats
);
1114 intel_plane
->update_plane
= ivb_update_plane
;
1115 intel_plane
->disable_plane
= ivb_disable_plane
;
1117 plane_formats
= snb_plane_formats
;
1118 num_plane_formats
= ARRAY_SIZE(snb_plane_formats
);
1122 intel_plane
->can_scale
= true;
1123 intel_plane
->update_plane
= skl_update_plane
;
1124 intel_plane
->disable_plane
= skl_disable_plane
;
1125 state
->scaler_id
= -1;
1127 plane_formats
= skl_plane_formats
;
1128 num_plane_formats
= ARRAY_SIZE(skl_plane_formats
);
1135 intel_plane
->pipe
= pipe
;
1136 intel_plane
->plane
= plane
;
1137 intel_plane
->frontbuffer_bit
= INTEL_FRONTBUFFER_SPRITE(pipe
, plane
);
1138 intel_plane
->check_plane
= intel_check_sprite_plane
;
1139 intel_plane
->commit_plane
= intel_commit_sprite_plane
;
1140 possible_crtcs
= (1 << pipe
);
1141 ret
= drm_universal_plane_init(dev
, &intel_plane
->base
, possible_crtcs
,
1143 plane_formats
, num_plane_formats
,
1144 DRM_PLANE_TYPE_OVERLAY
);
1150 intel_create_rotation_property(dev
, intel_plane
);
1152 drm_plane_helper_add(&intel_plane
->base
, &intel_plane_helper_funcs
);