All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Lower threshold for pixel doubling.
@ 2013-05-20 18:15 Stuart Abercrombie
  2013-05-28 17:39 ` Stuart Abercrombie
  2013-08-16  8:20 ` Chris Wilson
  0 siblings, 2 replies; 13+ messages in thread
From: Stuart Abercrombie @ 2013-05-20 18:15 UTC (permalink / raw)
  To: intel-gfx

90% of core speed (=180MHz dot clock) is too high for 2048x1280 to get
pixel doubling on Pineview, which it needs to avoid underruns, so
lower this to 85%.

Signed-off-by: Stuart Abercrombie <sabercrombie@chromium.org>
---
 drivers/gpu/drm/i915/intel_display.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
index efe8299..9c924e9 100644
--- a/drivers/gpu/drm/i915/intel_display.c
+++ b/drivers/gpu/drm/i915/intel_display.c
@@ -4564,14 +4564,14 @@ static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
 	pipeconf = I915_READ(PIPECONF(intel_crtc->pipe));
 
 	if (intel_crtc->pipe == 0 && INTEL_INFO(dev)->gen < 4) {
-		/* Enable pixel doubling when the dot clock is > 90% of the (display)
+		/* Enable pixel doubling when the dot clock is > 85% of the (display)
 		 * core speed.
 		 *
 		 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
 		 * pipe == 0 check?
 		 */
 		if (intel_crtc->config.requested_mode.clock >
-		    dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
+		    dev_priv->display.get_display_clock_speed(dev) * 17 / 20)
 			pipeconf |= PIPECONF_DOUBLE_WIDE;
 		else
 			pipeconf &= ~PIPECONF_DOUBLE_WIDE;
-- 
1.8.2.1

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

* Re: [PATCH] Lower threshold for pixel doubling.
  2013-05-20 18:15 [PATCH] Lower threshold for pixel doubling Stuart Abercrombie
@ 2013-05-28 17:39 ` Stuart Abercrombie
  2013-05-29 15:22   ` Daniel Vetter
  2013-08-16  8:20 ` Chris Wilson
  1 sibling, 1 reply; 13+ messages in thread
From: Stuart Abercrombie @ 2013-05-28 17:39 UTC (permalink / raw)
  To: Stuart Abercrombie; +Cc: intel-gfx


[-- Attachment #1.1: Type: text/plain, Size: 1973 bytes --]

Any comments?

Without this, plugging one of the older Chromebook models into a Dell U3011
monitor produces a garbled display at the default 2048x1280 resolution.

The original threshold was apparently fairly arbitrary:

http://cgit.freedesktop.org/~anholt/xf86-video-intel/commit/?id=8fcf9a81179ee8577ddab5e904c58fbfd14cf59c
.

Stuart


On Mon, May 20, 2013 at 11:15 AM, Stuart Abercrombie <
sabercrombie@chromium.org> wrote:

> 90% of core speed (=180MHz dot clock) is too high for 2048x1280 to get
> pixel doubling on Pineview, which it needs to avoid underruns, so
> lower this to 85%.
>
> Signed-off-by: Stuart Abercrombie <sabercrombie@chromium.org>
> ---
>  drivers/gpu/drm/i915/intel_display.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/intel_display.c
> b/drivers/gpu/drm/i915/intel_display.c
> index efe8299..9c924e9 100644
> --- a/drivers/gpu/drm/i915/intel_display.c
> +++ b/drivers/gpu/drm/i915/intel_display.c
> @@ -4564,14 +4564,14 @@ static void i9xx_set_pipeconf(struct intel_crtc
> *intel_crtc)
>         pipeconf = I915_READ(PIPECONF(intel_crtc->pipe));
>
>         if (intel_crtc->pipe == 0 && INTEL_INFO(dev)->gen < 4) {
> -               /* Enable pixel doubling when the dot clock is > 90% of
> the (display)
> +               /* Enable pixel doubling when the dot clock is > 85% of
> the (display)
>                  * core speed.
>                  *
>                  * XXX: No double-wide on 915GM pipe B. Is that the only
> reason for the
>                  * pipe == 0 check?
>                  */
>                 if (intel_crtc->config.requested_mode.clock >
> -                   dev_priv->display.get_display_clock_speed(dev) * 9 /
> 10)
> +                   dev_priv->display.get_display_clock_speed(dev) * 17 /
> 20)
>                         pipeconf |= PIPECONF_DOUBLE_WIDE;
>                 else
>                         pipeconf &= ~PIPECONF_DOUBLE_WIDE;
> --
> 1.8.2.1
>
>

[-- Attachment #1.2: Type: text/html, Size: 2740 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

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

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

* Re: [PATCH] Lower threshold for pixel doubling.
  2013-05-28 17:39 ` Stuart Abercrombie
@ 2013-05-29 15:22   ` Daniel Vetter
  2013-05-29 16:22     ` Stuart Abercrombie
  0 siblings, 1 reply; 13+ messages in thread
From: Daniel Vetter @ 2013-05-29 15:22 UTC (permalink / raw)
  To: Stuart Abercrombie; +Cc: intel-gfx

On Tue, May 28, 2013 at 10:39:07AM -0700, Stuart Abercrombie wrote:
> Any comments?
> 
> Without this, plugging one of the older Chromebook models into a Dell U3011
> monitor produces a garbled display at the default 2048x1280 resolution.
> 
> The original threshold was apparently fairly arbitrary:
> 
> http://cgit.freedesktop.org/~anholt/xf86-video-intel/commit/?id=8fcf9a81179ee8577ddab5e904c58fbfd14cf59c

Do you see any pipe underruns without this patch? There are some not-yet
implemented tricks we should be pulling around re-splitting DSP_ARB fifo
entries, which tend to totally kill high-res modes.
-Daniel

> .
> 
> Stuart
> 
> 
> On Mon, May 20, 2013 at 11:15 AM, Stuart Abercrombie <
> sabercrombie@chromium.org> wrote:
> 
> > 90% of core speed (=180MHz dot clock) is too high for 2048x1280 to get
> > pixel doubling on Pineview, which it needs to avoid underruns, so
> > lower this to 85%.
> >
> > Signed-off-by: Stuart Abercrombie <sabercrombie@chromium.org>
> > ---
> >  drivers/gpu/drm/i915/intel_display.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/intel_display.c
> > b/drivers/gpu/drm/i915/intel_display.c
> > index efe8299..9c924e9 100644
> > --- a/drivers/gpu/drm/i915/intel_display.c
> > +++ b/drivers/gpu/drm/i915/intel_display.c
> > @@ -4564,14 +4564,14 @@ static void i9xx_set_pipeconf(struct intel_crtc
> > *intel_crtc)
> >         pipeconf = I915_READ(PIPECONF(intel_crtc->pipe));
> >
> >         if (intel_crtc->pipe == 0 && INTEL_INFO(dev)->gen < 4) {
> > -               /* Enable pixel doubling when the dot clock is > 90% of
> > the (display)
> > +               /* Enable pixel doubling when the dot clock is > 85% of
> > the (display)
> >                  * core speed.
> >                  *
> >                  * XXX: No double-wide on 915GM pipe B. Is that the only
> > reason for the
> >                  * pipe == 0 check?
> >                  */
> >                 if (intel_crtc->config.requested_mode.clock >
> > -                   dev_priv->display.get_display_clock_speed(dev) * 9 /
> > 10)
> > +                   dev_priv->display.get_display_clock_speed(dev) * 17 /
> > 20)
> >                         pipeconf |= PIPECONF_DOUBLE_WIDE;
> >                 else
> >                         pipeconf &= ~PIPECONF_DOUBLE_WIDE;
> > --
> > 1.8.2.1
> >
> >

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


-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch

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

* Re: [PATCH] Lower threshold for pixel doubling.
  2013-05-29 15:22   ` Daniel Vetter
@ 2013-05-29 16:22     ` Stuart Abercrombie
  2013-06-21 22:52       ` Stuart Abercrombie
  0 siblings, 1 reply; 13+ messages in thread
From: Stuart Abercrombie @ 2013-05-29 16:22 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: intel-gfx


[-- Attachment #1.1: Type: text/plain, Size: 3461 bytes --]

Without this change I saw PIPE_FIFO_UNDERRUN_STATUS set in PIPEASTAT, which
I took to indicate an underrun problem.

Here's what I found with other modes on this monitor:

1920x1200 works with pixel doubling enabled. Pixel clock 193.2 MHz.
2048x1152 works with pixel doubling enabled. Pixel clock 198.0 MHz.
1600x1200 works with pixel doubling disabled. Pixel clock 162.0 MHz.
2048x1280 fails with pixel doubling disabled. PIxel clock 174.2 MHz..

Based on this, it seems the threshold needs to be be between 162.0MHz and
174.2MHz, whereas currently it's at 180MHz.  The change puts it at 170MHz.

Stuart


On Wed, May 29, 2013 at 8:22 AM, Daniel Vetter <daniel@ffwll.ch> wrote:

> On Tue, May 28, 2013 at 10:39:07AM -0700, Stuart Abercrombie wrote:
> > Any comments?
> >
> > Without this, plugging one of the older Chromebook models into a Dell
> U3011
> > monitor produces a garbled display at the default 2048x1280 resolution.
> >
> > The original threshold was apparently fairly arbitrary:
> >
> >
> http://cgit.freedesktop.org/~anholt/xf86-video-intel/commit/?id=8fcf9a81179ee8577ddab5e904c58fbfd14cf59c
>
> Do you see any pipe underruns without this patch? There are some not-yet
> implemented tricks we should be pulling around re-splitting DSP_ARB fifo
> entries, which tend to totally kill high-res modes.
> -Daniel
>
> > .
> >
> > Stuart
> >
> >
> > On Mon, May 20, 2013 at 11:15 AM, Stuart Abercrombie <
> > sabercrombie@chromium.org> wrote:
> >
> > > 90% of core speed (=180MHz dot clock) is too high for 2048x1280 to get
> > > pixel doubling on Pineview, which it needs to avoid underruns, so
> > > lower this to 85%.
> > >
> > > Signed-off-by: Stuart Abercrombie <sabercrombie@chromium.org>
> > > ---
> > >  drivers/gpu/drm/i915/intel_display.c | 4 ++--
> > >  1 file changed, 2 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/i915/intel_display.c
> > > b/drivers/gpu/drm/i915/intel_display.c
> > > index efe8299..9c924e9 100644
> > > --- a/drivers/gpu/drm/i915/intel_display.c
> > > +++ b/drivers/gpu/drm/i915/intel_display.c
> > > @@ -4564,14 +4564,14 @@ static void i9xx_set_pipeconf(struct intel_crtc
> > > *intel_crtc)
> > >         pipeconf = I915_READ(PIPECONF(intel_crtc->pipe));
> > >
> > >         if (intel_crtc->pipe == 0 && INTEL_INFO(dev)->gen < 4) {
> > > -               /* Enable pixel doubling when the dot clock is > 90% of
> > > the (display)
> > > +               /* Enable pixel doubling when the dot clock is > 85% of
> > > the (display)
> > >                  * core speed.
> > >                  *
> > >                  * XXX: No double-wide on 915GM pipe B. Is that the
> only
> > > reason for the
> > >                  * pipe == 0 check?
> > >                  */
> > >                 if (intel_crtc->config.requested_mode.clock >
> > > -                   dev_priv->display.get_display_clock_speed(dev) * 9
> /
> > > 10)
> > > +                   dev_priv->display.get_display_clock_speed(dev) *
> 17 /
> > > 20)
> > >                         pipeconf |= PIPECONF_DOUBLE_WIDE;
> > >                 else
> > >                         pipeconf &= ~PIPECONF_DOUBLE_WIDE;
> > > --
> > > 1.8.2.1
> > >
> > >
>
> > _______________________________________________
> > Intel-gfx mailing list
> > Intel-gfx@lists.freedesktop.org
> > http://lists.freedesktop.org/mailman/listinfo/intel-gfx
>
>
> --
> Daniel Vetter
> Software Engineer, Intel Corporation
> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
>

[-- Attachment #1.2: Type: text/html, Size: 5104 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

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

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

* Re: [PATCH] Lower threshold for pixel doubling.
  2013-05-29 16:22     ` Stuart Abercrombie
@ 2013-06-21 22:52       ` Stuart Abercrombie
  2013-06-24  6:59         ` Daniel Vetter
  0 siblings, 1 reply; 13+ messages in thread
From: Stuart Abercrombie @ 2013-06-21 22:52 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: intel-gfx


[-- Attachment #1.1: Type: text/plain, Size: 3761 bytes --]

Maybe I missed something, but I didn't see a response to this.  Can we get
this fix in?


On Wed, May 29, 2013 at 9:22 AM, Stuart Abercrombie <sabercrombie@google.com
> wrote:

> Without this change I saw PIPE_FIFO_UNDERRUN_STATUS set in PIPEASTAT,
> which I took to indicate an underrun problem.
>
> Here's what I found with other modes on this monitor:
>
> 1920x1200 works with pixel doubling enabled. Pixel clock 193.2 MHz.
> 2048x1152 works with pixel doubling enabled. Pixel clock 198.0 MHz.
> 1600x1200 works with pixel doubling disabled. Pixel clock 162.0 MHz.
> 2048x1280 fails with pixel doubling disabled. PIxel clock 174.2 MHz..
>
> Based on this, it seems the threshold needs to be be between 162.0MHz and
> 174.2MHz, whereas currently it's at 180MHz.  The change puts it at 170MHz.
>
> Stuart
>
>
> On Wed, May 29, 2013 at 8:22 AM, Daniel Vetter <daniel@ffwll.ch> wrote:
>
>> On Tue, May 28, 2013 at 10:39:07AM -0700, Stuart Abercrombie wrote:
>> > Any comments?
>> >
>> > Without this, plugging one of the older Chromebook models into a Dell
>> U3011
>> > monitor produces a garbled display at the default 2048x1280 resolution.
>> >
>> > The original threshold was apparently fairly arbitrary:
>> >
>> >
>> http://cgit.freedesktop.org/~anholt/xf86-video-intel/commit/?id=8fcf9a81179ee8577ddab5e904c58fbfd14cf59c
>>
>> Do you see any pipe underruns without this patch? There are some not-yet
>> implemented tricks we should be pulling around re-splitting DSP_ARB fifo
>> entries, which tend to totally kill high-res modes.
>> -Daniel
>>
>> > .
>> >
>> > Stuart
>> >
>> >
>> > On Mon, May 20, 2013 at 11:15 AM, Stuart Abercrombie <
>> > sabercrombie@chromium.org> wrote:
>> >
>> > > 90% of core speed (=180MHz dot clock) is too high for 2048x1280 to get
>> > > pixel doubling on Pineview, which it needs to avoid underruns, so
>> > > lower this to 85%.
>> > >
>> > > Signed-off-by: Stuart Abercrombie <sabercrombie@chromium.org>
>> > > ---
>> > >  drivers/gpu/drm/i915/intel_display.c | 4 ++--
>> > >  1 file changed, 2 insertions(+), 2 deletions(-)
>> > >
>> > > diff --git a/drivers/gpu/drm/i915/intel_display.c
>> > > b/drivers/gpu/drm/i915/intel_display.c
>> > > index efe8299..9c924e9 100644
>> > > --- a/drivers/gpu/drm/i915/intel_display.c
>> > > +++ b/drivers/gpu/drm/i915/intel_display.c
>> > > @@ -4564,14 +4564,14 @@ static void i9xx_set_pipeconf(struct
>> intel_crtc
>> > > *intel_crtc)
>> > >         pipeconf = I915_READ(PIPECONF(intel_crtc->pipe));
>> > >
>> > >         if (intel_crtc->pipe == 0 && INTEL_INFO(dev)->gen < 4) {
>> > > -               /* Enable pixel doubling when the dot clock is > 90%
>> of
>> > > the (display)
>> > > +               /* Enable pixel doubling when the dot clock is > 85%
>> of
>> > > the (display)
>> > >                  * core speed.
>> > >                  *
>> > >                  * XXX: No double-wide on 915GM pipe B. Is that the
>> only
>> > > reason for the
>> > >                  * pipe == 0 check?
>> > >                  */
>> > >                 if (intel_crtc->config.requested_mode.clock >
>> > > -                   dev_priv->display.get_display_clock_speed(dev) *
>> 9 /
>> > > 10)
>> > > +                   dev_priv->display.get_display_clock_speed(dev) *
>> 17 /
>> > > 20)
>> > >                         pipeconf |= PIPECONF_DOUBLE_WIDE;
>> > >                 else
>> > >                         pipeconf &= ~PIPECONF_DOUBLE_WIDE;
>> > > --
>> > > 1.8.2.1
>> > >
>> > >
>>
>> > _______________________________________________
>> > Intel-gfx mailing list
>> > Intel-gfx@lists.freedesktop.org
>> > http://lists.freedesktop.org/mailman/listinfo/intel-gfx
>>
>>
>> --
>> Daniel Vetter
>> Software Engineer, Intel Corporation
>> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
>>
>
>

[-- Attachment #1.2: Type: text/html, Size: 5723 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

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

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

* Re: [PATCH] Lower threshold for pixel doubling.
  2013-06-21 22:52       ` Stuart Abercrombie
@ 2013-06-24  6:59         ` Daniel Vetter
  2013-06-24 23:28           ` Stuart Abercrombie
  0 siblings, 1 reply; 13+ messages in thread
From: Daniel Vetter @ 2013-06-24  6:59 UTC (permalink / raw)
  To: Stuart Abercrombie; +Cc: intel-gfx

On Sat, Jun 22, 2013 at 12:52 AM, Stuart Abercrombie
<sabercrombie@google.com> wrote:
> Maybe I missed something, but I didn't see a response to this.  Can we get
> this fix in?

Sorry for the delay, I've lost track of this. Can you please boot with
drm.debug=0xe and attach the full dmesg (with or without your patch)?
-Daniel

>
>
> On Wed, May 29, 2013 at 9:22 AM, Stuart Abercrombie
> <sabercrombie@google.com> wrote:
>>
>> Without this change I saw PIPE_FIFO_UNDERRUN_STATUS set in PIPEASTAT,
>> which I took to indicate an underrun problem.
>>
>> Here's what I found with other modes on this monitor:
>>
>> 1920x1200 works with pixel doubling enabled. Pixel clock 193.2 MHz.
>> 2048x1152 works with pixel doubling enabled. Pixel clock 198.0 MHz.
>> 1600x1200 works with pixel doubling disabled. Pixel clock 162.0 MHz.
>> 2048x1280 fails with pixel doubling disabled. PIxel clock 174.2 MHz..
>>
>> Based on this, it seems the threshold needs to be be between 162.0MHz and
>> 174.2MHz, whereas currently it's at 180MHz.  The change puts it at 170MHz.
>>
>> Stuart
>>
>>
>> On Wed, May 29, 2013 at 8:22 AM, Daniel Vetter <daniel@ffwll.ch> wrote:
>>>
>>> On Tue, May 28, 2013 at 10:39:07AM -0700, Stuart Abercrombie wrote:
>>> > Any comments?
>>> >
>>> > Without this, plugging one of the older Chromebook models into a Dell
>>> > U3011
>>> > monitor produces a garbled display at the default 2048x1280 resolution.
>>> >
>>> > The original threshold was apparently fairly arbitrary:
>>> >
>>> >
>>> > http://cgit.freedesktop.org/~anholt/xf86-video-intel/commit/?id=8fcf9a81179ee8577ddab5e904c58fbfd14cf59c
>>>
>>> Do you see any pipe underruns without this patch? There are some not-yet
>>> implemented tricks we should be pulling around re-splitting DSP_ARB fifo
>>> entries, which tend to totally kill high-res modes.
>>> -Daniel
>>>
>>> > .
>>> >
>>> > Stuart
>>> >
>>> >
>>> > On Mon, May 20, 2013 at 11:15 AM, Stuart Abercrombie <
>>> > sabercrombie@chromium.org> wrote:
>>> >
>>> > > 90% of core speed (=180MHz dot clock) is too high for 2048x1280 to
>>> > > get
>>> > > pixel doubling on Pineview, which it needs to avoid underruns, so
>>> > > lower this to 85%.
>>> > >
>>> > > Signed-off-by: Stuart Abercrombie <sabercrombie@chromium.org>
>>> > > ---
>>> > >  drivers/gpu/drm/i915/intel_display.c | 4 ++--
>>> > >  1 file changed, 2 insertions(+), 2 deletions(-)
>>> > >
>>> > > diff --git a/drivers/gpu/drm/i915/intel_display.c
>>> > > b/drivers/gpu/drm/i915/intel_display.c
>>> > > index efe8299..9c924e9 100644
>>> > > --- a/drivers/gpu/drm/i915/intel_display.c
>>> > > +++ b/drivers/gpu/drm/i915/intel_display.c
>>> > > @@ -4564,14 +4564,14 @@ static void i9xx_set_pipeconf(struct
>>> > > intel_crtc
>>> > > *intel_crtc)
>>> > >         pipeconf = I915_READ(PIPECONF(intel_crtc->pipe));
>>> > >
>>> > >         if (intel_crtc->pipe == 0 && INTEL_INFO(dev)->gen < 4) {
>>> > > -               /* Enable pixel doubling when the dot clock is > 90%
>>> > > of
>>> > > the (display)
>>> > > +               /* Enable pixel doubling when the dot clock is > 85%
>>> > > of
>>> > > the (display)
>>> > >                  * core speed.
>>> > >                  *
>>> > >                  * XXX: No double-wide on 915GM pipe B. Is that the
>>> > > only
>>> > > reason for the
>>> > >                  * pipe == 0 check?
>>> > >                  */
>>> > >                 if (intel_crtc->config.requested_mode.clock >
>>> > > -                   dev_priv->display.get_display_clock_speed(dev) *
>>> > > 9 /
>>> > > 10)
>>> > > +                   dev_priv->display.get_display_clock_speed(dev) *
>>> > > 17 /
>>> > > 20)
>>> > >                         pipeconf |= PIPECONF_DOUBLE_WIDE;
>>> > >                 else
>>> > >                         pipeconf &= ~PIPECONF_DOUBLE_WIDE;
>>> > > --
>>> > > 1.8.2.1
>>> > >
>>> > >
>>>
>>> > _______________________________________________
>>> > Intel-gfx mailing list
>>> > Intel-gfx@lists.freedesktop.org
>>> > http://lists.freedesktop.org/mailman/listinfo/intel-gfx
>>>
>>>
>>> --
>>> Daniel Vetter
>>> Software Engineer, Intel Corporation
>>> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
>>
>>
>



--
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch

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

* Re: [PATCH] Lower threshold for pixel doubling.
  2013-06-24  6:59         ` Daniel Vetter
@ 2013-06-24 23:28           ` Stuart Abercrombie
  2013-07-08 18:52             ` Stuart Abercrombie
  2013-07-26  6:01             ` Daniel Vetter
  0 siblings, 2 replies; 13+ messages in thread
From: Stuart Abercrombie @ 2013-06-24 23:28 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: intel-gfx


[-- Attachment #1.1: Type: text/plain, Size: 4620 bytes --]

This is with the patch.


On Sun, Jun 23, 2013 at 11:59 PM, Daniel Vetter <daniel@ffwll.ch> wrote:

> On Sat, Jun 22, 2013 at 12:52 AM, Stuart Abercrombie
> <sabercrombie@google.com> wrote:
> > Maybe I missed something, but I didn't see a response to this.  Can we
> get
> > this fix in?
>
> Sorry for the delay, I've lost track of this. Can you please boot with
> drm.debug=0xe and attach the full dmesg (with or without your patch)?
> -Daniel
>
> >
> >
> > On Wed, May 29, 2013 at 9:22 AM, Stuart Abercrombie
> > <sabercrombie@google.com> wrote:
> >>
> >> Without this change I saw PIPE_FIFO_UNDERRUN_STATUS set in PIPEASTAT,
> >> which I took to indicate an underrun problem.
> >>
> >> Here's what I found with other modes on this monitor:
> >>
> >> 1920x1200 works with pixel doubling enabled. Pixel clock 193.2 MHz.
> >> 2048x1152 works with pixel doubling enabled. Pixel clock 198.0 MHz.
> >> 1600x1200 works with pixel doubling disabled. Pixel clock 162.0 MHz.
> >> 2048x1280 fails with pixel doubling disabled. PIxel clock 174.2 MHz..
> >>
> >> Based on this, it seems the threshold needs to be be between 162.0MHz
> and
> >> 174.2MHz, whereas currently it's at 180MHz.  The change puts it at
> 170MHz.
> >>
> >> Stuart
> >>
> >>
> >> On Wed, May 29, 2013 at 8:22 AM, Daniel Vetter <daniel@ffwll.ch> wrote:
> >>>
> >>> On Tue, May 28, 2013 at 10:39:07AM -0700, Stuart Abercrombie wrote:
> >>> > Any comments?
> >>> >
> >>> > Without this, plugging one of the older Chromebook models into a Dell
> >>> > U3011
> >>> > monitor produces a garbled display at the default 2048x1280
> resolution.
> >>> >
> >>> > The original threshold was apparently fairly arbitrary:
> >>> >
> >>> >
> >>> >
> http://cgit.freedesktop.org/~anholt/xf86-video-intel/commit/?id=8fcf9a81179ee8577ddab5e904c58fbfd14cf59c
> >>>
> >>> Do you see any pipe underruns without this patch? There are some
> not-yet
> >>> implemented tricks we should be pulling around re-splitting DSP_ARB
> fifo
> >>> entries, which tend to totally kill high-res modes.
> >>> -Daniel
> >>>
> >>> > .
> >>> >
> >>> > Stuart
> >>> >
> >>> >
> >>> > On Mon, May 20, 2013 at 11:15 AM, Stuart Abercrombie <
> >>> > sabercrombie@chromium.org> wrote:
> >>> >
> >>> > > 90% of core speed (=180MHz dot clock) is too high for 2048x1280 to
> >>> > > get
> >>> > > pixel doubling on Pineview, which it needs to avoid underruns, so
> >>> > > lower this to 85%.
> >>> > >
> >>> > > Signed-off-by: Stuart Abercrombie <sabercrombie@chromium.org>
> >>> > > ---
> >>> > >  drivers/gpu/drm/i915/intel_display.c | 4 ++--
> >>> > >  1 file changed, 2 insertions(+), 2 deletions(-)
> >>> > >
> >>> > > diff --git a/drivers/gpu/drm/i915/intel_display.c
> >>> > > b/drivers/gpu/drm/i915/intel_display.c
> >>> > > index efe8299..9c924e9 100644
> >>> > > --- a/drivers/gpu/drm/i915/intel_display.c
> >>> > > +++ b/drivers/gpu/drm/i915/intel_display.c
> >>> > > @@ -4564,14 +4564,14 @@ static void i9xx_set_pipeconf(struct
> >>> > > intel_crtc
> >>> > > *intel_crtc)
> >>> > >         pipeconf = I915_READ(PIPECONF(intel_crtc->pipe));
> >>> > >
> >>> > >         if (intel_crtc->pipe == 0 && INTEL_INFO(dev)->gen < 4) {
> >>> > > -               /* Enable pixel doubling when the dot clock is >
> 90%
> >>> > > of
> >>> > > the (display)
> >>> > > +               /* Enable pixel doubling when the dot clock is >
> 85%
> >>> > > of
> >>> > > the (display)
> >>> > >                  * core speed.
> >>> > >                  *
> >>> > >                  * XXX: No double-wide on 915GM pipe B. Is that the
> >>> > > only
> >>> > > reason for the
> >>> > >                  * pipe == 0 check?
> >>> > >                  */
> >>> > >                 if (intel_crtc->config.requested_mode.clock >
> >>> > > -                   dev_priv->display.get_display_clock_speed(dev)
> *
> >>> > > 9 /
> >>> > > 10)
> >>> > > +                   dev_priv->display.get_display_clock_speed(dev)
> *
> >>> > > 17 /
> >>> > > 20)
> >>> > >                         pipeconf |= PIPECONF_DOUBLE_WIDE;
> >>> > >                 else
> >>> > >                         pipeconf &= ~PIPECONF_DOUBLE_WIDE;
> >>> > > --
> >>> > > 1.8.2.1
> >>> > >
> >>> > >
> >>>
> >>> > _______________________________________________
> >>> > Intel-gfx mailing list
> >>> > Intel-gfx@lists.freedesktop.org
> >>> > http://lists.freedesktop.org/mailman/listinfo/intel-gfx
> >>>
> >>>
> >>> --
> >>> Daniel Vetter
> >>> Software Engineer, Intel Corporation
> >>> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
> >>
> >>
> >
>
>
>
> --
> Daniel Vetter
> Software Engineer, Intel Corporation
> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
>

[-- Attachment #1.2: Type: text/html, Size: 7500 bytes --]

[-- Attachment #2: pineview_dmesg.txt --]
[-- Type: text/plain, Size: 129965 bytes --]

[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.4.0 (chrome-bot@build45-m2) (gcc version 4.7.x-google 20130114 (prerelease) (4.7.2_cos_gg_c8f69e0) ) #7 SMP Thu Jun 20 19:04:02 PDT 2013
[    0.000000] Disabled fast string operations
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 0000000000001000 (usable)
[    0.000000]  BIOS-e820: 00000000fffff000 - 0000000100000000 (reserved)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.00 by INSYDE Corp.
[    0.000000] efi:  ACPI=0x7f5f2000  ACPI 2.0=0x7f5f2014  SMBIOS=0x7f495d98 
[    0.000000] efi: No EFI runtime due to 32/64-bit mismatch with kernel
[    0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
[    0.000000] efi: mem01: type=7, attr=0xf, range=[0x0000000000001000-0x000000000000e000) (0MB)
[    0.000000] efi: mem02: type=3, attr=0xf, range=[0x000000000000e000-0x0000000000010000) (0MB)
[    0.000000] efi: mem03: type=7, attr=0xf, range=[0x0000000000010000-0x000000000002e000) (0MB)
[    0.000000] efi: mem04: type=3, attr=0xf, range=[0x000000000002e000-0x000000000002f000) (0MB)
[    0.000000] efi: mem05: type=4, attr=0xf, range=[0x000000000002f000-0x0000000000030000) (0MB)
[    0.000000] efi: mem06: type=3, attr=0xf, range=[0x0000000000030000-0x000000000008f000) (0MB)
[    0.000000] efi: mem07: type=10, attr=0xf, range=[0x000000000008f000-0x0000000000090000) (0MB)
[    0.000000] efi: mem08: type=3, attr=0xf, range=[0x0000000000090000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem09: type=2, attr=0xf, range=[0x0000000000100000-0x0000000000b00000) (10MB)
[    0.000000] efi: mem10: type=3, attr=0xf, range=[0x0000000000b00000-0x0000000000f00000) (4MB)
[    0.000000] efi: mem11: type=0, attr=0xf, range=[0x0000000000f00000-0x0000000001000000) (1MB)
[    0.000000] efi: mem12: type=7, attr=0xf, range=[0x0000000001000000-0x000000007bf0a000) (1967MB)
[    0.000000] efi: mem13: type=4, attr=0xf, range=[0x000000007bf0a000-0x000000007bf28000) (0MB)
[    0.000000] efi: mem14: type=7, attr=0xf, range=[0x000000007bf28000-0x000000007bf2f000) (0MB)
[    0.000000] efi: mem15: type=1, attr=0xf, range=[0x000000007bf2f000-0x000000007bf37000) (0MB)
[    0.000000] efi: mem16: type=4, attr=0xf, range=[0x000000007bf37000-0x000000007bf7b000) (0MB)
[    0.000000] efi: mem17: type=3, attr=0xf, range=[0x000000007bf7b000-0x000000007bf81000) (0MB)
[    0.000000] efi: mem18: type=4, attr=0xf, range=[0x000000007bf81000-0x000000007bf9c000) (0MB)
[    0.000000] efi: mem19: type=7, attr=0xf, range=[0x000000007bf9c000-0x000000007bf9d000) (0MB)
[    0.000000] efi: mem20: type=4, attr=0xf, range=[0x000000007bf9d000-0x000000007c1d8000) (2MB)
[    0.000000] efi: mem21: type=7, attr=0xf, range=[0x000000007c1d8000-0x000000007c1dc000) (0MB)
[    0.000000] efi: mem22: type=4, attr=0xf, range=[0x000000007c1dc000-0x000000007c1e2000) (0MB)
[    0.000000] efi: mem23: type=7, attr=0xf, range=[0x000000007c1e2000-0x000000007c1e3000) (0MB)
[    0.000000] efi: mem24: type=4, attr=0xf, range=[0x000000007c1e3000-0x000000007c212000) (0MB)
[    0.000000] efi: mem25: type=3, attr=0xf, range=[0x000000007c212000-0x000000007c217000) (0MB)
[    0.000000] efi: mem26: type=4, attr=0xf, range=[0x000000007c217000-0x000000007c21a000) (0MB)
[    0.000000] efi: mem27: type=3, attr=0xf, range=[0x000000007c21a000-0x000000007c21d000) (0MB)
[    0.000000] efi: mem28: type=4, attr=0xf, range=[0x000000007c21d000-0x000000007c223000) (0MB)
[    0.000000] efi: mem29: type=3, attr=0xf, range=[0x000000007c223000-0x000000007c229000) (0MB)
[    0.000000] efi: mem30: type=4, attr=0xf, range=[0x000000007c229000-0x000000007c22a000) (0MB)
[    0.000000] efi: mem31: type=3, attr=0xf, range=[0x000000007c22a000-0x000000007c230000) (0MB)
[    0.000000] efi: mem32: type=4, attr=0xf, range=[0x000000007c230000-0x000000007c231000) (0MB)
[    0.000000] efi: mem33: type=3, attr=0xf, range=[0x000000007c231000-0x000000007c23b000) (0MB)
[    0.000000] efi: mem34: type=4, attr=0xf, range=[0x000000007c23b000-0x000000007c23c000) (0MB)
[    0.000000] efi: mem35: type=3, attr=0xf, range=[0x000000007c23c000-0x000000007c240000) (0MB)
[    0.000000] efi: mem36: type=4, attr=0xf, range=[0x000000007c240000-0x000000007c261000) (0MB)
[    0.000000] efi: mem37: type=3, attr=0xf, range=[0x000000007c261000-0x000000007c262000) (0MB)
[    0.000000] efi: mem38: type=4, attr=0xf, range=[0x000000007c262000-0x000000007c263000) (0MB)
[    0.000000] efi: mem39: type=3, attr=0xf, range=[0x000000007c263000-0x000000007c264000) (0MB)
[    0.000000] efi: mem40: type=4, attr=0xf, range=[0x000000007c264000-0x000000007c265000) (0MB)
[    0.000000] efi: mem41: type=3, attr=0xf, range=[0x000000007c265000-0x000000007c26c000) (0MB)
[    0.000000] efi: mem42: type=4, attr=0xf, range=[0x000000007c26c000-0x000000007c26f000) (0MB)
[    0.000000] efi: mem43: type=3, attr=0xf, range=[0x000000007c26f000-0x000000007c271000) (0MB)
[    0.000000] efi: mem44: type=4, attr=0xf, range=[0x000000007c271000-0x000000007c273000) (0MB)
[    0.000000] efi: mem45: type=3, attr=0xf, range=[0x000000007c273000-0x000000007c275000) (0MB)
[    0.000000] efi: mem46: type=4, attr=0xf, range=[0x000000007c275000-0x000000007c276000) (0MB)
[    0.000000] efi: mem47: type=3, attr=0xf, range=[0x000000007c276000-0x000000007c27b000) (0MB)
[    0.000000] efi: mem48: type=4, attr=0xf, range=[0x000000007c27b000-0x000000007c62e000) (3MB)
[    0.000000] efi: mem49: type=3, attr=0xf, range=[0x000000007c62e000-0x000000007c634000) (0MB)
[    0.000000] efi: mem50: type=4, attr=0xf, range=[0x000000007c634000-0x000000007c635000) (0MB)
[    0.000000] efi: mem51: type=3, attr=0xf, range=[0x000000007c635000-0x000000007c637000) (0MB)
[    0.000000] efi: mem52: type=4, attr=0xf, range=[0x000000007c637000-0x000000007c63e000) (0MB)
[    0.000000] efi: mem53: type=3, attr=0xf, range=[0x000000007c63e000-0x000000007c65c000) (0MB)
[    0.000000] efi: mem54: type=4, attr=0xf, range=[0x000000007c65c000-0x000000007c6ac000) (0MB)
[    0.000000] efi: mem55: type=3, attr=0xf, range=[0x000000007c6ac000-0x000000007c6bc000) (0MB)
[    0.000000] efi: mem56: type=4, attr=0xf, range=[0x000000007c6bc000-0x000000007f23f000) (43MB)
[    0.000000] efi: mem57: type=3, attr=0xf, range=[0x000000007f23f000-0x000000007f33f000) (1MB)
[    0.000000] efi: mem58: type=5, attr=0x800000000000000f, range=[0x000000007f33f000-0x000000007f370000) (0MB)
[    0.000000] efi: mem59: type=5, attr=0x800000000000000f, range=[0x000000007f370000-0x000000007f3bf000) (0MB)
[    0.000000] efi: mem60: type=6, attr=0x800000000000000f, range=[0x000000007f3bf000-0x000000007f416000) (0MB)
[    0.000000] efi: mem61: type=6, attr=0x800000000000000f, range=[0x000000007f416000-0x000000007f43f000) (0MB)
[    0.000000] efi: mem62: type=0, attr=0xf, range=[0x000000007f43f000-0x000000007f486000) (0MB)
[    0.000000] efi: mem63: type=0, attr=0xf, range=[0x000000007f486000-0x000000007f4bf000) (0MB)
[    0.000000] efi: mem64: type=10, attr=0xf, range=[0x000000007f4bf000-0x000000007f582000) (0MB)
[    0.000000] efi: mem65: type=10, attr=0xf, range=[0x000000007f582000-0x000000007f5bf000) (0MB)
[    0.000000] efi: mem66: type=9, attr=0xf, range=[0x000000007f5bf000-0x000000007f5e2000) (0MB)
[    0.000000] efi: mem67: type=9, attr=0xf, range=[0x000000007f5e2000-0x000000007f5f3000) (0MB)
[    0.000000] efi: mem68: type=4, attr=0xf, range=[0x000000007f5f3000-0x000000007f600000) (0MB)
[    0.000000] efi: mem69: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem70: type=11, attr=0x8000000000000000, range=[0x00000000ffc00000-0x00000000ffc10000) (0MB)
[    0.000000] efi: mem71: type=11, attr=0x8000000000000000, range=[0x00000000ffc10000-0x00000000ffc20000) (0MB)
[    0.000000] efi: mem72: type=11, attr=0x8000000000000000, range=[0x00000000ffc20000-0x0000000100000000) (3MB)
[    0.000000] DMI 2.7 present.
[    0.000000] DMI: SAMSUNG ELECTRONICS CO., LTD. Alex/G100          , BIOS Alex.03.61.0735.0056G3.0021 04/07/2011
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0x7f600 max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   1 base 000000000 mask FC0000000 write-back
[    0.000000]   2 base 040000000 mask FC0000000 write-back
[    0.000000]   3 base 07F800000 mask FFF800000 uncachable
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] Warning only 1919MB will be used.
[    0.000000] Use a HIGHMEM enabled kernel.
[    0.000000] initial memory mapped : 0 - 02000000
[    0.000000] Base memory trampoline at [8009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: 0000000000000000-0000000077f64000
[    0.000000]  0000000000 - 0000200000 page 4k
[    0.000000]  0000200000 - 0077e00000 page 2M
[    0.000000]  0077e00000 - 0077f64000 page 4k
[    0.000000] kernel direct mapping tables up to 77f64000 @ 1ffa000-2000000
[    0.000000] ACPI: RSDP 7f5f2014 00024 (v02 INTEL )
[    0.000000] ACPI: XSDT 7f5f2120 00074 (v01 INTEL  PineTrlM 00000001      01000013)
[    0.000000] ACPI: FACP 7f5f1000 000F4 (v04 INTEL  PineTrlM 00000001 MSFT 01000013)
[    0.000000] ACPI: DSDT 7f5e8000 05E37 (v01 INTEL  PineTrlM 00000001 MSFT 01000013)
[    0.000000] ACPI: FACS 7f58f000 00040
[    0.000000] ACPI: HPET 7f5f0000 00038 (v01 INTEL  PineTrlM 00000001 MSFT 01000013)
[    0.000000] ACPI: APIC 7f5ef000 00078 (v02 INTEL  PineTrlM 00000001 MSFT 01000013)
[    0.000000] ACPI: MCFG 7f5ee000 0003C (v01 INTEL  PineTrlM 00000001 MSFT 01000013)
[    0.000000] ACPI: SLIC 7f5e7000 00176 (v01 INTEL  PineTrlM 00000001 MSFT 01000013)
[    0.000000] ACPI: BOOT 7f5e6000 00028 (v01 INTEL  PineTrlM 00000001 MSFT 01000013)
[    0.000000] ACPI: SSDT 7f5e5000 00655 (v01  PmRef    CpuPm 00003000 INTL 20100121)
[    0.000000] ACPI: SSDT 7f5e4000 00259 (v01  PmRef  Cpu0Tst 00003000 INTL 20100121)
[    0.000000] ACPI: SSDT 7f5e3000 0020F (v01  PmRef    ApTst 00003000 INTL 20100121)
[    0.000000] ACPI: WDAT 7f5e2000 00194 (v01 INSYDE INSYDE   00000001 MSFT 01000013)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 1919MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 77f64000
[    0.000000]   low ram: 0 - 77f64000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x00077f64
[    0.000000] Movable zone start PFN for each node
[    0.000000] Early memory PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000008f
[    0.000000]     0: 0x00000090 -> 0x000000a0
[    0.000000]     0: 0x00000100 -> 0x00000f00
[    0.000000]     0: 0x00001000 -> 0x0007f33f
[    0.000000]     0: 0x0007f5f3 -> 0x0007f600
[    0.000000] On node 0 totalpages: 490995
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3695 pages, LIFO batch:0
[    0.000000]   Normal zone: 3807 pages used for memmap
[    0.000000]   Normal zone: 483461 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] Allocating PCI resources starting at 7f600000 (gap: 7f600000:7f71c000)
[    0.000000] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 13 pages/cpu @f6f21000 s29760 r0 d23488 u53248
[    0.000000] pcpu-alloc: s29760 r0 d23488 u53248 alloc=13*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 487156
[    0.000000] Kernel command line: console= loglevel=7 init=/sbin/init cros_secure oops=panic panic=-1 root=PARTUUID=596d4c6b-b2b9-af40-985a-804ae7114aea/PARTNROFF=1 rootwait ro dm_verity.error_behavior=3 dm_verity.max_bios=-1 dm_verity.dev_wait=0 dm="1 vroot none ro 1,0 2097152 verity payload=ROOT_DEV hashtree=HASH_DEV hashstart=2097152 alg=sha1 root_hexdigest=4bdd5a1c362be77f66f5e977733b19c6c571580a salt=4f025fe32966bfc403d183a33b12e560fd60a5b2a4639cc5e41f8dec5ced8502" noinitrd cros_debug vt.global_cursor_default=0 kern_guid=596d4c6b-b2b9-af40-985a-804ae7114aea add_efi_memmap boot=local noresume noswap i915.modeset=1 tpm_tis.force=1 tpm_tis.interrupts=0 nmi_watchdog=panic,lapic drm.debug=0xe 
[    0.000000] device-mapper: init: will configure 1 devices
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 262144 (order: 8, 1048576 bytes)
[    0.000000] Inode-cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Memory: 1934504k/1965456k available (3849k kernel code, 1777k data, 460k init, 0k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff66000 - 0xfffff000   ( 612 kB)
[    0.000000]     vmalloc : 0xf8764000 - 0xfff64000   ( 120 MB)
[    0.000000]     lowmem  : 0x80000000 - 0xf7f64000   (1919 MB)
[    0.000000]       .init : 0x8157f000 - 0x815f2000   ( 460 kB)
[    0.000000]       .data : 0x813c2624 - 0x8157ed40   (1777 kB)
[    0.000000]       .text : 0x81000000 - 0x813c2624   (3849 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:2304 nr_irqs:712 16
[    0.000000] CPU 0 irqstacks, hard=f6808000 soft=f680a000
[    0.000000] Extended CMOS year: 2000
[    0.000000] Console: colour dummy device 80x25
[    0.000000] hpet clockevent registered
[    0.000000] Initial TSC value: 10862237290
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Initial usec timer 6535642
[    0.000000] Detected 1662.559 MHz processor.
[    0.001004] Calibrating delay loop (skipped), value calculated using timer frequency.. 3325.11 BogoMIPS (lpj=1662559)
[    0.001015] pid_max: default: 32768 minimum: 301
[    0.002055] Security Framework initialized
[    0.002063] Yama: becoming mindful.
[    0.002110] Mount-cache hash table entries: 512
[    0.002536] Initializing cgroup subsys freezer
[    0.002570] Disabled fast string operations
[    0.002578] CPU: Physical Processor ID: 0
[    0.002583] CPU: Processor Core ID: 0
[    0.002589] mce: CPU supports 5 MCE banks
[    0.002605] CPU0: Thermal monitoring enabled (TM2)
[    0.002613] using mwait in idle threads.
[    0.002689] ACPI: Core revision 20120320
[    0.015872] acpi_enable!
[    0.016007] ACPI mode enable smi_command = 0xb2 val = 0xa0
[    0.016030] ftrace: allocating 19574 entries in 39 pages
[    0.031112] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.032487] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.042503] CPU0: Intel(R) Atom(TM) CPU N570   @ 1.66GHz stepping 0a
[    0.042996] Performance Events: PEBS fmt0+, 8-deep LBR, Atom events, Intel PMU driver.
[    0.042996] ... version:                3
[    0.042996] ... bit width:              40
[    0.042996] ... generic registers:      2
[    0.042996] ... value mask:             000000ffffffffff
[    0.042996] ... max period:             000000007fffffff
[    0.042996] ... fixed-purpose events:   3
[    0.042996] ... event mask:             0000000700000003
[    0.042996] NMI watchdog: enabled, takes one hw-pmu counter.
[    0.042996] CPU 1 irqstacks, hard=f68f0000 soft=f68f2000
[    0.042996] Booting Node   0, Processors  #1
[    0.001999] Initializing CPU#1
[    0.001999] Disabled fast string operations
[    0.055031] NMI watchdog: enabled, takes one hw-pmu counter.
[    0.055275] CPU 2 irqstacks, hard=f68fe000 soft=f6900000
[    0.055281]  #2
[    0.001999] Initializing CPU#2
[    0.001999] Disabled fast string operations
[    0.066993] TSC synchronization [CPU#0 -> CPU#2]:
[    0.066993] Measured 80 cycles TSC warp between CPUs, turning off TSC clock.
[    0.066993] Marking TSC unstable due to check_tsc_sync_source failed
[    0.067038] NMI watchdog: enabled, takes one hw-pmu counter.
[    0.067255] CPU 3 irqstacks, hard=f690c000 soft=f690e000
[    0.067260]  #3 Ok.
[    0.001999] Initializing CPU#3
[    0.001999] Disabled fast string operations
[    0.078861] NMI watchdog: enabled, takes one hw-pmu counter.
[    0.078924] Brought up 4 CPUs
[    0.078931] Total of 4 processors activated (13300.47 BogoMIPS).
[    0.081007] devtmpfs: initialized
[    0.082359] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    0.082368] PM: Registering ACPI NVS region [mem 0x7f4bf000-0x7f5befff] (1048576 bytes)
[    0.084944] RTC time: 23:20:41, date: 06/24/13
[    0.085064] NET: Registered protocol family 16
[    0.086207] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.086215] ACPI: bus type pci registered
[    0.086341] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.086350] PCI: not using MMCONFIG
[    0.086678] PCI : PCI BIOS area is rw and x. Use pci=nobios if you want it NX.
[    0.086686] PCI: PCI BIOS revision 3.00 entry at 0xef753, last bus=1
[    0.086691] PCI: Using configuration type 1 for base access
[    0.090511] bio: create slab <bio-0> at 0
[    0.091116] ACPI: Added _OSI(Module Device)
[    0.091122] ACPI: Added _OSI(Processor Device)
[    0.091128] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.091134] ACPI: Added _OSI(Processor Aggregator Device)
[    0.094935] ACPI: EC: Look up EC in DSDT
[    0.098829] ACPI: Executed 1 blocks of module-level executable AML code
[    0.101753] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.102807] ACPI: SSDT 7f494818 00789 (v01  PmRef  Cpu0Ist 00003000 INTL 20100121)
[    0.104246] ACPI: Dynamic OEM Table Load:
[    0.104255] ACPI: SSDT   (null) 00789 (v01  PmRef  Cpu0Ist 00003000 INTL 20100121)
[    0.104549] ACPI: SSDT 7f493c18 001C3 (v02  PmRef  Cpu0Cst 00003001 INTL 20100121)
[    0.105479] ACPI: Dynamic OEM Table Load:
[    0.105487] ACPI: SSDT   (null) 001C3 (v02  PmRef  Cpu0Cst 00003001 INTL 20100121)
[    0.111734] ACPI: SSDT 7f493e18 001B5 (v01  PmRef    ApIst 00003000 INTL 20100121)
[    0.112754] ACPI: Dynamic OEM Table Load:
[    0.112763] ACPI: SSDT   (null) 001B5 (v01  PmRef    ApIst 00003000 INTL 20100121)
[    0.115280] ACPI: SSDT 7f492f18 000C9 (v02  PmRef    ApCst 00003000 INTL 20100121)
[    0.116244] ACPI: Dynamic OEM Table Load:
[    0.116253] ACPI: SSDT   (null) 000C9 (v02  PmRef    ApCst 00003000 INTL 20100121)
[    0.123172] ACPI: Interpreter enabled
[    0.123195] ACPI: (supports S0 S3 S5)
[    0.123248] ACPI: Using IOAPIC for interrupt routing
[    0.123301] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.124024] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    0.124031] PCI: Using MMCONFIG for extended config space
[    0.142070] ACPI: Power Resource [FN00] (off)
[    0.145034] ACPI: Power Resource [FN01] (off)
[    0.147073] ACPI: Power Resource [FN02] (on)
[    0.150073] ACPI: Power Resource [FN03] (on)
[    0.153032] ACPI: Power Resource [FN04] (on)
[    0.180771] ACPI: EC: GPE = 0x16, I/O: command/status = 0x66, data = 0x62
[    0.181260] ACPI: No dock devices found.
[    0.181274] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.182318] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.183944] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    0.183953] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    0.183960] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.183970] pci_root PNP0A08:00: host bridge window [mem 0x80000000-0xfebfffff]
[    0.184077] PCI host bridge to bus 0000:00
[    0.184085] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.184092] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.184099] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.184107] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff]
[    0.184134] pci 0000:00:00.0: [8086:a010] type 00 class 0x060000
[    0.184206] pci 0000:00:02.0: [8086:a011] type 00 class 0x030000
[    0.184225] pci 0000:00:02.0: reg 10: [mem 0x92180000-0x921fffff]
[    0.184237] pci 0000:00:02.0: reg 14: [io  0x20c0-0x20c7]
[    0.184249] pci 0000:00:02.0: reg 18: [mem 0x80000000-0x8fffffff pref]
[    0.184261] pci 0000:00:02.0: reg 1c: [mem 0x92000000-0x920fffff]
[    0.184322] pci 0000:00:02.1: [8086:a012] type 00 class 0x038000
[    0.184338] pci 0000:00:02.1: reg 10: [mem 0x92100000-0x9217ffff]
[    0.184480] pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
[    0.184511] pci 0000:00:1b.0: reg 10: [mem 0x92200000-0x92203fff 64bit]
[    0.184634] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.184678] pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
[    0.184813] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.184873] pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
[    0.184955] pci 0000:00:1d.0: reg 20: [io  0x2080-0x209f]
[    0.185042] pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
[    0.185128] pci 0000:00:1d.1: reg 20: [io  0x2060-0x207f]
[    0.185200] pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
[    0.185283] pci 0000:00:1d.2: reg 20: [io  0x2040-0x205f]
[    0.185355] pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
[    0.185438] pci 0000:00:1d.3: reg 20: [io  0x2020-0x203f]
[    0.185523] pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
[    0.186673] pci 0000:00:1d.7: reg 10: [mem 0x92205000-0x922053ff]
[    0.195054] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.195098] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[    0.195217] pci 0000:00:1f.0: [8086:27bc] type 00 class 0x060100
[    0.195407] pci 0000:00:1f.2: [8086:27c1] type 00 class 0x010601
[    0.195439] pci 0000:00:1f.2: reg 10: [io  0x20b8-0x20bf]
[    0.195458] pci 0000:00:1f.2: reg 14: [io  0x20cc-0x20cf]
[    0.195476] pci 0000:00:1f.2: reg 18: [io  0x20b0-0x20b7]
[    0.195493] pci 0000:00:1f.2: reg 1c: [io  0x20c8-0x20cb]
[    0.195511] pci 0000:00:1f.2: reg 20: [io  0x20a0-0x20af]
[    0.195529] pci 0000:00:1f.2: reg 24: [mem 0x92204000-0x922043ff]
[    0.195598] pci 0000:00:1f.2: PME# supported from D3hot
[    0.195633] pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500
[    0.195713] pci 0000:00:1f.3: reg 20: [io  0x2000-0x201f]
[    0.195866] pci 0000:01:00.0: [168c:0030] type 00 class 0x028000
[    0.195904] pci 0000:01:00.0: reg 10: [mem 0x91000000-0x9101ffff 64bit]
[    0.196055] pci 0000:01:00.0: reg 30: [mem 0xffff0000-0xffffffff pref]
[    0.196137] pci 0000:01:00.0: supports D1
[    0.196143] pci 0000:01:00.0: PME# supported from D0 D1 D3hot
[    0.199022] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
[    0.199038] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    0.199060] pci 0000:00:1c.0:   bridge window [mem 0x91000000-0x91ffffff]
[    0.199074] pci 0000:00:1c.0:   bridge window [mem 0x90000000-0x90ffffff 64bit pref]
[    0.199185] pci 0000:00:1e.0: PCI bridge to [bus 02-02] (subtractive decode)
[    0.199207] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.199215] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.199222] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.199230] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0xfebfffff] (subtractive decode)
[    0.199254] pci_bus 0000:00: on NUMA node 0
[    0.199264] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.199576] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P32_._PRT]
[    0.199781] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
[    0.200171]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.200663]  pci0000:00: ACPI _OSC control (0x1c) granted
[    0.208735] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12)
[    0.208897] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 *10 11 12)
[    0.209077] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12)
[    0.209236] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12)
[    0.209394] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    0.209555] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    0.209715] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    0.209875] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    0.210246] SCSI subsystem initialized
[    0.211065] libata version 3.00 loaded.
[    0.211229] usbcore: registered new interface driver usbfs
[    0.211270] usbcore: registered new interface driver hub
[    0.211290] usbcore: registered new device driver usb
[    0.211290] chromeos_acpi: registering CHSW 0
[    0.211924] chromeos_acpi: registering VBNV 0
[    0.211933] chromeos_acpi: registering VBNV 1
[    0.215999] chromeos_acpi: truncating buffer from 3750 to 1336
[    0.216591] chromeos_acpi: installed
[    0.216595] chromeos_acpi: chromeos_acpi: enabling S3 USB wake
[    0.216607] chromeos_acpi: chromeos_acpi: failed to enable S3 USB wake
[    0.216692] Advanced Linux Sound Architecture Driver Version 1.0.25.
[    0.216698] PCI: Using ACPI for IRQ routing
[    0.216707] PCI: pci_cache_line_size set to 64 bytes
[    0.216815] reserve RAM buffer: 000000000008f000 - 000000000008ffff 
[    0.216823] reserve RAM buffer: 000000007f33f000 - 000000007fffffff 
[    0.216831] reserve RAM buffer: 000000007f600000 - 000000007fffffff 
[    0.217510] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.217523] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.217535] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.222049] Switching to clocksource hpet
[    0.241624] pnp: PnP ACPI init
[    0.241660] ACPI: bus type pnp registered
[    0.244371] pnp 00:00: [bus 00-ff]
[    0.244386] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.244398] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.244409] pnp 00:00: [io  0x0d00-0xffff window]
[    0.244420] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.244432] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[    0.244443] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[    0.244454] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[    0.244466] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[    0.244477] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[    0.244488] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[    0.244499] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[    0.244511] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[    0.244522] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[    0.244533] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[    0.244544] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[    0.244556] pnp 00:00: [mem 0x000ec000-0x000effff window]
[    0.244567] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[    0.244579] pnp 00:00: [mem 0x80000000-0xfebfffff window]
[    0.244809] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.245412] pnp 00:01: [io  0x164e-0x164f]
[    0.245424] pnp 00:01: [io  0x0061]
[    0.245434] pnp 00:01: [io  0x0070]
[    0.245443] pnp 00:01: [io  0x0080]
[    0.245452] pnp 00:01: [io  0x0092]
[    0.245462] pnp 00:01: [io  0x00b2-0x00b3]
[    0.245472] pnp 00:01: [io  0x0063]
[    0.245481] pnp 00:01: [io  0x0065]
[    0.245490] pnp 00:01: [io  0x0067]
[    0.245500] pnp 00:01: [io  0x0600-0x060f]
[    0.245509] pnp 00:01: [io  0x0610]
[    0.245519] pnp 00:01: [io  0x0800-0x080f]
[    0.245529] pnp 00:01: [io  0x0810-0x0817]
[    0.245538] pnp 00:01: [io  0x0a00-0x0a01]
[    0.245548] pnp 00:01: [io  0x0400-0x047f]
[    0.245558] pnp 00:01: [io  0x0500-0x053f]
[    0.245574] pnp 00:01: [mem 0xe0000000-0xefffffff]
[    0.245585] pnp 00:01: [mem 0xfed1c000-0xfed1ffff]
[    0.245595] pnp 00:01: [mem 0xfed14000-0xfed17fff]
[    0.245606] pnp 00:01: [mem 0xfed18000-0xfed18fff]
[    0.245616] pnp 00:01: [mem 0xfed19000-0xfed19fff]
[    0.245627] pnp 00:01: [mem 0xfec00000-0xfec00fff]
[    0.245638] pnp 00:01: [mem 0xfee00000-0xfee00fff]
[    0.245687] pnp 00:01: disabling [io  0x164e-0x164f] because it overlaps 0000:00:1c.0 BAR 7 [io  0x1000-0x1fff]
[    0.245883] system 00:01: [io  0x0600-0x060f] has been reserved
[    0.245897] system 00:01: [io  0x0610] has been reserved
[    0.245910] system 00:01: [io  0x0800-0x080f] has been reserved
[    0.245923] system 00:01: [io  0x0810-0x0817] has been reserved
[    0.245936] system 00:01: [io  0x0a00-0x0a01] has been reserved
[    0.245949] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.245962] system 00:01: [io  0x0500-0x053f] has been reserved
[    0.245978] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
[    0.245992] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.246035] system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
[    0.246049] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.246063] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.246077] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.246091] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.246113] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.246167] pnp 00:02: [io  0x0000-0x001f]
[    0.246178] pnp 00:02: [io  0x0081-0x0091]
[    0.246188] pnp 00:02: [io  0x0093-0x009f]
[    0.246198] pnp 00:02: [io  0x00c0-0x00df]
[    0.246208] pnp 00:02: [dma 4]
[    0.246324] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.246432] pnp 00:03: [io  0x0070-0x0077]
[    0.246555] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.246835] pnp 00:04: [irq 0 disabled]
[    0.246864] pnp 00:04: [irq 8]
[    0.246876] pnp 00:04: [mem 0xfed00000-0xfed003ff]
[    0.246996] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.247081] pnp 00:05: [io  0x00f0]
[    0.247103] pnp 00:05: [irq 13]
[    0.247223] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.247280] pnp 00:06: [mem 0xff800000-0xffffffff]
[    0.247399] pnp 00:06: Plug and Play ACPI device, IDs INT0800 (active)
[    0.248728] pnp 00:07: [io  0x0060]
[    0.248736] pnp 00:07: [io  0x0064]
[    0.248755] pnp 00:07: [irq 1]
[    0.248865] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.248919] pnp 00:08: [irq 12]
[    0.248996] pnp 00:08: Plug and Play ACPI device, IDs PNP0f13 (active)
[    0.249286] pnp: PnP ACPI: found 9 devices
[    0.249292] ACPI: ACPI bus type pnp unregistered
[    0.293566] pci 0000:01:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref]
[    0.293617] pci 0000:01:00.0: BAR 6: assigned [mem 0x90000000-0x9000ffff pref]
[    0.293626] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
[    0.293635] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    0.293647] pci 0000:00:1c.0:   bridge window [mem 0x91000000-0x91ffffff]
[    0.293658] pci 0000:00:1c.0:   bridge window [mem 0x90000000-0x90ffffff 64bit pref]
[    0.293672] pci 0000:00:1e.0: PCI bridge to [bus 02-02]
[    0.293736] pci 0000:00:1e.0: setting latency timer to 64
[    0.293746] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.293753] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.293760] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.293767] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff]
[    0.293774] pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
[    0.293781] pci_bus 0000:01: resource 1 [mem 0x91000000-0x91ffffff]
[    0.293789] pci_bus 0000:01: resource 2 [mem 0x90000000-0x90ffffff 64bit pref]
[    0.293796] pci_bus 0000:02: resource 4 [io  0x0000-0x0cf7]
[    0.293803] pci_bus 0000:02: resource 5 [io  0x0d00-0xffff]
[    0.293810] pci_bus 0000:02: resource 6 [mem 0x000a0000-0x000bffff]
[    0.293817] pci_bus 0000:02: resource 7 [mem 0x80000000-0xfebfffff]
[    0.293918] NET: Registered protocol family 2
[    0.294054] IP route cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.294580] TCP established hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.296437] TCP bind hash table entries: 65536 (order: 8, 1310720 bytes)
[    0.297601] TCP: Hash tables configured (established 262144 bind 65536)
[    0.297610] TCP: reno registered
[    0.297629] UDP hash table entries: 1024 (order: 3, 49152 bytes)
[    0.297680] UDP-Lite hash table entries: 1024 (order: 3, 49152 bytes)
[    0.297909] NET: Registered protocol family 1
[    0.297947] pci 0000:00:02.0: Boot video device
[    0.309120] PCI: CLS 64 bytes, default 64
[    0.309648] Simple Boot Flag at 0x44 set to 0x80
[    0.311578] microcode: CPU0 sig=0x106ca, pf=0x10, revision=0x107
[    0.311596] microcode: CPU1 sig=0x106ca, pf=0x10, revision=0x107
[    0.311624] microcode: CPU2 sig=0x106ca, pf=0x10, revision=0x107
[    0.311649] microcode: CPU3 sig=0x106ca, pf=0x10, revision=0x107
[    0.311774] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.317870] msgmni has been set to 3778
[    0.319219] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.319227] io scheduler noop registered
[    0.319232] io scheduler deadline registered
[    0.319311] io scheduler cfq registered (default)
[    0.319549] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
[    0.319801] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    0.319808] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    0.319819] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    0.319864] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.319927] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.322625] ACPI: AC Adapter [AC] (on-line)
[    0.322896] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[    0.322909] ACPI: Power Button [PWRB]
[    0.323089] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1
[    0.323100] ACPI: Sleep Button [SLPB]
[    0.323244] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
[    0.329134] ACPI: Lid Switch [LID0]
[    0.329329] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    0.329340] ACPI: Power Button [PWRF]
[    0.333126] ACPI: Fan [FAN0] (off)
[    0.335739] ACPI: Fan [FAN1] (off)
[    0.339644] ACPI: Fan [FAN2] (on)
[    0.342360] ACPI: Fan [FAN3] (on)
[    0.344958] ACPI: Fan [FAN4] (on)
[    0.345145] ACPI: Requesting acpi_cpufreq
[    0.349742] ACPI: acpi_idle registered with cpuidle
[    0.371120] thermal LNXTHERM:00: registered as thermal_zone0
[    0.371128] ACPI: Thermal Zone [THRM] (61 C)
[    0.371862] Non-volatile memory driver v1.3
[    0.371996] Linux agpgart interface v0.103
[    0.372136] agpgart-intel 0000:00:00.0: Intel GMA3150 Chipset
[    0.372467] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable
[    0.372882] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
[    0.373249] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x80000000
[    0.373677] tpm_tis tpm_tis: 1.2 TPM (device-id 0xB, rev-id 16)
[    0.384480] ACPI: Battery Slot [BAT1] (battery present)
[    0.519741] console [pstore-1] enabled
[    0.519818] [drm] Initialized drm 1.1.0 20060810
[    0.520666] i915 0000:00:02.0: setting latency timer to 64
[    0.594637] [drm:intel_opregion_setup], graphic opregion physical addr: 0x7f58c018
[    0.594693] [drm:intel_opregion_setup], Public ACPI methods supported
[    0.594704] [drm:intel_opregion_setup], SWSCI supported
[    0.594714] [drm:intel_opregion_setup], ASLE supported
[    0.594794] i915 0000:00:02.0: irq 41 for MSI/MSI-X
[    0.594828] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    0.594844] [drm] Driver supports precise vblank timestamp query.
[    0.594871] [drm:intel_parse_bios], Using VBT from OpRegion: $VBT PINEVIEW       d
[    0.594884] [drm:parse_general_features], BDB_GENERAL_FEATURES int_tv_support 0 int_crt_support 1 lvds_use_ssc 0 lvds_ssc_freq 100 display_clock_mode 0
[    0.594901] [drm:parse_general_definitions], crt_ddc_bus_pin: 2
[    0.594917] [drm:parse_lfp_panel_data], Found panel mode in BIOS VBT tables:
[    0.594928] [drm:drm_mode_debug_printmodeline], Modeline 0:"1280x800" 0 70700 1280 1296 1344 1440 800 801 804 818 0x8 0xa
[    0.594953] [drm:parse_sdvo_panel_data], Found SDVO panel mode in BIOS VBT tables:
[    0.594965] [drm:drm_mode_debug_printmodeline], Modeline 0:"1600x1200" 0 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x8 0xa
[    0.594986] [drm:parse_sdvo_device_mapping], No SDVO device info is found in VBT
[    0.595043] [drm:intel_dsm_pci_probe], no _DSM method for intel device
[    0.595088] [drm:intel_modeset_init], 2 display pipes available.
[    0.595115] [drm:intel_crtc_init], swapping pipes & planes for FBC
[    0.646091] [drm:intel_wait_for_vblank], vblank wait timed out
[    0.646106] [drm:intel_modeset_init], plane 0 init failed: -19
[    0.646129] [drm:intel_crtc_init], swapping pipes & planes for FBC
[    0.646141] [drm:intel_modeset_init], plane 1 init failed: -19
[    0.659580] [drm] Adding LVDS downclock mode
[    0.659597] [drm:intel_find_lvds_downclock], LVDS downclock is found in EDID. Normal clock 70700Khz, downclock 56428Khz
[    0.659716] [drm:intel_panel_get_backlight], get backlight PWM = 13046
[    0.659730] [drm:intel_panel_get_max_backlight], max backlight PWM = 13046
[    0.659819] [drm:intel_panel_get_backlight], get backlight PWM = 13046
[    0.659935] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    0.911170] [drm:i915_get_vblank_counter], trying to get vblank count for disabled pipe A
[    0.911186] [drm:i915_get_vblank_timestamp], crtc 0 is disabled
[    0.911200] [drm:i915_get_vblank_counter], trying to get vblank count for disabled pipe A
[    0.911217] [drm:intel_update_fbc], 
[    0.911229] [drm:pineview_update_wm], Self-refresh is disabled
[    0.911244] [drm:i915_get_vblank_timestamp], crtc 1 is disabled
[    0.926267] [drm:intel_update_fbc], 
[    0.926278] [drm:pineview_update_wm], Self-refresh is disabled
[    0.937654] [drm:init_status_page], render ring hws offset: 0x00000000
[    0.938082] [drm] initialized overlay support
[    0.938176] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    0.938202] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1]
[    0.938232] [drm] Adding LVDS downclock mode
[    0.938251] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1] probed modes :
[    0.938265] [drm:drm_mode_debug_printmodeline], Modeline 14:"1280x800" 60 70700 1280 1296 1344 1440 800 801 804 818 0x48 0xa
[    0.938287] [drm:drm_mode_debug_printmodeline], Modeline 15:"1280x800" 48 56428 1280 1296 1344 1440 800 801 804 818 0x40 0xa
[    0.938309] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1]
[    0.950987] [drm:intel_crt_detect], CRT detected via hotplug
[    0.964396] [drm:drm_edid_to_eld], ELD: no CEA Extension found
[    0.964432] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1] probed modes :
[    0.964445] [drm:drm_mode_debug_printmodeline], Modeline 9:"2048x1280" 60 174250 2048 2096 2128 2208 1280 1283 1289 1317 0x48 0x9
[    0.964467] [drm:drm_mode_debug_printmodeline], Modeline 21:"2048x1152" 60 198022 2048 2184 2408 2768 1152 1153 1156 1192 0x0 0x6
[    0.964488] [drm:drm_mode_debug_printmodeline], Modeline 20:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[    0.964509] [drm:drm_mode_debug_printmodeline], Modeline 19:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[    0.964530] [drm:drm_mode_debug_printmodeline], Modeline 26:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[    0.964551] [drm:drm_mode_debug_printmodeline], Modeline 18:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[    0.964572] [drm:drm_mode_debug_printmodeline], Modeline 17:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x9
[    0.964592] [drm:drm_mode_debug_printmodeline], Modeline 16:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[    0.964613] [drm:drm_mode_debug_printmodeline], Modeline 27:"1024x768" 75 78800 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[    0.964634] [drm:drm_mode_debug_printmodeline], Modeline 28:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[    0.964654] [drm:drm_mode_debug_printmodeline], Modeline 29:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[    0.964675] [drm:drm_mode_debug_printmodeline], Modeline 22:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[    0.964695] [drm:drm_mode_debug_printmodeline], Modeline 23:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[    0.964715] [drm:drm_mode_debug_printmodeline], Modeline 24:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[    0.964735] [drm:drm_mode_debug_printmodeline], Modeline 25:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[    0.964755] [drm:drm_setup_crtcs], 
[    0.964766] [drm:drm_enable_connectors], connector 5 enabled? yes
[    0.964777] [drm:drm_enable_connectors], connector 12 enabled? yes
[    0.964788] [drm:drm_target_preferred], looking for cmdline mode on connector 5
[    0.964800] [drm:drm_target_preferred], looking for preferred mode on connector 5
[    0.964812] [drm:drm_target_preferred], found mode 1280x800
[    0.964822] [drm:drm_target_preferred], looking for cmdline mode on connector 12
[    0.964833] [drm:drm_target_preferred], looking for preferred mode on connector 12
[    0.964845] [drm:drm_target_preferred], found mode 2048x1280
[    0.964855] [drm:drm_setup_crtcs], picking CRTCs for 4096x4096 config
[    0.964870] [drm:drm_setup_crtcs], desired mode 1280x800 set on crtc 4
[    0.964884] [drm:drm_setup_crtcs], desired mode 2048x1280 set on crtc 3
[    1.000419] [drm:intelfb_create], allocated 2048x1280 fb: 0x00030000, bo f69cca00
[    1.000681] fbcon: inteldrmfb (fb0) is primary device
[    1.000831] [drm:drm_crtc_helper_set_config], 
[    1.000840] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:32] #connectors=1 (x y) (0 0)
[    1.000863] [drm:drm_crtc_helper_set_config], crtc has no fb, full mode set
[    1.000873] [drm:drm_crtc_helper_set_config], modes are different, full mode set
[    1.000882] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[    1.000897] [drm:drm_mode_debug_printmodeline], Modeline 31:"2048x1280" 60 174250 2048 2096 2128 2208 1280 1283 1289 1317 0x48 0x9
[    1.000917] [drm:drm_crtc_helper_set_config], encoder changed, full mode switch
[    1.000926] [drm:drm_crtc_helper_set_config], crtc changed, full mode switch
[    1.000936] [drm:drm_crtc_helper_set_config], [CONNECTOR:12:VGA-1] to [CRTC:3]
[    1.000948] [drm:drm_crtc_helper_set_config], attempting to set mode from userspace
[    1.000957] [drm:drm_mode_debug_printmodeline], Modeline 31:"2048x1280" 60 174250 2048 2096 2128 2208 1280 1283 1289 1317 0x48 0x9
[    1.000985] [drm:drm_crtc_helper_set_mode], [CRTC:3]
[    1.000997] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    1.002855] [drm:i9xx_crtc_mode_set], Mode for pipe A:
[    1.002864] [drm:drm_mode_debug_printmodeline], Modeline 31:"2048x1280" 60 174250 2048 2096 2128 2208 1280 1283 1289 1317 0x48 0x9
[    1.036659] [drm:i9xx_update_plane], Writing base 00030000 00000000 0 0 8192
[    1.036674] [drm:intel_update_fbc], 
[    1.036685] [drm:intel_calculate_wm], FIFO entries required for mode: 71
[    1.036694] [drm:intel_calculate_wm], FIFO watermark level: 431
[    1.036704] [drm:pineview_update_wm], DSPFW1 register is d7830f0f
[    1.036712] [drm:intel_calculate_wm], FIFO entries required for mode: 77
[    1.036721] [drm:intel_calculate_wm], FIFO watermark level: 430
[    1.036730] [drm:intel_calculate_wm], FIFO entries required for mode: 397
[    1.036739] [drm:intel_calculate_wm], FIFO watermark level: 105
[    1.036748] [drm:intel_calculate_wm], FIFO entries required for mode: 403
[    1.036757] [drm:intel_calculate_wm], FIFO watermark level: 104
[    1.036766] [drm:pineview_update_wm], DSPFW3 register is 3f3f0069
[    1.036775] [drm:pineview_update_wm], Self-refresh is enabled
[    1.036786] [drm:drm_crtc_helper_set_mode], [ENCODER:13:DAC-13] set [MODE:31:2048x1280]
[    1.036799] [drm:intel_calculate_wm], FIFO entries required for mode: 71
[    1.036808] [drm:intel_calculate_wm], FIFO watermark level: 431
[    1.036817] [drm:pineview_update_wm], DSPFW1 register is d7830f0f
[    1.036826] [drm:intel_calculate_wm], FIFO entries required for mode: 77
[    1.036834] [drm:intel_calculate_wm], FIFO watermark level: 430
[    1.036844] [drm:intel_calculate_wm], FIFO entries required for mode: 397
[    1.036852] [drm:intel_calculate_wm], FIFO watermark level: 105
[    1.036862] [drm:intel_calculate_wm], FIFO entries required for mode: 403
[    1.036870] [drm:intel_calculate_wm], FIFO watermark level: 104
[    1.036879] [drm:pineview_update_wm], DSPFW3 register is 7f3f0069
[    1.036888] [drm:pineview_update_wm], Self-refresh is enabled
[    1.037435] [drm:intel_update_fbc], 
[    1.037448] [drm:drm_crtc_helper_set_config], Setting connector DPMS state to on
[    1.037458] [drm:drm_crtc_helper_set_config], 	[CONNECTOR:12:VGA-1] set DPMS on
[    1.037469] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    1.037485] [drm:drm_crtc_helper_set_config], 
[    1.037492] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:32] #connectors=1 (x y) (0 0)
[    1.037513] [drm:drm_crtc_helper_set_config], crtc has no fb, full mode set
[    1.037522] [drm:drm_crtc_helper_set_config], modes are different, full mode set
[    1.037531] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[    1.037545] [drm:drm_mode_debug_printmodeline], Modeline 30:"1280x800" 60 70700 1280 1296 1344 1440 800 801 804 818 0x48 0xa
[    1.037564] [drm:drm_crtc_helper_set_config], encoder changed, full mode switch
[    1.037573] [drm:drm_crtc_helper_set_config], crtc changed, full mode switch
[    1.037583] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    1.037594] [drm:drm_crtc_helper_set_config], [CONNECTOR:12:VGA-1] to [CRTC:3]
[    1.037605] [drm:drm_crtc_helper_set_config], attempting to set mode from userspace
[    1.037613] [drm:drm_mode_debug_printmodeline], Modeline 30:"1280x800" 60 70700 1280 1296 1344 1440 800 801 804 818 0x48 0xa
[    1.037638] [drm:drm_crtc_helper_set_mode], [CRTC:4]
[    1.037647] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    1.041309] [drm:i9xx_crtc_mode_set], Mode for pipe B:
[    1.041318] [drm:drm_mode_debug_printmodeline], Modeline 30:"1280x800" 60 70700 1280 1296 1344 1440 800 801 804 818 0x48 0xa
[    1.075115] [drm:i9xx_update_plane], Writing base 00030000 00000000 0 0 8192
[    1.075130] [drm:intel_update_fbc], 
[    1.075141] [drm:pineview_update_wm], Self-refresh is disabled
[    1.075152] [drm:drm_crtc_helper_set_mode], [ENCODER:6:LVDS-6] set [MODE:30:1280x800]
[    1.075164] [drm:pineview_update_wm], Self-refresh is disabled
[    1.075722] [drm:intel_update_fbc], 
[    1.075730] [drm:intel_lvds_enable], applying panel-fitter: 8, 0
[    1.368024] [drm:intel_panel_actually_set_backlight], set backlight PWM = 13046
[    1.368041] [drm:drm_crtc_helper_set_config], Setting connector DPMS state to on
[    1.368051] [drm:drm_crtc_helper_set_config], 	[CONNECTOR:5:LVDS-1] set DPMS on
[    1.368203] [drm:drm_crtc_helper_set_config], 
[    1.368210] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:32] #connectors=1 (x y) (0 0)
[    1.368235] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    1.368247] [drm:drm_crtc_helper_set_config], [CONNECTOR:12:VGA-1] to [CRTC:3]
[    1.368258] [drm:drm_crtc_helper_set_config], 
[    1.368265] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:32] #connectors=1 (x y) (0 0)
[    1.368287] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    1.368299] [drm:drm_crtc_helper_set_config], [CONNECTOR:12:VGA-1] to [CRTC:3]
[    1.389035] Console: switching to colour frame buffer device 160x50
[    1.389053] [drm:drm_crtc_helper_set_config], 
[    1.389060] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:32] #connectors=1 (x y) (0 0)
[    1.389084] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    1.389096] [drm:drm_crtc_helper_set_config], [CONNECTOR:12:VGA-1] to [CRTC:3]
[    1.389107] [drm:drm_crtc_helper_set_config], 
[    1.389114] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:32] #connectors=1 (x y) (0 0)
[    1.389135] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    1.389147] [drm:drm_crtc_helper_set_config], [CONNECTOR:12:VGA-1] to [CRTC:3]
[    1.409971] fb0: inteldrmfb frame buffer device
[    1.409978] drm: registered panic notifier
[    1.413670] [drm:i915_driver_irq_handler], pipe A underrun
[    1.413691] [drm:intel_panel_get_max_backlight], max backlight PWM = 13046
[    1.413705] [drm:intel_panel_actually_set_backlight], set backlight PWM = 13046
[    1.414088] [drm:intel_panel_get_max_backlight], max backlight PWM = 13046
[    1.414106] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7827
[    1.414374] acpi device:2c: registered as cooling_device9
[    1.415060] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input4
[    1.415092] ACPI: Video Device [OVGA] (multi-head: yes  rom: no  post: no)
[    1.415168] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    1.418613] loop: module loaded
[    1.418825] ahci 0000:00:1f.2: version 3.0
[    1.418981] ahci 0000:00:1f.2: irq 42 for MSI/MSI-X
[    1.419127] ahci: SSS flag set, parallel bus scan disabled
[    1.419194] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0x1 impl SATA mode
[    1.419217] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part 
[    1.419239] ahci 0000:00:1f.2: setting latency timer to 64
[    1.420934] scsi0 : ahci
[    1.421314] scsi1 : ahci
[    1.421625] scsi2 : ahci
[    1.421935] scsi3 : ahci
[    1.422775] ata1: SATA max UDMA/133 abar m1024@0x92204000 port 0x92204100 irq 42
[    1.422794] ata2: DUMMY
[    1.422804] ata3: DUMMY
[    1.422813] ata4: DUMMY
[    1.423451] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.423564] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    1.423578] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    1.423827] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    1.423897] ehci_hcd 0000:00:1d.7: using broken periodic workaround
[    1.423930] ehci_hcd 0000:00:1d.7: debug port 1
[    1.427835] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
[    1.427900] ehci_hcd 0000:00:1d.7: irq 16, io mem 0x92205000
[    1.433051] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    1.433159] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.433177] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.433194] usb usb1: Product: EHCI Host Controller
[    1.433208] usb usb1: Manufacturer: Linux 3.4.0 ehci_hcd
[    1.433222] usb usb1: SerialNumber: 0000:00:1d.7
[    1.433648] hub 1-0:1.0: USB hub found
[    1.433673] hub 1-0:1.0: 8 ports detected
[    1.433968] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.434084] uhci_hcd: USB Universal Host Controller Interface driver
[    1.434179] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    1.434193] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    1.434399] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    1.434466] uhci_hcd 0000:00:1d.0: irq 16, io base 0x00002080
[    1.434605] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    1.434623] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.434640] usb usb2: Product: UHCI Host Controller
[    1.434654] usb usb2: Manufacturer: Linux 3.4.0 uhci_hcd
[    1.434667] usb usb2: SerialNumber: 0000:00:1d.0
[    1.435089] hub 2-0:1.0: USB hub found
[    1.435113] hub 2-0:1.0: 2 ports detected
[    1.435363] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    1.435377] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    1.435574] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    1.435671] uhci_hcd 0000:00:1d.1: irq 17, io base 0x00002060
[    1.435807] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    1.435825] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.435842] usb usb3: Product: UHCI Host Controller
[    1.435855] usb usb3: Manufacturer: Linux 3.4.0 uhci_hcd
[    1.435869] usb usb3: SerialNumber: 0000:00:1d.1
[    1.436309] hub 3-0:1.0: USB hub found
[    1.436333] hub 3-0:1.0: 2 ports detected
[    1.436584] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    1.436598] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    1.436811] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    1.436916] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00002040
[    1.437089] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    1.437108] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.437125] usb usb4: Product: UHCI Host Controller
[    1.437138] usb usb4: Manufacturer: Linux 3.4.0 uhci_hcd
[    1.437152] usb usb4: SerialNumber: 0000:00:1d.2
[    1.437537] hub 4-0:1.0: USB hub found
[    1.437561] hub 4-0:1.0: 2 ports detected
[    1.437817] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[    1.437831] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    1.438062] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[    1.438163] uhci_hcd 0000:00:1d.3: irq 19, io base 0x00002020
[    1.438300] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    1.438318] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.438335] usb usb5: Product: UHCI Host Controller
[    1.438348] usb usb5: Manufacturer: Linux 3.4.0 uhci_hcd
[    1.438362] usb usb5: SerialNumber: 0000:00:1d.3
[    1.438751] hub 5-0:1.0: USB hub found
[    1.438775] hub 5-0:1.0: 2 ports detected
[    1.439208] usbcore: registered new interface driver cdc_acm
[    1.439222] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    1.439238] Initializing USB Mass Storage driver...
[    1.439372] usbcore: registered new interface driver usb-storage
[    1.439386] USB Mass Storage support registered.
[    1.439519] usbcore: registered new interface driver libusual
[    1.439579] usbcore: registered new interface driver ums-realtek
[    1.439698] usbcore: registered new interface driver usbserial
[    1.439757] usbcore: registered new interface driver usbserial_generic
[    1.439801] USB Serial support registered for generic
[    1.439819] usbserial: USB Serial Driver core
[    1.439983] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUE] at 0x60,0x64 irq 1,12
[    1.451272] i8042: Detected active multiplexing controller, rev 1.1
[    1.457439] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.457464] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    1.457561] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    1.457630] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    1.457696] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    1.459063] rtc_cmos 00:03: RTC can wake from S4
[    1.459344] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[    1.459410] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    1.459731] coretemp coretemp.0: Using relative temperature scale!
[    1.459777] coretemp coretemp.0: Using relative temperature scale!
[    1.460142] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[    1.460331] device-mapper: verity-chromeos: dm-verity-chromeos registered
[    1.460343] device-mapper: bootcache: version 0.1.0 loaded
[    1.460585] cpuidle: using governor ladder
[    1.460804] cpuidle: using governor menu
[    1.460960] usbcore: registered new interface driver usbhid
[    1.460969] usbhid: USB HID core driver
[    1.462230] Netfilter messages via NETLINK v0.30.
[    1.462276] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[    1.462567] ctnetlink v0.93: registering with nfnetlink.
[    1.462829] ip_tables: (C) 2000-2006 Netfilter Core Team
[    1.462897] TCP: cubic registered
[    1.462904] Initializing XFRM netlink socket
[    1.463237] NET: Registered protocol family 10
[    1.463662] NET: Registered protocol family 17
[    1.464152] Using IPI No-Shortcut mode
[    1.465250]   Magic number: 1:516:353
[    1.467452] ALSA device list:
[    1.467462]   No soundcards found.
[    1.467501] Warning: unable to open an initial console.
[    1.478296] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input5
[    1.479688] atkbd serio1: GETID failed
[    1.480978] atkbd serio1: atkbd: SETLEDS failed
[    1.480995] atkbd serio1: probe failed
[    1.481919] atkbd serio2: GETID failed
[    1.482882] atkbd serio2: atkbd: SETLEDS failed
[    1.482901] atkbd serio2: probe failed
[    1.483868] atkbd serio3: GETID failed
[    1.485047] atkbd serio3: atkbd: SETLEDS failed
[    1.485057] atkbd serio3: probe failed
[    1.490452] atkbd serio4: bad keyboard id 0
[    1.490467] atkbd serio4: probe failed
[    1.491393] psmouse serio1: GETID probe failed, retrying...
[    1.494192] psmouse serio2: GETID probe failed, retrying...
[    1.497213] psmouse serio3: GETID probe failed, retrying...
[    1.533141] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.534311] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[    1.534809] ata1.00: ATA-8: SanDisk SSD P4 16GB, SSD 8.13, max UDMA/133
[    1.534823] ata1.00: 31277232 sectors, multi 1: LBA48 
[    1.535797] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[    1.535932] ata1.00: configured for UDMA/133
[    1.536457] scsi 0:0:0:0: Direct-Access     ATA      SanDisk SSD P4 1 SSD  PQ: 0 ANSI: 5
[    1.537055] sd 0:0:0:0: [sda] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
[    1.537501] sd 0:0:0:0: [sda] Write Protect is off
[    1.537520] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.537646] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.543685]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12
[    1.547111] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.547170] device-mapper: init: attempting early device configuration.
[    1.547847] device-mapper: init: adding target '0 2097152 verity payload=ROOT_DEV hashtree=HASH_DEV hashstart=2097152 alg=sha1 root_hexdigest=4bdd5a1c362be77f66f5e977733b19c6c571580a salt=4f025fe32966bfc403d183a33b12e560fd60a5b2a4639cc5e41f8dec5ced8502'
[    1.547884] device-mapper: verity: Argument 0: 'payload=ROOT_DEV'
[    1.547895] device-mapper: verity: Argument 1: 'hashtree=HASH_DEV'
[    1.547905] device-mapper: verity: Argument 2: 'hashstart=2097152'
[    1.547916] device-mapper: verity: Argument 3: 'alg=sha1'
[    1.547925] device-mapper: verity: Argument 4: 'root_hexdigest=4bdd5a1c362be77f66f5e977733b19c6c571580a'
[    1.547938] device-mapper: verity: Argument 5: 'salt=4f025fe32966bfc403d183a33b12e560fd60a5b2a4639cc5e41f8dec5ced8502'
[    1.735120] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[    1.738079] [drm:intel_decrease_pllclock], downclocking LVDS
[    1.776090] [drm:intel_decrease_pllclock], downclocking LVDS
[    1.851140] usb 1-1: New USB device found, idVendor=13fe, idProduct=5200
[    1.851160] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.851178] usb 1-1: Product: Patriot Memory
[    1.851191] usb 1-1: Manufacturer:         
[    1.851203] usb 1-1: SerialNumber: 07013492D5655B43
[    1.852151] scsi4 : usb-storage 1-1:1.0
[    1.954130] usb 1-2: new high-speed USB device number 3 using ehci_hcd
[    2.048080] device-mapper: table: 254:0: verity: Data device lookup failed
[    2.048100] device-mapper: init: starting dm-0 (vroot) failed
[    2.048832] EXT4-fs (sda3): couldn't mount as ext3 due to feature incompatibilities
[    2.054648] EXT4-fs (sda3): mounting ext2 file system using the ext4 subsystem
[    2.058443] EXT4-fs (sda3): mounted filesystem without journal. Opts: (null)
[    2.058493] VFS: Mounted root (ext2 filesystem) readonly on device 8:3.
[    2.061734] devtmpfs: mounted
[    2.061983] Freeing unused kernel memory: 460k freed
[    2.062717] Write protecting the kernel text: 3852k
[    2.063284] Write protecting the kernel read-only data: 1444k
[    2.063301] NX-protecting the kernel data: 2292k
[    2.070053] usb 1-2: config 1 has an invalid interface number: 1 but max is 0
[    2.070077] usb 1-2: config 1 has no interface number 0
[    2.071886] usb 1-2: New USB device found, idVendor=05c6, idProduct=9244
[    2.071912] usb 1-2: New USB device strings: Mfr=3, Product=2, SerialNumber=0
[    2.071923] usb 1-2: Product: Qualcomm Gobi 2000
[    2.071932] usb 1-2: Manufacturer: Qualcomm Incorporated
[    2.176148] usb 1-4: new high-speed USB device number 4 using ehci_hcd
[    2.254447] udevd[80]: starting version 171
[    2.290520] usb 1-4: New USB device found, idVendor=0409, idProduct=005a
[    2.290536] usb 1-4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.291088] hub 1-4:1.0: USB hub found
[    2.291242] hub 1-4:1.0: 4 ports detected
[    2.323157] [drm:intel_panel_actually_set_backlight], set backlight PWM = 5218
[    2.338561] [drm:i915_driver_open], 
[    2.338624] [drm:drm_crtc_helper_set_config], 
[    2.338633] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:32] #connectors=1 (x y) (0 0)
[    2.338661] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    2.338673] [drm:drm_crtc_helper_set_config], [CONNECTOR:12:VGA-1] to [CRTC:3]
[    2.338685] [drm:drm_crtc_helper_set_config], 
[    2.338693] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:32] #connectors=1 (x y) (0 0)
[    2.338717] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    2.338729] [drm:drm_crtc_helper_set_config], [CONNECTOR:12:VGA-1] to [CRTC:3]
[    2.338777] [drm:i915_driver_open], 
[    2.338807] [drm:drm_crtc_helper_set_config], 
[    2.338815] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:32] #connectors=1 (x y) (0 0)
[    2.338838] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    2.338849] [drm:drm_crtc_helper_set_config], [CONNECTOR:12:VGA-1] to [CRTC:3]
[    2.338861] [drm:drm_crtc_helper_set_config], 
[    2.338869] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:32] #connectors=1 (x y) (0 0)
[    2.338892] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    2.338904] [drm:drm_crtc_helper_set_config], [CONNECTOR:12:VGA-1] to [CRTC:3]
[    2.338945] [drm:i915_driver_open], 
[    2.338993] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[2] ENCODERS[2]
[    2.339123] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[2] ENCODERS[2]
[    2.339154] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    2.339163] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1]
[    2.339188] [drm] Adding LVDS downclock mode
[    2.339204] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1] probed modes :
[    2.339213] [drm:drm_mode_debug_printmodeline], Modeline 14:"1280x800" 60 70700 1280 1296 1344 1440 800 801 804 818 0x48 0xa
[    2.339226] [drm:drm_mode_debug_printmodeline], Modeline 15:"1280x800" 48 56428 1280 1296 1344 1440 800 801 804 818 0x40 0xa
[    2.339243] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    2.339267] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    2.339275] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1]
[    2.339290] [drm] Adding LVDS downclock mode
[    2.339301] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1] probed modes :
[    2.339309] [drm:drm_mode_debug_printmodeline], Modeline 14:"1280x800" 60 70700 1280 1296 1344 1440 800 801 804 818 0x48 0xa
[    2.339322] [drm:drm_mode_debug_printmodeline], Modeline 15:"1280x800" 48 56428 1280 1296 1344 1440 800 801 804 818 0x40 0xa
[    2.339337] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    2.339351] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    2.339359] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1]
[    2.354197] [drm:intel_crt_detect], CRT detected via hotplug
[    2.367735] [drm:drm_edid_to_eld], ELD: no CEA Extension found
[    2.367786] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1] probed modes :
[    2.367799] [drm:drm_mode_debug_printmodeline], Modeline 9:"2048x1280" 60 174250 2048 2096 2128 2208 1280 1283 1289 1317 0x48 0x9
[    2.367818] [drm:drm_mode_debug_printmodeline], Modeline 21:"2048x1152" 60 198022 2048 2184 2408 2768 1152 1153 1156 1192 0x0 0x6
[    2.367836] [drm:drm_mode_debug_printmodeline], Modeline 20:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[    2.367855] [drm:drm_mode_debug_printmodeline], Modeline 19:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[    2.367873] [drm:drm_mode_debug_printmodeline], Modeline 26:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[    2.367891] [drm:drm_mode_debug_printmodeline], Modeline 18:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[    2.367909] [drm:drm_mode_debug_printmodeline], Modeline 17:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x9
[    2.367926] [drm:drm_mode_debug_printmodeline], Modeline 16:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[    2.367944] [drm:drm_mode_debug_printmodeline], Modeline 27:"1024x768" 75 78800 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[    2.367963] [drm:drm_mode_debug_printmodeline], Modeline 28:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[    2.367981] [drm:drm_mode_debug_printmodeline], Modeline 29:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[    2.367999] [drm:drm_mode_debug_printmodeline], Modeline 22:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[    2.368055] [drm:drm_mode_debug_printmodeline], Modeline 23:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[    2.368072] [drm:drm_mode_debug_printmodeline], Modeline 24:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[    2.368089] [drm:drm_mode_debug_printmodeline], Modeline 25:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[    2.368133] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    2.368183] [drm:drm_mode_setcrtc], [CRTC:3]
[    2.368194] [drm:drm_crtc_helper_set_config], 
[    2.368203] [drm:drm_crtc_helper_set_config], [CRTC:3] [NOFB]
[    2.368230] [drm:i915_get_vblank_timestamp], crtc 0 is disabled
[    2.390867] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: commit=600
[    2.395563] [drm:intel_update_fbc], 
[    2.395578] [drm:intel_calculate_wm], FIFO entries required for mode: 29
[    2.395589] [drm:intel_calculate_wm], FIFO watermark level: 473
[    2.395599] [drm:pineview_update_wm], DSPFW1 register is ec830f0f
[    2.395609] [drm:intel_calculate_wm], FIFO entries required for mode: 31
[    2.395619] [drm:intel_calculate_wm], FIFO watermark level: 476
[    2.395630] [drm:intel_calculate_wm], FIFO entries required for mode: 160
[    2.395639] [drm:intel_calculate_wm], FIFO watermark level: 342
[    2.395649] [drm:intel_calculate_wm], FIFO entries required for mode: 162
[    2.395658] [drm:intel_calculate_wm], FIFO watermark level: 345
[    2.395667] [drm:pineview_update_wm], DSPFW3 register is 3f3f0156
[    2.395677] [drm:pineview_update_wm], Self-refresh is enabled
[    2.395811] usb 1-5: new high-speed USB device number 5 using ehci_hcd
[    2.395947] [drm:drm_crtc_helper_set_config], 
[    2.395957] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:32] #connectors=1 (x y) (0 0)
[    2.395987] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    2.401535] EXT4-fs (sda8): mounted filesystem with ordered data mode. Opts: commit=600
[    2.424638] [drm:i915_driver_open], 
[    2.424696] [drm:drm_crtc_helper_set_config], 
[    2.424706] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:32] #connectors=1 (x y) (0 0)
[    2.424736] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    2.424780] [drm:i915_driver_open], 
[    2.424811] [drm:drm_crtc_helper_set_config], 
[    2.424820] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:32] #connectors=1 (x y) (0 0)
[    2.424845] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    2.424888] [drm:i915_driver_open], 
[    2.424933] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[2] ENCODERS[2]
[    2.424950] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[2] ENCODERS[2]
[    2.425201] [drm:drm_crtc_helper_set_config], 
[    2.425211] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:32] #connectors=1 (x y) (0 0)
[    2.425237] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    2.425333] [drm:i915_driver_open], 
[    2.425367] [drm:drm_crtc_helper_set_config], 
[    2.425377] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:32] #connectors=1 (x y) (0 0)
[    2.425402] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    2.425444] [drm:i915_driver_open], 
[    2.425475] [drm:drm_crtc_helper_set_config], 
[    2.425484] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:32] #connectors=1 (x y) (0 0)
[    2.425509] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    2.425551] [drm:i915_driver_open], 
[    2.425583] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[2] ENCODERS[2]
[    2.425599] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[2] ENCODERS[2]
[    2.425618] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    2.425630] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1]
[    2.425662] [drm] Adding LVDS downclock mode
[    2.425683] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1] probed modes :
[    2.425695] [drm:drm_mode_debug_printmodeline], Modeline 14:"1280x800" 60 70700 1280 1296 1344 1440 800 801 804 818 0x48 0xa
[    2.425714] [drm:drm_mode_debug_printmodeline], Modeline 15:"1280x800" 48 56428 1280 1296 1344 1440 800 801 804 818 0x40 0xa
[    2.425737] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    2.425769] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    2.425780] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1]
[    2.425802] [drm] Adding LVDS downclock mode
[    2.425820] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1] probed modes :
[    2.425830] [drm:drm_mode_debug_printmodeline], Modeline 14:"1280x800" 60 70700 1280 1296 1344 1440 800 801 804 818 0x48 0xa
[    2.425848] [drm:drm_mode_debug_printmodeline], Modeline 15:"1280x800" 48 56428 1280 1296 1344 1440 800 801 804 818 0x40 0xa
[    2.425871] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    2.425892] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    2.425904] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1]
[    2.438579] [drm:intel_crt_detect], CRT detected via hotplug
[    2.452091] [drm:drm_edid_to_eld], ELD: no CEA Extension found
[    2.452131] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1] probed modes :
[    2.452141] [drm:drm_mode_debug_printmodeline], Modeline 9:"2048x1280" 60 174250 2048 2096 2128 2208 1280 1283 1289 1317 0x48 0x9
[    2.452155] [drm:drm_mode_debug_printmodeline], Modeline 21:"2048x1152" 60 198022 2048 2184 2408 2768 1152 1153 1156 1192 0x0 0x6
[    2.452168] [drm:drm_mode_debug_printmodeline], Modeline 20:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[    2.452181] [drm:drm_mode_debug_printmodeline], Modeline 19:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[    2.452193] [drm:drm_mode_debug_printmodeline], Modeline 26:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[    2.452206] [drm:drm_mode_debug_printmodeline], Modeline 18:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[    2.452219] [drm:drm_mode_debug_printmodeline], Modeline 17:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x9
[    2.452232] [drm:drm_mode_debug_printmodeline], Modeline 16:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[    2.452245] [drm:drm_mode_debug_printmodeline], Modeline 27:"1024x768" 75 78800 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[    2.452257] [drm:drm_mode_debug_printmodeline], Modeline 28:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[    2.452270] [drm:drm_mode_debug_printmodeline], Modeline 29:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[    2.452283] [drm:drm_mode_debug_printmodeline], Modeline 22:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[    2.452295] [drm:drm_mode_debug_printmodeline], Modeline 23:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[    2.452308] [drm:drm_mode_debug_printmodeline], Modeline 24:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[    2.452320] [drm:drm_mode_debug_printmodeline], Modeline 25:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[    2.452355] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    2.452424] [drm:drm_crtc_helper_set_config], 
[    2.452431] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:32] #connectors=1 (x y) (0 0)
[    2.452450] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    2.467386] psmouse serio4: synaptics: Touchpad model: 1, fw: 8.0, id: 0x1e2b1, caps: 0xd00223/0x840300/0x120c00, board id: 1724, fw id: 825392
[    2.520211] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input6
[    2.529958] Chromium OS LSM: init_module locked module="/lib/modules/3.4.0/kernel/drivers/input/joydev.ko" pid=178 cmdline="/sbin/modprobe -bv input:b0011v0002p0007e01B1_e0,1,3,k110,145,148,14A,14D,14E,14F,ra0,1,18,1C,2F,35,36,39,3A,mlsfw"
[    2.530136] Chromium OS LSM: dev(8,3): writable
[    2.530165] Chromium OS LSM: module locking can be disabled.
[    2.628659] usb 1-5: New USB device found, idVendor=2232, idProduct=1013
[    2.628684] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.628702] usb 1-5: Product: WebCam SC-13HDO10B39N
[    2.628715] usb 1-5: Manufacturer: Namuga
[    2.842767] Linux video capture interface: v2.00
[    2.849552] uvcvideo: Found UVC 1.00 device WebCam SC-13HDO10B39N (2232:1013)
[    2.855681] scsi 4:0:0:0: Direct-Access              Patriot Memory   PMAP PQ: 0 ANSI: 6
[    2.857589] sd 4:0:0:0: [sdb] 61767680 512-byte logical blocks: (31.6 GB/29.4 GiB)
[    2.859144] sd 4:0:0:0: [sdb] Write Protect is off
[    2.859173] sd 4:0:0:0: [sdb] Mode Sense: 45 00 00 00
[    2.860702] sd 4:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[    2.867465] usbcore: registered new interface driver uvcvideo
[    2.867482] USB Video Class driver (1.1.1)
[    2.875276] usb 1-4.1: new high-speed USB device number 6 using ehci_hcd
[    2.906462] [drm:intel_panel_actually_set_backlight], set backlight PWM = 13046
[    2.978134] usb 1-4.1: New USB device found, idVendor=0b95, idProduct=772a
[    2.978154] usb 1-4.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.978169] usb 1-4.1: Product: AX88x72A
[    2.978179] usb 1-4.1: Manufacturer: ASIX Elec. Corp.
[    2.978189] usb 1-4.1: SerialNumber: 00077E
[    3.053301] usb 1-4.2: new low-speed USB device number 7 using ehci_hcd
[    3.150515] usb 1-4.2: New USB device found, idVendor=0461, idProduct=4e05
[    3.150540] usb 1-4.2: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    3.150558] usb 1-4.2: Product: Samsung USB Keyboard
[    3.177541] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: discard,commit=600
[    3.211267] GPT:partition_entry_array_crc32 values don't match: 0x73cdb9b5 != 0xcb70e24f
[    3.211285] GPT:Primary header thinks Alt. header is not at the end of the disk.
[    3.211299] GPT:4952000 != 61767679
[    3.211306] GPT:Alternate GPT header not at the end of the disk.
[    3.211318] GPT:4952000 != 61767679
[    3.211327] GPT: Use GNU Parted to correct GPT errors.
[    3.211444]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7 sdb8 sdb9 sdb10 sdb11 sdb12
[    3.219420] sd 4:0:0:0: [sdb] Attached SCSI removable disk
[    3.225270] usb 1-4.3: new low-speed USB device number 8 using ehci_hcd
[    3.225481] input: Samsung USB Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-4/1-4.2/1-4.2:1.0/input/input7
[    3.225944] primax 0003:0461:4E05.0001: input,hidraw0: USB HID v1.11 Keyboard [Samsung USB Keyboard] on usb-0000:00:1d.7-4.2/input0
[    3.286158] EXT4-fs (sda1): re-mounted. Opts: commit=600,data=ordered
[    3.315564] usb 1-4.3: New USB device found, idVendor=093a, idProduct=2510
[    3.315584] usb 1-4.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.315599] usb 1-4.3: Product: USB Optical Mouse
[    3.315610] usb 1-4.3: Manufacturer: PixArt
[    3.319089] input: PixArt USB Optical Mouse as /devices/pci0000:00/0000:00:1d.7/usb1/1-4/1-4.3/1-4.3:1.0/input/input8
[    3.319423] generic-usb 0003:093A:2510.0002: input,hidraw1: USB HID v1.11 Mouse [PixArt USB Optical Mouse] on usb-0000:00:1d.7-4.3/input0
[    3.389877] EXT4-fs (sda1): re-mounted. Opts: commit=600,data=ordered
[    3.402825] cfg80211: Calling CRDA to update world regulatory domain
[    3.471003] ath: phy0: ASPM enabled: 0x42
[    3.471052] ath: EEPROM regdomain: 0x6a
[    3.471059] ath: EEPROM indicates we should expect a direct regpair map
[    3.471070] ath: Country alpha2 being used: 00
[    3.471077] ath: Regpair used: 0x6a
[    3.478452] ieee80211 phy0: Selected rate control algorithm 'ath9k_rate_control'
[    3.482773] Registered led device: ath9k-phy0
[    3.482796] ieee80211 phy0: Atheros AR9300 Rev:3 mem=0xf8c40000, irq=16
[    3.525704] asix 1-4.1:1.0: eth0: register 'asix' at usb-0000:00:1d.7-4.1, ASIX AX88772 USB 2.0 Ethernet, 00:00:00:00:07:7e
[    3.525845] usbcore: registered new interface driver asix
[    3.627047] cfg80211: World regulatory domain updated:
[    3.627057] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    3.627067] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    3.627076] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    3.627085] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    3.627094] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    3.627103] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    3.658877] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    3.790725] init: lockbox-cache pre-start process (701) terminated with status 1
[    4.249073] [drm:i915_driver_open], 
[    4.249158] [drm:drm_crtc_helper_set_config], 
[    4.249166] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:32] #connectors=1 (x y) (0 0)
[    4.249195] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    4.249293] [drm:i915_driver_open], 
[    4.249462] [drm:drm_crtc_helper_set_config], 
[    4.249469] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:32] #connectors=1 (x y) (0 0)
[    4.249487] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    4.249801] [drm:i915_driver_open], 
[    4.249865] [drm:drm_crtc_helper_set_config], 
[    4.249872] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:32] #connectors=1 (x y) (0 0)
[    4.249889] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    4.249982] [drm:i915_driver_open], 
[    4.250680] [drm:i915_getparam], Unknown parameter 19
[    4.250752] [drm:i915_getparam], Unknown parameter 21
[    4.251318] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[2] ENCODERS[2]
[    4.251339] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[2] ENCODERS[2]
[    4.251502] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    4.251517] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1]
[    4.251549] [drm] Adding LVDS downclock mode
[    4.251569] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1] probed modes :
[    4.251583] [drm:drm_mode_debug_printmodeline], Modeline 14:"1280x800" 60 70700 1280 1296 1344 1440 800 801 804 818 0x48 0xa
[    4.251603] [drm:drm_mode_debug_printmodeline], Modeline 15:"1280x800" 48 56428 1280 1296 1344 1440 800 801 804 818 0x40 0xa
[    4.251628] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    4.252342] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    4.252359] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1]
[    4.265091] [drm:intel_crt_detect], CRT detected via hotplug
[    4.278590] [drm:drm_edid_to_eld], ELD: no CEA Extension found
[    4.278633] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1] probed modes :
[    4.278645] [drm:drm_mode_debug_printmodeline], Modeline 9:"2048x1280" 60 174250 2048 2096 2128 2208 1280 1283 1289 1317 0x48 0x9
[    4.278664] [drm:drm_mode_debug_printmodeline], Modeline 21:"2048x1152" 60 198022 2048 2184 2408 2768 1152 1153 1156 1192 0x0 0x6
[    4.278682] [drm:drm_mode_debug_printmodeline], Modeline 20:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[    4.278700] [drm:drm_mode_debug_printmodeline], Modeline 19:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[    4.278718] [drm:drm_mode_debug_printmodeline], Modeline 26:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[    4.278736] [drm:drm_mode_debug_printmodeline], Modeline 18:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[    4.278754] [drm:drm_mode_debug_printmodeline], Modeline 17:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x9
[    4.278772] [drm:drm_mode_debug_printmodeline], Modeline 16:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[    4.278790] [drm:drm_mode_debug_printmodeline], Modeline 27:"1024x768" 75 78800 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[    4.278807] [drm:drm_mode_debug_printmodeline], Modeline 28:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[    4.278824] [drm:drm_mode_debug_printmodeline], Modeline 29:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[    4.278842] [drm:drm_mode_debug_printmodeline], Modeline 22:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[    4.278858] [drm:drm_mode_debug_printmodeline], Modeline 23:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[    4.278876] [drm:drm_mode_debug_printmodeline], Modeline 24:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[    4.278894] [drm:drm_mode_debug_printmodeline], Modeline 25:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[    4.278946] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    4.279218] [drm:drm_mode_getconnector], [CONNECTOR:0:?]
[    4.279296] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    4.279309] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1]
[    4.279345] [drm] Adding LVDS downclock mode
[    4.279365] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1] probed modes :
[    4.279377] [drm:drm_mode_debug_printmodeline], Modeline 14:"1280x800" 60 70700 1280 1296 1344 1440 800 801 804 818 0x48 0xa
[    4.279396] [drm:drm_mode_debug_printmodeline], Modeline 15:"1280x800" 48 56428 1280 1296 1344 1440 800 801 804 818 0x40 0xa
[    4.279420] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    4.283186] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    4.283206] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1]
[    4.295928] [drm:intel_crt_detect], CRT detected via hotplug
[    4.309809] [drm:drm_edid_to_eld], ELD: no CEA Extension found
[    4.309844] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1] probed modes :
[    4.309853] [drm:drm_mode_debug_printmodeline], Modeline 9:"2048x1280" 60 174250 2048 2096 2128 2208 1280 1283 1289 1317 0x48 0x9
[    4.309867] [drm:drm_mode_debug_printmodeline], Modeline 21:"2048x1152" 60 198022 2048 2184 2408 2768 1152 1153 1156 1192 0x0 0x6
[    4.309880] [drm:drm_mode_debug_printmodeline], Modeline 20:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[    4.309892] [drm:drm_mode_debug_printmodeline], Modeline 19:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[    4.309905] [drm:drm_mode_debug_printmodeline], Modeline 26:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[    4.309918] [drm:drm_mode_debug_printmodeline], Modeline 18:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[    4.309931] [drm:drm_mode_debug_printmodeline], Modeline 17:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x9
[    4.309943] [drm:drm_mode_debug_printmodeline], Modeline 16:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[    4.309956] [drm:drm_mode_debug_printmodeline], Modeline 27:"1024x768" 75 78800 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[    4.309968] [drm:drm_mode_debug_printmodeline], Modeline 28:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[    4.309981] [drm:drm_mode_debug_printmodeline], Modeline 29:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[    4.309993] [drm:drm_mode_debug_printmodeline], Modeline 22:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[    4.310047] [drm:drm_mode_debug_printmodeline], Modeline 23:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[    4.310066] [drm:drm_mode_debug_printmodeline], Modeline 24:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[    4.310084] [drm:drm_mode_debug_printmodeline], Modeline 25:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[    4.310142] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    4.318625] [drm:intel_panel_get_max_backlight], max backlight PWM = 13046
[    4.318637] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7827
[    4.319196] [drm:intel_panel_get_max_backlight], max backlight PWM = 13046
[    4.319211] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7827
[    4.337702] [drm:drm_mode_addfb], [FB:33]
[    4.337831] [drm:drm_mode_setcrtc], [CRTC:4]
[    4.337849] [drm:drm_mode_setcrtc], [CONNECTOR:5:LVDS-1]
[    4.337859] [drm:drm_crtc_helper_set_config], 
[    4.337865] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:33] #connectors=1 (x y) (0 0)
[    4.337895] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    4.341194] [drm:i9xx_update_plane], Writing base 01000000 00000000 0 0 8192
[    4.341212] [drm:intel_update_fbc], 
[    4.341221] [drm:intel_increase_pllclock], upclocking LVDS
[    4.371907] [drm:drm_mode_setcrtc], [CRTC:3]
[    4.371920] [drm:drm_crtc_helper_set_config], 
[    4.371928] [drm:drm_crtc_helper_set_config], [CRTC:3] [NOFB]
[    4.427294] [drm:i915_getparam], Unknown parameter 19
[    4.570996] init: disable_echo main process (73) killed by TERM signal
[    4.573445] [drm:i915_driver_open], 
[    4.573687] [drm:i915_driver_open], 
[    4.573749] [drm:i915_driver_open], 
[    4.675844] [drm:i915_driver_open], 
[    4.675900] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[2] ENCODERS[2]
[    4.675918] [drm:drm_mode_getresources], CRTC[2] CONNECTORS[2] ENCODERS[2]
[    4.675948] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    4.675962] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1]
[    4.675996] [drm] Adding LVDS downclock mode
[    4.676086] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1] probed modes :
[    4.676100] [drm:drm_mode_debug_printmodeline], Modeline 14:"1280x800" 60 70700 1280 1296 1344 1440 800 801 804 818 0x48 0xa
[    4.676119] [drm:drm_mode_debug_printmodeline], Modeline 15:"1280x800" 48 56428 1280 1296 1344 1440 800 801 804 818 0x40 0xa
[    4.676145] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    5.056102] [drm:intel_decrease_pllclock], downclocking LVDS
[    5.396362] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    5.396377] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1]
[    5.396402] [drm] Adding LVDS downclock mode
[    5.396417] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1] probed modes :
[    5.396427] [drm:drm_mode_debug_printmodeline], Modeline 14:"1280x800" 60 70700 1280 1296 1344 1440 800 801 804 818 0x48 0xa
[    5.396440] [drm:drm_mode_debug_printmodeline], Modeline 15:"1280x800" 48 56428 1280 1296 1344 1440 800 801 804 818 0x40 0xa
[    5.396458] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    5.396972] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    5.396983] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1]
[    5.409647] [drm:intel_crt_detect], CRT detected via hotplug
[    5.423198] [drm:drm_edid_to_eld], ELD: no CEA Extension found
[    5.423253] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1] probed modes :
[    5.423269] [drm:drm_mode_debug_printmodeline], Modeline 9:"2048x1280" 60 174250 2048 2096 2128 2208 1280 1283 1289 1317 0x48 0x9
[    5.423292] [drm:drm_mode_debug_printmodeline], Modeline 21:"2048x1152" 60 198022 2048 2184 2408 2768 1152 1153 1156 1192 0x0 0x6
[    5.423314] [drm:drm_mode_debug_printmodeline], Modeline 20:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[    5.423336] [drm:drm_mode_debug_printmodeline], Modeline 19:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[    5.423358] [drm:drm_mode_debug_printmodeline], Modeline 26:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[    5.423380] [drm:drm_mode_debug_printmodeline], Modeline 18:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[    5.423402] [drm:drm_mode_debug_printmodeline], Modeline 17:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x9
[    5.423424] [drm:drm_mode_debug_printmodeline], Modeline 16:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[    5.423445] [drm:drm_mode_debug_printmodeline], Modeline 27:"1024x768" 75 78800 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[    5.423467] [drm:drm_mode_debug_printmodeline], Modeline 28:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[    5.423489] [drm:drm_mode_debug_printmodeline], Modeline 29:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[    5.423510] [drm:drm_mode_debug_printmodeline], Modeline 22:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[    5.423530] [drm:drm_mode_debug_printmodeline], Modeline 23:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[    5.423551] [drm:drm_mode_debug_printmodeline], Modeline 24:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[    5.423571] [drm:drm_mode_debug_printmodeline], Modeline 25:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[    5.423652] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    5.429083] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    5.429112] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1]
[    5.429163] [drm] Adding LVDS downclock mode
[    5.429194] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1] probed modes :
[    5.429215] [drm:drm_mode_debug_printmodeline], Modeline 14:"1280x800" 60 70700 1280 1296 1344 1440 800 801 804 818 0x48 0xa
[    5.429248] [drm:drm_mode_debug_printmodeline], Modeline 15:"1280x800" 48 56428 1280 1296 1344 1440 800 801 804 818 0x40 0xa
[    5.429291] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    5.430512] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    5.430537] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1]
[    5.443190] [drm:intel_crt_detect], CRT detected via hotplug
[    5.456794] [drm:drm_edid_to_eld], ELD: no CEA Extension found
[    5.456848] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1] probed modes :
[    5.456862] [drm:drm_mode_debug_printmodeline], Modeline 9:"2048x1280" 60 174250 2048 2096 2128 2208 1280 1283 1289 1317 0x48 0x9
[    5.456885] [drm:drm_mode_debug_printmodeline], Modeline 21:"2048x1152" 60 198022 2048 2184 2408 2768 1152 1153 1156 1192 0x0 0x6
[    5.456906] [drm:drm_mode_debug_printmodeline], Modeline 20:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[    5.456927] [drm:drm_mode_debug_printmodeline], Modeline 19:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[    5.456949] [drm:drm_mode_debug_printmodeline], Modeline 26:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[    5.456970] [drm:drm_mode_debug_printmodeline], Modeline 18:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[    5.456991] [drm:drm_mode_debug_printmodeline], Modeline 17:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x9
[    5.457065] [drm:drm_mode_debug_printmodeline], Modeline 16:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[    5.457098] [drm:drm_mode_debug_printmodeline], Modeline 27:"1024x768" 75 78800 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[    5.457128] [drm:drm_mode_debug_printmodeline], Modeline 28:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[    5.457158] [drm:drm_mode_debug_printmodeline], Modeline 29:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[    5.457187] [drm:drm_mode_debug_printmodeline], Modeline 22:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[    5.457217] [drm:drm_mode_debug_printmodeline], Modeline 23:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[    5.457246] [drm:drm_mode_debug_printmodeline], Modeline 24:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[    5.457275] [drm:drm_mode_debug_printmodeline], Modeline 25:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[    5.457369] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    5.458996] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    5.459063] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1]
[    5.459113] [drm] Adding LVDS downclock mode
[    5.459144] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1] probed modes :
[    5.459165] [drm:drm_mode_debug_printmodeline], Modeline 14:"1280x800" 60 70700 1280 1296 1344 1440 800 801 804 818 0x48 0xa
[    5.459195] [drm:drm_mode_debug_printmodeline], Modeline 15:"1280x800" 48 56428 1280 1296 1344 1440 800 801 804 818 0x40 0xa
[    5.459237] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    5.460467] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    5.460493] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1]
[    5.473230] [drm:intel_crt_detect], CRT detected via hotplug
[    5.486758] [drm:drm_edid_to_eld], ELD: no CEA Extension found
[    5.486811] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1] probed modes :
[    5.486826] [drm:drm_mode_debug_printmodeline], Modeline 9:"2048x1280" 60 174250 2048 2096 2128 2208 1280 1283 1289 1317 0x48 0x9
[    5.486848] [drm:drm_mode_debug_printmodeline], Modeline 21:"2048x1152" 60 198022 2048 2184 2408 2768 1152 1153 1156 1192 0x0 0x6
[    5.486870] [drm:drm_mode_debug_printmodeline], Modeline 20:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[    5.486891] [drm:drm_mode_debug_printmodeline], Modeline 19:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[    5.486913] [drm:drm_mode_debug_printmodeline], Modeline 26:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[    5.486935] [drm:drm_mode_debug_printmodeline], Modeline 18:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[    5.486956] [drm:drm_mode_debug_printmodeline], Modeline 17:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x9
[    5.486978] [drm:drm_mode_debug_printmodeline], Modeline 16:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[    5.486999] [drm:drm_mode_debug_printmodeline], Modeline 27:"1024x768" 75 78800 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[    5.487079] [drm:drm_mode_debug_printmodeline], Modeline 28:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[    5.487111] [drm:drm_mode_debug_printmodeline], Modeline 29:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[    5.487142] [drm:drm_mode_debug_printmodeline], Modeline 22:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[    5.487171] [drm:drm_mode_debug_printmodeline], Modeline 23:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[    5.487201] [drm:drm_mode_debug_printmodeline], Modeline 24:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[    5.487230] [drm:drm_mode_debug_printmodeline], Modeline 25:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[    5.487325] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    5.492515] [drm:drm_mode_addfb], [FB:34]
[    5.492570] [drm:drm_mode_setcrtc], [CRTC:4]
[    5.492599] [drm:drm_mode_setcrtc], [CONNECTOR:5:LVDS-1]
[    5.492617] [drm:drm_crtc_helper_set_config], 
[    5.492631] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:34] #connectors=1 (x y) (0 0)
[    5.492677] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    5.544284] [drm:i9xx_update_plane], Writing base 02000000 00000000 0 0 8192
[    5.544306] [drm:intel_update_fbc], 
[    5.544317] [drm:intel_increase_pllclock], upclocking LVDS
[    5.584968] [drm:drm_mode_setcrtc], [CRTC:3]
[    5.585079] [drm:drm_mode_setcrtc], [CONNECTOR:12:VGA-1]
[    5.585098] [drm:drm_crtc_helper_set_config], 
[    5.585112] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:34] #connectors=1 (x y) (0 860)
[    5.585154] [drm:drm_crtc_helper_set_config], crtc has no fb, full mode set
[    5.585173] [drm:drm_crtc_helper_set_config], encoder changed, full mode switch
[    5.585192] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    5.585210] [drm:drm_crtc_helper_set_config], crtc changed, full mode switch
[    5.585227] [drm:drm_crtc_helper_set_config], [CONNECTOR:12:VGA-1] to [CRTC:3]
[    5.585247] [drm:drm_crtc_helper_set_config], attempting to set mode from userspace
[    5.585264] [drm:drm_mode_debug_printmodeline], Modeline 33:"" 0 174250 2048 2096 2128 2208 1280 1283 1289 1317 0x0 0x9
[    5.585303] [drm:drm_crtc_helper_set_mode], [CRTC:3]
[    5.587330] [drm:i9xx_crtc_mode_set], Mode for pipe A:
[    5.587343] [drm:drm_mode_debug_printmodeline], Modeline 33:"" 0 174250 2048 2096 2128 2208 1280 1283 1289 1317 0x0 0x9
[    5.621138] [drm:i9xx_update_plane], Writing base 02000000 006B8000 0 860 8192
[    5.621158] [drm:intel_update_fbc], 
[    5.621173] [drm:pineview_update_wm], Self-refresh is disabled
[    5.621188] [drm:drm_crtc_helper_set_mode], [ENCODER:13:DAC-13] set [MODE:33:]
[    5.621204] [drm:pineview_update_wm], Self-refresh is disabled
[    5.621752] [drm:intel_update_fbc], 
[    5.621768] [drm:drm_crtc_helper_set_config], Setting connector DPMS state to on
[    5.621781] [drm:drm_crtc_helper_set_config], 	[CONNECTOR:12:VGA-1] set DPMS on
[    5.623320] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    5.623341] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1]
[    5.623382] [drm] Adding LVDS downclock mode
[    5.623412] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1] probed modes :
[    5.623430] [drm:drm_mode_debug_printmodeline], Modeline 14:"1280x800" 60 70700 1280 1296 1344 1440 800 801 804 818 0x48 0xa
[    5.623452] [drm:drm_mode_debug_printmodeline], Modeline 15:"1280x800" 48 56428 1280 1296 1344 1440 800 801 804 818 0x40 0xa
[    5.623481] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    5.624521] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    5.624541] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1]
[    5.638109] [drm:intel_crt_detect], CRT detected via hotplug
[    5.651582] [drm:drm_edid_to_eld], ELD: no CEA Extension found
[    5.651632] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1] probed modes :
[    5.651646] [drm:drm_mode_debug_printmodeline], Modeline 9:"2048x1280" 60 174250 2048 2096 2128 2208 1280 1283 1289 1317 0x48 0x9
[    5.651668] [drm:drm_mode_debug_printmodeline], Modeline 21:"2048x1152" 60 198022 2048 2184 2408 2768 1152 1153 1156 1192 0x0 0x6
[    5.651690] [drm:drm_mode_debug_printmodeline], Modeline 20:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[    5.651711] [drm:drm_mode_debug_printmodeline], Modeline 19:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[    5.651732] [drm:drm_mode_debug_printmodeline], Modeline 26:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[    5.651753] [drm:drm_mode_debug_printmodeline], Modeline 18:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[    5.651774] [drm:drm_mode_debug_printmodeline], Modeline 17:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x9
[    5.651795] [drm:drm_mode_debug_printmodeline], Modeline 16:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[    5.651816] [drm:drm_mode_debug_printmodeline], Modeline 27:"1024x768" 75 78800 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[    5.651837] [drm:drm_mode_debug_printmodeline], Modeline 28:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[    5.651858] [drm:drm_mode_debug_printmodeline], Modeline 29:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[    5.651878] [drm:drm_mode_debug_printmodeline], Modeline 22:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[    5.651899] [drm:drm_mode_debug_printmodeline], Modeline 23:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[    5.651919] [drm:drm_mode_debug_printmodeline], Modeline 24:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[    5.651939] [drm:drm_mode_debug_printmodeline], Modeline 25:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[    5.652073] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    5.774511] [drm:i915_driver_open], 
[    5.774991] [drm:i915_getparam], Unknown parameter 19
[    5.789684] [drm:i915_driver_irq_handler], pipe A underrun
[    5.895112] ADDRCONF(NETDEV_UP): eth0: link is not ready
[    5.986520] ieee80211 phy0: device now idle
[    6.002331] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    6.043343] ieee80211 phy0: device no longer idle - scanning
[    6.284104] [drm:intel_decrease_pllclock], downclocking LVDS
[    6.302059] [drm:intel_wait_for_vblank], vblank wait timed out
[    6.322110] [drm:intel_decrease_pllclock], downclocking LVDS
[    6.340158] [drm:intel_wait_for_vblank], vblank wait timed out
[    6.749528] [drm:drm_mode_setcrtc], [CRTC:3]
[    6.749557] [drm:drm_mode_setcrtc], [CONNECTOR:12:VGA-1]
[    6.749569] [drm:drm_crtc_helper_set_config], 
[    6.749577] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:34] #connectors=1 (x y) (0 860)
[    6.749608] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    6.749620] [drm:drm_crtc_helper_set_config], [CONNECTOR:12:VGA-1] to [CRTC:3]
[    6.749655] [drm:drm_mode_setcrtc], [CRTC:4]
[    6.749671] [drm:drm_mode_setcrtc], [CONNECTOR:5:LVDS-1]
[    6.749680] [drm:drm_crtc_helper_set_config], 
[    6.749687] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:34] #connectors=1 (x y) (0 0)
[    6.749711] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    6.749722] [drm:drm_crtc_helper_set_config], [CONNECTOR:12:VGA-1] to [CRTC:3]
[    6.978426] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    6.978453] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1]
[    6.978500] [drm] Adding LVDS downclock mode
[    6.978528] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1] probed modes :
[    6.978547] [drm:drm_mode_debug_printmodeline], Modeline 14:"1280x800" 60 70700 1280 1296 1344 1440 800 801 804 818 0x48 0xa
[    6.978575] [drm:drm_mode_debug_printmodeline], Modeline 15:"1280x800" 48 56428 1280 1296 1344 1440 800 801 804 818 0x40 0xa
[    6.978614] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    6.979706] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    6.979728] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1]
[    6.988698] [drm:intel_crt_detect], CRT detected via hotplug
[    7.002296] [drm:drm_edid_to_eld], ELD: no CEA Extension found
[    7.002354] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1] probed modes :
[    7.002369] [drm:drm_mode_debug_printmodeline], Modeline 9:"2048x1280" 60 174250 2048 2096 2128 2208 1280 1283 1289 1317 0x48 0x9
[    7.002393] [drm:drm_mode_debug_printmodeline], Modeline 21:"2048x1152" 60 198022 2048 2184 2408 2768 1152 1153 1156 1192 0x0 0x6
[    7.002415] [drm:drm_mode_debug_printmodeline], Modeline 20:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[    7.002437] [drm:drm_mode_debug_printmodeline], Modeline 19:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[    7.002461] [drm:drm_mode_debug_printmodeline], Modeline 26:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[    7.002491] [drm:drm_mode_debug_printmodeline], Modeline 18:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[    7.002522] [drm:drm_mode_debug_printmodeline], Modeline 17:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x9
[    7.002553] [drm:drm_mode_debug_printmodeline], Modeline 16:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[    7.002583] [drm:drm_mode_debug_printmodeline], Modeline 27:"1024x768" 75 78800 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[    7.002616] [drm:drm_mode_debug_printmodeline], Modeline 28:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[    7.002646] [drm:drm_mode_debug_printmodeline], Modeline 29:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[    7.002670] [drm:drm_mode_debug_printmodeline], Modeline 22:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[    7.002692] [drm:drm_mode_debug_printmodeline], Modeline 23:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[    7.002721] [drm:drm_mode_debug_printmodeline], Modeline 24:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[    7.002752] [drm:drm_mode_debug_printmodeline], Modeline 25:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[    7.002885] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    7.007811] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    7.007833] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1]
[    7.007872] [drm] Adding LVDS downclock mode
[    7.007895] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:5:LVDS-1] probed modes :
[    7.007909] [drm:drm_mode_debug_printmodeline], Modeline 14:"1280x800" 60 70700 1280 1296 1344 1440 800 801 804 818 0x48 0xa
[    7.007931] [drm:drm_mode_debug_printmodeline], Modeline 15:"1280x800" 48 56428 1280 1296 1344 1440 800 801 804 818 0x40 0xa
[    7.007962] [drm:drm_mode_getconnector], [CONNECTOR:5:?]
[    7.008966] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    7.008986] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1]
[    7.022060] [drm:intel_crt_detect], CRT detected via hotplug
[    7.035533] [drm:drm_edid_to_eld], ELD: no CEA Extension found
[    7.035585] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:12:VGA-1] probed modes :
[    7.035600] [drm:drm_mode_debug_printmodeline], Modeline 9:"2048x1280" 60 174250 2048 2096 2128 2208 1280 1283 1289 1317 0x48 0x9
[    7.035622] [drm:drm_mode_debug_printmodeline], Modeline 21:"2048x1152" 60 198022 2048 2184 2408 2768 1152 1153 1156 1192 0x0 0x6
[    7.035644] [drm:drm_mode_debug_printmodeline], Modeline 20:"1920x1200" 60 193250 1920 2056 2256 2592 1200 1203 1209 1245 0x40 0x6
[    7.035666] [drm:drm_mode_debug_printmodeline], Modeline 19:"1600x1200" 60 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x40 0x5
[    7.035688] [drm:drm_mode_debug_printmodeline], Modeline 26:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[    7.035709] [drm:drm_mode_debug_printmodeline], Modeline 18:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[    7.035730] [drm:drm_mode_debug_printmodeline], Modeline 17:"1280x800" 60 83500 1280 1352 1480 1680 800 803 809 831 0x40 0x9
[    7.035752] [drm:drm_mode_debug_printmodeline], Modeline 16:"1152x864" 75 108000 1152 1216 1344 1600 864 865 868 900 0x40 0x5
[    7.035772] [drm:drm_mode_debug_printmodeline], Modeline 27:"1024x768" 75 78800 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[    7.035793] [drm:drm_mode_debug_printmodeline], Modeline 28:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[    7.035814] [drm:drm_mode_debug_printmodeline], Modeline 29:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[    7.035834] [drm:drm_mode_debug_printmodeline], Modeline 22:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[    7.035855] [drm:drm_mode_debug_printmodeline], Modeline 23:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[    7.035875] [drm:drm_mode_debug_printmodeline], Modeline 24:"640x480" 60 25200 640 656 752 800 480 490 492 525 0x40 0xa
[    7.035895] [drm:drm_mode_debug_printmodeline], Modeline 25:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[    7.036079] [drm:drm_mode_getconnector], [CONNECTOR:12:?]
[    7.371438] [drm:drm_mode_addfb], [FB:33]
[    7.371453] [drm:drm_mode_setcrtc], [CRTC:3]
[    7.371468] [drm:drm_mode_setcrtc], [CONNECTOR:12:VGA-1]
[    7.371475] [drm:drm_crtc_helper_set_config], 
[    7.371481] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:33] #connectors=1 (x y) (0 0)
[    7.371505] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    7.371513] [drm:drm_crtc_helper_set_config], [CONNECTOR:12:VGA-1] to [CRTC:3]
[    7.383947] [drm:i9xx_update_plane], Writing base 0A000000 00000000 0 0 8192
[    7.383960] [drm:intel_update_fbc], 
[    7.434090] [drm:intel_wait_for_vblank], vblank wait timed out
[    7.434192] [drm:drm_mode_addfb], [FB:35]
[    7.434210] [drm:drm_mode_setcrtc], [CRTC:4]
[    7.434229] [drm:drm_mode_setcrtc], [CONNECTOR:5:LVDS-1]
[    7.434240] [drm:drm_crtc_helper_set_config], 
[    7.434250] [drm:drm_crtc_helper_set_config], [CRTC:4] [FB:35] #connectors=1 (x y) (0 0)
[    7.434278] [drm:drm_crtc_helper_set_config], [CONNECTOR:5:LVDS-1] to [CRTC:4]
[    7.434292] [drm:drm_crtc_helper_set_config], [CONNECTOR:12:VGA-1] to [CRTC:3]
[    7.434312] [drm:i9xx_update_plane], Writing base 09000000 00000000 0 0 8192
[    7.434327] [drm:intel_update_fbc], 
[    7.434337] [drm:intel_increase_pllclock], upclocking LVDS
[    7.468106] [drm:drm_mode_addfb], [FB:36]
[    7.501463] [drm:intel_update_fbc], 
[    7.706105] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[    7.709985] asix 1-4.1:1.0: eth0: link up, 100Mbps, full-duplex, lpa 0xC9E1
[    7.831501] [drm:drm_mode_addfb], [FB:37]
[    7.855417] [drm:intel_update_fbc], 
[    7.985051] [drm:intel_update_fbc], 
[    8.322277] [drm:intel_update_fbc], 
[    8.678097] [drm:intel_decrease_pllclock], downclocking LVDS
[    8.696057] [drm:intel_wait_for_vblank], vblank wait timed out
[    8.714074] [drm:intel_decrease_pllclock], downclocking LVDS
[    8.732076] [drm:intel_wait_for_vblank], vblank wait timed out
[    9.014092] [drm:intel_decrease_pllclock], downclocking LVDS
[    9.032040] [drm:intel_wait_for_vblank], vblank wait timed out
[    9.996077] ieee80211 phy0: device now idle
[   11.440607] [drm:intel_crt_detect], CRT detected via hotplug
[   11.440619] [drm:output_poll_execute], [CONNECTOR:12:VGA-1] status updated from 1 to 1
[   11.877499] low_mem: setting minfree to 102400 kB
[   11.912629] fuse init (API version 7.18)
[   12.002543] zsmalloc: module is from the staging directory, the quality is unknown, you have been warned.
[   12.009728] zram: module is from the staging directory, the quality is unknown, you have been warned.
[   12.010428] zram: num_devices not specified. Using default: 1
[   12.010441] zram: Creating 1 devices ...
[   12.057081] [drm:intel_decrease_pllclock], downclocking LVDS
[   12.075191] [drm:intel_wait_for_vblank], vblank wait timed out
[   12.162429] Bluetooth: Core ver 2.16
[   12.162552] NET: Registered protocol family 31
[   12.162564] Bluetooth: HCI device and connection manager initialized
[   12.162598] Bluetooth: HCI socket layer initialized
[   12.162630] Bluetooth: L2CAP socket layer initialized
[   12.162662] Bluetooth: SCO socket layer initialized
[   12.188932] Adding 2834416k swap on /dev/zram0.  Priority:-1 extents:1 across:2834416k SS
[   12.257443] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
[   12.287101] zram: open attempted while zram0 claimed (count: 3)
[   12.299938] snd_hda_intel 0000:00:1b.0: irq 43 for MSI/MSI-X
[   12.433884] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[   12.434431] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[   12.436154] nm10_gpio version 0.04 built on Jun 14 2013 at 13:31:18
[   12.436191] gpiochip_find_base: found new base at 192
[   12.436314] gpiochip_add: registered GPIOs 192 to 255 on device: 0000:00:1f.0
[   12.454163] industrialio: module is from the staging directory, the quality is unknown, you have been warned.
[   12.468344] tsl2583: module is from the staging directory, the quality is unknown, you have been warned.
[   12.527445] usbcore: registered new interface driver qcserial
[   12.527528] USB Serial support registered for Qualcomm USB modem
[   12.527606] qcserial 1-2:1.1: Qualcomm USB modem converter detected
[   12.534247] usb 1-2: Qualcomm USB modem converter now attached to ttyUSB0
[   12.680170] tsl2583 6-0029: Light sensor found.
[   13.411209] [drm:intel_increase_pllclock], upclocking LVDS
[   13.429052] [drm:intel_wait_for_vblank], vblank wait timed out
[   13.429329] [drm:intel_update_fbc], 
[   13.503418] i2c /dev entries driver
[   13.578607] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7831
[   13.612413] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7835
[   13.640387] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7840
[   13.671135] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7844
[   13.677751] [drm:intel_update_fbc], 
[   13.701780] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7848
[   13.732245] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7853
[   13.761240] [drm:intel_update_fbc], 
[   13.762661] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7857
[   13.793102] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7861
[   13.823505] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7865
[   13.827860] [drm:intel_update_fbc], 
[   13.856428] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7870
[   13.887178] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7874
[   13.894767] [drm:intel_update_fbc], 
[   13.917641] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7879
[   13.948710] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7883
[   13.979162] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7887
[   14.009573] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7891
[   14.040163] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7896
[   14.070607] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7900
[   14.101094] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7904
[   14.131572] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7908
[   14.162067] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7913
[   14.178252] [drm:intel_update_fbc], 
[   14.192494] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7917
[   14.223112] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7921
[   14.253654] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7925
[   14.284302] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7930
[   14.314868] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7934
[   14.345427] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7938
[   14.376002] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7942
[   14.406628] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7947
[   14.437164] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7951
[   14.467814] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7955
[   14.498478] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7960
[   14.529082] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7964
[   14.559995] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7968
[   14.590556] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7972
[   14.621106] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7977
[   14.651591] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7981
[   14.678412] [drm:intel_update_fbc], 
[   14.681806] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7985
[   14.712227] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7989
[   14.742656] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7994
[   14.773119] [drm:intel_panel_actually_set_backlight], set backlight PWM = 7998
[   14.803537] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8002
[   14.833968] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8006
[   14.864428] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8011
[   14.894820] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8015
[   14.925255] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8019
[   14.955688] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8023
[   14.986242] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8028
[   15.016958] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8032
[   15.047655] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8036
[   15.078278] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8040
[   15.108766] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8045
[   15.139249] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8049
[   15.169715] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8053
[   15.178743] [drm:intel_update_fbc], 
[   15.200395] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8057
[   15.231412] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8062
[   15.261979] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8066
[   15.292539] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8070
[   15.322968] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8075
[   15.353552] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8079
[   15.383929] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8083
[   15.414520] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8087
[   15.445103] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8092
[   15.475942] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8096
[   15.487681] zram: open attempted while zram0 claimed (count: 3)
[   15.487725] zram: open attempted while zram0 claimed (count: 3)
[   15.487878] zram: open attempted while zram0 claimed (count: 3)
[   15.490086] zram: open attempted while zram0 claimed (count: 3)
[   15.490138] zram: open attempted while zram0 claimed (count: 3)
[   15.490182] zram: open attempted while zram0 claimed (count: 3)
[   15.506445] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8100
[   15.537003] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8104
[   15.567600] [drm:intel_panel_actually_set_backlight], set backlight PWM = 8106
[   15.679138] [drm:intel_update_fbc], 
[   16.179529] [drm:intel_update_fbc], 
[   16.596342] [drm:intel_update_fbc], 
[   16.679748] [drm:intel_update_fbc], 
[   16.995132] usb 1-2: USB disconnect, device number 3
[   16.995687] qcserial ttyUSB0: Qualcomm USB modem converter now disconnected from ttyUSB0
[   16.995788] qcserial 1-2:1.1: device disconnected
[   17.180101] [drm:intel_update_fbc], 
[   17.308166] usb 1-2: new high-speed USB device number 9 using ehci_hcd
[   17.425387] usb 1-2: New USB device found, idVendor=05c6, idProduct=9245
[   17.425412] usb 1-2: New USB device strings: Mfr=3, Product=2, SerialNumber=0
[   17.425431] usb 1-2: Product: Qualcomm Gobi 2000
[   17.425444] usb 1-2: Manufacturer: Qualcomm Incorporated
[   17.429004] qcserial 1-2:1.1: Qualcomm USB modem converter detected
[   17.429495] usb 1-2: Qualcomm USB modem converter now attached to ttyUSB0
[   17.430566] qcserial 1-2:1.2: Qualcomm USB modem converter detected
[   17.430984] usb 1-2: Qualcomm USB modem converter now attached to ttyUSB1
[   17.431948] qcserial 1-2:1.3: Qualcomm USB modem converter detected
[   17.432594] usb 1-2: Qualcomm USB modem converter now attached to ttyUSB2
[   17.482134] gobi: 1.0.110+google+w0
[   17.485339] gobi 1-2:1.0: wwan0: register 'gobi' at usb-0000:00:1d.7-2, QCUSBNet Ethernet Device, ce:e0:bd:e6:77:cb
[   17.697331] [drm:intel_update_fbc], 
[   18.197402] [drm:intel_update_fbc], 
[   18.287406] init: bootcache main process (7221) terminated with status 2
[   18.697889] [drm:intel_update_fbc], 
[   19.198193] [drm:intel_update_fbc], 
[   19.698504] [drm:intel_update_fbc], 
[   20.198853] [drm:intel_update_fbc], 
[   20.512923] ieee80211 phy0: device no longer idle - scanning
[   20.599132] [drm:intel_update_fbc], 
[   20.699212] [drm:intel_update_fbc], 
[   21.098585] gobi: registered qcqmi0
[   21.098753] usbcore: registered new interface driver gobi
[   21.199388] [drm:intel_update_fbc], 
[   21.699821] [drm:intel_update_fbc], 
[   22.200154] [drm:intel_update_fbc], 
[   22.700537] [drm:intel_update_fbc], 
[   23.200847] [drm:intel_update_fbc], 
[   23.701189] [drm:intel_update_fbc], 
[   24.003113] ieee80211 phy0: device now idle
[   24.201361] [drm:intel_update_fbc], 
[   24.701839] [drm:intel_update_fbc], 
[   25.202121] [drm:intel_update_fbc], 
[   25.702390] [drm:intel_update_fbc], 
[   26.202825] [drm:intel_update_fbc], 
[   26.703117] [drm:intel_update_fbc], 
[   27.203379] [drm:intel_update_fbc], 
[   27.703769] [drm:intel_update_fbc], 
[   28.204046] [drm:intel_update_fbc], 
[   28.704370] [drm:intel_update_fbc], 
[   29.204779] [drm:intel_update_fbc], 
[   29.705150] [drm:intel_update_fbc], 
[   30.205444] [drm:intel_update_fbc], 
[   30.705774] [drm:intel_update_fbc], 
[   31.206121] [drm:intel_update_fbc], 
[   31.723102] [drm:intel_update_fbc], 
[   32.223469] [drm:intel_update_fbc], 
[   32.723772] [drm:intel_update_fbc], 
[   33.224135] [drm:intel_update_fbc], 
[   33.724317] [drm:intel_update_fbc], 
[   34.224800] [drm:intel_update_fbc], 
[   34.244420] ieee80211 phy0: device no longer idle - scanning
[   34.725138] [drm:intel_update_fbc], 
[   35.225394] [drm:intel_update_fbc], 
[   35.725759] [drm:intel_update_fbc], 
[   36.226171] [drm:intel_update_fbc], 
[   36.726409] [drm:intel_update_fbc], 
[   37.226767] [drm:intel_update_fbc], 
[   37.673098] ieee80211 phy0: device now idle
[   37.727083] [drm:intel_update_fbc], 
[   38.227418] [drm:intel_update_fbc], 
[   38.727759] [drm:intel_update_fbc], 
[   39.228140] [drm:intel_update_fbc], 
[   39.728414] [drm:intel_update_fbc], 
[   40.228728] [drm:intel_update_fbc], 
[   40.729078] [drm:intel_update_fbc], 
[   41.229416] [drm:intel_update_fbc], 
[   41.729717] [drm:intel_update_fbc], 
[   42.230069] [drm:intel_update_fbc], 
[   42.730539] [drm:intel_update_fbc], 
[   43.230724] [drm:intel_update_fbc], 
[   43.627078] gobi: int_callback: urb status = -2
[   43.731089] [drm:intel_update_fbc], 
[   43.750184] init: tlsdated main process (4515) killed by TERM signal
[   44.231362] [drm:intel_update_fbc], 
[   44.731604] [drm:intel_update_fbc], 
[   45.232107] [drm:intel_update_fbc], 
[   45.732403] [drm:intel_update_fbc], 
[   46.232703] [drm:intel_update_fbc], 
[   46.733055] [drm:intel_update_fbc], 
[   46.866462] [drm:intel_update_fbc], 
[   47.234886] [drm:intel_update_fbc], 
[   47.733702] [drm:intel_update_fbc], 
[   47.902871] ieee80211 phy0: device no longer idle - scanning
[   48.233916] [drm:intel_update_fbc], 
[   48.734236] [drm:intel_update_fbc], 
[   49.234717] [drm:intel_update_fbc], 
[   49.751689] [drm:intel_update_fbc], 
[   50.251918] [drm:intel_update_fbc], 
[   50.752315] [drm:intel_update_fbc], 
[   51.252646] [drm:intel_update_fbc], 
[   51.340176] ieee80211 phy0: device now idle
[   51.752983] [drm:intel_update_fbc], 
[   52.253261] [drm:intel_update_fbc], 
[   52.753626] [drm:intel_update_fbc], 
[   53.253915] [drm:intel_update_fbc], 
[   53.754346] [drm:intel_update_fbc], 
[   54.254648] [drm:intel_update_fbc], 
[   54.754911] [drm:intel_update_fbc], 
[   55.255318] [drm:intel_update_fbc], 
[   55.755650] [drm:intel_update_fbc], 
[   56.255970] [drm:intel_update_fbc], 
[   56.756218] [drm:intel_update_fbc], 
[   57.256634] [drm:intel_update_fbc], 
[   57.756876] [drm:intel_update_fbc], 
[   58.257181] [drm:intel_update_fbc], 
[   58.757595] [drm:intel_update_fbc], 
[   59.257948] [drm:intel_update_fbc], 
[   59.758256] [drm:intel_update_fbc], 
[   60.258581] [drm:intel_update_fbc], 
[   60.762513] [drm:intel_update_fbc], 
[   61.263363] [drm:intel_update_fbc], 
[   61.759584] [drm:intel_update_fbc], 
[   62.259796] [drm:intel_update_fbc], 
[   62.760247] [drm:intel_update_fbc], 
[   63.260612] [drm:intel_update_fbc], 
[   63.760803] [drm:intel_update_fbc], 
[   64.261137] [drm:intel_update_fbc], 
[   64.761601] [drm:intel_update_fbc], 
[   65.261924] [drm:intel_update_fbc], 
[   65.762233] [drm:intel_update_fbc], 
[   66.262539] [drm:intel_update_fbc], 
[   66.762869] [drm:intel_update_fbc], 
[   67.263199] [drm:intel_update_fbc], 
[   67.763541] [drm:intel_update_fbc], 
[   68.263780] [drm:intel_update_fbc], 
[   68.764119] [drm:intel_update_fbc], 
[   69.264490] [drm:intel_update_fbc], 
[   69.764893] [drm:intel_update_fbc], 
[   70.265232] [drm:intel_update_fbc], 
[   70.765545] [drm:intel_update_fbc], 
[   71.265774] [drm:intel_update_fbc], 
[   71.766090] [drm:intel_update_fbc], 
[   72.283100] [drm:intel_update_fbc], 
[   72.783545] [drm:intel_update_fbc], 
[   73.283807] [drm:intel_update_fbc], 
[   73.784207] [drm:intel_update_fbc], 
[   74.284529] [drm:intel_update_fbc], 
[   74.784761] [drm:intel_update_fbc], 
[   75.285195] [drm:intel_update_fbc], 
[   75.785525] [drm:intel_update_fbc], 
[   76.285890] [drm:intel_update_fbc], 
[   76.786092] [drm:intel_update_fbc], 
[   77.286434] [drm:intel_update_fbc], 
[   77.786895] [drm:intel_update_fbc], 
[   78.287197] [drm:intel_update_fbc], 
[   78.787534] [drm:intel_update_fbc], 
[   79.287865] [drm:intel_update_fbc], 
[   79.788204] [drm:intel_update_fbc], 
[   80.288516] [drm:intel_update_fbc], 
[   80.788858] [drm:intel_update_fbc], 
[   80.872225] [drm:intel_update_fbc], 
[   81.289082] [drm:intel_update_fbc], 
[   81.789505] [drm:intel_update_fbc], 
[   82.289869] [drm:intel_update_fbc], 
[   82.790169] [drm:intel_update_fbc], 
[   83.290523] [drm:intel_update_fbc], 
[   83.790792] [drm:intel_update_fbc], 
[   84.291136] [drm:intel_update_fbc], 
[   84.791386] [drm:intel_update_fbc], 
[   85.291832] [drm:intel_update_fbc], 
[   85.792173] [drm:intel_update_fbc], 
[   86.292436] [drm:intel_update_fbc], 
[   86.792824] [drm:intel_update_fbc], 
[   87.293042] [drm:intel_update_fbc], 
[   87.793370] [drm:intel_update_fbc], 
[   88.293704] [drm:intel_update_fbc], 
[   88.794033] [drm:intel_update_fbc], 

[-- Attachment #3: Type: text/plain, Size: 159 bytes --]

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

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

* Re: [PATCH] Lower threshold for pixel doubling.
  2013-06-24 23:28           ` Stuart Abercrombie
@ 2013-07-08 18:52             ` Stuart Abercrombie
  2013-07-13  0:29               ` Stuart Abercrombie
  2013-07-26  6:01             ` Daniel Vetter
  1 sibling, 1 reply; 13+ messages in thread
From: Stuart Abercrombie @ 2013-07-08 18:52 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: intel-gfx


[-- Attachment #1.1: Type: text/plain, Size: 4858 bytes --]

So, what's the conclusion?


On Mon, Jun 24, 2013 at 4:28 PM, Stuart Abercrombie <sabercrombie@google.com
> wrote:

> This is with the patch.
>
>
> On Sun, Jun 23, 2013 at 11:59 PM, Daniel Vetter <daniel@ffwll.ch> wrote:
>
>> On Sat, Jun 22, 2013 at 12:52 AM, Stuart Abercrombie
>> <sabercrombie@google.com> wrote:
>> > Maybe I missed something, but I didn't see a response to this.  Can we
>> get
>> > this fix in?
>>
>> Sorry for the delay, I've lost track of this. Can you please boot with
>> drm.debug=0xe and attach the full dmesg (with or without your patch)?
>> -Daniel
>>
>> >
>> >
>> > On Wed, May 29, 2013 at 9:22 AM, Stuart Abercrombie
>> > <sabercrombie@google.com> wrote:
>> >>
>> >> Without this change I saw PIPE_FIFO_UNDERRUN_STATUS set in PIPEASTAT,
>> >> which I took to indicate an underrun problem.
>> >>
>> >> Here's what I found with other modes on this monitor:
>> >>
>> >> 1920x1200 works with pixel doubling enabled. Pixel clock 193.2 MHz.
>> >> 2048x1152 works with pixel doubling enabled. Pixel clock 198.0 MHz.
>> >> 1600x1200 works with pixel doubling disabled. Pixel clock 162.0 MHz.
>> >> 2048x1280 fails with pixel doubling disabled. PIxel clock 174.2 MHz..
>> >>
>> >> Based on this, it seems the threshold needs to be be between 162.0MHz
>> and
>> >> 174.2MHz, whereas currently it's at 180MHz.  The change puts it at
>> 170MHz.
>> >>
>> >> Stuart
>> >>
>> >>
>> >> On Wed, May 29, 2013 at 8:22 AM, Daniel Vetter <daniel@ffwll.ch>
>> wrote:
>> >>>
>> >>> On Tue, May 28, 2013 at 10:39:07AM -0700, Stuart Abercrombie wrote:
>> >>> > Any comments?
>> >>> >
>> >>> > Without this, plugging one of the older Chromebook models into a
>> Dell
>> >>> > U3011
>> >>> > monitor produces a garbled display at the default 2048x1280
>> resolution.
>> >>> >
>> >>> > The original threshold was apparently fairly arbitrary:
>> >>> >
>> >>> >
>> >>> >
>> http://cgit.freedesktop.org/~anholt/xf86-video-intel/commit/?id=8fcf9a81179ee8577ddab5e904c58fbfd14cf59c
>> >>>
>> >>> Do you see any pipe underruns without this patch? There are some
>> not-yet
>> >>> implemented tricks we should be pulling around re-splitting DSP_ARB
>> fifo
>> >>> entries, which tend to totally kill high-res modes.
>> >>> -Daniel
>> >>>
>> >>> > .
>> >>> >
>> >>> > Stuart
>> >>> >
>> >>> >
>> >>> > On Mon, May 20, 2013 at 11:15 AM, Stuart Abercrombie <
>> >>> > sabercrombie@chromium.org> wrote:
>> >>> >
>> >>> > > 90% of core speed (=180MHz dot clock) is too high for 2048x1280 to
>> >>> > > get
>> >>> > > pixel doubling on Pineview, which it needs to avoid underruns, so
>> >>> > > lower this to 85%.
>> >>> > >
>> >>> > > Signed-off-by: Stuart Abercrombie <sabercrombie@chromium.org>
>> >>> > > ---
>> >>> > >  drivers/gpu/drm/i915/intel_display.c | 4 ++--
>> >>> > >  1 file changed, 2 insertions(+), 2 deletions(-)
>> >>> > >
>> >>> > > diff --git a/drivers/gpu/drm/i915/intel_display.c
>> >>> > > b/drivers/gpu/drm/i915/intel_display.c
>> >>> > > index efe8299..9c924e9 100644
>> >>> > > --- a/drivers/gpu/drm/i915/intel_display.c
>> >>> > > +++ b/drivers/gpu/drm/i915/intel_display.c
>> >>> > > @@ -4564,14 +4564,14 @@ static void i9xx_set_pipeconf(struct
>> >>> > > intel_crtc
>> >>> > > *intel_crtc)
>> >>> > >         pipeconf = I915_READ(PIPECONF(intel_crtc->pipe));
>> >>> > >
>> >>> > >         if (intel_crtc->pipe == 0 && INTEL_INFO(dev)->gen < 4) {
>> >>> > > -               /* Enable pixel doubling when the dot clock is >
>> 90%
>> >>> > > of
>> >>> > > the (display)
>> >>> > > +               /* Enable pixel doubling when the dot clock is >
>> 85%
>> >>> > > of
>> >>> > > the (display)
>> >>> > >                  * core speed.
>> >>> > >                  *
>> >>> > >                  * XXX: No double-wide on 915GM pipe B. Is that
>> the
>> >>> > > only
>> >>> > > reason for the
>> >>> > >                  * pipe == 0 check?
>> >>> > >                  */
>> >>> > >                 if (intel_crtc->config.requested_mode.clock >
>> >>> > > -
>> dev_priv->display.get_display_clock_speed(dev) *
>> >>> > > 9 /
>> >>> > > 10)
>> >>> > > +
>> dev_priv->display.get_display_clock_speed(dev) *
>> >>> > > 17 /
>> >>> > > 20)
>> >>> > >                         pipeconf |= PIPECONF_DOUBLE_WIDE;
>> >>> > >                 else
>> >>> > >                         pipeconf &= ~PIPECONF_DOUBLE_WIDE;
>> >>> > > --
>> >>> > > 1.8.2.1
>> >>> > >
>> >>> > >
>> >>>
>> >>> > _______________________________________________
>> >>> > Intel-gfx mailing list
>> >>> > Intel-gfx@lists.freedesktop.org
>> >>> > http://lists.freedesktop.org/mailman/listinfo/intel-gfx
>> >>>
>> >>>
>> >>> --
>> >>> Daniel Vetter
>> >>> Software Engineer, Intel Corporation
>> >>> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
>> >>
>> >>
>> >
>>
>>
>>
>> --
>> Daniel Vetter
>> Software Engineer, Intel Corporation
>> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
>>
>
>

[-- Attachment #1.2: Type: text/html, Size: 8050 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

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

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

* Re: [PATCH] Lower threshold for pixel doubling.
  2013-07-08 18:52             ` Stuart Abercrombie
@ 2013-07-13  0:29               ` Stuart Abercrombie
  0 siblings, 0 replies; 13+ messages in thread
From: Stuart Abercrombie @ 2013-07-13  0:29 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: intel-gfx


[-- Attachment #1.1: Type: text/plain, Size: 5175 bytes --]

Is there some reason why this is a difficult change to evaluate?


On Mon, Jul 8, 2013 at 11:52 AM, Stuart Abercrombie <sabercrombie@google.com
> wrote:

> So, what's the conclusion?
>
>
> On Mon, Jun 24, 2013 at 4:28 PM, Stuart Abercrombie <
> sabercrombie@google.com> wrote:
>
>> This is with the patch.
>>
>>
>> On Sun, Jun 23, 2013 at 11:59 PM, Daniel Vetter <daniel@ffwll.ch> wrote:
>>
>>> On Sat, Jun 22, 2013 at 12:52 AM, Stuart Abercrombie
>>> <sabercrombie@google.com> wrote:
>>> > Maybe I missed something, but I didn't see a response to this.  Can we
>>> get
>>> > this fix in?
>>>
>>> Sorry for the delay, I've lost track of this. Can you please boot with
>>> drm.debug=0xe and attach the full dmesg (with or without your patch)?
>>> -Daniel
>>>
>>> >
>>> >
>>> > On Wed, May 29, 2013 at 9:22 AM, Stuart Abercrombie
>>> > <sabercrombie@google.com> wrote:
>>> >>
>>> >> Without this change I saw PIPE_FIFO_UNDERRUN_STATUS set in PIPEASTAT,
>>> >> which I took to indicate an underrun problem.
>>> >>
>>> >> Here's what I found with other modes on this monitor:
>>> >>
>>> >> 1920x1200 works with pixel doubling enabled. Pixel clock 193.2 MHz.
>>> >> 2048x1152 works with pixel doubling enabled. Pixel clock 198.0 MHz.
>>> >> 1600x1200 works with pixel doubling disabled. Pixel clock 162.0 MHz.
>>> >> 2048x1280 fails with pixel doubling disabled. PIxel clock 174.2 MHz..
>>> >>
>>> >> Based on this, it seems the threshold needs to be be between 162.0MHz
>>> and
>>> >> 174.2MHz, whereas currently it's at 180MHz.  The change puts it at
>>> 170MHz.
>>> >>
>>> >> Stuart
>>> >>
>>> >>
>>> >> On Wed, May 29, 2013 at 8:22 AM, Daniel Vetter <daniel@ffwll.ch>
>>> wrote:
>>> >>>
>>> >>> On Tue, May 28, 2013 at 10:39:07AM -0700, Stuart Abercrombie wrote:
>>> >>> > Any comments?
>>> >>> >
>>> >>> > Without this, plugging one of the older Chromebook models into a
>>> Dell
>>> >>> > U3011
>>> >>> > monitor produces a garbled display at the default 2048x1280
>>> resolution.
>>> >>> >
>>> >>> > The original threshold was apparently fairly arbitrary:
>>> >>> >
>>> >>> >
>>> >>> >
>>> http://cgit.freedesktop.org/~anholt/xf86-video-intel/commit/?id=8fcf9a81179ee8577ddab5e904c58fbfd14cf59c
>>> >>>
>>> >>> Do you see any pipe underruns without this patch? There are some
>>> not-yet
>>> >>> implemented tricks we should be pulling around re-splitting DSP_ARB
>>> fifo
>>> >>> entries, which tend to totally kill high-res modes.
>>> >>> -Daniel
>>> >>>
>>> >>> > .
>>> >>> >
>>> >>> > Stuart
>>> >>> >
>>> >>> >
>>> >>> > On Mon, May 20, 2013 at 11:15 AM, Stuart Abercrombie <
>>> >>> > sabercrombie@chromium.org> wrote:
>>> >>> >
>>> >>> > > 90% of core speed (=180MHz dot clock) is too high for 2048x1280
>>> to
>>> >>> > > get
>>> >>> > > pixel doubling on Pineview, which it needs to avoid underruns, so
>>> >>> > > lower this to 85%.
>>> >>> > >
>>> >>> > > Signed-off-by: Stuart Abercrombie <sabercrombie@chromium.org>
>>> >>> > > ---
>>> >>> > >  drivers/gpu/drm/i915/intel_display.c | 4 ++--
>>> >>> > >  1 file changed, 2 insertions(+), 2 deletions(-)
>>> >>> > >
>>> >>> > > diff --git a/drivers/gpu/drm/i915/intel_display.c
>>> >>> > > b/drivers/gpu/drm/i915/intel_display.c
>>> >>> > > index efe8299..9c924e9 100644
>>> >>> > > --- a/drivers/gpu/drm/i915/intel_display.c
>>> >>> > > +++ b/drivers/gpu/drm/i915/intel_display.c
>>> >>> > > @@ -4564,14 +4564,14 @@ static void i9xx_set_pipeconf(struct
>>> >>> > > intel_crtc
>>> >>> > > *intel_crtc)
>>> >>> > >         pipeconf = I915_READ(PIPECONF(intel_crtc->pipe));
>>> >>> > >
>>> >>> > >         if (intel_crtc->pipe == 0 && INTEL_INFO(dev)->gen < 4) {
>>> >>> > > -               /* Enable pixel doubling when the dot clock is >
>>> 90%
>>> >>> > > of
>>> >>> > > the (display)
>>> >>> > > +               /* Enable pixel doubling when the dot clock is >
>>> 85%
>>> >>> > > of
>>> >>> > > the (display)
>>> >>> > >                  * core speed.
>>> >>> > >                  *
>>> >>> > >                  * XXX: No double-wide on 915GM pipe B. Is that
>>> the
>>> >>> > > only
>>> >>> > > reason for the
>>> >>> > >                  * pipe == 0 check?
>>> >>> > >                  */
>>> >>> > >                 if (intel_crtc->config.requested_mode.clock >
>>> >>> > > -
>>> dev_priv->display.get_display_clock_speed(dev) *
>>> >>> > > 9 /
>>> >>> > > 10)
>>> >>> > > +
>>> dev_priv->display.get_display_clock_speed(dev) *
>>> >>> > > 17 /
>>> >>> > > 20)
>>> >>> > >                         pipeconf |= PIPECONF_DOUBLE_WIDE;
>>> >>> > >                 else
>>> >>> > >                         pipeconf &= ~PIPECONF_DOUBLE_WIDE;
>>> >>> > > --
>>> >>> > > 1.8.2.1
>>> >>> > >
>>> >>> > >
>>> >>>
>>> >>> > _______________________________________________
>>> >>> > Intel-gfx mailing list
>>> >>> > Intel-gfx@lists.freedesktop.org
>>> >>> > http://lists.freedesktop.org/mailman/listinfo/intel-gfx
>>> >>>
>>> >>>
>>> >>> --
>>> >>> Daniel Vetter
>>> >>> Software Engineer, Intel Corporation
>>> >>> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
>>> >>
>>> >>
>>> >
>>>
>>>
>>>
>>> --
>>> Daniel Vetter
>>> Software Engineer, Intel Corporation
>>> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
>>>
>>
>>
>

[-- Attachment #1.2: Type: text/html, Size: 8532 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

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

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

* Re: [PATCH] Lower threshold for pixel doubling.
  2013-06-24 23:28           ` Stuart Abercrombie
  2013-07-08 18:52             ` Stuart Abercrombie
@ 2013-07-26  6:01             ` Daniel Vetter
  2013-07-26  6:19               ` Stéphane Marchesin
  1 sibling, 1 reply; 13+ messages in thread
From: Daniel Vetter @ 2013-07-26  6:01 UTC (permalink / raw)
  To: Stuart Abercrombie; +Cc: intel-gfx

On Tue, Jun 25, 2013 at 1:28 AM, Stuart Abercrombie
<sabercrombie@google.com> wrote:
> This is with the patch.

Hm, nothing really interesting bug I've finally gotten around to some
doc reading and they seem to insist pretty hard that double wide mode
on pipe A only works if we have pipe A linked up with cursor/plane A.
But on gen3 mobile we switch pipes&planes and Stéphane said on irc
that you've changed the logic in there a bit. Can you please check
whether you're still using plane B for pipe A or if there's something
broken?
-Daniel

>
>
> On Sun, Jun 23, 2013 at 11:59 PM, Daniel Vetter <daniel@ffwll.ch> wrote:
>>
>> On Sat, Jun 22, 2013 at 12:52 AM, Stuart Abercrombie
>> <sabercrombie@google.com> wrote:
>> > Maybe I missed something, but I didn't see a response to this.  Can we
>> > get
>> > this fix in?
>>
>> Sorry for the delay, I've lost track of this. Can you please boot with
>> drm.debug=0xe and attach the full dmesg (with or without your patch)?
>> -Daniel
>>
>> >
>> >
>> > On Wed, May 29, 2013 at 9:22 AM, Stuart Abercrombie
>> > <sabercrombie@google.com> wrote:
>> >>
>> >> Without this change I saw PIPE_FIFO_UNDERRUN_STATUS set in PIPEASTAT,
>> >> which I took to indicate an underrun problem.
>> >>
>> >> Here's what I found with other modes on this monitor:
>> >>
>> >> 1920x1200 works with pixel doubling enabled. Pixel clock 193.2 MHz.
>> >> 2048x1152 works with pixel doubling enabled. Pixel clock 198.0 MHz.
>> >> 1600x1200 works with pixel doubling disabled. Pixel clock 162.0 MHz.
>> >> 2048x1280 fails with pixel doubling disabled. PIxel clock 174.2 MHz..
>> >>
>> >> Based on this, it seems the threshold needs to be be between 162.0MHz
>> >> and
>> >> 174.2MHz, whereas currently it's at 180MHz.  The change puts it at
>> >> 170MHz.
>> >>
>> >> Stuart
>> >>
>> >>
>> >> On Wed, May 29, 2013 at 8:22 AM, Daniel Vetter <daniel@ffwll.ch> wrote:
>> >>>
>> >>> On Tue, May 28, 2013 at 10:39:07AM -0700, Stuart Abercrombie wrote:
>> >>> > Any comments?
>> >>> >
>> >>> > Without this, plugging one of the older Chromebook models into a
>> >>> > Dell
>> >>> > U3011
>> >>> > monitor produces a garbled display at the default 2048x1280
>> >>> > resolution.
>> >>> >
>> >>> > The original threshold was apparently fairly arbitrary:
>> >>> >
>> >>> >
>> >>> >
>> >>> > http://cgit.freedesktop.org/~anholt/xf86-video-intel/commit/?id=8fcf9a81179ee8577ddab5e904c58fbfd14cf59c
>> >>>
>> >>> Do you see any pipe underruns without this patch? There are some
>> >>> not-yet
>> >>> implemented tricks we should be pulling around re-splitting DSP_ARB
>> >>> fifo
>> >>> entries, which tend to totally kill high-res modes.
>> >>> -Daniel
>> >>>
>> >>> > .
>> >>> >
>> >>> > Stuart
>> >>> >
>> >>> >
>> >>> > On Mon, May 20, 2013 at 11:15 AM, Stuart Abercrombie <
>> >>> > sabercrombie@chromium.org> wrote:
>> >>> >
>> >>> > > 90% of core speed (=180MHz dot clock) is too high for 2048x1280 to
>> >>> > > get
>> >>> > > pixel doubling on Pineview, which it needs to avoid underruns, so
>> >>> > > lower this to 85%.
>> >>> > >
>> >>> > > Signed-off-by: Stuart Abercrombie <sabercrombie@chromium.org>
>> >>> > > ---
>> >>> > >  drivers/gpu/drm/i915/intel_display.c | 4 ++--
>> >>> > >  1 file changed, 2 insertions(+), 2 deletions(-)
>> >>> > >
>> >>> > > diff --git a/drivers/gpu/drm/i915/intel_display.c
>> >>> > > b/drivers/gpu/drm/i915/intel_display.c
>> >>> > > index efe8299..9c924e9 100644
>> >>> > > --- a/drivers/gpu/drm/i915/intel_display.c
>> >>> > > +++ b/drivers/gpu/drm/i915/intel_display.c
>> >>> > > @@ -4564,14 +4564,14 @@ static void i9xx_set_pipeconf(struct
>> >>> > > intel_crtc
>> >>> > > *intel_crtc)
>> >>> > >         pipeconf = I915_READ(PIPECONF(intel_crtc->pipe));
>> >>> > >
>> >>> > >         if (intel_crtc->pipe == 0 && INTEL_INFO(dev)->gen < 4) {
>> >>> > > -               /* Enable pixel doubling when the dot clock is >
>> >>> > > 90%
>> >>> > > of
>> >>> > > the (display)
>> >>> > > +               /* Enable pixel doubling when the dot clock is >
>> >>> > > 85%
>> >>> > > of
>> >>> > > the (display)
>> >>> > >                  * core speed.
>> >>> > >                  *
>> >>> > >                  * XXX: No double-wide on 915GM pipe B. Is that
>> >>> > > the
>> >>> > > only
>> >>> > > reason for the
>> >>> > >                  * pipe == 0 check?
>> >>> > >                  */
>> >>> > >                 if (intel_crtc->config.requested_mode.clock >
>> >>> > > -                   dev_priv->display.get_display_clock_speed(dev)
>> >>> > > *
>> >>> > > 9 /
>> >>> > > 10)
>> >>> > > +                   dev_priv->display.get_display_clock_speed(dev)
>> >>> > > *
>> >>> > > 17 /
>> >>> > > 20)
>> >>> > >                         pipeconf |= PIPECONF_DOUBLE_WIDE;
>> >>> > >                 else
>> >>> > >                         pipeconf &= ~PIPECONF_DOUBLE_WIDE;
>> >>> > > --
>> >>> > > 1.8.2.1
>> >>> > >
>> >>> > >
>> >>>
>> >>> > _______________________________________________
>> >>> > Intel-gfx mailing list
>> >>> > Intel-gfx@lists.freedesktop.org
>> >>> > http://lists.freedesktop.org/mailman/listinfo/intel-gfx
>> >>>
>> >>>
>> >>> --
>> >>> Daniel Vetter
>> >>> Software Engineer, Intel Corporation
>> >>> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
>> >>
>> >>
>> >
>>
>>
>>
>> --
>> Daniel Vetter
>> Software Engineer, Intel Corporation
>> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
>
>



--
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch

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

* Re: [PATCH] Lower threshold for pixel doubling.
  2013-07-26  6:01             ` Daniel Vetter
@ 2013-07-26  6:19               ` Stéphane Marchesin
  0 siblings, 0 replies; 13+ messages in thread
From: Stéphane Marchesin @ 2013-07-26  6:19 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: intel-gfx, Stuart Abercrombie

On Thu, Jul 25, 2013 at 11:01 PM, Daniel Vetter <daniel@ffwll.ch> wrote:
> On Tue, Jun 25, 2013 at 1:28 AM, Stuart Abercrombie
> <sabercrombie@google.com> wrote:
>> This is with the patch.
>
> Hm, nothing really interesting bug I've finally gotten around to some
> doc reading and they seem to insist pretty hard that double wide mode
> on pipe A only works if we have pipe A linked up with cursor/plane A.
> But on gen3 mobile we switch pipes&planes and Stéphane said on irc
> that you've changed the logic in there a bit. Can you please check
> whether you're still using plane B for pipe A or if there's something
> broken?

We had to change that logic because 3.8 doesn't display anything by
default on that machine (the autodetect logic is broken, as I reported
in
http://lists.freedesktop.org/archives/dri-devel/2013-March/036070.html
). Do you want to address that issue first?

Stéphane

> -Daniel
>
>>
>>
>> On Sun, Jun 23, 2013 at 11:59 PM, Daniel Vetter <daniel@ffwll.ch> wrote:
>>>
>>> On Sat, Jun 22, 2013 at 12:52 AM, Stuart Abercrombie
>>> <sabercrombie@google.com> wrote:
>>> > Maybe I missed something, but I didn't see a response to this.  Can we
>>> > get
>>> > this fix in?
>>>
>>> Sorry for the delay, I've lost track of this. Can you please boot with
>>> drm.debug=0xe and attach the full dmesg (with or without your patch)?
>>> -Daniel
>>>
>>> >
>>> >
>>> > On Wed, May 29, 2013 at 9:22 AM, Stuart Abercrombie
>>> > <sabercrombie@google.com> wrote:
>>> >>
>>> >> Without this change I saw PIPE_FIFO_UNDERRUN_STATUS set in PIPEASTAT,
>>> >> which I took to indicate an underrun problem.
>>> >>
>>> >> Here's what I found with other modes on this monitor:
>>> >>
>>> >> 1920x1200 works with pixel doubling enabled. Pixel clock 193.2 MHz.
>>> >> 2048x1152 works with pixel doubling enabled. Pixel clock 198.0 MHz.
>>> >> 1600x1200 works with pixel doubling disabled. Pixel clock 162.0 MHz.
>>> >> 2048x1280 fails with pixel doubling disabled. PIxel clock 174.2 MHz..
>>> >>
>>> >> Based on this, it seems the threshold needs to be be between 162.0MHz
>>> >> and
>>> >> 174.2MHz, whereas currently it's at 180MHz.  The change puts it at
>>> >> 170MHz.
>>> >>
>>> >> Stuart
>>> >>
>>> >>
>>> >> On Wed, May 29, 2013 at 8:22 AM, Daniel Vetter <daniel@ffwll.ch> wrote:
>>> >>>
>>> >>> On Tue, May 28, 2013 at 10:39:07AM -0700, Stuart Abercrombie wrote:
>>> >>> > Any comments?
>>> >>> >
>>> >>> > Without this, plugging one of the older Chromebook models into a
>>> >>> > Dell
>>> >>> > U3011
>>> >>> > monitor produces a garbled display at the default 2048x1280
>>> >>> > resolution.
>>> >>> >
>>> >>> > The original threshold was apparently fairly arbitrary:
>>> >>> >
>>> >>> >
>>> >>> >
>>> >>> > http://cgit.freedesktop.org/~anholt/xf86-video-intel/commit/?id=8fcf9a81179ee8577ddab5e904c58fbfd14cf59c
>>> >>>
>>> >>> Do you see any pipe underruns without this patch? There are some
>>> >>> not-yet
>>> >>> implemented tricks we should be pulling around re-splitting DSP_ARB
>>> >>> fifo
>>> >>> entries, which tend to totally kill high-res modes.
>>> >>> -Daniel
>>> >>>
>>> >>> > .
>>> >>> >
>>> >>> > Stuart
>>> >>> >
>>> >>> >
>>> >>> > On Mon, May 20, 2013 at 11:15 AM, Stuart Abercrombie <
>>> >>> > sabercrombie@chromium.org> wrote:
>>> >>> >
>>> >>> > > 90% of core speed (=180MHz dot clock) is too high for 2048x1280 to
>>> >>> > > get
>>> >>> > > pixel doubling on Pineview, which it needs to avoid underruns, so
>>> >>> > > lower this to 85%.
>>> >>> > >
>>> >>> > > Signed-off-by: Stuart Abercrombie <sabercrombie@chromium.org>
>>> >>> > > ---
>>> >>> > >  drivers/gpu/drm/i915/intel_display.c | 4 ++--
>>> >>> > >  1 file changed, 2 insertions(+), 2 deletions(-)
>>> >>> > >
>>> >>> > > diff --git a/drivers/gpu/drm/i915/intel_display.c
>>> >>> > > b/drivers/gpu/drm/i915/intel_display.c
>>> >>> > > index efe8299..9c924e9 100644
>>> >>> > > --- a/drivers/gpu/drm/i915/intel_display.c
>>> >>> > > +++ b/drivers/gpu/drm/i915/intel_display.c
>>> >>> > > @@ -4564,14 +4564,14 @@ static void i9xx_set_pipeconf(struct
>>> >>> > > intel_crtc
>>> >>> > > *intel_crtc)
>>> >>> > >         pipeconf = I915_READ(PIPECONF(intel_crtc->pipe));
>>> >>> > >
>>> >>> > >         if (intel_crtc->pipe == 0 && INTEL_INFO(dev)->gen < 4) {
>>> >>> > > -               /* Enable pixel doubling when the dot clock is >
>>> >>> > > 90%
>>> >>> > > of
>>> >>> > > the (display)
>>> >>> > > +               /* Enable pixel doubling when the dot clock is >
>>> >>> > > 85%
>>> >>> > > of
>>> >>> > > the (display)
>>> >>> > >                  * core speed.
>>> >>> > >                  *
>>> >>> > >                  * XXX: No double-wide on 915GM pipe B. Is that
>>> >>> > > the
>>> >>> > > only
>>> >>> > > reason for the
>>> >>> > >                  * pipe == 0 check?
>>> >>> > >                  */
>>> >>> > >                 if (intel_crtc->config.requested_mode.clock >
>>> >>> > > -                   dev_priv->display.get_display_clock_speed(dev)
>>> >>> > > *
>>> >>> > > 9 /
>>> >>> > > 10)
>>> >>> > > +                   dev_priv->display.get_display_clock_speed(dev)
>>> >>> > > *
>>> >>> > > 17 /
>>> >>> > > 20)
>>> >>> > >                         pipeconf |= PIPECONF_DOUBLE_WIDE;
>>> >>> > >                 else
>>> >>> > >                         pipeconf &= ~PIPECONF_DOUBLE_WIDE;
>>> >>> > > --
>>> >>> > > 1.8.2.1
>>> >>> > >
>>> >>> > >
>>> >>>
>>> >>> > _______________________________________________
>>> >>> > Intel-gfx mailing list
>>> >>> > Intel-gfx@lists.freedesktop.org
>>> >>> > http://lists.freedesktop.org/mailman/listinfo/intel-gfx
>>> >>>
>>> >>>
>>> >>> --
>>> >>> Daniel Vetter
>>> >>> Software Engineer, Intel Corporation
>>> >>> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
>>> >>
>>> >>
>>> >
>>>
>>>
>>>
>>> --
>>> Daniel Vetter
>>> Software Engineer, Intel Corporation
>>> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
>>
>>
>
>
>
> --
> Daniel Vetter
> Software Engineer, Intel Corporation
> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [PATCH] Lower threshold for pixel doubling.
  2013-05-20 18:15 [PATCH] Lower threshold for pixel doubling Stuart Abercrombie
  2013-05-28 17:39 ` Stuart Abercrombie
@ 2013-08-16  8:20 ` Chris Wilson
  2013-08-16 12:15   ` Daniel Vetter
  1 sibling, 1 reply; 13+ messages in thread
From: Chris Wilson @ 2013-08-16  8:20 UTC (permalink / raw)
  To: Stuart Abercrombie; +Cc: intel-gfx

On Mon, May 20, 2013 at 11:15:08AM -0700, Stuart Abercrombie wrote:
> 90% of core speed (=180MHz dot clock) is too high for 2048x1280 to get
> pixel doubling on Pineview, which it needs to avoid underruns, so
> lower this to 85%.
> 
> Signed-off-by: Stuart Abercrombie <sabercrombie@chromium.org>

I've not found any rationale in the gen3 bspec describing what the upper
limit on usuable bw is. Nothing to support the old value nor the new, so

Acked-by: Chris Wilson <chris@chris-wilson.co.uk>

And quick before Daniel converts the double-wide tracking to
pipe_config...
-Chris

-- 
Chris Wilson, Intel Open Source Technology Centre

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

* Re: [PATCH] Lower threshold for pixel doubling.
  2013-08-16  8:20 ` Chris Wilson
@ 2013-08-16 12:15   ` Daniel Vetter
  0 siblings, 0 replies; 13+ messages in thread
From: Daniel Vetter @ 2013-08-16 12:15 UTC (permalink / raw)
  To: Chris Wilson, Stuart Abercrombie, intel-gfx

On Fri, Aug 16, 2013 at 09:20:49AM +0100, Chris Wilson wrote:
> On Mon, May 20, 2013 at 11:15:08AM -0700, Stuart Abercrombie wrote:
> > 90% of core speed (=180MHz dot clock) is too high for 2048x1280 to get
> > pixel doubling on Pineview, which it needs to avoid underruns, so
> > lower this to 85%.
> > 
> > Signed-off-by: Stuart Abercrombie <sabercrombie@chromium.org>
> 
> I've not found any rationale in the gen3 bspec describing what the upper
> limit on usuable bw is. Nothing to support the old value nor the new, so
> 
> Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
> 
> And quick before Daniel converts the double-wide tracking to
> pipe_config...

Erhm, we've already fixed this for real in

commit 257a7ffcfaf68718c963db6e9978d1f4f647986b
Author: Daniel Vetter <daniel.vetter@ffwll.ch>
Date:   Fri Jul 26 08:35:42 2013 +0200

    drm/i915: fix pnv display core clock readout out

and the fact that the above mentioned mode with a pixelclock of 167MHz is
right at the display core clock of 166MHz (per spec) suggests that even
the 10% margin we currently have is massive overkill.
-Daniel
-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch

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

end of thread, other threads:[~2013-08-16 12:15 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-20 18:15 [PATCH] Lower threshold for pixel doubling Stuart Abercrombie
2013-05-28 17:39 ` Stuart Abercrombie
2013-05-29 15:22   ` Daniel Vetter
2013-05-29 16:22     ` Stuart Abercrombie
2013-06-21 22:52       ` Stuart Abercrombie
2013-06-24  6:59         ` Daniel Vetter
2013-06-24 23:28           ` Stuart Abercrombie
2013-07-08 18:52             ` Stuart Abercrombie
2013-07-13  0:29               ` Stuart Abercrombie
2013-07-26  6:01             ` Daniel Vetter
2013-07-26  6:19               ` Stéphane Marchesin
2013-08-16  8:20 ` Chris Wilson
2013-08-16 12:15   ` Daniel Vetter

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