2014-08-04 7:51 GMT-03:00 Rodrigo Vivi <rodrigo.vivi@xxxxxxxxx>: > According to spec FBC on BDW and HSW are identical without any gaps. > So let's copy the nuke and let FBC really start compressing stuff. > > Without this patch we can verify with false color that nothing is being > compressed. With the nuke in place and false color it is possible > to see false color debugs. > > Unfortunatelly on some rings like BCS on BDW we have to avoid Bits 22:18 on > LRIs due to a high risk of hung. So, when using Blt ring for frontbuffer rend > cache would never been cleaned and FBC would stop compressing buffer. > One alternative is to cache clean on software frontbuffer tracking. > > v2: Fix rebase conflict. > v3: Do not clean cache on BCS ring. Instead use sw frontbuffer tracking. This patch causes lots of WARNs when running igt/pm_rpm/cursor and a few other similar test cases. Now the interesting this is that we're trying to do FBC flushing, but: - FBC is disabled by default - The screen is disabled - We're runtime suspended - We're touching cursors when we decide to flush FBC. This is the first WARN that happens: [ 123.581179] [drm:intel_runtime_suspend] Device suspended [ 123.680666] ------------[ cut here ]------------ [ 123.680697] WARNING: CPU: 1 PID: 1776 at drivers/gpu/drm/i915/intel_uncore.c:47 assert_device_not_suspended.isra.8+0x43/0x50 [i915]() [ 123.680699] Device suspended [ 123.680700] Modules linked in: intel_rapl x86_pkg_temp_thermal serio_raw intel_powerclamp efivars btusb iwlmvm iwlwifi mei_me mei int3403_thermal snd_hda_codec_hdmi snd_hda_intel snd_hda_controller i2c_designware_platform snd_hda_codec i2c_designware_core snd_hwdep snd_pcm_oss snd_mixer_oss acpi_pad snd_pcm snd_timer fuse nls_utf8 nls_cp437 vfat fat sd_mod ahci libahci i915 sdhci_pci e1000e drm_kms_helper drm sdhci_acpi sdhci [ 123.680733] CPU: 1 PID: 1776 Comm: pm_rpm Not tainted 3.17.0-rc2.1409051503pz+ #1100 [ 123.680736] Hardware name: Intel Corporation Broadwell Client platform/Wilson Beach SDS, BIOS BDW-E2R1.86C.0072.R03.1405072127 05/07/2014 [ 123.680738] 0000000000000009 ffff88024174fab8 ffffffff816f6d23 ffff88024174fb00 [ 123.680742] ffff88024174faf0 ffffffff8107b368 ffff880037700000 0000000000050380 [ 123.680746] 0000000000050380 ffff880037700068 0000000000000001 ffff88024174fb50 [ 123.680751] Call Trace: [ 123.680758] [<ffffffff816f6d23>] dump_stack+0x4d/0x66 [ 123.680763] [<ffffffff8107b368>] warn_slowpath_common+0x78/0xa0 [ 123.680766] [<ffffffff8107b3d7>] warn_slowpath_fmt+0x47/0x50 [ 123.680772] [<ffffffff810c0efd>] ? trace_hardirqs_on_caller+0x15d/0x200 [ 123.680791] [<ffffffffa0118c63>] assert_device_not_suspended.isra.8+0x43/0x50 [i915] [ 123.680809] [<ffffffffa011cbd5>] gen8_write32+0x35/0x180 [i915] [ 123.680821] [<ffffffffa00dbb49>] gen8_fbc_sw_flush+0x29/0x30 [i915] [ 123.680840] [<ffffffffa013150d>] intel_frontbuffer_flush+0x7d/0x90 [i915] [ 123.680859] [<ffffffffa0135f6b>] intel_cursor_plane_update+0x13b/0x150 [i915] [ 123.680876] [<ffffffffa00276b0>] setplane_internal+0x260/0x2a0 [drm] [ 123.680889] [<ffffffffa002780e>] drm_mode_cursor_common+0x11e/0x310 [drm] [ 123.680904] [<ffffffffa002ae1c>] drm_mode_cursor_ioctl+0x3c/0x40 [drm] [ 123.680914] [<ffffffffa001cc9f>] drm_ioctl+0x1df/0x6a0 [drm] [ 123.680920] [<ffffffff816fe769>] ? mutex_unlock+0x9/0x10 [ 123.680924] [<ffffffff811f3856>] ? seq_read+0xb6/0x3e0 [ 123.680929] [<ffffffff811e2540>] do_vfs_ioctl+0x2e0/0x4e0 [ 123.680934] [<ffffffff81701077>] ? sysret_check+0x1b/0x56 [ 123.680939] [<ffffffff810c0efd>] ? trace_hardirqs_on_caller+0x15d/0x200 [ 123.680943] [<ffffffff811e27c1>] SyS_ioctl+0x81/0xa0 [ 123.680947] [<ffffffff81701052>] system_call_fastpath+0x16/0x1b [ 123.680949] ---[ end trace 9f389682639d2eb9 ]--- [ 123.680953] ------------[ cut here ]------------ So, what we can/could do: 1 - Change gen8_fbc_sw_flush() do to nothing when FBC is disabled. 2 - At some point of the stack above, avoid calling everything else if the screen and/or plane and/or crtc is disabled. But when? At intel_cursor_plane_update? At intel_frontbuffer_flush? 3 - Don't call gen8_fbc_sw_flush if the frontbuffer_bits don't include the primary plane bits (since, AFAIR, FBC ignores the sprite and cursors, right?) Is anybody against any of the 3 items above? Also notice that the "cursor" subtest is not the only one that causes these WARNs, so I expect similar backtraces with other similar solutions for equivalent problems with the other planes. Thanks, Paulo > > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@xxxxxxxxx> > --- > drivers/gpu/drm/i915/i915_drv.h | 1 + > drivers/gpu/drm/i915/intel_display.c | 3 +++ > drivers/gpu/drm/i915/intel_pm.c | 10 ++++++++++ > drivers/gpu/drm/i915/intel_ringbuffer.c | 10 +++++++++- > 4 files changed, 23 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h > index 2a372f2..25d7365 100644 > --- a/drivers/gpu/drm/i915/i915_drv.h > +++ b/drivers/gpu/drm/i915/i915_drv.h > @@ -2713,6 +2713,7 @@ extern void intel_modeset_setup_hw_state(struct drm_device *dev, > extern void i915_redisable_vga(struct drm_device *dev); > extern void i915_redisable_vga_power_on(struct drm_device *dev); > extern bool intel_fbc_enabled(struct drm_device *dev); > +extern void gen8_fbc_sw_flush(struct drm_device *dev, u32 value); > extern void intel_disable_fbc(struct drm_device *dev); > extern bool ironlake_set_drps(struct drm_device *dev, u8 val); > extern void intel_init_pch_refclk(struct drm_device *dev); > diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c > index 883af0b..c8421cd 100644 > --- a/drivers/gpu/drm/i915/intel_display.c > +++ b/drivers/gpu/drm/i915/intel_display.c > @@ -9044,6 +9044,9 @@ void intel_frontbuffer_flush(struct drm_device *dev, > intel_mark_fb_busy(dev, frontbuffer_bits, NULL); > > intel_edp_psr_flush(dev, frontbuffer_bits); > + > + if (IS_GEN8(dev)) > + gen8_fbc_sw_flush(dev, FBC_REND_CACHE_CLEAN); > } > > /** > diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel_pm.c > index 684dc5f..de07d3e 100644 > --- a/drivers/gpu/drm/i915/intel_pm.c > +++ b/drivers/gpu/drm/i915/intel_pm.c > @@ -345,6 +345,16 @@ bool intel_fbc_enabled(struct drm_device *dev) > return dev_priv->display.fbc_enabled(dev); > } > > +void gen8_fbc_sw_flush(struct drm_device *dev, u32 value) > +{ > + struct drm_i915_private *dev_priv = dev->dev_private; > + > + if (!IS_GEN8(dev)) > + return; > + > + I915_WRITE(MSG_FBC_REND_STATE, value); > +} > + > static void intel_fbc_work_fn(struct work_struct *__work) > { > struct intel_fbc_work *work = > diff --git a/drivers/gpu/drm/i915/intel_ringbuffer.c b/drivers/gpu/drm/i915/intel_ringbuffer.c > index 2908896..2fe871c 100644 > --- a/drivers/gpu/drm/i915/intel_ringbuffer.c > +++ b/drivers/gpu/drm/i915/intel_ringbuffer.c > @@ -406,6 +406,7 @@ gen8_render_ring_flush(struct intel_engine_cs *ring, > { > u32 flags = 0; > u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES; > + int ret; > > flags |= PIPE_CONTROL_CS_STALL; > > @@ -424,7 +425,14 @@ gen8_render_ring_flush(struct intel_engine_cs *ring, > flags |= PIPE_CONTROL_GLOBAL_GTT_IVB; > } > > - return gen8_emit_pipe_control(ring, flags, scratch_addr); > + ret = gen8_emit_pipe_control(ring, flags, scratch_addr); > + if (ret) > + return ret; > + > + if (!invalidate_domains && flush_domains) > + return gen7_ring_fbc_flush(ring, FBC_REND_NUKE); > + > + return 0; > } > > static void ring_write_tail(struct intel_engine_cs *ring, > -- > 1.9.3 > > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@xxxxxxxxxxxxxxxxxxxxx > http://lists.freedesktop.org/mailman/listinfo/intel-gfx -- Paulo Zanoni _______________________________________________ Intel-gfx mailing list Intel-gfx@xxxxxxxxxxxxxxxxxxxxx http://lists.freedesktop.org/mailman/listinfo/intel-gfx