diff mbox

[1/1] drm: i915: don't use OpRegion for XPS 13 IvyBridge

Message ID 1472398126-1095-2-git-send-email-aarcange@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Andrea Arcangeli Aug. 28, 2016, 3:28 p.m. UTC
Skylake was already singled out, but it doesn't cover the XPS 13 L332X
model which is based on IvyBridge.

The commit that introduced the regression is
1d6da87a3241deb13d073c4125d19ed0e5a0c62c

The Skylake workaround for the regression was introduced in commit
aeddda06c1a704bb97c8a7bfe7a472120193bd56

Signed-off-by: Andrea Arcangeli <aarcange@redhat.com>
---
 drivers/gpu/drm/i915/intel_opregion.c | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

Comments

Jani Nikula Aug. 29, 2016, 7:24 a.m. UTC | #1
On Sun, 28 Aug 2016, Andrea Arcangeli <aarcange@redhat.com> wrote:
> Skylake was already singled out, but it doesn't cover the XPS 13 L332X
> model which is based on IvyBridge.
>
> The commit that introduced the regression is
> 1d6da87a3241deb13d073c4125d19ed0e5a0c62c

That's a merge commit, the real one is

commit a05628195a0d9f3173dd9aa76f482aef692e46ee
Author: Ville Syrjälä <ville.syrjala@linux.intel.com>
Date:   Mon Apr 11 10:23:51 2016 +0300

    drm/i915: Get panel_type from OpRegion panel details

> The Skylake workaround for the regression was introduced in commit
> aeddda06c1a704bb97c8a7bfe7a472120193bd56
>
> Signed-off-by: Andrea Arcangeli <aarcange@redhat.com>
> ---
>  drivers/gpu/drm/i915/intel_opregion.c | 12 +++++++-----
>  1 file changed, 7 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/intel_opregion.c b/drivers/gpu/drm/i915/intel_opregion.c
> index adca262..ca17ab6 100644
> --- a/drivers/gpu/drm/i915/intel_opregion.c
> +++ b/drivers/gpu/drm/i915/intel_opregion.c
> @@ -1073,12 +1073,14 @@ intel_opregion_get_panel_type(struct drm_i915_private *dev_priv)
>  	}
>  
>  	/*
> -	 * FIXME On Dell XPS 13 9350 the OpRegion panel type (0) gives us
> -	 * low vswing for eDP, whereas the VBT panel type (2) gives us normal
> -	 * vswing instead. Low vswing results in some display flickers, so
> -	 * let's simply ignore the OpRegion panel type on SKL for now.
> +	 * FIXME On Dell XPS 13 9350 and Dell XPS 13 L322X the
> +	 * OpRegion panel type (0) gives us low vswing for eDP,
> +	 * whereas the VBT panel type (2) gives us normal vswing
> +	 * instead. Low vswing results in some display flickers, so
> +	 * let's simply ignore the OpRegion panel type on SKL and
> +	 * IVYBRIDGE for now.
>  	 */

If it's an Iybridge, there's no low vswing, and that explanation is
false. You can verify by trying i915.edp_vswing=1 or i915.edp_vswing=2
on an unpatched kernel.

Doesn't mean there can't be something else wrong with the mode you get
using a different panel_type. And this makes me wonder what the point is
in trying to patch up the commit instead of reverting.


BR,
Jani.



> -	if (IS_SKYLAKE(dev_priv)) {
> +	if (IS_SKYLAKE(dev_priv) || IS_IVYBRIDGE(dev_priv)) {
>  		DRM_DEBUG_KMS("Ignoring OpRegion panel type (%d)\n", ret - 1);
>  		return -ENODEV;
>  	}
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
Andrea Arcangeli Aug. 29, 2016, 1:32 p.m. UTC | #2
On Mon, Aug 29, 2016 at 10:24:38AM +0300, Jani Nikula wrote:
> If it's an Iybridge, there's no low vswing, and that explanation is
> false. You can verify by trying i915.edp_vswing=1 or i915.edp_vswing=2
> on an unpatched kernel.

What I should look for when trying those two settings? Will they
successfully fix my problem with intel_backlight with upstream 4.8-rc?

I thought it had to be the same issue as on skylake as I get the
backlight flikering at low frequency but getting brighter and darker
in a cycle lasting a few seconds and I thought there couldn't be too
many other random bugs that ends up with the same side effect.

It looks like the hardware actually broke, software issue isn't the
first thing that comes to mind. As it's hard to imagine a timer in the
kernel reprogramming the backlight setting higher and lower just to
annoy me :). First in fact I thought at a plasma issue, but I tried to
downgrade the kernel first as that was quicker than downgrading
kde/plasma... I initially thought there were two userland daemons
stepping into each other toes.

Another thing is that if I keep decreasing the brightness the screen
eventually goes off and it returns on as I increase the backlight
level again (then low freq flickering starts). With acpi_video0 even
at the lowest brightness setting of 0, it never turns off the screen
completely.

> Doesn't mean there can't be something else wrong with the mode you get
> using a different panel_type. And this makes me wonder what the point is
> in trying to patch up the commit instead of reverting.

Reverting the whole thing would be sure fine with me, I don't know
what the benefits there should be in using intel_backlight instead of
acpi_video0 like the previous code did, but I couldn't imagine too
many hw to behave like this if intel_backlight clearly has to work
stable for someone or it wouldn't exist in the first place.

This is just a "echo " into a backlight file if I tweak the backlight
settings... doesn't sound performance critical stuff to me, ACPI will
do just fine. However I'm not even sure how this problem could surface
in the first place without the kernel continuously reprogramming the
hw values.
Jani Nikula Aug. 29, 2016, 3:08 p.m. UTC | #3
On Mon, 29 Aug 2016, Andrea Arcangeli <aarcange@redhat.com> wrote:
> On Mon, Aug 29, 2016 at 10:24:38AM +0300, Jani Nikula wrote:
>> If it's an Iybridge, there's no low vswing, and that explanation is
>> false. You can verify by trying i915.edp_vswing=1 or i915.edp_vswing=2
>> on an unpatched kernel.
>
> What I should look for when trying those two settings? Will they
> successfully fix my problem with intel_backlight with upstream 4.8-rc?
>
> I thought it had to be the same issue as on skylake as I get the
> backlight flikering at low frequency but getting brighter and darker
> in a cycle lasting a few seconds and I thought there couldn't be too
> many other random bugs that ends up with the same side effect.

Your Ivybridge does not have low voltage swing *and* low voltage swing
has nothing to do with the backlight. The regressing commit may be the
same for you, but the failure mode appears to be completely different.

BR,
Jani.
Andrea Arcangeli Aug. 29, 2016, 6:48 p.m. UTC | #4
On Mon, Aug 29, 2016 at 10:24:38AM +0300, Jani Nikula wrote:
> If it's an Iybridge, there's no low vswing, and that explanation is
> false. You can verify by trying i915.edp_vswing=1 or i915.edp_vswing=2
> on an unpatched kernel.

CC'ed Martin who filed the bz, he can reproduce too
https://bugzilla.kernel.org/show_bug.cgi?id=151731

Since you can reproduce would you have the time to test the two above
options on stock 4.7.x/4.8-rc and help tracking this down? I'm afraid
I won't be able to test it today and I'll be mostly offline for a week
starting tomorrow.

Thanks,
Andrea
Martin van Es Aug. 30, 2016, 6:54 a.m. UTC | #5
Hi Andrea,

I'd be happy to test, but what am I testing when applying these boot 
parameters? In other words: what should I report?

And just to be sure, I THINK I own an IVB but intel is not very vocal about it 
when searching for familyname. I have a

vendor_id       : GenuineIntel
cpu family      : 6
model           : 58
model name      : Intel(R) Core(TM) i7-3537U CPU @ 2.00GHz
stepping        : 9
microcode       : 0x17

Regards,
Martin

On maandag 29 augustus 2016 20:48:43 CEST Andrea Arcangeli wrote:
> On Mon, Aug 29, 2016 at 10:24:38AM +0300, Jani Nikula wrote:
> > If it's an Iybridge, there's no low vswing, and that explanation is
> > false. You can verify by trying i915.edp_vswing=1 or i915.edp_vswing=2
> > on an unpatched kernel.
> 
> CC'ed Martin who filed the bz, he can reproduce too
> https://bugzilla.kernel.org/show_bug.cgi?id=151731
> 
> Since you can reproduce would you have the time to test the two above
> options on stock 4.7.x/4.8-rc and help tracking this down? I'm afraid
> I won't be able to test it today and I'll be mostly offline for a week
> starting tomorrow.
> 
> Thanks,
> Andrea
Jani Nikula Aug. 30, 2016, 7:25 a.m. UTC | #6
On Mon, 29 Aug 2016, Andrea Arcangeli <aarcange@redhat.com> wrote:
> On Mon, Aug 29, 2016 at 10:24:38AM +0300, Jani Nikula wrote:
>> If it's an Iybridge, there's no low vswing, and that explanation is
>> false. You can verify by trying i915.edp_vswing=1 or i915.edp_vswing=2
>> on an unpatched kernel.
>
> CC'ed Martin who filed the bz, he can reproduce too
> https://bugzilla.kernel.org/show_bug.cgi?id=151731
>
> Since you can reproduce would you have the time to test the two above
> options on stock 4.7.x/4.8-rc and help tracking this down? I'm afraid
> I won't be able to test it today and I'll be mostly offline for a week
> starting tomorrow.

As I tried to explain, the low voltage swing is not related to backlight
issues.

BR,
Jani.

>
> Thanks,
> Andrea
Jani Nikula Aug. 30, 2016, 8:13 a.m. UTC | #7
On Tue, 30 Aug 2016, Martin van Es <martin@mrvanes.com> wrote:
> Hi Andrea,
>
> I'd be happy to test, but what am I testing when applying these boot 
> parameters? In other words: what should I report?

The point is, for an ivybridge setting those parameters should not make
*any* difference.

BR,
Jani.


>
> And just to be sure, I THINK I own an IVB but intel is not very vocal about it 
> when searching for familyname. I have a
>
> vendor_id       : GenuineIntel
> cpu family      : 6
> model           : 58
> model name      : Intel(R) Core(TM) i7-3537U CPU @ 2.00GHz
> stepping        : 9
> microcode       : 0x17
>
> Regards,
> Martin
>
> On maandag 29 augustus 2016 20:48:43 CEST Andrea Arcangeli wrote:
>> On Mon, Aug 29, 2016 at 10:24:38AM +0300, Jani Nikula wrote:
>> > If it's an Iybridge, there's no low vswing, and that explanation is
>> > false. You can verify by trying i915.edp_vswing=1 or i915.edp_vswing=2
>> > on an unpatched kernel.
>> 
>> CC'ed Martin who filed the bz, he can reproduce too
>> https://bugzilla.kernel.org/show_bug.cgi?id=151731
>> 
>> Since you can reproduce would you have the time to test the two above
>> options on stock 4.7.x/4.8-rc and help tracking this down? I'm afraid
>> I won't be able to test it today and I'll be mostly offline for a week
>> starting tomorrow.
>> 
>> Thanks,
>> Andrea
Martin van Es Aug. 30, 2016, 9:13 a.m. UTC | #8
On dinsdag 30 augustus 2016 11:13:40 CEST Jani Nikula wrote:
> On Tue, 30 Aug 2016, Martin van Es <martin@mrvanes.com> wrote:
> > Hi Andrea,
> > 
> > I'd be happy to test, but what am I testing when applying these boot
> > parameters? In other words: what should I report?
> 
> The point is, for an ivybridge setting those parameters should not make
> *any* difference.

I can confirm that neither i915.edp_vswing=1 nor i915.edp_vswing=2 fixes the 
problem in 4.7.2 for me (intel_backlight devices takes precedence).

Best regards,
Martin
Ville Syrjälä Sept. 6, 2016, 9:20 a.m. UTC | #9
On Sun, Aug 28, 2016 at 05:28:46PM +0200, Andrea Arcangeli wrote:
> Skylake was already singled out, but it doesn't cover the XPS 13 L332X
> model which is based on IvyBridge.
> 
> The commit that introduced the regression is
> 1d6da87a3241deb13d073c4125d19ed0e5a0c62c
> 
> The Skylake workaround for the regression was introduced in commit
> aeddda06c1a704bb97c8a7bfe7a472120193bd56
> 
> Signed-off-by: Andrea Arcangeli <aarcange@redhat.com>
> ---
>  drivers/gpu/drm/i915/intel_opregion.c | 12 +++++++-----
>  1 file changed, 7 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/intel_opregion.c b/drivers/gpu/drm/i915/intel_opregion.c
> index adca262..ca17ab6 100644
> --- a/drivers/gpu/drm/i915/intel_opregion.c
> +++ b/drivers/gpu/drm/i915/intel_opregion.c
> @@ -1073,12 +1073,14 @@ intel_opregion_get_panel_type(struct drm_i915_private *dev_priv)
>  	}
>  
>  	/*
> -	 * FIXME On Dell XPS 13 9350 the OpRegion panel type (0) gives us
> -	 * low vswing for eDP, whereas the VBT panel type (2) gives us normal
> -	 * vswing instead. Low vswing results in some display flickers, so
> -	 * let's simply ignore the OpRegion panel type on SKL for now.
> +	 * FIXME On Dell XPS 13 9350 and Dell XPS 13 L322X the
> +	 * OpRegion panel type (0) gives us low vswing for eDP,
> +	 * whereas the VBT panel type (2) gives us normal vswing
> +	 * instead. Low vswing results in some display flickers, so
> +	 * let's simply ignore the OpRegion panel type on SKL and
> +	 * IVYBRIDGE for now.
>  	 */
> -	if (IS_SKYLAKE(dev_priv)) {
> +	if (IS_SKYLAKE(dev_priv) || IS_IVYBRIDGE(dev_priv)) {
>  		DRM_DEBUG_KMS("Ignoring OpRegion panel type (%d)\n", ret - 1);
>  		return -ENODEV;
>  	}

Argh. I guess we'll just have to revert the whole opregion panel type thing
and ty to figure out some way to do this only for the system(s) that need it.

Hmm. Can someone test the top commit from [1] on top of the broken kernel?
If we can get an EDID somehow for the panel then the panel type shouldn't
matter that much any more.

[1] git://github.com/vsyrjala/linux.git acpi_edid
Ville Syrjälä Sept. 6, 2016, 10:56 a.m. UTC | #10
On Tue, Sep 06, 2016 at 12:20:51PM +0300, Ville Syrjälä wrote:
> On Sun, Aug 28, 2016 at 05:28:46PM +0200, Andrea Arcangeli wrote:
> > Skylake was already singled out, but it doesn't cover the XPS 13 L332X
> > model which is based on IvyBridge.
> > 
> > The commit that introduced the regression is
> > 1d6da87a3241deb13d073c4125d19ed0e5a0c62c
> > 
> > The Skylake workaround for the regression was introduced in commit
> > aeddda06c1a704bb97c8a7bfe7a472120193bd56
> > 
> > Signed-off-by: Andrea Arcangeli <aarcange@redhat.com>
> > ---
> >  drivers/gpu/drm/i915/intel_opregion.c | 12 +++++++-----
> >  1 file changed, 7 insertions(+), 5 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/i915/intel_opregion.c b/drivers/gpu/drm/i915/intel_opregion.c
> > index adca262..ca17ab6 100644
> > --- a/drivers/gpu/drm/i915/intel_opregion.c
> > +++ b/drivers/gpu/drm/i915/intel_opregion.c
> > @@ -1073,12 +1073,14 @@ intel_opregion_get_panel_type(struct drm_i915_private *dev_priv)
> >  	}
> >  
> >  	/*
> > -	 * FIXME On Dell XPS 13 9350 the OpRegion panel type (0) gives us
> > -	 * low vswing for eDP, whereas the VBT panel type (2) gives us normal
> > -	 * vswing instead. Low vswing results in some display flickers, so
> > -	 * let's simply ignore the OpRegion panel type on SKL for now.
> > +	 * FIXME On Dell XPS 13 9350 and Dell XPS 13 L322X the
> > +	 * OpRegion panel type (0) gives us low vswing for eDP,
> > +	 * whereas the VBT panel type (2) gives us normal vswing
> > +	 * instead. Low vswing results in some display flickers, so
> > +	 * let's simply ignore the OpRegion panel type on SKL and
> > +	 * IVYBRIDGE for now.
> >  	 */
> > -	if (IS_SKYLAKE(dev_priv)) {
> > +	if (IS_SKYLAKE(dev_priv) || IS_IVYBRIDGE(dev_priv)) {
> >  		DRM_DEBUG_KMS("Ignoring OpRegion panel type (%d)\n", ret - 1);
> >  		return -ENODEV;
> >  	}
> 
> Argh. I guess we'll just have to revert the whole opregion panel type thing
> and ty to figure out some way to do this only for the system(s) that need it.
> 
> Hmm. Can someone test the top commit from [1] on top of the broken kernel?
> If we can get an EDID somehow for the panel then the panel type shouldn't
> matter that much any more.
> 
> [1] git://github.com/vsyrjala/linux.git acpi_edid

Actually I just cooked up another branch [2]. It just throws in some
memory barriers to the opregion code, and adds a a new debug print so
to show the response from the BIOS. I'm not too optimistic that the
memory barriers would fix it, but at least we'd get to see the full
response from the BIOS. Can you give this a try?

[2] git://github.com/vsyrjala/linux.git opregion_panel_type_stuff
Ville Syrjälä Sept. 6, 2016, 6:40 p.m. UTC | #11
On Tue, Sep 06, 2016 at 01:56:20PM +0300, Ville Syrjälä wrote:
> On Tue, Sep 06, 2016 at 12:20:51PM +0300, Ville Syrjälä wrote:
> > On Sun, Aug 28, 2016 at 05:28:46PM +0200, Andrea Arcangeli wrote:
> > > Skylake was already singled out, but it doesn't cover the XPS 13 L332X
> > > model which is based on IvyBridge.
> > > 
> > > The commit that introduced the regression is
> > > 1d6da87a3241deb13d073c4125d19ed0e5a0c62c
> > > 
> > > The Skylake workaround for the regression was introduced in commit
> > > aeddda06c1a704bb97c8a7bfe7a472120193bd56
> > > 
> > > Signed-off-by: Andrea Arcangeli <aarcange@redhat.com>
> > > ---
> > >  drivers/gpu/drm/i915/intel_opregion.c | 12 +++++++-----
> > >  1 file changed, 7 insertions(+), 5 deletions(-)
> > > 
> > > diff --git a/drivers/gpu/drm/i915/intel_opregion.c b/drivers/gpu/drm/i915/intel_opregion.c
> > > index adca262..ca17ab6 100644
> > > --- a/drivers/gpu/drm/i915/intel_opregion.c
> > > +++ b/drivers/gpu/drm/i915/intel_opregion.c
> > > @@ -1073,12 +1073,14 @@ intel_opregion_get_panel_type(struct drm_i915_private *dev_priv)
> > >  	}
> > >  
> > >  	/*
> > > -	 * FIXME On Dell XPS 13 9350 the OpRegion panel type (0) gives us
> > > -	 * low vswing for eDP, whereas the VBT panel type (2) gives us normal
> > > -	 * vswing instead. Low vswing results in some display flickers, so
> > > -	 * let's simply ignore the OpRegion panel type on SKL for now.
> > > +	 * FIXME On Dell XPS 13 9350 and Dell XPS 13 L322X the
> > > +	 * OpRegion panel type (0) gives us low vswing for eDP,
> > > +	 * whereas the VBT panel type (2) gives us normal vswing
> > > +	 * instead. Low vswing results in some display flickers, so
> > > +	 * let's simply ignore the OpRegion panel type on SKL and
> > > +	 * IVYBRIDGE for now.
> > >  	 */
> > > -	if (IS_SKYLAKE(dev_priv)) {
> > > +	if (IS_SKYLAKE(dev_priv) || IS_IVYBRIDGE(dev_priv)) {
> > >  		DRM_DEBUG_KMS("Ignoring OpRegion panel type (%d)\n", ret - 1);
> > >  		return -ENODEV;
> > >  	}
> > 
> > Argh. I guess we'll just have to revert the whole opregion panel type thing
> > and ty to figure out some way to do this only for the system(s) that need it.
> > 
> > Hmm. Can someone test the top commit from [1] on top of the broken kernel?
> > If we can get an EDID somehow for the panel then the panel type shouldn't
> > matter that much any more.
> > 
> > [1] git://github.com/vsyrjala/linux.git acpi_edid
> 
> Actually I just cooked up another branch [2]. It just throws in some
> memory barriers to the opregion code, and adds a a new debug print so
> to show the response from the BIOS. I'm not too optimistic that the
> memory barriers would fix it, but at least we'd get to see the full
> response from the BIOS. Can you give this a try?
> 
> [2] git://github.com/vsyrjala/linux.git opregion_panel_type_stuff

And I've gone an pushed a potential fix to the same branch. So pleas try
it and let me know how it goes. And I still would like to see the dmesg
with drm.debug=0xe from that attempt.
Martin van Es Sept. 8, 2016, 10:04 a.m. UTC | #12
On dinsdag 6 september 2016 21:40:48 CEST Ville Syrjälä wrote:
> On Tue, Sep 06, 2016 at 01:56:20PM +0300, Ville Syrjälä wrote:
> > Actually I just cooked up another branch [2]. It just throws in some
> > memory barriers to the opregion code, and adds a a new debug print so
> > to show the response from the BIOS. I'm not too optimistic that the
> > memory barriers would fix it, but at least we'd get to see the full
> > response from the BIOS. Can you give this a try?
> > 
> > [2] git://github.com/vsyrjala/linux.git opregion_panel_type_stuff

This kernel doesn't boot (for me).

I cloned the repo, copied .config from 4.7 kernel, make oldconfig, accepted 
all defaults and made+installed the kernel. This installed an image 4.0.0-rc7+ 
(is that correct?) that was unbootable (halts at loading ramdisk).

Best regards,
Martin
Ville Syrjälä Sept. 8, 2016, 10:18 a.m. UTC | #13
On Thu, Sep 08, 2016 at 12:04:39PM +0200, Martin van Es wrote:
> On dinsdag 6 september 2016 21:40:48 CEST Ville Syrjälä wrote:
> > On Tue, Sep 06, 2016 at 01:56:20PM +0300, Ville Syrjälä wrote:
> > > Actually I just cooked up another branch [2]. It just throws in some
> > > memory barriers to the opregion code, and adds a a new debug print so
> > > to show the response from the BIOS. I'm not too optimistic that the
> > > memory barriers would fix it, but at least we'd get to see the full
> > > response from the BIOS. Can you give this a try?
> > > 
> > > [2] git://github.com/vsyrjala/linux.git opregion_panel_type_stuff
> 
> This kernel doesn't boot (for me).
> 
> I cloned the repo, copied .config from 4.7 kernel, make oldconfig, accepted 
> all defaults and made+installed the kernel. This installed an image 4.0.0-rc7+ 
> (is that correct?) that was unbootable (halts at loading ramdisk).

The version should be 4.7 or 4.8 something. Maybe you used the wrong
branch?

Anywyas I pushed a new branch "opregion_panel_type_quirk" which I'm
hoping will be the final fix we go with. Just waiting for confirmation
that I got the quirk right and that the original machine fixed by the
OpRegion stuff still works. You might want to test that one as well.
Martin van Es Sept. 8, 2016, 11:09 a.m. UTC | #14
On donderdag 8 september 2016 13:18:41 CEST Ville Syrjälä wrote:
> On Thu, Sep 08, 2016 at 12:04:39PM +0200, Martin van Es wrote:
> > On dinsdag 6 september 2016 21:40:48 CEST Ville Syrjälä wrote:
> > > On Tue, Sep 06, 2016 at 01:56:20PM +0300, Ville Syrjälä wrote:
> > > > Actually I just cooked up another branch [2]. It just throws in some
> > > > memory barriers to the opregion code, and adds a a new debug print so
> > > > to show the response from the BIOS. I'm not too optimistic that the
> > > > memory barriers would fix it, but at least we'd get to see the full
> > > > response from the BIOS. Can you give this a try?
> > > > 
> > > > [2] git://github.com/vsyrjala/linux.git opregion_panel_type_stuff
> > 
> > This kernel doesn't boot (for me).
> > 
> > I cloned the repo, copied .config from 4.7 kernel, make oldconfig,
> > accepted
> > all defaults and made+installed the kernel. This installed an image
> > 4.0.0-rc7+ (is that correct?) that was unbootable (halts at loading
> > ramdisk).
> The version should be 4.7 or 4.8 something. Maybe you used the wrong
> branch?

Oh silly me and git. I thought I'd be checking out the correct branch on 
cloning that repo. I now checked out opregion_panel_type_quirk branch and that 
resulted in a 4.8.0-rc5+ kernel.

Booting that kernel resulted in a correct functioning backlight based on 
acpi_video0 driver. Graphics glitches however were so bad I had to reboot into 
4.7.3 to write this mail.

dmesg of 4.8.0-rc5+ boot with drm.debug=0xe attached.

Best regards,
Martin
[    0.542922] RPC: Registered tcp transport module.
[    0.542923] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.542931] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.543421] PCI: CLS 64 bytes, default 64
[    0.543467] Unpacking initramfs...
[    0.714001] Freeing initrd memory: 8652K (ffff880036f0a000 - ffff88003777d000)
[    0.714004] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.714007] software IO TLB [mem 0xa12e8000-0xa52e8000] (64MB) mapped at [ffff8800a12e8000-ffff8800a52e7fff]
[    0.714121] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[    0.714122] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[    0.714123] RAPL PMU: hw unit of domain package 2^-16 Joules
[    0.714123] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[    0.715012] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.715028] audit: initializing netlink subsys (disabled)
[    0.715039] audit: type=2000 audit(1473332278.712:1): initialized
[    0.715316] workingset: timestamp_bits=56 max_order=21 bucket_order=0
[    0.717297] FS-Cache: Netfs 'nfs' registered for caching
[    0.717425] NFS: Registering the id_resolver key type
[    0.717430] Key type id_resolver registered
[    0.717431] Key type id_legacy registered
[    0.717434] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.717436] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    0.717606] FS-Cache: Netfs 'cifs' registered for caching
[    0.717665] Key type cifs.spnego registered
[    0.717667] Key type cifs.idmap registered
[    0.717669] ntfs: driver 2.1.32 [Flags: R/W].
[    0.717760] fuse init (API version 7.25)
[    0.719052] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[    0.719054] io scheduler noop registered
[    0.719055] io scheduler deadline registered
[    0.719060] io scheduler cfq registered (default)
[    0.719297] intel_idle: MWAIT substates: 0x21120
[    0.719298] intel_idle: v0.4.1 model 0x3A
[    0.719458] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.823856] ACPI: AC Adapter [ADP0] (on-line)
[    0.823923] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.823927] ACPI: Power Button [PWRB]
[    0.823963] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[    0.823964] ACPI: Sleep Button [SLPB]
[    0.824000] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[    0.824401] ACPI: Lid Switch [LID0]
[    0.824453] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    0.824456] ACPI: Power Button [PWRF]
[    0.827283] thermal LNXTHERM:00: registered as thermal_zone0
[    0.827285] ACPI: Thermal Zone [TZ00] (59 C)
[    0.827538] thermal LNXTHERM:01: registered as thermal_zone1
[    0.827539] ACPI: Thermal Zone [TZ01] (59 C)
[    0.828297] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.830483] Linux agpgart interface v0.103
[    0.830520] [drm:drm_core_init] Initialized drm 1.1.0 20060810
[    0.830676] [drm:intel_detect_pch] Found PantherPoint PCH
[    0.830679] [drm:get_allowed_dc_mask] Allowed DC state mask 00
[    0.830724] [drm:intel_device_info_dump] i915 device info: gen=7, pciid=0x0166 rev=0x09 flags=is_mobile,is_ivybridge,has_fbc,has_rc6,has_rc6p,has_gmbus_irq,has_hw_contexts,has_l3_dpf,has_hotplug,has_llc,
[    0.831064] [drm:intel_device_info_runtime_init] slice mask: 0000
[    0.831065] [drm:intel_device_info_runtime_init] slice total: 0
[    0.831066] [drm:intel_device_info_runtime_init] subslice total: 0
[    0.831067] [drm:intel_device_info_runtime_init] subslice mask 0000
[    0.831068] [drm:intel_device_info_runtime_init] subslice per slice: 0
[    0.831068] [drm:intel_device_info_runtime_init] EU total: 0
[    0.831069] [drm:intel_device_info_runtime_init] EU per subslice: 0
[    0.831070] [drm:intel_device_info_runtime_init] has slice power gating: n
[    0.831071] [drm:intel_device_info_runtime_init] has subslice power gating: n
[    0.831072] [drm:intel_device_info_runtime_init] has EU power gating: n
[    0.831073] [drm:intel_sanitize_options] ppgtt mode: 1
[    0.831074] [drm:intel_sanitize_options] use GPU sempahores? yes
[    0.831083] [drm:i915_ggtt_probe_hw] Memory usable by graphics device = 2048M
[    0.831084] [drm:i915_ggtt_probe_hw] GMADR size = 256M
[    0.831085] [drm:i915_ggtt_probe_hw] GTT stolen size = 64M
[    0.831086] [drm:i915_kick_out_vgacon] Replacing VGA console driver
[    0.831102] [drm:i915_gem_init_stolen] Memory reserved for graphics device: 65536K, usable: 64512K
[    0.831109] [drm:intel_opregion_setup] graphic opregion physical addr: 0xbaf78018
[    0.831114] [drm:intel_opregion_setup] Public ACPI methods supported
[    0.831114] [drm:intel_opregion_setup] SWSCI supported
[    0.833990] ACPI: Battery Slot [BAT0] (battery present)
[    0.837225] [drm:swsci_setup] SWSCI GBDA callbacks 00000cf3, SBCB callbacks 00000241
[    0.837228] [drm:intel_opregion_setup] ASLE supported
[    0.837230] [drm:intel_opregion_setup] ASLE extension supported
[    0.837244] [drm:intel_opregion_setup] Found valid VBT in ACPI OpRegion (Mailbox #4)
[    0.837292] [drm:drm_vblank_init] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    0.837293] [drm:drm_vblank_init] Driver supports precise vblank timestamp query.
[    0.837294] [drm:init_vbt_defaults] Set default to SSC at 120000 kHz
[    0.837296] [drm:intel_bios_init] VBT signature "$VBT SNB/IVB-MOBILE ", BDB version 165
[    0.837298] [drm:parse_general_features] BDB_GENERAL_FEATURES int_tv_support 0 int_crt_support 1 lvds_use_ssc 1 lvds_ssc_freq 120000 display_clock_mode 0 fdi_rx_polarity_inverted 0
[    0.837299] [drm:parse_general_definitions] crt_ddc_bus_pin: 0
[    0.839360] [drm:intel_opregion_get_panel_type] Ignoring OpRegion panel type (0)
[    0.839362] [drm:parse_lfp_panel_data] Panel type: 2 (VBT)
[    0.839363] [drm:parse_lfp_panel_data] DRRS supported mode is seamless
[    0.839365] [drm:parse_lfp_panel_data] Found panel mode in BIOS VBT tables:
[    0.839368] [drm:drm_mode_debug_printmodeline] Modeline 0:"1920x1080" 0 138780 1920 1966 1996 2080 1080 1082 1086 1112 0x8 0xa
[    0.839369] [drm:parse_lfp_panel_data] VBT initial LVDS value 20033c
[    0.839370] [drm:parse_lfp_backlight] PWM backlight not present in VBT (type 0)
[    0.839372] [drm:parse_sdvo_panel_data] Found SDVO panel mode in BIOS VBT tables:
[    0.839374] [drm:drm_mode_debug_printmodeline] Modeline 0:"1600x1200" 0 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x8 0xa
[    0.839375] [drm:parse_sdvo_device_mapping] No SDVO device info is found in VBT
[    0.839377] [drm:parse_driver_features] DRRS State Enabled:1
[    0.839385] [drm:intel_dsm_pci_probe] no _DSM method for intel device
[    0.839391] [drm:intel_update_rawclk] rawclk rate: 125000 kHz
[    0.839393] [drm:intel_power_well_enable] enabling always-on
[    0.839600] [drm:intel_fbc_init] Sanitized enable_fbc value: 0
[    0.839602] [drm:intel_print_wm_latency] Primary WM0 latency 12 (1.2 usec)
[    0.839604] [drm:intel_print_wm_latency] Primary WM1 latency 4 (2.0 usec)
[    0.839605] [drm:intel_print_wm_latency] Primary WM2 latency 16 (8.0 usec)
[    0.839606] [drm:intel_print_wm_latency] Primary WM3 latency 32 (16.0 usec)
[    0.839607] [drm:intel_print_wm_latency] Sprite WM0 latency 12 (1.2 usec)
[    0.839608] [drm:intel_print_wm_latency] Sprite WM1 latency 4 (2.0 usec)
[    0.839609] [drm:intel_print_wm_latency] Sprite WM2 latency 16 (8.0 usec)
[    0.839610] [drm:intel_print_wm_latency] Sprite WM3 latency 32 (16.0 usec)
[    0.839611] [drm:intel_print_wm_latency] Cursor WM0 latency 12 (1.2 usec)
[    0.839612] [drm:intel_print_wm_latency] Cursor WM1 latency 4 (2.0 usec)
[    0.839613] [drm:intel_print_wm_latency] Cursor WM2 latency 16 (8.0 usec)
[    0.839614] [drm:intel_print_wm_latency] Cursor WM3 latency 64 (32.0 usec)
[    0.839620] [drm:intel_modeset_init] SSC disabled by BIOS, overriding VBT which says enabled
[    0.839622] [drm:intel_modeset_init] 3 display pipes available.
[    0.839637] [drm:intel_update_cdclk] Current CD clock rate: 400000 kHz
[    0.839639] [drm:intel_update_max_cdclk] Max CD clock rate: 400000 kHz
[    0.839639] [drm:intel_update_max_cdclk] Max dotclock rate: 360000 kHz
[    0.839642] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    0.839973] [drm:intel_crt_reset] crt adpa set to 0xf40000
[    0.839977] [drm:intel_dp_init_connector] Adding eDP connector on port A
[    0.839993] [drm:intel_pps_dump_state] cur t1_t3 2000 t8 10 t9 2000 t10 500 t11_t12 6000
[    0.839994] [drm:intel_pps_dump_state] vbt t1_t3 2000 t8 10 t9 2000 t10 500 t11_t12 5000
[    0.839996] [drm:intel_dp_init_panel_power_sequencer] panel power up delay 200, power down delay 50, power cycle delay 600
[    0.839997] [drm:intel_dp_init_panel_power_sequencer] backlight on delay 1, off delay 200
[    0.840004] [drm:intel_dp_init_panel_power_sequencer_registers] panel power sequencer register settings: PP_ON 0x47d00001, PP_OFF 0x1f40001, PP_DIV 0x186906
[    0.840009] [drm:edp_panel_vdd_on] Turning eDP port A VDD on
[    0.840016] [drm:edp_panel_vdd_on] PP_STATUS: 0x80000008 PP_CONTROL: 0xabcd000f
[    0.840443] [drm:intel_dp_read_dpcd] DPCD: 11 0a 02 00 00 00 00 00 00 00 00 00 00 00 00
[    0.846652] [drm:drm_edid_to_eld] ELD: no CEA Extension found
[    0.846654] [drm:intel_dp_drrs_init] seamless DRRS supported for eDP panel.
[    0.846656] [drm:intel_panel_setup_backlight] no backlight present per VBT
[    0.846670] [drm:intel_hdmi_init_connector] Adding HDMI connector on port C
[    0.846687] [drm:intel_dp_init_connector] Adding DP connector on port C
[    0.846699] [drm:ironlake_init_pch_refclk] has_panel 1 has_lvds 0 has_ck505 0 using_ssc_source 0
[    0.847114] [drm:intel_modeset_readout_hw_state] [CRTC:26:pipe A] hw state readout: enabled
[    0.847115] [drm:intel_modeset_readout_hw_state] [CRTC:30:pipe B] hw state readout: disabled
[    0.847117] [drm:intel_modeset_readout_hw_state] [CRTC:34:pipe C] hw state readout: disabled
[    0.847125] [drm:intel_modeset_readout_hw_state] PCH DPLL A hw state readout: crtc_mask 0x00000000, on 0
[    0.847129] [drm:intel_modeset_readout_hw_state] PCH DPLL B hw state readout: crtc_mask 0x00000000, on 0
[    0.847133] [drm:intel_modeset_readout_hw_state] [ENCODER:37:CRT] hw state readout: disabled, pipe A
[    0.847136] [drm:intel_modeset_readout_hw_state] [ENCODER:38:DP A] hw state readout: enabled, pipe A
[    0.847139] [drm:intel_modeset_readout_hw_state] [ENCODER:48:HDMI C] hw state readout: disabled, pipe A
[    0.847141] [drm:intel_modeset_readout_hw_state] [ENCODER:51:DP C] hw state readout: disabled, pipe A
[    0.847143] [drm:intel_modeset_readout_hw_state] [CONNECTOR:39:eDP-1] hw state readout: enabled
[    0.847146] [drm:intel_modeset_readout_hw_state] [CONNECTOR:36:VGA-1] hw state readout: disabled
[    0.847149] [drm:intel_modeset_readout_hw_state] [CONNECTOR:49:HDMI-A-1] hw state readout: disabled
[    0.847151] [drm:intel_modeset_readout_hw_state] [CONNECTOR:52:DP-1] hw state readout: disabled
[    0.847164] [drm:intel_dump_pipe_config] [CRTC:26:pipe A][setup_hw_state] config ffff880233c3a800 for pipe A
[    0.847165] [drm:intel_dump_pipe_config] cpu_transcoder: A
[    0.847166] [drm:intel_dump_pipe_config] pipe bpp: 24, dithering: 0
[    0.847167] [drm:intel_dump_pipe_config] fdi/pch: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[    0.847169] [drm:intel_dump_pipe_config] dp: 1, lanes: 2, gmch_m: 6467616, gmch_n: 8388608, link_m: 269484, link_n: 524288, tu: 64
[    0.847170] [drm:intel_dump_pipe_config] dp: 1, lanes: 2, gmch_m2: 0, gmch_n2: 0, link_m2: 0, link_n2: 0, tu2: 0
[    0.847171] [drm:intel_dump_pipe_config] audio: 0, infoframes: 0
[    0.847172] [drm:intel_dump_pipe_config] requested mode:
[    0.847174] [drm:drm_mode_debug_printmodeline] Modeline 0:"1920x1080" 60 138779 1920 1966 1996 2080 1080 1082 1086 1112 0x40 0x9
[    0.847175] [drm:intel_dump_pipe_config] adjusted mode:
[    0.847177] [drm:drm_mode_debug_printmodeline] Modeline 0:"1920x1080" 60 138779 1920 1966 1996 2080 1080 1082 1086 1112 0x40 0x9
[    0.847179] [drm:intel_dump_crtc_timings] crtc timings: 138779 1920 1966 1996 2080 1080 1082 1086 1112, type: 0x40 flags: 0x9
[    0.847180] [drm:intel_dump_pipe_config] port clock: 270000
[    0.847181] [drm:intel_dump_pipe_config] pipe src size: 1920x1080
[    0.847182] [drm:intel_dump_pipe_config] num_scalers: 0, scaler_users: 0x0, scaler_id: 0
[    0.847183] [drm:intel_dump_pipe_config] gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[    0.847184] [drm:intel_dump_pipe_config] pch pfit: pos: 0x00000000, size: 0x07800438, enabled
[    0.847185] [drm:intel_dump_pipe_config] ips: 0
[    0.847186] [drm:intel_dump_pipe_config] double wide: 0
[    0.847187] [drm:intel_dump_pipe_config] dpll_hw_state: dpll: 0x0, dpll_md: 0x0, fp0: 0x0, fp1: 0x0
[    0.847188] [drm:intel_dump_pipe_config] planes on this crtc
[    0.847189] [drm:intel_dump_pipe_config] [PLANE:23:primary A] disabled, scaler_id = 0
[    0.847190] [drm:intel_dump_pipe_config] [PLANE:25:cursor A] disabled, scaler_id = 0
[    0.847191] [drm:intel_dump_pipe_config] [PLANE:27:sprite A] disabled, scaler_id = 0
[    0.847193] [drm:intel_dump_pipe_config] [CRTC:30:pipe B][setup_hw_state] config ffff880233c3b800 for pipe B
[    0.847194] [drm:intel_dump_pipe_config] cpu_transcoder: B
[    0.847195] [drm:intel_dump_pipe_config] pipe bpp: 0, dithering: 0
[    0.847196] [drm:intel_dump_pipe_config] fdi/pch: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[    0.847197] [drm:intel_dump_pipe_config] dp: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[    0.847199] [drm:intel_dump_pipe_config] dp: 0, lanes: 0, gmch_m2: 0, gmch_n2: 0, link_m2: 0, link_n2: 0, tu2: 0
[    0.847199] [drm:intel_dump_pipe_config] audio: 0, infoframes: 0
[    0.847200] [drm:intel_dump_pipe_config] requested mode:
[    0.847202] [drm:drm_mode_debug_printmodeline] Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[    0.847203] [drm:intel_dump_pipe_config] adjusted mode:
[    0.847205] [drm:drm_mode_debug_printmodeline] Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[    0.847206] [drm:intel_dump_crtc_timings] crtc timings: 0 0 0 0 0 0 0 0 0, type: 0x0 flags: 0x0
[    0.847207] [drm:intel_dump_pipe_config] port clock: 0
[    0.847208] [drm:intel_dump_pipe_config] pipe src size: 0x0
[    0.847209] [drm:intel_dump_pipe_config] num_scalers: 0, scaler_users: 0x0, scaler_id: 0
[    0.847210] [drm:intel_dump_pipe_config] gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[    0.847211] [drm:intel_dump_pipe_config] pch pfit: pos: 0x00000000, size: 0x00000000, disabled
[    0.847212] [drm:intel_dump_pipe_config] ips: 0
[    0.847213] [drm:intel_dump_pipe_config] double wide: 0
[    0.847214] [drm:intel_dump_pipe_config] dpll_hw_state: dpll: 0x0, dpll_md: 0x0, fp0: 0x0, fp1: 0x0
[    0.847214] [drm:intel_dump_pipe_config] planes on this crtc
[    0.847215] [drm:intel_dump_pipe_config] [PLANE:28:primary B] disabled, scaler_id = 0
[    0.847216] [drm:intel_dump_pipe_config] [PLANE:29:cursor B] disabled, scaler_id = 0
[    0.847217] [drm:intel_dump_pipe_config] [PLANE:31:sprite B] disabled, scaler_id = 0
[    0.847219] [drm:intel_dump_pipe_config] [CRTC:34:pipe C][setup_hw_state] config ffff880233c3c800 for pipe C
[    0.847220] [drm:intel_dump_pipe_config] cpu_transcoder: C
[    0.847220] [drm:intel_dump_pipe_config] pipe bpp: 0, dithering: 0
[    0.847222] [drm:intel_dump_pipe_config] fdi/pch: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[    0.847223] [drm:intel_dump_pipe_config] dp: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[    0.847224] [drm:intel_dump_pipe_config] dp: 0, lanes: 0, gmch_m2: 0, gmch_n2: 0, link_m2: 0, link_n2: 0, tu2: 0
[    0.847225] [drm:intel_dump_pipe_config] audio: 0, infoframes: 0
[    0.847226] [drm:intel_dump_pipe_config] requested mode:
[    0.847228] [drm:drm_mode_debug_printmodeline] Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[    0.847228] [drm:intel_dump_pipe_config] adjusted mode:
[    0.847230] [drm:drm_mode_debug_printmodeline] Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[    0.847232] [drm:intel_dump_crtc_timings] crtc timings: 0 0 0 0 0 0 0 0 0, type: 0x0 flags: 0x0
[    0.847232] [drm:intel_dump_pipe_config] port clock: 0
[    0.847233] [drm:intel_dump_pipe_config] pipe src size: 0x0
[    0.847234] [drm:intel_dump_pipe_config] num_scalers: 0, scaler_users: 0x0, scaler_id: 0
[    0.847235] [drm:intel_dump_pipe_config] gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[    0.847236] [drm:intel_dump_pipe_config] pch pfit: pos: 0x00000000, size: 0x00000000, disabled
[    0.847237] [drm:intel_dump_pipe_config] ips: 0
[    0.847238] [drm:intel_dump_pipe_config] double wide: 0
[    0.847239] [drm:intel_dump_pipe_config] dpll_hw_state: dpll: 0x0, dpll_md: 0x0, fp0: 0x0, fp1: 0x0
[    0.847239] [drm:intel_dump_pipe_config] planes on this crtc
[    0.847240] [drm:intel_dump_pipe_config] [PLANE:32:primary C] disabled, scaler_id = 0
[    0.847241] [drm:intel_dump_pipe_config] [PLANE:33:cursor C] disabled, scaler_id = 0
[    0.847242] [drm:intel_dump_pipe_config] [PLANE:35:sprite C] disabled, scaler_id = 0
[    0.847251] [drm:ironlake_get_initial_plane_config] pipe A with fb: size=1920x1080@32, offset=0, pitch 7680, size 0x7e9000
[    0.847252] [drm:i915_gem_object_create_stolen_for_preallocated] creating preallocated stolen object: stolen_offset=0, gtt_offset=0, size=7e9000
[    0.847256] [drm:i915_pages_create_for_stolen] offset=0x0, size=8294400
[    0.847260] [drm:intel_alloc_initial_plane_obj] initial plane fb obj ffff880233ca0000
[    0.847607] [drm:i915_gem_init_ggtt] clearing unused GTT space: [7e9000, 7ffff000]
[    0.850112] [drm:gen6_ppgtt_init] Allocated pde space (2M) at GTT entry: 7fdf0
[    0.851128] [drm:i915_gem_context_init] HW context support initialized
[    0.851301] [drm:i915_gem_object_create_stolen] creating stolen object: size=20000
[    0.851306] [drm:i915_pages_create_for_stolen] offset=0x7e9000, size=131072
[    0.851315] [drm:init_status_page] render ring hws offset: 0x7fff0000
[    0.851318] [drm:i915_gem_object_create_stolen] creating stolen object: size=1000
[    0.851320] [drm:i915_pages_create_for_stolen] offset=0x809000, size=4096
[    0.851322] [drm:intel_engine_create_scratch] render ring pipe control offset: 0x7fffe000
[    0.851367] [drm:i915_gem_object_create_stolen] creating stolen object: size=20000
[    0.851369] [drm:i915_pages_create_for_stolen] offset=0x80a000, size=131072
[    0.851375] [drm:init_status_page] blitter ring hws offset: 0x00809000
[    0.851499] [drm:i915_gem_object_create_stolen] creating stolen object: size=20000
[    0.851503] [drm:i915_pages_create_for_stolen] offset=0x82a000, size=131072
[    0.851514] [drm:init_status_page] bsd ring hws offset: 0x0082a000
[    0.851559] [drm:intel_guc_setup] GuC fw status: path (null), fetch NONE, load NONE
[    0.851570] [drm:intel_init_gt_powersave] Overclocking supported, max: 1200MHz, overclock: 1200MHz
[    0.851573] [drm:intel_update_cdclk] Current CD clock rate: 400000 kHz
[    0.851619] [drm:intel_fbdev_init_bios] found possible fb from plane A
[    0.851620] [drm:intel_fbdev_init_bios] pipe B not active or no fb, skipping
[    0.851621] [drm:intel_fbdev_init_bios] pipe C not active or no fb, skipping
[    0.851622] [drm:intel_fbdev_init_bios] checking plane A for BIOS fb
[    0.851624] [drm:intel_fbdev_init_bios] pipe A area: 1920x1080, bpp: 32, size: 8294400
[    0.851625] [drm:intel_fbdev_init_bios] fb big enough for plane A (8294400 >= 8294400)
[    0.851626] [drm:intel_fbdev_init_bios] pipe B not active, skipping
[    0.851627] [drm:intel_fbdev_init_bios] pipe C not active, skipping
[    0.851628] [drm:intel_fbdev_init_bios] using BIOS fb for initial console
[    0.851643] [drm:intel_dp_detect] [CONNECTOR:39:eDP-1]
[    0.851645] [drm:intel_dp_long_pulse] Display Port TPS3 support: source no, sink no
[    0.851647] [drm:intel_dp_print_rates] source rates: 162000, 270000
[    0.851648] [drm:intel_dp_print_rates] sink rates: 162000, 270000
[    0.851649] [drm:intel_dp_print_rates] common rates: 162000, 270000
[    0.851969] [drm:drm_helper_hpd_irq_event] [CONNECTOR:39:eDP-1] status updated from unknown to connected
[    0.851971] [drm:intel_crt_detect] [CONNECTOR:36:VGA-1] force=0
[    0.851977] [drm:intel_ironlake_crt_detect_hotplug] trigger hotplug detect cycle: adpa=0xf40000
[    0.861926] [drm:intel_ironlake_crt_detect_hotplug] ironlake hotplug adpa=0xf40000, result 0
[    0.861928] [drm:intel_crt_detect] CRT not detected via hotplug
[    0.919820] [drm:do_gmbus_xfer] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
[    0.951785] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[    0.951787] [drm:intel_crt_get_edid] CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    0.951788] [drm:intel_gmbus_force_bit] enabling bit-banging on i915 gmbus vga. force bit now 1
[    0.983780] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[    0.983781] [drm:intel_gmbus_force_bit] disabling bit-banging on i915 gmbus vga. force bit now 0
[    0.983782] [drm:intel_crt_detect_ddc] CRT not detected via DDC:0x50 [no valid EDID found]
[    0.983784] [drm:drm_helper_hpd_irq_event] [CONNECTOR:36:VGA-1] status updated from unknown to disconnected
[    0.983786] [drm:intel_hdmi_detect] [CONNECTOR:49:HDMI-A-1]
[    0.984351] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[    0.984352] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[    0.984585] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[    0.984589] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[    0.984821] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[    0.984823] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[    0.985048] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[    0.985051] [drm:drm_helper_hpd_irq_event] [CONNECTOR:49:HDMI-A-1] status updated from unknown to disconnected
[    0.985052] [drm:intel_dp_detect] [CONNECTOR:52:DP-1]
[    0.985058] [drm:drm_helper_hpd_irq_event] [CONNECTOR:52:DP-1] status updated from unknown to disconnected
[    0.985449] [drm:intel_dp_connector_register] registering DPDDC-A bus for card0-eDP-1
[    0.985526] [drm:intel_dp_connector_register] registering DPDDC-C bus for card0-DP-1
[    0.985778] [drm:intel_didl_outputs] 8 outputs detected
[    0.986479] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    0.990866] acpi device:2d: registered as cooling_device4
[    0.990947] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input4
[    0.990970] [drm:i915_driver_load] Initialized i915 1.6.0 20160902 for 0000:00:02.0 on minor 0
[    0.991006] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1]
[    0.991008] [drm:intel_dp_detect] [CONNECTOR:39:eDP-1]
[    0.991010] [drm:intel_dp_long_pulse] Display Port TPS3 support: source no, sink no
[    0.991012] [drm:intel_dp_print_rates] source rates: 162000, 270000
[    0.991013] [drm:intel_dp_print_rates] sink rates: 162000, 270000
[    0.991015] [drm:intel_dp_print_rates] common rates: 162000, 270000
[    0.991390] [drm:drm_edid_to_eld] ELD: no CEA Extension found
[    0.991394] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1] probed modes :
[    0.991401] [drm:drm_mode_debug_printmodeline] Modeline 40:"1920x1080" 60 138780 1920 1966 1996 2080 1080 1082 1086 1112 0x48 0x9
[    0.991404] [drm:drm_mode_debug_printmodeline] Modeline 41:"1920x1080" 40 92520 1920 1966 1996 2080 1080 1082 1086 1112 0x40 0x9
[    0.991405] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1]
[    0.991407] [drm:intel_crt_detect] [CONNECTOR:36:VGA-1] force=1
[    0.991411] [drm:intel_ironlake_crt_detect_hotplug] ironlake hotplug adpa=0xf40000, result 0
[    0.991412] [drm:intel_crt_detect] CRT not detected via hotplug
[    0.992699] loop: module loaded
[    0.992763] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20160422/utaddress-255)
[    0.992769] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    0.992775] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20160422/utaddress-255)
[    0.992778] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    0.992779] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20160422/utaddress-255)
[    0.992782] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    0.992782] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20160422/utaddress-255)
[    0.992785] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    0.992786] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    0.992838] ahci 0000:00:1f.2: version 3.0
[    0.993013] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1 impl SATA mode
[    0.993015] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst 
[    0.993486] scsi host0: ahci
[    0.993598] scsi host1: ahci
[    0.993705] scsi host2: ahci
[    0.993801] scsi host3: ahci
[    0.993888] scsi host4: ahci
[    0.993977] scsi host5: ahci
[    0.994018] ata1: SATA max UDMA/133 abar m2048@0xd0518000 port 0xd0518100 irq 25
[    0.994018] ata2: DUMMY
[    0.994019] ata3: DUMMY
[    0.994020] ata4: DUMMY
[    0.994020] ata5: DUMMY
[    0.994021] ata6: DUMMY
[    0.994050] tun: Universal TUN/TAP device driver, 1.6
[    0.994050] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.994142] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.996984] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.996988] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.997052] mousedev: PS/2 mouse device common for all mice
[    0.997460] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    0.998435] usbcore: registered new interface driver uvcvideo
[    0.998436] USB Video Class driver (1.1.1)
[    0.998437] gspca_main: v2.14.0 registered
[    0.998443] usbcore: registered new interface driver sunplus
[    0.998720] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[    0.998733] usbcore: registered new interface driver btusb
[    0.998738] intel_pstate: Intel P-state driver initializing
[    0.999904] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[    0.999963] usbcore: registered new interface driver usbhid
[    0.999964] usbhid: USB HID core driver
[    1.003803] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input5
[    1.004498] dell_wmi: Detected Dell WMI interface version 0
[    1.004600] input: Dell WMI hotkeys as /devices/virtual/input/input7
[    1.005699] Initializing XFRM netlink socket
[    1.005950] NET: Registered protocol family 10
[    1.006464] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    1.007017] NET: Registered protocol family 17
[    1.007026] NET: Registered protocol family 15
[    1.007038] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
[    1.007163] Bluetooth: RFCOMM TTY layer initialized
[    1.007167] Bluetooth: RFCOMM socket layer initialized
[    1.007175] Bluetooth: RFCOMM ver 1.11
[    1.007179] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    1.007180] Bluetooth: BNEP filters: protocol multicast
[    1.007185] Bluetooth: BNEP socket layer initialized
[    1.007187] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    1.007192] Bluetooth: HIDP socket layer initialized
[    1.007223] Key type dns_resolver registered
[    1.007939] microcode: sig=0x306a9, pf=0x10, revision=0x17
[    1.008141] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    1.008532] registered taskstats version 1
[    1.015077] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC3260: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    1.015081] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    1.015084] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[    1.015086] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    1.015088] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    1.015091] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
[    1.015094] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[    1.018212] random: fast init done
[    1.018665] Key type encrypted registered
[    1.022615] ALSA device list:
[    1.022616]   No soundcards found.
[    1.051850] [drm:do_gmbus_xfer] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
[    1.083777] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[    1.083779] [drm:intel_crt_get_edid] CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    1.083781] [drm:intel_gmbus_force_bit] enabling bit-banging on i915 gmbus vga. force bit now 1
[    1.115774] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[    1.115775] [drm:intel_gmbus_force_bit] disabling bit-banging on i915 gmbus vga. force bit now 0
[    1.115777] [drm:intel_crt_detect_ddc] CRT not detected via DDC:0x50 [no valid EDID found]
[    1.115779] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1] disconnected
[    1.115782] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1]
[    1.115784] [drm:intel_hdmi_detect] [CONNECTOR:49:HDMI-A-1]
[    1.116354] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[    1.116356] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[    1.116588] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[    1.116597] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[    1.116834] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[    1.116836] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[    1.117070] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[    1.117078] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1] disconnected
[    1.117082] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1]
[    1.117084] [drm:intel_dp_detect] [CONNECTOR:52:DP-1]
[    1.117093] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1] disconnected
[    1.117098] [drm:drm_setup_crtcs] 
[    1.117102] [drm:drm_enable_connectors] connector 39 enabled? yes
[    1.117105] [drm:drm_enable_connectors] connector 36 enabled? no
[    1.117106] [drm:drm_enable_connectors] connector 49 enabled? no
[    1.117108] [drm:drm_enable_connectors] connector 52 enabled? no
[    1.117114] [drm:intel_fb_initial_config] looking for cmdline mode on connector eDP-1
[    1.117116] [drm:intel_fb_initial_config] looking for preferred mode on connector eDP-1 0
[    1.117120] [drm:intel_fb_initial_config] connector eDP-1 on [CRTC:26:pipe A]: 1920x1080
[    1.117123] [drm:intel_fb_initial_config] connector VGA-1 not enabled, skipping
[    1.117124] [drm:intel_fb_initial_config] connector HDMI-A-1 not enabled, skipping
[    1.117126] [drm:intel_fb_initial_config] connector DP-1 not enabled, skipping
[    1.117130] [drm:drm_setup_crtcs] desired mode 1920x1080 set on crtc 26 (0,0)
[    1.117137] [drm:intelfb_create] re-using BIOS fb
[    1.117148] [drm:intelfb_create] allocated 1920x1080 fb: 0x00000000
[    1.117213] snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops 0xffffffff81ab9110)
[    1.117380] fbcon: inteldrmfb (fb0) is primary device
[    1.117531] [drm:connected_sink_compute_bpp] [CONNECTOR:39:eDP-1] checking for sink bpp constrains
[    1.117534] [drm:connected_sink_compute_bpp] clamping display bpp (was 36) to EDID reported max of 24
[    1.117539] [drm:intel_dp_compute_config] DP link computation with max lane count 2 max bw 270000 pixel clock 138780KHz
[    1.117548] [drm:intel_dp_compute_config] DP link bw 0a rate select 00 lane count 2 clock 270000 bpp 24
[    1.117550] [drm:intel_dp_compute_config] DP link bw required 333072 available 432000
[    1.117553] [drm:intel_modeset_pipe_config] hw max bpp: 36, pipe bpp: 24, dithering: 0
[    1.117557] [drm:intel_dump_pipe_config] [CRTC:26:pipe A][modeset] config ffff88023392f800 for pipe A
[    1.117559] [drm:intel_dump_pipe_config] cpu_transcoder: A
[    1.117561] [drm:intel_dump_pipe_config] pipe bpp: 24, dithering: 0
[    1.117563] [drm:intel_dump_pipe_config] fdi/pch: 0, lanes: 0, gmch_m: 0, gmch_n: 0, link_m: 0, link_n: 0, tu: 0
[    1.117566] [drm:intel_dump_pipe_config] dp: 1, lanes: 2, gmch_m: 6467616, gmch_n: 8388608, link_m: 269484, link_n: 524288, tu: 64
[    1.117569] [drm:intel_dump_pipe_config] dp: 1, lanes: 2, gmch_m2: 4311744, gmch_n2: 8388608, link_m2: 179656, link_n2: 524288, tu2: 64
[    1.117570] [drm:intel_dump_pipe_config] audio: 0, infoframes: 0
[    1.117572] [drm:intel_dump_pipe_config] requested mode:
[    1.117576] [drm:drm_mode_debug_printmodeline] Modeline 0:"1920x1080" 60 138780 1920 1966 1996 2080 1080 1082 1086 1112 0x48 0x9
[    1.117577] [drm:intel_dump_pipe_config] adjusted mode:
[    1.117582] [drm:drm_mode_debug_printmodeline] Modeline 0:"1920x1080" 60 138780 1920 1966 1996 2080 1080 1082 1086 1112 0x48 0x9
[    1.117585] [drm:intel_dump_crtc_timings] crtc timings: 138780 1920 1966 1996 2080 1080 1082 1086 1112, type: 0x48 flags: 0x9
[    1.117587] [drm:intel_dump_pipe_config] port clock: 270000
[    1.117588] [drm:intel_dump_pipe_config] pipe src size: 1920x1080
[    1.117590] [drm:intel_dump_pipe_config] num_scalers: 0, scaler_users: 0x0, scaler_id: 0
[    1.117592] [drm:intel_dump_pipe_config] gmch pfit: control: 0x00000000, ratios: 0x00000000, lvds border: 0x00000000
[    1.117594] [drm:intel_dump_pipe_config] pch pfit: pos: 0x00000000, size: 0x00000000, disabled
[    1.117595] [drm:intel_dump_pipe_config] ips: 0
[    1.117597] [drm:intel_dump_pipe_config] double wide: 0
[    1.117599] [drm:intel_dump_pipe_config] dpll_hw_state: dpll: 0x0, dpll_md: 0x0, fp0: 0x0, fp1: 0x0
[    1.117600] [drm:intel_dump_pipe_config] planes on this crtc
[    1.117606] [drm:intel_dump_pipe_config] [PLANE:23:primary A] enabled
[    1.117610] [drm:intel_dump_pipe_config] 	FB:54, fb = 1920x1080 format = XR24 little-endian (0x34325258)
[    1.117610] [drm:intel_dump_pipe_config] 	scaler:0 src 0x0+1920+1080 dst 0x0+1920+1080
[    1.117612] [drm:intel_dump_pipe_config] [PLANE:25:cursor A] disabled, scaler_id = 0
[    1.117614] [drm:intel_dump_pipe_config] [PLANE:27:sprite A] disabled, scaler_id = 0
[    1.117652] [drm:intel_edp_backlight_off] 
[    1.121529] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[    1.121712] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    1.121884] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    1.306052] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.307650] ata1.00: supports DRM functions and may not be fully accessible
[    1.308514] ata1.00: disabling queued TRIM support
[    1.308517] ata1.00: ATA-9: Samsung SSD 850 EVO mSATA 500GB, EMT41B6Q, max UDMA/133
[    1.308519] ata1.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    1.309171] ata1.00: supports DRM functions and may not be fully accessible
[    1.310001] ata1.00: disabling queued TRIM support
[    1.310297] ata1.00: configured for UDMA/133
[    1.324007] [drm:edp_panel_off] Turn eDP port A panel power off
[    1.324014] [drm:wait_panel_off] Wait for panel power off time
[    1.324024] [drm:wait_panel_status] mask b0000000 value 00000000 status 80000008 control abcd0000
[    1.324995] [drm:intel_get_hpd_pins] hotplug event received, stat 0x08000000, dig 0x00000011, pins 0x00000010
[    1.324999] [drm:intel_hpd_irq_handler] digital hpd port A - short
[    1.325049] [drm:intel_dp_hpd_pulse] got hpd irq on port A - short
[    1.375835] [drm:wait_panel_status] Wait complete
[    1.375859] [drm:intel_disable_pipe] disabling pipe A
[    1.375882] [drm:edp_panel_vdd_on] Turning eDP port A VDD on
[    1.375888] [drm:wait_panel_power_cycle] Wait for panel power cycle
[    1.376478] [drm:intel_get_hpd_pins] hotplug event received, stat 0x08000000, dig 0x00000012, pins 0x00000010
[    1.376483] [drm:intel_hpd_irq_handler] digital hpd port A - long
[    1.376485] [drm:intel_hpd_irq_storm_detect] Received HPD interrupt on PIN 4 - cnt: 0
[    1.387834] [drm:intel_dp_link_down] 
[    1.447830] [drm:ironlake_edp_pll_off] disabling eDP PLL
[    1.448054] [drm:verify_encoder_state] [ENCODER:37:CRT]
[    1.448061] [drm:verify_encoder_state] [ENCODER:38:DP A]
[    1.448063] [drm:verify_encoder_state] [ENCODER:48:HDMI C]
[    1.448070] [drm:verify_encoder_state] [ENCODER:51:DP C]
[    1.448075] [drm:intel_connector_verify_state] [CONNECTOR:36:VGA-1]
[    1.448079] [drm:intel_connector_verify_state] [CONNECTOR:49:HDMI-A-1]
[    1.448083] [drm:intel_connector_verify_state] [CONNECTOR:52:DP-1]
[    1.448087] [drm:verify_single_dpll_state] PCH DPLL A
[    1.448093] [drm:verify_single_dpll_state] PCH DPLL B
[    1.448106] [drm:ironlake_edp_pll_on] enabling eDP PLL for clock 270000
[    1.448864] [drm:intel_enable_pipe] enabling pipe A
[    1.723809] tsc: Refined TSC clocksource calibration: 2494.334 MHz
[    1.723829] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x23f45126d86, max_idle_ns: 440795256522 ns
[    1.947803] [drm:wait_panel_status] mask b800000f value 00000000 status 00000000 control abcd0000
[    1.947812] [drm:wait_panel_status] Wait complete
[    1.947819] [drm:edp_panel_vdd_on] PP_STATUS: 0x00000000 PP_CONTROL: 0xabcd0008
[    1.947823] [drm:edp_panel_vdd_on] eDP port A panel power wasn't enabled
[    1.983887] input: CyPS/2 Cypress Trackpad as /devices/platform/i8042/serio1/input/input8
[    2.057687] [drm:intel_get_hpd_pins] hotplug event received, stat 0x08000000, dig 0x00000012, pins 0x00000010
[    2.057692] [drm:intel_hpd_irq_handler] digital hpd port A - long
[    2.057694] [drm:intel_hpd_irq_storm_detect] Received HPD interrupt on PIN 4 - cnt: 1
[    2.156295] [drm:intel_dp_read_dpcd] DPCD: 11 0a 02 00 00 00 00 00 00 00 00 00 00 00 00
[    2.156302] [drm:_intel_dp_set_link_train] Using DP training pattern TPS1
[    2.156311] [drm:edp_panel_on] Turn eDP port A panel power on
[    2.156315] [drm:wait_panel_power_cycle] Wait for panel power cycle
[    2.156327] [drm:wait_panel_status] mask b800000f value 00000000 status 00000000 control abcd0008
[    2.156333] [drm:wait_panel_status] Wait complete
[    2.156338] [drm:wait_panel_on] Wait for panel power on
[    2.156347] [drm:wait_panel_status] mask b000000f value 80000008 status 0000000a control abcd000b
[    2.357856] [drm:wait_panel_status] Wait complete
[    2.357865] [drm:edp_panel_vdd_off_sync] Turning eDP port A VDD off
[    2.357874] [drm:edp_panel_vdd_off_sync] PP_STATUS: 0x80000008 PP_CONTROL: 0xabcd0003
[    2.357962] [drm:edp_panel_vdd_on] Turning eDP port A VDD on
[    2.357975] [drm:edp_panel_vdd_on] PP_STATUS: 0x80000008 PP_CONTROL: 0xabcd000b
[    2.359273] [drm:intel_dp_set_signal_levels] Using signal levels 09000000
[    2.359276] [drm:intel_dp_set_signal_levels] Using vswing level 0
[    2.359278] [drm:intel_dp_set_signal_levels] Using pre-emphasis level 0
[    2.359281] [drm:_intel_dp_set_link_train] Using DP training pattern TPS1
[    2.359957] [drm:intel_dp_link_training_clock_recovery] clock recovery OK
[    2.359961] [drm:_intel_dp_set_link_train] Using DP training pattern TPS2
[    2.360940] [drm:intel_dp_link_training_channel_equalization] Channel EQ done. DP Training successful
[    2.361115] [drm:intel_edp_backlight_on] 
[    2.377856] [drm:intel_connector_verify_state] [CONNECTOR:39:eDP-1]
[    2.377866] [drm:verify_crtc_state] [CRTC:26:pipe A]
[    2.377912] [drm:drm_fb_helper_hotplug_event] 
[    2.377916] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1]
[    2.377918] [drm:intel_dp_detect] [CONNECTOR:39:eDP-1]
[    2.377928] [drm:intel_dp_long_pulse] Display Port TPS3 support: source no, sink no
[    2.377943] [drm:intel_dp_print_rates] source rates: 162000, 270000
[    2.377945] [drm:intel_dp_print_rates] sink rates: 162000, 270000
[    2.377948] [drm:intel_dp_print_rates] common rates: 162000, 270000
[    2.378358] [drm:intel_dp_hpd_pulse] ignoring long hpd on eDP port A
[    2.378770] [drm:drm_edid_to_eld] ELD: no CEA Extension found
[    2.378778] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1] probed modes :
[    2.378784] [drm:drm_mode_debug_printmodeline] Modeline 40:"1920x1080" 60 138780 1920 1966 1996 2080 1080 1082 1086 1112 0x48 0x9
[    2.378788] [drm:drm_mode_debug_printmodeline] Modeline 41:"1920x1080" 40 92520 1920 1966 1996 2080 1080 1082 1086 1112 0x40 0x9
[    2.378790] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1]
[    2.378792] [drm:intel_crt_detect] [CONNECTOR:36:VGA-1] force=1
[    2.378799] [drm:intel_ironlake_crt_detect_hotplug] ironlake hotplug adpa=0xf40000, result 0
[    2.378800] [drm:intel_crt_detect] CRT not detected via hotplug
[    2.435717] [drm:do_gmbus_xfer] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
[    2.467677] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[    2.467679] [drm:intel_crt_get_edid] CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    2.467681] [drm:intel_gmbus_force_bit] enabling bit-banging on i915 gmbus vga. force bit now 1
[    2.499685] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[    2.499686] [drm:intel_gmbus_force_bit] disabling bit-banging on i915 gmbus vga. force bit now 0
[    2.499687] [drm:intel_crt_detect_ddc] CRT not detected via DDC:0x50 [no valid EDID found]
[    2.499689] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1] disconnected
[    2.499691] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1]
[    2.499692] [drm:intel_hdmi_detect] [CONNECTOR:49:HDMI-A-1]
[    2.500272] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[    2.500274] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[    2.500507] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[    2.500518] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[    2.500758] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[    2.500760] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[    2.500992] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[    2.500999] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1] disconnected
[    2.501002] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1]
[    2.501004] [drm:intel_dp_detect] [CONNECTOR:52:DP-1]
[    2.501013] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1] disconnected
[    2.501019] [drm:drm_setup_crtcs] 
[    2.501023] [drm:drm_enable_connectors] connector 39 enabled? yes
[    2.501025] [drm:drm_enable_connectors] connector 36 enabled? no
[    2.501026] [drm:drm_enable_connectors] connector 49 enabled? no
[    2.501028] [drm:drm_enable_connectors] connector 52 enabled? no
[    2.501033] [drm:intel_fb_initial_config] looking for cmdline mode on connector eDP-1
[    2.501035] [drm:intel_fb_initial_config] looking for preferred mode on connector eDP-1 0
[    2.501039] [drm:intel_fb_initial_config] connector eDP-1 on [CRTC:26:pipe A]: 1920x1080
[    2.501041] [drm:intel_fb_initial_config] connector VGA-1 not enabled, skipping
[    2.501042] [drm:intel_fb_initial_config] connector HDMI-A-1 not enabled, skipping
[    2.501044] [drm:intel_fb_initial_config] connector DP-1 not enabled, skipping
[    2.501048] [drm:drm_setup_crtcs] desired mode 1920x1080 set on crtc 26 (0,0)
[    2.540483] Console: switching to colour frame buffer device 240x67
[    2.555775] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    2.564270] scsi 0:0:0:0: Direct-Access     ATA      Samsung SSD 850  1B6Q PQ: 0 ANSI: 5
[    2.580329] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    2.580335] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.580794] sd 0:0:0:0: [sda] Write Protect is off
[    2.580800] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.580899] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.584004]  sda: sda1 sda2 < sda5 >
[    2.585219] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.587981] Freeing unused kernel memory: 1060K (ffffffff81f3e000 - ffffffff82047000)
[    2.587984] Write protecting the kernel read-only data: 14336k
[    2.588801] Freeing unused kernel memory: 788K (ffff88000193b000 - ffff880001a00000)
[    2.594472] Freeing unused kernel memory: 1016K (ffff880001d02000 - ffff880001e00000)
[    2.747912] clocksource: Switched to clocksource tsc
[    2.844019] [drm:intel_print_rc6_info] Enabling RC6 states: RC6 on RC6p on RC6pp on
[    2.844030] [drm:sandybridge_pcode_write] warning: pcode (write) mailbox access failed: -75
[    2.844032] [drm:gen6_enable_rps] Failed to set the min frequency
[    2.922003] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.922094] ehci-pci: EHCI PCI platform driver
[    2.922234] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    2.922239] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    2.922254] ehci-pci 0000:00:1a.0: debug port 2
[    2.926156] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    2.926169] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd051a000
[    2.939633] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    2.939825] hub 1-0:1.0: USB hub found
[    2.939832] hub 1-0:1.0: 2 ports detected
[    2.940095] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    2.940101] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    2.940116] ehci-pci 0000:00:1d.0: debug port 2
[    2.944008] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    2.944021] ehci-pci 0000:00:1d.0: irq 23, io mem 0xd0519000
[    2.959629] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    2.959766] hub 2-0:1.0: USB hub found
[    2.959771] hub 2-0:1.0: 2 ports detected
[    2.959996] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    2.960002] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    2.961091] xhci_hcd 0000:00:14.0: hcc params 0x20007181 hci version 0x100 quirks 0x0000b930
[    2.961097] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    2.961748] hub 3-0:1.0: USB hub found
[    2.961760] hub 3-0:1.0: 4 ports detected
[    2.962143] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    2.962147] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    2.962416] hub 4-0:1.0: USB hub found
[    2.962428] hub 4-0:1.0: 4 ports detected
[    3.102463] [drm:i915_gem_open] 
[    3.102497] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1]
[    3.102498] [drm:intel_dp_detect] [CONNECTOR:39:eDP-1]
[    3.102501] [drm:intel_dp_long_pulse] Display Port TPS3 support: source no, sink no
[    3.102502] [drm:intel_dp_print_rates] source rates: 162000, 270000
[    3.102503] [drm:intel_dp_print_rates] sink rates: 162000, 270000
[    3.102504] [drm:intel_dp_print_rates] common rates: 162000, 270000
[    3.102859] [drm:drm_edid_to_eld] ELD: no CEA Extension found
[    3.102861] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1] probed modes :
[    3.102863] [drm:drm_mode_debug_printmodeline] Modeline 40:"1920x1080" 60 138780 1920 1966 1996 2080 1080 1082 1086 1112 0x48 0x9
[    3.102865] [drm:drm_mode_debug_printmodeline] Modeline 41:"1920x1080" 40 92520 1920 1966 1996 2080 1080 1082 1086 1112 0x40 0x9
[    3.106645] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1]
[    3.106646] [drm:intel_crt_detect] [CONNECTOR:36:VGA-1] force=1
[    3.106651] [drm:intel_ironlake_crt_detect_hotplug] ironlake hotplug adpa=0xf40000, result 0
[    3.106652] [drm:intel_crt_detect] CRT not detected via hotplug
[    3.163706] [drm:do_gmbus_xfer] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
[    3.195626] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[    3.195628] [drm:intel_crt_get_edid] CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    3.195631] [drm:intel_gmbus_force_bit] enabling bit-banging on i915 gmbus vga. force bit now 1
[    3.227661] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[    3.227664] [drm:intel_gmbus_force_bit] disabling bit-banging on i915 gmbus vga. force bit now 0
[    3.227666] [drm:intel_crt_detect_ddc] CRT not detected via DDC:0x50 [no valid EDID found]
[    3.227670] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1] disconnected
[    3.227693] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1]
[    3.227695] [drm:intel_hdmi_detect] [CONNECTOR:49:HDMI-A-1]
[    3.228324] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[    3.228328] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[    3.228621] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[    3.228630] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[    3.228927] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[    3.228930] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[    3.229236] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[    3.229243] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1] disconnected
[    3.229265] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1]
[    3.229268] [drm:intel_dp_detect] [CONNECTOR:52:DP-1]
[    3.229277] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1] disconnected
[    3.229313] [drm:drm_mode_addfb2] [FB:53]
[    3.267633] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    3.287634] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    3.328703] [drm:drm_mode_addfb2] [FB:53]
[    3.328747] [drm:drm_mode_setcrtc] [CRTC:26:pipe A]
[    3.328754] [drm:drm_mode_setcrtc] [CONNECTOR:39:eDP-1]
[    3.350241] [drm:drm_mode_setcrtc] [CRTC:26:pipe A]
[    3.350252] [drm:drm_mode_setcrtc] [CONNECTOR:39:eDP-1]
[    3.416250] hub 1-1:1.0: USB hub found
[    3.416308] hub 1-1:1.0: 6 ports detected
[    3.420550] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    3.436191] hub 2-1:1.0: USB hub found
[    3.436292] hub 2-1:1.0: 8 ports detected
[    3.527726] systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
[    3.527933] systemd[1]: Detected architecture x86-64.
[    3.528165] systemd[1]: Set hostname to <minivanes>.
[    3.594174] systemd[1]: Listening on udev Control Socket.
[    3.594226] systemd[1]: Reached target Remote File Systems (Pre).
[    3.594277] systemd[1]: Created slice System Slice.
[    3.594310] systemd[1]: Listening on Syslog Socket.
[    3.594338] systemd[1]: Listening on Journal Socket (/dev/log).
[    3.594350] systemd[1]: Reached target Remote File Systems.
[    3.594380] systemd[1]: Listening on Journal Socket.
[    3.707592] usb 1-1.5: new high-speed USB device number 3 using ehci-pci
[    3.722764] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[    3.723569] usb 2-1.5: new full-speed USB device number 3 using ehci-pci
[    3.733527] systemd-journald[790]: Received request to flush runtime journal from PID 1
[    4.064396] Intel(R) Wireless WiFi driver for Linux
[    4.064397] Copyright(c) 2003- 2015 Intel Corporation
[    4.064554] iwlwifi 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
[    4.067333] iwlwifi 0000:01:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
[    4.070178] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUG disabled
[    4.070179] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
[    4.070180] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
[    4.070182] iwlwifi 0000:01:00.0: Detected Intel(R) Centrino(R) Advanced-N 6235 AGN, REV=0xB0
[    4.071586] iwlwifi 0000:01:00.0: L1 Enabled - LTR Disabled
[    4.091748] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[    4.126785] AVX version of gcm_enc/dec engaged.
[    4.126786] AES CTR mode by8 optimization enabled
[    4.226174] iwlwifi 0000:01:00.0 wlp1s0: renamed from wlan0
[    4.258051] Adding 7934972k swap on /dev/sda5.  Priority:-1 extents:1 across:7934972k SSFS
[    4.310927] [drm:i915_gem_open] 
[    4.310971] [drm:i915_gem_open] 
[    4.310992] [drm:i915_gem_open] 
[    4.311011] [drm:i915_gem_open] 
[    4.311028] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1]
[    4.311030] [drm:intel_dp_detect] [CONNECTOR:39:eDP-1]
[    4.311032] [drm:intel_dp_long_pulse] Display Port TPS3 support: source no, sink no
[    4.311034] [drm:intel_dp_print_rates] source rates: 162000, 270000
[    4.311035] [drm:intel_dp_print_rates] sink rates: 162000, 270000
[    4.311036] [drm:intel_dp_print_rates] common rates: 162000, 270000
[    4.311577] [drm:drm_edid_to_eld] ELD: no CEA Extension found
[    4.311579] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1] probed modes :
[    4.311581] [drm:drm_mode_debug_printmodeline] Modeline 40:"1920x1080" 60 138780 1920 1966 1996 2080 1080 1082 1086 1112 0x48 0x9
[    4.311583] [drm:drm_mode_debug_printmodeline] Modeline 41:"1920x1080" 40 92520 1920 1966 1996 2080 1080 1082 1086 1112 0x40 0x9
[    4.311595] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1]
[    4.311597] [drm:intel_crt_detect] [CONNECTOR:36:VGA-1] force=1
[    4.311599] [drm:intel_ironlake_crt_detect_hotplug] ironlake hotplug adpa=0xf40000, result 0
[    4.311600] [drm:intel_crt_detect] CRT not detected via hotplug
[    4.318640] uvcvideo: Found UVC 1.00 device Laptop_Integrated_Webcam_1.3M (1bcf:288f)
[    4.371521] [drm:do_gmbus_xfer] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
[    4.399316] input: Laptop_Integrated_Webcam_1.3M as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/input/input12
[    4.403543] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[    4.403545] [drm:intel_crt_get_edid] CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    4.403546] [drm:intel_gmbus_force_bit] enabling bit-banging on i915 gmbus vga. force bit now 1
[    4.435527] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[    4.435535] [drm:intel_gmbus_force_bit] disabling bit-banging on i915 gmbus vga. force bit now 0
[    4.435539] [drm:intel_crt_detect_ddc] CRT not detected via DDC:0x50 [no valid EDID found]
[    4.435542] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1] disconnected
[    4.435556] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1]
[    4.435558] [drm:intel_hdmi_detect] [CONNECTOR:49:HDMI-A-1]
[    4.436053] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[    4.436054] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[    4.436209] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[    4.436211] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[    4.436363] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[    4.436364] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[    4.436519] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[    4.436521] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1] disconnected
[    4.436526] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1]
[    4.436527] [drm:intel_dp_detect] [CONNECTOR:52:DP-1]
[    4.436530] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1] disconnected
[    4.751002] [drm:i915_gem_open] 
[    4.799777] [drm:i915_gem_open] 
[    4.799889] [drm:i915_gem_open] 
[    4.799911] [drm:drm_mode_addfb2] [FB:57]
[    4.858303] [drm:i915_gem_context_create_ioctl] HW context 1 created
[    4.861757] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1]
[    4.861759] [drm:intel_dp_detect] [CONNECTOR:39:eDP-1]
[    4.861762] [drm:intel_dp_long_pulse] Display Port TPS3 support: source no, sink no
[    4.861764] [drm:intel_dp_print_rates] source rates: 162000, 270000
[    4.861766] [drm:intel_dp_print_rates] sink rates: 162000, 270000
[    4.861767] [drm:intel_dp_print_rates] common rates: 162000, 270000
[    4.862118] [drm:drm_edid_to_eld] ELD: no CEA Extension found
[    4.862121] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1] probed modes :
[    4.862124] [drm:drm_mode_debug_printmodeline] Modeline 40:"1920x1080" 60 138780 1920 1966 1996 2080 1080 1082 1086 1112 0x48 0x9
[    4.862126] [drm:drm_mode_debug_printmodeline] Modeline 41:"1920x1080" 40 92520 1920 1966 1996 2080 1080 1082 1086 1112 0x40 0x9
[    4.862226] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1]
[    4.862227] [drm:intel_crt_detect] [CONNECTOR:36:VGA-1] force=1
[    4.862230] [drm:intel_ironlake_crt_detect_hotplug] ironlake hotplug adpa=0xf40000, result 0
[    4.862231] [drm:intel_crt_detect] CRT not detected via hotplug
[    4.867269] IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
[    4.869379] iwlwifi 0000:01:00.0: L1 Enabled - LTR Disabled
[    4.876322] iwlwifi 0000:01:00.0: L1 Enabled - LTR Disabled
[    4.876410] iwlwifi 0000:01:00.0: Radio type=0x2-0x1-0x0
[    4.919483] [drm:do_gmbus_xfer] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
[    4.951512] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[    4.951524] [drm:intel_crt_get_edid] CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    4.951527] [drm:intel_gmbus_force_bit] enabling bit-banging on i915 gmbus vga. force bit now 1
[    4.983507] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[    4.983518] [drm:intel_gmbus_force_bit] disabling bit-banging on i915 gmbus vga. force bit now 0
[    4.983521] [drm:intel_crt_detect_ddc] CRT not detected via DDC:0x50 [no valid EDID found]
[    4.983524] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1] disconnected
[    4.983612] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1]
[    4.983618] [drm:intel_hdmi_detect] [CONNECTOR:49:HDMI-A-1]
[    4.984114] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[    4.984116] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[    4.984273] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[    4.984275] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[    4.984435] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[    4.984436] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[    4.984593] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[    4.984595] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1] disconnected
[    4.984677] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1]
[    4.984678] [drm:intel_dp_detect] [CONNECTOR:52:DP-1]
[    4.984682] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1] disconnected
[    4.984761] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1]
[    4.984762] [drm:intel_dp_detect] [CONNECTOR:39:eDP-1]
[    4.984764] [drm:intel_dp_long_pulse] Display Port TPS3 support: source no, sink no
[    4.984766] [drm:intel_dp_print_rates] source rates: 162000, 270000
[    4.984767] [drm:intel_dp_print_rates] sink rates: 162000, 270000
[    4.984768] [drm:intel_dp_print_rates] common rates: 162000, 270000
[    4.985117] [drm:drm_edid_to_eld] ELD: no CEA Extension found
[    4.985121] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1] probed modes :
[    4.985123] [drm:drm_mode_debug_printmodeline] Modeline 40:"1920x1080" 60 138780 1920 1966 1996 2080 1080 1082 1086 1112 0x48 0x9
[    4.985124] [drm:drm_mode_debug_printmodeline] Modeline 41:"1920x1080" 40 92520 1920 1966 1996 2080 1080 1082 1086 1112 0x40 0x9
[    4.985708] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1]
[    4.985709] [drm:intel_crt_detect] [CONNECTOR:36:VGA-1] force=1
[    4.985711] [drm:intel_ironlake_crt_detect_hotplug] ironlake hotplug adpa=0xf40000, result 0
[    4.985712] [drm:intel_crt_detect] CRT not detected via hotplug
[    5.045336] [drm:do_gmbus_xfer] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
[    5.075497] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[    5.075499] [drm:intel_crt_get_edid] CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    5.075501] [drm:intel_gmbus_force_bit] enabling bit-banging on i915 gmbus vga. force bit now 1
[    5.107484] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[    5.107494] [drm:intel_gmbus_force_bit] disabling bit-banging on i915 gmbus vga. force bit now 0
[    5.107496] [drm:intel_crt_detect_ddc] CRT not detected via DDC:0x50 [no valid EDID found]
[    5.107501] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1] disconnected
[    5.107555] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1]
[    5.107558] [drm:intel_hdmi_detect] [CONNECTOR:49:HDMI-A-1]
[    5.108084] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[    5.108085] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[    5.108260] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[    5.108263] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[    5.108446] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[    5.108447] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[    5.108628] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[    5.108630] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1] disconnected
[    5.108675] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1]
[    5.108676] [drm:intel_dp_detect] [CONNECTOR:52:DP-1]
[    5.108679] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1] disconnected
[    5.187114] [drm:drm_mode_addfb2] [FB:57]
[    5.194135] [drm:drm_mode_setcrtc] [CRTC:26:pipe A]
[    5.194140] [drm:drm_mode_setcrtc] [CONNECTOR:39:eDP-1]
[    5.199502] iwlwifi 0000:01:00.0: L1 Enabled - LTR Disabled
[    5.206463] iwlwifi 0000:01:00.0: L1 Enabled - LTR Disabled
[    5.206560] iwlwifi 0000:01:00.0: Radio type=0x2-0x1-0x0
[    5.227403] [drm:drm_mode_setcrtc] [CRTC:30:pipe B]
[    5.227428] [drm:drm_mode_setcrtc] [CRTC:34:pipe C]
[    5.244074] [drm:drm_mode_setcrtc] [CRTC:26:pipe A]
[    5.244087] [drm:drm_mode_setcrtc] [CONNECTOR:39:eDP-1]
[    5.277394] [drm:drm_mode_setcrtc] [CRTC:30:pipe B]
[    5.277417] [drm:drm_mode_setcrtc] [CRTC:34:pipe C]
[    5.288935] IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
[    5.523233] IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
[    5.930729] [drm:i915_gem_open] 
[    5.954712] [drm:i915_gem_context_create_ioctl] HW context 1 created
[    5.960533] [drm:i915_gem_context_destroy_ioctl] HW context 1 destroyed
[    8.078588] [drm:i915_gem_context_create_ioctl] HW context 1 created
[    8.155187] [drm:edp_panel_vdd_off_sync] Turning eDP port A VDD off
[    8.155193] [drm:edp_panel_vdd_off_sync] PP_STATUS: 0x80000008 PP_CONTROL: 0xabcd0007
[    8.209880] [drm:drm_mode_addfb2] [FB:53]
[    8.234235] [drm:drm_mode_addfb2] [FB:57]
[    8.244821] [drm:drm_mode_addfb2] [FB:59]
[    8.260493] [drm:drm_mode_addfb2] [FB:53]
[    8.277165] [drm:drm_mode_addfb2] [FB:57]
[    8.293824] [drm:drm_mode_addfb2] [FB:59]
[    8.310494] [drm:drm_mode_addfb2] [FB:53]
[    8.327172] [drm:drm_mode_addfb2] [FB:57]
[    8.343826] [drm:drm_mode_addfb2] [FB:59]
[    8.360486] [drm:drm_mode_addfb2] [FB:53]
[    8.379231] [drm:drm_mode_addfb2] [FB:57]
[    8.393816] [drm:drm_mode_addfb2] [FB:59]
[    8.410475] [drm:drm_mode_addfb2] [FB:53]
[    8.427144] [drm:drm_mode_addfb2] [FB:57]
[    8.443811] [drm:drm_mode_addfb2] [FB:59]
[    8.809783] [drm:drm_mode_addfb2] [FB:53]
[    9.336382] [drm:drm_mode_addfb2] [FB:57]
[    9.859969] [drm:drm_mode_addfb2] [FB:53]
[   10.385532] [drm:drm_mode_addfb2] [FB:57]
[   17.408193] vboxdrv: loading out-of-tree module taints kernel.
[   17.409386] vboxdrv: Found 4 processor cores
[   17.434643] vboxdrv: TSC mode is Invariant, tentative frequency 2494255565 Hz
[   17.434645] vboxdrv: Successfully loaded version 5.1.4 (interface 0x00260000)
[   17.640448] VBoxNetFlt: Successfully started.
[   17.645088] VBoxNetAdp: Successfully started.
[   17.648200] VBoxPciLinuxInit
[   17.648208] vboxpci: pci-stub module not available, cannot detach PCI devices
[   17.648209] vboxpci: IOMMU not found (not compiled)
[   18.272161] random: crng init done
[   22.609211] [drm:drm_mode_setcrtc] [CRTC:26:pipe A]
[   22.609225] [drm:drm_mode_setcrtc] [CONNECTOR:39:eDP-1]
[   22.642488] [drm:drm_mode_setcrtc] [CRTC:30:pipe B]
[   22.642541] [drm:drm_mode_setcrtc] [CRTC:34:pipe C]
[   22.659239] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1]
[   22.659244] [drm:intel_dp_detect] [CONNECTOR:39:eDP-1]
[   22.659249] [drm:intel_dp_long_pulse] Display Port TPS3 support: source no, sink no
[   22.659252] [drm:intel_dp_print_rates] source rates: 162000, 270000
[   22.659255] [drm:intel_dp_print_rates] sink rates: 162000, 270000
[   22.659257] [drm:intel_dp_print_rates] common rates: 162000, 270000
[   22.659265] [drm:edp_panel_vdd_on] Turning eDP port A VDD on
[   22.659274] [drm:edp_panel_vdd_on] PP_STATUS: 0x80000008 PP_CONTROL: 0xabcd000f
[   22.659688] [drm:drm_edid_to_eld] ELD: no CEA Extension found
[   22.659697] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1] probed modes :
[   22.659702] [drm:drm_mode_debug_printmodeline] Modeline 40:"1920x1080" 60 138780 1920 1966 1996 2080 1080 1082 1086 1112 0x48 0x9
[   22.659706] [drm:drm_mode_debug_printmodeline] Modeline 41:"1920x1080" 40 92520 1920 1966 1996 2080 1080 1082 1086 1112 0x40 0x9
[   22.660317] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1]
[   22.660321] [drm:intel_crt_detect] [CONNECTOR:36:VGA-1] force=1
[   22.660327] [drm:intel_ironlake_crt_detect_hotplug] ironlake hotplug adpa=0xf40000, result 0
[   22.660328] [drm:intel_crt_detect] CRT not detected via hotplug
[   22.717731] [drm:do_gmbus_xfer] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
[   22.749700] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[   22.749702] [drm:intel_crt_get_edid] CRT GMBUS EDID read failed, retry using GPIO bit-banging
[   22.749705] [drm:intel_gmbus_force_bit] enabling bit-banging on i915 gmbus vga. force bit now 1
[   22.781685] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[   22.781687] [drm:intel_gmbus_force_bit] disabling bit-banging on i915 gmbus vga. force bit now 0
[   22.781689] [drm:intel_crt_detect_ddc] CRT not detected via DDC:0x50 [no valid EDID found]
[   22.781691] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1] disconnected
[   22.781718] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1]
[   22.781719] [drm:intel_hdmi_detect] [CONNECTOR:49:HDMI-A-1]
[   22.782276] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   22.782280] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   22.782498] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   22.782507] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[   22.782727] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   22.782730] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   22.782951] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   22.782959] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1] disconnected
[   22.782986] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1]
[   22.782989] [drm:intel_dp_detect] [CONNECTOR:52:DP-1]
[   22.782996] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1] disconnected
[   22.793785] [drm:drm_mode_addfb2] [FB:56]
[   22.809173] [drm:drm_mode_addfb2] [FB:62]
[   22.825990] [drm:drm_mode_addfb2] [FB:57]
[   22.842594] [drm:drm_mode_addfb2] [FB:56]
[   23.330503] [drm:drm_mode_addfb2] [FB:57]
[   23.568299] [drm:drm_mode_addfb2] [FB:56]
[   23.656460] [drm:drm_mode_addfb2] [FB:57]
[   23.853171] [drm:drm_mode_addfb2] [FB:56]
[   24.268726] [drm:drm_mode_addfb2] [FB:57]
[   24.334592] [drm:drm_mode_addfb2] [FB:56]
[   24.380023] [drm:drm_mode_addfb2] [FB:57]
[   24.406439] [drm:drm_mode_addfb2] [FB:56]
[   24.444451] [drm:drm_mode_addfb2] [FB:57]
[   24.647983] [drm:drm_mode_addfb2] [FB:56]
[   24.658990] [drm:drm_mode_addfb2] [FB:62]
[   24.675604] [drm:drm_mode_addfb2] [FB:57]
[   24.692254] [drm:drm_mode_addfb2] [FB:56]
[   24.708886] [drm:drm_mode_addfb2] [FB:62]
[   24.725548] [drm:drm_mode_addfb2] [FB:57]
[   24.742209] [drm:drm_mode_addfb2] [FB:56]
[   24.758874] [drm:drm_mode_addfb2] [FB:62]
[   24.775538] [drm:drm_mode_addfb2] [FB:57]
[   24.792202] [drm:drm_mode_addfb2] [FB:56]
[   25.376119] [drm:drm_mode_addfb2] [FB:57]
[   25.394070] [drm:i915_gem_context_destroy_ioctl] HW context 1 destroyed
[   25.403150] IPv6: ADDRCONF(NETDEV_UP): wlp1s0: link is not ready
[   25.657674] [drm:i915_gem_open] 
[   25.665296] [drm:i915_gem_context_create_ioctl] HW context 1 created
[   25.667219] [drm:i915_gem_context_destroy_ioctl] HW context 1 destroyed
[   25.817520] [drm:edp_panel_vdd_off_sync] Turning eDP port A VDD off
[   25.817527] [drm:edp_panel_vdd_off_sync] PP_STATUS: 0x80000008 PP_CONTROL: 0xabcd0007
[   25.832560] [drm:i915_gem_context_create_ioctl] HW context 1 created
[   26.272841] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1]
[   26.272844] [drm:intel_dp_detect] [CONNECTOR:39:eDP-1]
[   26.272847] [drm:intel_dp_long_pulse] Display Port TPS3 support: source no, sink no
[   26.272849] [drm:intel_dp_print_rates] source rates: 162000, 270000
[   26.272850] [drm:intel_dp_print_rates] sink rates: 162000, 270000
[   26.272852] [drm:intel_dp_print_rates] common rates: 162000, 270000
[   26.272856] [drm:edp_panel_vdd_on] Turning eDP port A VDD on
[   26.272863] [drm:edp_panel_vdd_on] PP_STATUS: 0x80000008 PP_CONTROL: 0xabcd000f
[   26.273214] [drm:drm_edid_to_eld] ELD: no CEA Extension found
[   26.273218] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1] probed modes :
[   26.273221] [drm:drm_mode_debug_printmodeline] Modeline 40:"1920x1080" 60 138780 1920 1966 1996 2080 1080 1082 1086 1112 0x48 0x9
[   26.273223] [drm:drm_mode_debug_printmodeline] Modeline 41:"1920x1080" 40 92520 1920 1966 1996 2080 1080 1082 1086 1112 0x40 0x9
[   26.273513] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1]
[   26.273515] [drm:intel_crt_detect] [CONNECTOR:36:VGA-1] force=1
[   26.273519] [drm:intel_ironlake_crt_detect_hotplug] ironlake hotplug adpa=0xf40000, result 0
[   26.273519] [drm:intel_crt_detect] CRT not detected via hotplug
[   26.333326] [drm:do_gmbus_xfer] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
[   26.365353] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[   26.365356] [drm:intel_crt_get_edid] CRT GMBUS EDID read failed, retry using GPIO bit-banging
[   26.365360] [drm:intel_gmbus_force_bit] enabling bit-banging on i915 gmbus vga. force bit now 1
[   26.397312] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[   26.397323] [drm:intel_gmbus_force_bit] disabling bit-banging on i915 gmbus vga. force bit now 0
[   26.397326] [drm:intel_crt_detect_ddc] CRT not detected via DDC:0x50 [no valid EDID found]
[   26.397328] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1] disconnected
[   26.397355] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1]
[   26.397362] [drm:intel_hdmi_detect] [CONNECTOR:49:HDMI-A-1]
[   26.397866] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   26.397867] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   26.398022] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   26.398025] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[   26.398187] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   26.398188] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   26.398344] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   26.398346] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1] disconnected
[   26.398358] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1]
[   26.398358] [drm:intel_dp_detect] [CONNECTOR:52:DP-1]
[   26.398361] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1] disconnected
[   26.442170] [drm:i915_gem_open] 
[   26.472876] [drm:i915_gem_context_create_ioctl] HW context 1 created
[   26.474244] [drm:i915_gem_context_destroy_ioctl] HW context 1 destroyed
[   26.690924] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1]
[   26.690927] [drm:intel_dp_detect] [CONNECTOR:39:eDP-1]
[   26.690930] [drm:intel_dp_long_pulse] Display Port TPS3 support: source no, sink no
[   26.690932] [drm:intel_dp_print_rates] source rates: 162000, 270000
[   26.690933] [drm:intel_dp_print_rates] sink rates: 162000, 270000
[   26.690934] [drm:intel_dp_print_rates] common rates: 162000, 270000
[   26.691289] [drm:drm_edid_to_eld] ELD: no CEA Extension found
[   26.691292] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:39:eDP-1] probed modes :
[   26.691295] [drm:drm_mode_debug_printmodeline] Modeline 40:"1920x1080" 60 138780 1920 1966 1996 2080 1080 1082 1086 1112 0x48 0x9
[   26.691297] [drm:drm_mode_debug_printmodeline] Modeline 41:"1920x1080" 40 92520 1920 1966 1996 2080 1080 1082 1086 1112 0x40 0x9
[   26.691541] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1]
[   26.691543] [drm:intel_crt_detect] [CONNECTOR:36:VGA-1] force=1
[   26.691545] [drm:intel_ironlake_crt_detect_hotplug] ironlake hotplug adpa=0xf40000, result 0
[   26.691546] [drm:intel_crt_detect] CRT not detected via hotplug
[   26.749270] [drm:do_gmbus_xfer] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
[   26.781287] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[   26.781289] [drm:intel_crt_get_edid] CRT GMBUS EDID read failed, retry using GPIO bit-banging
[   26.781291] [drm:intel_gmbus_force_bit] enabling bit-banging on i915 gmbus vga. force bit now 1
[   26.813409] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus vga
[   26.813412] [drm:intel_gmbus_force_bit] disabling bit-banging on i915 gmbus vga. force bit now 0
[   26.813414] [drm:intel_crt_detect_ddc] CRT not detected via DDC:0x50 [no valid EDID found]
[   26.813416] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:36:VGA-1] disconnected
[   26.813439] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1]
[   26.813441] [drm:intel_hdmi_detect] [CONNECTOR:49:HDMI-A-1]
[   26.813932] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   26.813933] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   26.814088] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0050 w(1)
[   26.814089] [drm:drm_do_probe_ddc_edid] drm: skipping non-existent adapter i915 gmbus dpc
[   26.814238] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   26.814239] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK on first message, retry
[   26.814387] [drm:do_gmbus_xfer] GMBUS [i915 gmbus dpc] NAK for addr: 0040 w(1)
[   26.814389] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:49:HDMI-A-1] disconnected
[   26.814397] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1]
[   26.814398] [drm:intel_dp_detect] [CONNECTOR:52:DP-1]
[   26.814400] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:52:DP-1] disconnected
[   26.854761] [drm:i915_gem_open] 
[   26.863626] [drm:i915_gem_open] 
[   26.872240] [drm:i915_gem_context_create_ioctl] HW context 1 created
[   26.934149] [drm:drm_mode_addfb2] [FB:56]
[   27.021569] [drm:i915_gem_open] 
[   27.029733] [drm:drm_mode_addfb2] [FB:57]
[   27.037594] [drm:i915_gem_context_create_ioctl] HW context 1 created
[   27.040550] [drm:i915_gem_context_destroy_ioctl] HW context 1 destroyed
[   27.045250] [drm:drm_mode_addfb2] [FB:56]
[   27.064325] [drm:drm_mode_addfb2] [FB:57]
[   27.083996] [drm:drm_mode_addfb2] [FB:56]
[   27.100486] [drm:drm_mode_addfb2] [FB:57]
[   27.117772] [drm:drm_mode_addfb2] [FB:56]
[   27.134357] [drm:drm_mode_addfb2] [FB:57]
[   27.152598] [drm:drm_mode_addfb2] [FB:56]
[   27.169197] [drm:drm_mode_addfb2] [FB:57]
[   27.185518] [drm:drm_mode_addfb2] [FB:56]
[   27.201877] [drm:drm_mode_addfb2] [FB:57]
[   27.218868] [drm:drm_mode_addfb2] [FB:56]
[   27.235161] [drm:drm_mode_addfb2] [FB:57]
[   27.251501] [drm:drm_mode_addfb2] [FB:56]
[   27.267846] [drm:drm_mode_addfb2] [FB:57]
[   27.284193] [drm:drm_mode_addfb2] [FB:56]
[   27.300498] [drm:drm_mode_addfb2] [FB:57]
[   27.316833] [drm:drm_mode_addfb2] [FB:56]
[   27.365162] [drm:drm_mode_addfb2] [FB:57]
[   27.381839] [drm:drm_mode_addfb2] [FB:56]
[   27.398601] [drm:drm_mode_addfb2] [FB:57]
[   27.415114] [drm:drm_mode_addfb2] [FB:56]
[   27.433199] [drm:drm_mode_addfb2] [FB:57]
[   27.449556] [drm:drm_mode_addfb2] [FB:56]
[   27.466219] [drm:drm_mode_addfb2] [FB:57]
[   27.486793] [drm:drm_mode_addfb2] [FB:56]
[   27.504349] [drm:drm_mode_addfb2] [FB:57]
[   27.521405] [drm:drm_mode_addfb2] [FB:56]
[   27.538583] [drm:drm_mode_addfb2] [FB:57]
[   27.558910] [drm:drm_mode_addfb2] [FB:62]
[   27.575471] [drm:drm_mode_addfb2] [FB:56]
[   27.592101] [drm:drm_mode_addfb2] [FB:57]
[   27.608692] [drm:drm_mode_addfb2] [FB:62]
[   27.625978] [drm:drm_mode_addfb2] [FB:56]
[   27.665942] [drm:i915_gem_open] 
[   27.688667] [drm:drm_mode_addfb2] [FB:57]
[   27.708619] [drm:drm_mode_addfb2] [FB:62]
[   27.837674] [drm:drm_mode_addfb2] [FB:56]
[   27.857204] [drm:i915_gem_context_create_ioctl] HW context 1 created
[   27.898729] [drm:drm_mode_addfb2] [FB:57]
[   27.912071] hid-generic 0005:046D:B014.0001: unknown main item tag 0x0
[   27.912192] input: Bluetooth Mouse M336/M337/M535 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/bluetooth/hci0/hci0:34/0005:046D:B014.0001/input/input13
[   27.912464] hid-generic 0005:046D:B014.0001: input: BLUETOOTH HID v12.00 Mouse [Bluetooth Mouse M336/M337/M535] on c8:f7:33:90:9b:5f
[   27.916180] [drm:drm_mode_addfb2] [FB:56]
[   27.933659] [drm:drm_mode_addfb2] [FB:57]
[   27.958763] [drm:drm_mode_addfb2] [FB:62]
[   27.975404] [drm:drm_mode_addfb2] [FB:56]
[   27.996704] [drm:drm_mode_addfb2] [FB:57]
[   28.008650] [drm:drm_mode_addfb2] [FB:62]
[   28.025219] [drm:drm_mode_addfb2] [FB:56]
[   29.912943] [drm:edp_panel_vdd_off_sync] Turning eDP port A VDD off
[   29.912949] [drm:edp_panel_vdd_off_sync] PP_STATUS: 0x80000008 PP_CONTROL: 0xabcd0007
[   31.989279] [drm:drm_mode_addfb2] [FB:57]
[   32.008265] [drm:drm_mode_addfb2] [FB:62]
[   32.024957] [drm:drm_mode_addfb2] [FB:56]
[   32.041586] [drm:drm_mode_addfb2] [FB:57]
[   32.058255] [drm:drm_mode_addfb2] [FB:62]
[   32.074871] [drm:drm_mode_addfb2] [FB:56]
[   32.091557] [drm:drm_mode_addfb2] [FB:57]
[   32.108216] [drm:drm_mode_addfb2] [FB:62]
[   32.124882] [drm:drm_mode_addfb2] [FB:56]
[   32.141564] [drm:drm_mode_addfb2] [FB:57]
[   32.158197] [drm:drm_mode_addfb2] [FB:62]
[   35.197211] [drm:drm_mode_addfb2] [FB:56]
[   35.221642] [drm:i915_gem_context_destroy_ioctl] HW context 1 destroyed
[   35.257351] [drm:drm_mode_addfb2] [FB:62]
[   35.274572] [drm:drm_mode_addfb2] [FB:63]
[   35.291254] [drm:drm_mode_addfb2] [FB:56]
[   35.307913] [drm:drm_mode_addfb2] [FB:62]
[   35.324570] [drm:drm_mode_addfb2] [FB:63]
[   35.341251] [drm:drm_mode_addfb2] [FB:56]
[   35.357892] [drm:drm_mode_addfb2] [FB:62]
[   35.374567] [drm:drm_mode_addfb2] [FB:63]
[   35.391224] [drm:drm_mode_addfb2] [FB:56]
[   35.408047] [drm:drm_mode_addfb2] [FB:62]
[   35.424714] [drm:drm_mode_addfb2] [FB:63]
[   35.441356] [drm:drm_mode_addfb2] [FB:56]
[   35.457900] [drm:drm_mode_addfb2] [FB:62]
[   35.474562] [drm:drm_mode_addfb2] [FB:63]
[   35.491221] [drm:drm_mode_addfb2] [FB:56]
[   35.507888] [drm:drm_mode_addfb2] [FB:62]
[   35.524538] [drm:drm_mode_addfb2] [FB:63]
[   35.541209] [drm:drm_mode_addfb2] [FB:56]
[   35.557876] [drm:drm_mode_addfb2] [FB:62]
[   35.574540] [drm:drm_mode_addfb2] [FB:63]
[   35.591210] [drm:drm_mode_addfb2] [FB:56]
[   35.607877] [drm:drm_mode_addfb2] [FB:62]
[   35.624532] [drm:drm_mode_addfb2] [FB:63]
[   35.641192] [drm:drm_mode_addfb2] [FB:56]
[   35.657870] [drm:drm_mode_addfb2] [FB:62]
[   35.674592] [drm:drm_mode_addfb2] [FB:63]
[   35.691189] [drm:drm_mode_addfb2] [FB:56]
[   35.707864] [drm:drm_mode_addfb2] [FB:62]
[   35.724514] [drm:drm_mode_addfb2] [FB:63]
[   35.741175] [drm:drm_mode_addfb2] [FB:56]
[   35.757856] [drm:drm_mode_addfb2] [FB:62]
[   35.774535] [drm:drm_mode_addfb2] [FB:63]
[   35.791196] [drm:drm_mode_addfb2] [FB:56]
[   35.807857] [drm:drm_mode_addfb2] [FB:62]
[   35.824504] [drm:drm_mode_addfb2] [FB:63]
[   35.841175] [drm:drm_mode_addfb2] [FB:56]
[   35.857837] [drm:drm_mode_addfb2] [FB:62]
[   35.874508] [drm:drm_mode_addfb2] [FB:63]
[   35.891172] [drm:drm_mode_addfb2] [FB:56]
[   35.907832] [drm:drm_mode_addfb2] [FB:62]
[   35.924503] [drm:drm_mode_addfb2] [FB:63]
[   35.941167] [drm:drm_mode_addfb2] [FB:56]
[   35.957825] [drm:drm_mode_addfb2] [FB:62]
[   35.974492] [drm:drm_mode_addfb2] [FB:63]
[   35.991157] [drm:drm_mode_addfb2] [FB:56]
[   36.007832] [drm:drm_mode_addfb2] [FB:62]
[   36.024512] [drm:drm_mode_addfb2] [FB:63]
[   36.041156] [drm:drm_mode_addfb2] [FB:56]
[   36.057807] [drm:drm_mode_addfb2] [FB:62]
[   36.074490] [drm:drm_mode_addfb2] [FB:63]
[   36.091656] [drm:drm_mode_addfb2] [FB:56]
[   36.107873] [drm:drm_mode_addfb2] [FB:62]
[   36.118251] wlp1s0: authenticate with 0c:d9:96:77:c0:3e
[   36.120744] wlp1s0: send auth to 0c:d9:96:77:c0:3e (try 1/3)
[   36.124490] [drm:drm_mode_addfb2] [FB:63]
[   36.141156] [drm:drm_mode_addfb2] [FB:56]
[   36.155562] wlp1s0: authenticated
[   36.156307] wlp1s0: associate with 0c:d9:96:77:c0:3e (try 1/3)
[   36.157797] [drm:drm_mode_addfb2] [FB:62]
[   36.158096] wlp1s0: RX AssocResp from 0c:d9:96:77:c0:3e (capab=0x11 status=0 aid=34)
[   36.160227] wlp1s0: associated
[   36.160462] IPv6: ADDRCONF(NETDEV_CHANGE): wlp1s0: link becomes ready
[   36.174472] [drm:drm_mode_addfb2] [FB:63]
[   36.191141] [drm:drm_mode_addfb2] [FB:56]
[   36.207852] [drm:drm_mode_addfb2] [FB:62]
[   36.224501] [drm:drm_mode_addfb2] [FB:63]
[   36.241198] [drm:drm_mode_addfb2] [FB:56]
[   36.257972] [drm:drm_mode_addfb2] [FB:62]
[   36.258968] wlp1s0: Limiting TX power to 17 dBm as advertised by 0c:d9:96:77:c0:3e
[   36.274508] [drm:drm_mode_addfb2] [FB:63]
[   36.291326] [drm:drm_mode_addfb2] [FB:56]
[   36.307824] [drm:drm_mode_addfb2] [FB:62]
[   36.324480] [drm:drm_mode_addfb2] [FB:63]
[   36.341116] [drm:drm_mode_addfb2] [FB:56]
[   36.357806] [drm:drm_mode_addfb2] [FB:62]
[   36.374459] [drm:drm_mode_addfb2] [FB:63]
[   36.391132] [drm:drm_mode_addfb2] [FB:56]
[   36.407825] [drm:drm_mode_addfb2] [FB:62]
[   36.424457] [drm:drm_mode_addfb2] [FB:63]
[   36.441122] [drm:drm_mode_addfb2] [FB:56]
[   36.457897] [drm:drm_mode_addfb2] [FB:62]
[   36.474448] [drm:drm_mode_addfb2] [FB:63]
[   36.491124] [drm:drm_mode_addfb2] [FB:56]
[   36.507945] [drm:drm_mode_addfb2] [FB:62]
[   36.524437] [drm:drm_mode_addfb2] [FB:63]
[   36.541110] [drm:drm_mode_addfb2] [FB:56]
[   36.557733] [drm:drm_mode_addfb2] [FB:62]
[   36.574426] [drm:drm_mode_addfb2] [FB:63]
[   36.591085] [drm:drm_mode_addfb2] [FB:56]
[   36.607753] [drm:drm_mode_addfb2] [FB:62]
[   36.624419] [drm:drm_mode_addfb2] [FB:63]
[   36.641113] [drm:drm_mode_addfb2] [FB:56]
[   36.657769] [drm:drm_mode_addfb2] [FB:62]
[   36.674421] [drm:drm_mode_addfb2] [FB:63]
[   36.691116] [drm:drm_mode_addfb2] [FB:56]
[   36.707732] [drm:drm_mode_addfb2] [FB:62]
[   36.724439] [drm:drm_mode_addfb2] [FB:63]
[   36.741100] [drm:drm_mode_addfb2] [FB:56]
[   36.757761] [drm:drm_mode_addfb2] [FB:62]
[   36.774435] [drm:drm_mode_addfb2] [FB:63]
[   36.791098] [drm:drm_mode_addfb2] [FB:56]
[   36.807778] [drm:drm_mode_addfb2] [FB:62]
[   36.824430] [drm:drm_mode_addfb2] [FB:63]
[   36.841534] [drm:drm_mode_addfb2] [FB:56]
[   36.857752] [drm:drm_mode_addfb2] [FB:62]
[   36.874449] [drm:drm_mode_addfb2] [FB:63]
[   36.891080] [drm:drm_mode_addfb2] [FB:56]
[   36.907739] [drm:drm_mode_addfb2] [FB:62]
[   36.924527] [drm:drm_mode_addfb2] [FB:63]
[   36.941068] [drm:drm_mode_addfb2] [FB:56]
[   36.957852] [drm:drm_mode_addfb2] [FB:62]
[   36.974529] [drm:drm_mode_addfb2] [FB:63]
[   36.991106] [drm:drm_mode_addfb2] [FB:56]
[   37.007885] [drm:drm_mode_addfb2] [FB:62]
[   37.024410] [drm:drm_mode_addfb2] [FB:63]
[   37.041043] [drm:drm_mode_addfb2] [FB:56]
[   37.057738] [drm:drm_mode_addfb2] [FB:62]
[   37.074373] [drm:drm_mode_addfb2] [FB:63]
[   37.091049] [drm:drm_mode_addfb2] [FB:56]
[   37.107700] [drm:drm_mode_addfb2] [FB:62]
[   37.124359] [drm:drm_mode_addfb2] [FB:63]
[   37.141048] [drm:drm_mode_addfb2] [FB:56]
[   37.157712] [drm:drm_mode_addfb2] [FB:62]
[   37.174396] [drm:drm_mode_addfb2] [FB:63]
[   37.191050] [drm:drm_mode_addfb2] [FB:56]
[   37.207692] [drm:drm_mode_addfb2] [FB:62]
[   37.224372] [drm:drm_mode_addfb2] [FB:63]
[   37.241193] [drm:drm_mode_addfb2] [FB:56]
[   37.257872] [drm:drm_mode_addfb2] [FB:62]
[   37.274380] [drm:drm_mode_addfb2] [FB:63]
[   37.290980] [drm:drm_mode_addfb2] [FB:56]
[   37.307922] [drm:drm_mode_addfb2] [FB:62]
[   37.324447] [drm:drm_mode_addfb2] [FB:63]
[   37.341207] [drm:drm_mode_addfb2] [FB:56]
[   37.357675] [drm:drm_mode_addfb2] [FB:62]
[   37.374371] [drm:drm_mode_addfb2] [FB:63]
[   37.391073] [drm:drm_mode_addfb2] [FB:56]
[   37.407712] [drm:drm_mode_addfb2] [FB:62]
[   37.424342] [drm:drm_mode_addfb2] [FB:63]
[   37.441073] [drm:drm_mode_addfb2] [FB:56]
[   37.457731] [drm:drm_mode_addfb2] [FB:62]
[   38.015103] [drm:drm_mode_addfb2] [FB:56]
[   38.032775] [drm:drm_mode_addfb2] [FB:62]
[   38.050166] [drm:drm_mode_addfb2] [FB:56]
[   38.067790] [drm:drm_mode_addfb2] [FB:62]
[   38.085415] [drm:drm_mode_addfb2] [FB:56]
[   38.103348] [drm:drm_mode_addfb2] [FB:62]
[   38.124364] [drm:drm_mode_addfb2] [FB:63]
[   38.498391] [drm:drm_mode_addfb2] [FB:57]
[   38.516122] [drm:drm_mode_addfb2] [FB:62]
[   39.048986] [drm:drm_mode_addfb2] [FB:57]
[   39.064954] [drm:drm_mode_addfb2] [FB:62]
[   39.082151] [drm:drm_mode_addfb2] [FB:57]
[   39.288935] [drm:drm_mode_addfb2] [FB:62]
[   39.307500] [drm:drm_mode_addfb2] [FB:63]
[   39.324157] [drm:drm_mode_addfb2] [FB:57]
[   39.340833] [drm:drm_mode_addfb2] [FB:62]
[   39.357903] [drm:drm_mode_addfb2] [FB:63]
[   39.374596] [drm:drm_mode_addfb2] [FB:57]
[   39.391475] [drm:drm_mode_addfb2] [FB:62]
[   39.407596] [drm:drm_mode_addfb2] [FB:63]
[   39.424494] [drm:drm_mode_addfb2] [FB:57]
[   39.440919] [drm:drm_mode_addfb2] [FB:62]
[   39.457520] [drm:drm_mode_addfb2] [FB:63]
[   39.531772] [drm:drm_mode_addfb2] [FB:57]
[   39.550261] [drm:drm_mode_addfb2] [FB:62]
[   39.732299] [drm:drm_mode_addfb2] [FB:57]
[   39.973914] [drm:drm_mode_addfb2] [FB:62]
[   39.990748] [drm:drm_mode_addfb2] [FB:63]
[   40.022047] [drm:drm_mode_addfb2] [FB:57]
[   40.040787] [drm:drm_mode_addfb2] [FB:62]
[   40.057406] [drm:drm_mode_addfb2] [FB:63]
[   40.074246] [drm:drm_mode_addfb2] [FB:57]
[   40.090868] [drm:drm_mode_addfb2] [FB:62]
[   40.107533] [drm:drm_mode_addfb2] [FB:63]
[   40.114893] [drm:i915_gem_open] 
[   40.124216] [drm:drm_mode_addfb2] [FB:57]
[   40.140850] [drm:drm_mode_addfb2] [FB:62]
[   40.157517] [drm:drm_mode_addfb2] [FB:63]
[   40.174140] [drm:drm_mode_addfb2] [FB:57]
[   40.190961] [drm:drm_mode_addfb2] [FB:62]
[   40.214157] [drm:drm_mode_addfb2] [FB:57]
[   40.224245] [drm:drm_mode_addfb2] [FB:63]
[   40.241012] [drm:drm_mode_addfb2] [FB:57]
[   40.257641] [drm:drm_mode_addfb2] [FB:62]
[   40.274254] [drm:drm_mode_addfb2] [FB:57]
[   40.291473] [drm:drm_mode_addfb2] [FB:62]
[   40.308344] [drm:drm_mode_addfb2] [FB:57]
[   40.325707] [drm:drm_mode_addfb2] [FB:62]
[   40.343178] [drm:drm_mode_addfb2] [FB:57]
[   40.360800] [drm:drm_mode_addfb2] [FB:62]
[   40.377969] [drm:drm_mode_addfb2] [FB:57]
[   40.395236] [drm:drm_mode_addfb2] [FB:62]
[   40.411353] [drm:drm_mode_addfb2] [FB:57]
[   40.464705] [drm:drm_mode_addfb2] [FB:62]
[   40.531298] [drm:drm_mode_addfb2] [FB:57]
[   40.548841] [drm:drm_mode_addfb2] [FB:62]
[   41.031728] [drm:drm_mode_addfb2] [FB:56]
[   41.048030] [drm:drm_mode_addfb2] [FB:62]
[   41.064974] [drm:drm_mode_addfb2] [FB:56]
[   41.562003] [drm:drm_mode_addfb2] [FB:62]
[   41.579813] [drm:drm_mode_addfb2] [FB:56]
[   41.596735] [drm:drm_mode_addfb2] [FB:62]
[   41.613767] [drm:drm_mode_addfb2] [FB:56]
[   41.629895] [drm:drm_mode_addfb2] [FB:62]
[   41.645913] [drm:drm_mode_addfb2] [FB:56]
[   41.662917] [drm:drm_mode_addfb2] [FB:62]
[   41.682477] [drm:drm_mode_addfb2] [FB:56]
[   41.698682] [drm:drm_mode_addfb2] [FB:62]
[   41.714260] [drm:drm_mode_addfb2] [FB:56]
[   41.733671] [drm:drm_mode_addfb2] [FB:62]
[   41.749607] [drm:drm_mode_addfb2] [FB:56]
[   41.766704] [drm:drm_mode_addfb2] [FB:62]
[   41.784270] [drm:drm_mode_addfb2] [FB:56]
[   41.800672] [drm:drm_mode_addfb2] [FB:62]
[   41.817551] [drm:drm_mode_addfb2] [FB:56]
[   41.834186] [drm:drm_mode_addfb2] [FB:62]
[   41.851121] [drm:drm_mode_addfb2] [FB:56]
[   41.868810] [drm:drm_mode_addfb2] [FB:62]
[   41.884503] [drm:drm_mode_addfb2] [FB:56]
[   41.901343] [drm:drm_mode_addfb2] [FB:62]
[   41.917778] [drm:drm_mode_addfb2] [FB:56]
[   41.934914] [drm:drm_mode_addfb2] [FB:62]
[   41.952334] [drm:drm_mode_addfb2] [FB:56]
[   41.970012] [drm:drm_mode_addfb2] [FB:62]
[   41.990669] [drm:drm_mode_addfb2] [FB:63]
[   42.007291] [drm:drm_mode_addfb2] [FB:56]
[   42.024875] [drm:drm_mode_addfb2] [FB:62]
[   42.040912] [drm:drm_mode_addfb2] [FB:63]
[   42.057543] [drm:drm_mode_addfb2] [FB:56]
[   42.074022] [drm:drm_mode_addfb2] [FB:62]
[   42.090642] [drm:drm_mode_addfb2] [FB:63]
[   42.107298] [drm:drm_mode_addfb2] [FB:56]
[   42.123959] [drm:drm_mode_addfb2] [FB:62]
[   42.140622] [drm:drm_mode_addfb2] [FB:63]
[   42.157291] [drm:drm_mode_addfb2] [FB:56]
[   42.174327] [drm:drm_mode_addfb2] [FB:62]
[   42.190958] [drm:drm_mode_addfb2] [FB:56]
[   42.208622] [drm:drm_mode_addfb2] [FB:62]
[   42.225904] [drm:drm_mode_addfb2] [FB:56]
[   42.242162] [drm:drm_mode_addfb2] [FB:62]
[   42.258789] [drm:drm_mode_addfb2] [FB:56]
[   42.275946] [drm:drm_mode_addfb2] [FB:62]
[   42.293025] [drm:drm_mode_addfb2] [FB:56]
[   42.310069] [drm:drm_mode_addfb2] [FB:62]
[   42.327292] [drm:drm_mode_addfb2] [FB:56]
[   42.344228] [drm:drm_mode_addfb2] [FB:62]
[   42.361501] [drm:drm_mode_addfb2] [FB:56]
[   42.379139] [drm:drm_mode_addfb2] [FB:62]
[   42.395718] [drm:drm_mode_addfb2] [FB:56]
[   42.412621] [drm:drm_mode_addfb2] [FB:62]
[   42.428687] [drm:drm_mode_addfb2] [FB:56]
[   42.445580] [drm:drm_mode_addfb2] [FB:62]
[   42.463590] [drm:drm_mode_addfb2] [FB:56]
[   42.480241] [drm:drm_mode_addfb2] [FB:62]
[   42.496170] [drm:drm_mode_addfb2] [FB:56]
[   42.515193] [drm:drm_mode_addfb2] [FB:62]
[   42.530990] [drm:drm_mode_addfb2] [FB:56]
[   42.548295] [drm:drm_mode_addfb2] [FB:62]
[   42.565100] [drm:drm_mode_addfb2] [FB:56]
[   42.581730] [drm:drm_mode_addfb2] [FB:62]
[   42.598351] [drm:drm_mode_addfb2] [FB:56]
[   42.614278] [drm:drm_mode_addfb2] [FB:62]
[   42.631089] [drm:drm_mode_addfb2] [FB:56]
[   42.647704] [drm:drm_mode_addfb2] [FB:62]
[   42.664703] [drm:drm_mode_addfb2] [FB:56]
[   42.681233] [drm:drm_mode_addfb2] [FB:62]
[   42.697947] [drm:drm_mode_addfb2] [FB:56]
[   42.714622] [drm:drm_mode_addfb2] [FB:62]
[   42.731171] [drm:drm_mode_addfb2] [FB:56]
[   42.747882] [drm:drm_mode_addfb2] [FB:62]
[   42.764414] [drm:drm_mode_addfb2] [FB:56]
[   42.781215] [drm:drm_mode_addfb2] [FB:62]
[   42.797781] [drm:drm_mode_addfb2] [FB:56]
[   42.814297] [drm:drm_mode_addfb2] [FB:62]
[   42.831723] [drm:drm_mode_addfb2] [FB:56]
[   42.847633] [drm:drm_mode_addfb2] [FB:62]
[   42.864730] [drm:drm_mode_addfb2] [FB:56]
[   42.881439] [drm:drm_mode_addfb2] [FB:62]
[   42.898238] [drm:drm_mode_addfb2] [FB:56]
[   42.914900] [drm:drm_mode_addfb2] [FB:62]
[   42.931745] [drm:drm_mode_addfb2] [FB:56]
[   42.948706] [drm:drm_mode_addfb2] [FB:62]
[   42.965143] [drm:drm_mode_addfb2] [FB:56]
[   42.981591] [drm:drm_mode_addfb2] [FB:62]
[   42.998728] [drm:drm_mode_addfb2] [FB:56]
[   43.014792] [drm:drm_mode_addfb2] [FB:62]
[   43.032580] [drm:drm_mode_addfb2] [FB:56]
[   43.049309] [drm:drm_mode_addfb2] [FB:62]
[   43.066880] [drm:drm_mode_addfb2] [FB:56]
[   43.082844] [drm:drm_mode_addfb2] [FB:57]
[   43.098772] [drm:drm_mode_addfb2] [FB:56]
[   43.114824] [drm:drm_mode_addfb2] [FB:57]
[   43.131675] [drm:drm_mode_addfb2] [FB:56]
[   43.148494] [drm:drm_mode_addfb2] [FB:57]
[   43.165894] [drm:drm_mode_addfb2] [FB:56]
[   43.182231] [drm:drm_mode_addfb2] [FB:57]
[   43.198652] [drm:drm_mode_addfb2] [FB:56]
[   43.215712] [drm:drm_mode_addfb2] [FB:57]
[   43.231747] [drm:drm_mode_addfb2] [FB:56]
[   43.247638] [drm:drm_mode_addfb2] [FB:57]
[   43.263553] [drm:drm_mode_addfb2] [FB:56]
[   43.280419] [drm:drm_mode_addfb2] [FB:57]
[   43.297300] [drm:drm_mode_addfb2] [FB:56]
[   43.314199] [drm:drm_mode_addfb2] [FB:57]
[   43.547986] [drm:drm_mode_addfb2] [FB:56]
[   43.565544] [drm:drm_mode_addfb2] [FB:57]
[   43.636337] [drm:drm_mode_addfb2] [FB:56]
[   43.670911] [drm:drm_mode_addfb2] [FB:57]
[   43.716131] [drm:drm_mode_addfb2] [FB:56]
[   43.772455] [drm:drm_mode_addfb2] [FB:57]
[   43.901908] [drm:drm_mode_addfb2] [FB:56]
[   44.031671] [drm:drm_mode_addfb2] [FB:57]
[   44.048289] [drm:drm_mode_addfb2] [FB:56]
[   44.064748] [drm:drm_mode_addfb2] [FB:57]
[   44.229666] [drm:drm_mode_addfb2] [FB:56]
[   44.400265] [drm:drm_mode_addfb2] [FB:57]
[   44.582017] [drm:drm_mode_addfb2] [FB:56]
[   44.598665] [drm:drm_mode_addfb2] [FB:57]
[   44.748636] [drm:drm_mode_addfb2] [FB:56]
[   44.840063] [drm:drm_mode_addfb2] [FB:57]
[   44.934650] [drm:drm_mode_addfb2] [FB:56]
[   45.031152] [drm:drm_mode_addfb2] [FB:57]
[   45.049173] [drm:drm_mode_addfb2] [FB:56]
[   45.065192] [drm:drm_mode_addfb2] [FB:57]
[   45.193101] [drm:drm_mode_addfb2] [FB:56]
[   45.237575] [drm:drm_mode_addfb2] [FB:57]
[   45.344619] [drm:drm_mode_addfb2] [FB:56]
[   45.403571] [drm:drm_mode_addfb2] [FB:57]
[   45.548044] [drm:drm_mode_addfb2] [FB:56]
[   45.565323] [drm:drm_mode_addfb2] [FB:57]
[   45.901521] [drm:drm_mode_addfb2] [FB:56]
[   45.917205] [drm:drm_mode_addfb2] [FB:57]
[   46.031924] [drm:drm_mode_addfb2] [FB:56]
[   46.049228] [drm:drm_mode_addfb2] [FB:57]
[   46.065720] [drm:drm_mode_addfb2] [FB:56]
[   46.248739] [drm:drm_mode_addfb2] [FB:57]
[   46.581874] [drm:drm_mode_addfb2] [FB:56]
[   46.599412] [drm:drm_mode_addfb2] [FB:57]
[   47.031372] [drm:drm_mode_addfb2] [FB:56]
[   47.048001] [drm:drm_mode_addfb2] [FB:57]
[   47.065516] [drm:drm_mode_addfb2] [FB:56]
[   47.564608] [drm:drm_mode_addfb2] [FB:57]
[   47.581253] [drm:drm_mode_addfb2] [FB:56]
[   47.762279] [drm:drm_mode_addfb2] [FB:57]
[   48.030040] [drm:drm_mode_addfb2] [FB:56]
[   48.046886] [drm:drm_mode_addfb2] [FB:57]
[   48.064081] [drm:drm_mode_addfb2] [FB:56]
[   48.547840] [drm:drm_mode_addfb2] [FB:57]
[   48.565135] [drm:drm_mode_addfb2] [FB:56]
[   49.013843] [drm:drm_mode_addfb2] [FB:57]
[   49.031325] [drm:drm_mode_addfb2] [FB:56]
[   49.049011] [drm:drm_mode_addfb2] [FB:57]
[   49.581457] [drm:drm_mode_addfb2] [FB:56]
[   49.597881] [drm:drm_mode_addfb2] [FB:57]
[   50.031173] [drm:drm_mode_addfb2] [FB:56]
[   50.047695] [drm:drm_mode_addfb2] [FB:57]
[   50.064262] [drm:drm_mode_addfb2] [FB:56]
[   50.547534] [drm:drm_mode_addfb2] [FB:57]
[   50.564912] [drm:drm_mode_addfb2] [FB:56]
[   51.031051] [drm:drm_mode_addfb2] [FB:57]
[   51.047606] [drm:drm_mode_addfb2] [FB:56]
[   51.063884] [drm:drm_mode_addfb2] [FB:57]
[   51.581335] [drm:drm_mode_addfb2] [FB:56]
[   51.597749] [drm:drm_mode_addfb2] [FB:57]
[   52.031109] [drm:drm_mode_addfb2] [FB:56]
[   52.047475] [drm:drm_mode_addfb2] [FB:57]
[   52.063994] [drm:drm_mode_addfb2] [FB:56]
[   52.564381] [drm:drm_mode_addfb2] [FB:57]
[   52.580968] [drm:drm_mode_addfb2] [FB:56]
[   53.030957] [drm:drm_mode_addfb2] [FB:57]
[   53.047502] [drm:drm_mode_addfb2] [FB:56]
[   53.064020] [drm:drm_mode_addfb2] [FB:57]
[   53.563553] [drm:drm_mode_addfb2] [FB:56]
[   53.581168] [drm:drm_mode_addfb2] [FB:57]
[   54.030955] [drm:drm_mode_addfb2] [FB:56]
[   54.047400] [drm:drm_mode_addfb2] [FB:57]
[   54.063214] [drm:drm_mode_addfb2] [FB:56]
[   54.139344] [drm:drm_mode_addfb2] [FB:62]
[   54.157165] [drm:drm_mode_addfb2] [FB:56]
[   54.174510] [drm:drm_mode_addfb2] [FB:62]
[   54.191209] [drm:drm_mode_addfb2] [FB:56]
[   54.208253] [drm:drm_mode_addfb2] [FB:62]
[   54.225457] [drm:drm_mode_addfb2] [FB:56]
[   54.242429] [drm:drm_mode_addfb2] [FB:62]
[   54.259647] [drm:drm_mode_addfb2] [FB:56]
[   54.275819] [drm:drm_mode_addfb2] [FB:62]
[   54.292761] [drm:drm_mode_addfb2] [FB:56]
[   54.309022] [drm:drm_mode_addfb2] [FB:62]
[   54.326824] [drm:drm_mode_addfb2] [FB:56]
[   54.343756] [drm:drm_mode_addfb2] [FB:62]
[   54.359919] [drm:drm_mode_addfb2] [FB:56]
[   54.375995] [drm:drm_mode_addfb2] [FB:62]
[   54.392042] [drm:drm_mode_addfb2] [FB:56]
[   54.409229] [drm:drm_mode_addfb2] [FB:62]
[   54.426766] [drm:drm_mode_addfb2] [FB:56]
[   54.444091] [drm:drm_mode_addfb2] [FB:62]
[   54.460893] [drm:drm_mode_addfb2] [FB:56]
[   54.477775] [drm:drm_mode_addfb2] [FB:62]
[   54.495270] [drm:drm_mode_addfb2] [FB:56]
[   54.511917] [drm:drm_mode_addfb2] [FB:62]
[   54.527515] [drm:drm_mode_addfb2] [FB:56]
[   54.544519] [drm:drm_mode_addfb2] [FB:62]
[   54.562089] [drm:drm_mode_addfb2] [FB:56]
[   54.577905] [drm:drm_mode_addfb2] [FB:62]
[   54.594697] [drm:drm_mode_addfb2] [FB:56]
[   54.610801] [drm:drm_mode_addfb2] [FB:62]
[   54.627670] [drm:drm_mode_addfb2] [FB:56]
[   54.643887] [drm:drm_mode_addfb2] [FB:62]
[   54.661541] [drm:drm_mode_addfb2] [FB:56]
[   54.677159] [drm:drm_mode_addfb2] [FB:62]
[   54.694193] [drm:drm_mode_addfb2] [FB:56]
[   54.710360] [drm:drm_mode_addfb2] [FB:62]
[   54.727651] [drm:drm_mode_addfb2] [FB:56]
[   54.743801] [drm:drm_mode_addfb2] [FB:62]
[   54.759804] [drm:drm_mode_addfb2] [FB:56]
[   54.776302] [drm:drm_mode_addfb2] [FB:62]
[   54.792781] [drm:drm_mode_addfb2] [FB:56]
[   54.809616] [drm:drm_mode_addfb2] [FB:62]
[   54.826161] [drm:drm_mode_addfb2] [FB:56]
[   54.842652] [drm:drm_mode_addfb2] [FB:62]
[   54.860289] [drm:drm_mode_addfb2] [FB:56]
[   54.879270] [drm:drm_mode_addfb2] [FB:57]
[   54.895691] [drm:drm_mode_addfb2] [FB:56]
[   54.912190] [drm:drm_mode_addfb2] [FB:57]
[   54.928856] [drm:drm_mode_addfb2] [FB:56]
[   54.946019] [drm:drm_mode_addfb2] [FB:57]
[   54.962660] [drm:drm_mode_addfb2] [FB:56]
[   54.979320] [drm:drm_mode_addfb2] [FB:57]
[   54.995863] [drm:drm_mode_addfb2] [FB:56]
[   55.012863] [drm:drm_mode_addfb2] [FB:57]
[   55.029337] [drm:drm_mode_addfb2] [FB:56]
[   55.045986] [drm:drm_mode_addfb2] [FB:57]
[   55.062956] [drm:drm_mode_addfb2] [FB:56]
[   55.078851] [drm:drm_mode_addfb2] [FB:57]
[   55.094751] [drm:drm_mode_addfb2] [FB:56]
[   55.110694] [drm:drm_mode_addfb2] [FB:57]
[   55.127531] [drm:drm_mode_addfb2] [FB:56]
[   55.196945] [drm:drm_mode_addfb2] [FB:57]
[   55.214645] [drm:drm_mode_addfb2] [FB:56]
[   55.232240] [drm:drm_mode_addfb2] [FB:57]
[   55.249645] [drm:drm_mode_addfb2] [FB:56]
[   55.272886] [drm:drm_mode_addfb2] [FB:63]
[   55.289517] [drm:drm_mode_addfb2] [FB:57]
[   55.306192] [drm:drm_mode_addfb2] [FB:56]
[   55.322839] [drm:drm_mode_addfb2] [FB:63]
[   55.339515] [drm:drm_mode_addfb2] [FB:57]
[   55.356178] [drm:drm_mode_addfb2] [FB:56]
[   55.372900] [drm:drm_mode_addfb2] [FB:63]
[   55.389496] [drm:drm_mode_addfb2] [FB:57]
[   55.406133] [drm:drm_mode_addfb2] [FB:56]
[   55.422767] [drm:drm_mode_addfb2] [FB:63]
[   55.439466] [drm:drm_mode_addfb2] [FB:57]
[   55.456231] [drm:drm_mode_addfb2] [FB:56]
[   55.472719] [drm:drm_mode_addfb2] [FB:63]
[   55.530204] [drm:drm_mode_addfb2] [FB:56]
[   55.547423] [drm:drm_mode_addfb2] [FB:57]
[   56.031163] [drm:drm_mode_addfb2] [FB:56]
[   56.048593] [drm:drm_mode_addfb2] [FB:57]
[   56.065976] [drm:drm_mode_addfb2] [FB:56]
[   56.563772] [drm:drm_mode_addfb2] [FB:57]
[   56.580584] [drm:drm_mode_addfb2] [FB:56]
[   57.030941] [drm:drm_mode_addfb2] [FB:57]
[   57.048320] [drm:drm_mode_addfb2] [FB:56]
[   57.563767] [drm:drm_mode_addfb2] [FB:57]
[   57.580704] [drm:drm_mode_addfb2] [FB:56]
[   58.030046] [drm:drm_mode_addfb2] [FB:57]
[   58.046748] [drm:drm_mode_addfb2] [FB:56]
[   58.546789] [drm:drm_mode_addfb2] [FB:57]
[   58.563301] [drm:drm_mode_addfb2] [FB:56]
[   59.032615] [drm:drm_mode_addfb2] [FB:62]
[   59.055914] [drm:drm_mode_addfb2] [FB:57]
[   59.072429] [drm:drm_mode_addfb2] [FB:56]
[   59.089162] [drm:drm_mode_addfb2] [FB:62]
[   59.105856] [drm:drm_mode_addfb2] [FB:57]
[   59.122316] [drm:drm_mode_addfb2] [FB:56]
[   59.139018] [drm:drm_mode_addfb2] [FB:62]
[   59.155604] [drm:drm_mode_addfb2] [FB:57]
[   59.172537] [drm:drm_mode_addfb2] [FB:56]
[   59.189092] [drm:drm_mode_addfb2] [FB:62]
[   59.205821] [drm:drm_mode_addfb2] [FB:57]
[   59.222432] [drm:drm_mode_addfb2] [FB:56]
[   59.239097] [drm:drm_mode_addfb2] [FB:62]
[   59.255771] [drm:drm_mode_addfb2] [FB:57]
[   59.272420] [drm:drm_mode_addfb2] [FB:56]
[   59.289128] [drm:drm_mode_addfb2] [FB:62]
[   59.305678] [drm:drm_mode_addfb2] [FB:57]
[   59.322431] [drm:drm_mode_addfb2] [FB:56]
[   59.339074] [drm:drm_mode_addfb2] [FB:62]
[   59.355751] [drm:drm_mode_addfb2] [FB:57]
[   59.372404] [drm:drm_mode_addfb2] [FB:56]
[   59.389063] [drm:drm_mode_addfb2] [FB:62]
[   59.405742] [drm:drm_mode_addfb2] [FB:57]
[   59.422403] [drm:drm_mode_addfb2] [FB:56]
[   59.439125] [drm:drm_mode_addfb2] [FB:62]
[   59.455762] [drm:drm_mode_addfb2] [FB:57]
[   59.472424] [drm:drm_mode_addfb2] [FB:56]
[   59.489093] [drm:drm_mode_addfb2] [FB:62]
[   59.505720] [drm:drm_mode_addfb2] [FB:57]
[   59.522318] [drm:drm_mode_addfb2] [FB:56]
[   59.539074] [drm:drm_mode_addfb2] [FB:62]
[   59.555847] [drm:drm_mode_addfb2] [FB:57]
[   59.572359] [drm:drm_mode_addfb2] [FB:56]
[   59.589006] [drm:drm_mode_addfb2] [FB:62]
[   59.605670] [drm:drm_mode_addfb2] [FB:57]
[   59.622337] [drm:drm_mode_addfb2] [FB:56]
[   59.638974] [drm:drm_mode_addfb2] [FB:62]
[   59.655679] [drm:drm_mode_addfb2] [FB:57]
[   59.672344] [drm:drm_mode_addfb2] [FB:56]
[   59.688970] [drm:drm_mode_addfb2] [FB:62]
[   60.019223] [drm:drm_mode_addfb2] [FB:56]
[   60.039130] [drm:drm_mode_addfb2] [FB:57]
[   60.056169] [drm:drm_mode_addfb2] [FB:62]
[   60.072653] [drm:drm_mode_addfb2] [FB:56]
[   60.089008] [drm:drm_mode_addfb2] [FB:57]
[   60.105698] [drm:drm_mode_addfb2] [FB:62]
[   60.122201] [drm:drm_mode_addfb2] [FB:56]
[   60.139084] [drm:drm_mode_addfb2] [FB:57]
[   60.155721] [drm:drm_mode_addfb2] [FB:62]
[   60.172366] [drm:drm_mode_addfb2] [FB:56]
[   60.189088] [drm:drm_mode_addfb2] [FB:57]
[   60.563240] [drm:drm_mode_addfb2] [FB:56]
[   60.580020] [drm:drm_mode_addfb2] [FB:57]
[   60.896657] [drm:drm_mode_addfb2] [FB:56]
[   61.032166] [drm:drm_mode_addfb2] [FB:57]
[   61.048616] [drm:drm_mode_addfb2] [FB:56]
[   61.065347] [drm:drm_mode_addfb2] [FB:57]
[   61.295641] [drm:drm_mode_addfb2] [FB:56]
[   61.315240] [drm:drm_mode_addfb2] [FB:57]
[   61.331220] [drm:drm_mode_addfb2] [FB:56]
[   61.349205] [drm:drm_mode_addfb2] [FB:57]
[   61.363831] [drm:drm_mode_addfb2] [FB:56]
[   61.380917] [drm:drm_mode_addfb2] [FB:57]
[   61.398253] [drm:drm_mode_addfb2] [FB:56]
[   61.409432] [drm:i915_gem_open] 
[   61.415014] [drm:drm_mode_addfb2] [FB:57]
[   61.431737] [drm:drm_mode_addfb2] [FB:56]
[   61.448709] [drm:drm_mode_addfb2] [FB:57]
[   61.470663] [drm:drm_mode_addfb2] [FB:62]
[   61.489792] [drm:drm_mode_addfb2] [FB:57]
[   61.505557] [drm:drm_mode_addfb2] [FB:63]
[   61.522307] [drm:drm_mode_addfb2] [FB:56]
[   61.538844] [drm:drm_mode_addfb2] [FB:57]
[   61.556102] [drm:drm_mode_addfb2] [FB:56]
[   61.573066] [drm:drm_mode_addfb2] [FB:57]
[   61.591189] [drm:drm_mode_addfb2] [FB:56]
[   61.608323] [drm:drm_mode_addfb2] [FB:57]
[   61.625322] [drm:drm_mode_addfb2] [FB:56]
[   61.642314] [drm:drm_mode_addfb2] [FB:57]
[   61.675955] [drm:drm_mode_addfb2] [FB:56]
[   61.693329] [drm:drm_mode_addfb2] [FB:57]
[   61.711238] [drm:drm_mode_addfb2] [FB:56]
[   62.029694] [drm:drm_mode_addfb2] [FB:62]
[   62.047207] [drm:drm_mode_addfb2] [FB:56]
[   62.064966] [drm:drm_mode_addfb2] [FB:57]
[   62.546084] [drm:drm_mode_addfb2] [FB:56]
[   62.563714] [drm:drm_mode_addfb2] [FB:57]
[   62.643288] [drm:drm_mode_addfb2] [FB:62]
[   62.661350] [drm:drm_mode_addfb2] [FB:57]
[   62.677434] [drm:drm_mode_addfb2] [FB:62]
[   62.694796] [drm:drm_mode_addfb2] [FB:57]
[   62.712362] [drm:drm_mode_addfb2] [FB:62]
[   62.730061] [drm:drm_mode_addfb2] [FB:57]
[   62.746658] [drm:drm_mode_addfb2] [FB:62]
[   62.763875] [drm:drm_mode_addfb2] [FB:57]
[   62.780254] [drm:drm_mode_addfb2] [FB:62]
[   62.796794] [drm:drm_mode_addfb2] [FB:57]
[   62.815190] [drm:drm_mode_addfb2] [FB:62]
[   62.831540] [drm:drm_mode_addfb2] [FB:57]
[   62.847743] [drm:drm_mode_addfb2] [FB:62]
[   62.864840] [drm:drm_mode_addfb2] [FB:57]
[   62.881201] [drm:drm_mode_addfb2] [FB:62]
[   62.898765] [drm:drm_mode_addfb2] [FB:57]
[   62.914865] [drm:drm_mode_addfb2] [FB:62]
[   62.931945] [drm:drm_mode_addfb2] [FB:57]
[   62.948310] [drm:drm_mode_addfb2] [FB:62]
[   62.965942] [drm:drm_mode_addfb2] [FB:57]
[   62.982091] [drm:drm_mode_addfb2] [FB:62]
[   62.999990] [drm:drm_mode_addfb2] [FB:57]
[   63.023038] [drm:drm_mode_addfb2] [FB:63]
[   63.038860] [drm:drm_mode_addfb2] [FB:62]
[   63.055552] [drm:drm_mode_addfb2] [FB:57]
[   63.072084] [drm:drm_mode_addfb2] [FB:63]
[   63.088665] [drm:drm_mode_addfb2] [FB:62]
[   63.105299] [drm:drm_mode_addfb2] [FB:57]
[   63.121991] [drm:drm_mode_addfb2] [FB:63]
[   63.138626] [drm:drm_mode_addfb2] [FB:62]
[   63.155330] [drm:drm_mode_addfb2] [FB:57]
[   63.172652] [drm:drm_mode_addfb2] [FB:62]
[   63.189111] [drm:drm_mode_addfb2] [FB:57]
[   63.206396] [drm:drm_mode_addfb2] [FB:62]
[   63.223342] [drm:drm_mode_addfb2] [FB:57]
[   63.240914] [drm:drm_mode_addfb2] [FB:62]
[   63.259268] [drm:drm_mode_addfb2] [FB:57]
[   63.275430] [drm:drm_mode_addfb2] [FB:62]
[   63.292420] [drm:drm_mode_addfb2] [FB:57]
[   63.308694] [drm:drm_mode_addfb2] [FB:62]
[   63.326078] [drm:drm_mode_addfb2] [FB:57]
[   63.342374] [drm:drm_mode_addfb2] [FB:62]
[   63.359348] [drm:drm_mode_addfb2] [FB:57]
[   63.375663] [drm:drm_mode_addfb2] [FB:62]
[   63.392904] [drm:drm_mode_addfb2] [FB:57]
[   63.409158] [drm:drm_mode_addfb2] [FB:62]
[   63.425673] [drm:drm_mode_addfb2] [FB:57]
[   63.441680] [drm:drm_mode_addfb2] [FB:62]
[   63.458433] [drm:drm_mode_addfb2] [FB:57]
[   63.475639] [drm:drm_mode_addfb2] [FB:62]
[   63.492324] [drm:drm_mode_addfb2] [FB:57]
[   63.509530] [drm:drm_mode_addfb2] [FB:62]
[   63.526684] [drm:drm_mode_addfb2] [FB:57]
[   63.543389] [drm:drm_mode_addfb2] [FB:62]
[   63.560726] [drm:drm_mode_addfb2] [FB:57]
[   63.577644] [drm:drm_mode_addfb2] [FB:62]
[   63.594757] [drm:drm_mode_addfb2] [FB:57]
[   63.611239] [drm:drm_mode_addfb2] [FB:62]
[   63.628062] [drm:drm_mode_addfb2] [FB:57]
[   63.644703] [drm:drm_mode_addfb2] [FB:62]
[   63.662041] [drm:drm_mode_addfb2] [FB:57]
[   63.678713] [drm:drm_mode_addfb2] [FB:62]
[   63.698603] [drm:drm_mode_addfb2] [FB:57]
[   63.713798] [drm:drm_mode_addfb2] [FB:62]
[   63.730758] [drm:drm_mode_addfb2] [FB:57]
[   63.747211] [drm:drm_mode_addfb2] [FB:62]
[   63.765293] [drm:drm_mode_addfb2] [FB:57]
[   63.781203] [drm:drm_mode_addfb2] [FB:62]
[   63.799383] [drm:drm_mode_addfb2] [FB:57]
[   63.817426] [drm:drm_mode_addfb2] [FB:62]
[   63.838581] [drm:drm_mode_addfb2] [FB:63]
[   63.855232] [drm:drm_mode_addfb2] [FB:57]
[   63.871868] [drm:drm_mode_addfb2] [FB:62]
[   63.888542] [drm:drm_mode_addfb2] [FB:63]
[   63.905207] [drm:drm_mode_addfb2] [FB:57]
[   63.921868] [drm:drm_mode_addfb2] [FB:62]
[   63.938621] [drm:drm_mode_addfb2] [FB:63]
[   63.955168] [drm:drm_mode_addfb2] [FB:57]
[   63.971839] [drm:drm_mode_addfb2] [FB:62]
[   63.988955] [drm:drm_mode_addfb2] [FB:57]
[   64.006190] [drm:drm_mode_addfb2] [FB:62]
[   64.024042] [drm:drm_mode_addfb2] [FB:57]
[   64.040867] [drm:drm_mode_addfb2] [FB:62]
[   64.057675] [drm:drm_mode_addfb2] [FB:57]
[   64.074034] [drm:drm_mode_addfb2] [FB:62]
[   64.091340] [drm:drm_mode_addfb2] [FB:57]
[   64.108641] [drm:drm_mode_addfb2] [FB:62]
[   64.125936] [drm:drm_mode_addfb2] [FB:57]
[   64.143791] [drm:drm_mode_addfb2] [FB:62]
[   64.160702] [drm:drm_mode_addfb2] [FB:57]
[   64.178325] [drm:drm_mode_addfb2] [FB:62]
[   64.193235] [drm:drm_mode_addfb2] [FB:57]
[   64.210238] [drm:drm_mode_addfb2] [FB:62]
[   64.226855] [drm:drm_mode_addfb2] [FB:57]
[   64.243521] [drm:drm_mode_addfb2] [FB:62]
[   64.260267] [drm:drm_mode_addfb2] [FB:57]
[   64.276755] [drm:drm_mode_addfb2] [FB:62]
[   64.293143] [drm:drm_mode_addfb2] [FB:57]
[   64.309984] [drm:drm_mode_addfb2] [FB:62]
[   64.326387] [drm:drm_mode_addfb2] [FB:57]
[   64.342820] [drm:drm_mode_addfb2] [FB:62]
[   64.359524] [drm:drm_mode_addfb2] [FB:57]
[   64.375950] [drm:drm_mode_addfb2] [FB:62]
[   64.392343] [drm:drm_mode_addfb2] [FB:57]
[   64.409178] [drm:drm_mode_addfb2] [FB:62]
[   64.425544] [drm:drm_mode_addfb2] [FB:57]
[   64.441987] [drm:drm_mode_addfb2] [FB:62]
[   64.458763] [drm:drm_mode_addfb2] [FB:57]
[   64.475125] [drm:drm_mode_addfb2] [FB:62]
[   64.492661] [drm:drm_mode_addfb2] [FB:57]
[   64.508352] [drm:drm_mode_addfb2] [FB:62]
[   64.524381] [drm:drm_mode_addfb2] [FB:57]
[   64.542236] [drm:drm_mode_addfb2] [FB:62]
[   64.558262] [drm:drm_mode_addfb2] [FB:57]
[   64.574761] [drm:drm_mode_addfb2] [FB:62]
[   64.591238] [drm:drm_mode_addfb2] [FB:57]
[   64.608023] [drm:drm_mode_addfb2] [FB:62]
[   64.624399] [drm:drm_mode_addfb2] [FB:57]
[   64.640845] [drm:drm_mode_addfb2] [FB:62]
[   64.657645] [drm:drm_mode_addfb2] [FB:57]
[   64.674147] [drm:drm_mode_addfb2] [FB:62]
[   64.691572] [drm:drm_mode_addfb2] [FB:57]
[   64.708625] [drm:drm_mode_addfb2] [FB:62]
[   64.724546] [drm:drm_mode_addfb2] [FB:57]
[   64.740806] [drm:drm_mode_addfb2] [FB:62]
[   64.757037] [drm:drm_mode_addfb2] [FB:57]
[   64.772883] [drm:drm_mode_addfb2] [FB:62]
[   64.788896] [drm:drm_mode_addfb2] [FB:57]
[   64.805131] [drm:drm_mode_addfb2] [FB:63]
[   64.821792] [drm:drm_mode_addfb2] [FB:62]
[   64.838441] [drm:drm_mode_addfb2] [FB:56]
[   64.855136] [drm:drm_mode_addfb2] [FB:63]
[   64.871803] [drm:drm_mode_addfb2] [FB:62]
[   64.888462] [drm:drm_mode_addfb2] [FB:56]
[   64.905093] [drm:drm_mode_addfb2] [FB:63]
[   64.921791] [drm:drm_mode_addfb2] [FB:62]
[   64.938431] [drm:drm_mode_addfb2] [FB:56]
[   64.955104] [drm:drm_mode_addfb2] [FB:63]
[   65.029217] [drm:drm_mode_addfb2] [FB:56]
[   65.046588] [drm:drm_mode_addfb2] [FB:62]
[   65.195664] [drm:drm_mode_addfb2] [FB:56]
[   65.229685] [drm:drm_mode_addfb2] [FB:62]
[   65.425827] [drm:drm_mode_addfb2] [FB:56]
[   65.466821] [drm:drm_mode_addfb2] [FB:57]
[   65.520715] [drm:drm_mode_addfb2] [FB:56]
[   65.546285] [drm:drm_mode_addfb2] [FB:57]
[   65.563446] [drm:drm_mode_addfb2] [FB:56]
[   65.610668] [drm:drm_mode_addfb2] [FB:57]
[   65.755534] [drm:drm_mode_addfb2] [FB:56]
[   65.891410] [drm:drm_mode_addfb2] [FB:57]
[   66.030133] [drm:drm_mode_addfb2] [FB:56]
[   66.048004] [drm:drm_mode_addfb2] [FB:57]
[   66.256330] [drm:drm_mode_addfb2] [FB:56]
[   66.341514] [drm:drm_mode_addfb2] [FB:57]
[   66.461777] [drm:drm_mode_addfb2] [FB:56]
[   66.545883] [drm:drm_mode_addfb2] [FB:57]
[   66.563463] [drm:drm_mode_addfb2] [FB:56]
[   66.608998] [drm:drm_mode_addfb2] [FB:57]
[   66.781516] [drm:drm_mode_addfb2] [FB:56]
[   66.842634] [drm:drm_mode_addfb2] [FB:57]
[   66.936981] [drm:drm_mode_addfb2] [FB:56]
[   67.046141] [drm:drm_mode_addfb2] [FB:57]
[   67.062549] [drm:drm_mode_addfb2] [FB:56]
[   67.181554] [drm:drm_mode_addfb2] [FB:57]
[   67.287889] [drm:drm_mode_addfb2] [FB:56]
[   67.504741] [drm:drm_mode_addfb2] [FB:57]
[   67.562815] [drm:drm_mode_addfb2] [FB:56]
[   67.579326] [drm:drm_mode_addfb2] [FB:57]
[   68.029357] [drm:drm_mode_addfb2] [FB:56]
[   68.045910] [drm:drm_mode_addfb2] [FB:57]
[   68.562812] [drm:drm_mode_addfb2] [FB:56]
[   68.579291] [drm:drm_mode_addfb2] [FB:57]
[   69.028988] [drm:drm_mode_addfb2] [FB:56]
[   69.046600] [drm:drm_mode_addfb2] [FB:57]
[   69.562531] [drm:drm_mode_addfb2] [FB:56]
[   69.579205] [drm:drm_mode_addfb2] [FB:57]
[   70.030270] [drm:drm_mode_addfb2] [FB:56]
[   70.046845] [drm:drm_mode_addfb2] [FB:57]
[   70.562378] [drm:drm_mode_addfb2] [FB:62]
[   70.579041] [drm:drm_mode_addfb2] [FB:57]
[   71.029382] [drm:drm_mode_addfb2] [FB:62]
[   71.045740] [drm:drm_mode_addfb2] [FB:57]
[   71.545543] [drm:drm_mode_addfb2] [FB:62]
[   71.562902] [drm:drm_mode_addfb2] [FB:57]
[   72.029267] [drm:drm_mode_addfb2] [FB:62]
[   72.045739] [drm:drm_mode_addfb2] [FB:57]
[   72.382979] [drm:drm_mode_addfb2] [FB:56]
[   72.432268] [drm:drm_mode_addfb2] [FB:57]
[   72.518637] [drm:drm_mode_addfb2] [FB:56]
[   72.562386] [drm:drm_mode_addfb2] [FB:57]
[   72.578894] [drm:drm_mode_addfb2] [FB:56]
[   73.003508] [drm:drm_mode_addfb2] [FB:57]
[   73.028645] [drm:drm_mode_addfb2] [FB:56]
[   73.045276] [drm:drm_mode_addfb2] [FB:57]
[   73.562408] [drm:drm_mode_addfb2] [FB:56]
[   73.578873] [drm:drm_mode_addfb2] [FB:57]
[   74.045564] [drm:drm_mode_addfb2] [FB:56]
[   74.062101] [drm:drm_mode_addfb2] [FB:57]
[   74.562358] [drm:drm_mode_addfb2] [FB:56]
[   74.578824] [drm:drm_mode_addfb2] [FB:57]
[   75.028873] [drm:drm_mode_addfb2] [FB:62]
[   75.045279] [drm:drm_mode_addfb2] [FB:57]
[   75.195214] [drm:drm_mode_addfb2] [FB:62]
[   75.561640] [drm:drm_mode_addfb2] [FB:56]
[   75.579460] [drm:drm_mode_addfb2] [FB:57]
[   75.936323] [drm:drm_mode_addfb2] [FB:56]
[   75.953341] [drm:drm_mode_addfb2] [FB:57]
[   75.970724] [drm:drm_mode_addfb2] [FB:63]
[   75.987367] [drm:drm_mode_addfb2] [FB:56]
[   76.004096] [drm:drm_mode_addfb2] [FB:57]
[   76.021732] [drm:drm_mode_addfb2] [FB:56]
[   76.038716] [drm:drm_mode_addfb2] [FB:57]
[   76.055455] [drm:drm_mode_addfb2] [FB:56]
[   76.072652] [drm:drm_mode_addfb2] [FB:57]
[   76.089415] [drm:drm_mode_addfb2] [FB:56]
[   76.106501] [drm:drm_mode_addfb2] [FB:57]
[   76.123681] [drm:drm_mode_addfb2] [FB:56]
[   76.140564] [drm:drm_mode_addfb2] [FB:57]
[   76.157720] [drm:drm_mode_addfb2] [FB:56]
[   76.175097] [drm:drm_mode_addfb2] [FB:57]
[   76.192614] [drm:drm_mode_addfb2] [FB:56]
[   76.209992] [drm:drm_mode_addfb2] [FB:57]
[   76.227158] [drm:drm_mode_addfb2] [FB:56]
[   76.243966] [drm:drm_mode_addfb2] [FB:57]
[   76.260722] [drm:drm_mode_addfb2] [FB:56]
[   76.277698] [drm:drm_mode_addfb2] [FB:57]
[   76.294195] [drm:drm_mode_addfb2] [FB:56]
[   76.310716] [drm:drm_mode_addfb2] [FB:57]
[   76.327414] [drm:drm_mode_addfb2] [FB:56]
[   76.345019] [drm:drm_mode_addfb2] [FB:57]
[   76.361949] [drm:drm_mode_addfb2] [FB:56]
[   76.378736] [drm:drm_mode_addfb2] [FB:57]
[   76.395540] [drm:drm_mode_addfb2] [FB:56]
[   76.412622] [drm:drm_mode_addfb2] [FB:57]
[   76.429851] [drm:drm_mode_addfb2] [FB:56]
[   76.446752] [drm:drm_mode_addfb2] [FB:57]
[   76.562567] [drm:drm_mode_addfb2] [FB:56]
[   76.579492] [drm:drm_mode_addfb2] [FB:57]
[   76.596441] [drm:drm_mode_addfb2] [FB:56]
[   76.712893] [drm:drm_mode_addfb2] [FB:62]
[   76.728495] [drm:drm_mode_addfb2] [FB:56]
[   76.746991] [drm:drm_mode_addfb2] [FB:62]
[   76.763020] [drm:drm_mode_addfb2] [FB:56]
[   76.780222] [drm:drm_mode_addfb2] [FB:62]
[   76.797226] [drm:drm_mode_addfb2] [FB:56]
[   76.814165] [drm:drm_mode_addfb2] [FB:62]
[   76.831054] [drm:drm_mode_addfb2] [FB:56]
[   76.848192] [drm:drm_mode_addfb2] [FB:62]
[   76.865365] [drm:drm_mode_addfb2] [FB:56]
[   76.883202] [drm:drm_mode_addfb2] [FB:62]
[   76.898371] [drm:drm_mode_addfb2] [FB:56]
[   76.914588] [drm:drm_mode_addfb2] [FB:62]
[   76.931387] [drm:drm_mode_addfb2] [FB:56]
[   76.948270] [drm:drm_mode_addfb2] [FB:62]
[   76.964632] [drm:drm_mode_addfb2] [FB:56]
[   76.980704] [drm:drm_mode_addfb2] [FB:62]
[   76.995599] [drm:drm_mode_addfb2] [FB:56]
[   77.012877] [drm:drm_mode_addfb2] [FB:62]
[   77.029184] [drm:drm_mode_addfb2] [FB:56]
[   77.046106] [drm:drm_mode_addfb2] [FB:62]
[   77.062619] [drm:drm_mode_addfb2] [FB:56]
[   77.079207] [drm:drm_mode_addfb2] [FB:62]
[   77.095880] [drm:drm_mode_addfb2] [FB:56]
[   77.111868] [drm:drm_mode_addfb2] [FB:62]
[   77.128665] [drm:drm_mode_addfb2] [FB:56]
[   77.145477] [drm:drm_mode_addfb2] [FB:62]
[   77.162240] [drm:drm_mode_addfb2] [FB:56]
[   77.179491] [drm:drm_mode_addfb2] [FB:62]
[   77.195287] [drm:drm_mode_addfb2] [FB:56]
[   77.211974] [drm:drm_mode_addfb2] [FB:62]
[   77.228237] [drm:drm_mode_addfb2] [FB:56]
[   77.244838] [drm:drm_mode_addfb2] [FB:62]
[   77.261816] [drm:drm_mode_addfb2] [FB:56]
[   77.278420] [drm:drm_mode_addfb2] [FB:62]
[   77.295660] [drm:drm_mode_addfb2] [FB:56]
[   77.312842] [drm:drm_mode_addfb2] [FB:62]
[   77.329576] [drm:drm_mode_addfb2] [FB:56]
[   77.347282] [drm:drm_mode_addfb2] [FB:62]
[   77.365182] [drm:drm_mode_addfb2] [FB:56]
[   77.387475] [drm:drm_mode_addfb2] [FB:63]
[   77.404041] [drm:drm_mode_addfb2] [FB:62]
[   77.420712] [drm:drm_mode_addfb2] [FB:56]
[   77.437341] [drm:drm_mode_addfb2] [FB:63]
[   77.454171] [drm:drm_mode_addfb2] [FB:62]
[   77.470836] [drm:drm_mode_addfb2] [FB:56]
[   77.487486] [drm:drm_mode_addfb2] [FB:63]
[   77.504022] [drm:drm_mode_addfb2] [FB:62]
[   77.520711] [drm:drm_mode_addfb2] [FB:56]
[   77.537358] [drm:drm_mode_addfb2] [FB:57]
[   77.554062] [drm:drm_mode_addfb2] [FB:62]
[   77.570857] [drm:drm_mode_addfb2] [FB:63]
[   77.587495] [drm:drm_mode_addfb2] [FB:57]
[   77.604089] [drm:drm_mode_addfb2] [FB:62]
[   77.620729] [drm:drm_mode_addfb2] [FB:63]
[   77.637434] [drm:drm_mode_addfb2] [FB:57]
[   77.654090] [drm:drm_mode_addfb2] [FB:62]
[   77.670705] [drm:drm_mode_addfb2] [FB:63]
[   77.687406] [drm:drm_mode_addfb2] [FB:57]
[   77.704108] [drm:drm_mode_addfb2] [FB:62]
[   77.720902] [drm:drm_mode_addfb2] [FB:63]
[   77.737396] [drm:drm_mode_addfb2] [FB:57]
[   77.754033] [drm:drm_mode_addfb2] [FB:62]
[   77.770726] [drm:drm_mode_addfb2] [FB:63]
[   77.787388] [drm:drm_mode_addfb2] [FB:57]
[   77.804069] [drm:drm_mode_addfb2] [FB:62]
[   77.820535] [drm:drm_mode_addfb2] [FB:63]
[   77.837267] [drm:drm_mode_addfb2] [FB:57]
[   77.854013] [drm:drm_mode_addfb2] [FB:62]
[   77.870681] [drm:drm_mode_addfb2] [FB:63]
[   77.887345] [drm:drm_mode_addfb2] [FB:57]
[   77.904042] [drm:drm_mode_addfb2] [FB:62]
[   77.921162] [drm:drm_mode_addfb2] [FB:57]
[   77.937271] [drm:drm_mode_addfb2] [FB:63]
[   77.954053] [drm:drm_mode_addfb2] [FB:62]
[   77.970738] [drm:drm_mode_addfb2] [FB:57]
[   77.987366] [drm:drm_mode_addfb2] [FB:63]
[   78.004054] [drm:drm_mode_addfb2] [FB:57]
[   78.021913] [drm:drm_mode_addfb2] [FB:62]
[   78.039362] [drm:drm_mode_addfb2] [FB:57]
[   78.056865] [drm:drm_mode_addfb2] [FB:62]
[   78.073342] [drm:drm_mode_addfb2] [FB:57]
[   78.089988] [drm:drm_mode_addfb2] [FB:62]
[   78.106436] [drm:drm_mode_addfb2] [FB:57]
[   78.123612] [drm:drm_mode_addfb2] [FB:62]
[   78.140017] [drm:drm_mode_addfb2] [FB:57]
[   78.155762] [drm:drm_mode_addfb2] [FB:62]
[   78.172988] [drm:drm_mode_addfb2] [FB:57]
[   78.189080] [drm:drm_mode_addfb2] [FB:62]
[   78.204936] [drm:drm_mode_addfb2] [FB:56]
[   78.221518] [drm:drm_mode_addfb2] [FB:62]
[   78.237599] [drm:drm_mode_addfb2] [FB:56]
[   78.253783] [drm:drm_mode_addfb2] [FB:62]
[   78.270456] [drm:drm_mode_addfb2] [FB:63]
[   78.287126] [drm:drm_mode_addfb2] [FB:56]
[   78.303798] [drm:drm_mode_addfb2] [FB:62]
[   78.320475] [drm:drm_mode_addfb2] [FB:63]
[   78.337144] [drm:drm_mode_addfb2] [FB:56]
[   78.353795] [drm:drm_mode_addfb2] [FB:62]
[   78.371422] [drm:drm_mode_addfb2] [FB:56]
[   78.387598] [drm:drm_mode_addfb2] [FB:62]
[   78.403717] [drm:drm_mode_addfb2] [FB:63]
[   78.420472] [drm:drm_mode_addfb2] [FB:56]
[   78.527441] [drm:drm_mode_addfb2] [FB:62]
[   78.544307] [drm:drm_mode_addfb2] [FB:56]
[   79.028526] [drm:drm_mode_addfb2] [FB:62]
[   79.045156] [drm:drm_mode_addfb2] [FB:56]
[   79.544791] [drm:drm_mode_addfb2] [FB:62]
[   79.562042] [drm:drm_mode_addfb2] [FB:56]
[   79.688185] [drm:drm_mode_addfb2] [FB:57]
[   79.858565] [drm:drm_mode_addfb2] [FB:56]
[   80.028821] [drm:drm_mode_addfb2] [FB:57]
[   80.045692] [drm:drm_mode_addfb2] [FB:56]
[   80.561813] [drm:drm_mode_addfb2] [FB:57]
[   80.578847] [drm:drm_mode_addfb2] [FB:56]
[   81.028628] [drm:drm_mode_addfb2] [FB:57]
[   81.045984] [drm:drm_mode_addfb2] [FB:56]
[   81.561804] [drm:drm_mode_addfb2] [FB:57]
[   81.579271] [drm:drm_mode_addfb2] [FB:56]
[   82.028337] [drm:drm_mode_addfb2] [FB:57]
[   82.044974] [drm:drm_mode_addfb2] [FB:56]
[   82.561481] [drm:drm_mode_addfb2] [FB:57]
[   82.578120] [drm:drm_mode_addfb2] [FB:56]
[   83.028520] [drm:drm_mode_addfb2] [FB:57]
[   83.045872] [drm:drm_mode_addfb2] [FB:56]
[   83.561298] [drm:drm_mode_addfb2] [FB:57]
[   83.577920] [drm:drm_mode_addfb2] [FB:56]
[   84.028422] [drm:drm_mode_addfb2] [FB:57]
[   84.045782] [drm:drm_mode_addfb2] [FB:56]
[   84.561373] [drm:drm_mode_addfb2] [FB:57]
[   84.577957] [drm:drm_mode_addfb2] [FB:56]
[   84.860842] [drm:drm_mode_addfb2] [FB:57]
[   85.027852] [drm:drm_mode_addfb2] [FB:56]
[   85.044907] [drm:drm_mode_addfb2] [FB:57]
[   85.070589] [drm:drm_mode_addfb2] [FB:56]
Andrea Arcangeli Sept. 8, 2016, 1:53 p.m. UTC | #15
On Thu, Sep 08, 2016 at 01:09:23PM +0200, Martin van Es wrote:
> On donderdag 8 september 2016 13:18:41 CEST Ville Syrjälä wrote:
> > On Thu, Sep 08, 2016 at 12:04:39PM +0200, Martin van Es wrote:
> > > On dinsdag 6 september 2016 21:40:48 CEST Ville Syrjälä wrote:
> > > > On Tue, Sep 06, 2016 at 01:56:20PM +0300, Ville Syrjälä wrote:
> > > > > Actually I just cooked up another branch [2]. It just throws in some
> > > > > memory barriers to the opregion code, and adds a a new debug print so
> > > > > to show the response from the BIOS. I'm not too optimistic that the
> > > > > memory barriers would fix it, but at least we'd get to see the full
> > > > > response from the BIOS. Can you give this a try?
> > > > > 
> > > > > [2] git://github.com/vsyrjala/linux.git opregion_panel_type_stuff
> > > 
> > > This kernel doesn't boot (for me).
> > > 
> > > I cloned the repo, copied .config from 4.7 kernel, make oldconfig,
> > > accepted
> > > all defaults and made+installed the kernel. This installed an image
> > > 4.0.0-rc7+ (is that correct?) that was unbootable (halts at loading
> > > ramdisk).
> > The version should be 4.7 or 4.8 something. Maybe you used the wrong
> > branch?
> 
> Oh silly me and git. I thought I'd be checking out the correct branch on 
> cloning that repo. I now checked out opregion_panel_type_quirk branch and that 
> resulted in a 4.8.0-rc5+ kernel.
> 
> Booting that kernel resulted in a correct functioning backlight based on 
> acpi_video0 driver. Graphics glitches however were so bad I had to reboot into 
> 4.7.3 to write this mail.
> 
> dmesg of 4.8.0-rc5+ boot with drm.debug=0xe attached.

Thanks Martin.

I was in vacation last week, let me know if you need me to test as
well but me and Martin are reproducing the exact same issue so I
believe his testing should have provided all info needed for now.

While talking about graphics glitches this reminds I'm getting
corrupted graphics on terminals (sandy bridge HD3000) with any intel
driver >=x11-drivers/xf86-video-intel-2.99.917_p20160803

I had to add:

cat /etc/portage/package.mask/x11
>=x11-drivers/xf86-video-intel-2.99.917_p20160803

Last working version for me is:

qlist -I -v video-intel
x11-drivers/xf86-video-intel-2.99.917_p20160704

That is most certainly an unrelated issue with the backlight, and I'm
not even sure if it affects the Ivy Bridge laptop with hd4000, as I
ended up never testing anything above 2.99.917_p20160704 on it. But in
my experience you may want to try to downgrade the xorg intel video
driver version too if you get graphic glitches.
diff mbox

Patch

diff --git a/drivers/gpu/drm/i915/intel_opregion.c b/drivers/gpu/drm/i915/intel_opregion.c
index adca262..ca17ab6 100644
--- a/drivers/gpu/drm/i915/intel_opregion.c
+++ b/drivers/gpu/drm/i915/intel_opregion.c
@@ -1073,12 +1073,14 @@  intel_opregion_get_panel_type(struct drm_i915_private *dev_priv)
 	}
 
 	/*
-	 * FIXME On Dell XPS 13 9350 the OpRegion panel type (0) gives us
-	 * low vswing for eDP, whereas the VBT panel type (2) gives us normal
-	 * vswing instead. Low vswing results in some display flickers, so
-	 * let's simply ignore the OpRegion panel type on SKL for now.
+	 * FIXME On Dell XPS 13 9350 and Dell XPS 13 L322X the
+	 * OpRegion panel type (0) gives us low vswing for eDP,
+	 * whereas the VBT panel type (2) gives us normal vswing
+	 * instead. Low vswing results in some display flickers, so
+	 * let's simply ignore the OpRegion panel type on SKL and
+	 * IVYBRIDGE for now.
 	 */
-	if (IS_SKYLAKE(dev_priv)) {
+	if (IS_SKYLAKE(dev_priv) || IS_IVYBRIDGE(dev_priv)) {
 		DRM_DEBUG_KMS("Ignoring OpRegion panel type (%d)\n", ret - 1);
 		return -ENODEV;
 	}