All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915: Initialize audio only when display is present
@ 2017-11-10 13:31 Mika Kahola
  2017-11-10 13:37 ` Chris Wilson
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Mika Kahola @ 2017-11-10 13:31 UTC (permalink / raw)
  To: intel-gfx

At least in Coffee Lake it happens that we start initiliazing audio when
no display is connected. This was discovered by CI when running IGT test
case

drv_module_reload --r basic-no-display

The issue here is that the 'intel_device_info_runtime_init()' sets
num_pipes to 0 but before this happens the audio part has already started
to initialize itself. Later on the num_pipes is updated to 0 in
intel_device_info_runtime_init() and we hit that when audio part is digging
out ELD. This causes a warning in dmesg. To fix this issue, let's register
the audio driver only in a case when display is enabled.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103206
Signed-off-by: Mika Kahola <mika.kahola@intel.com>
---
 drivers/gpu/drm/i915/i915_drv.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
index e7e9e06..f3cee1b 100644
--- a/drivers/gpu/drm/i915/i915_drv.c
+++ b/drivers/gpu/drm/i915/i915_drv.c
@@ -1243,7 +1243,8 @@ static void i915_driver_register(struct drm_i915_private *dev_priv)
 	if (IS_GEN5(dev_priv))
 		intel_gpu_ips_init(dev_priv);
 
-	intel_audio_init(dev_priv);
+	if (!i915_modparams.disable_display)
+		intel_audio_init(dev_priv);
 
 	/*
 	 * Some ports require correctly set-up hpd registers for detection to
-- 
2.7.4

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH] drm/i915: Initialize audio only when display is present
  2017-11-10 13:31 [PATCH] drm/i915: Initialize audio only when display is present Mika Kahola
@ 2017-11-10 13:37 ` Chris Wilson
  2017-11-10 14:06   ` Mika Kahola
  2017-11-10 14:01 ` ✓ Fi.CI.BAT: success for " Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 8+ messages in thread
From: Chris Wilson @ 2017-11-10 13:37 UTC (permalink / raw)
  To: Mika Kahola, intel-gfx

Quoting Mika Kahola (2017-11-10 13:31:54)
> At least in Coffee Lake it happens that we start initiliazing audio when
> no display is connected. This was discovered by CI when running IGT test
> case
> 
> drv_module_reload --r basic-no-display
> 
> The issue here is that the 'intel_device_info_runtime_init()' sets
> num_pipes to 0 but before this happens the audio part has already started
> to initialize itself. Later on the num_pipes is updated to 0 in
> intel_device_info_runtime_init()

runtime_init happens twice? (I am confused by this pair of sentences.)

and we hit that when audio part is digging
> out ELD. This causes a warning in dmesg. To fix this issue, let's register
> the audio driver only in a case when display is enabled.
> 
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103206
> Signed-off-by: Mika Kahola <mika.kahola@intel.com>
> ---
>  drivers/gpu/drm/i915/i915_drv.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
> index e7e9e06..f3cee1b 100644
> --- a/drivers/gpu/drm/i915/i915_drv.c
> +++ b/drivers/gpu/drm/i915/i915_drv.c
> @@ -1243,7 +1243,8 @@ static void i915_driver_register(struct drm_i915_private *dev_priv)
>         if (IS_GEN5(dev_priv))
>                 intel_gpu_ips_init(dev_priv);
>  
> -       intel_audio_init(dev_priv);
> +       if (!i915_modparams.disable_display)

INTEL_INFO()->num_ports == 0 is the derived value that includes cases
where the display is fused off as well.
-Chris
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✓ Fi.CI.BAT: success for drm/i915: Initialize audio only when display is present
  2017-11-10 13:31 [PATCH] drm/i915: Initialize audio only when display is present Mika Kahola
  2017-11-10 13:37 ` Chris Wilson
@ 2017-11-10 14:01 ` Patchwork
  2017-11-10 15:33 ` ✓ Fi.CI.IGT: " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2017-11-10 14:01 UTC (permalink / raw)
  To: Mika Kahola; +Cc: intel-gfx

== Series Details ==

Series: drm/i915: Initialize audio only when display is present
URL   : https://patchwork.freedesktop.org/series/33601/
State : success

== Summary ==

Series 33601v1 drm/i915: Initialize audio only when display is present
https://patchwork.freedesktop.org/api/1.0/series/33601/revisions/1/mbox/

Test chamelium:
        Subgroup dp-crc-fast:
                pass       -> FAIL       (fi-kbl-7500u) fdo#102514

fdo#102514 https://bugs.freedesktop.org/show_bug.cgi?id=102514

fi-bdw-5557u     total:289  pass:268  dwarn:0   dfail:0   fail:0   skip:21  time:443s
fi-bdw-gvtdvm    total:289  pass:265  dwarn:0   dfail:0   fail:0   skip:24  time:451s
fi-blb-e6850     total:289  pass:223  dwarn:1   dfail:0   fail:0   skip:65  time:387s
fi-bsw-n3050     total:289  pass:243  dwarn:0   dfail:0   fail:0   skip:46  time:534s
fi-bwr-2160      total:289  pass:183  dwarn:0   dfail:0   fail:0   skip:106 time:273s
fi-bxt-dsi       total:289  pass:259  dwarn:0   dfail:0   fail:0   skip:30  time:502s
fi-bxt-j4205     total:289  pass:260  dwarn:0   dfail:0   fail:0   skip:29  time:505s
fi-byt-j1900     total:289  pass:254  dwarn:0   dfail:0   fail:0   skip:35  time:496s
fi-byt-n2820     total:289  pass:250  dwarn:0   dfail:0   fail:0   skip:39  time:490s
fi-elk-e7500     total:289  pass:229  dwarn:0   dfail:0   fail:0   skip:60  time:428s
fi-gdg-551       total:289  pass:178  dwarn:1   dfail:0   fail:1   skip:109 time:266s
fi-glk-1         total:289  pass:261  dwarn:0   dfail:0   fail:0   skip:28  time:540s
fi-hsw-4770      total:289  pass:262  dwarn:0   dfail:0   fail:0   skip:27  time:430s
fi-hsw-4770r     total:289  pass:262  dwarn:0   dfail:0   fail:0   skip:27  time:438s
fi-ilk-650       total:289  pass:228  dwarn:0   dfail:0   fail:0   skip:61  time:426s
fi-ivb-3520m     total:289  pass:260  dwarn:0   dfail:0   fail:0   skip:29  time:473s
fi-ivb-3770      total:289  pass:260  dwarn:0   dfail:0   fail:0   skip:29  time:464s
fi-kbl-7500u     total:289  pass:263  dwarn:1   dfail:0   fail:1   skip:24  time:475s
fi-kbl-7560u     total:289  pass:270  dwarn:0   dfail:0   fail:0   skip:19  time:519s
fi-kbl-7567u     total:289  pass:269  dwarn:0   dfail:0   fail:0   skip:20  time:487s
fi-kbl-r         total:289  pass:262  dwarn:0   dfail:0   fail:0   skip:27  time:539s
fi-pnv-d510      total:289  pass:222  dwarn:1   dfail:0   fail:0   skip:66  time:565s
fi-skl-6260u     total:289  pass:269  dwarn:0   dfail:0   fail:0   skip:20  time:458s
fi-skl-6600u     total:289  pass:262  dwarn:0   dfail:0   fail:0   skip:27  time:550s
fi-skl-6700hq    total:289  pass:263  dwarn:0   dfail:0   fail:0   skip:26  time:560s
fi-skl-6700k     total:289  pass:265  dwarn:0   dfail:0   fail:0   skip:24  time:522s
fi-skl-6770hq    total:289  pass:269  dwarn:0   dfail:0   fail:0   skip:20  time:494s
fi-skl-gvtdvm    total:289  pass:266  dwarn:0   dfail:0   fail:0   skip:23  time:462s
fi-snb-2520m     total:289  pass:250  dwarn:0   dfail:0   fail:0   skip:39  time:559s
fi-snb-2600      total:289  pass:249  dwarn:0   dfail:0   fail:0   skip:40  time:419s
Blacklisted hosts:
fi-cfl-s         total:289  pass:254  dwarn:3   dfail:0   fail:0   skip:32  time:537s
fi-cnl-y         total:289  pass:262  dwarn:0   dfail:0   fail:0   skip:27  time:566s
fi-glk-dsi       total:289  pass:85   dwarn:174 dfail:0   fail:0   skip:30  time:605s

c36994b067f0771eee4d3136f40c0c6040a8fa77 drm-tip: 2017y-11m-10d-11h-48m-19s UTC integration manifest
c6edd4b17266 drm/i915: Initialize audio only when display is present

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_7060/
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] drm/i915: Initialize audio only when display is present
  2017-11-10 13:37 ` Chris Wilson
@ 2017-11-10 14:06   ` Mika Kahola
  2017-11-10 15:48     ` Chris Wilson
  0 siblings, 1 reply; 8+ messages in thread
From: Mika Kahola @ 2017-11-10 14:06 UTC (permalink / raw)
  To: Chris Wilson, intel-gfx

On Fri, 2017-11-10 at 13:37 +0000, Chris Wilson wrote:
> Quoting Mika Kahola (2017-11-10 13:31:54)
> > 
> > At least in Coffee Lake it happens that we start initiliazing audio
> > when
> > no display is connected. This was discovered by CI when running IGT
> > test
> > case
> > 
> > drv_module_reload --r basic-no-display
> > 
> > The issue here is that the 'intel_device_info_runtime_init()' sets
> > num_pipes to 0 but before this happens the audio part has already
> > started
> > to initialize itself. Later on the num_pipes is updated to 0 in
> > intel_device_info_runtime_init()
> runtime_init happens twice? (I am confused by this pair of
> sentences.)
> 
> and we hit that when audio part is digging
This is tricky. i915_audio_component_get_eld() gets called from a sound
driver. Even though, I disable intel_audio_init() call, these num_pipes
warnings keep popping up in dmesg like this.

[  475.875800] Setting dangerous option reset - tainting kernel
[  476.966234] WARN_ON(pipe >= intel_info((dev_priv))->num_pipes)
[  476.966247] ------------[ cut here ]------------
[  476.966264] WARNING: CPU: 3 PID: 4697 at
drivers/gpu/drm/i915/intel_audio.c:782 get_saved_enc+0x6f/0x90 [i915]
[  476.966266] Modules linked in: snd_hda_codec_hdmi(+)
snd_hda_codec_realtek snd_hda_codec_generic snd_hda_intel snd_hda_codec
snd_hwdep snd_hda_core snd_pcm i915 vgem ax88179_178a usbnet
x86_pkg_temp_thermal intel_powerclamp mii coretemp crct10dif_pclmul
crc32_pclmul ghash_clmulni_intel e1000e ptp prime_numbers pps_core
i2c_hid [last unloaded: i915]
[  476.966302] CPU: 3 PID: 4697 Comm: modprobe Tainted:
G     U          4.14.0-rc8-CI-Trybot_1397+ #1
[  476.966303] Hardware name: Intel Corporation CoffeeLake Client
Platform/CoffeeLake S UDIMM RVP, BIOS CNLSFWR1.R00.X104.B11.1710091318
10/09/2017
[  476.966305] task: ffff8803f0622880 task.stack: ffffc90000718000
[  476.966320] RIP: 0010:get_saved_enc+0x6f/0x90 [i915]
[  476.966322] RSP: 0018:ffffc9000071ba58 EFLAGS: 00010292
[  476.966325] RAX: 0000000000000032 RBX: ffff8803f7b00000 RCX:
0000000000000006
[  476.966326] RDX: 000000000000203a RSI: ffffffff81d11254 RDI:
ffffffff81cc3d2e
[  476.966328] RBP: ffffc9000071ba58 R08: ffff8803f06231e0 R09:
0000000000000000
[  476.966329] R10: ffffc9000071ba58 R11: 0000000000000000 R12:
ffff8803f7b07738
[  476.966331] R13: ffff880452530278 R14: 0000000000000001 R15:
ffff880452530270
[  476.966332] FS:  00007fd67cba0700(0000) GS:ffff88045b2c0000(0000)
knlGS:0000000000000000
[  476.966334] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  476.966335] CR2: 000055cf58ac3050 CR3: 000000044e615003 CR4:
00000000003606e0
[  476.966337] DR0: 0000000000000000 DR1: 0000000000000000 DR2:
0000000000000000
[  476.966338] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7:
0000000000000400
[  476.966340] Call Trace:
[  476.966355]  i915_audio_component_get_eld+0x4c/0x160 [i915]
[  476.966361]  snd_hdac_acomp_get_eld+0x64/0x80 [snd_hda_core]
[  476.966365]  hdmi_present_sense+0xaa/0x390 [snd_hda_codec_hdmi]
[  476.966369]  generic_hdmi_build_controls+0x15b/0x200
[snd_hda_codec_hdmi]
[  476.966375]  snd_hda_codec_build_controls+0x188/0x1d0
[snd_hda_codec]
[  476.966379]  hda_codec_driver_probe+0x80/0x110 [snd_hda_codec]
[  476.966383]  driver_probe_device+0x29c/0x450
[  476.966386]  __driver_attach+0xe3/0xf0
[  476.966389]  ? driver_probe_device+0x450/0x450
[  476.966391]  bus_for_each_dev+0x62/0xa0
[  476.966395]  driver_attach+0x1e/0x20
[  476.966397]  bus_add_driver+0x173/0x270
[  476.966400]  driver_register+0x60/0xe0
[  476.966401]  ? 0xffffffffa012a000
[  476.966405]  __hda_codec_driver_register+0x5a/0x60 [snd_hda_codec]
[  476.966408]  hdmi_driver_init+0x1e/0x1000 [snd_hda_codec_hdmi]
[  476.966410]  do_one_initcall+0x43/0x170
[  476.966413]  ? rcu_read_lock_sched_held+0x7a/0x90
[  476.966415]  ? kmem_cache_alloc_trace+0x270/0x2d0
[  476.966419]  do_init_module+0x5f/0x206
[  476.966422]  load_module+0x2581/0x2dd0
[  476.966425]  ? show_coresize+0x30/0x30
[  476.966428]  ? kernel_read+0x31/0x50
[  476.966433]  SyS_finit_module+0xc1/0x100
[  476.966435]  ? SyS_finit_module+0xc1/0x100
[  476.966441]  entry_SYSCALL_64_fastpath+0x1c/0xb1
[  476.966442] RIP: 0033:0x7fd67c6d69f9
[  476.966444] RSP: 002b:00007fff8bd21c98 EFLAGS: 00000246 ORIG_RAX:
0000000000000139
[  476.966447] RAX: ffffffffffffffda RBX: ffffffff81492003 RCX:
00007fd67c6d69f9
[  476.966448] RDX: 0000000000000000 RSI: 000055cf57227f8b RDI:
0000000000000000
[  476.966450] RBP: ffffc9000071bf88 R08: 0000000000000000 R09:
0000000000000000
[  476.966451] R10: 0000000000000000 R11: 0000000000000246 R12:
0000000000040000
[  476.966453] R13: 000055cf58abd720 R14: 0000000000000000 R15:
000055cf58ac29f0
[  476.966455]  ? __this_cpu_preempt_check+0x13/0x20
[  476.966459] Code: 70 0b 74 05 3b 70 74 74 27 48 83 c2 01 39 d1 7f e0
31 c0 c3 55 48 c7 c6 08 19 40 a0 48 c7 c7 fa 81 3e a0 48 89 e5 e8 32 9a
db e0 <0f> ff 5d 31 c0 f3 c3 83 78 70 0b 74 f8 31 c0 85 d2 74 ad eb f0 
[  476.966542] ---[ end trace 0b809f2b0052649f ]---


> > 
> > out ELD. This causes a warning in dmesg. To fix this issue, let's
> > register
> > the audio driver only in a case when display is enabled.
> > 
> > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103206
> > Signed-off-by: Mika Kahola <mika.kahola@intel.com>
> > ---
> >  drivers/gpu/drm/i915/i915_drv.c | 3 ++-
> >  1 file changed, 2 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/gpu/drm/i915/i915_drv.c
> > b/drivers/gpu/drm/i915/i915_drv.c
> > index e7e9e06..f3cee1b 100644
> > --- a/drivers/gpu/drm/i915/i915_drv.c
> > +++ b/drivers/gpu/drm/i915/i915_drv.c
> > @@ -1243,7 +1243,8 @@ static void i915_driver_register(struct
> > drm_i915_private *dev_priv)
> >         if (IS_GEN5(dev_priv))
> >                 intel_gpu_ips_init(dev_priv);
> >  
> > -       intel_audio_init(dev_priv);
> > +       if (!i915_modparams.disable_display)
> INTEL_INFO()->num_ports == 0 is the derived value that includes cases
> where the display is fused off as well.
> -Chris
-- 
Mika Kahola - Intel OTC

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✓ Fi.CI.IGT: success for drm/i915: Initialize audio only when display is present
  2017-11-10 13:31 [PATCH] drm/i915: Initialize audio only when display is present Mika Kahola
  2017-11-10 13:37 ` Chris Wilson
  2017-11-10 14:01 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2017-11-10 15:33 ` Patchwork
  2017-11-14  9:15 ` ✓ Fi.CI.BAT: " Patchwork
  2017-11-14 10:32 ` ✗ Fi.CI.IGT: warning " Patchwork
  4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2017-11-10 15:33 UTC (permalink / raw)
  To: Mika Kahola; +Cc: intel-gfx

== Series Details ==

Series: drm/i915: Initialize audio only when display is present
URL   : https://patchwork.freedesktop.org/series/33601/
State : success

== Summary ==

Test kms_setmode:
        Subgroup basic:
                fail       -> PASS       (shard-hsw) fdo#99912
Test kms_busy:
        Subgroup extended-modeset-hang-oldfb-with-reset-render-c:
                dmesg-warn -> PASS       (shard-hsw) fdo#102249 +1

fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912
fdo#102249 https://bugs.freedesktop.org/show_bug.cgi?id=102249

shard-hsw        total:2584 pass:1452 dwarn:3   dfail:2   fail:9   skip:1118 time:9345s
Blacklisted hosts:
shard-apl        total:2584 pass:1602 dwarn:3   dfail:2   fail:22  skip:955 time:13062s
shard-kbl        total:2575 pass:1675 dwarn:27  dfail:3   fail:25  skip:844 time:10000s
shard-snb        total:2584 pass:1191 dwarn:2   dfail:2   fail:12  skip:1377 time:7701s

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_7060/shards.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] drm/i915: Initialize audio only when display is present
  2017-11-10 14:06   ` Mika Kahola
@ 2017-11-10 15:48     ` Chris Wilson
  0 siblings, 0 replies; 8+ messages in thread
From: Chris Wilson @ 2017-11-10 15:48 UTC (permalink / raw)
  To: mika.kahola

Quoting Mika Kahola (2017-11-10 14:06:38)
> On Fri, 2017-11-10 at 13:37 +0000, Chris Wilson wrote:
> > Quoting Mika Kahola (2017-11-10 13:31:54)
> > > 
> > > At least in Coffee Lake it happens that we start initiliazing audio
> > > when
> > > no display is connected. This was discovered by CI when running IGT
> > > test
> > > case
> > > 
> > > drv_module_reload --r basic-no-display
> > > 
> > > The issue here is that the 'intel_device_info_runtime_init()' sets
> > > num_pipes to 0 but before this happens the audio part has already
> > > started
> > > to initialize itself. Later on the num_pipes is updated to 0 in
> > > intel_device_info_runtime_init()
> > runtime_init happens twice? (I am confused by this pair of
> > sentences.)
> > 
> > and we hit that when audio part is digging
> This is tricky. i915_audio_component_get_eld() gets called from a sound
> driver. Even though, I disable intel_audio_init() call, these num_pipes
> warnings keep popping up in dmesg like this.

Ask for a kasan run. I don't see where i915 is unbound during cleanup.
component_del() only unbinds the master, and not itself. As I read the
code it seems like the old i915 device is not uncoupled.

First time I dipped my toe into the component code so take that with a
pinch of salt.
-Chris
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✓ Fi.CI.BAT: success for drm/i915: Initialize audio only when display is present
  2017-11-10 13:31 [PATCH] drm/i915: Initialize audio only when display is present Mika Kahola
                   ` (2 preceding siblings ...)
  2017-11-10 15:33 ` ✓ Fi.CI.IGT: " Patchwork
@ 2017-11-14  9:15 ` Patchwork
  2017-11-14 10:32 ` ✗ Fi.CI.IGT: warning " Patchwork
  4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2017-11-14  9:15 UTC (permalink / raw)
  To: Mika Kahola; +Cc: intel-gfx

== Series Details ==

Series: drm/i915: Initialize audio only when display is present
URL   : https://patchwork.freedesktop.org/series/33601/
State : success

== Summary ==

Series 33601v1 drm/i915: Initialize audio only when display is present
https://patchwork.freedesktop.org/api/1.0/series/33601/revisions/1/mbox/

Test chamelium:
        Subgroup dp-crc-fast:
                fail       -> PASS       (fi-kbl-7500u) fdo#102514
Test vgem_basic:
        Subgroup dmabuf-export:
                pass       -> INCOMPLETE (fi-byt-n2820) fdo#103714
                incomplete -> PASS       (fi-bsw-n3050) fdo#103706 +1
        Subgroup unload:
                notrun     -> INCOMPLETE (fi-bsw-n3050) fdo#103702

fdo#102514 https://bugs.freedesktop.org/show_bug.cgi?id=102514
fdo#103714 https://bugs.freedesktop.org/show_bug.cgi?id=103714
fdo#103706 https://bugs.freedesktop.org/show_bug.cgi?id=103706
fdo#103702 https://bugs.freedesktop.org/show_bug.cgi?id=103702

fi-bdw-5557u     total:285  pass:263  dwarn:0   dfail:1   fail:0   skip:20 
fi-bdw-gvtdvm    total:285  pass:260  dwarn:0   dfail:1   fail:0   skip:23 
fi-blb-e6850     total:285  pass:218  dwarn:1   dfail:1   fail:0   skip:64 
fi-bsw-n3050     total:285  pass:238  dwarn:0   dfail:1   fail:0   skip:45 
fi-bwr-2160      total:285  pass:178  dwarn:0   dfail:1   fail:0   skip:105
fi-bxt-dsi       total:278  pass:247  dwarn:0   dfail:1   fail:0   skip:29 
fi-bxt-j4205     total:278  pass:248  dwarn:0   dfail:1   fail:0   skip:28 
fi-byt-j1900     total:285  pass:249  dwarn:0   dfail:1   fail:0   skip:34 
fi-byt-n2820     total:278  pass:238  dwarn:0   dfail:1   fail:0   skip:38 
fi-elk-e7500     total:285  pass:224  dwarn:0   dfail:1   fail:0   skip:59 
fi-gdg-551       total:285  pass:174  dwarn:0   dfail:1   fail:1   skip:108
fi-glk-1         total:278  pass:249  dwarn:0   dfail:1   fail:0   skip:27 
fi-hsw-4770      total:285  pass:257  dwarn:0   dfail:1   fail:0   skip:26 
fi-hsw-4770r     total:285  pass:257  dwarn:0   dfail:1   fail:0   skip:26 
fi-ilk-650       total:285  pass:223  dwarn:0   dfail:1   fail:0   skip:60 
fi-ivb-3520m     total:285  pass:255  dwarn:0   dfail:1   fail:0   skip:28 
fi-ivb-3770      total:285  pass:255  dwarn:0   dfail:1   fail:0   skip:28 
fi-kbl-7500u     total:285  pass:259  dwarn:1   dfail:1   fail:0   skip:23 
fi-kbl-7560u     total:285  pass:265  dwarn:0   dfail:1   fail:0   skip:18 
fi-kbl-7567u     total:285  pass:264  dwarn:0   dfail:1   fail:0   skip:19 
fi-kbl-r         total:285  pass:257  dwarn:0   dfail:1   fail:0   skip:26 
fi-pnv-d510      total:285  pass:217  dwarn:1   dfail:1   fail:0   skip:65 
fi-skl-6260u     total:285  pass:264  dwarn:0   dfail:1   fail:0   skip:19 
fi-skl-6600u     total:285  pass:257  dwarn:0   dfail:1   fail:0   skip:26 
fi-skl-6700hq    total:285  pass:258  dwarn:0   dfail:1   fail:0   skip:25 
fi-skl-6700k     total:285  pass:260  dwarn:0   dfail:1   fail:0   skip:23 
fi-skl-6770hq    total:285  pass:264  dwarn:0   dfail:1   fail:0   skip:19 
fi-skl-gvtdvm    total:285  pass:261  dwarn:0   dfail:1   fail:0   skip:22 
fi-snb-2520m     total:246  pass:212  dwarn:0   dfail:0   fail:0   skip:33 
fi-snb-2600      total:285  pass:244  dwarn:0   dfail:1   fail:0   skip:39 
Blacklisted hosts:
fi-cfl-s         total:285  pass:252  dwarn:0   dfail:1   fail:0   skip:31 
fi-cnl-y failed to connect after reboot

47c27b789ea5499be24cd629a4f3b4ff741f29bf drm-tip: 2017y-11m-14d-00h-46m-56s UTC integration manifest
3b2487d6b445 drm/i915: Initialize audio only when display is present

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_7108/
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* ✗ Fi.CI.IGT: warning for drm/i915: Initialize audio only when display is present
  2017-11-10 13:31 [PATCH] drm/i915: Initialize audio only when display is present Mika Kahola
                   ` (3 preceding siblings ...)
  2017-11-14  9:15 ` ✓ Fi.CI.BAT: " Patchwork
@ 2017-11-14 10:32 ` Patchwork
  4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2017-11-14 10:32 UTC (permalink / raw)
  To: Mika Kahola; +Cc: intel-gfx

== Series Details ==

Series: drm/i915: Initialize audio only when display is present
URL   : https://patchwork.freedesktop.org/series/33601/
State : warning

== Summary ==

Test kms_flip:
        Subgroup basic-flip-vs-modeset:
                dmesg-warn -> PASS       (shard-hsw) fdo#102614
Test pm_rpm:
        Subgroup gem-execbuf:
                pass       -> SKIP       (shard-hsw)
Test kms_chv_cursor_fail:
        Subgroup pipe-c-64x64-bottom-edge:
                pass       -> SKIP       (shard-hsw)

fdo#102614 https://bugs.freedesktop.org/show_bug.cgi?id=102614

shard-hsw        total:2580 pass:1467 dwarn:2   dfail:2   fail:10  skip:1098 time:9335s
Blacklisted hosts:
shard-apl        total:2565 pass:1601 dwarn:2   dfail:1   fail:23  skip:936 time:12803s
shard-kbl        total:2565 pass:1688 dwarn:20  dfail:3   fail:24  skip:829 time:10578s
shard-snb        total:2584 pass:1209 dwarn:1   dfail:2   fail:11  skip:1361 time:7736s

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_7108/shards.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-11-14 10:32 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-10 13:31 [PATCH] drm/i915: Initialize audio only when display is present Mika Kahola
2017-11-10 13:37 ` Chris Wilson
2017-11-10 14:06   ` Mika Kahola
2017-11-10 15:48     ` Chris Wilson
2017-11-10 14:01 ` ✓ Fi.CI.BAT: success for " Patchwork
2017-11-10 15:33 ` ✓ Fi.CI.IGT: " Patchwork
2017-11-14  9:15 ` ✓ Fi.CI.BAT: " Patchwork
2017-11-14 10:32 ` ✗ Fi.CI.IGT: warning " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.