2 * Copyright © 2014 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
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
25 * DOC: Frame Buffer Compression (FBC)
27 * FBC tries to save memory bandwidth (and so power consumption) by
28 * compressing the amount of memory used by the display. It is total
29 * transparent to user space and completely handled in the kernel.
31 * The benefits of FBC are mostly visible with solid backgrounds and
32 * variation-less patterns. It comes from keeping the memory footprint small
33 * and having fewer memory pages opened and accessed for refreshing the display.
35 * i915 is responsible to reserve stolen memory for FBC and configure its
36 * offset on proper registers. The hardware takes care of all
37 * compress/decompress. However there are many known cases where we have to
38 * forcibly disable it to allow proper screen updates.
41 #include "intel_drv.h"
44 static void i8xx_fbc_disable(struct drm_device
*dev
)
46 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
49 dev_priv
->fbc
.enabled
= false;
51 /* Disable compression */
52 fbc_ctl
= I915_READ(FBC_CONTROL
);
53 if ((fbc_ctl
& FBC_CTL_EN
) == 0)
56 fbc_ctl
&= ~FBC_CTL_EN
;
57 I915_WRITE(FBC_CONTROL
, fbc_ctl
);
59 /* Wait for compressing bit to clear */
60 if (wait_for((I915_READ(FBC_STATUS
) & FBC_STAT_COMPRESSING
) == 0, 10)) {
61 DRM_DEBUG_KMS("FBC idle timed out\n");
65 DRM_DEBUG_KMS("disabled FBC\n");
68 static void i8xx_fbc_enable(struct drm_crtc
*crtc
)
70 struct drm_device
*dev
= crtc
->dev
;
71 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
72 struct drm_framebuffer
*fb
= crtc
->primary
->fb
;
73 struct drm_i915_gem_object
*obj
= intel_fb_obj(fb
);
74 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
79 dev_priv
->fbc
.enabled
= true;
81 cfb_pitch
= dev_priv
->fbc
.size
/ FBC_LL_SIZE
;
82 if (fb
->pitches
[0] < cfb_pitch
)
83 cfb_pitch
= fb
->pitches
[0];
85 /* FBC_CTL wants 32B or 64B units */
87 cfb_pitch
= (cfb_pitch
/ 32) - 1;
89 cfb_pitch
= (cfb_pitch
/ 64) - 1;
92 for (i
= 0; i
< (FBC_LL_SIZE
/ 32) + 1; i
++)
93 I915_WRITE(FBC_TAG
+ (i
* 4), 0);
99 fbc_ctl2
= FBC_CTL_FENCE_DBL
| FBC_CTL_IDLE_IMM
| FBC_CTL_CPU_FENCE
;
100 fbc_ctl2
|= FBC_CTL_PLANE(intel_crtc
->plane
);
101 I915_WRITE(FBC_CONTROL2
, fbc_ctl2
);
102 I915_WRITE(FBC_FENCE_OFF
, crtc
->y
);
106 fbc_ctl
= I915_READ(FBC_CONTROL
);
107 fbc_ctl
&= 0x3fff << FBC_CTL_INTERVAL_SHIFT
;
108 fbc_ctl
|= FBC_CTL_EN
| FBC_CTL_PERIODIC
;
110 fbc_ctl
|= FBC_CTL_C3_IDLE
; /* 945 needs special SR handling */
111 fbc_ctl
|= (cfb_pitch
& 0xff) << FBC_CTL_STRIDE_SHIFT
;
112 fbc_ctl
|= obj
->fence_reg
;
113 I915_WRITE(FBC_CONTROL
, fbc_ctl
);
115 DRM_DEBUG_KMS("enabled FBC, pitch %d, yoff %d, plane %c\n",
116 cfb_pitch
, crtc
->y
, plane_name(intel_crtc
->plane
));
119 static bool i8xx_fbc_enabled(struct drm_device
*dev
)
121 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
123 return I915_READ(FBC_CONTROL
) & FBC_CTL_EN
;
126 static void g4x_fbc_enable(struct drm_crtc
*crtc
)
128 struct drm_device
*dev
= crtc
->dev
;
129 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
130 struct drm_framebuffer
*fb
= crtc
->primary
->fb
;
131 struct drm_i915_gem_object
*obj
= intel_fb_obj(fb
);
132 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
135 dev_priv
->fbc
.enabled
= true;
137 dpfc_ctl
= DPFC_CTL_PLANE(intel_crtc
->plane
) | DPFC_SR_EN
;
138 if (drm_format_plane_cpp(fb
->pixel_format
, 0) == 2)
139 dpfc_ctl
|= DPFC_CTL_LIMIT_2X
;
141 dpfc_ctl
|= DPFC_CTL_LIMIT_1X
;
142 dpfc_ctl
|= DPFC_CTL_FENCE_EN
| obj
->fence_reg
;
144 I915_WRITE(DPFC_FENCE_YOFF
, crtc
->y
);
147 I915_WRITE(DPFC_CONTROL
, dpfc_ctl
| DPFC_CTL_EN
);
149 DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(intel_crtc
->plane
));
152 static void g4x_fbc_disable(struct drm_device
*dev
)
154 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
157 dev_priv
->fbc
.enabled
= false;
159 /* Disable compression */
160 dpfc_ctl
= I915_READ(DPFC_CONTROL
);
161 if (dpfc_ctl
& DPFC_CTL_EN
) {
162 dpfc_ctl
&= ~DPFC_CTL_EN
;
163 I915_WRITE(DPFC_CONTROL
, dpfc_ctl
);
165 DRM_DEBUG_KMS("disabled FBC\n");
169 static bool g4x_fbc_enabled(struct drm_device
*dev
)
171 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
173 return I915_READ(DPFC_CONTROL
) & DPFC_CTL_EN
;
176 static void snb_fbc_blit_update(struct drm_device
*dev
)
178 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
181 /* Make sure blitter notifies FBC of writes */
183 /* Blitter is part of Media powerwell on VLV. No impact of
184 * his param in other platforms for now */
185 gen6_gt_force_wake_get(dev_priv
, FORCEWAKE_MEDIA
);
187 blt_ecoskpd
= I915_READ(GEN6_BLITTER_ECOSKPD
);
188 blt_ecoskpd
|= GEN6_BLITTER_FBC_NOTIFY
<<
189 GEN6_BLITTER_LOCK_SHIFT
;
190 I915_WRITE(GEN6_BLITTER_ECOSKPD
, blt_ecoskpd
);
191 blt_ecoskpd
|= GEN6_BLITTER_FBC_NOTIFY
;
192 I915_WRITE(GEN6_BLITTER_ECOSKPD
, blt_ecoskpd
);
193 blt_ecoskpd
&= ~(GEN6_BLITTER_FBC_NOTIFY
<<
194 GEN6_BLITTER_LOCK_SHIFT
);
195 I915_WRITE(GEN6_BLITTER_ECOSKPD
, blt_ecoskpd
);
196 POSTING_READ(GEN6_BLITTER_ECOSKPD
);
198 gen6_gt_force_wake_put(dev_priv
, FORCEWAKE_MEDIA
);
201 static void ilk_fbc_enable(struct drm_crtc
*crtc
)
203 struct drm_device
*dev
= crtc
->dev
;
204 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
205 struct drm_framebuffer
*fb
= crtc
->primary
->fb
;
206 struct drm_i915_gem_object
*obj
= intel_fb_obj(fb
);
207 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
210 dev_priv
->fbc
.enabled
= true;
212 dpfc_ctl
= DPFC_CTL_PLANE(intel_crtc
->plane
);
213 if (drm_format_plane_cpp(fb
->pixel_format
, 0) == 2)
214 dev_priv
->fbc
.threshold
++;
216 switch (dev_priv
->fbc
.threshold
) {
219 dpfc_ctl
|= DPFC_CTL_LIMIT_4X
;
222 dpfc_ctl
|= DPFC_CTL_LIMIT_2X
;
225 dpfc_ctl
|= DPFC_CTL_LIMIT_1X
;
228 dpfc_ctl
|= DPFC_CTL_FENCE_EN
;
230 dpfc_ctl
|= obj
->fence_reg
;
232 I915_WRITE(ILK_DPFC_FENCE_YOFF
, crtc
->y
);
233 I915_WRITE(ILK_FBC_RT_BASE
, i915_gem_obj_ggtt_offset(obj
) | ILK_FBC_RT_VALID
);
235 I915_WRITE(ILK_DPFC_CONTROL
, dpfc_ctl
| DPFC_CTL_EN
);
238 I915_WRITE(SNB_DPFC_CTL_SA
,
239 SNB_CPU_FENCE_ENABLE
| obj
->fence_reg
);
240 I915_WRITE(DPFC_CPU_FENCE_OFFSET
, crtc
->y
);
241 snb_fbc_blit_update(dev
);
244 DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(intel_crtc
->plane
));
247 static void ilk_fbc_disable(struct drm_device
*dev
)
249 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
252 dev_priv
->fbc
.enabled
= false;
254 /* Disable compression */
255 dpfc_ctl
= I915_READ(ILK_DPFC_CONTROL
);
256 if (dpfc_ctl
& DPFC_CTL_EN
) {
257 dpfc_ctl
&= ~DPFC_CTL_EN
;
258 I915_WRITE(ILK_DPFC_CONTROL
, dpfc_ctl
);
260 DRM_DEBUG_KMS("disabled FBC\n");
264 static bool ilk_fbc_enabled(struct drm_device
*dev
)
266 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
268 return I915_READ(ILK_DPFC_CONTROL
) & DPFC_CTL_EN
;
271 static void gen7_fbc_enable(struct drm_crtc
*crtc
)
273 struct drm_device
*dev
= crtc
->dev
;
274 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
275 struct drm_framebuffer
*fb
= crtc
->primary
->fb
;
276 struct drm_i915_gem_object
*obj
= intel_fb_obj(fb
);
277 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
280 dev_priv
->fbc
.enabled
= true;
282 dpfc_ctl
= IVB_DPFC_CTL_PLANE(intel_crtc
->plane
);
283 if (drm_format_plane_cpp(fb
->pixel_format
, 0) == 2)
284 dev_priv
->fbc
.threshold
++;
286 switch (dev_priv
->fbc
.threshold
) {
289 dpfc_ctl
|= DPFC_CTL_LIMIT_4X
;
292 dpfc_ctl
|= DPFC_CTL_LIMIT_2X
;
295 dpfc_ctl
|= DPFC_CTL_LIMIT_1X
;
299 dpfc_ctl
|= IVB_DPFC_CTL_FENCE_EN
;
301 if (dev_priv
->fbc
.false_color
)
302 dpfc_ctl
|= FBC_CTL_FALSE_COLOR
;
304 I915_WRITE(ILK_DPFC_CONTROL
, dpfc_ctl
| DPFC_CTL_EN
);
306 if (IS_IVYBRIDGE(dev
)) {
307 /* WaFbcAsynchFlipDisableFbcQueue:ivb */
308 I915_WRITE(ILK_DISPLAY_CHICKEN1
,
309 I915_READ(ILK_DISPLAY_CHICKEN1
) |
312 /* WaFbcAsynchFlipDisableFbcQueue:hsw,bdw */
313 I915_WRITE(CHICKEN_PIPESL_1(intel_crtc
->pipe
),
314 I915_READ(CHICKEN_PIPESL_1(intel_crtc
->pipe
)) |
318 I915_WRITE(SNB_DPFC_CTL_SA
,
319 SNB_CPU_FENCE_ENABLE
| obj
->fence_reg
);
320 I915_WRITE(DPFC_CPU_FENCE_OFFSET
, crtc
->y
);
322 snb_fbc_blit_update(dev
);
324 DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(intel_crtc
->plane
));
328 * intel_fbc_enabled - Is FBC enabled?
329 * @dev: the drm_device
331 * This function is used to verify the current state of FBC.
332 * FIXME: This should be tracked in the plane config eventually
333 * instead of queried at runtime for most callers.
335 bool intel_fbc_enabled(struct drm_device
*dev
)
337 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
339 return dev_priv
->fbc
.enabled
;
342 void bdw_fbc_sw_flush(struct drm_device
*dev
, u32 value
)
344 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
349 if (!intel_fbc_enabled(dev
))
352 I915_WRITE(MSG_FBC_REND_STATE
, value
);
355 static void intel_fbc_work_fn(struct work_struct
*__work
)
357 struct intel_fbc_work
*work
=
358 container_of(to_delayed_work(__work
),
359 struct intel_fbc_work
, work
);
360 struct drm_device
*dev
= work
->crtc
->dev
;
361 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
363 mutex_lock(&dev
->struct_mutex
);
364 if (work
== dev_priv
->fbc
.fbc_work
) {
365 /* Double check that we haven't switched fb without cancelling
368 if (work
->crtc
->primary
->fb
== work
->fb
) {
369 dev_priv
->display
.enable_fbc(work
->crtc
);
371 dev_priv
->fbc
.plane
= to_intel_crtc(work
->crtc
)->plane
;
372 dev_priv
->fbc
.fb_id
= work
->crtc
->primary
->fb
->base
.id
;
373 dev_priv
->fbc
.y
= work
->crtc
->y
;
376 dev_priv
->fbc
.fbc_work
= NULL
;
378 mutex_unlock(&dev
->struct_mutex
);
383 static void intel_fbc_cancel_work(struct drm_i915_private
*dev_priv
)
385 if (dev_priv
->fbc
.fbc_work
== NULL
)
388 DRM_DEBUG_KMS("cancelling pending FBC enable\n");
390 /* Synchronisation is provided by struct_mutex and checking of
391 * dev_priv->fbc.fbc_work, so we can perform the cancellation
392 * entirely asynchronously.
394 if (cancel_delayed_work(&dev_priv
->fbc
.fbc_work
->work
))
395 /* tasklet was killed before being run, clean up */
396 kfree(dev_priv
->fbc
.fbc_work
);
398 /* Mark the work as no longer wanted so that if it does
399 * wake-up (because the work was already running and waiting
400 * for our mutex), it will discover that is no longer
403 dev_priv
->fbc
.fbc_work
= NULL
;
406 static void intel_fbc_enable(struct drm_crtc
*crtc
)
408 struct intel_fbc_work
*work
;
409 struct drm_device
*dev
= crtc
->dev
;
410 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
412 if (!dev_priv
->display
.enable_fbc
)
415 intel_fbc_cancel_work(dev_priv
);
417 work
= kzalloc(sizeof(*work
), GFP_KERNEL
);
419 DRM_ERROR("Failed to allocate FBC work structure\n");
420 dev_priv
->display
.enable_fbc(crtc
);
425 work
->fb
= crtc
->primary
->fb
;
426 INIT_DELAYED_WORK(&work
->work
, intel_fbc_work_fn
);
428 dev_priv
->fbc
.fbc_work
= work
;
430 /* Delay the actual enabling to let pageflipping cease and the
431 * display to settle before starting the compression. Note that
432 * this delay also serves a second purpose: it allows for a
433 * vblank to pass after disabling the FBC before we attempt
434 * to modify the control registers.
436 * A more complicated solution would involve tracking vblanks
437 * following the termination of the page-flipping sequence
438 * and indeed performing the enable as a co-routine and not
439 * waiting synchronously upon the vblank.
441 * WaFbcWaitForVBlankBeforeEnable:ilk,snb
443 schedule_delayed_work(&work
->work
, msecs_to_jiffies(50));
447 * intel_fbc_disable - disable FBC
448 * @dev: the drm_device
450 * This function disables FBC.
452 void intel_fbc_disable(struct drm_device
*dev
)
454 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
456 intel_fbc_cancel_work(dev_priv
);
458 if (!dev_priv
->display
.disable_fbc
)
461 dev_priv
->display
.disable_fbc(dev
);
462 dev_priv
->fbc
.plane
= -1;
465 static bool set_no_fbc_reason(struct drm_i915_private
*dev_priv
,
466 enum no_fbc_reason reason
)
468 if (dev_priv
->fbc
.no_fbc_reason
== reason
)
471 dev_priv
->fbc
.no_fbc_reason
= reason
;
476 * intel_fbc_update - enable/disable FBC as needed
477 * @dev: the drm_device
479 * Set up the framebuffer compression hardware at mode set time. We
480 * enable it if possible:
481 * - plane A only (on pre-965)
482 * - no pixel mulitply/line duplication
483 * - no alpha buffer discard
485 * - framebuffer <= max_hdisplay in width, max_vdisplay in height
487 * We can't assume that any compression will take place (worst case),
488 * so the compressed buffer has to be the same size as the uncompressed
489 * one. It also must reside (along with the line length buffer) in
492 * We need to enable/disable FBC on a global basis.
494 void intel_fbc_update(struct drm_device
*dev
)
496 struct drm_i915_private
*dev_priv
= dev
->dev_private
;
497 struct drm_crtc
*crtc
= NULL
, *tmp_crtc
;
498 struct intel_crtc
*intel_crtc
;
499 struct drm_framebuffer
*fb
;
500 struct drm_i915_gem_object
*obj
;
501 const struct drm_display_mode
*adjusted_mode
;
502 unsigned int max_width
, max_height
;
505 set_no_fbc_reason(dev_priv
, FBC_UNSUPPORTED
);
509 if (!i915
.powersave
) {
510 if (set_no_fbc_reason(dev_priv
, FBC_MODULE_PARAM
))
511 DRM_DEBUG_KMS("fbc disabled per module param\n");
516 * If FBC is already on, we just have to verify that we can
517 * keep it that way...
518 * Need to disable if:
519 * - more than one pipe is active
520 * - changing FBC params (stride, fence, mode)
521 * - new fb is too large to fit in compressed buffer
522 * - going to an unsupported config (interlace, pixel multiply, etc.)
524 for_each_crtc(dev
, tmp_crtc
) {
525 if (intel_crtc_active(tmp_crtc
) &&
526 to_intel_crtc(tmp_crtc
)->primary_enabled
) {
528 if (set_no_fbc_reason(dev_priv
, FBC_MULTIPLE_PIPES
))
529 DRM_DEBUG_KMS("more than one pipe active, disabling compression\n");
536 if (!crtc
|| crtc
->primary
->fb
== NULL
) {
537 if (set_no_fbc_reason(dev_priv
, FBC_NO_OUTPUT
))
538 DRM_DEBUG_KMS("no output, disabling\n");
542 intel_crtc
= to_intel_crtc(crtc
);
543 fb
= crtc
->primary
->fb
;
544 obj
= intel_fb_obj(fb
);
545 adjusted_mode
= &intel_crtc
->config
->base
.adjusted_mode
;
547 if (i915
.enable_fbc
< 0) {
548 if (set_no_fbc_reason(dev_priv
, FBC_CHIP_DEFAULT
))
549 DRM_DEBUG_KMS("disabled per chip default\n");
552 if (!i915
.enable_fbc
) {
553 if (set_no_fbc_reason(dev_priv
, FBC_MODULE_PARAM
))
554 DRM_DEBUG_KMS("fbc disabled per module param\n");
557 if ((adjusted_mode
->flags
& DRM_MODE_FLAG_INTERLACE
) ||
558 (adjusted_mode
->flags
& DRM_MODE_FLAG_DBLSCAN
)) {
559 if (set_no_fbc_reason(dev_priv
, FBC_UNSUPPORTED_MODE
))
560 DRM_DEBUG_KMS("mode incompatible with compression, "
565 if (INTEL_INFO(dev
)->gen
>= 8 || IS_HASWELL(dev
)) {
568 } else if (IS_G4X(dev
) || INTEL_INFO(dev
)->gen
>= 5) {
575 if (intel_crtc
->config
->pipe_src_w
> max_width
||
576 intel_crtc
->config
->pipe_src_h
> max_height
) {
577 if (set_no_fbc_reason(dev_priv
, FBC_MODE_TOO_LARGE
))
578 DRM_DEBUG_KMS("mode too large for compression, disabling\n");
581 if ((INTEL_INFO(dev
)->gen
< 4 || HAS_DDI(dev
)) &&
582 intel_crtc
->plane
!= PLANE_A
) {
583 if (set_no_fbc_reason(dev_priv
, FBC_BAD_PLANE
))
584 DRM_DEBUG_KMS("plane not A, disabling compression\n");
588 /* The use of a CPU fence is mandatory in order to detect writes
589 * by the CPU to the scanout and trigger updates to the FBC.
591 if (obj
->tiling_mode
!= I915_TILING_X
||
592 obj
->fence_reg
== I915_FENCE_REG_NONE
) {
593 if (set_no_fbc_reason(dev_priv
, FBC_NOT_TILED
))
594 DRM_DEBUG_KMS("framebuffer not tiled or fenced, disabling compression\n");
597 if (INTEL_INFO(dev
)->gen
<= 4 && !IS_G4X(dev
) &&
598 to_intel_plane(crtc
->primary
)->rotation
!= BIT(DRM_ROTATE_0
)) {
599 if (set_no_fbc_reason(dev_priv
, FBC_UNSUPPORTED_MODE
))
600 DRM_DEBUG_KMS("Rotation unsupported, disabling\n");
604 /* If the kernel debugger is active, always disable compression */
608 if (i915_gem_stolen_setup_compression(dev
, obj
->base
.size
,
609 drm_format_plane_cpp(fb
->pixel_format
, 0))) {
610 if (set_no_fbc_reason(dev_priv
, FBC_STOLEN_TOO_SMALL
))
611 DRM_DEBUG_KMS("framebuffer too large, disabling compression\n");
615 /* If the scanout has not changed, don't modify the FBC settings.
616 * Note that we make the fundamental assumption that the fb->obj
617 * cannot be unpinned (and have its GTT offset and fence revoked)
618 * without first being decoupled from the scanout and FBC disabled.
620 if (dev_priv
->fbc
.plane
== intel_crtc
->plane
&&
621 dev_priv
->fbc
.fb_id
== fb
->base
.id
&&
622 dev_priv
->fbc
.y
== crtc
->y
)
625 if (intel_fbc_enabled(dev
)) {
626 /* We update FBC along two paths, after changing fb/crtc
627 * configuration (modeswitching) and after page-flipping
628 * finishes. For the latter, we know that not only did
629 * we disable the FBC at the start of the page-flip
630 * sequence, but also more than one vblank has passed.
632 * For the former case of modeswitching, it is possible
633 * to switch between two FBC valid configurations
634 * instantaneously so we do need to disable the FBC
635 * before we can modify its control registers. We also
636 * have to wait for the next vblank for that to take
637 * effect. However, since we delay enabling FBC we can
638 * assume that a vblank has passed since disabling and
639 * that we can safely alter the registers in the deferred
642 * In the scenario that we go from a valid to invalid
643 * and then back to valid FBC configuration we have
644 * no strict enforcement that a vblank occurred since
645 * disabling the FBC. However, along all current pipe
646 * disabling paths we do need to wait for a vblank at
647 * some point. And we wait before enabling FBC anyway.
649 DRM_DEBUG_KMS("disabling active FBC for update\n");
650 intel_fbc_disable(dev
);
653 intel_fbc_enable(crtc
);
654 dev_priv
->fbc
.no_fbc_reason
= FBC_OK
;
658 /* Multiple disables should be harmless */
659 if (intel_fbc_enabled(dev
)) {
660 DRM_DEBUG_KMS("unsupported config, disabling FBC\n");
661 intel_fbc_disable(dev
);
663 i915_gem_stolen_cleanup_compression(dev
);
667 * intel_fbc_init - Initialize FBC
668 * @dev_priv: the i915 device
670 * This function might be called during PM init process.
672 void intel_fbc_init(struct drm_i915_private
*dev_priv
)
674 if (!HAS_FBC(dev_priv
)) {
675 dev_priv
->fbc
.enabled
= false;
679 if (INTEL_INFO(dev_priv
)->gen
>= 7) {
680 dev_priv
->display
.fbc_enabled
= ilk_fbc_enabled
;
681 dev_priv
->display
.enable_fbc
= gen7_fbc_enable
;
682 dev_priv
->display
.disable_fbc
= ilk_fbc_disable
;
683 } else if (INTEL_INFO(dev_priv
)->gen
>= 5) {
684 dev_priv
->display
.fbc_enabled
= ilk_fbc_enabled
;
685 dev_priv
->display
.enable_fbc
= ilk_fbc_enable
;
686 dev_priv
->display
.disable_fbc
= ilk_fbc_disable
;
687 } else if (IS_GM45(dev_priv
)) {
688 dev_priv
->display
.fbc_enabled
= g4x_fbc_enabled
;
689 dev_priv
->display
.enable_fbc
= g4x_fbc_enable
;
690 dev_priv
->display
.disable_fbc
= g4x_fbc_disable
;
692 dev_priv
->display
.fbc_enabled
= i8xx_fbc_enabled
;
693 dev_priv
->display
.enable_fbc
= i8xx_fbc_enable
;
694 dev_priv
->display
.disable_fbc
= i8xx_fbc_disable
;
696 /* This value was pulled out of someone's hat */
697 I915_WRITE(FBC_CONTROL
, 500 << FBC_CTL_INTERVAL_SHIFT
);
700 dev_priv
->fbc
.enabled
= dev_priv
->display
.fbc_enabled(dev_priv
->dev
);