All of lore.kernel.org
 help / color / mirror / Atom feed
* btattach: auto triggering at boot time by Linux distributions
@ 2016-09-04 17:10 Jérôme de Bretagne
  2016-09-04 19:30 ` Marcel Holtmann
  0 siblings, 1 reply; 13+ messages in thread
From: Jérôme de Bretagne @ 2016-09-04 17:10 UTC (permalink / raw)
  To: linux-bluetooth

Hello,

>From a Linux distribution point of view, what part of the stack is
expected (or would you recommend) to trigger the user-space btattach
command, to have Bluetooth enabled automatically at boot?

On an older computer, hot-plugging a Bluetooth USB adapter starts
Bluetooth automatically. On a ThinkPad 8 tablet, a manual btattach
command is currently needed to attach the hardware and load the
firmware for its Broadcom chip.

What do distro maintainers need to adapt to achieve the equivalent of
the USB auto-loading case for btattach-based chipsets, now that
btattach is starting to be included in some Linux distributions (such
as in Debian following this report:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=3D816865 even if only
in experimental right now)?

Is it an already planned evolution on BlueZ side? Reading through the
mailing list, it doesn't seem to be the case but I may have missed a
discussion.

If not, any hints would be really appreciated, and especially your
view on which SW component would be a good candidate to take care of
this initialization task. Thanks a lot.

Regards,
J=C3=A9r=C3=B4me

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

* Re: btattach: auto triggering at boot time by Linux distributions
  2016-09-04 17:10 btattach: auto triggering at boot time by Linux distributions Jérôme de Bretagne
@ 2016-09-04 19:30 ` Marcel Holtmann
  2016-09-05 21:40   ` Jérôme de Bretagne
  2016-09-07 21:25   ` Jérôme de Bretagne
  0 siblings, 2 replies; 13+ messages in thread
From: Marcel Holtmann @ 2016-09-04 19:30 UTC (permalink / raw)
  To: Jérôme de Bretagne; +Cc: linux-bluetooth

Hi Jerome,

> From a Linux distribution point of view, what part of the stack is
> expected (or would you recommend) to trigger the user-space btattach
> command, to have Bluetooth enabled automatically at boot?
> 
> On an older computer, hot-plugging a Bluetooth USB adapter starts
> Bluetooth automatically. On a ThinkPad 8 tablet, a manual btattach
> command is currently needed to attach the hardware and load the
> firmware for its Broadcom chip.
> 
> What do distro maintainers need to adapt to achieve the equivalent of
> the USB auto-loading case for btattach-based chipsets, now that
> btattach is starting to be included in some Linux distributions (such
> as in Debian following this report:
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=816865 even if only
> in experimental right now)?
> 
> Is it an already planned evolution on BlueZ side? Reading through the
> mailing list, it doesn't seem to be the case but I may have missed a
> discussion.
> 
> If not, any hints would be really appreciated, and especially your
> view on which SW component would be a good candidate to take care of
> this initialization task. Thanks a lot.

the real evolution would be that we get a serial bus (as discussed a few weeks ago) which then the UART kernel drivers can enumerate its devices on.

Until then, you need an userspace part that triggers btattach with the right hardware id on the right /dev/ttySx device node as soon as it becomes available. So that means udev rules. However the problem is and always has been to figure out what hardware is behind what /dev/ttySx. If you are lucky it is part of ACPI tables or DT. If you are unlucky you need a DT overlay or hardcode it.

The pain point is really that the kernel has all the information we need. Except people kept insisting on creating /dev/ttySx devices and let someone else deal with the fact that it is an actual Bluetooth chip behind it.

That said, it has gotten better when we moved power control into the Intel and Broadcom drivers. Which means you no longer need to fiddle with RFKILL to get your GPIOs set up. That was a huge mess as well when people though we just expose the power control of the TTY as RFKILL switches and leave userspace totally in the dark and jump through 10 hoops before getting things working.

Regards

Marcel


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

* Re: btattach: auto triggering at boot time by Linux distributions
  2016-09-04 19:30 ` Marcel Holtmann
@ 2016-09-05 21:40   ` Jérôme de Bretagne
  2016-09-05 22:31     ` Marcel Holtmann
  2016-09-07 21:25   ` Jérôme de Bretagne
  1 sibling, 1 reply; 13+ messages in thread
From: Jérôme de Bretagne @ 2016-09-05 21:40 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: linux-bluetooth

Hi Marcel,

> the real evolution would be that we get a serial bus (as discussed a
> few weeks ago) which then the UART kernel drivers can enumerate its
> devices on.

I've read this discussion, thanks for the pointer, and I've seen the
latest patch set proposal from Rob Herring reusing the existing serio
bus. 

If I understood correctly, you would like to stop exposing /dev/ttyX
for Bluetooth UART drivers in the long run. Would it mean that the
user-space btattach will then be deprecated and the firmware loading
will be moved into the kernel itself? Or another approach instead?

> Until then, you need an userspace part that triggers btattach with
> the right hardware id on the right /dev/ttySx device node as soon as
> it becomes available. So that means udev rules.

Great, I will investigate the udev rules direction.

>  However the problem is and always has been to figure out what
> hardware is behind what /dev/ttySx. If you are lucky it is part of
> ACPI tables or DT. If you are unlucky you need a DT overlay or
> hardcode it.

I faced that precise limitation when I was trying to find out what was
the chipset ACPI ID on the ThinkPad 8 tablet, to guess which btattach
parameter to use. And I don't remember finding it in the ACPI tables :(

I fear I will have to hardcode it to get started, and then investigate
the usage of a DT overlay in a second step.

Regards,
Jérôme

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

* Re: btattach: auto triggering at boot time by Linux distributions
  2016-09-05 21:40   ` Jérôme de Bretagne
@ 2016-09-05 22:31     ` Marcel Holtmann
  2016-09-06 21:35       ` Jérôme de Bretagne
  2016-09-06 21:41       ` Jérôme de Bretagne
  0 siblings, 2 replies; 13+ messages in thread
From: Marcel Holtmann @ 2016-09-05 22:31 UTC (permalink / raw)
  To: Jérôme de Bretagne; +Cc: linux-bluetooth

Hi Jerome,

>> the real evolution would be that we get a serial bus (as discussed a
>> few weeks ago) which then the UART kernel drivers can enumerate its
>> devices on.
> 
> I've read this discussion, thanks for the pointer, and I've seen the
> latest patch set proposal from Rob Herring reusing the existing serio
> bus. 
> 
> If I understood correctly, you would like to stop exposing /dev/ttyX
> for Bluetooth UART drivers in the long run. Would it mean that the
> user-space btattach will then be deprecated and the firmware loading
> will be moved into the kernel itself? Or another approach instead?

firmware loading is already in the kernel. At least for Broadcom and Intel based devices.

>> Until then, you need an userspace part that triggers btattach with
>> the right hardware id on the right /dev/ttySx device node as soon as
>> it becomes available. So that means udev rules.
> 
> Great, I will investigate the udev rules direction.
> 
>> However the problem is and always has been to figure out what
>> hardware is behind what /dev/ttySx. If you are lucky it is part of
>> ACPI tables or DT. If you are unlucky you need a DT overlay or
>> hardcode it.
> 
> I faced that precise limitation when I was trying to find out what was
> the chipset ACPI ID on the ThinkPad 8 tablet, to guess which btattach
> parameter to use. And I don't remember finding it in the ACPI tables :(
> 
> I fear I will have to hardcode it to get started, and then investigate
> the usage of a DT overlay in a second step.

I do not have the ACPI tables available, but the kernel drivers will map the ACPI ID. So if you look into hci_bcm.c or hci_intel.c you should find the ones. Each chip should have a new ACPI ID on Intel platforms.

Regards

Marcel


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

* Re: btattach: auto triggering at boot time by Linux distributions
  2016-09-05 22:31     ` Marcel Holtmann
@ 2016-09-06 21:35       ` Jérôme de Bretagne
  2016-09-06 21:41       ` Jérôme de Bretagne
  1 sibling, 0 replies; 13+ messages in thread
From: Jérôme de Bretagne @ 2016-09-06 21:35 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: linux-bluetooth

[-- Attachment #1: Type: text/plain, Size: 927 bytes --]

Hi Marcel,

> >> the real evolution would be that we get a serial bus (as discussed a
> >> few weeks ago) which then the UART kernel drivers can enumerate its
> >> devices on.
> >
> > If I understood correctly, you would like to stop exposing /dev/ttyX
> > for Bluetooth UART drivers in the long run. Would it mean that the
> > user-space btattach will then be deprecated and the firmware loading
> > will be moved into the kernel itself? Or another approach instead?
>
> firmware loading is already in the kernel. At least for Broadcom and
> Intel based devices.

I wanted to mean: moving the firmware loading *triggering* all in kernel,
with the future UART device enumeration. Or do you still see a benefit to
keep the "attach" step in user space, to cover some specific use cases
maybe?

I'll keep following the serial bus discussions, this is a every interesting
evolution.

Thanks again,
Jérôme

[-- Attachment #2: Type: text/html, Size: 1130 bytes --]

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

* Re: btattach: auto triggering at boot time by Linux distributions
  2016-09-05 22:31     ` Marcel Holtmann
  2016-09-06 21:35       ` Jérôme de Bretagne
@ 2016-09-06 21:41       ` Jérôme de Bretagne
  1 sibling, 0 replies; 13+ messages in thread
From: Jérôme de Bretagne @ 2016-09-06 21:41 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: linux-bluetooth

[-- Attachment #1: Type: text/plain, Size: 919 bytes --]

Hi Marcel,

>>> the real evolution would be that we get a serial bus (as discussed a
>>> few weeks ago) which then the UART kernel drivers can enumerate its
>>> devices on.
>>
>> If I understood correctly, you would like to stop exposing /dev/ttyX
>> for Bluetooth UART drivers in the long run. Would it mean that the
>> user-space btattach will then be deprecated and the firmware loading
>> will be moved into the kernel itself? Or another approach instead?
>
> firmware loading is already in the kernel. At least for Broadcom and
> Intel based devices.

I wanted to mean: moving the firmware loading *triggering* all in kernel,
with the future UART device enumeration. Or do you still see a benefit to
keep the "attach" step in user space, to cover some specific use cases
maybe?

I'll keep following the serial bus discussions, this is a every interesting
evolution.

Thanks again,
Jérôme

[-- Attachment #2: Type: text/html, Size: 1054 bytes --]

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

* Re: btattach: auto triggering at boot time by Linux distributions
  2016-09-04 19:30 ` Marcel Holtmann
  2016-09-05 21:40   ` Jérôme de Bretagne
@ 2016-09-07 21:25   ` Jérôme de Bretagne
  2016-09-07 22:59     ` Marcel Holtmann
  1 sibling, 1 reply; 13+ messages in thread
From: Jérôme de Bretagne @ 2016-09-07 21:25 UTC (permalink / raw)
  To: Marcel Holtmann, linux-bluetooth

Hi Marcel,

> So that means udev rules. [...] If you are unlucky you need a DT overlay
> or hardcode it.

So I've followed your suggestion and I've created a udev rule (on a Debian
system). Here is what it looks like for the moment, choosing first the
simpler hardcoding option:

jdb@thinkpad8:~$ cat /etc/udev/rules.d/99-bluetooth-attach-broadcom.rules 
SUBSYSTEM=="tty", KERNEL=="ttyS1", KERNELS=="80860F0A:00",
RUN+="/usr/bin/btattach --bredr /dev/ttyS1 -P bcm"

Rebooting the tablet, good news, the rule seems to properly execute as I can
find btattach in the list of running processes:

jdb@thinkpad8:~$ ps auxw | grep btattach
root      1155  0.0  0.0   6372   728 ?        S    22:04   0:00
/usr/bin/btattach --bredr /dev/ttyS1 -P bcm

and I can see the firmware loading happening quite early in the boot process

jdb@thinkpad8:~$ dmesg | grep "bluetooth.* firmware"
[    5.528293] bluetooth hci0: firmware: direct-loading firmware
brcm/BCM.hcd

However to my surprise Bluetooth is not enabled properly or at all, the
Bluetooth panel in the Gnome settings remains grayed out and bluetoothctl
doesn't detect a Controller. At some later points, I even see the btattach
process disappear by itself.

That's just an uneducated assumption but it seems that somehow I am hitting
a timing condition issue and maybe it ends up trying to attach too early
(compared to what precisely? I have no idea). I'm saying this because if I
launch the btattach command manually at any later timee, it works fine.

Do you have any guess of what could be the issue I'm hitting here? Any
logs/commands in particular that would be useful?


> Until then, you need an userspace part that triggers btattach with the
> right hardware id on the right /dev/ttySx device node as soon as it
> becomes available.

Maybe my mistake is that I've interpreted your sentence: "as soon as *it*
becomes available" to assume that "it" was referring to the /dev/ttyS1
device node. I'll try to see if I can create another udev rule that would
trigger based on the actual BT chipset becoming available, and not based on
/dev/ttyS1 , but I'm still looking for how to do it with udev.

Regards,

Jérôme


P.S. Here is the output of the udevadm command I've used to help me create
the ttyS1-based rule in the first place:

jdb@thinkpad8:~$ udevadm info -a -n /dev/ttyS1

Udevadm info starts with the device specified by the devpath and then
walks up the chain of parent devices. It prints for every device
found, all possible attributes in the udev rules key format.
A rule to match, can be composed by the attributes of the device
and the attributes from one single parent device.

  looking at device '/devices/platform/80860F0A:00/tty/ttyS1':
    KERNEL=="ttyS1"
    SUBSYSTEM=="tty"
    DRIVER==""

  looking at parent device '/devices/platform/80860F0A:00':
    KERNELS=="80860F0A:00"
    SUBSYSTEMS=="platform"
    DRIVERS=="dw-apb-uart"
    ATTRS{driver_override}=="(null)"

  looking at parent device '/devices/platform':
    KERNELS=="platform"
    SUBSYSTEMS==""
    DRIVERS==""

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

* Re: btattach: auto triggering at boot time by Linux distributions
  2016-09-07 21:25   ` Jérôme de Bretagne
@ 2016-09-07 22:59     ` Marcel Holtmann
  2016-09-08 22:03       ` Jérôme de Bretagne
  0 siblings, 1 reply; 13+ messages in thread
From: Marcel Holtmann @ 2016-09-07 22:59 UTC (permalink / raw)
  To: Jérôme de Bretagne; +Cc: linux-bluetooth

Hi Jerome,

>> So that means udev rules. [...] If you are unlucky you need a DT overlay
>> or hardcode it.
> 
> So I've followed your suggestion and I've created a udev rule (on a Debian
> system). Here is what it looks like for the moment, choosing first the
> simpler hardcoding option:
> 
> jdb@thinkpad8:~$ cat /etc/udev/rules.d/99-bluetooth-attach-broadcom.rules 
> SUBSYSTEM=="tty", KERNEL=="ttyS1", KERNELS=="80860F0A:00",
> RUN+="/usr/bin/btattach --bredr /dev/ttyS1 -P bcm"
> 
> Rebooting the tablet, good news, the rule seems to properly execute as I can
> find btattach in the list of running processes:
> 
> jdb@thinkpad8:~$ ps auxw | grep btattach
> root      1155  0.0  0.0   6372   728 ?        S    22:04   0:00
> /usr/bin/btattach --bredr /dev/ttyS1 -P bcm
> 
> and I can see the firmware loading happening quite early in the boot process
> 
> jdb@thinkpad8:~$ dmesg | grep "bluetooth.* firmware"
> [    5.528293] bluetooth hci0: firmware: direct-loading firmware
> brcm/BCM.hcd
> 
> However to my surprise Bluetooth is not enabled properly or at all, the
> Bluetooth panel in the Gnome settings remains grayed out and bluetoothctl
> doesn't detect a Controller. At some later points, I even see the btattach
> process disappear by itself.
> 
> That's just an uneducated assumption but it seems that somehow I am hitting
> a timing condition issue and maybe it ends up trying to attach too early
> (compared to what precisely? I have no idea). I'm saying this because if I
> launch the btattach command manually at any later timee, it works fine.
> 
> Do you have any guess of what could be the issue I'm hitting here? Any
> logs/commands in particular that would be useful?
> 
> 
>> Until then, you need an userspace part that triggers btattach with the
>> right hardware id on the right /dev/ttySx device node as soon as it
>> becomes available.
> 
> Maybe my mistake is that I've interpreted your sentence: "as soon as *it*
> becomes available" to assume that "it" was referring to the /dev/ttyS1
> device node. I'll try to see if I can create another udev rule that would
> trigger based on the actual BT chipset becoming available, and not based on
> /dev/ttyS1 , but I'm still looking for how to do it with dev.

maybe the RFKILL switch part gets discovered later than the TTY. I don't have a platform to verify, but just at few printk into the probe routine and see if its finds the according GPIOs for power control.

Regards

Marcel


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

* Re: btattach: auto triggering at boot time by Linux distributions
  2016-09-07 22:59     ` Marcel Holtmann
@ 2016-09-08 22:03       ` Jérôme de Bretagne
  2016-09-12  7:29         ` Marcel Holtmann
  0 siblings, 1 reply; 13+ messages in thread
From: Jérôme de Bretagne @ 2016-09-08 22:03 UTC (permalink / raw)
  To: Marcel Holtmann, linux-bluetooth

Hi Marcel, hi everyone,

> > > Until then, you need an userspace part that triggers btattach with the
> > > right hardware id on the right /dev/ttySx device node as soon as it
> > > becomes available.
> > 
> > Maybe my mistake is that I've interpreted your sentence: "as soon as
> > *it* becomes available" to assume that "it" was referring to the
> > /dev/ttyS1 device node. I'll try to see if I can create another udev
> > rule that would trigger based on the actual BT chipset becoming
> > available, and not based on /dev/ttyS1 , but I'm still looking for how
> > to do it with dev.
> 
> maybe the RFKILL switch part gets discovered later than the TTY. I don't
> have a platform to verify, but just at few printk into the probe routine
> and see if its finds the according GPIOs for power control.

I've continued my investigation first by trying to create another udev rule
detecting the actual BCM4324(1) rev B5 Bluetooth chipset this time.

And I'm happy to share that it works finally!! as I have Bluetooth working
at boot.

This is not over though as I've just discovered this via "man udev" :-(

  Starting daemons or other long-running processes is not appropriate
  for udev; the forked processes, detached or not, will be
  unconditionally *killed* after the event handling has finished.

and indeed btattach gets killed later on. For that part, I will continue my
investigations off the list as I've found blogs / articles explaining
several solutions and how to do it using systemd for instance.

Once I'm done, would you be interested to see such a rule integrated into
the BlueZ project directly? Or do you consider this "last mile" integration
work to be more the responsibility of the various Linux distributions?

Thanks again for all your help and your great work on the Bluetooth stack. 

Regards,
Jérôme


P.S. For a ThinkPad 8 tablet, a hardcoded version of the basic working rule
looks like this, in case that can be useful for someone else:

   $ cat /etc/udev/rules.d/98-bluetooth-attach-broadcom.rule
   KERNEL=="BCM2E55:00", RUN+="/usr/bin/btattach --bredr /dev/ttyS1 -P bcm"

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

* Re: btattach: auto triggering at boot time by Linux distributions
  2016-09-08 22:03       ` Jérôme de Bretagne
@ 2016-09-12  7:29         ` Marcel Holtmann
  2016-09-12 20:42           ` Jérôme de Bretagne
  0 siblings, 1 reply; 13+ messages in thread
From: Marcel Holtmann @ 2016-09-12  7:29 UTC (permalink / raw)
  To: Jérôme de Bretagne; +Cc: linux-bluetooth

Hi Jerome,

>>>> Until then, you need an userspace part that triggers btattach with the
>>>> right hardware id on the right /dev/ttySx device node as soon as it
>>>> becomes available.
>>> 
>>> Maybe my mistake is that I've interpreted your sentence: "as soon as
>>> *it* becomes available" to assume that "it" was referring to the
>>> /dev/ttyS1 device node. I'll try to see if I can create another udev
>>> rule that would trigger based on the actual BT chipset becoming
>>> available, and not based on /dev/ttyS1 , but I'm still looking for how
>>> to do it with dev.
>> 
>> maybe the RFKILL switch part gets discovered later than the TTY. I don't
>> have a platform to verify, but just at few printk into the probe routine
>> and see if its finds the according GPIOs for power control.
> 
> I've continued my investigation first by trying to create another udev rule
> detecting the actual BCM4324(1) rev B5 Bluetooth chipset this time.
> 
> And I'm happy to share that it works finally!! as I have Bluetooth working
> at boot.
> 
> This is not over though as I've just discovered this via "man udev" :-(
> 
>   Starting daemons or other long-running processes is not appropriate
>   for udev; the forked processes, detached or not, will be
>   unconditionally *killed* after the event handling has finished.
> 
> and indeed btattach gets killed later on. For that part, I will continue my
> investigations off the list as I've found blogs / articles explaining
> several solutions and how to do it using systemd for instance.
> 
> Once I'm done, would you be interested to see such a rule integrated into
> the BlueZ project directly? Or do you consider this "last mile" integration
> work to be more the responsibility of the various Linux distributions?

we could add a --daemon mode into btattach that can be just started at boot and then monitors udev to auto-attach devices.

Regards

Marcel


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

* Re: btattach: auto triggering at boot time by Linux distributions
  2016-09-12  7:29         ` Marcel Holtmann
@ 2016-09-12 20:42           ` Jérôme de Bretagne
  2016-09-12 22:12             ` Jérôme de Bretagne
  0 siblings, 1 reply; 13+ messages in thread
From: Jérôme de Bretagne @ 2016-09-12 20:42 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: linux-bluetooth

Hi Marcel,

> > [...] For that part, I will continue my investigations off the list as
> > I've found blogs / articles explaining several solutions and how to do
> > it using systemd for instance.
> > 

I've shared my results so far here on StackExchange:

http://unix.stackexchange.com/questions/309219/how-to-enable-bluetooth-autom
atically-at-boot-for-recent-intel-and-broadcom-ch/309263#309263

To sum up in a few words:
1/ launching btattach from a udev rule enables Bluetooth but it gets killed.
2/ launching btattach via systemd works, only when adding a few sec delay.
3/ launching the systemd service from 2/ directly via udev, using the exact
same trigger conditions as in 1/ ends up with Bluetooth not working...

What leaves me really puzzled is the difference between 1/ and 3/, as they
launch exactly the same command at almost the same time during the boot
process, but they give a different result in a 100% reproducible way.

In both cases I can see btattach launched (when checking with $ ps auxw) and
the firmware properly loaded (from $ dmesg) but in scenario 3/ Bluetooth is
simply stuck. I need to kill the existing btattach and trigger a new one to
have Bluetooth working.

That's what gave me the idea to try and add a delay leading to option 2/. I
wasn't really expecting this to work as I had the feeling that launching
btattach from systemd wasn't working for other reasons but that wasn't the
case. I am using this setup 2/ currently and it is doing the job quiet well.

I just don't like this ugly hack and would like to better understand what's
going on, to replace the random delay with the real needed pre-condition to
load btattach "at the right time". So far, my udev rule is simply looking
for the "BCM2E55:00" device event. I've looked at the btattach source code
quickly but I didn't find any clear reference saying what's needed for
btattach to work during the boot sequence.

Do you have any clues or suggestions that I could try on my system?


> we could add a --daemon mode into btattach that can be just started at
> boot and then monitors udev to auto-attach devices.

Coming back to your proposition, if I interpret it correctly, I don't think
that Linux distributions would like the idea of launching btattach as a
daemon (when and in which case?) to then auto-attach devices via udev later
on if needed (on which condition? The above one? With the same timing
issue?). That would add one more dependency. It seems backwards to me, as
udev or systemd monitoring are designed to be the trigger and that's what
I've assessed and got working based on your earlier suggestion.

Once the above boot sequence order / timing dependency is solved, I have the
feeling that option 3/ will be the way to go.

btattach doesn't seem to need such a modification as it is working perfectly
fine as-is. It just needs to be properly integrated within the existing
distro stack. And with serial bus enumeration in-kernel in the future, all
of this will disappear of course :-)

Regards,

Jérôme

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

* Re: btattach: auto triggering at boot time by Linux distributions
  2016-09-12 20:42           ` Jérôme de Bretagne
@ 2016-09-12 22:12             ` Jérôme de Bretagne
  2016-09-14 21:03               ` Timing-related issue when loading the BT firmware on Broadcom Wi+Fi & BT combo chips (was: btattach: auto triggering at boot time by Linux distributions) Jérôme de Bretagne
  0 siblings, 1 reply; 13+ messages in thread
From: Jérôme de Bretagne @ 2016-09-12 22:12 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: linux-bluetooth

[-- Attachment #1: Type: text/plain, Size: 1244 bytes --]

Hello again,

> To sum up in a few words:
> 1/ launching btattach from a udev rule enables Bluetooth but it gets
> killed.
> 2/ launching btattach via systemd works, only when adding a few sec delay.
> 3/ launching the systemd service from 2/ directly via udev, using the
> exact same trigger conditions as in 1/ ends up with Bluetooth not
> working...
> 
> What leaves me really puzzled is the difference between 1/ and 3/, as they
> launch exactly the same command at almost the same time during the boot
> process, but they give a different result in a 100% reproducible way.

I am attaching 5 different dmesg outputs to give a sense of the boot timing
in the different scenarios:

- dmesg.simple-udev-rule corresponds to 1/ -> OK

- dmesg.systemd-standalone-rule-with-1s-delay corresponds to 2/ -> OK
- dmesg.systemd-standalone-rule-no-delay : 2/ without the 1s delay -> KO 

- dmesg.systemd-triggered-by-udev-rule-no-delay corresponds to 3/ -> KO
- dmesg.systemd-tigggered-by-udev-rule-with-1s-delay -> OK

with the line:
   "bluetooth hci0: firmware: direct-loading firmware brcm/BCM.hcd"
giving a good indication of when btattach is launched during the sequence.


Maybe these files will help reveal some clues?

Regards,
Jérôme 

[-- Attachment #2: dmesg.simple-udev-rule --]
[-- Type: text/plain, Size: 49988 bytes --]

[    0.000000] Linux version 4.7.0-1-amd64 (debian-kernel@lists.debian.org) (gcc version 5.4.1 20160803 (Debian 5.4.1-1) ) #1 SMP Debian 4.7.2-1 (2016-08-28)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] x86/fpu: Legacy x87 FPU detected.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000200fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020100000-0x00000000b81c2fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b81c3000-0x00000000b91c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b91c3000-0x00000000b92c2fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000b92c3000-0x00000000b98c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b98c3000-0x00000000b99c2fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000b99c3000-0x00000000b9a02fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000b9a03000-0x00000000ba7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by Phoenix Technologies Ltd.
[    0.000000] efi:  ACPI=0xb9a02000  ACPI 2.0=0xb9a02014  SMBIOS=0xb98a5000  ESRT=0xb8af8000 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 20BN0036UK/20BN0036UK, BIOS GYET26WW (1.26) 01/12/2015
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   1 base 000000000 mask F80000000 write-back
[    0.000000]   2 base 080000000 mask FC0000000 write-back
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   5 base 0BA800000 mask FFF800000 uncachable
[    0.000000]   6 base 100000000 mask FC0000000 write-back
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0xba800 max_arch_pfn = 0x400000000
[    0.000000] Base memory trampoline at [ffff880000029000] 29000 size 24576
[    0.000000] BRK [0x27b56000, 0x27b56fff] PGTABLE
[    0.000000] BRK [0x27b57000, 0x27b57fff] PGTABLE
[    0.000000] BRK [0x27b58000, 0x27b58fff] PGTABLE
[    0.000000] BRK [0x27b59000, 0x27b59fff] PGTABLE
[    0.000000] BRK [0x27b5a000, 0x27b5afff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35d52000-0x36ea0fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000B9A02014 000024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 0x00000000B9A02170 0000E4 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FACP 0x00000000B99FE000 00010C (v05 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: DSDT 0x00000000B99EA000 00F9BF (v02 LENOVO TP-GY    00001260 INTL 20120711)
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: TCPA 0x00000000B9A01000 000032 (v02 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B9A00000 0000B1 (v01 LENOVO ADebTabl 00001000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99FF000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: HPET 0x00000000B99FD000 000038 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: LPIT 0x00000000B99FC000 000104 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: APIC 0x00000000B99FB000 00006C (v03 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: MCFG 0x00000000B99FA000 00003C (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E9000 0005FC (v01 LENOVO CpuDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E7000 0018E6 (v01 LENOVO DptfTab  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E6000 000058 (v01 LENOVO LowPwrM  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E5000 0000FF (v01 LENOVO SoCDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E4000 000763 (v01 PmRef  CpuPm    00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E3000 000290 (v01 PmRef  Cpu0Tst  00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E2000 00017A (v01 PmRef  ApTst    00003000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99E1000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: MSDM 0x00000000B9955000 000055 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BATB 0x00000000B99E0000 000046 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FPDT 0x00000000B99DF000 000054 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B99DE000 00043A (v01 LENOVO Tpm2Tabl 00001000 INTL 20120711)
[    0.000000] ACPI: TPM2 0x00000000B99DD000 000034 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: UEFI 0x00000000B99DC000 00008A (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BGRT 0x00000000B99DB000 000038 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: CSRT 0x00000000B99DA000 00014C (v00 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x13fff7000-0x13fffbfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.000000]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020100000-0x00000000b81c2fff]
[    0.000000]   node   0: [mem 0x00000000b9a03000-0x00000000ba7fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
[    0.000000] On node 0 totalpages: 1019486
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 133 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 11771 pages used for memmap
[    0.000000]   DMA32 zone: 753344 pages, LIFO batch:31
[    0.000000]   Normal zone: 4096 pages used for memmap
[    0.000000]   Normal zone: 262144 pages, LIFO batch:31
[    0.000000] x86/hpet: Will disable the HPET for this platform because it's not reliable
[    0.000000] Reserving Intel graphics stolen memory at 0xbaf00000-0xbeefffff
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-86
[    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: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x200fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xb81c3000-0xb91c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb91c3000-0xb92c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb92c3000-0xb98c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb98c3000-0xb99c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb99c3000-0xb9a02fff]
[    0.000000] PM: Registered nosave memory: [mem 0xba800000-0xbaefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbaf00000-0xbeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbef00000-0xe00f7fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f9000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed02000-0xffffffff]
[    0.000000] e820: [mem 0xbef00000-0xe00f7fff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 33 pages/cpu @ffff88013fc00000 s98264 r8192 d28712 u524288
[    0.000000] pcpu-alloc: s98264 r8192 d28712 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1003422
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3913604K/4077944K available (6004K kernel code, 1096K rwdata, 2752K rodata, 1352K init, 928K bss, 164340K reserved, 0K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:33024 nr_irqs:1024 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Maximum core-clock to bus-clock ratio: 0xc
[    0.000000] Resolved frequency ID: 2, frequency: 133200 KHz
[    0.000000] TSC runs at 1598400 KHz
[    0.000000] lapic_timer_frequency = 532800
[    0.000000] tsc: Detected 1598.400 MHz processor
[    0.000037] Calibrating delay loop (skipped), value calculated using timer frequency.. 3196.80 BogoMIPS (lpj=6393600)
[    0.000045] pid_max: default: 32768 minimum: 301
[    0.000077] ACPI: Core revision 20160422
[    0.046010] ACPI: 10 ACPI AML tables successfully acquired and loaded

[    0.046125] Security Framework initialized
[    0.046132] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.046147] AppArmor: AppArmor disabled by boot time parameter
[    0.046705] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.049030] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.050084] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050099] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050665] CPU: Physical Processor ID: 0
[    0.050671] CPU: Processor Core ID: 0
[    0.050678] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.050681] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.050693] mce: CPU supports 6 MCE banks
[    0.050706] CPU0: Thermal monitoring enabled (TM1)
[    0.050716] process: using mwait in idle threads
[    0.050723] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[    0.050727] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[    0.051167] Freeing SMP alternatives memory: 24K (ffffffffa7a66000 - ffffffffa7a6c000)
[    0.053367] ftrace: allocating 24665 entries in 97 pages
[    0.068461] smpboot: Max logical packages: 1
[    0.068469] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.069537] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.109247] TSC deadline timer enabled
[    0.109254] smpboot: CPU0: Intel(R) Atom(TM) CPU  Z3795  @ 1.60GHz (family: 0x6, model: 0x37, stepping: 0x8)
[    0.109264] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, full-width counters, Intel PMU driver.
[    0.109283] ... version:                3
[    0.109285] ... bit width:              40
[    0.109288] ... generic registers:      2
[    0.109291] ... value mask:             000000ffffffffff
[    0.109293] ... max period:             000000ffffffffff
[    0.109296] ... fixed-purpose events:   3
[    0.109298] ... event mask:             0000000700000003
[    0.110661] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.111023] x86: Booting SMP configuration:
[    0.111028] .... node  #0, CPUs:      #1 #2 #3
[    0.351659] x86: Booted up 1 node, 4 CPUs
[    0.351666] smpboot: Total of 4 processors activated (12793.81 BogoMIPS)
[    0.361735] devtmpfs: initialized
[    0.361921] x86/mm: Memory block size: 128MB
[    0.379627] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    0.379633] PM: Registering ACPI NVS region [mem 0xb98c3000-0xb99c2fff] (1048576 bytes)
[    0.379842] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.389539] pinctrl core: initialized pinctrl subsystem
[    0.399846] NET: Registered protocol family 16
[    0.409533] cpuidle: using governor ladder
[    0.419557] cpuidle: using governor menu
[    0.419668] ACPI: bus type PCI registered
[    0.419673] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.439725] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.439731] PCI: not using MMCONFIG
[    0.439735] PCI: Using configuration type 1 for base access
[    0.453930] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.487755] ACPI: Added _OSI(Module Device)
[    0.487760] ACPI: Added _OSI(Processor Device)
[    0.487763] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.487766] ACPI: Added _OSI(Processor Aggregator Device)
[    0.509082] ACPI: Dynamic OEM Table Load:
[    0.509102] ACPI: SSDT 0xFFFF88013A69B000 0003D7 (v01 PmRef  Cpu0Ist  00003000 INTL 20120711)
[    0.510745] ACPI: Dynamic OEM Table Load:
[    0.510762] ACPI: SSDT 0xFFFF88013B0A3800 000433 (v01 PmRef  Cpu0Cst  00003001 INTL 20120711)
[    0.513093] ACPI: Dynamic OEM Table Load:
[    0.513109] ACPI: SSDT 0xFFFF88013A699400 00015F (v01 PmRef  ApIst    00003000 INTL 20120711)
[    0.514671] ACPI: Dynamic OEM Table Load:
[    0.514685] ACPI: SSDT 0xFFFF88013A691840 00008D (v01 PmRef  ApCst    00003000 INTL 20120711)
[    0.519204] ACPI: Interpreter enabled
[    0.519264] ACPI: (supports S0 S4 S5)
[    0.519268] ACPI: Using IOAPIC for interrupt routing
[    0.519356] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.524966] [Firmware Info]: PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] not reserved in ACPI motherboard resources
[    0.524971] PCI: not using MMCONFIG
[    0.524979] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.528000] ACPI: Power Resource [USBC] (on)
[    0.528851] ACPI: Power Resource [WWPR] (off)
[    0.536092] ACPI: Power Resource [PLPE] (on)
[    0.545225] ACPI: Power Resource [CLK0] (on)
[    0.545347] ACPI: Power Resource [CLK1] (on)
[    0.545715] ACPI: Power Resource [P28X] (off)
[    0.545836] ACPI: Power Resource [P18X] (off)
[    0.548887] ACPI: Power Resource [TCPR] (off)
[    0.557915] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.557929] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.558054] \_SB_.PCI0 (33DB4D5B-1FF7-401C-9657-7441C03DD766): _OSC invalid UUID
[    0.558058] _OSC request data: 1 1e 0
[    0.558067] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.558101] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.558794] PCI host bridge to bus 0000:00
[    0.558802] pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
[    0.558808] pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
[    0.558813] pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
[    0.558818] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.558822] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.558827] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.558832] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.558837] pci_bus 0000:00: root bus resource [mem 0xd0c00000-0xd0ffffff window]
[    0.558842] pci_bus 0000:00: root bus resource [mem 0xbaf00001-0xbef00000 window]
[    0.558847] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xd08ffffe window]
[    0.558852] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed40fff window]
[    0.558857] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.558874] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
[    0.559078] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
[    0.559097] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff]
[    0.559113] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff pref]
[    0.559127] pci 0000:00:02.0: reg 0x20: [io  0x1000-0x1007]
[    0.559345] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
[    0.559370] pci 0000:00:14.0: reg 0x10: [mem 0xd0800000-0xd080ffff 64bit]
[    0.559446] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.559624] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
[    0.559648] pci 0000:00:1a.0: reg 0x10: [mem 0xd0700000-0xd07fffff]
[    0.559663] pci 0000:00:1a.0: reg 0x14: [mem 0xd0600000-0xd06fffff]
[    0.559771] pci 0000:00:1a.0: PME# supported from D0 D3hot
[    0.559944] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
[    0.561047] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561239] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561429] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561618] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561808] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561999] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.562193] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.562383] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.576011] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.576018] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.576023] vgaarb: loaded
[    0.576026] vgaarb: bridge control possible 0000:00:02.0
[    0.576260] PCI: Using ACPI for IRQ routing
[    0.576266] PCI: pci_cache_line_size set to 64 bytes
[    0.576290] Expanded resource reserved due to conflict with PCI Bus 0000:00
[    0.576295] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.576300] e820: reserve RAM buffer [mem 0xb81c3000-0xbbffffff]
[    0.576304] e820: reserve RAM buffer [mem 0xba800000-0xbbffffff]
[    0.576693] amd_nb: Cannot enumerate AMD northbridges
[    0.576724] clocksource: Switched to clocksource refined-jiffies
[    0.592368] VFS: Disk quotas dquot_6.6.0
[    0.601840] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.607959] pnp: PnP ACPI init
[    0.608112] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.608287] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.608294] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.608300] system 00:01: [io  0x0500-0x05fe] has been reserved
[    0.608305] system 00:01: [io  0x0600-0x061f] has been reserved
[    0.608311] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.608320] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.608576] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.611629] pnp: PnP ACPI: found 3 devices
[    0.621532] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.621565] clocksource: Switched to clocksource acpi_pm
[    0.621587] pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
[    0.621592] pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
[    0.621597] pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
[    0.621601] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.621606] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.621610] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.621615] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[    0.621619] pci_bus 0000:00: resource 11 [mem 0xd0c00000-0xd0ffffff window]
[    0.621624] pci_bus 0000:00: resource 12 [mem 0xbaf00001-0xbef00000 window]
[    0.621628] pci_bus 0000:00: resource 13 [mem 0xc0000000-0xd08ffffe window]
[    0.621633] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed40fff window]
[    0.693669] NET: Registered protocol family 2
[    0.705796] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.705967] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.706161] TCP: Hash tables configured (established 32768 bind 32768)
[    0.706240] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.706288] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.733712] NET: Registered protocol family 1
[    0.733751] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.734114] PCI: CLS 0 bytes, default 64
[    0.734241] Unpacking initramfs...
[    1.371148] Freeing initrd memory: 17724K (ffff880035d52000 - ffff880036ea1000)
[    1.371159] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.371164] software IO TLB [mem 0xb41c3000-0xb81c3000] (64MB) mapped at [ffff8800b41c3000-ffff8800b81c2fff]
[    1.371538] simple-framebuffer simple-framebuffer.0: framebuffer at 0xc0000000, 0x500000 bytes, mapped to 0xffffc90000800000
[    1.371545] simple-framebuffer simple-framebuffer.0: format=a8r8g8b8, mode=1280x1024x32, linelength=5120
[    1.381883] Console: switching to colour frame buffer device 160x64
[    1.391898] simple-framebuffer simple-framebuffer.0: fb0: simplefb registered!
[    1.406843] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    1.418403] audit: initializing netlink subsys (disabled)
[    1.418446] audit: type=2000 audit(1473721346.407:1): initialized
[    1.419278] Initialise system trusted keyrings
[    1.419549] workingset: timestamp_bits=37 max_order=20 bucket_order=0
[    1.419580] zbud: loaded
[    1.550720] Key type asymmetric registered
[    1.550726] Asymmetric key parser 'x509' registered
[    1.566568] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    1.566662] io scheduler noop registered
[    1.566667] io scheduler deadline registered
[    1.586564] io scheduler cfq registered (default)
[    1.586697] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.586714] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.586781] intel_idle: MWAIT substates: 0x33000020
[    1.586785] intel_idle: v0.4.1 model 0x37
[    1.586790] intel_idle: max_cstate 1 reached
[    1.586970] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.591316] GHES: HEST is not enabled!
[    1.591481] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.611747] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.626774] 80860F0A:00: ttyS1 at MMIO 0xd094d000 (irq = 39, base_baud = 2764800) is a 16550A
[    1.627235] hpet: number irqs doesn't agree with number of timers
[    1.627291] Linux agpgart interface v0.103
[    1.627390] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    1.627394] AMD IOMMUv2 functionality not available on this system
[    1.628191] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    2.371398] tsc: Refined TSC clocksource calibration: 1599.999 MHz
[    2.371406] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x171023f09ff, max_idle_ns: 440795233615 ns
[    2.663905] i8042: No controller found
[    2.664143] mousedev: PS/2 mouse device common for all mice
[    2.664446] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    2.664488] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram
[    2.664511] intel_pstate: Intel P-state driver initializing
[    2.664758] ledtrig-cpu: registered to indicate activity on CPUs
[    2.735742] NET: Registered protocol family 10
[    2.736921] mip6: Mobile IPv6
[    2.736938] NET: Registered protocol family 17
[    2.736960] mpls_gso: MPLS GSO support
[    2.738416] microcode: CPU0 sig=0x30678, pf=0x2, revision=0x80a
[    2.738464] microcode: CPU1 sig=0x30678, pf=0x2, revision=0x80a
[    2.738512] microcode: CPU2 sig=0x30678, pf=0x2, revision=0x80a
[    2.738548] microcode: CPU3 sig=0x30678, pf=0x2, revision=0x80a
[    2.738826] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    2.739914] registered taskstats version 1
[    2.739929] Loading compiled-in X.509 certificates
[    2.748830] alg: No test for pkcs1pad(rsa,sha256) (pkcs1pad(rsa-generic,sha256))
[    2.750957] Loaded X.509 cert 'Debian Project: Ben Hutchings: 008a018dca80932630'
[    2.751086] zswap: loaded using pool lzo/zbud
[    2.752116] rtc_cmos 00:00: setting system clock to 2016-09-12 23:02:27 UTC (1473721347)
[    2.752861] PM: Hibernation image not present or could not be loaded.
[    2.760358] Freeing unused kernel memory: 1352K (ffffffffa7914000 - ffffffffa7a66000)
[    2.760371] Write protecting the kernel read-only data: 10240k
[    2.761232] Freeing unused kernel memory: 124K (ffff8800273e1000 - ffff880027400000)
[    2.773688] Freeing unused kernel memory: 1344K (ffff8800276b0000 - ffff880027800000)
[    2.791907] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.846703] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.847337] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.847456] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.847592] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.849772] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.849982] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.851362] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.851684] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.852152] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.852601] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.936051] sdhci: Secure Digital Host Controller Interface driver
[    2.936058] sdhci: Copyright(c) Pierre Ossman
[    2.943771] hidraw: raw HID events driver (C) Jiri Kosina
[    2.960179] mmc0: SDHCI controller on ACPI [80860F14:00] using ADMA
[    2.968145] mmc1: SDHCI controller on ACPI [INT33BB:00] using ADMA
[    2.974098] FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
[    3.002363] mmc2: SDHCI controller on ACPI [80860F14:01] using ADMA
[    3.004559] [Firmware Bug]: No valid trip found
[    3.029305] ACPI: bus type USB registered
[    3.029365] usbcore: registered new interface driver usbfs
[    3.029389] usbcore: registered new interface driver hub
[    3.033733] usbcore: registered new device driver usb
[    3.048809] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.048834] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    3.049980] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[    3.049991] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.050444] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.050450] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.050453] usb usb1: Product: xHCI Host Controller
[    3.050456] usb usb1: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.050459] usb usb1: SerialNumber: 0000:00:14.0
[    3.051436] hub 1-0:1.0: USB hub found
[    3.051460] hub 1-0:1.0: 6 ports detected
[    3.055885] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    3.057465] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.059799] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.063119] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    3.097667] SSE version of gcm_enc/dec engaged.
[    3.109729] mmc0: new HS200 MMC card at address 0001
[    3.168934] mmc1: new ultra high speed DDR50 SDIO card at address 0001
[    3.218826] mmcblk0: mmc0:0001 SEM128 116 GiB 
[    3.219026] mmcblk0boot0: mmc0:0001 SEM128 partition 1 4.00 MiB
[    3.219205] mmcblk0boot1: mmc0:0001 SEM128 partition 2 4.00 MiB
[    3.219371] mmcblk0rpmb: mmc0:0001 SEM128 partition 3 4.00 MiB
[    3.239935]  mmcblk0: p1 p2 p3 p4 p5
[    3.372493] clocksource: Switched to clocksource tsc
[    3.653468] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.653507] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    3.653901] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    3.653918] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.653931] usb usb2: Product: xHCI Host Controller
[    3.653943] usb usb2: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.653955] usb usb2: SerialNumber: 0000:00:14.0
[    3.655907] hub 2-0:1.0: USB hub found
[    3.655983] hub 2-0:1.0: 1 port detected
[    3.964956] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[    4.093914] usb 1-1: New USB device found, idVendor=058f, idProduct=9254
[    4.093935] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.093949] usb 1-1: Product: Generic USB Hub
[    4.093961] usb 1-1: Manufacturer: ALCOR
[    4.095075] hub 1-1:1.0: USB hub found
[    4.095226] hub 1-1:1.0: 4 ports detected
[    4.331231] EXT4-fs (mmcblk0p5): mounted filesystem with ordered data mode. Opts: (null)
[    4.333347] usb 1-3: new high-speed USB device number 3 using xhci_hcd
[    4.466644] usb 1-3: New USB device found, idVendor=8087, idProduct=0716
[    4.466651] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.537507] usb 1-1.2: new low-speed USB device number 4 using xhci_hcd
[    4.566842] systemd[1]: RTC configured in localtime, applying delta of 120 minutes to system time.
[    4.629713] usb 1-1.2: New USB device found, idVendor=070a, idProduct=0025
[    4.629720] usb 1-1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.657365] systemd[1]: systemd 231 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[    4.657862] systemd[1]: Detected architecture x86-64.
[    4.662665] systemd[1]: Set hostname to <thinkpad8>.
[    4.701673] usb 1-1.4: new low-speed USB device number 5 using xhci_hcd
[    4.805239] usb 1-1.4: New USB device found, idVendor=070a, idProduct=0025
[    4.805246] usb 1-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.905385] systemd[1]: Created slice System Slice.
[    4.905554] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    4.905580] systemd[1]: Reached target User and Group Name Lookups.
[    4.905811] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    4.905920] systemd[1]: Listening on udev Kernel Socket.
[    4.906004] systemd[1]: Listening on Journal Socket (/dev/log).
[    4.906086] systemd[1]: Listening on Journal Socket.
[    4.917996] systemd[1]: Mounting Debug File System...
[    4.919285] systemd[1]: Mounting Huge Pages File System...
[    4.919444] systemd[1]: Listening on RPCbind Server Activation Socket.
[    4.919527] systemd[1]: Listening on fsck to fsckd communication Socket.
[    4.919706] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    4.919749] systemd[1]: Reached target Swap.
[    4.921091] systemd[1]: Mounting POSIX Message Queue File System...
[    4.921524] systemd[1]: Created slice User and Session Slice.
[    4.921593] systemd[1]: Reached target Slices.
[    4.924849] systemd[1]: Starting Load Kernel Modules...
[    4.925353] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    4.933092] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    4.934381] systemd[1]: Starting Remount Root and Kernel File Systems...
[    4.934538] systemd[1]: Listening on udev Control Socket.
[    4.934886] systemd[1]: Created slice system-getty.slice.
[    4.936241] systemd[1]: Starting Set the console keyboard layout...
[    4.937592] systemd[1]: Mounting RPC Pipe File System...
[    4.937737] systemd[1]: Listening on Syslog Socket.
[    4.937977] systemd[1]: Listening on Journal Audit Socket.
[    4.939303] systemd[1]: Starting Journal Service...
[    4.939503] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    4.939695] systemd[1]: Reached target Encrypted Volumes.
[    4.942959] systemd[1]: Started Load Kernel Modules.
[    4.944511] systemd[1]: Starting Apply Kernel Variables...
[    4.947527] systemd[1]: Started Create list of required static device nodes for the current kernel.
[    4.949177] systemd[1]: Starting Create Static Device Nodes in /dev...
[    4.955872] systemd[1]: Mounted Debug File System.
[    4.955958] systemd[1]: Mounted Huge Pages File System.
[    4.955999] systemd[1]: Mounted POSIX Message Queue File System.
[    4.962045] EXT4-fs (mmcblk0p5): re-mounted. Opts: errors=remount-ro
[    4.964078] systemd[1]: Started Remount Root and Kernel File Systems.
[    4.969453] systemd[1]: Starting udev Coldplug all Devices...
[    4.970970] systemd[1]: Starting Load/Save Random Seed...
[    4.977895] systemd[1]: Started Apply Kernel Variables.
[    4.998982] systemd[1]: Started Journal Service.
[    5.012922] systemd-journald[939]: Received request to flush runtime journal from PID 1
[    5.018035] RPC: Registered named UNIX socket transport module.
[    5.018042] RPC: Registered udp transport module.
[    5.018044] RPC: Registered tcp transport module.
[    5.018046] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.330563] i2c i2c-0: i2c read failed
[    5.352229] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    5.352347] ACPI: Lid Switch [LID0]
[    5.352449] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    5.352456] ACPI: Power Button [PWRF]
[    5.382080] i2c i2c-0: i2c read failed
[    5.385921] Bluetooth: Core ver 2.21
[    5.385957] NET: Registered protocol family 31
[    5.385961] Bluetooth: HCI device and connection manager initialized
[    5.385969] Bluetooth: HCI socket layer initialized
[    5.385975] Bluetooth: L2CAP socket layer initialized
[    5.385988] Bluetooth: SCO socket layer initialized
[    5.409388] [drm] Initialized drm 1.1.0 20060810
[    5.410518] Bluetooth: HCI UART driver ver 2.3
[    5.410525] Bluetooth: HCI UART protocol H4 registered
[    5.410527] Bluetooth: HCI UART protocol BCSP registered
[    5.410529] Bluetooth: HCI UART protocol LL registered
[    5.410531] Bluetooth: HCI UART protocol ATH3K registered
[    5.410533] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    5.410615] Bluetooth: HCI UART protocol Intel registered
[    5.426689] hci_bcm BCM2E55:00: BCM irq: 70
[    5.426756] hci_bcm BCM2E55:00: BCM2E55:00 device registered.
[    5.426838] Bluetooth: HCI UART protocol BCM registered
[    5.426841] Bluetooth: HCI UART protocol QCA registered
[    5.434180] i2c i2c-0: i2c read failed
[    5.470597] ttyS1 - failed to request DMA
[    5.486189] i2c i2c-0: i2c read failed
[    5.518647] [drm] Memory usable by graphics device = 2048M
[    5.518656] checking generic (c0000000 500000) vs hw (c0000000 10000000)
[    5.518659] fb: switching to inteldrmfb from simple
[    5.518719] Console: switching to colour dummy device 80x25
[    5.518870] [drm] Replacing VGA console driver
[    5.518987] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    5.518990] [drm] Driver supports precise vblank timestamp query.
[    5.521552] intel_sst_acpi 80860F28:00: LPE base: 0xd0a00000 size:0x200000
[    5.521558] intel_sst_acpi 80860F28:00: IRAM base: 0xd0ac0000
[    5.521584] intel_sst_acpi 80860F28:00: DRAM base: 0xd0b00000
[    5.521592] intel_sst_acpi 80860F28:00: SHIM base: 0xd0b40000
[    5.521609] intel_sst_acpi 80860F28:00: Mailbox base: 0xd0b44000
[    5.521616] intel_sst_acpi 80860F28:00: DDR base: 0x20000000
[    5.521710] intel_sst_acpi 80860F28:00: Got drv data max stream 25
[    5.538222] i2c i2c-0: i2c read failed
[    5.548772] intel_sst_acpi 80860F28:00: firmware: direct-loading firmware intel/fw_sst_0f28.bin
[    5.550423] Bluetooth: hci0: BCM: chip id 90
[    5.550432] Bluetooth: hci0: BCM (002.006.006) build 0000
[    5.553154] bluetooth hci0: firmware: direct-loading firmware brcm/BCM.hcd
[    5.578719] ACPI: AC Adapter [ADP1] (off-line)
[    5.581750] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    5.635133] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.635887] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2
[    5.635957] [drm] Initialized i915 1.6.0 20160425 for 0000:00:02.0 on minor 0
[    5.710306] i2c i2c-0: i2c read failed
[    5.729003] fbcon: inteldrmfb (fb0) is primary device
[    5.774406] i2c i2c-0: i2c read failed
[    5.823176] random: nonblocking pool is initialized
[    5.847732] rt5640 i2c-10EC5640:01: Device with ID register 0x6271 is not rt5640/39
[    5.858896] ACPI: Battery Slot [BAT0] (battery absent)
[    5.912032] dw_dmac INTL9C60:00: DesignWare DMA Controller, 8 channels
[    5.943489] dw_dmac INTL9C60:01: DesignWare DMA Controller, 8 channels
[    5.943510] wmi: Mapper loaded
[    6.016972] Bluetooth: hci0: BCM (002.006.006) build 1170
[    6.041581] input: PC Speaker as /devices/platform/pcspkr/input/input3
[    6.095548] Console: switching to colour frame buffer device 160x64
[    6.103194] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    6.121198] usbcore: registered new interface driver usbserial
[    6.121224] usbcore: registered new interface driver usbserial_generic
[    6.121245] usbserial: USB Serial support registered for generic
[    6.126325] usbcore: registered new interface driver usb_serial_simple
[    6.126355] usbserial: USB Serial support registered for carelink
[    6.126377] usbserial: USB Serial support registered for zio
[    6.126396] usbserial: USB Serial support registered for funsoft
[    6.126417] usbserial: USB Serial support registered for flashloader
[    6.126437] usbserial: USB Serial support registered for google
[    6.126455] usbserial: USB Serial support registered for vivopay
[    6.126477] usbserial: USB Serial support registered for moto_modem
[    6.126497] usbserial: USB Serial support registered for novatel_gps
[    6.126518] usbserial: USB Serial support registered for hp4x
[    6.126540] usbserial: USB Serial support registered for suunto
[    6.126560] usbserial: USB Serial support registered for siemens_mpi
[    6.126593] usb_serial_simple 1-3:1.0: flashloader converter detected
[    6.126743] usb 1-3: flashloader converter now attached to ttyUSB0
[    6.151044] usbcore: registered new interface driver usbhid
[    6.151050] usbhid: USB HID core driver
[    6.212851] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    6.214546] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.218121] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.221053] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    6.307232] intel_rapl: Found RAPL domain package
[    6.307258] intel_rapl: Found RAPL domain core
[    6.342785] brcmfmac: brcmf_sdio_drivestrengthinit: No SDIO Drive strength init done for chip 4324 rev 6 pmurev 17
[    6.346728] usbcore: registered new interface driver brcmfmac
[    6.352181] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.bin
[    6.353087] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.txt
[    6.371272] iTCO_vendor_support: vendor-support=0
[    6.374344] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    6.374478] iTCO_wdt: Found a Bay Trail SoC TCO device (Version=3, TCOBASE=0x0460)
[    6.382482] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    6.404791] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.404888] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.436457] brcmfmac: brcmf_c_preinit_dcmds: Firmware version = wl0: Feb 24 2015 06:43:35 version 6.25.91.13 (r536868) FWID 01-b48d628a
[    6.482173] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    6.486512] input: gpio-keys as /devices/platform/gpio-keys.1.auto/input/input4
[    6.489042] input: gpio-keys as /devices/platform/gpio-keys.2.auto/input/input5
[    6.489554] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.489639] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.490201] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.490282] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.520761] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.520854] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.551621] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:070A:0025.0003/input/input6
[    6.553991] hid-generic 0003:070A:0025.0003: input,hidraw0: USB HID v1.00 Mouse [HID 070a:0025] on usb-0000:00:14.0-1.2/input0
[    6.554293] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:070A:0025.0004/input/input7
[    6.554570] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.554665] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.608935] hid-generic 0003:070A:0025.0004: input,hidraw1: USB HID v1.10 Keyboard [HID 070a:0025] on usb-0000:00:14.0-1.4/input0
[    6.609509] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.609603] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.612739] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:070A:0025.0005/input/input8
[    6.619908] usb 1-3: USB disconnect, device number 3
[    6.620164] flashloader ttyUSB0: flashloader converter now disconnected from ttyUSB0
[    6.620188] usb_serial_simple 1-3:1.0: device disconnected
[    6.627521] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    6.666249] input: ATML1000:00 03EB:844B as /devices/platform/80860F41:05/i2c-13/i2c-ATML1000:00/0018:03EB:844B.0002/input/input9
[    6.672305] hid-generic 0003:070A:0025.0005: input,hiddev0,hidraw2: USB HID v1.10 Device [HID 070a:0025] on usb-0000:00:14.0-1.4/input1
[    6.673373] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.673463] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.675693] hid-multitouch 0018:03EB:844B.0002: input,hidraw3: I2C HID v1.00 Device [ATML1000:00 03EB:844B] on i2c-ATML1000:00
[    6.676574] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.676671] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.681336] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.681430] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.685231] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.685323] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.687559] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.687672] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.690776] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.690870] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.692701] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.692786] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    7.082983] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    7.082990] Bluetooth: BNEP filters: protocol multicast
[    7.082998] Bluetooth: BNEP socket layer initialized
[    7.700862] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    7.732914] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    7.978150] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   11.316337] usb 1-3: new high-speed USB device number 6 using xhci_hcd
[   11.511958] usb 1-3: New USB device found, idVendor=1199, idProduct=a001
[   11.511965] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   11.511969] usb 1-3: Product: Sierra Wireless EM7345 4G LTE
[   11.511972] usb 1-3: Manufacturer: Sierra Wireless Inc.
[   11.511975] usb 1-3: SerialNumber: 013937001951332
[   11.530657] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.530669] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.551370] cdc_acm 1-3:1.2: ttyACM0: USB ACM device
[   11.552862] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.552873] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.553366] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.553373] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.553971] usbcore: registered new interface driver cdc_acm
[   11.553980] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[   11.559023] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.559034] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.597509] cdc_ncm 1-3:1.0: MAC-Address: 00:00:11:12:13:14
[   11.597516] cdc_ncm 1-3:1.0: setting rx_max = 16384
[   11.598484] cdc_ncm 1-3:1.0 usb0: register 'cdc_ncm' at usb-0000:00:14.0-3, CDC NCM, 00:00:11:12:13:14
[   11.598553] usbcore: registered new interface driver cdc_ncm
[   11.599131] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.599141] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.602333] usbcore: registered new interface driver cdc_wdm
[   11.606645] usbcore: registered new interface driver cdc_mbim
[   11.615950] cdc_ncm 1-3:1.0 enx000011121314: renamed from usb0
[   11.641291] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   11.641494] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   18.592251] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   35.538423] fuse init (API version 7.25)
[   42.311363] Bluetooth: RFCOMM TTY layer initialized
[   42.311386] Bluetooth: RFCOMM socket layer initialized
[   42.311398] Bluetooth: RFCOMM ver 1.11
[   44.415027] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[   44.415042] Bluetooth: HIDP socket layer initialized
[   44.416501] hid-generic 0005:046D:B00D.0006: unknown main item tag 0x0
[   44.416784] input: Ultrathin Touch Mouse as /devices/platform/80860F0A:00/tty/ttyS1/hci0/hci0:12/0005:046D:B00D.0006/input/input11
[   44.418239] hid-generic 0005:046D:B00D.0006: input,hidraw4: BLUETOOTH HID v7.00 Keyboard [Ultrathin Touch Mouse] on b0:10:41:b8:16:6c
[   44.418879] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   44.418891] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   46.413487] hid-generic 0005:046D:B319.0007: unknown main item tag 0x0
[   46.413749] input: Logitech K810 as /devices/platform/80860F0A:00/tty/ttyS1/hci0/hci0:13/0005:046D:B319.0007/input/input12
[   46.416994] hid-generic 0005:046D:B319.0007: input,hidraw5: BLUETOOTH HID v12.01 Keyboard [Logitech K810] on b0:10:41:b8:16:6c
[   46.417580] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   46.417591] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517

[-- Attachment #3: dmesg.systemd-standalone-rule-no-delay --]
[-- Type: text/plain, Size: 48535 bytes --]

[    0.000000] Linux version 4.7.0-1-amd64 (debian-kernel@lists.debian.org) (gcc version 5.4.1 20160803 (Debian 5.4.1-1) ) #1 SMP Debian 4.7.2-1 (2016-08-28)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] x86/fpu: Legacy x87 FPU detected.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000200fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020100000-0x00000000b81c2fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b81c3000-0x00000000b91c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b91c3000-0x00000000b92c2fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000b92c3000-0x00000000b98c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b98c3000-0x00000000b99c2fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000b99c3000-0x00000000b9a02fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000b9a03000-0x00000000ba7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by Phoenix Technologies Ltd.
[    0.000000] efi:  ACPI=0xb9a02000  ACPI 2.0=0xb9a02014  SMBIOS=0xb98a5000  ESRT=0xb8af8000 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 20BN0036UK/20BN0036UK, BIOS GYET26WW (1.26) 01/12/2015
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   1 base 000000000 mask F80000000 write-back
[    0.000000]   2 base 080000000 mask FC0000000 write-back
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   5 base 0BA800000 mask FFF800000 uncachable
[    0.000000]   6 base 100000000 mask FC0000000 write-back
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0xba800 max_arch_pfn = 0x400000000
[    0.000000] Base memory trampoline at [ffff880000029000] 29000 size 24576
[    0.000000] BRK [0x14b56000, 0x14b56fff] PGTABLE
[    0.000000] BRK [0x14b57000, 0x14b57fff] PGTABLE
[    0.000000] BRK [0x14b58000, 0x14b58fff] PGTABLE
[    0.000000] BRK [0x14b59000, 0x14b59fff] PGTABLE
[    0.000000] BRK [0x14b5a000, 0x14b5afff] PGTABLE
[    0.000000] BRK [0x14b5b000, 0x14b5bfff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35d52000-0x36ea0fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000B9A02014 000024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 0x00000000B9A02170 0000E4 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FACP 0x00000000B99FE000 00010C (v05 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: DSDT 0x00000000B99EA000 00F9BF (v02 LENOVO TP-GY    00001260 INTL 20120711)
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: TCPA 0x00000000B9A01000 000032 (v02 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B9A00000 0000B1 (v01 LENOVO ADebTabl 00001000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99FF000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: HPET 0x00000000B99FD000 000038 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: LPIT 0x00000000B99FC000 000104 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: APIC 0x00000000B99FB000 00006C (v03 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: MCFG 0x00000000B99FA000 00003C (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E9000 0005FC (v01 LENOVO CpuDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E7000 0018E6 (v01 LENOVO DptfTab  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E6000 000058 (v01 LENOVO LowPwrM  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E5000 0000FF (v01 LENOVO SoCDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E4000 000763 (v01 PmRef  CpuPm    00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E3000 000290 (v01 PmRef  Cpu0Tst  00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E2000 00017A (v01 PmRef  ApTst    00003000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99E1000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: MSDM 0x00000000B9955000 000055 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BATB 0x00000000B99E0000 000046 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FPDT 0x00000000B99DF000 000054 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B99DE000 00043A (v01 LENOVO Tpm2Tabl 00001000 INTL 20120711)
[    0.000000] ACPI: TPM2 0x00000000B99DD000 000034 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: UEFI 0x00000000B99DC000 00008A (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BGRT 0x00000000B99DB000 000038 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: CSRT 0x00000000B99DA000 00014C (v00 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x13fff8000-0x13fffcfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.000000]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020100000-0x00000000b81c2fff]
[    0.000000]   node   0: [mem 0x00000000b9a03000-0x00000000ba7fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
[    0.000000] On node 0 totalpages: 1019486
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 133 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 11771 pages used for memmap
[    0.000000]   DMA32 zone: 753344 pages, LIFO batch:31
[    0.000000]   Normal zone: 4096 pages used for memmap
[    0.000000]   Normal zone: 262144 pages, LIFO batch:31
[    0.000000] x86/hpet: Will disable the HPET for this platform because it's not reliable
[    0.000000] Reserving Intel graphics stolen memory at 0xbaf00000-0xbeefffff
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-86
[    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: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x200fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xb81c3000-0xb91c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb91c3000-0xb92c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb92c3000-0xb98c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb98c3000-0xb99c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb99c3000-0xb9a02fff]
[    0.000000] PM: Registered nosave memory: [mem 0xba800000-0xbaefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbaf00000-0xbeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbef00000-0xe00f7fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f9000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed02000-0xffffffff]
[    0.000000] e820: [mem 0xbef00000-0xe00f7fff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 33 pages/cpu @ffff88013fc00000 s98264 r8192 d28712 u524288
[    0.000000] pcpu-alloc: s98264 r8192 d28712 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1003422
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3913608K/4077944K available (6004K kernel code, 1096K rwdata, 2752K rodata, 1352K init, 928K bss, 164336K reserved, 0K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:33024 nr_irqs:1024 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Maximum core-clock to bus-clock ratio: 0xc
[    0.000000] Resolved frequency ID: 2, frequency: 133200 KHz
[    0.000000] TSC runs at 1598400 KHz
[    0.000000] lapic_timer_frequency = 532800
[    0.000000] tsc: Detected 1598.400 MHz processor
[    0.000038] Calibrating delay loop (skipped), value calculated using timer frequency.. 3196.80 BogoMIPS (lpj=6393600)
[    0.000046] pid_max: default: 32768 minimum: 301
[    0.000078] ACPI: Core revision 20160422
[    0.046013] ACPI: 10 ACPI AML tables successfully acquired and loaded

[    0.046126] Security Framework initialized
[    0.046132] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.046148] AppArmor: AppArmor disabled by boot time parameter
[    0.046706] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.049032] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.050087] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050103] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050670] CPU: Physical Processor ID: 0
[    0.050677] CPU: Processor Core ID: 0
[    0.050684] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.050687] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.050699] mce: CPU supports 6 MCE banks
[    0.050712] CPU0: Thermal monitoring enabled (TM1)
[    0.050721] process: using mwait in idle threads
[    0.050728] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[    0.050732] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[    0.051172] Freeing SMP alternatives memory: 24K (ffffffff94a66000 - ffffffff94a6c000)
[    0.053372] ftrace: allocating 24665 entries in 97 pages
[    0.068465] smpboot: Max logical packages: 1
[    0.068474] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.069550] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.109261] TSC deadline timer enabled
[    0.109267] smpboot: CPU0: Intel(R) Atom(TM) CPU  Z3795  @ 1.60GHz (family: 0x6, model: 0x37, stepping: 0x8)
[    0.109277] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, full-width counters, Intel PMU driver.
[    0.109296] ... version:                3
[    0.109299] ... bit width:              40
[    0.109301] ... generic registers:      2
[    0.109304] ... value mask:             000000ffffffffff
[    0.109307] ... max period:             000000ffffffffff
[    0.109309] ... fixed-purpose events:   3
[    0.109312] ... event mask:             0000000700000003
[    0.110676] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.111036] x86: Booting SMP configuration:
[    0.111042] .... node  #0, CPUs:      #1 #2 #3
[    0.351670] x86: Booted up 1 node, 4 CPUs
[    0.351678] smpboot: Total of 4 processors activated (12793.79 BogoMIPS)
[    0.361745] devtmpfs: initialized
[    0.361932] x86/mm: Memory block size: 128MB
[    0.379641] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    0.379647] PM: Registering ACPI NVS region [mem 0xb98c3000-0xb99c2fff] (1048576 bytes)
[    0.379855] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.389548] pinctrl core: initialized pinctrl subsystem
[    0.399859] NET: Registered protocol family 16
[    0.409542] cpuidle: using governor ladder
[    0.419571] cpuidle: using governor menu
[    0.419682] ACPI: bus type PCI registered
[    0.419687] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.443742] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.443748] PCI: not using MMCONFIG
[    0.443751] PCI: Using configuration type 1 for base access
[    0.457948] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.497777] ACPI: Added _OSI(Module Device)
[    0.497783] ACPI: Added _OSI(Processor Device)
[    0.497786] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.497789] ACPI: Added _OSI(Processor Aggregator Device)
[    0.519065] ACPI: Dynamic OEM Table Load:
[    0.519086] ACPI: SSDT 0xFFFF88013A653000 0003D7 (v01 PmRef  Cpu0Ist  00003000 INTL 20120711)
[    0.520730] ACPI: Dynamic OEM Table Load:
[    0.520747] ACPI: SSDT 0xFFFF88013A6D9000 000433 (v01 PmRef  Cpu0Cst  00003001 INTL 20120711)
[    0.523077] ACPI: Dynamic OEM Table Load:
[    0.523093] ACPI: SSDT 0xFFFF88013A655800 00015F (v01 PmRef  ApIst    00003000 INTL 20120711)
[    0.524657] ACPI: Dynamic OEM Table Load:
[    0.524672] ACPI: SSDT 0xFFFF88013A657780 00008D (v01 PmRef  ApCst    00003000 INTL 20120711)
[    0.529191] ACPI: Interpreter enabled
[    0.529252] ACPI: (supports S0 S4 S5)
[    0.529256] ACPI: Using IOAPIC for interrupt routing
[    0.529342] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.534960] [Firmware Info]: PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] not reserved in ACPI motherboard resources
[    0.534966] PCI: not using MMCONFIG
[    0.534974] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.537992] ACPI: Power Resource [USBC] (on)
[    0.538850] ACPI: Power Resource [WWPR] (off)
[    0.546098] ACPI: Power Resource [PLPE] (on)
[    0.555230] ACPI: Power Resource [CLK0] (on)
[    0.555357] ACPI: Power Resource [CLK1] (on)
[    0.555727] ACPI: Power Resource [P28X] (off)
[    0.555847] ACPI: Power Resource [P18X] (off)
[    0.558899] ACPI: Power Resource [TCPR] (off)
[    0.567950] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.567965] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.568091] \_SB_.PCI0 (33DB4D5B-1FF7-401C-9657-7441C03DD766): _OSC invalid UUID
[    0.568095] _OSC request data: 1 1e 0
[    0.568105] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.568139] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.568832] PCI host bridge to bus 0000:00
[    0.568840] pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
[    0.568845] pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
[    0.568850] pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
[    0.568855] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.568860] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.568865] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.568870] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.568875] pci_bus 0000:00: root bus resource [mem 0xd0c00000-0xd0ffffff window]
[    0.568880] pci_bus 0000:00: root bus resource [mem 0xbaf00001-0xbef00000 window]
[    0.568884] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xd08ffffe window]
[    0.568889] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed40fff window]
[    0.568895] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.568911] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
[    0.569117] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
[    0.569136] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff]
[    0.569152] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff pref]
[    0.569167] pci 0000:00:02.0: reg 0x20: [io  0x1000-0x1007]
[    0.569379] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
[    0.569404] pci 0000:00:14.0: reg 0x10: [mem 0xd0800000-0xd080ffff 64bit]
[    0.569480] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.569658] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
[    0.569683] pci 0000:00:1a.0: reg 0x10: [mem 0xd0700000-0xd07fffff]
[    0.569698] pci 0000:00:1a.0: reg 0x14: [mem 0xd0600000-0xd06fffff]
[    0.569809] pci 0000:00:1a.0: PME# supported from D0 D3hot
[    0.569983] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
[    0.571084] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.571277] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.571467] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.571656] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.571846] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.572036] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.572230] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.572421] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.586059] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.586067] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.586072] vgaarb: loaded
[    0.586075] vgaarb: bridge control possible 0000:00:02.0
[    0.586304] PCI: Using ACPI for IRQ routing
[    0.586311] PCI: pci_cache_line_size set to 64 bytes
[    0.586334] Expanded resource reserved due to conflict with PCI Bus 0000:00
[    0.586339] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.586344] e820: reserve RAM buffer [mem 0xb81c3000-0xbbffffff]
[    0.586349] e820: reserve RAM buffer [mem 0xba800000-0xbbffffff]
[    0.586755] amd_nb: Cannot enumerate AMD northbridges
[    0.586785] clocksource: Switched to clocksource refined-jiffies
[    0.602365] VFS: Disk quotas dquot_6.6.0
[    0.611805] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.622050] pnp: PnP ACPI init
[    0.622200] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.622372] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.622379] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.622385] system 00:01: [io  0x0500-0x05fe] has been reserved
[    0.622390] system 00:01: [io  0x0600-0x061f] has been reserved
[    0.622396] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.622404] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.622666] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.625721] pnp: PnP ACPI: found 3 devices
[    0.635625] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.635660] clocksource: Switched to clocksource acpi_pm
[    0.635682] pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
[    0.635687] pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
[    0.635692] pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
[    0.635696] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.635701] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.635705] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.635710] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[    0.635715] pci_bus 0000:00: resource 11 [mem 0xd0c00000-0xd0ffffff window]
[    0.635719] pci_bus 0000:00: resource 12 [mem 0xbaf00001-0xbef00000 window]
[    0.635724] pci_bus 0000:00: resource 13 [mem 0xc0000000-0xd08ffffe window]
[    0.635728] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed40fff window]
[    0.707766] NET: Registered protocol family 2
[    0.719895] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.720067] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.720260] TCP: Hash tables configured (established 32768 bind 32768)
[    0.720338] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.720386] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.747807] NET: Registered protocol family 1
[    0.747845] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.748211] PCI: CLS 0 bytes, default 64
[    0.748335] Unpacking initramfs...
[    1.385340] Freeing initrd memory: 17724K (ffff880035d52000 - ffff880036ea1000)
[    1.385351] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.385357] software IO TLB [mem 0xb41c3000-0xb81c3000] (64MB) mapped at [ffff8800b41c3000-ffff8800b81c2fff]
[    1.385730] simple-framebuffer simple-framebuffer.0: framebuffer at 0xc0000000, 0x500000 bytes, mapped to 0xffffc90000800000
[    1.385737] simple-framebuffer simple-framebuffer.0: format=a8r8g8b8, mode=1280x1024x32, linelength=5120
[    1.396089] Console: switching to colour frame buffer device 160x64
[    1.406111] simple-framebuffer simple-framebuffer.0: fb0: simplefb registered!
[    1.420939] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    1.432488] audit: initializing netlink subsys (disabled)
[    1.432534] audit: type=2000 audit(1473722376.423:1): initialized
[    1.433352] Initialise system trusted keyrings
[    1.433652] workingset: timestamp_bits=37 max_order=20 bucket_order=0
[    1.433686] zbud: loaded
[    1.568857] Key type asymmetric registered
[    1.568863] Asymmetric key parser 'x509' registered
[    1.580690] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    1.580788] io scheduler noop registered
[    1.580793] io scheduler deadline registered
[    1.596683] io scheduler cfq registered (default)
[    1.596815] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.596831] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.596901] intel_idle: MWAIT substates: 0x33000020
[    1.596905] intel_idle: v0.4.1 model 0x37
[    1.596911] intel_idle: max_cstate 1 reached
[    1.597092] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.601418] GHES: HEST is not enabled!
[    1.601574] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.621823] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.636873] 80860F0A:00: ttyS1 at MMIO 0xd094d000 (irq = 39, base_baud = 2764800) is a 16550A
[    1.637370] hpet: number irqs doesn't agree with number of timers
[    1.637426] Linux agpgart interface v0.103
[    1.637526] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    1.637530] AMD IOMMUv2 functionality not available on this system
[    1.638319] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    2.385470] tsc: Refined TSC clocksource calibration: 1599.999 MHz
[    2.385478] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x171023f09ff, max_idle_ns: 440795233615 ns
[    2.674021] i8042: No controller found
[    2.674250] mousedev: PS/2 mouse device common for all mice
[    2.674556] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    2.674595] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram
[    2.674617] intel_pstate: Intel P-state driver initializing
[    2.674895] ledtrig-cpu: registered to indicate activity on CPUs
[    2.745834] NET: Registered protocol family 10
[    2.746972] mip6: Mobile IPv6
[    2.746988] NET: Registered protocol family 17
[    2.747011] mpls_gso: MPLS GSO support
[    2.748504] microcode: CPU0 sig=0x30678, pf=0x2, revision=0x80a
[    2.748552] microcode: CPU1 sig=0x30678, pf=0x2, revision=0x80a
[    2.748601] microcode: CPU2 sig=0x30678, pf=0x2, revision=0x80a
[    2.748637] microcode: CPU3 sig=0x30678, pf=0x2, revision=0x80a
[    2.748902] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    2.749955] registered taskstats version 1
[    2.749971] Loading compiled-in X.509 certificates
[    2.759158] alg: No test for pkcs1pad(rsa,sha256) (pkcs1pad(rsa-generic,sha256))
[    2.761312] Loaded X.509 cert 'Debian Project: Ben Hutchings: 008a018dca80932630'
[    2.761441] zswap: loaded using pool lzo/zbud
[    2.762483] rtc_cmos 00:00: setting system clock to 2016-09-12 23:19:37 UTC (1473722377)
[    2.763219] PM: Hibernation image not present or could not be loaded.
[    2.770877] Freeing unused kernel memory: 1352K (ffffffff94914000 - ffffffff94a66000)
[    2.770886] Write protecting the kernel read-only data: 10240k
[    2.771418] Freeing unused kernel memory: 124K (ffff8800143e1000 - ffff880014400000)
[    2.782185] Freeing unused kernel memory: 1344K (ffff8800146b0000 - ffff880014800000)
[    2.799583] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.858096] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.858732] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.858853] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.858992] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.860112] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.860281] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.861265] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.861495] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.861716] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.862001] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.941636] sdhci: Secure Digital Host Controller Interface driver
[    2.941642] sdhci: Copyright(c) Pierre Ossman
[    2.958129] hidraw: raw HID events driver (C) Jiri Kosina
[    2.967152] mmc0: SDHCI controller on ACPI [80860F14:00] using ADMA
[    2.975588] mmc1: SDHCI controller on ACPI [INT33BB:00] using ADMA
[    2.982879] FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
[    3.003543] mmc2: SDHCI controller on ACPI [80860F14:01] using ADMA
[    3.038799] ACPI: bus type USB registered
[    3.038857] usbcore: registered new interface driver usbfs
[    3.038884] usbcore: registered new interface driver hub
[    3.038940] usbcore: registered new device driver usb
[    3.040050] [Firmware Bug]: No valid trip found
[    3.064893] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    3.067286] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.068515] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.068534] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    3.069300] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.069663] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[    3.069675] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.071674] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.071681] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.071684] usb usb1: Product: xHCI Host Controller
[    3.071687] usb usb1: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.071690] usb usb1: SerialNumber: 0000:00:14.0
[    3.073519] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    3.073760] hub 1-0:1.0: USB hub found
[    3.073783] hub 1-0:1.0: 6 ports detected
[    3.107747] SSE version of gcm_enc/dec engaged.
[    3.115613] mmc0: new HS200 MMC card at address 0001
[    3.170343] mmc1: new ultra high speed DDR50 SDIO card at address 0001
[    3.236947] mmcblk0: mmc0:0001 SEM128 116 GiB 
[    3.237580] mmcblk0boot0: mmc0:0001 SEM128 partition 1 4.00 MiB
[    3.237777] mmcblk0boot1: mmc0:0001 SEM128 partition 2 4.00 MiB
[    3.237959] mmcblk0rpmb: mmc0:0001 SEM128 partition 3 4.00 MiB
[    3.261943]  mmcblk0: p1 p2 p3 p4 p5
[    3.386619] clocksource: Switched to clocksource tsc
[    3.675605] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.675643] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    3.676158] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    3.676178] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.676192] usb usb2: Product: xHCI Host Controller
[    3.676204] usb usb2: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.676216] usb usb2: SerialNumber: 0000:00:14.0
[    3.677240] hub 2-0:1.0: USB hub found
[    3.677310] hub 2-0:1.0: 1 port detected
[    3.987111] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[    4.115932] usb 1-1: New USB device found, idVendor=058f, idProduct=9254
[    4.115954] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.115968] usb 1-1: Product: Generic USB Hub
[    4.115979] usb 1-1: Manufacturer: ALCOR
[    4.117006] hub 1-1:1.0: USB hub found
[    4.117176] hub 1-1:1.0: 4 ports detected
[    4.270782] EXT4-fs (mmcblk0p5): mounted filesystem with ordered data mode. Opts: (null)
[    4.359412] usb 1-3: new high-speed USB device number 3 using xhci_hcd
[    4.488744] usb 1-3: New USB device found, idVendor=8087, idProduct=0716
[    4.488750] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.537185] systemd[1]: RTC configured in localtime, applying delta of 120 minutes to system time.
[    4.559603] usb 1-1.2: new low-speed USB device number 4 using xhci_hcd
[    4.635040] systemd[1]: systemd 231 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[    4.635440] systemd[1]: Detected architecture x86-64.
[    4.640314] systemd[1]: Set hostname to <thinkpad8>.
[    4.651911] usb 1-1.2: New USB device found, idVendor=070a, idProduct=0025
[    4.651919] usb 1-1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.723776] usb 1-1.4: new low-speed USB device number 5 using xhci_hcd
[    4.823162] usb 1-1.4: New USB device found, idVendor=070a, idProduct=0025
[    4.823169] usb 1-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.894686] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    4.894770] systemd[1]: Reached target User and Group Name Lookups.
[    4.894868] systemd[1]: Listening on Journal Socket (/dev/log).
[    4.894919] systemd[1]: Listening on fsck to fsckd communication Socket.
[    4.894977] systemd[1]: Listening on udev Kernel Socket.
[    4.895266] systemd[1]: Created slice System Slice.
[    4.895372] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    4.895457] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    4.895695] systemd[1]: Created slice system-getty.slice.
[    4.895773] systemd[1]: Listening on udev Control Socket.
[    4.895938] systemd[1]: Listening on Journal Audit Socket.
[    4.896019] systemd[1]: Listening on Journal Socket.
[    4.908084] systemd[1]: Mounting Debug File System...
[    4.912144] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    4.914431] systemd[1]: Starting Set the console keyboard layout...
[    4.920515] systemd[1]: Starting Load Kernel Modules...
[    4.923317] systemd[1]: Mounting POSIX Message Queue File System...
[    4.923456] systemd[1]: Reached target Encrypted Volumes.
[    4.923604] systemd[1]: Reached target Swap.
[    4.923904] systemd[1]: Listening on Syslog Socket.
[    4.926741] systemd[1]: Starting Journal Service...
[    4.929626] systemd[1]: Mounting Huge Pages File System...
[    4.929900] systemd[1]: Listening on RPCbind Server Activation Socket.
[    4.932447] systemd[1]: Mounting RPC Pipe File System...
[    4.932981] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    4.934791] systemd[1]: Starting Remount Root and Kernel File Systems...
[    4.934962] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    4.935359] systemd[1]: Created slice User and Session Slice.
[    4.935420] systemd[1]: Reached target Slices.
[    4.939842] systemd[1]: Started Create list of required static device nodes for the current kernel.
[    4.942069] systemd[1]: Starting Create Static Device Nodes in /dev...
[    4.945182] systemd[1]: Started Load Kernel Modules.
[    4.946819] systemd[1]: Starting Apply Kernel Variables...
[    4.956294] systemd[1]: Mounted Debug File System.
[    4.956385] systemd[1]: Mounted Huge Pages File System.
[    4.956426] systemd[1]: Mounted POSIX Message Queue File System.
[    4.963149] EXT4-fs (mmcblk0p5): re-mounted. Opts: errors=remount-ro
[    4.964621] systemd[1]: Started Remount Root and Kernel File Systems.
[    4.965997] systemd[1]: Starting Load/Save Random Seed...
[    4.974625] systemd[1]: Starting udev Coldplug all Devices...
[    4.975700] systemd[1]: Started Apply Kernel Variables.
[    4.986694] systemd[1]: Started Journal Service.
[    5.002658] systemd-journald[939]: Received request to flush runtime journal from PID 1
[    5.020230] RPC: Registered named UNIX socket transport module.
[    5.020236] RPC: Registered udp transport module.
[    5.020238] RPC: Registered tcp transport module.
[    5.020240] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.308029] i2c i2c-0: i2c read failed
[    5.317007] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    5.317126] ACPI: Lid Switch [LID0]
[    5.317231] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    5.317238] ACPI: Power Button [PWRF]
[    5.331296] Bluetooth: Core ver 2.21
[    5.331328] NET: Registered protocol family 31
[    5.331331] Bluetooth: HCI device and connection manager initialized
[    5.331339] Bluetooth: HCI socket layer initialized
[    5.331344] Bluetooth: L2CAP socket layer initialized
[    5.331356] Bluetooth: SCO socket layer initialized
[    5.360148] i2c i2c-0: i2c read failed
[    5.405672] Bluetooth: HCI UART driver ver 2.3
[    5.405678] Bluetooth: HCI UART protocol H4 registered
[    5.405681] Bluetooth: HCI UART protocol BCSP registered
[    5.405683] Bluetooth: HCI UART protocol LL registered
[    5.405685] Bluetooth: HCI UART protocol ATH3K registered
[    5.405687] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    5.405767] Bluetooth: HCI UART protocol Intel registered
[    5.418247] [drm] Initialized drm 1.1.0 20060810
[    5.420123] i2c i2c-0: i2c read failed
[    5.420685] hci_bcm BCM2E55:00: BCM irq: 70
[    5.420751] hci_bcm BCM2E55:00: BCM2E55:00 device registered.
[    5.420827] Bluetooth: HCI UART protocol BCM registered
[    5.420831] Bluetooth: HCI UART protocol QCA registered
[    5.472551] i2c i2c-0: i2c read failed
[    5.507570] intel_sst_acpi 80860F28:00: LPE base: 0xd0a00000 size:0x200000
[    5.507576] intel_sst_acpi 80860F28:00: IRAM base: 0xd0ac0000
[    5.507610] intel_sst_acpi 80860F28:00: DRAM base: 0xd0b00000
[    5.507619] intel_sst_acpi 80860F28:00: SHIM base: 0xd0b40000
[    5.507626] intel_sst_acpi 80860F28:00: Mailbox base: 0xd0b44000
[    5.507636] intel_sst_acpi 80860F28:00: DDR base: 0x20000000
[    5.507720] intel_sst_acpi 80860F28:00: Got drv data max stream 25
[    5.518640] intel_sst_acpi 80860F28:00: firmware: direct-loading firmware intel/fw_sst_0f28.bin
[    5.524407] i2c i2c-0: i2c read failed
[    5.524918] ACPI: AC Adapter [ADP1] (off-line)
[    5.540875] [drm] Memory usable by graphics device = 2048M
[    5.540886] checking generic (c0000000 500000) vs hw (c0000000 10000000)
[    5.540890] fb: switching to inteldrmfb from simple
[    5.540976] Console: switching to colour dummy device 80x25
[    5.541121] [drm] Replacing VGA console driver
[    5.541268] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    5.541272] [drm] Driver supports precise vblank timestamp query.
[    5.599106] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    5.661589] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.663223] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2
[    5.663425] [drm] Initialized i915 1.6.0 20160425 for 0000:00:02.0 on minor 0
[    5.692392] i2c i2c-0: i2c read failed
[    5.748112] fbcon: inteldrmfb (fb0) is primary device
[    5.757325] i2c i2c-0: i2c read failed
[    5.845782] rt5640 i2c-10EC5640:01: Device with ID register 0x6271 is not rt5640/39
[    5.853024] ACPI: Battery Slot [BAT0] (battery absent)
[    5.877553] dw_dmac INTL9C60:00: DesignWare DMA Controller, 8 channels
[    5.904135] wmi: Mapper loaded
[    5.909316] dw_dmac INTL9C60:01: DesignWare DMA Controller, 8 channels
[    6.016970] Console: switching to colour frame buffer device 160x64
[    6.026402] input: PC Speaker as /devices/platform/pcspkr/input/input3
[    6.043642] usbcore: registered new interface driver usbserial
[    6.043662] usbcore: registered new interface driver usbserial_generic
[    6.043679] usbserial: USB Serial support registered for generic
[    6.052169] usbcore: registered new interface driver usb_serial_simple
[    6.052192] usbserial: USB Serial support registered for carelink
[    6.052212] usbserial: USB Serial support registered for zio
[    6.052230] usbserial: USB Serial support registered for funsoft
[    6.052248] usbserial: USB Serial support registered for flashloader
[    6.052266] usbserial: USB Serial support registered for google
[    6.052285] usbserial: USB Serial support registered for vivopay
[    6.052311] usbserial: USB Serial support registered for moto_modem
[    6.052334] usbserial: USB Serial support registered for novatel_gps
[    6.052351] usbserial: USB Serial support registered for hp4x
[    6.052370] usbserial: USB Serial support registered for suunto
[    6.052387] usbserial: USB Serial support registered for siemens_mpi
[    6.052412] usb_serial_simple 1-3:1.0: flashloader converter detected
[    6.053767] usb 1-3: flashloader converter now attached to ttyUSB0
[    6.073469] usbcore: registered new interface driver usbhid
[    6.073470] usbhid: USB HID core driver
[    6.100027] random: nonblocking pool is initialized
[    6.148630] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    6.207039] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    6.208577] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.211057] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.214538] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    6.295970] brcmfmac: brcmf_sdio_drivestrengthinit: No SDIO Drive strength init done for chip 4324 rev 6 pmurev 17
[    6.311274] usbcore: registered new interface driver brcmfmac
[    6.327310] intel_rapl: Found RAPL domain package
[    6.327318] intel_rapl: Found RAPL domain core
[    6.330269] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.bin
[    6.331497] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.txt
[    6.333807] iTCO_vendor_support: vendor-support=0
[    6.336011] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    6.336125] iTCO_wdt: Found a Bay Trail SoC TCO device (Version=3, TCOBASE=0x0460)
[    6.336696] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    6.371209] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.371307] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.404298] brcmfmac: brcmf_c_preinit_dcmds: Firmware version = wl0: Feb 24 2015 06:43:35 version 6.25.91.13 (r536868) FWID 01-b48d628a
[    6.448516] input: gpio-keys as /devices/platform/gpio-keys.1.auto/input/input4
[    6.448822] input: gpio-keys as /devices/platform/gpio-keys.2.auto/input/input5
[    6.449315] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.449413] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.450018] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.450100] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.452291] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    6.491340] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.491438] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.517700] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:070A:0025.0003/input/input6
[    6.517959] hid-generic 0003:070A:0025.0003: input,hidraw0: USB HID v1.00 Mouse [HID 070a:0025] on usb-0000:00:14.0-1.2/input0
[    6.518206] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:070A:0025.0004/input/input7
[    6.518505] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.518598] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.576103] hid-generic 0003:070A:0025.0004: input,hidraw1: USB HID v1.10 Keyboard [HID 070a:0025] on usb-0000:00:14.0-1.4/input0
[    6.577107] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.577204] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.579559] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:070A:0025.0005/input/input8
[    6.636001] hid-generic 0003:070A:0025.0005: input,hiddev0,hidraw2: USB HID v1.10 Device [HID 070a:0025] on usb-0000:00:14.0-1.4/input1
[    6.636569] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.636665] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.638434] usb 1-3: USB disconnect, device number 3
[    6.639148] flashloader ttyUSB0: flashloader converter now disconnected from ttyUSB0
[    6.639178] usb_serial_simple 1-3:1.0: device disconnected
[    6.662859] input: ATML1000:00 03EB:844B as /devices/platform/80860F41:05/i2c-13/i2c-ATML1000:00/0018:03EB:844B.0002/input/input9
[    6.663083] hid-multitouch 0018:03EB:844B.0002: input,hidraw3: I2C HID v1.00 Device [ATML1000:00 03EB:844B] on i2c-ATML1000:00
[    6.663819] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.663905] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.689138] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    6.697543] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.697636] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.702550] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.702645] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.707784] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.707883] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.720071] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.720167] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.721227] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.721317] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.722059] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.722151] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    7.039164] Bluetooth: hci0: BCM: chip id 90
[    7.039173] Bluetooth: hci0: BCM (002.006.006) build 0000
[    7.081564] bluetooth hci0: firmware: direct-loading firmware brcm/BCM.hcd
[    7.539287] Bluetooth: hci0: BCM (002.006.006) build 1170
[    7.725393] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    7.756267] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    8.003657] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   11.334390] usb 1-3: new high-speed USB device number 6 using xhci_hcd
[   11.490858] usb 1-3: New USB device found, idVendor=1199, idProduct=a001
[   11.490866] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   11.490869] usb 1-3: Product: Sierra Wireless EM7345 4G LTE
[   11.490872] usb 1-3: Manufacturer: Sierra Wireless Inc.
[   11.490875] usb 1-3: SerialNumber: 013937001951332
[   11.499964] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.499976] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.529293] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.529306] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.563562] cdc_ncm 1-3:1.0: MAC-Address: 00:00:11:12:13:14
[   11.563571] cdc_ncm 1-3:1.0: setting rx_max = 16384
[   11.564542] cdc_ncm 1-3:1.0 usb0: register 'cdc_ncm' at usb-0000:00:14.0-3, CDC NCM, 00:00:11:12:13:14
[   11.564610] usbcore: registered new interface driver cdc_ncm
[   11.564725] cdc_acm 1-3:1.2: ttyACM0: USB ACM device
[   11.565691] usbcore: registered new interface driver cdc_acm
[   11.565697] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[   11.566099] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.566109] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.566635] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.566642] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.571009] usbcore: registered new interface driver cdc_wdm
[   11.574789] usbcore: registered new interface driver cdc_mbim
[   11.584970] cdc_ncm 1-3:1.0 enx000011121314: renamed from usb0
[   11.628846] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   11.629046] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   18.676133] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   24.330715] fuse init (API version 7.25)

[-- Attachment #4: dmesg.systemd-standalone-rule-with-1s-delay --]
[-- Type: text/plain, Size: 50048 bytes --]

[    0.000000] Linux version 4.7.0-1-amd64 (debian-kernel@lists.debian.org) (gcc version 5.4.1 20160803 (Debian 5.4.1-1) ) #1 SMP Debian 4.7.2-1 (2016-08-28)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] x86/fpu: Legacy x87 FPU detected.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000200fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020100000-0x00000000b81c2fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b81c3000-0x00000000b91c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b91c3000-0x00000000b92c2fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000b92c3000-0x00000000b98c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b98c3000-0x00000000b99c2fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000b99c3000-0x00000000b9a02fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000b9a03000-0x00000000ba7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by Phoenix Technologies Ltd.
[    0.000000] efi:  ACPI=0xb9a02000  ACPI 2.0=0xb9a02014  SMBIOS=0xb98a5000  ESRT=0xb8af8000 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 20BN0036UK/20BN0036UK, BIOS GYET26WW (1.26) 01/12/2015
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   1 base 000000000 mask F80000000 write-back
[    0.000000]   2 base 080000000 mask FC0000000 write-back
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   5 base 0BA800000 mask FFF800000 uncachable
[    0.000000]   6 base 100000000 mask FC0000000 write-back
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0xba800 max_arch_pfn = 0x400000000
[    0.000000] Base memory trampoline at [ffff880000029000] 29000 size 24576
[    0.000000] BRK [0x3c356000, 0x3c356fff] PGTABLE
[    0.000000] BRK [0x3c357000, 0x3c357fff] PGTABLE
[    0.000000] BRK [0x3c358000, 0x3c358fff] PGTABLE
[    0.000000] BRK [0x3c359000, 0x3c359fff] PGTABLE
[    0.000000] BRK [0x3c35a000, 0x3c35afff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35d52000-0x36ea0fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000B9A02014 000024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 0x00000000B9A02170 0000E4 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FACP 0x00000000B99FE000 00010C (v05 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: DSDT 0x00000000B99EA000 00F9BF (v02 LENOVO TP-GY    00001260 INTL 20120711)
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: TCPA 0x00000000B9A01000 000032 (v02 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B9A00000 0000B1 (v01 LENOVO ADebTabl 00001000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99FF000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: HPET 0x00000000B99FD000 000038 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: LPIT 0x00000000B99FC000 000104 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: APIC 0x00000000B99FB000 00006C (v03 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: MCFG 0x00000000B99FA000 00003C (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E9000 0005FC (v01 LENOVO CpuDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E7000 0018E6 (v01 LENOVO DptfTab  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E6000 000058 (v01 LENOVO LowPwrM  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E5000 0000FF (v01 LENOVO SoCDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E4000 000763 (v01 PmRef  CpuPm    00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E3000 000290 (v01 PmRef  Cpu0Tst  00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E2000 00017A (v01 PmRef  ApTst    00003000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99E1000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: MSDM 0x00000000B9955000 000055 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BATB 0x00000000B99E0000 000046 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FPDT 0x00000000B99DF000 000054 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B99DE000 00043A (v01 LENOVO Tpm2Tabl 00001000 INTL 20120711)
[    0.000000] ACPI: TPM2 0x00000000B99DD000 000034 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: UEFI 0x00000000B99DC000 00008A (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BGRT 0x00000000B99DB000 000038 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: CSRT 0x00000000B99DA000 00014C (v00 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x13fff7000-0x13fffbfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.000000]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020100000-0x00000000b81c2fff]
[    0.000000]   node   0: [mem 0x00000000b9a03000-0x00000000ba7fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
[    0.000000] On node 0 totalpages: 1019486
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 133 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 11771 pages used for memmap
[    0.000000]   DMA32 zone: 753344 pages, LIFO batch:31
[    0.000000]   Normal zone: 4096 pages used for memmap
[    0.000000]   Normal zone: 262144 pages, LIFO batch:31
[    0.000000] x86/hpet: Will disable the HPET for this platform because it's not reliable
[    0.000000] Reserving Intel graphics stolen memory at 0xbaf00000-0xbeefffff
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-86
[    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: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x200fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xb81c3000-0xb91c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb91c3000-0xb92c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb92c3000-0xb98c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb98c3000-0xb99c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb99c3000-0xb9a02fff]
[    0.000000] PM: Registered nosave memory: [mem 0xba800000-0xbaefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbaf00000-0xbeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbef00000-0xe00f7fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f9000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed02000-0xffffffff]
[    0.000000] e820: [mem 0xbef00000-0xe00f7fff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 33 pages/cpu @ffff88013fc00000 s98264 r8192 d28712 u524288
[    0.000000] pcpu-alloc: s98264 r8192 d28712 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1003422
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3913604K/4077944K available (6004K kernel code, 1096K rwdata, 2752K rodata, 1352K init, 928K bss, 164340K reserved, 0K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:33024 nr_irqs:1024 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Maximum core-clock to bus-clock ratio: 0xc
[    0.000000] Resolved frequency ID: 2, frequency: 133200 KHz
[    0.000000] TSC runs at 1598400 KHz
[    0.000000] lapic_timer_frequency = 532800
[    0.000000] tsc: Detected 1598.400 MHz processor
[    0.000038] Calibrating delay loop (skipped), value calculated using timer frequency.. 3196.80 BogoMIPS (lpj=6393600)
[    0.000045] pid_max: default: 32768 minimum: 301
[    0.000077] ACPI: Core revision 20160422
[    0.046015] ACPI: 10 ACPI AML tables successfully acquired and loaded

[    0.046130] Security Framework initialized
[    0.046137] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.046153] AppArmor: AppArmor disabled by boot time parameter
[    0.046714] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.049039] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.050093] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050110] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050677] CPU: Physical Processor ID: 0
[    0.050684] CPU: Processor Core ID: 0
[    0.050691] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.050694] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.050706] mce: CPU supports 6 MCE banks
[    0.050719] CPU0: Thermal monitoring enabled (TM1)
[    0.050728] process: using mwait in idle threads
[    0.050735] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[    0.050739] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[    0.051180] Freeing SMP alternatives memory: 24K (ffffffffbc266000 - ffffffffbc26c000)
[    0.053382] ftrace: allocating 24665 entries in 97 pages
[    0.068480] smpboot: Max logical packages: 1
[    0.068488] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.069566] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.109277] TSC deadline timer enabled
[    0.109283] smpboot: CPU0: Intel(R) Atom(TM) CPU  Z3795  @ 1.60GHz (family: 0x6, model: 0x37, stepping: 0x8)
[    0.109293] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, full-width counters, Intel PMU driver.
[    0.109312] ... version:                3
[    0.109315] ... bit width:              40
[    0.109317] ... generic registers:      2
[    0.109320] ... value mask:             000000ffffffffff
[    0.109323] ... max period:             000000ffffffffff
[    0.109325] ... fixed-purpose events:   3
[    0.109328] ... event mask:             0000000700000003
[    0.110690] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.111051] x86: Booting SMP configuration:
[    0.111056] .... node  #0, CPUs:      #1 #2 #3
[    0.351688] x86: Booted up 1 node, 4 CPUs
[    0.351696] smpboot: Total of 4 processors activated (12793.83 BogoMIPS)
[    0.361763] devtmpfs: initialized
[    0.361949] x86/mm: Memory block size: 128MB
[    0.379656] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    0.379662] PM: Registering ACPI NVS region [mem 0xb98c3000-0xb99c2fff] (1048576 bytes)
[    0.379868] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.389566] pinctrl core: initialized pinctrl subsystem
[    0.399875] NET: Registered protocol family 16
[    0.409561] cpuidle: using governor ladder
[    0.419588] cpuidle: using governor menu
[    0.419698] ACPI: bus type PCI registered
[    0.419703] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.439754] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.439760] PCI: not using MMCONFIG
[    0.439763] PCI: Using configuration type 1 for base access
[    0.453951] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.487782] ACPI: Added _OSI(Module Device)
[    0.487787] ACPI: Added _OSI(Processor Device)
[    0.487790] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.487793] ACPI: Added _OSI(Processor Aggregator Device)
[    0.509113] ACPI: Dynamic OEM Table Load:
[    0.509134] ACPI: SSDT 0xFFFF88013A6BEC00 0003D7 (v01 PmRef  Cpu0Ist  00003000 INTL 20120711)
[    0.510776] ACPI: Dynamic OEM Table Load:
[    0.510793] ACPI: SSDT 0xFFFF88013B0A1800 000433 (v01 PmRef  Cpu0Cst  00003001 INTL 20120711)
[    0.513126] ACPI: Dynamic OEM Table Load:
[    0.513141] ACPI: SSDT 0xFFFF88013B0A3E00 00015F (v01 PmRef  ApIst    00003000 INTL 20120711)
[    0.514703] ACPI: Dynamic OEM Table Load:
[    0.514718] ACPI: SSDT 0xFFFF88013A69A600 00008D (v01 PmRef  ApCst    00003000 INTL 20120711)
[    0.519226] ACPI: Interpreter enabled
[    0.519286] ACPI: (supports S0 S4 S5)
[    0.519290] ACPI: Using IOAPIC for interrupt routing
[    0.519377] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.524984] [Firmware Info]: PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] not reserved in ACPI motherboard resources
[    0.524990] PCI: not using MMCONFIG
[    0.524998] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.528022] ACPI: Power Resource [USBC] (on)
[    0.528872] ACPI: Power Resource [WWPR] (off)
[    0.536131] ACPI: Power Resource [PLPE] (on)
[    0.545258] ACPI: Power Resource [CLK0] (on)
[    0.545381] ACPI: Power Resource [CLK1] (on)
[    0.545748] ACPI: Power Resource [P28X] (off)
[    0.545869] ACPI: Power Resource [P18X] (off)
[    0.548922] ACPI: Power Resource [TCPR] (off)
[    0.557954] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.557969] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.558094] \_SB_.PCI0 (33DB4D5B-1FF7-401C-9657-7441C03DD766): _OSC invalid UUID
[    0.558098] _OSC request data: 1 1e 0
[    0.558108] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.558142] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.558833] PCI host bridge to bus 0000:00
[    0.558841] pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
[    0.558847] pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
[    0.558852] pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
[    0.558857] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.558862] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.558866] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.558871] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.558876] pci_bus 0000:00: root bus resource [mem 0xd0c00000-0xd0ffffff window]
[    0.558881] pci_bus 0000:00: root bus resource [mem 0xbaf00001-0xbef00000 window]
[    0.558886] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xd08ffffe window]
[    0.558891] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed40fff window]
[    0.558896] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.558913] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
[    0.559124] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
[    0.559142] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff]
[    0.559158] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff pref]
[    0.559173] pci 0000:00:02.0: reg 0x20: [io  0x1000-0x1007]
[    0.559385] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
[    0.559409] pci 0000:00:14.0: reg 0x10: [mem 0xd0800000-0xd080ffff 64bit]
[    0.559486] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.559663] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
[    0.559688] pci 0000:00:1a.0: reg 0x10: [mem 0xd0700000-0xd07fffff]
[    0.559702] pci 0000:00:1a.0: reg 0x14: [mem 0xd0600000-0xd06fffff]
[    0.559811] pci 0000:00:1a.0: PME# supported from D0 D3hot
[    0.559985] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
[    0.561087] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561279] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561469] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561660] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561850] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.562040] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.562234] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.562425] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.576058] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.576067] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.576071] vgaarb: loaded
[    0.576075] vgaarb: bridge control possible 0000:00:02.0
[    0.576304] PCI: Using ACPI for IRQ routing
[    0.576311] PCI: pci_cache_line_size set to 64 bytes
[    0.576334] Expanded resource reserved due to conflict with PCI Bus 0000:00
[    0.576339] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.576344] e820: reserve RAM buffer [mem 0xb81c3000-0xbbffffff]
[    0.576348] e820: reserve RAM buffer [mem 0xba800000-0xbbffffff]
[    0.576734] amd_nb: Cannot enumerate AMD northbridges
[    0.576765] clocksource: Switched to clocksource refined-jiffies
[    0.592412] VFS: Disk quotas dquot_6.6.0
[    0.601862] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.607998] pnp: PnP ACPI init
[    0.608146] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.608320] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.608327] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.608332] system 00:01: [io  0x0500-0x05fe] has been reserved
[    0.608337] system 00:01: [io  0x0600-0x061f] has been reserved
[    0.608343] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.608351] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.608613] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.611660] pnp: PnP ACPI: found 3 devices
[    0.621560] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.621594] clocksource: Switched to clocksource acpi_pm
[    0.621616] pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
[    0.621621] pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
[    0.621626] pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
[    0.621630] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.621634] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.621639] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.621643] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[    0.621648] pci_bus 0000:00: resource 11 [mem 0xd0c00000-0xd0ffffff window]
[    0.621653] pci_bus 0000:00: resource 12 [mem 0xbaf00001-0xbef00000 window]
[    0.621657] pci_bus 0000:00: resource 13 [mem 0xc0000000-0xd08ffffe window]
[    0.621662] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed40fff window]
[    0.689693] NET: Registered protocol family 2
[    0.701821] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.701993] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.702186] TCP: Hash tables configured (established 32768 bind 32768)
[    0.702262] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.702311] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.725730] NET: Registered protocol family 1
[    0.725769] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.726133] PCI: CLS 0 bytes, default 64
[    0.726260] Unpacking initramfs...
[    1.363142] Freeing initrd memory: 17724K (ffff880035d52000 - ffff880036ea1000)
[    1.363153] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.363159] software IO TLB [mem 0xb41c3000-0xb81c3000] (64MB) mapped at [ffff8800b41c3000-ffff8800b81c2fff]
[    1.363534] simple-framebuffer simple-framebuffer.0: framebuffer at 0xc0000000, 0x500000 bytes, mapped to 0xffffc90000800000
[    1.363541] simple-framebuffer simple-framebuffer.0: format=a8r8g8b8, mode=1280x1024x32, linelength=5120
[    1.373899] Console: switching to colour frame buffer device 160x64
[    1.383908] simple-framebuffer simple-framebuffer.0: fb0: simplefb registered!
[    1.406882] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    1.418438] audit: initializing netlink subsys (disabled)
[    1.418481] audit: type=2000 audit(1473722610.407:1): initialized
[    1.419308] Initialise system trusted keyrings
[    1.419593] workingset: timestamp_bits=37 max_order=20 bucket_order=0
[    1.419624] zbud: loaded
[    1.550683] Key type asymmetric registered
[    1.550689] Asymmetric key parser 'x509' registered
[    1.570605] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    1.570689] io scheduler noop registered
[    1.570693] io scheduler deadline registered
[    1.586600] io scheduler cfq registered (default)
[    1.586729] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.586746] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.586809] intel_idle: MWAIT substates: 0x33000020
[    1.586813] intel_idle: v0.4.1 model 0x37
[    1.586819] intel_idle: max_cstate 1 reached
[    1.586998] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.591314] GHES: HEST is not enabled!
[    1.591477] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.611746] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.626790] 80860F0A:00: ttyS1 at MMIO 0xd094d000 (irq = 39, base_baud = 2764800) is a 16550A
[    1.627255] hpet: number irqs doesn't agree with number of timers
[    1.627309] Linux agpgart interface v0.103
[    1.627404] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    1.627408] AMD IOMMUv2 functionality not available on this system
[    1.628207] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    2.363420] tsc: Refined TSC clocksource calibration: 1600.002 MHz
[    2.363429] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x171026cbfe9, max_idle_ns: 440795216594 ns
[    2.663923] i8042: No controller found
[    2.664169] mousedev: PS/2 mouse device common for all mice
[    2.664479] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    2.664518] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram
[    2.664540] intel_pstate: Intel P-state driver initializing
[    2.664791] ledtrig-cpu: registered to indicate activity on CPUs
[    2.735769] NET: Registered protocol family 10
[    2.736914] mip6: Mobile IPv6
[    2.736931] NET: Registered protocol family 17
[    2.736954] mpls_gso: MPLS GSO support
[    2.738416] microcode: CPU0 sig=0x30678, pf=0x2, revision=0x80a
[    2.738464] microcode: CPU1 sig=0x30678, pf=0x2, revision=0x80a
[    2.738512] microcode: CPU2 sig=0x30678, pf=0x2, revision=0x80a
[    2.738549] microcode: CPU3 sig=0x30678, pf=0x2, revision=0x80a
[    2.738825] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    2.739930] registered taskstats version 1
[    2.739946] Loading compiled-in X.509 certificates
[    2.749311] alg: No test for pkcs1pad(rsa,sha256) (pkcs1pad(rsa-generic,sha256))
[    2.751438] Loaded X.509 cert 'Debian Project: Ben Hutchings: 008a018dca80932630'
[    2.751577] zswap: loaded using pool lzo/zbud
[    2.752675] rtc_cmos 00:00: setting system clock to 2016-09-12 23:23:31 UTC (1473722611)
[    2.753413] PM: Hibernation image not present or could not be loaded.
[    2.761946] Freeing unused kernel memory: 1352K (ffffffffbc114000 - ffffffffbc266000)
[    2.761963] Write protecting the kernel read-only data: 10240k
[    2.763011] Freeing unused kernel memory: 124K (ffff88003bbe1000 - ffff88003bc00000)
[    2.774237] Freeing unused kernel memory: 1344K (ffff88003beb0000 - ffff88003c000000)
[    2.792520] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.861237] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.861860] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.861982] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.862117] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.864202] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.864451] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.866073] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.866450] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.866806] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.867170] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.948194] sdhci: Secure Digital Host Controller Interface driver
[    2.948200] sdhci: Copyright(c) Pierre Ossman
[    2.963787] hidraw: raw HID events driver (C) Jiri Kosina
[    2.969352] mmc0: SDHCI controller on ACPI [80860F14:00] using ADMA
[    2.974948] mmc1: SDHCI controller on ACPI [INT33BB:00] using ADMA
[    2.990579] FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
[    2.998172] mmc2: SDHCI controller on ACPI [80860F14:01] using ADMA
[    3.059328] [Firmware Bug]: No valid trip found
[    3.064432] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    3.066328] ACPI: bus type USB registered
[    3.066387] usbcore: registered new interface driver usbfs
[    3.066411] usbcore: registered new interface driver hub
[    3.067081] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.068210] usbcore: registered new device driver usb
[    3.068814] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.072312] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    3.078939] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.078957] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    3.080107] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[    3.080119] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.084928] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.084935] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.084939] usb usb1: Product: xHCI Host Controller
[    3.084942] usb usb1: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.084944] usb usb1: SerialNumber: 0000:00:14.0
[    3.086538] hub 1-0:1.0: USB hub found
[    3.086571] hub 1-0:1.0: 6 ports detected
[    3.115201] SSE version of gcm_enc/dec engaged.
[    3.125434] mmc0: new HS200 MMC card at address 0001
[    3.181849] mmc1: new ultra high speed DDR50 SDIO card at address 0001
[    3.241436] mmcblk0: mmc0:0001 SEM128 116 GiB 
[    3.241695] mmcblk0boot0: mmc0:0001 SEM128 partition 1 4.00 MiB
[    3.241882] mmcblk0boot1: mmc0:0001 SEM128 partition 2 4.00 MiB
[    3.242065] mmcblk0rpmb: mmc0:0001 SEM128 partition 3 4.00 MiB
[    3.264048]  mmcblk0: p1 p2 p3 p4 p5
[    3.364594] clocksource: Switched to clocksource tsc
[    3.689486] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.689525] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    3.689947] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    3.689964] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.689977] usb usb2: Product: xHCI Host Controller
[    3.689989] usb usb2: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.690001] usb usb2: SerialNumber: 0000:00:14.0
[    3.691000] hub 2-0:1.0: USB hub found
[    3.691072] hub 2-0:1.0: 1 port detected
[    4.001266] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[    4.129920] usb 1-1: New USB device found, idVendor=058f, idProduct=9254
[    4.129942] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.129956] usb 1-1: Product: Generic USB Hub
[    4.129968] usb 1-1: Manufacturer: ALCOR
[    4.131063] hub 1-1:1.0: USB hub found
[    4.131181] hub 1-1:1.0: 4 ports detected
[    4.369406] usb 1-3: new high-speed USB device number 3 using xhci_hcd
[    4.382414] EXT4-fs (mmcblk0p5): mounted filesystem with ordered data mode. Opts: (null)
[    4.498715] usb 1-3: New USB device found, idVendor=8087, idProduct=0716
[    4.498726] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.569569] usb 1-1.2: new low-speed USB device number 4 using xhci_hcd
[    4.633892] systemd[1]: RTC configured in localtime, applying delta of 120 minutes to system time.
[    4.660856] usb 1-1.2: New USB device found, idVendor=070a, idProduct=0025
[    4.660863] usb 1-1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.733774] usb 1-1.4: new low-speed USB device number 5 using xhci_hcd
[    4.735878] systemd[1]: systemd 231 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[    4.736960] systemd[1]: Detected architecture x86-64.
[    4.741980] systemd[1]: Set hostname to <thinkpad8>.
[    4.833156] usb 1-1.4: New USB device found, idVendor=070a, idProduct=0025
[    4.833163] usb 1-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.999433] systemd[1]: Listening on udev Control Socket.
[    4.999823] systemd[1]: Created slice User and Session Slice.
[    4.999880] systemd[1]: Listening on RPCbind Server Activation Socket.
[    4.999954] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    5.000009] systemd[1]: Listening on udev Kernel Socket.
[    5.000104] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    5.000172] systemd[1]: Listening on Journal Socket (/dev/log).
[    5.000260] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    5.000286] systemd[1]: Reached target User and Group Name Lookups.
[    5.000337] systemd[1]: Listening on Syslog Socket.
[    5.000389] systemd[1]: Listening on fsck to fsckd communication Socket.
[    5.000420] systemd[1]: Reached target Encrypted Volumes.
[    5.000500] systemd[1]: Listening on Journal Socket.
[    5.000732] systemd[1]: Created slice System Slice.
[    5.000962] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    5.010114] systemd[1]: Mounting Huge Pages File System...
[    5.011441] systemd[1]: Mounting POSIX Message Queue File System...
[    5.014921] systemd[1]: Starting Load Kernel Modules...
[    5.014970] systemd[1]: Reached target Slices.
[    5.016204] systemd[1]: Mounting Debug File System...
[    5.017690] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    5.019117] systemd[1]: Starting Remount Root and Kernel File Systems...
[    5.019504] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    5.025163] systemd[1]: Mounting RPC Pipe File System...
[    5.025542] systemd[1]: Created slice system-getty.slice.
[    5.025640] systemd[1]: Reached target Swap.
[    5.027174] systemd[1]: Starting Set the console keyboard layout...
[    5.027516] systemd[1]: Listening on Journal Audit Socket.
[    5.028990] systemd[1]: Starting Journal Service...
[    5.032717] systemd[1]: Started Create list of required static device nodes for the current kernel.
[    5.034607] systemd[1]: Starting Create Static Device Nodes in /dev...
[    5.044190] systemd[1]: Started Load Kernel Modules.
[    5.045888] systemd[1]: Starting Apply Kernel Variables...
[    5.070088] systemd[1]: Started Apply Kernel Variables.
[    5.078768] systemd[1]: Mounted Debug File System.
[    5.078851] systemd[1]: Mounted Huge Pages File System.
[    5.078893] systemd[1]: Mounted POSIX Message Queue File System.
[    5.079343] EXT4-fs (mmcblk0p5): re-mounted. Opts: errors=remount-ro
[    5.081880] systemd[1]: Started Remount Root and Kernel File Systems.
[    5.098498] systemd[1]: Starting Load/Save Random Seed...
[    5.109895] systemd[1]: Starting udev Coldplug all Devices...
[    5.111882] systemd[1]: Started Journal Service.
[    5.132461] systemd-journald[941]: Received request to flush runtime journal from PID 1
[    5.134252] RPC: Registered named UNIX socket transport module.
[    5.134258] RPC: Registered udp transport module.
[    5.134260] RPC: Registered tcp transport module.
[    5.134262] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.389216] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    5.389333] ACPI: Lid Switch [LID0]
[    5.389441] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    5.389447] ACPI: Power Button [PWRF]
[    5.412317] i2c i2c-0: i2c read failed
[    5.436358] [drm] Initialized drm 1.1.0 20060810
[    5.468199] i2c i2c-0: i2c read failed
[    5.502278] Bluetooth: Core ver 2.21
[    5.502307] NET: Registered protocol family 31
[    5.502310] Bluetooth: HCI device and connection manager initialized
[    5.502318] Bluetooth: HCI socket layer initialized
[    5.502323] Bluetooth: L2CAP socket layer initialized
[    5.502335] Bluetooth: SCO socket layer initialized
[    5.518907] i2c i2c-0: i2c read failed
[    5.525348] Bluetooth: HCI UART driver ver 2.3
[    5.525354] Bluetooth: HCI UART protocol H4 registered
[    5.525356] Bluetooth: HCI UART protocol BCSP registered
[    5.525358] Bluetooth: HCI UART protocol LL registered
[    5.525360] Bluetooth: HCI UART protocol ATH3K registered
[    5.525362] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    5.525441] Bluetooth: HCI UART protocol Intel registered
[    5.538803] hci_bcm BCM2E55:00: BCM irq: 70
[    5.538870] hci_bcm BCM2E55:00: BCM2E55:00 device registered.
[    5.539022] Bluetooth: HCI UART protocol BCM registered
[    5.539025] Bluetooth: HCI UART protocol QCA registered
[    5.562692] ACPI: AC Adapter [ADP1] (off-line)
[    5.570486] i2c i2c-0: i2c read failed
[    5.586876] [drm] Memory usable by graphics device = 2048M
[    5.586885] checking generic (c0000000 500000) vs hw (c0000000 10000000)
[    5.586888] fb: switching to inteldrmfb from simple
[    5.586949] Console: switching to colour dummy device 80x25
[    5.587099] [drm] Replacing VGA console driver
[    5.587218] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    5.587221] [drm] Driver supports precise vblank timestamp query.
[    5.608190] intel_sst_acpi 80860F28:00: LPE base: 0xd0a00000 size:0x200000
[    5.608197] intel_sst_acpi 80860F28:00: IRAM base: 0xd0ac0000
[    5.608221] intel_sst_acpi 80860F28:00: DRAM base: 0xd0b00000
[    5.608230] intel_sst_acpi 80860F28:00: SHIM base: 0xd0b40000
[    5.608246] intel_sst_acpi 80860F28:00: Mailbox base: 0xd0b44000
[    5.608253] intel_sst_acpi 80860F28:00: DDR base: 0x20000000
[    5.608335] intel_sst_acpi 80860F28:00: Got drv data max stream 25
[    5.620071] intel_sst_acpi 80860F28:00: firmware: direct-loading firmware intel/fw_sst_0f28.bin
[    5.629616] i2c i2c-0: i2c read failed
[    5.653832] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    5.718518] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.720230] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2
[    5.720443] [drm] Initialized i915 1.6.0 20160425 for 0000:00:02.0 on minor 0
[    5.794608] i2c i2c-0: i2c read failed
[    5.809622] fbcon: inteldrmfb (fb0) is primary device
[    5.858452] i2c i2c-0: i2c read failed
[    5.923643] dw_dmac INTL9C60:00: DesignWare DMA Controller, 8 channels
[    5.953883] rt5640 i2c-10EC5640:01: Device with ID register 0x6271 is not rt5640/39
[    5.955366] dw_dmac INTL9C60:01: DesignWare DMA Controller, 8 channels
[    5.959037] ACPI: Battery Slot [BAT0] (battery absent)
[    5.995578] wmi: Mapper loaded
[    6.090149] usbcore: registered new interface driver usbserial
[    6.090171] usbcore: registered new interface driver usbserial_generic
[    6.090193] usbserial: USB Serial support registered for generic
[    6.102363] usbcore: registered new interface driver usb_serial_simple
[    6.102389] usbserial: USB Serial support registered for carelink
[    6.102406] usbserial: USB Serial support registered for zio
[    6.102423] usbserial: USB Serial support registered for funsoft
[    6.102440] usbserial: USB Serial support registered for flashloader
[    6.102457] usbserial: USB Serial support registered for google
[    6.102475] usbserial: USB Serial support registered for vivopay
[    6.102493] usbserial: USB Serial support registered for moto_modem
[    6.102510] usbserial: USB Serial support registered for novatel_gps
[    6.102527] usbserial: USB Serial support registered for hp4x
[    6.102545] usbserial: USB Serial support registered for suunto
[    6.102564] usbserial: USB Serial support registered for siemens_mpi
[    6.102591] usb_serial_simple 1-3:1.0: flashloader converter detected
[    6.104707] usb 1-3: flashloader converter now attached to ttyUSB0
[    6.109276] input: PC Speaker as /devices/platform/pcspkr/input/input3
[    6.118881] usbcore: registered new interface driver usbhid
[    6.118884] usbhid: USB HID core driver
[    6.203911] Console: switching to colour frame buffer device 160x64
[    6.213500] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    6.214648] random: nonblocking pool is initialized
[    6.266465] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    6.268618] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.271448] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.274901] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    6.401062] iTCO_vendor_support: vendor-support=0
[    6.405227] intel_rapl: Found RAPL domain package
[    6.405234] intel_rapl: Found RAPL domain core
[    6.410897] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    6.411020] iTCO_wdt: Found a Bay Trail SoC TCO device (Version=3, TCOBASE=0x0460)
[    6.412005] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    6.417273] brcmfmac: brcmf_sdio_drivestrengthinit: No SDIO Drive strength init done for chip 4324 rev 6 pmurev 17
[    6.420279] usbcore: registered new interface driver brcmfmac
[    6.429579] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.bin
[    6.430073] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.txt
[    6.473346] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.473446] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.517242] brcmfmac: brcmf_c_preinit_dcmds: Firmware version = wl0: Feb 24 2015 06:43:35 version 6.25.91.13 (r536868) FWID 01-b48d628a
[    6.547414] input: gpio-keys as /devices/platform/gpio-keys.1.auto/input/input4
[    6.547913] input: gpio-keys as /devices/platform/gpio-keys.2.auto/input/input5
[    6.548388] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.548475] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.550542] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.550638] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.568336] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:070A:0025.0003/input/input6
[    6.571036] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.571123] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.571221] hid-generic 0003:070A:0025.0003: input,hidraw0: USB HID v1.00 Mouse [HID 070a:0025] on usb-0000:00:14.0-1.2/input0
[    6.571527] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:070A:0025.0004/input/input7
[    6.571656] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    6.573120] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.573209] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.628360] hid-generic 0003:070A:0025.0004: input,hidraw1: USB HID v1.10 Keyboard [HID 070a:0025] on usb-0000:00:14.0-1.4/input0
[    6.628942] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.629035] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.631749] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:070A:0025.0005/input/input8
[    6.655055] usb 1-3: USB disconnect, device number 3
[    6.655273] flashloader ttyUSB0: flashloader converter now disconnected from ttyUSB0
[    6.655295] usb_serial_simple 1-3:1.0: device disconnected
[    6.688914] hid-generic 0003:070A:0025.0005: input,hiddev0,hidraw2: USB HID v1.10 Device [HID 070a:0025] on usb-0000:00:14.0-1.4/input1
[    6.689482] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.689487] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.714543] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.714637] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.722705] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.722797] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.724158] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.724251] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.726124] input: ATML1000:00 03EB:844B as /devices/platform/80860F41:05/i2c-13/i2c-ATML1000:00/0018:03EB:844B.0002/input/input9
[    6.726350] hid-multitouch 0018:03EB:844B.0002: input,hidraw3: I2C HID v1.00 Device [ATML1000:00 03EB:844B] on i2c-ATML1000:00
[    6.727049] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.727054] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.733557] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.733562] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.737444] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.737449] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.737956] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.737960] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.751598] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    7.778415] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    7.809296] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    7.985605] Bluetooth: hci0: BCM: chip id 90
[    7.985631] Bluetooth: hci0: BCM (002.006.006) build 0000
[    7.986772] bluetooth hci0: firmware: direct-loading firmware brcm/BCM.hcd
[    8.028553] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    8.457008] Bluetooth: hci0: BCM (002.006.006) build 1170
[    8.594331] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    8.594338] Bluetooth: BNEP filters: protocol multicast
[    8.594347] Bluetooth: BNEP socket layer initialized
[   11.356364] usb 1-3: new high-speed USB device number 6 using xhci_hcd
[   11.492082] usb 1-3: New USB device found, idVendor=1199, idProduct=a001
[   11.492089] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   11.492093] usb 1-3: Product: Sierra Wireless EM7345 4G LTE
[   11.492096] usb 1-3: Manufacturer: Sierra Wireless Inc.
[   11.492099] usb 1-3: SerialNumber: 013937001951332
[   11.520907] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.520938] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.551768] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.551781] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.585500] cdc_ncm 1-3:1.0: MAC-Address: 00:00:11:12:13:14
[   11.585508] cdc_ncm 1-3:1.0: setting rx_max = 16384
[   11.586650] cdc_ncm 1-3:1.0 usb0: register 'cdc_ncm' at usb-0000:00:14.0-3, CDC NCM, 00:00:11:12:13:14
[   11.586719] usbcore: registered new interface driver cdc_ncm
[   11.586852] cdc_acm 1-3:1.2: ttyACM0: USB ACM device
[   11.587236] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.587245] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.588212] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.588223] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.588739] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.588746] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.590084] usbcore: registered new interface driver cdc_acm
[   11.590090] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[   11.590404] usbcore: registered new interface driver cdc_wdm
[   11.596331] usbcore: registered new interface driver cdc_mbim
[   11.611148] cdc_ncm 1-3:1.0 enx000011121314: renamed from usb0
[   11.646694] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   11.648088] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   11.709087] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   11.735664] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   18.598997] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   36.111265] fuse init (API version 7.25)
[   42.879972] Bluetooth: RFCOMM TTY layer initialized
[   42.879995] Bluetooth: RFCOMM socket layer initialized
[   42.880007] Bluetooth: RFCOMM ver 1.11
[   48.639732] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[   48.639750] Bluetooth: HIDP socket layer initialized
[   48.643623] hid-generic 0005:046D:B319.0006: unknown main item tag 0x0
[   48.644623] input: Logitech K810 as /devices/platform/80860F0A:00/tty/ttyS1/hci0/hci0:12/0005:046D:B319.0006/input/input11
[   48.646578] hid-generic 0005:046D:B319.0006: input,hidraw4: BLUETOOTH HID v12.01 Keyboard [Logitech K810] on b0:10:41:b8:16:6c
[   48.647195] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   48.647206] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   57.103983] NetworkManager[2077]: segfault at 740 ip 00000000004626ed sp 00007ffd577ecdf0 error 4 in NetworkManager[400000+2bc000]
[   57.594928] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   58.268190] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)

[-- Attachment #5: dmesg.systemd-triggered-by-udev-rule-no-delay --]
[-- Type: text/plain, Size: 48621 bytes --]

[    0.000000] Linux version 4.7.0-1-amd64 (debian-kernel@lists.debian.org) (gcc version 5.4.1 20160803 (Debian 5.4.1-1) ) #1 SMP Debian 4.7.2-1 (2016-08-28)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] x86/fpu: Legacy x87 FPU detected.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000200fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020100000-0x00000000b81c2fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b81c3000-0x00000000b91c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b91c3000-0x00000000b92c2fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000b92c3000-0x00000000b98c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b98c3000-0x00000000b99c2fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000b99c3000-0x00000000b9a02fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000b9a03000-0x00000000ba7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by Phoenix Technologies Ltd.
[    0.000000] efi:  ACPI=0xb9a02000  ACPI 2.0=0xb9a02014  SMBIOS=0xb98a5000  ESRT=0xb8af8000 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 20BN0036UK/20BN0036UK, BIOS GYET26WW (1.26) 01/12/2015
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   1 base 000000000 mask F80000000 write-back
[    0.000000]   2 base 080000000 mask FC0000000 write-back
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   5 base 0BA800000 mask FFF800000 uncachable
[    0.000000]   6 base 100000000 mask FC0000000 write-back
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0xba800 max_arch_pfn = 0x400000000
[    0.000000] Base memory trampoline at [ffff880000029000] 29000 size 24576
[    0.000000] BRK [0x05356000, 0x05356fff] PGTABLE
[    0.000000] BRK [0x05357000, 0x05357fff] PGTABLE
[    0.000000] BRK [0x05358000, 0x05358fff] PGTABLE
[    0.000000] BRK [0x05359000, 0x05359fff] PGTABLE
[    0.000000] BRK [0x0535a000, 0x0535afff] PGTABLE
[    0.000000] BRK [0x0535b000, 0x0535bfff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35d52000-0x36ea0fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000B9A02014 000024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 0x00000000B9A02170 0000E4 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FACP 0x00000000B99FE000 00010C (v05 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: DSDT 0x00000000B99EA000 00F9BF (v02 LENOVO TP-GY    00001260 INTL 20120711)
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: TCPA 0x00000000B9A01000 000032 (v02 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B9A00000 0000B1 (v01 LENOVO ADebTabl 00001000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99FF000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: HPET 0x00000000B99FD000 000038 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: LPIT 0x00000000B99FC000 000104 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: APIC 0x00000000B99FB000 00006C (v03 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: MCFG 0x00000000B99FA000 00003C (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E9000 0005FC (v01 LENOVO CpuDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E7000 0018E6 (v01 LENOVO DptfTab  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E6000 000058 (v01 LENOVO LowPwrM  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E5000 0000FF (v01 LENOVO SoCDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E4000 000763 (v01 PmRef  CpuPm    00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E3000 000290 (v01 PmRef  Cpu0Tst  00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E2000 00017A (v01 PmRef  ApTst    00003000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99E1000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: MSDM 0x00000000B9955000 000055 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BATB 0x00000000B99E0000 000046 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FPDT 0x00000000B99DF000 000054 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B99DE000 00043A (v01 LENOVO Tpm2Tabl 00001000 INTL 20120711)
[    0.000000] ACPI: TPM2 0x00000000B99DD000 000034 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: UEFI 0x00000000B99DC000 00008A (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BGRT 0x00000000B99DB000 000038 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: CSRT 0x00000000B99DA000 00014C (v00 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x13fff8000-0x13fffcfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.000000]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020100000-0x00000000b81c2fff]
[    0.000000]   node   0: [mem 0x00000000b9a03000-0x00000000ba7fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
[    0.000000] On node 0 totalpages: 1019486
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 133 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 11771 pages used for memmap
[    0.000000]   DMA32 zone: 753344 pages, LIFO batch:31
[    0.000000]   Normal zone: 4096 pages used for memmap
[    0.000000]   Normal zone: 262144 pages, LIFO batch:31
[    0.000000] x86/hpet: Will disable the HPET for this platform because it's not reliable
[    0.000000] Reserving Intel graphics stolen memory at 0xbaf00000-0xbeefffff
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-86
[    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: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x200fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xb81c3000-0xb91c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb91c3000-0xb92c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb92c3000-0xb98c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb98c3000-0xb99c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb99c3000-0xb9a02fff]
[    0.000000] PM: Registered nosave memory: [mem 0xba800000-0xbaefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbaf00000-0xbeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbef00000-0xe00f7fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f9000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed02000-0xffffffff]
[    0.000000] e820: [mem 0xbef00000-0xe00f7fff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 33 pages/cpu @ffff88013fc00000 s98264 r8192 d28712 u524288
[    0.000000] pcpu-alloc: s98264 r8192 d28712 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1003422
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3913608K/4077944K available (6004K kernel code, 1096K rwdata, 2752K rodata, 1352K init, 928K bss, 164336K reserved, 0K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:33024 nr_irqs:1024 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Maximum core-clock to bus-clock ratio: 0xc
[    0.000000] Resolved frequency ID: 2, frequency: 133200 KHz
[    0.000000] TSC runs at 1598400 KHz
[    0.000000] lapic_timer_frequency = 532800
[    0.000000] tsc: Detected 1598.400 MHz processor
[    0.000037] Calibrating delay loop (skipped), value calculated using timer frequency.. 3196.80 BogoMIPS (lpj=6393600)
[    0.000045] pid_max: default: 32768 minimum: 301
[    0.000078] ACPI: Core revision 20160422
[    0.045988] ACPI: 10 ACPI AML tables successfully acquired and loaded

[    0.046102] Security Framework initialized
[    0.046108] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.046124] AppArmor: AppArmor disabled by boot time parameter
[    0.046685] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.049009] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.050063] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050079] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050642] CPU: Physical Processor ID: 0
[    0.050648] CPU: Processor Core ID: 0
[    0.050655] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.050658] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.050671] mce: CPU supports 6 MCE banks
[    0.050684] CPU0: Thermal monitoring enabled (TM1)
[    0.050693] process: using mwait in idle threads
[    0.050700] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[    0.050704] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[    0.051145] Freeing SMP alternatives memory: 24K (ffffffff85266000 - ffffffff8526c000)
[    0.053344] ftrace: allocating 24665 entries in 97 pages
[    0.068439] smpboot: Max logical packages: 1
[    0.068447] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.069516] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.109226] TSC deadline timer enabled
[    0.109233] smpboot: CPU0: Intel(R) Atom(TM) CPU  Z3795  @ 1.60GHz (family: 0x6, model: 0x37, stepping: 0x8)
[    0.109243] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, full-width counters, Intel PMU driver.
[    0.109262] ... version:                3
[    0.109265] ... bit width:              40
[    0.109268] ... generic registers:      2
[    0.109270] ... value mask:             000000ffffffffff
[    0.109273] ... max period:             000000ffffffffff
[    0.109275] ... fixed-purpose events:   3
[    0.109278] ... event mask:             0000000700000003
[    0.110641] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.110999] x86: Booting SMP configuration:
[    0.111004] .... node  #0, CPUs:      #1 #2 #3
[    0.351643] x86: Booted up 1 node, 4 CPUs
[    0.351650] smpboot: Total of 4 processors activated (12793.90 BogoMIPS)
[    0.361714] devtmpfs: initialized
[    0.361900] x86/mm: Memory block size: 128MB
[    0.379604] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    0.379611] PM: Registering ACPI NVS region [mem 0xb98c3000-0xb99c2fff] (1048576 bytes)
[    0.379817] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.389516] pinctrl core: initialized pinctrl subsystem
[    0.399824] NET: Registered protocol family 16
[    0.409511] cpuidle: using governor ladder
[    0.419536] cpuidle: using governor menu
[    0.419647] ACPI: bus type PCI registered
[    0.419652] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.439702] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.439708] PCI: not using MMCONFIG
[    0.439712] PCI: Using configuration type 1 for base access
[    0.453913] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.489741] ACPI: Added _OSI(Module Device)
[    0.489746] ACPI: Added _OSI(Processor Device)
[    0.489749] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.489753] ACPI: Added _OSI(Processor Aggregator Device)
[    0.510993] ACPI: Dynamic OEM Table Load:
[    0.511013] ACPI: SSDT 0xFFFF88013A653000 0003D7 (v01 PmRef  Cpu0Ist  00003000 INTL 20120711)
[    0.512658] ACPI: Dynamic OEM Table Load:
[    0.512675] ACPI: SSDT 0xFFFF88013A6D9000 000433 (v01 PmRef  Cpu0Cst  00003001 INTL 20120711)
[    0.515005] ACPI: Dynamic OEM Table Load:
[    0.515021] ACPI: SSDT 0xFFFF88013A655800 00015F (v01 PmRef  ApIst    00003000 INTL 20120711)
[    0.516584] ACPI: Dynamic OEM Table Load:
[    0.516599] ACPI: SSDT 0xFFFF88013A657780 00008D (v01 PmRef  ApCst    00003000 INTL 20120711)
[    0.521108] ACPI: Interpreter enabled
[    0.521167] ACPI: (supports S0 S4 S5)
[    0.521172] ACPI: Using IOAPIC for interrupt routing
[    0.521258] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.526859] [Firmware Info]: PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] not reserved in ACPI motherboard resources
[    0.526864] PCI: not using MMCONFIG
[    0.526872] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.529890] ACPI: Power Resource [USBC] (on)
[    0.530748] ACPI: Power Resource [WWPR] (off)
[    0.537995] ACPI: Power Resource [PLPE] (on)
[    0.547127] ACPI: Power Resource [CLK0] (on)
[    0.547254] ACPI: Power Resource [CLK1] (on)
[    0.547624] ACPI: Power Resource [P28X] (off)
[    0.547743] ACPI: Power Resource [P18X] (off)
[    0.550796] ACPI: Power Resource [TCPR] (off)
[    0.559833] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.559848] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.559973] \_SB_.PCI0 (33DB4D5B-1FF7-401C-9657-7441C03DD766): _OSC invalid UUID
[    0.559977] _OSC request data: 1 1e 0
[    0.559987] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.560021] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.560717] PCI host bridge to bus 0000:00
[    0.560725] pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
[    0.560731] pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
[    0.560736] pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
[    0.560741] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.560746] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.560751] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.560756] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.560760] pci_bus 0000:00: root bus resource [mem 0xd0c00000-0xd0ffffff window]
[    0.560765] pci_bus 0000:00: root bus resource [mem 0xbaf00001-0xbef00000 window]
[    0.560770] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xd08ffffe window]
[    0.560775] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed40fff window]
[    0.560781] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.560797] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
[    0.561003] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
[    0.561022] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff]
[    0.561037] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff pref]
[    0.561052] pci 0000:00:02.0: reg 0x20: [io  0x1000-0x1007]
[    0.561265] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
[    0.561290] pci 0000:00:14.0: reg 0x10: [mem 0xd0800000-0xd080ffff 64bit]
[    0.561367] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.561544] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
[    0.561569] pci 0000:00:1a.0: reg 0x10: [mem 0xd0700000-0xd07fffff]
[    0.561584] pci 0000:00:1a.0: reg 0x14: [mem 0xd0600000-0xd06fffff]
[    0.561681] pci 0000:00:1a.0: PME# supported from D0 D3hot
[    0.561870] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
[    0.562971] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.563163] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.563352] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.563543] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.563732] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.563922] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.564117] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.564307] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.577938] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.577946] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.577951] vgaarb: loaded
[    0.577954] vgaarb: bridge control possible 0000:00:02.0
[    0.578192] PCI: Using ACPI for IRQ routing
[    0.578199] PCI: pci_cache_line_size set to 64 bytes
[    0.578222] Expanded resource reserved due to conflict with PCI Bus 0000:00
[    0.578226] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.578232] e820: reserve RAM buffer [mem 0xb81c3000-0xbbffffff]
[    0.578236] e820: reserve RAM buffer [mem 0xba800000-0xbbffffff]
[    0.578630] amd_nb: Cannot enumerate AMD northbridges
[    0.578661] clocksource: Switched to clocksource refined-jiffies
[    0.594261] VFS: Disk quotas dquot_6.6.0
[    0.605881] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.611892] pnp: PnP ACPI init
[    0.612045] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.612216] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.612223] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.612229] system 00:01: [io  0x0500-0x05fe] has been reserved
[    0.612234] system 00:01: [io  0x0600-0x061f] has been reserved
[    0.612240] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.612249] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.612505] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.615556] pnp: PnP ACPI: found 3 devices
[    0.625456] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.625490] clocksource: Switched to clocksource acpi_pm
[    0.625511] pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
[    0.625516] pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
[    0.625521] pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
[    0.625525] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.625530] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.625534] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.625539] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[    0.625543] pci_bus 0000:00: resource 11 [mem 0xd0c00000-0xd0ffffff window]
[    0.625548] pci_bus 0000:00: resource 12 [mem 0xbaf00001-0xbef00000 window]
[    0.625552] pci_bus 0000:00: resource 13 [mem 0xc0000000-0xd08ffffe window]
[    0.625557] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed40fff window]
[    0.693584] NET: Registered protocol family 2
[    0.709728] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.709899] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.710092] TCP: Hash tables configured (established 32768 bind 32768)
[    0.710168] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.710215] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.733639] NET: Registered protocol family 1
[    0.733679] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.734045] PCI: CLS 0 bytes, default 64
[    0.734173] Unpacking initramfs...
[    1.371085] Freeing initrd memory: 17724K (ffff880035d52000 - ffff880036ea1000)
[    1.371097] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.371102] software IO TLB [mem 0xb41c3000-0xb81c3000] (64MB) mapped at [ffff8800b41c3000-ffff8800b81c2fff]
[    1.371474] simple-framebuffer simple-framebuffer.0: framebuffer at 0xc0000000, 0x500000 bytes, mapped to 0xffffc90000800000
[    1.371482] simple-framebuffer simple-framebuffer.0: format=a8r8g8b8, mode=1280x1024x32, linelength=5120
[    1.381818] Console: switching to colour frame buffer device 160x64
[    1.391863] simple-framebuffer simple-framebuffer.0: fb0: simplefb registered!
[    1.402762] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    1.414310] audit: initializing netlink subsys (disabled)
[    1.414352] audit: type=2000 audit(1473720788.407:1): initialized
[    1.415177] Initialise system trusted keyrings
[    1.415498] workingset: timestamp_bits=37 max_order=20 bucket_order=0
[    1.415528] zbud: loaded
[    1.550610] Key type asymmetric registered
[    1.550616] Asymmetric key parser 'x509' registered
[    1.566525] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    1.566615] io scheduler noop registered
[    1.566620] io scheduler deadline registered
[    1.582491] io scheduler cfq registered (default)
[    1.582623] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.582639] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.582706] intel_idle: MWAIT substates: 0x33000020
[    1.582710] intel_idle: v0.4.1 model 0x37
[    1.582716] intel_idle: max_cstate 1 reached
[    1.582898] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.587215] GHES: HEST is not enabled!
[    1.587364] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.607629] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.622687] 80860F0A:00: ttyS1 at MMIO 0xd094d000 (irq = 39, base_baud = 2764800) is a 16550A
[    1.623152] hpet: number irqs doesn't agree with number of timers
[    1.623205] Linux agpgart interface v0.103
[    1.623304] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    1.623307] AMD IOMMUv2 functionality not available on this system
[    1.624116] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    2.371318] tsc: Refined TSC clocksource calibration: 1599.999 MHz
[    2.371326] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x171023f09ff, max_idle_ns: 440795233615 ns
[    2.659799] i8042: No controller found
[    2.660041] mousedev: PS/2 mouse device common for all mice
[    2.660355] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    2.660393] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram
[    2.660416] intel_pstate: Intel P-state driver initializing
[    2.660661] ledtrig-cpu: registered to indicate activity on CPUs
[    2.731658] NET: Registered protocol family 10
[    2.732808] mip6: Mobile IPv6
[    2.732825] NET: Registered protocol family 17
[    2.732847] mpls_gso: MPLS GSO support
[    2.734307] microcode: CPU0 sig=0x30678, pf=0x2, revision=0x80a
[    2.734356] microcode: CPU1 sig=0x30678, pf=0x2, revision=0x80a
[    2.734404] microcode: CPU2 sig=0x30678, pf=0x2, revision=0x80a
[    2.734439] microcode: CPU3 sig=0x30678, pf=0x2, revision=0x80a
[    2.734720] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    2.735825] registered taskstats version 1
[    2.735841] Loading compiled-in X.509 certificates
[    2.745076] alg: No test for pkcs1pad(rsa,sha256) (pkcs1pad(rsa-generic,sha256))
[    2.747210] Loaded X.509 cert 'Debian Project: Ben Hutchings: 008a018dca80932630'
[    2.747334] zswap: loaded using pool lzo/zbud
[    2.748383] rtc_cmos 00:00: setting system clock to 2016-09-12 22:53:10 UTC (1473720790)
[    2.749132] PM: Hibernation image not present or could not be loaded.
[    2.757674] Freeing unused kernel memory: 1352K (ffffffff85114000 - ffffffff85266000)
[    2.757690] Write protecting the kernel read-only data: 10240k
[    2.758740] Freeing unused kernel memory: 124K (ffff880004be1000 - ffff880004c00000)
[    2.771302] Freeing unused kernel memory: 1344K (ffff880004eb0000 - ffff880005000000)
[    2.789731] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.846843] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.847506] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.847629] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.847848] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.848483] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.848644] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.849621] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.849847] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.850065] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.850284] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.927160] sdhci: Secure Digital Host Controller Interface driver
[    2.927166] sdhci: Copyright(c) Pierre Ossman
[    2.940334] hidraw: raw HID events driver (C) Jiri Kosina
[    2.951296] mmc0: SDHCI controller on ACPI [80860F14:00] using ADMA
[    2.956921] mmc1: SDHCI controller on ACPI [INT33BB:00] using ADMA
[    2.974059] FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
[    2.987376] mmc2: SDHCI controller on ACPI [80860F14:01] using ADMA
[    3.037363] ACPI: bus type USB registered
[    3.037420] usbcore: registered new interface driver usbfs
[    3.037444] usbcore: registered new interface driver hub
[    3.040421] usbcore: registered new device driver usb
[    3.052796] [Firmware Bug]: No valid trip found
[    3.054127] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    3.055205] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.055223] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    3.057490] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.060141] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[    3.060155] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.061069] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.061460] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.061467] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.061470] usb usb1: Product: xHCI Host Controller
[    3.061473] usb usb1: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.061476] usb usb1: SerialNumber: 0000:00:14.0
[    3.062320] hub 1-0:1.0: USB hub found
[    3.062343] hub 1-0:1.0: 6 ports detected
[    3.064544] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    3.090598] SSE version of gcm_enc/dec engaged.
[    3.124913] mmc0: new HS200 MMC card at address 0001
[    3.169657] mmc1: new ultra high speed DDR50 SDIO card at address 0001
[    3.220431] mmcblk0: mmc0:0001 SEM128 116 GiB 
[    3.220881] mmcblk0boot0: mmc0:0001 SEM128 partition 1 4.00 MiB
[    3.221082] mmcblk0boot1: mmc0:0001 SEM128 partition 2 4.00 MiB
[    3.221259] mmcblk0rpmb: mmc0:0001 SEM128 partition 3 4.00 MiB
[    3.244018]  mmcblk0: p1 p2 p3 p4 p5
[    3.372421] clocksource: Switched to clocksource tsc
[    3.661361] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.661400] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    3.661840] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    3.661858] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.661871] usb usb2: Product: xHCI Host Controller
[    3.661883] usb usb2: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.661895] usb usb2: SerialNumber: 0000:00:14.0
[    3.663857] hub 2-0:1.0: USB hub found
[    3.664643] hub 2-0:1.0: 1 port detected
[    3.972899] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[    4.101798] usb 1-1: New USB device found, idVendor=058f, idProduct=9254
[    4.101820] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.101833] usb 1-1: Product: Generic USB Hub
[    4.101845] usb 1-1: Manufacturer: ALCOR
[    4.102926] hub 1-1:1.0: USB hub found
[    4.103070] hub 1-1:1.0: 4 ports detected
[    4.341236] usb 1-3: new high-speed USB device number 3 using xhci_hcd
[    4.343162] EXT4-fs (mmcblk0p5): mounted filesystem with ordered data mode. Opts: (null)
[    4.470566] usb 1-3: New USB device found, idVendor=8087, idProduct=0716
[    4.470577] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.541471] usb 1-1.2: new low-speed USB device number 4 using xhci_hcd
[    4.585627] systemd[1]: RTC configured in localtime, applying delta of 120 minutes to system time.
[    4.633817] usb 1-1.2: New USB device found, idVendor=070a, idProduct=0025
[    4.633836] usb 1-1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.695048] systemd[1]: systemd 231 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[    4.695920] systemd[1]: Detected architecture x86-64.
[    4.700888] systemd[1]: Set hostname to <thinkpad8>.
[    4.705629] usb 1-1.4: new low-speed USB device number 5 using xhci_hcd
[    4.805025] usb 1-1.4: New USB device found, idVendor=070a, idProduct=0025
[    4.805033] usb 1-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.947419] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    4.947553] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    4.947617] systemd[1]: Listening on fsck to fsckd communication Socket.
[    4.947685] systemd[1]: Listening on Journal Socket (/dev/log).
[    4.947785] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    4.947922] systemd[1]: Listening on Journal Audit Socket.
[    4.947948] systemd[1]: Reached target Swap.
[    4.947971] systemd[1]: Reached target Encrypted Volumes.
[    4.948048] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    4.948327] systemd[1]: Created slice User and Session Slice.
[    4.948407] systemd[1]: Listening on udev Control Socket.
[    4.948491] systemd[1]: Listening on Journal Socket.
[    4.948558] systemd[1]: Listening on udev Kernel Socket.
[    4.948764] systemd[1]: Created slice System Slice.
[    4.958072] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    4.958408] systemd[1]: Created slice system-getty.slice.
[    4.961331] systemd[1]: Starting Load Kernel Modules...
[    4.961447] systemd[1]: Reached target Slices.
[    4.963075] systemd[1]: Mounting RPC Pipe File System...
[    4.964873] systemd[1]: Mounting POSIX Message Queue File System...
[    4.966611] systemd[1]: Starting Set the console keyboard layout...
[    4.969097] systemd[1]: Mounting Huge Pages File System...
[    4.970859] systemd[1]: Starting Remount Root and Kernel File Systems...
[    4.971275] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    4.972697] systemd[1]: Reached target User and Group Name Lookups.
[    4.972833] systemd[1]: Listening on Syslog Socket.
[    4.974282] systemd[1]: Starting Journal Service...
[    4.974428] systemd[1]: Listening on RPCbind Server Activation Socket.
[    4.975865] systemd[1]: Mounting Debug File System...
[    4.979364] systemd[1]: Started Create list of required static device nodes for the current kernel.
[    4.981143] systemd[1]: Starting Create Static Device Nodes in /dev...
[    4.991617] systemd[1]: Started Load Kernel Modules.
[    4.993473] systemd[1]: Starting Apply Kernel Variables...
[    5.023799] systemd[1]: Mounted Debug File System.
[    5.023887] systemd[1]: Mounted Huge Pages File System.
[    5.023929] systemd[1]: Mounted POSIX Message Queue File System.
[    5.026119] EXT4-fs (mmcblk0p5): re-mounted. Opts: errors=remount-ro
[    5.027706] systemd[1]: Started Remount Root and Kernel File Systems.
[    5.033409] systemd[1]: Starting udev Coldplug all Devices...
[    5.034828] systemd[1]: Starting Load/Save Random Seed...
[    5.035919] systemd[1]: Started Apply Kernel Variables.
[    5.042952] systemd[1]: Started Journal Service.
[    5.062202] systemd-journald[939]: Received request to flush runtime journal from PID 1
[    5.078096] RPC: Registered named UNIX socket transport module.
[    5.078104] RPC: Registered udp transport module.
[    5.078106] RPC: Registered tcp transport module.
[    5.078107] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.362291] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    5.362404] ACPI: Lid Switch [LID0]
[    5.362511] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    5.362517] ACPI: Power Button [PWRF]
[    5.369418] i2c i2c-0: i2c read failed
[    5.424060] i2c i2c-0: i2c read failed
[    5.436242] [drm] Initialized drm 1.1.0 20060810
[    5.490025] i2c i2c-0: i2c read failed
[    5.495751] Bluetooth: Core ver 2.21
[    5.495800] NET: Registered protocol family 31
[    5.495805] Bluetooth: HCI device and connection manager initialized
[    5.495816] Bluetooth: HCI socket layer initialized
[    5.495824] Bluetooth: L2CAP socket layer initialized
[    5.495842] Bluetooth: SCO socket layer initialized
[    5.516036] Bluetooth: HCI UART driver ver 2.3
[    5.516044] Bluetooth: HCI UART protocol H4 registered
[    5.516046] Bluetooth: HCI UART protocol BCSP registered
[    5.516048] Bluetooth: HCI UART protocol LL registered
[    5.516050] Bluetooth: HCI UART protocol ATH3K registered
[    5.516052] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    5.516136] Bluetooth: HCI UART protocol Intel registered
[    5.530631] hci_bcm BCM2E55:00: BCM irq: 70
[    5.530698] hci_bcm BCM2E55:00: BCM2E55:00 device registered.
[    5.530839] Bluetooth: HCI UART protocol BCM registered
[    5.530842] Bluetooth: HCI UART protocol QCA registered
[    5.542168] i2c i2c-0: i2c read failed
[    5.582645] [drm] Memory usable by graphics device = 2048M
[    5.582654] checking generic (c0000000 500000) vs hw (c0000000 10000000)
[    5.582657] fb: switching to inteldrmfb from simple
[    5.582719] Console: switching to colour dummy device 80x25
[    5.582870] [drm] Replacing VGA console driver
[    5.582987] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    5.582990] [drm] Driver supports precise vblank timestamp query.
[    5.597449] i2c i2c-0: i2c read failed
[    5.647244] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    5.753540] intel_sst_acpi 80860F28:00: LPE base: 0xd0a00000 size:0x200000
[    5.753548] intel_sst_acpi 80860F28:00: IRAM base: 0xd0ac0000
[    5.753573] intel_sst_acpi 80860F28:00: DRAM base: 0xd0b00000
[    5.753581] intel_sst_acpi 80860F28:00: SHIM base: 0xd0b40000
[    5.753597] intel_sst_acpi 80860F28:00: Mailbox base: 0xd0b44000
[    5.753604] intel_sst_acpi 80860F28:00: DDR base: 0x20000000
[    5.753696] intel_sst_acpi 80860F28:00: Got drv data max stream 25
[    5.770360] i2c i2c-0: i2c read failed
[    5.780947] intel_sst_acpi 80860F28:00: firmware: direct-loading firmware intel/fw_sst_0f28.bin
[    5.788609] fbcon: inteldrmfb (fb0) is primary device
[    5.788822] Console: switching to colour frame buffer device 160x64
[    5.790307] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.790809] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2
[    5.790882] [drm] Initialized i915 1.6.0 20160425 for 0000:00:02.0 on minor 0
[    5.798160] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    5.810879] ACPI: AC Adapter [ADP1] (off-line)
[    5.835294] i2c i2c-0: i2c read failed
[    5.920402] rt5640 i2c-10EC5640:01: Device with ID register 0x6271 is not rt5640/39
[    5.928180] ACPI: Battery Slot [BAT0] (battery absent)
[    5.955290] dw_dmac INTL9C60:00: DesignWare DMA Controller, 8 channels
[    5.955800] wmi: Mapper loaded
[    5.987262] dw_dmac INTL9C60:01: DesignWare DMA Controller, 8 channels
[    6.086202] usbcore: registered new interface driver usbserial
[    6.086229] usbcore: registered new interface driver usbserial_generic
[    6.086251] usbserial: USB Serial support registered for generic
[    6.092029] usbcore: registered new interface driver usb_serial_simple
[    6.092057] usbserial: USB Serial support registered for carelink
[    6.092083] usbserial: USB Serial support registered for zio
[    6.092103] usbserial: USB Serial support registered for funsoft
[    6.092123] usbserial: USB Serial support registered for flashloader
[    6.092143] usbserial: USB Serial support registered for google
[    6.092162] usbserial: USB Serial support registered for vivopay
[    6.092184] usbserial: USB Serial support registered for moto_modem
[    6.092204] usbserial: USB Serial support registered for novatel_gps
[    6.092223] usbserial: USB Serial support registered for hp4x
[    6.092242] usbserial: USB Serial support registered for suunto
[    6.092261] usbserial: USB Serial support registered for siemens_mpi
[    6.092296] usb_serial_simple 1-3:1.0: flashloader converter detected
[    6.092765] usb 1-3: flashloader converter now attached to ttyUSB0
[    6.095993] usbcore: registered new interface driver usbhid
[    6.096000] usbhid: USB HID core driver
[    6.098929] input: PC Speaker as /devices/platform/pcspkr/input/input3
[    6.200871] random: nonblocking pool is initialized
[    6.299122] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    6.301514] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.303466] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.306731] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    6.386802] iTCO_vendor_support: vendor-support=0
[    6.398725] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    6.398849] iTCO_wdt: Found a Bay Trail SoC TCO device (Version=3, TCOBASE=0x0460)
[    6.399353] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    6.409301] intel_rapl: Found RAPL domain package
[    6.409308] intel_rapl: Found RAPL domain core
[    6.439977] brcmfmac: brcmf_sdio_drivestrengthinit: No SDIO Drive strength init done for chip 4324 rev 6 pmurev 17
[    6.444747] usbcore: registered new interface driver brcmfmac
[    6.456873] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.456877] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.458547] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.bin
[    6.459023] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.txt
[    6.508238] input: gpio-keys as /devices/platform/gpio-keys.1.auto/input/input4
[    6.508818] input: gpio-keys as /devices/platform/gpio-keys.2.auto/input/input5
[    6.509417] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.509520] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.512126] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.512223] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.543644] brcmfmac: brcmf_c_preinit_dcmds: Firmware version = wl0: Feb 24 2015 06:43:35 version 6.25.91.13 (r536868) FWID 01-b48d628a
[    6.549656] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:070A:0025.0003/input/input6
[    6.550213] hid-generic 0003:070A:0025.0003: input,hidraw0: USB HID v1.00 Mouse [HID 070a:0025] on usb-0000:00:14.0-1.2/input0
[    6.551111] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.551196] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.551297] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:070A:0025.0004/input/input7
[    6.551767] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.551847] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.595912] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    6.605595] hid-generic 0003:070A:0025.0004: input,hidraw1: USB HID v1.10 Keyboard [HID 070a:0025] on usb-0000:00:14.0-1.4/input0
[    6.606224] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.606317] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.608767] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:070A:0025.0005/input/input8
[    6.625280] usb 1-3: USB disconnect, device number 3
[    6.625612] flashloader ttyUSB0: flashloader converter now disconnected from ttyUSB0
[    6.625637] usb_serial_simple 1-3:1.0: device disconnected
[    6.663423] input: ATML1000:00 03EB:844B as /devices/platform/80860F41:05/i2c-13/i2c-ATML1000:00/0018:03EB:844B.0002/input/input9
[    6.664496] hid-multitouch 0018:03EB:844B.0002: input,hidraw2: I2C HID v1.00 Device [ATML1000:00 03EB:844B] on i2c-ATML1000:00
[    6.665341] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.665345] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.666881] hid-generic 0003:070A:0025.0005: input,hiddev0,hidraw3: USB HID v1.10 Device [HID 070a:0025] on usb-0000:00:14.0-1.4/input1
[    6.668077] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.668171] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.710378] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.710473] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.714412] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.714503] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.717532] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.717639] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.718231] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.718310] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.722671] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    7.159864] Bluetooth: hci0: BCM: chip id 90
[    7.159873] Bluetooth: hci0: BCM (002.006.006) build 0000
[    7.164338] bluetooth hci0: firmware: direct-loading firmware brcm/BCM.hcd
[    7.420638] systemd[1]: apt-daily.timer: Adding 3h 16min 22.685262s random time.
[    7.653084] Bluetooth: hci0: BCM (002.006.006) build 1170
[    7.819738] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    7.854252] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    8.062950] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   11.324208] usb 1-3: new high-speed USB device number 6 using xhci_hcd
[   11.460378] usb 1-3: New USB device found, idVendor=1199, idProduct=a001
[   11.460385] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   11.460389] usb 1-3: Product: Sierra Wireless EM7345 4G LTE
[   11.460392] usb 1-3: Manufacturer: Sierra Wireless Inc.
[   11.460395] usb 1-3: SerialNumber: 013937001951332
[   11.487122] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.487132] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.505368] cdc_acm 1-3:1.2: ttyACM0: USB ACM device
[   11.506417] usbcore: registered new interface driver cdc_acm
[   11.506423] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[   11.506828] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.506837] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.507375] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.507385] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.511996] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.512006] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.545336] cdc_ncm 1-3:1.0: MAC-Address: 00:00:11:12:13:14
[   11.545344] cdc_ncm 1-3:1.0: setting rx_max = 16384
[   11.546370] cdc_ncm 1-3:1.0 usb0: register 'cdc_ncm' at usb-0000:00:14.0-3, CDC NCM, 00:00:11:12:13:14
[   11.546442] usbcore: registered new interface driver cdc_ncm
[   11.547457] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.547468] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.550421] usbcore: registered new interface driver cdc_wdm
[   11.552598] usbcore: registered new interface driver cdc_mbim
[   11.561795] cdc_ncm 1-3:1.0 enx000011121314: renamed from usb0
[   11.647987] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   11.648160] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   18.738818] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   19.333026] systemd[1]: apt-daily.timer: Adding 5h 50min 46.486571s random time.
[   19.750315] systemd[1]: apt-daily.timer: Adding 5h 28min 56.848098s random time.
[   27.556799] fuse init (API version 7.25)

[-- Attachment #6: dmesg.systemd-triggered-by-udev-rule-with-1s-delay --]
[-- Type: text/plain, Size: 50159 bytes --]

[    0.000000] Linux version 4.7.0-1-amd64 (debian-kernel@lists.debian.org) (gcc version 5.4.1 20160803 (Debian 5.4.1-1) ) #1 SMP Debian 4.7.2-1 (2016-08-28)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] x86/fpu: Legacy x87 FPU detected.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000200fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020100000-0x00000000b81c2fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b81c3000-0x00000000b91c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b91c3000-0x00000000b92c2fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000b92c3000-0x00000000b98c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b98c3000-0x00000000b99c2fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000b99c3000-0x00000000b9a02fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000b9a03000-0x00000000ba7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by Phoenix Technologies Ltd.
[    0.000000] efi:  ACPI=0xb9a02000  ACPI 2.0=0xb9a02014  SMBIOS=0xb98a5000  ESRT=0xb8af8000 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 20BN0036UK/20BN0036UK, BIOS GYET26WW (1.26) 01/12/2015
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   1 base 000000000 mask F80000000 write-back
[    0.000000]   2 base 080000000 mask FC0000000 write-back
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   5 base 0BA800000 mask FFF800000 uncachable
[    0.000000]   6 base 100000000 mask FC0000000 write-back
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0xba800 max_arch_pfn = 0x400000000
[    0.000000] Base memory trampoline at [ffff880000029000] 29000 size 24576
[    0.000000] BRK [0x0a556000, 0x0a556fff] PGTABLE
[    0.000000] BRK [0x0a557000, 0x0a557fff] PGTABLE
[    0.000000] BRK [0x0a558000, 0x0a558fff] PGTABLE
[    0.000000] BRK [0x0a559000, 0x0a559fff] PGTABLE
[    0.000000] BRK [0x0a55a000, 0x0a55afff] PGTABLE
[    0.000000] BRK [0x0a55b000, 0x0a55bfff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35d52000-0x36ea0fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000B9A02014 000024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 0x00000000B9A02170 0000E4 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FACP 0x00000000B99FE000 00010C (v05 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: DSDT 0x00000000B99EA000 00F9BF (v02 LENOVO TP-GY    00001260 INTL 20120711)
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: TCPA 0x00000000B9A01000 000032 (v02 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B9A00000 0000B1 (v01 LENOVO ADebTabl 00001000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99FF000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: HPET 0x00000000B99FD000 000038 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: LPIT 0x00000000B99FC000 000104 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: APIC 0x00000000B99FB000 00006C (v03 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: MCFG 0x00000000B99FA000 00003C (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E9000 0005FC (v01 LENOVO CpuDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E7000 0018E6 (v01 LENOVO DptfTab  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E6000 000058 (v01 LENOVO LowPwrM  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E5000 0000FF (v01 LENOVO SoCDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E4000 000763 (v01 PmRef  CpuPm    00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E3000 000290 (v01 PmRef  Cpu0Tst  00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E2000 00017A (v01 PmRef  ApTst    00003000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99E1000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: MSDM 0x00000000B9955000 000055 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BATB 0x00000000B99E0000 000046 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FPDT 0x00000000B99DF000 000054 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B99DE000 00043A (v01 LENOVO Tpm2Tabl 00001000 INTL 20120711)
[    0.000000] ACPI: TPM2 0x00000000B99DD000 000034 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: UEFI 0x00000000B99DC000 00008A (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BGRT 0x00000000B99DB000 000038 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: CSRT 0x00000000B99DA000 00014C (v00 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x13fff8000-0x13fffcfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.000000]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020100000-0x00000000b81c2fff]
[    0.000000]   node   0: [mem 0x00000000b9a03000-0x00000000ba7fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
[    0.000000] On node 0 totalpages: 1019486
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 133 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 11771 pages used for memmap
[    0.000000]   DMA32 zone: 753344 pages, LIFO batch:31
[    0.000000]   Normal zone: 4096 pages used for memmap
[    0.000000]   Normal zone: 262144 pages, LIFO batch:31
[    0.000000] x86/hpet: Will disable the HPET for this platform because it's not reliable
[    0.000000] Reserving Intel graphics stolen memory at 0xbaf00000-0xbeefffff
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-86
[    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: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x200fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xb81c3000-0xb91c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb91c3000-0xb92c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb92c3000-0xb98c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb98c3000-0xb99c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb99c3000-0xb9a02fff]
[    0.000000] PM: Registered nosave memory: [mem 0xba800000-0xbaefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbaf00000-0xbeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbef00000-0xe00f7fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f9000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed02000-0xffffffff]
[    0.000000] e820: [mem 0xbef00000-0xe00f7fff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 33 pages/cpu @ffff88013fc00000 s98264 r8192 d28712 u524288
[    0.000000] pcpu-alloc: s98264 r8192 d28712 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1003422
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3913608K/4077944K available (6004K kernel code, 1096K rwdata, 2752K rodata, 1352K init, 928K bss, 164336K reserved, 0K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:33024 nr_irqs:1024 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Maximum core-clock to bus-clock ratio: 0xc
[    0.000000] Resolved frequency ID: 2, frequency: 133200 KHz
[    0.000000] TSC runs at 1598400 KHz
[    0.000000] lapic_timer_frequency = 532800
[    0.000000] tsc: Detected 1598.400 MHz processor
[    0.000038] Calibrating delay loop (skipped), value calculated using timer frequency.. 3196.80 BogoMIPS (lpj=6393600)
[    0.000045] pid_max: default: 32768 minimum: 301
[    0.000078] ACPI: Core revision 20160422
[    0.046001] ACPI: 10 ACPI AML tables successfully acquired and loaded

[    0.046116] Security Framework initialized
[    0.046122] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.046139] AppArmor: AppArmor disabled by boot time parameter
[    0.046697] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.049020] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.050073] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050089] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050655] CPU: Physical Processor ID: 0
[    0.050661] CPU: Processor Core ID: 0
[    0.050668] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.050672] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.050684] mce: CPU supports 6 MCE banks
[    0.050697] CPU0: Thermal monitoring enabled (TM1)
[    0.050706] process: using mwait in idle threads
[    0.050713] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[    0.050717] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[    0.051157] Freeing SMP alternatives memory: 24K (ffffffff8a466000 - ffffffff8a46c000)
[    0.053357] ftrace: allocating 24665 entries in 97 pages
[    0.068451] smpboot: Max logical packages: 1
[    0.068458] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.069535] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.109245] TSC deadline timer enabled
[    0.109252] smpboot: CPU0: Intel(R) Atom(TM) CPU  Z3795  @ 1.60GHz (family: 0x6, model: 0x37, stepping: 0x8)
[    0.109262] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, full-width counters, Intel PMU driver.
[    0.109281] ... version:                3
[    0.109283] ... bit width:              40
[    0.109286] ... generic registers:      2
[    0.109289] ... value mask:             000000ffffffffff
[    0.109291] ... max period:             000000ffffffffff
[    0.109294] ... fixed-purpose events:   3
[    0.109296] ... event mask:             0000000700000003
[    0.110659] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.111022] x86: Booting SMP configuration:
[    0.111027] .... node  #0, CPUs:      #1 #2 #3
[    0.351653] x86: Booted up 1 node, 4 CPUs
[    0.351661] smpboot: Total of 4 processors activated (12793.87 BogoMIPS)
[    0.361734] devtmpfs: initialized
[    0.361920] x86/mm: Memory block size: 128MB
[    0.379623] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    0.379630] PM: Registering ACPI NVS region [mem 0xb98c3000-0xb99c2fff] (1048576 bytes)
[    0.379837] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.389533] pinctrl core: initialized pinctrl subsystem
[    0.399843] NET: Registered protocol family 16
[    0.409527] cpuidle: using governor ladder
[    0.419555] cpuidle: using governor menu
[    0.419666] ACPI: bus type PCI registered
[    0.419671] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.439721] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.439728] PCI: not using MMCONFIG
[    0.439731] PCI: Using configuration type 1 for base access
[    0.453924] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.493757] ACPI: Added _OSI(Module Device)
[    0.493762] ACPI: Added _OSI(Processor Device)
[    0.493765] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.493768] ACPI: Added _OSI(Processor Aggregator Device)
[    0.515054] ACPI: Dynamic OEM Table Load:
[    0.515075] ACPI: SSDT 0xFFFF88013A652000 0003D7 (v01 PmRef  Cpu0Ist  00003000 INTL 20120711)
[    0.516720] ACPI: Dynamic OEM Table Load:
[    0.516737] ACPI: SSDT 0xFFFF88013A6D8000 000433 (v01 PmRef  Cpu0Cst  00003001 INTL 20120711)
[    0.519064] ACPI: Dynamic OEM Table Load:
[    0.519079] ACPI: SSDT 0xFFFF88013A6C6A00 00015F (v01 PmRef  ApIst    00003000 INTL 20120711)
[    0.520643] ACPI: Dynamic OEM Table Load:
[    0.520658] ACPI: SSDT 0xFFFF88013A6BD840 00008D (v01 PmRef  ApCst    00003000 INTL 20120711)
[    0.525171] ACPI: Interpreter enabled
[    0.525230] ACPI: (supports S0 S4 S5)
[    0.525235] ACPI: Using IOAPIC for interrupt routing
[    0.525321] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.530925] [Firmware Info]: PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] not reserved in ACPI motherboard resources
[    0.530931] PCI: not using MMCONFIG
[    0.530939] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.533960] ACPI: Power Resource [USBC] (on)
[    0.534812] ACPI: Power Resource [WWPR] (off)
[    0.542069] ACPI: Power Resource [PLPE] (on)
[    0.551194] ACPI: Power Resource [CLK0] (on)
[    0.551321] ACPI: Power Resource [CLK1] (on)
[    0.551691] ACPI: Power Resource [P28X] (off)
[    0.551811] ACPI: Power Resource [P18X] (off)
[    0.554869] ACPI: Power Resource [TCPR] (off)
[    0.563897] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.563912] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.564036] \_SB_.PCI0 (33DB4D5B-1FF7-401C-9657-7441C03DD766): _OSC invalid UUID
[    0.564041] _OSC request data: 1 1e 0
[    0.564050] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.564084] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.564780] PCI host bridge to bus 0000:00
[    0.564788] pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
[    0.564793] pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
[    0.564798] pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
[    0.564803] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.564808] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.564813] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.564818] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.564823] pci_bus 0000:00: root bus resource [mem 0xd0c00000-0xd0ffffff window]
[    0.564828] pci_bus 0000:00: root bus resource [mem 0xbaf00001-0xbef00000 window]
[    0.564833] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xd08ffffe window]
[    0.564837] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed40fff window]
[    0.564843] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.564860] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
[    0.565065] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
[    0.565084] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff]
[    0.565099] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff pref]
[    0.565114] pci 0000:00:02.0: reg 0x20: [io  0x1000-0x1007]
[    0.565327] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
[    0.565351] pci 0000:00:14.0: reg 0x10: [mem 0xd0800000-0xd080ffff 64bit]
[    0.565428] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.565606] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
[    0.565631] pci 0000:00:1a.0: reg 0x10: [mem 0xd0700000-0xd07fffff]
[    0.565645] pci 0000:00:1a.0: reg 0x14: [mem 0xd0600000-0xd06fffff]
[    0.565755] pci 0000:00:1a.0: PME# supported from D0 D3hot
[    0.565929] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
[    0.567031] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.567224] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.567414] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.567604] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.567794] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.567985] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.568180] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.568371] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.581993] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.582001] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.582006] vgaarb: loaded
[    0.582009] vgaarb: bridge control possible 0000:00:02.0
[    0.582251] PCI: Using ACPI for IRQ routing
[    0.582257] PCI: pci_cache_line_size set to 64 bytes
[    0.582281] Expanded resource reserved due to conflict with PCI Bus 0000:00
[    0.582286] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.582290] e820: reserve RAM buffer [mem 0xb81c3000-0xbbffffff]
[    0.582295] e820: reserve RAM buffer [mem 0xba800000-0xbbffffff]
[    0.582693] amd_nb: Cannot enumerate AMD northbridges
[    0.582724] clocksource: Switched to clocksource refined-jiffies
[    0.598312] VFS: Disk quotas dquot_6.6.0
[    0.609902] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.615914] pnp: PnP ACPI init
[    0.616067] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.616238] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.616245] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.616251] system 00:01: [io  0x0500-0x05fe] has been reserved
[    0.616256] system 00:01: [io  0x0600-0x061f] has been reserved
[    0.616262] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.616271] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.616528] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.619582] pnp: PnP ACPI: found 3 devices
[    0.629467] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.629502] clocksource: Switched to clocksource acpi_pm
[    0.629525] pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
[    0.629530] pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
[    0.629534] pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
[    0.629539] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.629543] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.629548] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.629553] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[    0.629557] pci_bus 0000:00: resource 11 [mem 0xd0c00000-0xd0ffffff window]
[    0.629562] pci_bus 0000:00: resource 12 [mem 0xbaf00001-0xbef00000 window]
[    0.629566] pci_bus 0000:00: resource 13 [mem 0xc0000000-0xd08ffffe window]
[    0.629571] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed40fff window]
[    0.697603] NET: Registered protocol family 2
[    0.709728] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.709900] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.710094] TCP: Hash tables configured (established 32768 bind 32768)
[    0.710174] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.710222] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.737648] NET: Registered protocol family 1
[    0.737689] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.738055] PCI: CLS 0 bytes, default 64
[    0.738187] Unpacking initramfs...
[    1.374888] Freeing initrd memory: 17724K (ffff880035d52000 - ffff880036ea1000)
[    1.374900] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.374905] software IO TLB [mem 0xb41c3000-0xb81c3000] (64MB) mapped at [ffff8800b41c3000-ffff8800b81c2fff]
[    1.375283] simple-framebuffer simple-framebuffer.0: framebuffer at 0xc0000000, 0x500000 bytes, mapped to 0xffffc90000800000
[    1.375291] simple-framebuffer simple-framebuffer.0: format=a8r8g8b8, mode=1280x1024x32, linelength=5120
[    1.385627] Console: switching to colour frame buffer device 160x64
[    1.395639] simple-framebuffer simple-framebuffer.0: fb0: simplefb registered!
[    1.406776] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    1.418332] audit: initializing netlink subsys (disabled)
[    1.418376] audit: type=2000 audit(1473723828.407:1): initialized
[    1.419209] Initialise system trusted keyrings
[    1.419500] workingset: timestamp_bits=37 max_order=20 bucket_order=0
[    1.419530] zbud: loaded
[    1.550829] Key type asymmetric registered
[    1.550835] Asymmetric key parser 'x509' registered
[    1.566520] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    1.566611] io scheduler noop registered
[    1.566616] io scheduler deadline registered
[    1.582507] io scheduler cfq registered (default)
[    1.582636] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.582653] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.582725] intel_idle: MWAIT substates: 0x33000020
[    1.582729] intel_idle: v0.4.1 model 0x37
[    1.582735] intel_idle: max_cstate 1 reached
[    1.582915] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.587238] GHES: HEST is not enabled!
[    1.587404] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.607668] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.622701] 80860F0A:00: ttyS1 at MMIO 0xd094d000 (irq = 39, base_baud = 2764800) is a 16550A
[    1.623199] hpet: number irqs doesn't agree with number of timers
[    1.623261] Linux agpgart interface v0.103
[    1.623361] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    1.623365] AMD IOMMUv2 functionality not available on this system
[    1.624164] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    2.375308] tsc: Refined TSC clocksource calibration: 1599.999 MHz
[    2.375316] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x171023f09ff, max_idle_ns: 440795233615 ns
[    2.659875] i8042: No controller found
[    2.660108] mousedev: PS/2 mouse device common for all mice
[    2.660417] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    2.660456] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram
[    2.660478] intel_pstate: Intel P-state driver initializing
[    2.660739] ledtrig-cpu: registered to indicate activity on CPUs
[    2.731666] NET: Registered protocol family 10
[    2.732821] mip6: Mobile IPv6
[    2.732838] NET: Registered protocol family 17
[    2.732860] mpls_gso: MPLS GSO support
[    2.734327] microcode: CPU0 sig=0x30678, pf=0x2, revision=0x80a
[    2.734376] microcode: CPU1 sig=0x30678, pf=0x2, revision=0x80a
[    2.734425] microcode: CPU2 sig=0x30678, pf=0x2, revision=0x80a
[    2.734462] microcode: CPU3 sig=0x30678, pf=0x2, revision=0x80a
[    2.734733] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    2.735788] registered taskstats version 1
[    2.735804] Loading compiled-in X.509 certificates
[    2.745059] alg: No test for pkcs1pad(rsa,sha256) (pkcs1pad(rsa-generic,sha256))
[    2.747202] Loaded X.509 cert 'Debian Project: Ben Hutchings: 008a018dca80932630'
[    2.747323] zswap: loaded using pool lzo/zbud
[    2.748326] rtc_cmos 00:00: setting system clock to 2016-09-12 23:43:50 UTC (1473723830)
[    2.749056] PM: Hibernation image not present or could not be loaded.
[    2.756691] Freeing unused kernel memory: 1352K (ffffffff8a314000 - ffffffff8a466000)
[    2.756699] Write protecting the kernel read-only data: 10240k
[    2.757232] Freeing unused kernel memory: 124K (ffff880009de1000 - ffff880009e00000)
[    2.767972] Freeing unused kernel memory: 1344K (ffff88000a0b0000 - ffff88000a200000)
[    2.785328] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.854518] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.855162] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.855283] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.855422] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.860667] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.861030] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.863433] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.864077] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.864618] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.865142] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.959220] sdhci: Secure Digital Host Controller Interface driver
[    2.959226] sdhci: Copyright(c) Pierre Ossman
[    2.977574] hidraw: raw HID events driver (C) Jiri Kosina
[    2.982033] mmc0: SDHCI controller on ACPI [80860F14:00] using ADMA
[    2.990968] mmc1: SDHCI controller on ACPI [INT33BB:00] using ADMA
[    3.009148] FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
[    3.022646] mmc2: SDHCI controller on ACPI [80860F14:01] using ADMA
[    3.037057] [Firmware Bug]: No valid trip found
[    3.052875] ACPI: bus type USB registered
[    3.052930] usbcore: registered new interface driver usbfs
[    3.052954] usbcore: registered new interface driver hub
[    3.054130] usbcore: registered new device driver usb
[    3.070382] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.070400] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    3.071524] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[    3.071533] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.075459] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.075466] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.075470] usb usb1: Product: xHCI Host Controller
[    3.075473] usb usb1: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.075475] usb usb1: SerialNumber: 0000:00:14.0
[    3.075771] hub 1-0:1.0: USB hub found
[    3.075792] hub 1-0:1.0: 6 ports detected
[    3.084693] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    3.086266] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.087867] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.092380] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    3.130834] mmc0: new HS200 MMC card at address 0001
[    3.136654] SSE version of gcm_enc/dec engaged.
[    3.207159] mmc1: new ultra high speed DDR50 SDIO card at address 0001
[    3.248828] mmcblk0: mmc0:0001 SEM128 116 GiB 
[    3.249027] mmcblk0boot0: mmc0:0001 SEM128 partition 1 4.00 MiB
[    3.249193] mmcblk0boot1: mmc0:0001 SEM128 partition 2 4.00 MiB
[    3.249380] mmcblk0rpmb: mmc0:0001 SEM128 partition 3 4.00 MiB
[    3.271719]  mmcblk0: p1 p2 p3 p4 p5
[    3.376435] clocksource: Switched to clocksource tsc
[    3.677455] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.677492] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    3.678009] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    3.678029] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.678043] usb usb2: Product: xHCI Host Controller
[    3.678055] usb usb2: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.678067] usb usb2: SerialNumber: 0000:00:14.0
[    3.679079] hub 2-0:1.0: USB hub found
[    3.679150] hub 2-0:1.0: 1 port detected
[    3.989158] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[    4.117816] usb 1-1: New USB device found, idVendor=058f, idProduct=9254
[    4.117838] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.117851] usb 1-1: Product: Generic USB Hub
[    4.117863] usb 1-1: Manufacturer: ALCOR
[    4.118953] hub 1-1:1.0: USB hub found
[    4.119098] hub 1-1:1.0: 4 ports detected
[    4.357304] usb 1-3: new high-speed USB device number 3 using xhci_hcd
[    4.378294] EXT4-fs (mmcblk0p5): mounted filesystem with ordered data mode. Opts: (null)
[    4.486600] usb 1-3: New USB device found, idVendor=8087, idProduct=0716
[    4.486607] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.557437] usb 1-1.2: new low-speed USB device number 4 using xhci_hcd
[    4.632510] systemd[1]: RTC configured in localtime, applying delta of 120 minutes to system time.
[    4.648715] usb 1-1.2: New USB device found, idVendor=070a, idProduct=0025
[    4.648720] usb 1-1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.721649] usb 1-1.4: new low-speed USB device number 5 using xhci_hcd
[    4.722704] systemd[1]: systemd 231 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[    4.723581] systemd[1]: Detected architecture x86-64.
[    4.728133] systemd[1]: Set hostname to <thinkpad8>.
[    4.821017] usb 1-1.4: New USB device found, idVendor=070a, idProduct=0025
[    4.821029] usb 1-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.969491] systemd[1]: Reached target Swap.
[    4.969684] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    4.970015] systemd[1]: Created slice System Slice.
[    4.970252] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    4.970442] systemd[1]: Created slice User and Session Slice.
[    4.970467] systemd[1]: Reached target Slices.
[    4.970492] systemd[1]: Reached target Encrypted Volumes.
[    4.970573] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    4.970679] systemd[1]: Listening on Journal Socket.
[    4.986043] systemd[1]: Mounting POSIX Message Queue File System...
[    4.989896] systemd[1]: Starting Load Kernel Modules...
[    4.991938] systemd[1]: Mounting RPC Pipe File System...
[    4.992658] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    4.994665] systemd[1]: Mounting Huge Pages File System...
[    4.994878] systemd[1]: Listening on fsck to fsckd communication Socket.
[    4.995197] systemd[1]: Listening on Journal Audit Socket.
[    4.995360] systemd[1]: Listening on Syslog Socket.
[    4.997257] systemd[1]: Starting Set the console keyboard layout...
[    4.997514] systemd[1]: Listening on Journal Socket (/dev/log).
[    5.001400] systemd[1]: Starting Journal Service...
[    5.001605] systemd[1]: Listening on udev Control Socket.
[    5.002143] systemd[1]: Created slice system-getty.slice.
[    5.003891] systemd[1]: Mounting Debug File System...
[    5.004052] systemd[1]: Listening on udev Kernel Socket.
[    5.005535] systemd[1]: Starting Remount Root and Kernel File Systems...
[    5.005604] systemd[1]: Reached target User and Group Name Lookups.
[    5.005789] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    5.005930] systemd[1]: Listening on RPCbind Server Activation Socket.
[    5.007418] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    5.024935] systemd[1]: Started Load Kernel Modules.
[    5.026388] systemd[1]: Started Create list of required static device nodes for the current kernel.
[    5.028324] systemd[1]: Starting Create Static Device Nodes in /dev...
[    5.029804] systemd[1]: Starting Apply Kernel Variables...
[    5.034101] systemd[1]: Mounted Debug File System.
[    5.034192] systemd[1]: Mounted Huge Pages File System.
[    5.034233] systemd[1]: Mounted POSIX Message Queue File System.
[    5.042023] EXT4-fs (mmcblk0p5): re-mounted. Opts: errors=remount-ro
[    5.043440] systemd[1]: Started Remount Root and Kernel File Systems.
[    5.082019] RPC: Registered named UNIX socket transport module.
[    5.082026] RPC: Registered udp transport module.
[    5.082028] RPC: Registered tcp transport module.
[    5.082030] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.086275] systemd[1]: Starting udev Coldplug all Devices...
[    5.087554] systemd[1]: Starting Load/Save Random Seed...
[    5.089349] systemd[1]: Mounted RPC Pipe File System.
[    5.089598] systemd[1]: Started Journal Service.
[    5.111008] systemd-journald[938]: Received request to flush runtime journal from PID 1
[    5.379801] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    5.379921] ACPI: Lid Switch [LID0]
[    5.380027] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    5.380033] ACPI: Power Button [PWRF]
[    5.413124] i2c i2c-0: i2c read failed
[    5.467085] [drm] Initialized drm 1.1.0 20060810
[    5.469551] i2c i2c-0: i2c read failed
[    5.469729] Bluetooth: Core ver 2.21
[    5.469763] NET: Registered protocol family 31
[    5.469766] Bluetooth: HCI device and connection manager initialized
[    5.469774] Bluetooth: HCI socket layer initialized
[    5.469779] Bluetooth: L2CAP socket layer initialized
[    5.469790] Bluetooth: SCO socket layer initialized
[    5.483185] Bluetooth: HCI UART driver ver 2.3
[    5.483192] Bluetooth: HCI UART protocol H4 registered
[    5.483194] Bluetooth: HCI UART protocol BCSP registered
[    5.483197] Bluetooth: HCI UART protocol LL registered
[    5.483199] Bluetooth: HCI UART protocol ATH3K registered
[    5.483201] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    5.483281] Bluetooth: HCI UART protocol Intel registered
[    5.498765] hci_bcm BCM2E55:00: BCM irq: 70
[    5.498834] hci_bcm BCM2E55:00: BCM2E55:00 device registered.
[    5.499013] Bluetooth: HCI UART protocol BCM registered
[    5.499016] Bluetooth: HCI UART protocol QCA registered
[    5.526190] i2c i2c-0: i2c read failed
[    5.562711] [drm] Memory usable by graphics device = 2048M
[    5.562720] checking generic (c0000000 500000) vs hw (c0000000 10000000)
[    5.562723] fb: switching to inteldrmfb from simple
[    5.562785] Console: switching to colour dummy device 80x25
[    5.562929] [drm] Replacing VGA console driver
[    5.563042] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    5.563045] [drm] Driver supports precise vblank timestamp query.
[    5.579329] i2c i2c-0: i2c read failed
[    5.618561] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    5.642209] i2c i2c-0: i2c read failed
[    5.673289] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.673873] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2
[    5.673957] [drm] Initialized i915 1.6.0 20160425 for 0000:00:02.0 on minor 0
[    5.763080] fbcon: inteldrmfb (fb0) is primary device
[    5.798827] intel_sst_acpi 80860F28:00: LPE base: 0xd0a00000 size:0x200000
[    5.798829] intel_sst_acpi 80860F28:00: IRAM base: 0xd0ac0000
[    5.798848] intel_sst_acpi 80860F28:00: DRAM base: 0xd0b00000
[    5.798856] intel_sst_acpi 80860F28:00: SHIM base: 0xd0b40000
[    5.798868] intel_sst_acpi 80860F28:00: Mailbox base: 0xd0b44000
[    5.798875] intel_sst_acpi 80860F28:00: DDR base: 0x20000000
[    5.798959] intel_sst_acpi 80860F28:00: Got drv data max stream 25
[    5.818425] i2c i2c-0: i2c read failed
[    5.828269] intel_sst_acpi 80860F28:00: firmware: direct-loading firmware intel/fw_sst_0f28.bin
[    5.858869] ACPI: AC Adapter [ADP1] (off-line)
[    5.884966] i2c i2c-0: i2c read failed
[    5.964819] rt5640 i2c-10EC5640:01: Device with ID register 0x6271 is not rt5640/39
[    5.974947] ACPI: Battery Slot [BAT0] (battery absent)
[    6.003588] dw_dmac INTL9C60:00: DesignWare DMA Controller, 8 channels
[    6.035319] dw_dmac INTL9C60:01: DesignWare DMA Controller, 8 channels
[    6.083654] wmi: Mapper loaded
[    6.117859] Console: switching to colour frame buffer device 160x64
[    6.125351] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    6.128294] input: PC Speaker as /devices/platform/pcspkr/input/input3
[    6.189567] usbcore: registered new interface driver usbserial
[    6.189593] usbcore: registered new interface driver usbserial_generic
[    6.189615] usbserial: USB Serial support registered for generic
[    6.194219] usbcore: registered new interface driver usb_serial_simple
[    6.194248] usbserial: USB Serial support registered for carelink
[    6.194268] usbserial: USB Serial support registered for zio
[    6.194289] usbserial: USB Serial support registered for funsoft
[    6.194311] usbserial: USB Serial support registered for flashloader
[    6.194330] usbserial: USB Serial support registered for google
[    6.194350] usbserial: USB Serial support registered for vivopay
[    6.194373] usbserial: USB Serial support registered for moto_modem
[    6.194404] usbserial: USB Serial support registered for novatel_gps
[    6.194426] usbserial: USB Serial support registered for hp4x
[    6.194445] usbserial: USB Serial support registered for suunto
[    6.194465] usbserial: USB Serial support registered for siemens_mpi
[    6.194496] usb_serial_simple 1-3:1.0: flashloader converter detected
[    6.194652] usb 1-3: flashloader converter now attached to ttyUSB0
[    6.322543] random: nonblocking pool is initialized
[    6.341332] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    6.343060] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.347098] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.351571] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    6.361305] usbcore: registered new interface driver usbhid
[    6.361312] usbhid: USB HID core driver
[    6.436545] intel_rapl: Found RAPL domain package
[    6.436553] intel_rapl: Found RAPL domain core
[    6.453547] iTCO_vendor_support: vendor-support=0
[    6.456238] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    6.456357] iTCO_wdt: Found a Bay Trail SoC TCO device (Version=3, TCOBASE=0x0460)
[    6.457558] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    6.483773] brcmfmac: brcmf_sdio_drivestrengthinit: No SDIO Drive strength init done for chip 4324 rev 6 pmurev 17
[    6.493064] usbcore: registered new interface driver brcmfmac
[    6.506399] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.bin
[    6.507869] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.txt
[    6.524463] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.524561] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.606087] brcmfmac: brcmf_c_preinit_dcmds: Firmware version = wl0: Feb 24 2015 06:43:35 version 6.25.91.13 (r536868) FWID 01-b48d628a
[    6.617573] input: gpio-keys as /devices/platform/gpio-keys.1.auto/input/input4
[    6.619320] input: gpio-keys as /devices/platform/gpio-keys.2.auto/input/input5
[    6.619760] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.619849] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.620691] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.620781] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.629703] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.629803] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.640541] usb 1-3: USB disconnect, device number 3
[    6.640986] flashloader ttyUSB0: flashloader converter now disconnected from ttyUSB0
[    6.641012] usb_serial_simple 1-3:1.0: device disconnected
[    6.659153] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    6.674303] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:070A:0025.0003/input/input6
[    6.677956] hid-generic 0003:070A:0025.0003: input,hidraw0: USB HID v1.00 Mouse [HID 070a:0025] on usb-0000:00:14.0-1.2/input0
[    6.678297] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:070A:0025.0004/input/input7
[    6.678865] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.678954] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.732071] hid-generic 0003:070A:0025.0004: input,hidraw1: USB HID v1.10 Keyboard [HID 070a:0025] on usb-0000:00:14.0-1.4/input0
[    6.733899] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.733905] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.735576] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:070A:0025.0005/input/input8
[    6.765038] input: ATML1000:00 03EB:844B as /devices/platform/80860F41:05/i2c-13/i2c-ATML1000:00/0018:03EB:844B.0002/input/input9
[    6.788037] hid-generic 0003:070A:0025.0005: input,hiddev0,hidraw2: USB HID v1.10 Device [HID 070a:0025] on usb-0000:00:14.0-1.4/input1
[    6.788528] hid-multitouch 0018:03EB:844B.0002: input,hidraw3: I2C HID v1.00 Device [ATML1000:00 03EB:844B] on i2c-ATML1000:00
[    6.788809] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.788900] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.789438] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.789512] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.796857] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.796945] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.798003] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.798094] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.802643] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    6.803294] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.803386] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.803969] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.804048] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.807013] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.807106] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.809984] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.810081] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    7.870155] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    7.904150] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    8.137328] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    8.181883] Bluetooth: hci0: BCM: chip id 90
[    8.181895] Bluetooth: hci0: BCM (002.006.006) build 0000
[    8.182634] bluetooth hci0: firmware: direct-loading firmware brcm/BCM.hcd
[    8.656696] Bluetooth: hci0: BCM (002.006.006) build 1170
[    8.828565] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    8.828572] Bluetooth: BNEP filters: protocol multicast
[    8.828581] Bluetooth: BNEP socket layer initialized
[   11.352236] usb 1-3: new high-speed USB device number 6 using xhci_hcd
[   11.499831] usb 1-3: New USB device found, idVendor=1199, idProduct=a001
[   11.499838] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   11.499842] usb 1-3: Product: Sierra Wireless EM7345 4G LTE
[   11.499845] usb 1-3: Manufacturer: Sierra Wireless Inc.
[   11.499847] usb 1-3: SerialNumber: 013937001951332
[   11.509029] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.509040] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.545737] cdc_acm 1-3:1.2: ttyACM0: USB ACM device
[   11.547216] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.547229] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.547335] usbcore: registered new interface driver cdc_acm
[   11.547343] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[   11.547767] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.547775] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.554281] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.554292] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.589393] cdc_ncm 1-3:1.0: MAC-Address: 00:00:11:12:13:14
[   11.589401] cdc_ncm 1-3:1.0: setting rx_max = 16384
[   11.590407] cdc_ncm 1-3:1.0 usb0: register 'cdc_ncm' at usb-0000:00:14.0-3, CDC NCM, 00:00:11:12:13:14
[   11.590476] usbcore: registered new interface driver cdc_ncm
[   11.591444] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.591455] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.595756] usbcore: registered new interface driver cdc_wdm
[   11.598326] usbcore: registered new interface driver cdc_mbim
[   11.607535] cdc_ncm 1-3:1.0 enx000011121314: renamed from usb0
[   11.635391] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   11.635560] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   18.899836] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   29.697992] fuse init (API version 7.25)
[   36.742318] Bluetooth: RFCOMM TTY layer initialized
[   36.742343] Bluetooth: RFCOMM socket layer initialized
[   36.742361] Bluetooth: RFCOMM ver 1.11
[   37.699358] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[   37.699371] Bluetooth: HIDP socket layer initialized
[   37.700635] hid-generic 0005:046D:B319.0006: unknown main item tag 0x0
[   37.700888] input: Logitech K810 as /devices/platform/80860F0A:00/tty/ttyS1/hci0/hci0:11/0005:046D:B319.0006/input/input11
[   37.701461] hid-generic 0005:046D:B319.0006: input,hidraw4: BLUETOOTH HID v12.01 Keyboard [Logitech K810] on b0:10:41:b8:16:6c
[   37.702053] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   37.702061] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   38.767915] hid-generic 0005:046D:B00D.0007: unknown main item tag 0x0
[   38.768743] input: Ultrathin Touch Mouse as /devices/platform/80860F0A:00/tty/ttyS1/hci0/hci0:12/0005:046D:B00D.0007/input/input12
[   38.774737] hid-generic 0005:046D:B00D.0007: input,hidraw5: BLUETOOTH HID v7.00 Keyboard [Ultrathin Touch Mouse] on b0:10:41:b8:16:6c
[   38.775612] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   38.775671] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517

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

* Timing-related issue when loading the BT firmware on Broadcom Wi+Fi & BT combo chips (was: btattach: auto triggering at boot time by Linux distributions)
  2016-09-12 22:12             ` Jérôme de Bretagne
@ 2016-09-14 21:03               ` Jérôme de Bretagne
  0 siblings, 0 replies; 13+ messages in thread
From: Jérôme de Bretagne @ 2016-09-14 21:03 UTC (permalink / raw)
  To: Arend van Spriel, Hante Meuleman; +Cc: linux-bluetooth, Marcel Holtmann

[-- Attachment #1: Type: text/plain, Size: 3773 bytes --]

Hi Arend, Hi Hante,

Do you think you could get some feedback on Broadcom side to the following
question: when is it *not* a good timing to load the Bluetooth firmware via
btattach during the Linux boot on combo Wi-Fi & BT chipsets? Are there some
conditions that a Broadcom combo chip needs to respect to avoid getting in a
stalled Bluetooth state?

I am asking this question because with a BCM43241 rev B5 chip (on a Lenovo
ThinkPad 8 tablet), enabling Bluetooth automatically via scripts during boot
seems quite heavily timing dependent to succeed. The working / non-working
cases are 100% reproducible with Linux 4.6 up to 4.8(rc5) on my setup.

Could you please forward this question internally, if you think some
Broadcom colleagues may have the right knowledge on that topic?

Please find quite a few details below already and earlier in the thread too.
If other inputs would be useful, I would be glad to try to provide them.

> > I've shared my results so far here on StackExchange:
> > 
> > http://unix.stackexchange.com/questions/309219/how-to-enable-bluetooth-
> > automatically-at-boot-for-recent-intel-and-broadcom-ch/309263#309263

> > To sum up in a few words:
> > 1/ launching btattach from a udev rule enables Bluetooth but it gets
> > killed.
> > 2/ launching btattach via systemd works, only when adding a few sec
> > delay.
> > 3/ launching the systemd service from 2/ directly via udev, using the
> > exact same trigger conditions as in 1/ ends up with Bluetooth not
> > working...
> > 
> > What leaves me really puzzled is the difference between 1/ and 3/, as
> > they
> > launch exactly the same command at almost the same time during the boot
> > process, but they give a different result in a 100% reproducible way.
> 
> I am attaching 5 different dmesg outputs to give a sense of the boot
> timing in the different scenarios:
> 
> - dmesg.simple-udev-rule corresponds to 1/ -> OK
> 
> - dmesg.systemd-standalone-rule-with-1s-delay corresponds to 2/ -> OK
> - dmesg.systemd-standalone-rule-no-delay : 2/ without the 1s delay -> KO 
> 
> - dmesg.systemd-triggered-by-udev-rule-no-delay corresponds to 3/ -> KO
> - dmesg.systemd-tigggered-by-udev-rule-with-1s-delay -> OK
> 
> with the line:
>    "bluetooth hci0: firmware: direct-loading firmware brcm/BCM.hcd"
> giving a good indication of when btattach is launched during the sequence.
>  
> Maybe these files will help reveal some clues?

An idea I had at first was that perhaps the firmware loading with btattach
was triggered "too early" during the boot sequence somehow. 

However, scenario 1 with a pure udev rule (not systemd at all) is working
fine consistently and is the fastest among all the cases I've tried.

The scenarios using systemd work only when adding a delay (1s being enough
in my own experiences) and they trigger the firmware loading later than when
using the pure udev rule.

These are the scenarios in between time-wise that lead to the stalled
situations (reproduced using systemd but without adding the 1s delay hack).
btattach is still running in the list of processes, dmesg is showing the BT
firmware loading properly with no errors, but Bluetooth is simply not
working at the end of the boot. bluetoothctl blocks when launched and the
Gnome BT settings page remain grayed out until I kill / relaunch btattach.

I'm making the assumption that something is going wrong when the BT firmware
is loading at the same time than other on-going events on the combo chipet
(on the Wi-Fi side?). Or maybe the "deadlock" is linked to other parts of
the Bluetooth stack still initializing though.

I am out of ideas to deep dive more just by myself, so any hints would be
really appreciated to help solve this weird but annoying issue. Thanks a
lot.

Regards,

Jérôme

[-- Attachment #2: dmesg.systemd-triggered-by-udev-rule-no-delay --]
[-- Type: text/plain, Size: 48621 bytes --]

[    0.000000] Linux version 4.7.0-1-amd64 (debian-kernel@lists.debian.org) (gcc version 5.4.1 20160803 (Debian 5.4.1-1) ) #1 SMP Debian 4.7.2-1 (2016-08-28)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] x86/fpu: Legacy x87 FPU detected.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000200fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020100000-0x00000000b81c2fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b81c3000-0x00000000b91c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b91c3000-0x00000000b92c2fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000b92c3000-0x00000000b98c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b98c3000-0x00000000b99c2fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000b99c3000-0x00000000b9a02fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000b9a03000-0x00000000ba7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by Phoenix Technologies Ltd.
[    0.000000] efi:  ACPI=0xb9a02000  ACPI 2.0=0xb9a02014  SMBIOS=0xb98a5000  ESRT=0xb8af8000 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 20BN0036UK/20BN0036UK, BIOS GYET26WW (1.26) 01/12/2015
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   1 base 000000000 mask F80000000 write-back
[    0.000000]   2 base 080000000 mask FC0000000 write-back
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   5 base 0BA800000 mask FFF800000 uncachable
[    0.000000]   6 base 100000000 mask FC0000000 write-back
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0xba800 max_arch_pfn = 0x400000000
[    0.000000] Base memory trampoline at [ffff880000029000] 29000 size 24576
[    0.000000] BRK [0x05356000, 0x05356fff] PGTABLE
[    0.000000] BRK [0x05357000, 0x05357fff] PGTABLE
[    0.000000] BRK [0x05358000, 0x05358fff] PGTABLE
[    0.000000] BRK [0x05359000, 0x05359fff] PGTABLE
[    0.000000] BRK [0x0535a000, 0x0535afff] PGTABLE
[    0.000000] BRK [0x0535b000, 0x0535bfff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35d52000-0x36ea0fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000B9A02014 000024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 0x00000000B9A02170 0000E4 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FACP 0x00000000B99FE000 00010C (v05 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: DSDT 0x00000000B99EA000 00F9BF (v02 LENOVO TP-GY    00001260 INTL 20120711)
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: TCPA 0x00000000B9A01000 000032 (v02 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B9A00000 0000B1 (v01 LENOVO ADebTabl 00001000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99FF000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: HPET 0x00000000B99FD000 000038 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: LPIT 0x00000000B99FC000 000104 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: APIC 0x00000000B99FB000 00006C (v03 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: MCFG 0x00000000B99FA000 00003C (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E9000 0005FC (v01 LENOVO CpuDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E7000 0018E6 (v01 LENOVO DptfTab  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E6000 000058 (v01 LENOVO LowPwrM  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E5000 0000FF (v01 LENOVO SoCDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E4000 000763 (v01 PmRef  CpuPm    00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E3000 000290 (v01 PmRef  Cpu0Tst  00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E2000 00017A (v01 PmRef  ApTst    00003000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99E1000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: MSDM 0x00000000B9955000 000055 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BATB 0x00000000B99E0000 000046 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FPDT 0x00000000B99DF000 000054 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B99DE000 00043A (v01 LENOVO Tpm2Tabl 00001000 INTL 20120711)
[    0.000000] ACPI: TPM2 0x00000000B99DD000 000034 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: UEFI 0x00000000B99DC000 00008A (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BGRT 0x00000000B99DB000 000038 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: CSRT 0x00000000B99DA000 00014C (v00 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x13fff8000-0x13fffcfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.000000]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020100000-0x00000000b81c2fff]
[    0.000000]   node   0: [mem 0x00000000b9a03000-0x00000000ba7fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
[    0.000000] On node 0 totalpages: 1019486
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 133 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 11771 pages used for memmap
[    0.000000]   DMA32 zone: 753344 pages, LIFO batch:31
[    0.000000]   Normal zone: 4096 pages used for memmap
[    0.000000]   Normal zone: 262144 pages, LIFO batch:31
[    0.000000] x86/hpet: Will disable the HPET for this platform because it's not reliable
[    0.000000] Reserving Intel graphics stolen memory at 0xbaf00000-0xbeefffff
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-86
[    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: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x200fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xb81c3000-0xb91c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb91c3000-0xb92c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb92c3000-0xb98c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb98c3000-0xb99c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb99c3000-0xb9a02fff]
[    0.000000] PM: Registered nosave memory: [mem 0xba800000-0xbaefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbaf00000-0xbeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbef00000-0xe00f7fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f9000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed02000-0xffffffff]
[    0.000000] e820: [mem 0xbef00000-0xe00f7fff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 33 pages/cpu @ffff88013fc00000 s98264 r8192 d28712 u524288
[    0.000000] pcpu-alloc: s98264 r8192 d28712 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1003422
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3913608K/4077944K available (6004K kernel code, 1096K rwdata, 2752K rodata, 1352K init, 928K bss, 164336K reserved, 0K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:33024 nr_irqs:1024 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Maximum core-clock to bus-clock ratio: 0xc
[    0.000000] Resolved frequency ID: 2, frequency: 133200 KHz
[    0.000000] TSC runs at 1598400 KHz
[    0.000000] lapic_timer_frequency = 532800
[    0.000000] tsc: Detected 1598.400 MHz processor
[    0.000037] Calibrating delay loop (skipped), value calculated using timer frequency.. 3196.80 BogoMIPS (lpj=6393600)
[    0.000045] pid_max: default: 32768 minimum: 301
[    0.000078] ACPI: Core revision 20160422
[    0.045988] ACPI: 10 ACPI AML tables successfully acquired and loaded

[    0.046102] Security Framework initialized
[    0.046108] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.046124] AppArmor: AppArmor disabled by boot time parameter
[    0.046685] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.049009] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.050063] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050079] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050642] CPU: Physical Processor ID: 0
[    0.050648] CPU: Processor Core ID: 0
[    0.050655] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.050658] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.050671] mce: CPU supports 6 MCE banks
[    0.050684] CPU0: Thermal monitoring enabled (TM1)
[    0.050693] process: using mwait in idle threads
[    0.050700] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[    0.050704] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[    0.051145] Freeing SMP alternatives memory: 24K (ffffffff85266000 - ffffffff8526c000)
[    0.053344] ftrace: allocating 24665 entries in 97 pages
[    0.068439] smpboot: Max logical packages: 1
[    0.068447] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.069516] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.109226] TSC deadline timer enabled
[    0.109233] smpboot: CPU0: Intel(R) Atom(TM) CPU  Z3795  @ 1.60GHz (family: 0x6, model: 0x37, stepping: 0x8)
[    0.109243] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, full-width counters, Intel PMU driver.
[    0.109262] ... version:                3
[    0.109265] ... bit width:              40
[    0.109268] ... generic registers:      2
[    0.109270] ... value mask:             000000ffffffffff
[    0.109273] ... max period:             000000ffffffffff
[    0.109275] ... fixed-purpose events:   3
[    0.109278] ... event mask:             0000000700000003
[    0.110641] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.110999] x86: Booting SMP configuration:
[    0.111004] .... node  #0, CPUs:      #1 #2 #3
[    0.351643] x86: Booted up 1 node, 4 CPUs
[    0.351650] smpboot: Total of 4 processors activated (12793.90 BogoMIPS)
[    0.361714] devtmpfs: initialized
[    0.361900] x86/mm: Memory block size: 128MB
[    0.379604] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    0.379611] PM: Registering ACPI NVS region [mem 0xb98c3000-0xb99c2fff] (1048576 bytes)
[    0.379817] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.389516] pinctrl core: initialized pinctrl subsystem
[    0.399824] NET: Registered protocol family 16
[    0.409511] cpuidle: using governor ladder
[    0.419536] cpuidle: using governor menu
[    0.419647] ACPI: bus type PCI registered
[    0.419652] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.439702] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.439708] PCI: not using MMCONFIG
[    0.439712] PCI: Using configuration type 1 for base access
[    0.453913] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.489741] ACPI: Added _OSI(Module Device)
[    0.489746] ACPI: Added _OSI(Processor Device)
[    0.489749] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.489753] ACPI: Added _OSI(Processor Aggregator Device)
[    0.510993] ACPI: Dynamic OEM Table Load:
[    0.511013] ACPI: SSDT 0xFFFF88013A653000 0003D7 (v01 PmRef  Cpu0Ist  00003000 INTL 20120711)
[    0.512658] ACPI: Dynamic OEM Table Load:
[    0.512675] ACPI: SSDT 0xFFFF88013A6D9000 000433 (v01 PmRef  Cpu0Cst  00003001 INTL 20120711)
[    0.515005] ACPI: Dynamic OEM Table Load:
[    0.515021] ACPI: SSDT 0xFFFF88013A655800 00015F (v01 PmRef  ApIst    00003000 INTL 20120711)
[    0.516584] ACPI: Dynamic OEM Table Load:
[    0.516599] ACPI: SSDT 0xFFFF88013A657780 00008D (v01 PmRef  ApCst    00003000 INTL 20120711)
[    0.521108] ACPI: Interpreter enabled
[    0.521167] ACPI: (supports S0 S4 S5)
[    0.521172] ACPI: Using IOAPIC for interrupt routing
[    0.521258] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.526859] [Firmware Info]: PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] not reserved in ACPI motherboard resources
[    0.526864] PCI: not using MMCONFIG
[    0.526872] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.529890] ACPI: Power Resource [USBC] (on)
[    0.530748] ACPI: Power Resource [WWPR] (off)
[    0.537995] ACPI: Power Resource [PLPE] (on)
[    0.547127] ACPI: Power Resource [CLK0] (on)
[    0.547254] ACPI: Power Resource [CLK1] (on)
[    0.547624] ACPI: Power Resource [P28X] (off)
[    0.547743] ACPI: Power Resource [P18X] (off)
[    0.550796] ACPI: Power Resource [TCPR] (off)
[    0.559833] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.559848] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.559973] \_SB_.PCI0 (33DB4D5B-1FF7-401C-9657-7441C03DD766): _OSC invalid UUID
[    0.559977] _OSC request data: 1 1e 0
[    0.559987] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.560021] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.560717] PCI host bridge to bus 0000:00
[    0.560725] pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
[    0.560731] pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
[    0.560736] pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
[    0.560741] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.560746] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.560751] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.560756] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.560760] pci_bus 0000:00: root bus resource [mem 0xd0c00000-0xd0ffffff window]
[    0.560765] pci_bus 0000:00: root bus resource [mem 0xbaf00001-0xbef00000 window]
[    0.560770] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xd08ffffe window]
[    0.560775] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed40fff window]
[    0.560781] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.560797] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
[    0.561003] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
[    0.561022] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff]
[    0.561037] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff pref]
[    0.561052] pci 0000:00:02.0: reg 0x20: [io  0x1000-0x1007]
[    0.561265] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
[    0.561290] pci 0000:00:14.0: reg 0x10: [mem 0xd0800000-0xd080ffff 64bit]
[    0.561367] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.561544] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
[    0.561569] pci 0000:00:1a.0: reg 0x10: [mem 0xd0700000-0xd07fffff]
[    0.561584] pci 0000:00:1a.0: reg 0x14: [mem 0xd0600000-0xd06fffff]
[    0.561681] pci 0000:00:1a.0: PME# supported from D0 D3hot
[    0.561870] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
[    0.562971] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.563163] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.563352] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.563543] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.563732] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.563922] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.564117] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.564307] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.577938] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.577946] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.577951] vgaarb: loaded
[    0.577954] vgaarb: bridge control possible 0000:00:02.0
[    0.578192] PCI: Using ACPI for IRQ routing
[    0.578199] PCI: pci_cache_line_size set to 64 bytes
[    0.578222] Expanded resource reserved due to conflict with PCI Bus 0000:00
[    0.578226] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.578232] e820: reserve RAM buffer [mem 0xb81c3000-0xbbffffff]
[    0.578236] e820: reserve RAM buffer [mem 0xba800000-0xbbffffff]
[    0.578630] amd_nb: Cannot enumerate AMD northbridges
[    0.578661] clocksource: Switched to clocksource refined-jiffies
[    0.594261] VFS: Disk quotas dquot_6.6.0
[    0.605881] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.611892] pnp: PnP ACPI init
[    0.612045] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.612216] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.612223] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.612229] system 00:01: [io  0x0500-0x05fe] has been reserved
[    0.612234] system 00:01: [io  0x0600-0x061f] has been reserved
[    0.612240] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.612249] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.612505] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.615556] pnp: PnP ACPI: found 3 devices
[    0.625456] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.625490] clocksource: Switched to clocksource acpi_pm
[    0.625511] pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
[    0.625516] pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
[    0.625521] pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
[    0.625525] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.625530] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.625534] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.625539] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[    0.625543] pci_bus 0000:00: resource 11 [mem 0xd0c00000-0xd0ffffff window]
[    0.625548] pci_bus 0000:00: resource 12 [mem 0xbaf00001-0xbef00000 window]
[    0.625552] pci_bus 0000:00: resource 13 [mem 0xc0000000-0xd08ffffe window]
[    0.625557] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed40fff window]
[    0.693584] NET: Registered protocol family 2
[    0.709728] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.709899] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.710092] TCP: Hash tables configured (established 32768 bind 32768)
[    0.710168] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.710215] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.733639] NET: Registered protocol family 1
[    0.733679] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.734045] PCI: CLS 0 bytes, default 64
[    0.734173] Unpacking initramfs...
[    1.371085] Freeing initrd memory: 17724K (ffff880035d52000 - ffff880036ea1000)
[    1.371097] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.371102] software IO TLB [mem 0xb41c3000-0xb81c3000] (64MB) mapped at [ffff8800b41c3000-ffff8800b81c2fff]
[    1.371474] simple-framebuffer simple-framebuffer.0: framebuffer at 0xc0000000, 0x500000 bytes, mapped to 0xffffc90000800000
[    1.371482] simple-framebuffer simple-framebuffer.0: format=a8r8g8b8, mode=1280x1024x32, linelength=5120
[    1.381818] Console: switching to colour frame buffer device 160x64
[    1.391863] simple-framebuffer simple-framebuffer.0: fb0: simplefb registered!
[    1.402762] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    1.414310] audit: initializing netlink subsys (disabled)
[    1.414352] audit: type=2000 audit(1473720788.407:1): initialized
[    1.415177] Initialise system trusted keyrings
[    1.415498] workingset: timestamp_bits=37 max_order=20 bucket_order=0
[    1.415528] zbud: loaded
[    1.550610] Key type asymmetric registered
[    1.550616] Asymmetric key parser 'x509' registered
[    1.566525] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    1.566615] io scheduler noop registered
[    1.566620] io scheduler deadline registered
[    1.582491] io scheduler cfq registered (default)
[    1.582623] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.582639] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.582706] intel_idle: MWAIT substates: 0x33000020
[    1.582710] intel_idle: v0.4.1 model 0x37
[    1.582716] intel_idle: max_cstate 1 reached
[    1.582898] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.587215] GHES: HEST is not enabled!
[    1.587364] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.607629] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.622687] 80860F0A:00: ttyS1 at MMIO 0xd094d000 (irq = 39, base_baud = 2764800) is a 16550A
[    1.623152] hpet: number irqs doesn't agree with number of timers
[    1.623205] Linux agpgart interface v0.103
[    1.623304] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    1.623307] AMD IOMMUv2 functionality not available on this system
[    1.624116] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    2.371318] tsc: Refined TSC clocksource calibration: 1599.999 MHz
[    2.371326] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x171023f09ff, max_idle_ns: 440795233615 ns
[    2.659799] i8042: No controller found
[    2.660041] mousedev: PS/2 mouse device common for all mice
[    2.660355] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    2.660393] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram
[    2.660416] intel_pstate: Intel P-state driver initializing
[    2.660661] ledtrig-cpu: registered to indicate activity on CPUs
[    2.731658] NET: Registered protocol family 10
[    2.732808] mip6: Mobile IPv6
[    2.732825] NET: Registered protocol family 17
[    2.732847] mpls_gso: MPLS GSO support
[    2.734307] microcode: CPU0 sig=0x30678, pf=0x2, revision=0x80a
[    2.734356] microcode: CPU1 sig=0x30678, pf=0x2, revision=0x80a
[    2.734404] microcode: CPU2 sig=0x30678, pf=0x2, revision=0x80a
[    2.734439] microcode: CPU3 sig=0x30678, pf=0x2, revision=0x80a
[    2.734720] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    2.735825] registered taskstats version 1
[    2.735841] Loading compiled-in X.509 certificates
[    2.745076] alg: No test for pkcs1pad(rsa,sha256) (pkcs1pad(rsa-generic,sha256))
[    2.747210] Loaded X.509 cert 'Debian Project: Ben Hutchings: 008a018dca80932630'
[    2.747334] zswap: loaded using pool lzo/zbud
[    2.748383] rtc_cmos 00:00: setting system clock to 2016-09-12 22:53:10 UTC (1473720790)
[    2.749132] PM: Hibernation image not present or could not be loaded.
[    2.757674] Freeing unused kernel memory: 1352K (ffffffff85114000 - ffffffff85266000)
[    2.757690] Write protecting the kernel read-only data: 10240k
[    2.758740] Freeing unused kernel memory: 124K (ffff880004be1000 - ffff880004c00000)
[    2.771302] Freeing unused kernel memory: 1344K (ffff880004eb0000 - ffff880005000000)
[    2.789731] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.846843] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.847506] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.847629] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.847848] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.848483] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.848644] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.849621] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.849847] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.850065] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.850284] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.927160] sdhci: Secure Digital Host Controller Interface driver
[    2.927166] sdhci: Copyright(c) Pierre Ossman
[    2.940334] hidraw: raw HID events driver (C) Jiri Kosina
[    2.951296] mmc0: SDHCI controller on ACPI [80860F14:00] using ADMA
[    2.956921] mmc1: SDHCI controller on ACPI [INT33BB:00] using ADMA
[    2.974059] FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
[    2.987376] mmc2: SDHCI controller on ACPI [80860F14:01] using ADMA
[    3.037363] ACPI: bus type USB registered
[    3.037420] usbcore: registered new interface driver usbfs
[    3.037444] usbcore: registered new interface driver hub
[    3.040421] usbcore: registered new device driver usb
[    3.052796] [Firmware Bug]: No valid trip found
[    3.054127] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    3.055205] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.055223] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    3.057490] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.060141] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[    3.060155] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.061069] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.061460] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.061467] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.061470] usb usb1: Product: xHCI Host Controller
[    3.061473] usb usb1: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.061476] usb usb1: SerialNumber: 0000:00:14.0
[    3.062320] hub 1-0:1.0: USB hub found
[    3.062343] hub 1-0:1.0: 6 ports detected
[    3.064544] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    3.090598] SSE version of gcm_enc/dec engaged.
[    3.124913] mmc0: new HS200 MMC card at address 0001
[    3.169657] mmc1: new ultra high speed DDR50 SDIO card at address 0001
[    3.220431] mmcblk0: mmc0:0001 SEM128 116 GiB 
[    3.220881] mmcblk0boot0: mmc0:0001 SEM128 partition 1 4.00 MiB
[    3.221082] mmcblk0boot1: mmc0:0001 SEM128 partition 2 4.00 MiB
[    3.221259] mmcblk0rpmb: mmc0:0001 SEM128 partition 3 4.00 MiB
[    3.244018]  mmcblk0: p1 p2 p3 p4 p5
[    3.372421] clocksource: Switched to clocksource tsc
[    3.661361] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.661400] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    3.661840] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    3.661858] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.661871] usb usb2: Product: xHCI Host Controller
[    3.661883] usb usb2: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.661895] usb usb2: SerialNumber: 0000:00:14.0
[    3.663857] hub 2-0:1.0: USB hub found
[    3.664643] hub 2-0:1.0: 1 port detected
[    3.972899] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[    4.101798] usb 1-1: New USB device found, idVendor=058f, idProduct=9254
[    4.101820] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.101833] usb 1-1: Product: Generic USB Hub
[    4.101845] usb 1-1: Manufacturer: ALCOR
[    4.102926] hub 1-1:1.0: USB hub found
[    4.103070] hub 1-1:1.0: 4 ports detected
[    4.341236] usb 1-3: new high-speed USB device number 3 using xhci_hcd
[    4.343162] EXT4-fs (mmcblk0p5): mounted filesystem with ordered data mode. Opts: (null)
[    4.470566] usb 1-3: New USB device found, idVendor=8087, idProduct=0716
[    4.470577] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.541471] usb 1-1.2: new low-speed USB device number 4 using xhci_hcd
[    4.585627] systemd[1]: RTC configured in localtime, applying delta of 120 minutes to system time.
[    4.633817] usb 1-1.2: New USB device found, idVendor=070a, idProduct=0025
[    4.633836] usb 1-1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.695048] systemd[1]: systemd 231 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[    4.695920] systemd[1]: Detected architecture x86-64.
[    4.700888] systemd[1]: Set hostname to <thinkpad8>.
[    4.705629] usb 1-1.4: new low-speed USB device number 5 using xhci_hcd
[    4.805025] usb 1-1.4: New USB device found, idVendor=070a, idProduct=0025
[    4.805033] usb 1-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.947419] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    4.947553] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    4.947617] systemd[1]: Listening on fsck to fsckd communication Socket.
[    4.947685] systemd[1]: Listening on Journal Socket (/dev/log).
[    4.947785] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    4.947922] systemd[1]: Listening on Journal Audit Socket.
[    4.947948] systemd[1]: Reached target Swap.
[    4.947971] systemd[1]: Reached target Encrypted Volumes.
[    4.948048] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    4.948327] systemd[1]: Created slice User and Session Slice.
[    4.948407] systemd[1]: Listening on udev Control Socket.
[    4.948491] systemd[1]: Listening on Journal Socket.
[    4.948558] systemd[1]: Listening on udev Kernel Socket.
[    4.948764] systemd[1]: Created slice System Slice.
[    4.958072] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    4.958408] systemd[1]: Created slice system-getty.slice.
[    4.961331] systemd[1]: Starting Load Kernel Modules...
[    4.961447] systemd[1]: Reached target Slices.
[    4.963075] systemd[1]: Mounting RPC Pipe File System...
[    4.964873] systemd[1]: Mounting POSIX Message Queue File System...
[    4.966611] systemd[1]: Starting Set the console keyboard layout...
[    4.969097] systemd[1]: Mounting Huge Pages File System...
[    4.970859] systemd[1]: Starting Remount Root and Kernel File Systems...
[    4.971275] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    4.972697] systemd[1]: Reached target User and Group Name Lookups.
[    4.972833] systemd[1]: Listening on Syslog Socket.
[    4.974282] systemd[1]: Starting Journal Service...
[    4.974428] systemd[1]: Listening on RPCbind Server Activation Socket.
[    4.975865] systemd[1]: Mounting Debug File System...
[    4.979364] systemd[1]: Started Create list of required static device nodes for the current kernel.
[    4.981143] systemd[1]: Starting Create Static Device Nodes in /dev...
[    4.991617] systemd[1]: Started Load Kernel Modules.
[    4.993473] systemd[1]: Starting Apply Kernel Variables...
[    5.023799] systemd[1]: Mounted Debug File System.
[    5.023887] systemd[1]: Mounted Huge Pages File System.
[    5.023929] systemd[1]: Mounted POSIX Message Queue File System.
[    5.026119] EXT4-fs (mmcblk0p5): re-mounted. Opts: errors=remount-ro
[    5.027706] systemd[1]: Started Remount Root and Kernel File Systems.
[    5.033409] systemd[1]: Starting udev Coldplug all Devices...
[    5.034828] systemd[1]: Starting Load/Save Random Seed...
[    5.035919] systemd[1]: Started Apply Kernel Variables.
[    5.042952] systemd[1]: Started Journal Service.
[    5.062202] systemd-journald[939]: Received request to flush runtime journal from PID 1
[    5.078096] RPC: Registered named UNIX socket transport module.
[    5.078104] RPC: Registered udp transport module.
[    5.078106] RPC: Registered tcp transport module.
[    5.078107] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.362291] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    5.362404] ACPI: Lid Switch [LID0]
[    5.362511] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    5.362517] ACPI: Power Button [PWRF]
[    5.369418] i2c i2c-0: i2c read failed
[    5.424060] i2c i2c-0: i2c read failed
[    5.436242] [drm] Initialized drm 1.1.0 20060810
[    5.490025] i2c i2c-0: i2c read failed
[    5.495751] Bluetooth: Core ver 2.21
[    5.495800] NET: Registered protocol family 31
[    5.495805] Bluetooth: HCI device and connection manager initialized
[    5.495816] Bluetooth: HCI socket layer initialized
[    5.495824] Bluetooth: L2CAP socket layer initialized
[    5.495842] Bluetooth: SCO socket layer initialized
[    5.516036] Bluetooth: HCI UART driver ver 2.3
[    5.516044] Bluetooth: HCI UART protocol H4 registered
[    5.516046] Bluetooth: HCI UART protocol BCSP registered
[    5.516048] Bluetooth: HCI UART protocol LL registered
[    5.516050] Bluetooth: HCI UART protocol ATH3K registered
[    5.516052] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    5.516136] Bluetooth: HCI UART protocol Intel registered
[    5.530631] hci_bcm BCM2E55:00: BCM irq: 70
[    5.530698] hci_bcm BCM2E55:00: BCM2E55:00 device registered.
[    5.530839] Bluetooth: HCI UART protocol BCM registered
[    5.530842] Bluetooth: HCI UART protocol QCA registered
[    5.542168] i2c i2c-0: i2c read failed
[    5.582645] [drm] Memory usable by graphics device = 2048M
[    5.582654] checking generic (c0000000 500000) vs hw (c0000000 10000000)
[    5.582657] fb: switching to inteldrmfb from simple
[    5.582719] Console: switching to colour dummy device 80x25
[    5.582870] [drm] Replacing VGA console driver
[    5.582987] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    5.582990] [drm] Driver supports precise vblank timestamp query.
[    5.597449] i2c i2c-0: i2c read failed
[    5.647244] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    5.753540] intel_sst_acpi 80860F28:00: LPE base: 0xd0a00000 size:0x200000
[    5.753548] intel_sst_acpi 80860F28:00: IRAM base: 0xd0ac0000
[    5.753573] intel_sst_acpi 80860F28:00: DRAM base: 0xd0b00000
[    5.753581] intel_sst_acpi 80860F28:00: SHIM base: 0xd0b40000
[    5.753597] intel_sst_acpi 80860F28:00: Mailbox base: 0xd0b44000
[    5.753604] intel_sst_acpi 80860F28:00: DDR base: 0x20000000
[    5.753696] intel_sst_acpi 80860F28:00: Got drv data max stream 25
[    5.770360] i2c i2c-0: i2c read failed
[    5.780947] intel_sst_acpi 80860F28:00: firmware: direct-loading firmware intel/fw_sst_0f28.bin
[    5.788609] fbcon: inteldrmfb (fb0) is primary device
[    5.788822] Console: switching to colour frame buffer device 160x64
[    5.790307] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.790809] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2
[    5.790882] [drm] Initialized i915 1.6.0 20160425 for 0000:00:02.0 on minor 0
[    5.798160] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    5.810879] ACPI: AC Adapter [ADP1] (off-line)
[    5.835294] i2c i2c-0: i2c read failed
[    5.920402] rt5640 i2c-10EC5640:01: Device with ID register 0x6271 is not rt5640/39
[    5.928180] ACPI: Battery Slot [BAT0] (battery absent)
[    5.955290] dw_dmac INTL9C60:00: DesignWare DMA Controller, 8 channels
[    5.955800] wmi: Mapper loaded
[    5.987262] dw_dmac INTL9C60:01: DesignWare DMA Controller, 8 channels
[    6.086202] usbcore: registered new interface driver usbserial
[    6.086229] usbcore: registered new interface driver usbserial_generic
[    6.086251] usbserial: USB Serial support registered for generic
[    6.092029] usbcore: registered new interface driver usb_serial_simple
[    6.092057] usbserial: USB Serial support registered for carelink
[    6.092083] usbserial: USB Serial support registered for zio
[    6.092103] usbserial: USB Serial support registered for funsoft
[    6.092123] usbserial: USB Serial support registered for flashloader
[    6.092143] usbserial: USB Serial support registered for google
[    6.092162] usbserial: USB Serial support registered for vivopay
[    6.092184] usbserial: USB Serial support registered for moto_modem
[    6.092204] usbserial: USB Serial support registered for novatel_gps
[    6.092223] usbserial: USB Serial support registered for hp4x
[    6.092242] usbserial: USB Serial support registered for suunto
[    6.092261] usbserial: USB Serial support registered for siemens_mpi
[    6.092296] usb_serial_simple 1-3:1.0: flashloader converter detected
[    6.092765] usb 1-3: flashloader converter now attached to ttyUSB0
[    6.095993] usbcore: registered new interface driver usbhid
[    6.096000] usbhid: USB HID core driver
[    6.098929] input: PC Speaker as /devices/platform/pcspkr/input/input3
[    6.200871] random: nonblocking pool is initialized
[    6.299122] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    6.301514] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.303466] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.306731] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    6.386802] iTCO_vendor_support: vendor-support=0
[    6.398725] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    6.398849] iTCO_wdt: Found a Bay Trail SoC TCO device (Version=3, TCOBASE=0x0460)
[    6.399353] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    6.409301] intel_rapl: Found RAPL domain package
[    6.409308] intel_rapl: Found RAPL domain core
[    6.439977] brcmfmac: brcmf_sdio_drivestrengthinit: No SDIO Drive strength init done for chip 4324 rev 6 pmurev 17
[    6.444747] usbcore: registered new interface driver brcmfmac
[    6.456873] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.456877] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.458547] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.bin
[    6.459023] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.txt
[    6.508238] input: gpio-keys as /devices/platform/gpio-keys.1.auto/input/input4
[    6.508818] input: gpio-keys as /devices/platform/gpio-keys.2.auto/input/input5
[    6.509417] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.509520] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.512126] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.512223] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.543644] brcmfmac: brcmf_c_preinit_dcmds: Firmware version = wl0: Feb 24 2015 06:43:35 version 6.25.91.13 (r536868) FWID 01-b48d628a
[    6.549656] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:070A:0025.0003/input/input6
[    6.550213] hid-generic 0003:070A:0025.0003: input,hidraw0: USB HID v1.00 Mouse [HID 070a:0025] on usb-0000:00:14.0-1.2/input0
[    6.551111] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.551196] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.551297] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:070A:0025.0004/input/input7
[    6.551767] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.551847] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.595912] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    6.605595] hid-generic 0003:070A:0025.0004: input,hidraw1: USB HID v1.10 Keyboard [HID 070a:0025] on usb-0000:00:14.0-1.4/input0
[    6.606224] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.606317] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.608767] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:070A:0025.0005/input/input8
[    6.625280] usb 1-3: USB disconnect, device number 3
[    6.625612] flashloader ttyUSB0: flashloader converter now disconnected from ttyUSB0
[    6.625637] usb_serial_simple 1-3:1.0: device disconnected
[    6.663423] input: ATML1000:00 03EB:844B as /devices/platform/80860F41:05/i2c-13/i2c-ATML1000:00/0018:03EB:844B.0002/input/input9
[    6.664496] hid-multitouch 0018:03EB:844B.0002: input,hidraw2: I2C HID v1.00 Device [ATML1000:00 03EB:844B] on i2c-ATML1000:00
[    6.665341] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.665345] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.666881] hid-generic 0003:070A:0025.0005: input,hiddev0,hidraw3: USB HID v1.10 Device [HID 070a:0025] on usb-0000:00:14.0-1.4/input1
[    6.668077] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.668171] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.710378] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.710473] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.714412] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.714503] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.717532] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.717639] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.718231] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.718310] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.722671] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    7.159864] Bluetooth: hci0: BCM: chip id 90
[    7.159873] Bluetooth: hci0: BCM (002.006.006) build 0000
[    7.164338] bluetooth hci0: firmware: direct-loading firmware brcm/BCM.hcd
[    7.420638] systemd[1]: apt-daily.timer: Adding 3h 16min 22.685262s random time.
[    7.653084] Bluetooth: hci0: BCM (002.006.006) build 1170
[    7.819738] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    7.854252] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    8.062950] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   11.324208] usb 1-3: new high-speed USB device number 6 using xhci_hcd
[   11.460378] usb 1-3: New USB device found, idVendor=1199, idProduct=a001
[   11.460385] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   11.460389] usb 1-3: Product: Sierra Wireless EM7345 4G LTE
[   11.460392] usb 1-3: Manufacturer: Sierra Wireless Inc.
[   11.460395] usb 1-3: SerialNumber: 013937001951332
[   11.487122] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.487132] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.505368] cdc_acm 1-3:1.2: ttyACM0: USB ACM device
[   11.506417] usbcore: registered new interface driver cdc_acm
[   11.506423] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[   11.506828] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.506837] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.507375] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.507385] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.511996] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.512006] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.545336] cdc_ncm 1-3:1.0: MAC-Address: 00:00:11:12:13:14
[   11.545344] cdc_ncm 1-3:1.0: setting rx_max = 16384
[   11.546370] cdc_ncm 1-3:1.0 usb0: register 'cdc_ncm' at usb-0000:00:14.0-3, CDC NCM, 00:00:11:12:13:14
[   11.546442] usbcore: registered new interface driver cdc_ncm
[   11.547457] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.547468] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.550421] usbcore: registered new interface driver cdc_wdm
[   11.552598] usbcore: registered new interface driver cdc_mbim
[   11.561795] cdc_ncm 1-3:1.0 enx000011121314: renamed from usb0
[   11.647987] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   11.648160] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   18.738818] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   19.333026] systemd[1]: apt-daily.timer: Adding 5h 50min 46.486571s random time.
[   19.750315] systemd[1]: apt-daily.timer: Adding 5h 28min 56.848098s random time.
[   27.556799] fuse init (API version 7.25)

[-- Attachment #3: dmesg.systemd-standalone-rule-with-1s-delay --]
[-- Type: text/plain, Size: 50048 bytes --]

[    0.000000] Linux version 4.7.0-1-amd64 (debian-kernel@lists.debian.org) (gcc version 5.4.1 20160803 (Debian 5.4.1-1) ) #1 SMP Debian 4.7.2-1 (2016-08-28)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] x86/fpu: Legacy x87 FPU detected.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000200fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020100000-0x00000000b81c2fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b81c3000-0x00000000b91c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b91c3000-0x00000000b92c2fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000b92c3000-0x00000000b98c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b98c3000-0x00000000b99c2fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000b99c3000-0x00000000b9a02fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000b9a03000-0x00000000ba7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by Phoenix Technologies Ltd.
[    0.000000] efi:  ACPI=0xb9a02000  ACPI 2.0=0xb9a02014  SMBIOS=0xb98a5000  ESRT=0xb8af8000 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 20BN0036UK/20BN0036UK, BIOS GYET26WW (1.26) 01/12/2015
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   1 base 000000000 mask F80000000 write-back
[    0.000000]   2 base 080000000 mask FC0000000 write-back
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   5 base 0BA800000 mask FFF800000 uncachable
[    0.000000]   6 base 100000000 mask FC0000000 write-back
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0xba800 max_arch_pfn = 0x400000000
[    0.000000] Base memory trampoline at [ffff880000029000] 29000 size 24576
[    0.000000] BRK [0x3c356000, 0x3c356fff] PGTABLE
[    0.000000] BRK [0x3c357000, 0x3c357fff] PGTABLE
[    0.000000] BRK [0x3c358000, 0x3c358fff] PGTABLE
[    0.000000] BRK [0x3c359000, 0x3c359fff] PGTABLE
[    0.000000] BRK [0x3c35a000, 0x3c35afff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35d52000-0x36ea0fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000B9A02014 000024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 0x00000000B9A02170 0000E4 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FACP 0x00000000B99FE000 00010C (v05 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: DSDT 0x00000000B99EA000 00F9BF (v02 LENOVO TP-GY    00001260 INTL 20120711)
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: TCPA 0x00000000B9A01000 000032 (v02 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B9A00000 0000B1 (v01 LENOVO ADebTabl 00001000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99FF000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: HPET 0x00000000B99FD000 000038 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: LPIT 0x00000000B99FC000 000104 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: APIC 0x00000000B99FB000 00006C (v03 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: MCFG 0x00000000B99FA000 00003C (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E9000 0005FC (v01 LENOVO CpuDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E7000 0018E6 (v01 LENOVO DptfTab  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E6000 000058 (v01 LENOVO LowPwrM  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E5000 0000FF (v01 LENOVO SoCDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E4000 000763 (v01 PmRef  CpuPm    00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E3000 000290 (v01 PmRef  Cpu0Tst  00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E2000 00017A (v01 PmRef  ApTst    00003000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99E1000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: MSDM 0x00000000B9955000 000055 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BATB 0x00000000B99E0000 000046 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FPDT 0x00000000B99DF000 000054 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B99DE000 00043A (v01 LENOVO Tpm2Tabl 00001000 INTL 20120711)
[    0.000000] ACPI: TPM2 0x00000000B99DD000 000034 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: UEFI 0x00000000B99DC000 00008A (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BGRT 0x00000000B99DB000 000038 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: CSRT 0x00000000B99DA000 00014C (v00 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x13fff7000-0x13fffbfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.000000]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020100000-0x00000000b81c2fff]
[    0.000000]   node   0: [mem 0x00000000b9a03000-0x00000000ba7fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
[    0.000000] On node 0 totalpages: 1019486
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 133 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 11771 pages used for memmap
[    0.000000]   DMA32 zone: 753344 pages, LIFO batch:31
[    0.000000]   Normal zone: 4096 pages used for memmap
[    0.000000]   Normal zone: 262144 pages, LIFO batch:31
[    0.000000] x86/hpet: Will disable the HPET for this platform because it's not reliable
[    0.000000] Reserving Intel graphics stolen memory at 0xbaf00000-0xbeefffff
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-86
[    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: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x200fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xb81c3000-0xb91c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb91c3000-0xb92c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb92c3000-0xb98c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb98c3000-0xb99c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb99c3000-0xb9a02fff]
[    0.000000] PM: Registered nosave memory: [mem 0xba800000-0xbaefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbaf00000-0xbeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbef00000-0xe00f7fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f9000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed02000-0xffffffff]
[    0.000000] e820: [mem 0xbef00000-0xe00f7fff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 33 pages/cpu @ffff88013fc00000 s98264 r8192 d28712 u524288
[    0.000000] pcpu-alloc: s98264 r8192 d28712 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1003422
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3913604K/4077944K available (6004K kernel code, 1096K rwdata, 2752K rodata, 1352K init, 928K bss, 164340K reserved, 0K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:33024 nr_irqs:1024 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Maximum core-clock to bus-clock ratio: 0xc
[    0.000000] Resolved frequency ID: 2, frequency: 133200 KHz
[    0.000000] TSC runs at 1598400 KHz
[    0.000000] lapic_timer_frequency = 532800
[    0.000000] tsc: Detected 1598.400 MHz processor
[    0.000038] Calibrating delay loop (skipped), value calculated using timer frequency.. 3196.80 BogoMIPS (lpj=6393600)
[    0.000045] pid_max: default: 32768 minimum: 301
[    0.000077] ACPI: Core revision 20160422
[    0.046015] ACPI: 10 ACPI AML tables successfully acquired and loaded

[    0.046130] Security Framework initialized
[    0.046137] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.046153] AppArmor: AppArmor disabled by boot time parameter
[    0.046714] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.049039] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.050093] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050110] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050677] CPU: Physical Processor ID: 0
[    0.050684] CPU: Processor Core ID: 0
[    0.050691] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.050694] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.050706] mce: CPU supports 6 MCE banks
[    0.050719] CPU0: Thermal monitoring enabled (TM1)
[    0.050728] process: using mwait in idle threads
[    0.050735] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[    0.050739] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[    0.051180] Freeing SMP alternatives memory: 24K (ffffffffbc266000 - ffffffffbc26c000)
[    0.053382] ftrace: allocating 24665 entries in 97 pages
[    0.068480] smpboot: Max logical packages: 1
[    0.068488] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.069566] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.109277] TSC deadline timer enabled
[    0.109283] smpboot: CPU0: Intel(R) Atom(TM) CPU  Z3795  @ 1.60GHz (family: 0x6, model: 0x37, stepping: 0x8)
[    0.109293] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, full-width counters, Intel PMU driver.
[    0.109312] ... version:                3
[    0.109315] ... bit width:              40
[    0.109317] ... generic registers:      2
[    0.109320] ... value mask:             000000ffffffffff
[    0.109323] ... max period:             000000ffffffffff
[    0.109325] ... fixed-purpose events:   3
[    0.109328] ... event mask:             0000000700000003
[    0.110690] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.111051] x86: Booting SMP configuration:
[    0.111056] .... node  #0, CPUs:      #1 #2 #3
[    0.351688] x86: Booted up 1 node, 4 CPUs
[    0.351696] smpboot: Total of 4 processors activated (12793.83 BogoMIPS)
[    0.361763] devtmpfs: initialized
[    0.361949] x86/mm: Memory block size: 128MB
[    0.379656] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    0.379662] PM: Registering ACPI NVS region [mem 0xb98c3000-0xb99c2fff] (1048576 bytes)
[    0.379868] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.389566] pinctrl core: initialized pinctrl subsystem
[    0.399875] NET: Registered protocol family 16
[    0.409561] cpuidle: using governor ladder
[    0.419588] cpuidle: using governor menu
[    0.419698] ACPI: bus type PCI registered
[    0.419703] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.439754] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.439760] PCI: not using MMCONFIG
[    0.439763] PCI: Using configuration type 1 for base access
[    0.453951] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.487782] ACPI: Added _OSI(Module Device)
[    0.487787] ACPI: Added _OSI(Processor Device)
[    0.487790] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.487793] ACPI: Added _OSI(Processor Aggregator Device)
[    0.509113] ACPI: Dynamic OEM Table Load:
[    0.509134] ACPI: SSDT 0xFFFF88013A6BEC00 0003D7 (v01 PmRef  Cpu0Ist  00003000 INTL 20120711)
[    0.510776] ACPI: Dynamic OEM Table Load:
[    0.510793] ACPI: SSDT 0xFFFF88013B0A1800 000433 (v01 PmRef  Cpu0Cst  00003001 INTL 20120711)
[    0.513126] ACPI: Dynamic OEM Table Load:
[    0.513141] ACPI: SSDT 0xFFFF88013B0A3E00 00015F (v01 PmRef  ApIst    00003000 INTL 20120711)
[    0.514703] ACPI: Dynamic OEM Table Load:
[    0.514718] ACPI: SSDT 0xFFFF88013A69A600 00008D (v01 PmRef  ApCst    00003000 INTL 20120711)
[    0.519226] ACPI: Interpreter enabled
[    0.519286] ACPI: (supports S0 S4 S5)
[    0.519290] ACPI: Using IOAPIC for interrupt routing
[    0.519377] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.524984] [Firmware Info]: PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] not reserved in ACPI motherboard resources
[    0.524990] PCI: not using MMCONFIG
[    0.524998] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.528022] ACPI: Power Resource [USBC] (on)
[    0.528872] ACPI: Power Resource [WWPR] (off)
[    0.536131] ACPI: Power Resource [PLPE] (on)
[    0.545258] ACPI: Power Resource [CLK0] (on)
[    0.545381] ACPI: Power Resource [CLK1] (on)
[    0.545748] ACPI: Power Resource [P28X] (off)
[    0.545869] ACPI: Power Resource [P18X] (off)
[    0.548922] ACPI: Power Resource [TCPR] (off)
[    0.557954] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.557969] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.558094] \_SB_.PCI0 (33DB4D5B-1FF7-401C-9657-7441C03DD766): _OSC invalid UUID
[    0.558098] _OSC request data: 1 1e 0
[    0.558108] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.558142] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.558833] PCI host bridge to bus 0000:00
[    0.558841] pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
[    0.558847] pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
[    0.558852] pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
[    0.558857] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.558862] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.558866] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.558871] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.558876] pci_bus 0000:00: root bus resource [mem 0xd0c00000-0xd0ffffff window]
[    0.558881] pci_bus 0000:00: root bus resource [mem 0xbaf00001-0xbef00000 window]
[    0.558886] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xd08ffffe window]
[    0.558891] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed40fff window]
[    0.558896] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.558913] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
[    0.559124] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
[    0.559142] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff]
[    0.559158] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff pref]
[    0.559173] pci 0000:00:02.0: reg 0x20: [io  0x1000-0x1007]
[    0.559385] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
[    0.559409] pci 0000:00:14.0: reg 0x10: [mem 0xd0800000-0xd080ffff 64bit]
[    0.559486] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.559663] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
[    0.559688] pci 0000:00:1a.0: reg 0x10: [mem 0xd0700000-0xd07fffff]
[    0.559702] pci 0000:00:1a.0: reg 0x14: [mem 0xd0600000-0xd06fffff]
[    0.559811] pci 0000:00:1a.0: PME# supported from D0 D3hot
[    0.559985] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
[    0.561087] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561279] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561469] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561660] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561850] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.562040] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.562234] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.562425] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.576058] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.576067] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.576071] vgaarb: loaded
[    0.576075] vgaarb: bridge control possible 0000:00:02.0
[    0.576304] PCI: Using ACPI for IRQ routing
[    0.576311] PCI: pci_cache_line_size set to 64 bytes
[    0.576334] Expanded resource reserved due to conflict with PCI Bus 0000:00
[    0.576339] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.576344] e820: reserve RAM buffer [mem 0xb81c3000-0xbbffffff]
[    0.576348] e820: reserve RAM buffer [mem 0xba800000-0xbbffffff]
[    0.576734] amd_nb: Cannot enumerate AMD northbridges
[    0.576765] clocksource: Switched to clocksource refined-jiffies
[    0.592412] VFS: Disk quotas dquot_6.6.0
[    0.601862] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.607998] pnp: PnP ACPI init
[    0.608146] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.608320] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.608327] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.608332] system 00:01: [io  0x0500-0x05fe] has been reserved
[    0.608337] system 00:01: [io  0x0600-0x061f] has been reserved
[    0.608343] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.608351] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.608613] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.611660] pnp: PnP ACPI: found 3 devices
[    0.621560] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.621594] clocksource: Switched to clocksource acpi_pm
[    0.621616] pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
[    0.621621] pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
[    0.621626] pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
[    0.621630] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.621634] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.621639] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.621643] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[    0.621648] pci_bus 0000:00: resource 11 [mem 0xd0c00000-0xd0ffffff window]
[    0.621653] pci_bus 0000:00: resource 12 [mem 0xbaf00001-0xbef00000 window]
[    0.621657] pci_bus 0000:00: resource 13 [mem 0xc0000000-0xd08ffffe window]
[    0.621662] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed40fff window]
[    0.689693] NET: Registered protocol family 2
[    0.701821] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.701993] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.702186] TCP: Hash tables configured (established 32768 bind 32768)
[    0.702262] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.702311] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.725730] NET: Registered protocol family 1
[    0.725769] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.726133] PCI: CLS 0 bytes, default 64
[    0.726260] Unpacking initramfs...
[    1.363142] Freeing initrd memory: 17724K (ffff880035d52000 - ffff880036ea1000)
[    1.363153] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.363159] software IO TLB [mem 0xb41c3000-0xb81c3000] (64MB) mapped at [ffff8800b41c3000-ffff8800b81c2fff]
[    1.363534] simple-framebuffer simple-framebuffer.0: framebuffer at 0xc0000000, 0x500000 bytes, mapped to 0xffffc90000800000
[    1.363541] simple-framebuffer simple-framebuffer.0: format=a8r8g8b8, mode=1280x1024x32, linelength=5120
[    1.373899] Console: switching to colour frame buffer device 160x64
[    1.383908] simple-framebuffer simple-framebuffer.0: fb0: simplefb registered!
[    1.406882] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    1.418438] audit: initializing netlink subsys (disabled)
[    1.418481] audit: type=2000 audit(1473722610.407:1): initialized
[    1.419308] Initialise system trusted keyrings
[    1.419593] workingset: timestamp_bits=37 max_order=20 bucket_order=0
[    1.419624] zbud: loaded
[    1.550683] Key type asymmetric registered
[    1.550689] Asymmetric key parser 'x509' registered
[    1.570605] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    1.570689] io scheduler noop registered
[    1.570693] io scheduler deadline registered
[    1.586600] io scheduler cfq registered (default)
[    1.586729] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.586746] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.586809] intel_idle: MWAIT substates: 0x33000020
[    1.586813] intel_idle: v0.4.1 model 0x37
[    1.586819] intel_idle: max_cstate 1 reached
[    1.586998] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.591314] GHES: HEST is not enabled!
[    1.591477] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.611746] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.626790] 80860F0A:00: ttyS1 at MMIO 0xd094d000 (irq = 39, base_baud = 2764800) is a 16550A
[    1.627255] hpet: number irqs doesn't agree with number of timers
[    1.627309] Linux agpgart interface v0.103
[    1.627404] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    1.627408] AMD IOMMUv2 functionality not available on this system
[    1.628207] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    2.363420] tsc: Refined TSC clocksource calibration: 1600.002 MHz
[    2.363429] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x171026cbfe9, max_idle_ns: 440795216594 ns
[    2.663923] i8042: No controller found
[    2.664169] mousedev: PS/2 mouse device common for all mice
[    2.664479] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    2.664518] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram
[    2.664540] intel_pstate: Intel P-state driver initializing
[    2.664791] ledtrig-cpu: registered to indicate activity on CPUs
[    2.735769] NET: Registered protocol family 10
[    2.736914] mip6: Mobile IPv6
[    2.736931] NET: Registered protocol family 17
[    2.736954] mpls_gso: MPLS GSO support
[    2.738416] microcode: CPU0 sig=0x30678, pf=0x2, revision=0x80a
[    2.738464] microcode: CPU1 sig=0x30678, pf=0x2, revision=0x80a
[    2.738512] microcode: CPU2 sig=0x30678, pf=0x2, revision=0x80a
[    2.738549] microcode: CPU3 sig=0x30678, pf=0x2, revision=0x80a
[    2.738825] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    2.739930] registered taskstats version 1
[    2.739946] Loading compiled-in X.509 certificates
[    2.749311] alg: No test for pkcs1pad(rsa,sha256) (pkcs1pad(rsa-generic,sha256))
[    2.751438] Loaded X.509 cert 'Debian Project: Ben Hutchings: 008a018dca80932630'
[    2.751577] zswap: loaded using pool lzo/zbud
[    2.752675] rtc_cmos 00:00: setting system clock to 2016-09-12 23:23:31 UTC (1473722611)
[    2.753413] PM: Hibernation image not present or could not be loaded.
[    2.761946] Freeing unused kernel memory: 1352K (ffffffffbc114000 - ffffffffbc266000)
[    2.761963] Write protecting the kernel read-only data: 10240k
[    2.763011] Freeing unused kernel memory: 124K (ffff88003bbe1000 - ffff88003bc00000)
[    2.774237] Freeing unused kernel memory: 1344K (ffff88003beb0000 - ffff88003c000000)
[    2.792520] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.861237] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.861860] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.861982] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.862117] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.864202] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.864451] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.866073] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.866450] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.866806] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.867170] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.948194] sdhci: Secure Digital Host Controller Interface driver
[    2.948200] sdhci: Copyright(c) Pierre Ossman
[    2.963787] hidraw: raw HID events driver (C) Jiri Kosina
[    2.969352] mmc0: SDHCI controller on ACPI [80860F14:00] using ADMA
[    2.974948] mmc1: SDHCI controller on ACPI [INT33BB:00] using ADMA
[    2.990579] FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
[    2.998172] mmc2: SDHCI controller on ACPI [80860F14:01] using ADMA
[    3.059328] [Firmware Bug]: No valid trip found
[    3.064432] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    3.066328] ACPI: bus type USB registered
[    3.066387] usbcore: registered new interface driver usbfs
[    3.066411] usbcore: registered new interface driver hub
[    3.067081] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.068210] usbcore: registered new device driver usb
[    3.068814] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.072312] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    3.078939] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.078957] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    3.080107] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[    3.080119] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.084928] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.084935] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.084939] usb usb1: Product: xHCI Host Controller
[    3.084942] usb usb1: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.084944] usb usb1: SerialNumber: 0000:00:14.0
[    3.086538] hub 1-0:1.0: USB hub found
[    3.086571] hub 1-0:1.0: 6 ports detected
[    3.115201] SSE version of gcm_enc/dec engaged.
[    3.125434] mmc0: new HS200 MMC card at address 0001
[    3.181849] mmc1: new ultra high speed DDR50 SDIO card at address 0001
[    3.241436] mmcblk0: mmc0:0001 SEM128 116 GiB 
[    3.241695] mmcblk0boot0: mmc0:0001 SEM128 partition 1 4.00 MiB
[    3.241882] mmcblk0boot1: mmc0:0001 SEM128 partition 2 4.00 MiB
[    3.242065] mmcblk0rpmb: mmc0:0001 SEM128 partition 3 4.00 MiB
[    3.264048]  mmcblk0: p1 p2 p3 p4 p5
[    3.364594] clocksource: Switched to clocksource tsc
[    3.689486] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.689525] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    3.689947] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    3.689964] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.689977] usb usb2: Product: xHCI Host Controller
[    3.689989] usb usb2: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.690001] usb usb2: SerialNumber: 0000:00:14.0
[    3.691000] hub 2-0:1.0: USB hub found
[    3.691072] hub 2-0:1.0: 1 port detected
[    4.001266] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[    4.129920] usb 1-1: New USB device found, idVendor=058f, idProduct=9254
[    4.129942] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.129956] usb 1-1: Product: Generic USB Hub
[    4.129968] usb 1-1: Manufacturer: ALCOR
[    4.131063] hub 1-1:1.0: USB hub found
[    4.131181] hub 1-1:1.0: 4 ports detected
[    4.369406] usb 1-3: new high-speed USB device number 3 using xhci_hcd
[    4.382414] EXT4-fs (mmcblk0p5): mounted filesystem with ordered data mode. Opts: (null)
[    4.498715] usb 1-3: New USB device found, idVendor=8087, idProduct=0716
[    4.498726] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.569569] usb 1-1.2: new low-speed USB device number 4 using xhci_hcd
[    4.633892] systemd[1]: RTC configured in localtime, applying delta of 120 minutes to system time.
[    4.660856] usb 1-1.2: New USB device found, idVendor=070a, idProduct=0025
[    4.660863] usb 1-1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.733774] usb 1-1.4: new low-speed USB device number 5 using xhci_hcd
[    4.735878] systemd[1]: systemd 231 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[    4.736960] systemd[1]: Detected architecture x86-64.
[    4.741980] systemd[1]: Set hostname to <thinkpad8>.
[    4.833156] usb 1-1.4: New USB device found, idVendor=070a, idProduct=0025
[    4.833163] usb 1-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.999433] systemd[1]: Listening on udev Control Socket.
[    4.999823] systemd[1]: Created slice User and Session Slice.
[    4.999880] systemd[1]: Listening on RPCbind Server Activation Socket.
[    4.999954] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    5.000009] systemd[1]: Listening on udev Kernel Socket.
[    5.000104] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    5.000172] systemd[1]: Listening on Journal Socket (/dev/log).
[    5.000260] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    5.000286] systemd[1]: Reached target User and Group Name Lookups.
[    5.000337] systemd[1]: Listening on Syslog Socket.
[    5.000389] systemd[1]: Listening on fsck to fsckd communication Socket.
[    5.000420] systemd[1]: Reached target Encrypted Volumes.
[    5.000500] systemd[1]: Listening on Journal Socket.
[    5.000732] systemd[1]: Created slice System Slice.
[    5.000962] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    5.010114] systemd[1]: Mounting Huge Pages File System...
[    5.011441] systemd[1]: Mounting POSIX Message Queue File System...
[    5.014921] systemd[1]: Starting Load Kernel Modules...
[    5.014970] systemd[1]: Reached target Slices.
[    5.016204] systemd[1]: Mounting Debug File System...
[    5.017690] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    5.019117] systemd[1]: Starting Remount Root and Kernel File Systems...
[    5.019504] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    5.025163] systemd[1]: Mounting RPC Pipe File System...
[    5.025542] systemd[1]: Created slice system-getty.slice.
[    5.025640] systemd[1]: Reached target Swap.
[    5.027174] systemd[1]: Starting Set the console keyboard layout...
[    5.027516] systemd[1]: Listening on Journal Audit Socket.
[    5.028990] systemd[1]: Starting Journal Service...
[    5.032717] systemd[1]: Started Create list of required static device nodes for the current kernel.
[    5.034607] systemd[1]: Starting Create Static Device Nodes in /dev...
[    5.044190] systemd[1]: Started Load Kernel Modules.
[    5.045888] systemd[1]: Starting Apply Kernel Variables...
[    5.070088] systemd[1]: Started Apply Kernel Variables.
[    5.078768] systemd[1]: Mounted Debug File System.
[    5.078851] systemd[1]: Mounted Huge Pages File System.
[    5.078893] systemd[1]: Mounted POSIX Message Queue File System.
[    5.079343] EXT4-fs (mmcblk0p5): re-mounted. Opts: errors=remount-ro
[    5.081880] systemd[1]: Started Remount Root and Kernel File Systems.
[    5.098498] systemd[1]: Starting Load/Save Random Seed...
[    5.109895] systemd[1]: Starting udev Coldplug all Devices...
[    5.111882] systemd[1]: Started Journal Service.
[    5.132461] systemd-journald[941]: Received request to flush runtime journal from PID 1
[    5.134252] RPC: Registered named UNIX socket transport module.
[    5.134258] RPC: Registered udp transport module.
[    5.134260] RPC: Registered tcp transport module.
[    5.134262] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.389216] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    5.389333] ACPI: Lid Switch [LID0]
[    5.389441] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    5.389447] ACPI: Power Button [PWRF]
[    5.412317] i2c i2c-0: i2c read failed
[    5.436358] [drm] Initialized drm 1.1.0 20060810
[    5.468199] i2c i2c-0: i2c read failed
[    5.502278] Bluetooth: Core ver 2.21
[    5.502307] NET: Registered protocol family 31
[    5.502310] Bluetooth: HCI device and connection manager initialized
[    5.502318] Bluetooth: HCI socket layer initialized
[    5.502323] Bluetooth: L2CAP socket layer initialized
[    5.502335] Bluetooth: SCO socket layer initialized
[    5.518907] i2c i2c-0: i2c read failed
[    5.525348] Bluetooth: HCI UART driver ver 2.3
[    5.525354] Bluetooth: HCI UART protocol H4 registered
[    5.525356] Bluetooth: HCI UART protocol BCSP registered
[    5.525358] Bluetooth: HCI UART protocol LL registered
[    5.525360] Bluetooth: HCI UART protocol ATH3K registered
[    5.525362] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    5.525441] Bluetooth: HCI UART protocol Intel registered
[    5.538803] hci_bcm BCM2E55:00: BCM irq: 70
[    5.538870] hci_bcm BCM2E55:00: BCM2E55:00 device registered.
[    5.539022] Bluetooth: HCI UART protocol BCM registered
[    5.539025] Bluetooth: HCI UART protocol QCA registered
[    5.562692] ACPI: AC Adapter [ADP1] (off-line)
[    5.570486] i2c i2c-0: i2c read failed
[    5.586876] [drm] Memory usable by graphics device = 2048M
[    5.586885] checking generic (c0000000 500000) vs hw (c0000000 10000000)
[    5.586888] fb: switching to inteldrmfb from simple
[    5.586949] Console: switching to colour dummy device 80x25
[    5.587099] [drm] Replacing VGA console driver
[    5.587218] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    5.587221] [drm] Driver supports precise vblank timestamp query.
[    5.608190] intel_sst_acpi 80860F28:00: LPE base: 0xd0a00000 size:0x200000
[    5.608197] intel_sst_acpi 80860F28:00: IRAM base: 0xd0ac0000
[    5.608221] intel_sst_acpi 80860F28:00: DRAM base: 0xd0b00000
[    5.608230] intel_sst_acpi 80860F28:00: SHIM base: 0xd0b40000
[    5.608246] intel_sst_acpi 80860F28:00: Mailbox base: 0xd0b44000
[    5.608253] intel_sst_acpi 80860F28:00: DDR base: 0x20000000
[    5.608335] intel_sst_acpi 80860F28:00: Got drv data max stream 25
[    5.620071] intel_sst_acpi 80860F28:00: firmware: direct-loading firmware intel/fw_sst_0f28.bin
[    5.629616] i2c i2c-0: i2c read failed
[    5.653832] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    5.718518] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.720230] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2
[    5.720443] [drm] Initialized i915 1.6.0 20160425 for 0000:00:02.0 on minor 0
[    5.794608] i2c i2c-0: i2c read failed
[    5.809622] fbcon: inteldrmfb (fb0) is primary device
[    5.858452] i2c i2c-0: i2c read failed
[    5.923643] dw_dmac INTL9C60:00: DesignWare DMA Controller, 8 channels
[    5.953883] rt5640 i2c-10EC5640:01: Device with ID register 0x6271 is not rt5640/39
[    5.955366] dw_dmac INTL9C60:01: DesignWare DMA Controller, 8 channels
[    5.959037] ACPI: Battery Slot [BAT0] (battery absent)
[    5.995578] wmi: Mapper loaded
[    6.090149] usbcore: registered new interface driver usbserial
[    6.090171] usbcore: registered new interface driver usbserial_generic
[    6.090193] usbserial: USB Serial support registered for generic
[    6.102363] usbcore: registered new interface driver usb_serial_simple
[    6.102389] usbserial: USB Serial support registered for carelink
[    6.102406] usbserial: USB Serial support registered for zio
[    6.102423] usbserial: USB Serial support registered for funsoft
[    6.102440] usbserial: USB Serial support registered for flashloader
[    6.102457] usbserial: USB Serial support registered for google
[    6.102475] usbserial: USB Serial support registered for vivopay
[    6.102493] usbserial: USB Serial support registered for moto_modem
[    6.102510] usbserial: USB Serial support registered for novatel_gps
[    6.102527] usbserial: USB Serial support registered for hp4x
[    6.102545] usbserial: USB Serial support registered for suunto
[    6.102564] usbserial: USB Serial support registered for siemens_mpi
[    6.102591] usb_serial_simple 1-3:1.0: flashloader converter detected
[    6.104707] usb 1-3: flashloader converter now attached to ttyUSB0
[    6.109276] input: PC Speaker as /devices/platform/pcspkr/input/input3
[    6.118881] usbcore: registered new interface driver usbhid
[    6.118884] usbhid: USB HID core driver
[    6.203911] Console: switching to colour frame buffer device 160x64
[    6.213500] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    6.214648] random: nonblocking pool is initialized
[    6.266465] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    6.268618] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.271448] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.274901] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    6.401062] iTCO_vendor_support: vendor-support=0
[    6.405227] intel_rapl: Found RAPL domain package
[    6.405234] intel_rapl: Found RAPL domain core
[    6.410897] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    6.411020] iTCO_wdt: Found a Bay Trail SoC TCO device (Version=3, TCOBASE=0x0460)
[    6.412005] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    6.417273] brcmfmac: brcmf_sdio_drivestrengthinit: No SDIO Drive strength init done for chip 4324 rev 6 pmurev 17
[    6.420279] usbcore: registered new interface driver brcmfmac
[    6.429579] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.bin
[    6.430073] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.txt
[    6.473346] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.473446] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.517242] brcmfmac: brcmf_c_preinit_dcmds: Firmware version = wl0: Feb 24 2015 06:43:35 version 6.25.91.13 (r536868) FWID 01-b48d628a
[    6.547414] input: gpio-keys as /devices/platform/gpio-keys.1.auto/input/input4
[    6.547913] input: gpio-keys as /devices/platform/gpio-keys.2.auto/input/input5
[    6.548388] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.548475] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.550542] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.550638] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.568336] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:070A:0025.0003/input/input6
[    6.571036] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.571123] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.571221] hid-generic 0003:070A:0025.0003: input,hidraw0: USB HID v1.00 Mouse [HID 070a:0025] on usb-0000:00:14.0-1.2/input0
[    6.571527] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:070A:0025.0004/input/input7
[    6.571656] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    6.573120] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.573209] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.628360] hid-generic 0003:070A:0025.0004: input,hidraw1: USB HID v1.10 Keyboard [HID 070a:0025] on usb-0000:00:14.0-1.4/input0
[    6.628942] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.629035] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.631749] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:070A:0025.0005/input/input8
[    6.655055] usb 1-3: USB disconnect, device number 3
[    6.655273] flashloader ttyUSB0: flashloader converter now disconnected from ttyUSB0
[    6.655295] usb_serial_simple 1-3:1.0: device disconnected
[    6.688914] hid-generic 0003:070A:0025.0005: input,hiddev0,hidraw2: USB HID v1.10 Device [HID 070a:0025] on usb-0000:00:14.0-1.4/input1
[    6.689482] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.689487] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.714543] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.714637] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.722705] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.722797] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.724158] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.724251] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.726124] input: ATML1000:00 03EB:844B as /devices/platform/80860F41:05/i2c-13/i2c-ATML1000:00/0018:03EB:844B.0002/input/input9
[    6.726350] hid-multitouch 0018:03EB:844B.0002: input,hidraw3: I2C HID v1.00 Device [ATML1000:00 03EB:844B] on i2c-ATML1000:00
[    6.727049] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.727054] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.733557] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.733562] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.737444] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.737449] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.737956] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.737960] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.751598] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    7.778415] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    7.809296] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    7.985605] Bluetooth: hci0: BCM: chip id 90
[    7.985631] Bluetooth: hci0: BCM (002.006.006) build 0000
[    7.986772] bluetooth hci0: firmware: direct-loading firmware brcm/BCM.hcd
[    8.028553] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    8.457008] Bluetooth: hci0: BCM (002.006.006) build 1170
[    8.594331] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    8.594338] Bluetooth: BNEP filters: protocol multicast
[    8.594347] Bluetooth: BNEP socket layer initialized
[   11.356364] usb 1-3: new high-speed USB device number 6 using xhci_hcd
[   11.492082] usb 1-3: New USB device found, idVendor=1199, idProduct=a001
[   11.492089] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   11.492093] usb 1-3: Product: Sierra Wireless EM7345 4G LTE
[   11.492096] usb 1-3: Manufacturer: Sierra Wireless Inc.
[   11.492099] usb 1-3: SerialNumber: 013937001951332
[   11.520907] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.520938] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.551768] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.551781] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.585500] cdc_ncm 1-3:1.0: MAC-Address: 00:00:11:12:13:14
[   11.585508] cdc_ncm 1-3:1.0: setting rx_max = 16384
[   11.586650] cdc_ncm 1-3:1.0 usb0: register 'cdc_ncm' at usb-0000:00:14.0-3, CDC NCM, 00:00:11:12:13:14
[   11.586719] usbcore: registered new interface driver cdc_ncm
[   11.586852] cdc_acm 1-3:1.2: ttyACM0: USB ACM device
[   11.587236] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.587245] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.588212] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.588223] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.588739] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.588746] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.590084] usbcore: registered new interface driver cdc_acm
[   11.590090] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[   11.590404] usbcore: registered new interface driver cdc_wdm
[   11.596331] usbcore: registered new interface driver cdc_mbim
[   11.611148] cdc_ncm 1-3:1.0 enx000011121314: renamed from usb0
[   11.646694] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   11.648088] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   11.709087] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   11.735664] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   18.598997] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   36.111265] fuse init (API version 7.25)
[   42.879972] Bluetooth: RFCOMM TTY layer initialized
[   42.879995] Bluetooth: RFCOMM socket layer initialized
[   42.880007] Bluetooth: RFCOMM ver 1.11
[   48.639732] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[   48.639750] Bluetooth: HIDP socket layer initialized
[   48.643623] hid-generic 0005:046D:B319.0006: unknown main item tag 0x0
[   48.644623] input: Logitech K810 as /devices/platform/80860F0A:00/tty/ttyS1/hci0/hci0:12/0005:046D:B319.0006/input/input11
[   48.646578] hid-generic 0005:046D:B319.0006: input,hidraw4: BLUETOOTH HID v12.01 Keyboard [Logitech K810] on b0:10:41:b8:16:6c
[   48.647195] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   48.647206] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   57.103983] NetworkManager[2077]: segfault at 740 ip 00000000004626ed sp 00007ffd577ecdf0 error 4 in NetworkManager[400000+2bc000]
[   57.594928] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   58.268190] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)

[-- Attachment #4: dmesg.systemd-standalone-rule-no-delay --]
[-- Type: text/plain, Size: 48535 bytes --]

[    0.000000] Linux version 4.7.0-1-amd64 (debian-kernel@lists.debian.org) (gcc version 5.4.1 20160803 (Debian 5.4.1-1) ) #1 SMP Debian 4.7.2-1 (2016-08-28)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] x86/fpu: Legacy x87 FPU detected.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000200fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020100000-0x00000000b81c2fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b81c3000-0x00000000b91c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b91c3000-0x00000000b92c2fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000b92c3000-0x00000000b98c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b98c3000-0x00000000b99c2fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000b99c3000-0x00000000b9a02fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000b9a03000-0x00000000ba7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by Phoenix Technologies Ltd.
[    0.000000] efi:  ACPI=0xb9a02000  ACPI 2.0=0xb9a02014  SMBIOS=0xb98a5000  ESRT=0xb8af8000 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 20BN0036UK/20BN0036UK, BIOS GYET26WW (1.26) 01/12/2015
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   1 base 000000000 mask F80000000 write-back
[    0.000000]   2 base 080000000 mask FC0000000 write-back
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   5 base 0BA800000 mask FFF800000 uncachable
[    0.000000]   6 base 100000000 mask FC0000000 write-back
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0xba800 max_arch_pfn = 0x400000000
[    0.000000] Base memory trampoline at [ffff880000029000] 29000 size 24576
[    0.000000] BRK [0x14b56000, 0x14b56fff] PGTABLE
[    0.000000] BRK [0x14b57000, 0x14b57fff] PGTABLE
[    0.000000] BRK [0x14b58000, 0x14b58fff] PGTABLE
[    0.000000] BRK [0x14b59000, 0x14b59fff] PGTABLE
[    0.000000] BRK [0x14b5a000, 0x14b5afff] PGTABLE
[    0.000000] BRK [0x14b5b000, 0x14b5bfff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35d52000-0x36ea0fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000B9A02014 000024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 0x00000000B9A02170 0000E4 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FACP 0x00000000B99FE000 00010C (v05 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: DSDT 0x00000000B99EA000 00F9BF (v02 LENOVO TP-GY    00001260 INTL 20120711)
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: TCPA 0x00000000B9A01000 000032 (v02 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B9A00000 0000B1 (v01 LENOVO ADebTabl 00001000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99FF000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: HPET 0x00000000B99FD000 000038 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: LPIT 0x00000000B99FC000 000104 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: APIC 0x00000000B99FB000 00006C (v03 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: MCFG 0x00000000B99FA000 00003C (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E9000 0005FC (v01 LENOVO CpuDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E7000 0018E6 (v01 LENOVO DptfTab  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E6000 000058 (v01 LENOVO LowPwrM  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E5000 0000FF (v01 LENOVO SoCDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E4000 000763 (v01 PmRef  CpuPm    00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E3000 000290 (v01 PmRef  Cpu0Tst  00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E2000 00017A (v01 PmRef  ApTst    00003000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99E1000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: MSDM 0x00000000B9955000 000055 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BATB 0x00000000B99E0000 000046 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FPDT 0x00000000B99DF000 000054 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B99DE000 00043A (v01 LENOVO Tpm2Tabl 00001000 INTL 20120711)
[    0.000000] ACPI: TPM2 0x00000000B99DD000 000034 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: UEFI 0x00000000B99DC000 00008A (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BGRT 0x00000000B99DB000 000038 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: CSRT 0x00000000B99DA000 00014C (v00 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x13fff8000-0x13fffcfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.000000]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020100000-0x00000000b81c2fff]
[    0.000000]   node   0: [mem 0x00000000b9a03000-0x00000000ba7fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
[    0.000000] On node 0 totalpages: 1019486
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 133 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 11771 pages used for memmap
[    0.000000]   DMA32 zone: 753344 pages, LIFO batch:31
[    0.000000]   Normal zone: 4096 pages used for memmap
[    0.000000]   Normal zone: 262144 pages, LIFO batch:31
[    0.000000] x86/hpet: Will disable the HPET for this platform because it's not reliable
[    0.000000] Reserving Intel graphics stolen memory at 0xbaf00000-0xbeefffff
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-86
[    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: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x200fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xb81c3000-0xb91c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb91c3000-0xb92c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb92c3000-0xb98c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb98c3000-0xb99c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb99c3000-0xb9a02fff]
[    0.000000] PM: Registered nosave memory: [mem 0xba800000-0xbaefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbaf00000-0xbeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbef00000-0xe00f7fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f9000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed02000-0xffffffff]
[    0.000000] e820: [mem 0xbef00000-0xe00f7fff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 33 pages/cpu @ffff88013fc00000 s98264 r8192 d28712 u524288
[    0.000000] pcpu-alloc: s98264 r8192 d28712 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1003422
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3913608K/4077944K available (6004K kernel code, 1096K rwdata, 2752K rodata, 1352K init, 928K bss, 164336K reserved, 0K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:33024 nr_irqs:1024 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Maximum core-clock to bus-clock ratio: 0xc
[    0.000000] Resolved frequency ID: 2, frequency: 133200 KHz
[    0.000000] TSC runs at 1598400 KHz
[    0.000000] lapic_timer_frequency = 532800
[    0.000000] tsc: Detected 1598.400 MHz processor
[    0.000038] Calibrating delay loop (skipped), value calculated using timer frequency.. 3196.80 BogoMIPS (lpj=6393600)
[    0.000046] pid_max: default: 32768 minimum: 301
[    0.000078] ACPI: Core revision 20160422
[    0.046013] ACPI: 10 ACPI AML tables successfully acquired and loaded

[    0.046126] Security Framework initialized
[    0.046132] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.046148] AppArmor: AppArmor disabled by boot time parameter
[    0.046706] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.049032] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.050087] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050103] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050670] CPU: Physical Processor ID: 0
[    0.050677] CPU: Processor Core ID: 0
[    0.050684] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.050687] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.050699] mce: CPU supports 6 MCE banks
[    0.050712] CPU0: Thermal monitoring enabled (TM1)
[    0.050721] process: using mwait in idle threads
[    0.050728] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[    0.050732] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[    0.051172] Freeing SMP alternatives memory: 24K (ffffffff94a66000 - ffffffff94a6c000)
[    0.053372] ftrace: allocating 24665 entries in 97 pages
[    0.068465] smpboot: Max logical packages: 1
[    0.068474] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.069550] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.109261] TSC deadline timer enabled
[    0.109267] smpboot: CPU0: Intel(R) Atom(TM) CPU  Z3795  @ 1.60GHz (family: 0x6, model: 0x37, stepping: 0x8)
[    0.109277] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, full-width counters, Intel PMU driver.
[    0.109296] ... version:                3
[    0.109299] ... bit width:              40
[    0.109301] ... generic registers:      2
[    0.109304] ... value mask:             000000ffffffffff
[    0.109307] ... max period:             000000ffffffffff
[    0.109309] ... fixed-purpose events:   3
[    0.109312] ... event mask:             0000000700000003
[    0.110676] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.111036] x86: Booting SMP configuration:
[    0.111042] .... node  #0, CPUs:      #1 #2 #3
[    0.351670] x86: Booted up 1 node, 4 CPUs
[    0.351678] smpboot: Total of 4 processors activated (12793.79 BogoMIPS)
[    0.361745] devtmpfs: initialized
[    0.361932] x86/mm: Memory block size: 128MB
[    0.379641] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    0.379647] PM: Registering ACPI NVS region [mem 0xb98c3000-0xb99c2fff] (1048576 bytes)
[    0.379855] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.389548] pinctrl core: initialized pinctrl subsystem
[    0.399859] NET: Registered protocol family 16
[    0.409542] cpuidle: using governor ladder
[    0.419571] cpuidle: using governor menu
[    0.419682] ACPI: bus type PCI registered
[    0.419687] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.443742] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.443748] PCI: not using MMCONFIG
[    0.443751] PCI: Using configuration type 1 for base access
[    0.457948] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.497777] ACPI: Added _OSI(Module Device)
[    0.497783] ACPI: Added _OSI(Processor Device)
[    0.497786] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.497789] ACPI: Added _OSI(Processor Aggregator Device)
[    0.519065] ACPI: Dynamic OEM Table Load:
[    0.519086] ACPI: SSDT 0xFFFF88013A653000 0003D7 (v01 PmRef  Cpu0Ist  00003000 INTL 20120711)
[    0.520730] ACPI: Dynamic OEM Table Load:
[    0.520747] ACPI: SSDT 0xFFFF88013A6D9000 000433 (v01 PmRef  Cpu0Cst  00003001 INTL 20120711)
[    0.523077] ACPI: Dynamic OEM Table Load:
[    0.523093] ACPI: SSDT 0xFFFF88013A655800 00015F (v01 PmRef  ApIst    00003000 INTL 20120711)
[    0.524657] ACPI: Dynamic OEM Table Load:
[    0.524672] ACPI: SSDT 0xFFFF88013A657780 00008D (v01 PmRef  ApCst    00003000 INTL 20120711)
[    0.529191] ACPI: Interpreter enabled
[    0.529252] ACPI: (supports S0 S4 S5)
[    0.529256] ACPI: Using IOAPIC for interrupt routing
[    0.529342] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.534960] [Firmware Info]: PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] not reserved in ACPI motherboard resources
[    0.534966] PCI: not using MMCONFIG
[    0.534974] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.537992] ACPI: Power Resource [USBC] (on)
[    0.538850] ACPI: Power Resource [WWPR] (off)
[    0.546098] ACPI: Power Resource [PLPE] (on)
[    0.555230] ACPI: Power Resource [CLK0] (on)
[    0.555357] ACPI: Power Resource [CLK1] (on)
[    0.555727] ACPI: Power Resource [P28X] (off)
[    0.555847] ACPI: Power Resource [P18X] (off)
[    0.558899] ACPI: Power Resource [TCPR] (off)
[    0.567950] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.567965] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.568091] \_SB_.PCI0 (33DB4D5B-1FF7-401C-9657-7441C03DD766): _OSC invalid UUID
[    0.568095] _OSC request data: 1 1e 0
[    0.568105] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.568139] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.568832] PCI host bridge to bus 0000:00
[    0.568840] pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
[    0.568845] pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
[    0.568850] pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
[    0.568855] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.568860] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.568865] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.568870] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.568875] pci_bus 0000:00: root bus resource [mem 0xd0c00000-0xd0ffffff window]
[    0.568880] pci_bus 0000:00: root bus resource [mem 0xbaf00001-0xbef00000 window]
[    0.568884] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xd08ffffe window]
[    0.568889] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed40fff window]
[    0.568895] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.568911] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
[    0.569117] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
[    0.569136] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff]
[    0.569152] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff pref]
[    0.569167] pci 0000:00:02.0: reg 0x20: [io  0x1000-0x1007]
[    0.569379] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
[    0.569404] pci 0000:00:14.0: reg 0x10: [mem 0xd0800000-0xd080ffff 64bit]
[    0.569480] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.569658] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
[    0.569683] pci 0000:00:1a.0: reg 0x10: [mem 0xd0700000-0xd07fffff]
[    0.569698] pci 0000:00:1a.0: reg 0x14: [mem 0xd0600000-0xd06fffff]
[    0.569809] pci 0000:00:1a.0: PME# supported from D0 D3hot
[    0.569983] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
[    0.571084] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.571277] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.571467] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.571656] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.571846] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.572036] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.572230] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.572421] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.586059] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.586067] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.586072] vgaarb: loaded
[    0.586075] vgaarb: bridge control possible 0000:00:02.0
[    0.586304] PCI: Using ACPI for IRQ routing
[    0.586311] PCI: pci_cache_line_size set to 64 bytes
[    0.586334] Expanded resource reserved due to conflict with PCI Bus 0000:00
[    0.586339] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.586344] e820: reserve RAM buffer [mem 0xb81c3000-0xbbffffff]
[    0.586349] e820: reserve RAM buffer [mem 0xba800000-0xbbffffff]
[    0.586755] amd_nb: Cannot enumerate AMD northbridges
[    0.586785] clocksource: Switched to clocksource refined-jiffies
[    0.602365] VFS: Disk quotas dquot_6.6.0
[    0.611805] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.622050] pnp: PnP ACPI init
[    0.622200] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.622372] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.622379] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.622385] system 00:01: [io  0x0500-0x05fe] has been reserved
[    0.622390] system 00:01: [io  0x0600-0x061f] has been reserved
[    0.622396] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.622404] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.622666] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.625721] pnp: PnP ACPI: found 3 devices
[    0.635625] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.635660] clocksource: Switched to clocksource acpi_pm
[    0.635682] pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
[    0.635687] pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
[    0.635692] pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
[    0.635696] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.635701] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.635705] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.635710] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[    0.635715] pci_bus 0000:00: resource 11 [mem 0xd0c00000-0xd0ffffff window]
[    0.635719] pci_bus 0000:00: resource 12 [mem 0xbaf00001-0xbef00000 window]
[    0.635724] pci_bus 0000:00: resource 13 [mem 0xc0000000-0xd08ffffe window]
[    0.635728] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed40fff window]
[    0.707766] NET: Registered protocol family 2
[    0.719895] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.720067] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.720260] TCP: Hash tables configured (established 32768 bind 32768)
[    0.720338] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.720386] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.747807] NET: Registered protocol family 1
[    0.747845] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.748211] PCI: CLS 0 bytes, default 64
[    0.748335] Unpacking initramfs...
[    1.385340] Freeing initrd memory: 17724K (ffff880035d52000 - ffff880036ea1000)
[    1.385351] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.385357] software IO TLB [mem 0xb41c3000-0xb81c3000] (64MB) mapped at [ffff8800b41c3000-ffff8800b81c2fff]
[    1.385730] simple-framebuffer simple-framebuffer.0: framebuffer at 0xc0000000, 0x500000 bytes, mapped to 0xffffc90000800000
[    1.385737] simple-framebuffer simple-framebuffer.0: format=a8r8g8b8, mode=1280x1024x32, linelength=5120
[    1.396089] Console: switching to colour frame buffer device 160x64
[    1.406111] simple-framebuffer simple-framebuffer.0: fb0: simplefb registered!
[    1.420939] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    1.432488] audit: initializing netlink subsys (disabled)
[    1.432534] audit: type=2000 audit(1473722376.423:1): initialized
[    1.433352] Initialise system trusted keyrings
[    1.433652] workingset: timestamp_bits=37 max_order=20 bucket_order=0
[    1.433686] zbud: loaded
[    1.568857] Key type asymmetric registered
[    1.568863] Asymmetric key parser 'x509' registered
[    1.580690] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    1.580788] io scheduler noop registered
[    1.580793] io scheduler deadline registered
[    1.596683] io scheduler cfq registered (default)
[    1.596815] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.596831] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.596901] intel_idle: MWAIT substates: 0x33000020
[    1.596905] intel_idle: v0.4.1 model 0x37
[    1.596911] intel_idle: max_cstate 1 reached
[    1.597092] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.601418] GHES: HEST is not enabled!
[    1.601574] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.621823] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.636873] 80860F0A:00: ttyS1 at MMIO 0xd094d000 (irq = 39, base_baud = 2764800) is a 16550A
[    1.637370] hpet: number irqs doesn't agree with number of timers
[    1.637426] Linux agpgart interface v0.103
[    1.637526] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    1.637530] AMD IOMMUv2 functionality not available on this system
[    1.638319] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    2.385470] tsc: Refined TSC clocksource calibration: 1599.999 MHz
[    2.385478] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x171023f09ff, max_idle_ns: 440795233615 ns
[    2.674021] i8042: No controller found
[    2.674250] mousedev: PS/2 mouse device common for all mice
[    2.674556] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    2.674595] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram
[    2.674617] intel_pstate: Intel P-state driver initializing
[    2.674895] ledtrig-cpu: registered to indicate activity on CPUs
[    2.745834] NET: Registered protocol family 10
[    2.746972] mip6: Mobile IPv6
[    2.746988] NET: Registered protocol family 17
[    2.747011] mpls_gso: MPLS GSO support
[    2.748504] microcode: CPU0 sig=0x30678, pf=0x2, revision=0x80a
[    2.748552] microcode: CPU1 sig=0x30678, pf=0x2, revision=0x80a
[    2.748601] microcode: CPU2 sig=0x30678, pf=0x2, revision=0x80a
[    2.748637] microcode: CPU3 sig=0x30678, pf=0x2, revision=0x80a
[    2.748902] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    2.749955] registered taskstats version 1
[    2.749971] Loading compiled-in X.509 certificates
[    2.759158] alg: No test for pkcs1pad(rsa,sha256) (pkcs1pad(rsa-generic,sha256))
[    2.761312] Loaded X.509 cert 'Debian Project: Ben Hutchings: 008a018dca80932630'
[    2.761441] zswap: loaded using pool lzo/zbud
[    2.762483] rtc_cmos 00:00: setting system clock to 2016-09-12 23:19:37 UTC (1473722377)
[    2.763219] PM: Hibernation image not present or could not be loaded.
[    2.770877] Freeing unused kernel memory: 1352K (ffffffff94914000 - ffffffff94a66000)
[    2.770886] Write protecting the kernel read-only data: 10240k
[    2.771418] Freeing unused kernel memory: 124K (ffff8800143e1000 - ffff880014400000)
[    2.782185] Freeing unused kernel memory: 1344K (ffff8800146b0000 - ffff880014800000)
[    2.799583] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.858096] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.858732] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.858853] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.858992] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.860112] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.860281] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.861265] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.861495] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.861716] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.862001] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.941636] sdhci: Secure Digital Host Controller Interface driver
[    2.941642] sdhci: Copyright(c) Pierre Ossman
[    2.958129] hidraw: raw HID events driver (C) Jiri Kosina
[    2.967152] mmc0: SDHCI controller on ACPI [80860F14:00] using ADMA
[    2.975588] mmc1: SDHCI controller on ACPI [INT33BB:00] using ADMA
[    2.982879] FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
[    3.003543] mmc2: SDHCI controller on ACPI [80860F14:01] using ADMA
[    3.038799] ACPI: bus type USB registered
[    3.038857] usbcore: registered new interface driver usbfs
[    3.038884] usbcore: registered new interface driver hub
[    3.038940] usbcore: registered new device driver usb
[    3.040050] [Firmware Bug]: No valid trip found
[    3.064893] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    3.067286] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.068515] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.068534] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    3.069300] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.069663] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[    3.069675] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.071674] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.071681] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.071684] usb usb1: Product: xHCI Host Controller
[    3.071687] usb usb1: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.071690] usb usb1: SerialNumber: 0000:00:14.0
[    3.073519] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    3.073760] hub 1-0:1.0: USB hub found
[    3.073783] hub 1-0:1.0: 6 ports detected
[    3.107747] SSE version of gcm_enc/dec engaged.
[    3.115613] mmc0: new HS200 MMC card at address 0001
[    3.170343] mmc1: new ultra high speed DDR50 SDIO card at address 0001
[    3.236947] mmcblk0: mmc0:0001 SEM128 116 GiB 
[    3.237580] mmcblk0boot0: mmc0:0001 SEM128 partition 1 4.00 MiB
[    3.237777] mmcblk0boot1: mmc0:0001 SEM128 partition 2 4.00 MiB
[    3.237959] mmcblk0rpmb: mmc0:0001 SEM128 partition 3 4.00 MiB
[    3.261943]  mmcblk0: p1 p2 p3 p4 p5
[    3.386619] clocksource: Switched to clocksource tsc
[    3.675605] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.675643] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    3.676158] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    3.676178] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.676192] usb usb2: Product: xHCI Host Controller
[    3.676204] usb usb2: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.676216] usb usb2: SerialNumber: 0000:00:14.0
[    3.677240] hub 2-0:1.0: USB hub found
[    3.677310] hub 2-0:1.0: 1 port detected
[    3.987111] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[    4.115932] usb 1-1: New USB device found, idVendor=058f, idProduct=9254
[    4.115954] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.115968] usb 1-1: Product: Generic USB Hub
[    4.115979] usb 1-1: Manufacturer: ALCOR
[    4.117006] hub 1-1:1.0: USB hub found
[    4.117176] hub 1-1:1.0: 4 ports detected
[    4.270782] EXT4-fs (mmcblk0p5): mounted filesystem with ordered data mode. Opts: (null)
[    4.359412] usb 1-3: new high-speed USB device number 3 using xhci_hcd
[    4.488744] usb 1-3: New USB device found, idVendor=8087, idProduct=0716
[    4.488750] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.537185] systemd[1]: RTC configured in localtime, applying delta of 120 minutes to system time.
[    4.559603] usb 1-1.2: new low-speed USB device number 4 using xhci_hcd
[    4.635040] systemd[1]: systemd 231 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[    4.635440] systemd[1]: Detected architecture x86-64.
[    4.640314] systemd[1]: Set hostname to <thinkpad8>.
[    4.651911] usb 1-1.2: New USB device found, idVendor=070a, idProduct=0025
[    4.651919] usb 1-1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.723776] usb 1-1.4: new low-speed USB device number 5 using xhci_hcd
[    4.823162] usb 1-1.4: New USB device found, idVendor=070a, idProduct=0025
[    4.823169] usb 1-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.894686] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    4.894770] systemd[1]: Reached target User and Group Name Lookups.
[    4.894868] systemd[1]: Listening on Journal Socket (/dev/log).
[    4.894919] systemd[1]: Listening on fsck to fsckd communication Socket.
[    4.894977] systemd[1]: Listening on udev Kernel Socket.
[    4.895266] systemd[1]: Created slice System Slice.
[    4.895372] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    4.895457] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    4.895695] systemd[1]: Created slice system-getty.slice.
[    4.895773] systemd[1]: Listening on udev Control Socket.
[    4.895938] systemd[1]: Listening on Journal Audit Socket.
[    4.896019] systemd[1]: Listening on Journal Socket.
[    4.908084] systemd[1]: Mounting Debug File System...
[    4.912144] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    4.914431] systemd[1]: Starting Set the console keyboard layout...
[    4.920515] systemd[1]: Starting Load Kernel Modules...
[    4.923317] systemd[1]: Mounting POSIX Message Queue File System...
[    4.923456] systemd[1]: Reached target Encrypted Volumes.
[    4.923604] systemd[1]: Reached target Swap.
[    4.923904] systemd[1]: Listening on Syslog Socket.
[    4.926741] systemd[1]: Starting Journal Service...
[    4.929626] systemd[1]: Mounting Huge Pages File System...
[    4.929900] systemd[1]: Listening on RPCbind Server Activation Socket.
[    4.932447] systemd[1]: Mounting RPC Pipe File System...
[    4.932981] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    4.934791] systemd[1]: Starting Remount Root and Kernel File Systems...
[    4.934962] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    4.935359] systemd[1]: Created slice User and Session Slice.
[    4.935420] systemd[1]: Reached target Slices.
[    4.939842] systemd[1]: Started Create list of required static device nodes for the current kernel.
[    4.942069] systemd[1]: Starting Create Static Device Nodes in /dev...
[    4.945182] systemd[1]: Started Load Kernel Modules.
[    4.946819] systemd[1]: Starting Apply Kernel Variables...
[    4.956294] systemd[1]: Mounted Debug File System.
[    4.956385] systemd[1]: Mounted Huge Pages File System.
[    4.956426] systemd[1]: Mounted POSIX Message Queue File System.
[    4.963149] EXT4-fs (mmcblk0p5): re-mounted. Opts: errors=remount-ro
[    4.964621] systemd[1]: Started Remount Root and Kernel File Systems.
[    4.965997] systemd[1]: Starting Load/Save Random Seed...
[    4.974625] systemd[1]: Starting udev Coldplug all Devices...
[    4.975700] systemd[1]: Started Apply Kernel Variables.
[    4.986694] systemd[1]: Started Journal Service.
[    5.002658] systemd-journald[939]: Received request to flush runtime journal from PID 1
[    5.020230] RPC: Registered named UNIX socket transport module.
[    5.020236] RPC: Registered udp transport module.
[    5.020238] RPC: Registered tcp transport module.
[    5.020240] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.308029] i2c i2c-0: i2c read failed
[    5.317007] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    5.317126] ACPI: Lid Switch [LID0]
[    5.317231] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    5.317238] ACPI: Power Button [PWRF]
[    5.331296] Bluetooth: Core ver 2.21
[    5.331328] NET: Registered protocol family 31
[    5.331331] Bluetooth: HCI device and connection manager initialized
[    5.331339] Bluetooth: HCI socket layer initialized
[    5.331344] Bluetooth: L2CAP socket layer initialized
[    5.331356] Bluetooth: SCO socket layer initialized
[    5.360148] i2c i2c-0: i2c read failed
[    5.405672] Bluetooth: HCI UART driver ver 2.3
[    5.405678] Bluetooth: HCI UART protocol H4 registered
[    5.405681] Bluetooth: HCI UART protocol BCSP registered
[    5.405683] Bluetooth: HCI UART protocol LL registered
[    5.405685] Bluetooth: HCI UART protocol ATH3K registered
[    5.405687] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    5.405767] Bluetooth: HCI UART protocol Intel registered
[    5.418247] [drm] Initialized drm 1.1.0 20060810
[    5.420123] i2c i2c-0: i2c read failed
[    5.420685] hci_bcm BCM2E55:00: BCM irq: 70
[    5.420751] hci_bcm BCM2E55:00: BCM2E55:00 device registered.
[    5.420827] Bluetooth: HCI UART protocol BCM registered
[    5.420831] Bluetooth: HCI UART protocol QCA registered
[    5.472551] i2c i2c-0: i2c read failed
[    5.507570] intel_sst_acpi 80860F28:00: LPE base: 0xd0a00000 size:0x200000
[    5.507576] intel_sst_acpi 80860F28:00: IRAM base: 0xd0ac0000
[    5.507610] intel_sst_acpi 80860F28:00: DRAM base: 0xd0b00000
[    5.507619] intel_sst_acpi 80860F28:00: SHIM base: 0xd0b40000
[    5.507626] intel_sst_acpi 80860F28:00: Mailbox base: 0xd0b44000
[    5.507636] intel_sst_acpi 80860F28:00: DDR base: 0x20000000
[    5.507720] intel_sst_acpi 80860F28:00: Got drv data max stream 25
[    5.518640] intel_sst_acpi 80860F28:00: firmware: direct-loading firmware intel/fw_sst_0f28.bin
[    5.524407] i2c i2c-0: i2c read failed
[    5.524918] ACPI: AC Adapter [ADP1] (off-line)
[    5.540875] [drm] Memory usable by graphics device = 2048M
[    5.540886] checking generic (c0000000 500000) vs hw (c0000000 10000000)
[    5.540890] fb: switching to inteldrmfb from simple
[    5.540976] Console: switching to colour dummy device 80x25
[    5.541121] [drm] Replacing VGA console driver
[    5.541268] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    5.541272] [drm] Driver supports precise vblank timestamp query.
[    5.599106] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    5.661589] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.663223] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2
[    5.663425] [drm] Initialized i915 1.6.0 20160425 for 0000:00:02.0 on minor 0
[    5.692392] i2c i2c-0: i2c read failed
[    5.748112] fbcon: inteldrmfb (fb0) is primary device
[    5.757325] i2c i2c-0: i2c read failed
[    5.845782] rt5640 i2c-10EC5640:01: Device with ID register 0x6271 is not rt5640/39
[    5.853024] ACPI: Battery Slot [BAT0] (battery absent)
[    5.877553] dw_dmac INTL9C60:00: DesignWare DMA Controller, 8 channels
[    5.904135] wmi: Mapper loaded
[    5.909316] dw_dmac INTL9C60:01: DesignWare DMA Controller, 8 channels
[    6.016970] Console: switching to colour frame buffer device 160x64
[    6.026402] input: PC Speaker as /devices/platform/pcspkr/input/input3
[    6.043642] usbcore: registered new interface driver usbserial
[    6.043662] usbcore: registered new interface driver usbserial_generic
[    6.043679] usbserial: USB Serial support registered for generic
[    6.052169] usbcore: registered new interface driver usb_serial_simple
[    6.052192] usbserial: USB Serial support registered for carelink
[    6.052212] usbserial: USB Serial support registered for zio
[    6.052230] usbserial: USB Serial support registered for funsoft
[    6.052248] usbserial: USB Serial support registered for flashloader
[    6.052266] usbserial: USB Serial support registered for google
[    6.052285] usbserial: USB Serial support registered for vivopay
[    6.052311] usbserial: USB Serial support registered for moto_modem
[    6.052334] usbserial: USB Serial support registered for novatel_gps
[    6.052351] usbserial: USB Serial support registered for hp4x
[    6.052370] usbserial: USB Serial support registered for suunto
[    6.052387] usbserial: USB Serial support registered for siemens_mpi
[    6.052412] usb_serial_simple 1-3:1.0: flashloader converter detected
[    6.053767] usb 1-3: flashloader converter now attached to ttyUSB0
[    6.073469] usbcore: registered new interface driver usbhid
[    6.073470] usbhid: USB HID core driver
[    6.100027] random: nonblocking pool is initialized
[    6.148630] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    6.207039] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    6.208577] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.211057] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.214538] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    6.295970] brcmfmac: brcmf_sdio_drivestrengthinit: No SDIO Drive strength init done for chip 4324 rev 6 pmurev 17
[    6.311274] usbcore: registered new interface driver brcmfmac
[    6.327310] intel_rapl: Found RAPL domain package
[    6.327318] intel_rapl: Found RAPL domain core
[    6.330269] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.bin
[    6.331497] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.txt
[    6.333807] iTCO_vendor_support: vendor-support=0
[    6.336011] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    6.336125] iTCO_wdt: Found a Bay Trail SoC TCO device (Version=3, TCOBASE=0x0460)
[    6.336696] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    6.371209] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.371307] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.404298] brcmfmac: brcmf_c_preinit_dcmds: Firmware version = wl0: Feb 24 2015 06:43:35 version 6.25.91.13 (r536868) FWID 01-b48d628a
[    6.448516] input: gpio-keys as /devices/platform/gpio-keys.1.auto/input/input4
[    6.448822] input: gpio-keys as /devices/platform/gpio-keys.2.auto/input/input5
[    6.449315] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.449413] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.450018] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.450100] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.452291] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    6.491340] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.491438] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.517700] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:070A:0025.0003/input/input6
[    6.517959] hid-generic 0003:070A:0025.0003: input,hidraw0: USB HID v1.00 Mouse [HID 070a:0025] on usb-0000:00:14.0-1.2/input0
[    6.518206] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:070A:0025.0004/input/input7
[    6.518505] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.518598] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.576103] hid-generic 0003:070A:0025.0004: input,hidraw1: USB HID v1.10 Keyboard [HID 070a:0025] on usb-0000:00:14.0-1.4/input0
[    6.577107] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.577204] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.579559] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:070A:0025.0005/input/input8
[    6.636001] hid-generic 0003:070A:0025.0005: input,hiddev0,hidraw2: USB HID v1.10 Device [HID 070a:0025] on usb-0000:00:14.0-1.4/input1
[    6.636569] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.636665] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.638434] usb 1-3: USB disconnect, device number 3
[    6.639148] flashloader ttyUSB0: flashloader converter now disconnected from ttyUSB0
[    6.639178] usb_serial_simple 1-3:1.0: device disconnected
[    6.662859] input: ATML1000:00 03EB:844B as /devices/platform/80860F41:05/i2c-13/i2c-ATML1000:00/0018:03EB:844B.0002/input/input9
[    6.663083] hid-multitouch 0018:03EB:844B.0002: input,hidraw3: I2C HID v1.00 Device [ATML1000:00 03EB:844B] on i2c-ATML1000:00
[    6.663819] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.663905] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.689138] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    6.697543] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.697636] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.702550] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.702645] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.707784] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.707883] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.720071] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.720167] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.721227] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.721317] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.722059] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.722151] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    7.039164] Bluetooth: hci0: BCM: chip id 90
[    7.039173] Bluetooth: hci0: BCM (002.006.006) build 0000
[    7.081564] bluetooth hci0: firmware: direct-loading firmware brcm/BCM.hcd
[    7.539287] Bluetooth: hci0: BCM (002.006.006) build 1170
[    7.725393] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    7.756267] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    8.003657] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   11.334390] usb 1-3: new high-speed USB device number 6 using xhci_hcd
[   11.490858] usb 1-3: New USB device found, idVendor=1199, idProduct=a001
[   11.490866] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   11.490869] usb 1-3: Product: Sierra Wireless EM7345 4G LTE
[   11.490872] usb 1-3: Manufacturer: Sierra Wireless Inc.
[   11.490875] usb 1-3: SerialNumber: 013937001951332
[   11.499964] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.499976] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.529293] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.529306] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.563562] cdc_ncm 1-3:1.0: MAC-Address: 00:00:11:12:13:14
[   11.563571] cdc_ncm 1-3:1.0: setting rx_max = 16384
[   11.564542] cdc_ncm 1-3:1.0 usb0: register 'cdc_ncm' at usb-0000:00:14.0-3, CDC NCM, 00:00:11:12:13:14
[   11.564610] usbcore: registered new interface driver cdc_ncm
[   11.564725] cdc_acm 1-3:1.2: ttyACM0: USB ACM device
[   11.565691] usbcore: registered new interface driver cdc_acm
[   11.565697] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[   11.566099] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.566109] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.566635] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.566642] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.571009] usbcore: registered new interface driver cdc_wdm
[   11.574789] usbcore: registered new interface driver cdc_mbim
[   11.584970] cdc_ncm 1-3:1.0 enx000011121314: renamed from usb0
[   11.628846] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   11.629046] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   18.676133] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   24.330715] fuse init (API version 7.25)

[-- Attachment #5: dmesg.simple-udev-rule --]
[-- Type: text/plain, Size: 49988 bytes --]

[    0.000000] Linux version 4.7.0-1-amd64 (debian-kernel@lists.debian.org) (gcc version 5.4.1 20160803 (Debian 5.4.1-1) ) #1 SMP Debian 4.7.2-1 (2016-08-28)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] x86/fpu: Legacy x87 FPU detected.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000200fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020100000-0x00000000b81c2fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b81c3000-0x00000000b91c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b91c3000-0x00000000b92c2fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000b92c3000-0x00000000b98c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b98c3000-0x00000000b99c2fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000b99c3000-0x00000000b9a02fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000b9a03000-0x00000000ba7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by Phoenix Technologies Ltd.
[    0.000000] efi:  ACPI=0xb9a02000  ACPI 2.0=0xb9a02014  SMBIOS=0xb98a5000  ESRT=0xb8af8000 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 20BN0036UK/20BN0036UK, BIOS GYET26WW (1.26) 01/12/2015
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   1 base 000000000 mask F80000000 write-back
[    0.000000]   2 base 080000000 mask FC0000000 write-back
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   5 base 0BA800000 mask FFF800000 uncachable
[    0.000000]   6 base 100000000 mask FC0000000 write-back
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0xba800 max_arch_pfn = 0x400000000
[    0.000000] Base memory trampoline at [ffff880000029000] 29000 size 24576
[    0.000000] BRK [0x27b56000, 0x27b56fff] PGTABLE
[    0.000000] BRK [0x27b57000, 0x27b57fff] PGTABLE
[    0.000000] BRK [0x27b58000, 0x27b58fff] PGTABLE
[    0.000000] BRK [0x27b59000, 0x27b59fff] PGTABLE
[    0.000000] BRK [0x27b5a000, 0x27b5afff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35d52000-0x36ea0fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000B9A02014 000024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 0x00000000B9A02170 0000E4 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FACP 0x00000000B99FE000 00010C (v05 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: DSDT 0x00000000B99EA000 00F9BF (v02 LENOVO TP-GY    00001260 INTL 20120711)
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: TCPA 0x00000000B9A01000 000032 (v02 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B9A00000 0000B1 (v01 LENOVO ADebTabl 00001000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99FF000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: HPET 0x00000000B99FD000 000038 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: LPIT 0x00000000B99FC000 000104 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: APIC 0x00000000B99FB000 00006C (v03 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: MCFG 0x00000000B99FA000 00003C (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E9000 0005FC (v01 LENOVO CpuDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E7000 0018E6 (v01 LENOVO DptfTab  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E6000 000058 (v01 LENOVO LowPwrM  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E5000 0000FF (v01 LENOVO SoCDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E4000 000763 (v01 PmRef  CpuPm    00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E3000 000290 (v01 PmRef  Cpu0Tst  00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E2000 00017A (v01 PmRef  ApTst    00003000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99E1000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: MSDM 0x00000000B9955000 000055 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BATB 0x00000000B99E0000 000046 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FPDT 0x00000000B99DF000 000054 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B99DE000 00043A (v01 LENOVO Tpm2Tabl 00001000 INTL 20120711)
[    0.000000] ACPI: TPM2 0x00000000B99DD000 000034 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: UEFI 0x00000000B99DC000 00008A (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BGRT 0x00000000B99DB000 000038 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: CSRT 0x00000000B99DA000 00014C (v00 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x13fff7000-0x13fffbfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.000000]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020100000-0x00000000b81c2fff]
[    0.000000]   node   0: [mem 0x00000000b9a03000-0x00000000ba7fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
[    0.000000] On node 0 totalpages: 1019486
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 133 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 11771 pages used for memmap
[    0.000000]   DMA32 zone: 753344 pages, LIFO batch:31
[    0.000000]   Normal zone: 4096 pages used for memmap
[    0.000000]   Normal zone: 262144 pages, LIFO batch:31
[    0.000000] x86/hpet: Will disable the HPET for this platform because it's not reliable
[    0.000000] Reserving Intel graphics stolen memory at 0xbaf00000-0xbeefffff
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-86
[    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: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x200fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xb81c3000-0xb91c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb91c3000-0xb92c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb92c3000-0xb98c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb98c3000-0xb99c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb99c3000-0xb9a02fff]
[    0.000000] PM: Registered nosave memory: [mem 0xba800000-0xbaefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbaf00000-0xbeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbef00000-0xe00f7fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f9000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed02000-0xffffffff]
[    0.000000] e820: [mem 0xbef00000-0xe00f7fff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 33 pages/cpu @ffff88013fc00000 s98264 r8192 d28712 u524288
[    0.000000] pcpu-alloc: s98264 r8192 d28712 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1003422
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3913604K/4077944K available (6004K kernel code, 1096K rwdata, 2752K rodata, 1352K init, 928K bss, 164340K reserved, 0K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:33024 nr_irqs:1024 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Maximum core-clock to bus-clock ratio: 0xc
[    0.000000] Resolved frequency ID: 2, frequency: 133200 KHz
[    0.000000] TSC runs at 1598400 KHz
[    0.000000] lapic_timer_frequency = 532800
[    0.000000] tsc: Detected 1598.400 MHz processor
[    0.000037] Calibrating delay loop (skipped), value calculated using timer frequency.. 3196.80 BogoMIPS (lpj=6393600)
[    0.000045] pid_max: default: 32768 minimum: 301
[    0.000077] ACPI: Core revision 20160422
[    0.046010] ACPI: 10 ACPI AML tables successfully acquired and loaded

[    0.046125] Security Framework initialized
[    0.046132] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.046147] AppArmor: AppArmor disabled by boot time parameter
[    0.046705] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.049030] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.050084] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050099] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050665] CPU: Physical Processor ID: 0
[    0.050671] CPU: Processor Core ID: 0
[    0.050678] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.050681] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.050693] mce: CPU supports 6 MCE banks
[    0.050706] CPU0: Thermal monitoring enabled (TM1)
[    0.050716] process: using mwait in idle threads
[    0.050723] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[    0.050727] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[    0.051167] Freeing SMP alternatives memory: 24K (ffffffffa7a66000 - ffffffffa7a6c000)
[    0.053367] ftrace: allocating 24665 entries in 97 pages
[    0.068461] smpboot: Max logical packages: 1
[    0.068469] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.069537] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.109247] TSC deadline timer enabled
[    0.109254] smpboot: CPU0: Intel(R) Atom(TM) CPU  Z3795  @ 1.60GHz (family: 0x6, model: 0x37, stepping: 0x8)
[    0.109264] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, full-width counters, Intel PMU driver.
[    0.109283] ... version:                3
[    0.109285] ... bit width:              40
[    0.109288] ... generic registers:      2
[    0.109291] ... value mask:             000000ffffffffff
[    0.109293] ... max period:             000000ffffffffff
[    0.109296] ... fixed-purpose events:   3
[    0.109298] ... event mask:             0000000700000003
[    0.110661] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.111023] x86: Booting SMP configuration:
[    0.111028] .... node  #0, CPUs:      #1 #2 #3
[    0.351659] x86: Booted up 1 node, 4 CPUs
[    0.351666] smpboot: Total of 4 processors activated (12793.81 BogoMIPS)
[    0.361735] devtmpfs: initialized
[    0.361921] x86/mm: Memory block size: 128MB
[    0.379627] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    0.379633] PM: Registering ACPI NVS region [mem 0xb98c3000-0xb99c2fff] (1048576 bytes)
[    0.379842] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.389539] pinctrl core: initialized pinctrl subsystem
[    0.399846] NET: Registered protocol family 16
[    0.409533] cpuidle: using governor ladder
[    0.419557] cpuidle: using governor menu
[    0.419668] ACPI: bus type PCI registered
[    0.419673] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.439725] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.439731] PCI: not using MMCONFIG
[    0.439735] PCI: Using configuration type 1 for base access
[    0.453930] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.487755] ACPI: Added _OSI(Module Device)
[    0.487760] ACPI: Added _OSI(Processor Device)
[    0.487763] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.487766] ACPI: Added _OSI(Processor Aggregator Device)
[    0.509082] ACPI: Dynamic OEM Table Load:
[    0.509102] ACPI: SSDT 0xFFFF88013A69B000 0003D7 (v01 PmRef  Cpu0Ist  00003000 INTL 20120711)
[    0.510745] ACPI: Dynamic OEM Table Load:
[    0.510762] ACPI: SSDT 0xFFFF88013B0A3800 000433 (v01 PmRef  Cpu0Cst  00003001 INTL 20120711)
[    0.513093] ACPI: Dynamic OEM Table Load:
[    0.513109] ACPI: SSDT 0xFFFF88013A699400 00015F (v01 PmRef  ApIst    00003000 INTL 20120711)
[    0.514671] ACPI: Dynamic OEM Table Load:
[    0.514685] ACPI: SSDT 0xFFFF88013A691840 00008D (v01 PmRef  ApCst    00003000 INTL 20120711)
[    0.519204] ACPI: Interpreter enabled
[    0.519264] ACPI: (supports S0 S4 S5)
[    0.519268] ACPI: Using IOAPIC for interrupt routing
[    0.519356] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.524966] [Firmware Info]: PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] not reserved in ACPI motherboard resources
[    0.524971] PCI: not using MMCONFIG
[    0.524979] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.528000] ACPI: Power Resource [USBC] (on)
[    0.528851] ACPI: Power Resource [WWPR] (off)
[    0.536092] ACPI: Power Resource [PLPE] (on)
[    0.545225] ACPI: Power Resource [CLK0] (on)
[    0.545347] ACPI: Power Resource [CLK1] (on)
[    0.545715] ACPI: Power Resource [P28X] (off)
[    0.545836] ACPI: Power Resource [P18X] (off)
[    0.548887] ACPI: Power Resource [TCPR] (off)
[    0.557915] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.557929] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.558054] \_SB_.PCI0 (33DB4D5B-1FF7-401C-9657-7441C03DD766): _OSC invalid UUID
[    0.558058] _OSC request data: 1 1e 0
[    0.558067] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.558101] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.558794] PCI host bridge to bus 0000:00
[    0.558802] pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
[    0.558808] pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
[    0.558813] pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
[    0.558818] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.558822] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.558827] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.558832] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.558837] pci_bus 0000:00: root bus resource [mem 0xd0c00000-0xd0ffffff window]
[    0.558842] pci_bus 0000:00: root bus resource [mem 0xbaf00001-0xbef00000 window]
[    0.558847] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xd08ffffe window]
[    0.558852] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed40fff window]
[    0.558857] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.558874] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
[    0.559078] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
[    0.559097] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff]
[    0.559113] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff pref]
[    0.559127] pci 0000:00:02.0: reg 0x20: [io  0x1000-0x1007]
[    0.559345] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
[    0.559370] pci 0000:00:14.0: reg 0x10: [mem 0xd0800000-0xd080ffff 64bit]
[    0.559446] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.559624] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
[    0.559648] pci 0000:00:1a.0: reg 0x10: [mem 0xd0700000-0xd07fffff]
[    0.559663] pci 0000:00:1a.0: reg 0x14: [mem 0xd0600000-0xd06fffff]
[    0.559771] pci 0000:00:1a.0: PME# supported from D0 D3hot
[    0.559944] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
[    0.561047] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561239] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561429] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561618] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561808] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.561999] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.562193] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.562383] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.576011] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.576018] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.576023] vgaarb: loaded
[    0.576026] vgaarb: bridge control possible 0000:00:02.0
[    0.576260] PCI: Using ACPI for IRQ routing
[    0.576266] PCI: pci_cache_line_size set to 64 bytes
[    0.576290] Expanded resource reserved due to conflict with PCI Bus 0000:00
[    0.576295] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.576300] e820: reserve RAM buffer [mem 0xb81c3000-0xbbffffff]
[    0.576304] e820: reserve RAM buffer [mem 0xba800000-0xbbffffff]
[    0.576693] amd_nb: Cannot enumerate AMD northbridges
[    0.576724] clocksource: Switched to clocksource refined-jiffies
[    0.592368] VFS: Disk quotas dquot_6.6.0
[    0.601840] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.607959] pnp: PnP ACPI init
[    0.608112] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.608287] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.608294] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.608300] system 00:01: [io  0x0500-0x05fe] has been reserved
[    0.608305] system 00:01: [io  0x0600-0x061f] has been reserved
[    0.608311] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.608320] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.608576] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.611629] pnp: PnP ACPI: found 3 devices
[    0.621532] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.621565] clocksource: Switched to clocksource acpi_pm
[    0.621587] pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
[    0.621592] pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
[    0.621597] pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
[    0.621601] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.621606] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.621610] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.621615] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[    0.621619] pci_bus 0000:00: resource 11 [mem 0xd0c00000-0xd0ffffff window]
[    0.621624] pci_bus 0000:00: resource 12 [mem 0xbaf00001-0xbef00000 window]
[    0.621628] pci_bus 0000:00: resource 13 [mem 0xc0000000-0xd08ffffe window]
[    0.621633] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed40fff window]
[    0.693669] NET: Registered protocol family 2
[    0.705796] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.705967] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.706161] TCP: Hash tables configured (established 32768 bind 32768)
[    0.706240] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.706288] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.733712] NET: Registered protocol family 1
[    0.733751] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.734114] PCI: CLS 0 bytes, default 64
[    0.734241] Unpacking initramfs...
[    1.371148] Freeing initrd memory: 17724K (ffff880035d52000 - ffff880036ea1000)
[    1.371159] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.371164] software IO TLB [mem 0xb41c3000-0xb81c3000] (64MB) mapped at [ffff8800b41c3000-ffff8800b81c2fff]
[    1.371538] simple-framebuffer simple-framebuffer.0: framebuffer at 0xc0000000, 0x500000 bytes, mapped to 0xffffc90000800000
[    1.371545] simple-framebuffer simple-framebuffer.0: format=a8r8g8b8, mode=1280x1024x32, linelength=5120
[    1.381883] Console: switching to colour frame buffer device 160x64
[    1.391898] simple-framebuffer simple-framebuffer.0: fb0: simplefb registered!
[    1.406843] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    1.418403] audit: initializing netlink subsys (disabled)
[    1.418446] audit: type=2000 audit(1473721346.407:1): initialized
[    1.419278] Initialise system trusted keyrings
[    1.419549] workingset: timestamp_bits=37 max_order=20 bucket_order=0
[    1.419580] zbud: loaded
[    1.550720] Key type asymmetric registered
[    1.550726] Asymmetric key parser 'x509' registered
[    1.566568] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    1.566662] io scheduler noop registered
[    1.566667] io scheduler deadline registered
[    1.586564] io scheduler cfq registered (default)
[    1.586697] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.586714] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.586781] intel_idle: MWAIT substates: 0x33000020
[    1.586785] intel_idle: v0.4.1 model 0x37
[    1.586790] intel_idle: max_cstate 1 reached
[    1.586970] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.591316] GHES: HEST is not enabled!
[    1.591481] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.611747] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.626774] 80860F0A:00: ttyS1 at MMIO 0xd094d000 (irq = 39, base_baud = 2764800) is a 16550A
[    1.627235] hpet: number irqs doesn't agree with number of timers
[    1.627291] Linux agpgart interface v0.103
[    1.627390] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    1.627394] AMD IOMMUv2 functionality not available on this system
[    1.628191] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    2.371398] tsc: Refined TSC clocksource calibration: 1599.999 MHz
[    2.371406] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x171023f09ff, max_idle_ns: 440795233615 ns
[    2.663905] i8042: No controller found
[    2.664143] mousedev: PS/2 mouse device common for all mice
[    2.664446] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    2.664488] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram
[    2.664511] intel_pstate: Intel P-state driver initializing
[    2.664758] ledtrig-cpu: registered to indicate activity on CPUs
[    2.735742] NET: Registered protocol family 10
[    2.736921] mip6: Mobile IPv6
[    2.736938] NET: Registered protocol family 17
[    2.736960] mpls_gso: MPLS GSO support
[    2.738416] microcode: CPU0 sig=0x30678, pf=0x2, revision=0x80a
[    2.738464] microcode: CPU1 sig=0x30678, pf=0x2, revision=0x80a
[    2.738512] microcode: CPU2 sig=0x30678, pf=0x2, revision=0x80a
[    2.738548] microcode: CPU3 sig=0x30678, pf=0x2, revision=0x80a
[    2.738826] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    2.739914] registered taskstats version 1
[    2.739929] Loading compiled-in X.509 certificates
[    2.748830] alg: No test for pkcs1pad(rsa,sha256) (pkcs1pad(rsa-generic,sha256))
[    2.750957] Loaded X.509 cert 'Debian Project: Ben Hutchings: 008a018dca80932630'
[    2.751086] zswap: loaded using pool lzo/zbud
[    2.752116] rtc_cmos 00:00: setting system clock to 2016-09-12 23:02:27 UTC (1473721347)
[    2.752861] PM: Hibernation image not present or could not be loaded.
[    2.760358] Freeing unused kernel memory: 1352K (ffffffffa7914000 - ffffffffa7a66000)
[    2.760371] Write protecting the kernel read-only data: 10240k
[    2.761232] Freeing unused kernel memory: 124K (ffff8800273e1000 - ffff880027400000)
[    2.773688] Freeing unused kernel memory: 1344K (ffff8800276b0000 - ffff880027800000)
[    2.791907] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.846703] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.847337] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.847456] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.847592] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.849772] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.849982] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.851362] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.851684] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.852152] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.852601] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.936051] sdhci: Secure Digital Host Controller Interface driver
[    2.936058] sdhci: Copyright(c) Pierre Ossman
[    2.943771] hidraw: raw HID events driver (C) Jiri Kosina
[    2.960179] mmc0: SDHCI controller on ACPI [80860F14:00] using ADMA
[    2.968145] mmc1: SDHCI controller on ACPI [INT33BB:00] using ADMA
[    2.974098] FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
[    3.002363] mmc2: SDHCI controller on ACPI [80860F14:01] using ADMA
[    3.004559] [Firmware Bug]: No valid trip found
[    3.029305] ACPI: bus type USB registered
[    3.029365] usbcore: registered new interface driver usbfs
[    3.029389] usbcore: registered new interface driver hub
[    3.033733] usbcore: registered new device driver usb
[    3.048809] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.048834] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    3.049980] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[    3.049991] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.050444] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.050450] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.050453] usb usb1: Product: xHCI Host Controller
[    3.050456] usb usb1: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.050459] usb usb1: SerialNumber: 0000:00:14.0
[    3.051436] hub 1-0:1.0: USB hub found
[    3.051460] hub 1-0:1.0: 6 ports detected
[    3.055885] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    3.057465] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.059799] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.063119] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    3.097667] SSE version of gcm_enc/dec engaged.
[    3.109729] mmc0: new HS200 MMC card at address 0001
[    3.168934] mmc1: new ultra high speed DDR50 SDIO card at address 0001
[    3.218826] mmcblk0: mmc0:0001 SEM128 116 GiB 
[    3.219026] mmcblk0boot0: mmc0:0001 SEM128 partition 1 4.00 MiB
[    3.219205] mmcblk0boot1: mmc0:0001 SEM128 partition 2 4.00 MiB
[    3.219371] mmcblk0rpmb: mmc0:0001 SEM128 partition 3 4.00 MiB
[    3.239935]  mmcblk0: p1 p2 p3 p4 p5
[    3.372493] clocksource: Switched to clocksource tsc
[    3.653468] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.653507] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    3.653901] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    3.653918] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.653931] usb usb2: Product: xHCI Host Controller
[    3.653943] usb usb2: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.653955] usb usb2: SerialNumber: 0000:00:14.0
[    3.655907] hub 2-0:1.0: USB hub found
[    3.655983] hub 2-0:1.0: 1 port detected
[    3.964956] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[    4.093914] usb 1-1: New USB device found, idVendor=058f, idProduct=9254
[    4.093935] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.093949] usb 1-1: Product: Generic USB Hub
[    4.093961] usb 1-1: Manufacturer: ALCOR
[    4.095075] hub 1-1:1.0: USB hub found
[    4.095226] hub 1-1:1.0: 4 ports detected
[    4.331231] EXT4-fs (mmcblk0p5): mounted filesystem with ordered data mode. Opts: (null)
[    4.333347] usb 1-3: new high-speed USB device number 3 using xhci_hcd
[    4.466644] usb 1-3: New USB device found, idVendor=8087, idProduct=0716
[    4.466651] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.537507] usb 1-1.2: new low-speed USB device number 4 using xhci_hcd
[    4.566842] systemd[1]: RTC configured in localtime, applying delta of 120 minutes to system time.
[    4.629713] usb 1-1.2: New USB device found, idVendor=070a, idProduct=0025
[    4.629720] usb 1-1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.657365] systemd[1]: systemd 231 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[    4.657862] systemd[1]: Detected architecture x86-64.
[    4.662665] systemd[1]: Set hostname to <thinkpad8>.
[    4.701673] usb 1-1.4: new low-speed USB device number 5 using xhci_hcd
[    4.805239] usb 1-1.4: New USB device found, idVendor=070a, idProduct=0025
[    4.805246] usb 1-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.905385] systemd[1]: Created slice System Slice.
[    4.905554] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    4.905580] systemd[1]: Reached target User and Group Name Lookups.
[    4.905811] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    4.905920] systemd[1]: Listening on udev Kernel Socket.
[    4.906004] systemd[1]: Listening on Journal Socket (/dev/log).
[    4.906086] systemd[1]: Listening on Journal Socket.
[    4.917996] systemd[1]: Mounting Debug File System...
[    4.919285] systemd[1]: Mounting Huge Pages File System...
[    4.919444] systemd[1]: Listening on RPCbind Server Activation Socket.
[    4.919527] systemd[1]: Listening on fsck to fsckd communication Socket.
[    4.919706] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    4.919749] systemd[1]: Reached target Swap.
[    4.921091] systemd[1]: Mounting POSIX Message Queue File System...
[    4.921524] systemd[1]: Created slice User and Session Slice.
[    4.921593] systemd[1]: Reached target Slices.
[    4.924849] systemd[1]: Starting Load Kernel Modules...
[    4.925353] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    4.933092] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    4.934381] systemd[1]: Starting Remount Root and Kernel File Systems...
[    4.934538] systemd[1]: Listening on udev Control Socket.
[    4.934886] systemd[1]: Created slice system-getty.slice.
[    4.936241] systemd[1]: Starting Set the console keyboard layout...
[    4.937592] systemd[1]: Mounting RPC Pipe File System...
[    4.937737] systemd[1]: Listening on Syslog Socket.
[    4.937977] systemd[1]: Listening on Journal Audit Socket.
[    4.939303] systemd[1]: Starting Journal Service...
[    4.939503] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    4.939695] systemd[1]: Reached target Encrypted Volumes.
[    4.942959] systemd[1]: Started Load Kernel Modules.
[    4.944511] systemd[1]: Starting Apply Kernel Variables...
[    4.947527] systemd[1]: Started Create list of required static device nodes for the current kernel.
[    4.949177] systemd[1]: Starting Create Static Device Nodes in /dev...
[    4.955872] systemd[1]: Mounted Debug File System.
[    4.955958] systemd[1]: Mounted Huge Pages File System.
[    4.955999] systemd[1]: Mounted POSIX Message Queue File System.
[    4.962045] EXT4-fs (mmcblk0p5): re-mounted. Opts: errors=remount-ro
[    4.964078] systemd[1]: Started Remount Root and Kernel File Systems.
[    4.969453] systemd[1]: Starting udev Coldplug all Devices...
[    4.970970] systemd[1]: Starting Load/Save Random Seed...
[    4.977895] systemd[1]: Started Apply Kernel Variables.
[    4.998982] systemd[1]: Started Journal Service.
[    5.012922] systemd-journald[939]: Received request to flush runtime journal from PID 1
[    5.018035] RPC: Registered named UNIX socket transport module.
[    5.018042] RPC: Registered udp transport module.
[    5.018044] RPC: Registered tcp transport module.
[    5.018046] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.330563] i2c i2c-0: i2c read failed
[    5.352229] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    5.352347] ACPI: Lid Switch [LID0]
[    5.352449] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    5.352456] ACPI: Power Button [PWRF]
[    5.382080] i2c i2c-0: i2c read failed
[    5.385921] Bluetooth: Core ver 2.21
[    5.385957] NET: Registered protocol family 31
[    5.385961] Bluetooth: HCI device and connection manager initialized
[    5.385969] Bluetooth: HCI socket layer initialized
[    5.385975] Bluetooth: L2CAP socket layer initialized
[    5.385988] Bluetooth: SCO socket layer initialized
[    5.409388] [drm] Initialized drm 1.1.0 20060810
[    5.410518] Bluetooth: HCI UART driver ver 2.3
[    5.410525] Bluetooth: HCI UART protocol H4 registered
[    5.410527] Bluetooth: HCI UART protocol BCSP registered
[    5.410529] Bluetooth: HCI UART protocol LL registered
[    5.410531] Bluetooth: HCI UART protocol ATH3K registered
[    5.410533] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    5.410615] Bluetooth: HCI UART protocol Intel registered
[    5.426689] hci_bcm BCM2E55:00: BCM irq: 70
[    5.426756] hci_bcm BCM2E55:00: BCM2E55:00 device registered.
[    5.426838] Bluetooth: HCI UART protocol BCM registered
[    5.426841] Bluetooth: HCI UART protocol QCA registered
[    5.434180] i2c i2c-0: i2c read failed
[    5.470597] ttyS1 - failed to request DMA
[    5.486189] i2c i2c-0: i2c read failed
[    5.518647] [drm] Memory usable by graphics device = 2048M
[    5.518656] checking generic (c0000000 500000) vs hw (c0000000 10000000)
[    5.518659] fb: switching to inteldrmfb from simple
[    5.518719] Console: switching to colour dummy device 80x25
[    5.518870] [drm] Replacing VGA console driver
[    5.518987] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    5.518990] [drm] Driver supports precise vblank timestamp query.
[    5.521552] intel_sst_acpi 80860F28:00: LPE base: 0xd0a00000 size:0x200000
[    5.521558] intel_sst_acpi 80860F28:00: IRAM base: 0xd0ac0000
[    5.521584] intel_sst_acpi 80860F28:00: DRAM base: 0xd0b00000
[    5.521592] intel_sst_acpi 80860F28:00: SHIM base: 0xd0b40000
[    5.521609] intel_sst_acpi 80860F28:00: Mailbox base: 0xd0b44000
[    5.521616] intel_sst_acpi 80860F28:00: DDR base: 0x20000000
[    5.521710] intel_sst_acpi 80860F28:00: Got drv data max stream 25
[    5.538222] i2c i2c-0: i2c read failed
[    5.548772] intel_sst_acpi 80860F28:00: firmware: direct-loading firmware intel/fw_sst_0f28.bin
[    5.550423] Bluetooth: hci0: BCM: chip id 90
[    5.550432] Bluetooth: hci0: BCM (002.006.006) build 0000
[    5.553154] bluetooth hci0: firmware: direct-loading firmware brcm/BCM.hcd
[    5.578719] ACPI: AC Adapter [ADP1] (off-line)
[    5.581750] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    5.635133] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.635887] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2
[    5.635957] [drm] Initialized i915 1.6.0 20160425 for 0000:00:02.0 on minor 0
[    5.710306] i2c i2c-0: i2c read failed
[    5.729003] fbcon: inteldrmfb (fb0) is primary device
[    5.774406] i2c i2c-0: i2c read failed
[    5.823176] random: nonblocking pool is initialized
[    5.847732] rt5640 i2c-10EC5640:01: Device with ID register 0x6271 is not rt5640/39
[    5.858896] ACPI: Battery Slot [BAT0] (battery absent)
[    5.912032] dw_dmac INTL9C60:00: DesignWare DMA Controller, 8 channels
[    5.943489] dw_dmac INTL9C60:01: DesignWare DMA Controller, 8 channels
[    5.943510] wmi: Mapper loaded
[    6.016972] Bluetooth: hci0: BCM (002.006.006) build 1170
[    6.041581] input: PC Speaker as /devices/platform/pcspkr/input/input3
[    6.095548] Console: switching to colour frame buffer device 160x64
[    6.103194] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    6.121198] usbcore: registered new interface driver usbserial
[    6.121224] usbcore: registered new interface driver usbserial_generic
[    6.121245] usbserial: USB Serial support registered for generic
[    6.126325] usbcore: registered new interface driver usb_serial_simple
[    6.126355] usbserial: USB Serial support registered for carelink
[    6.126377] usbserial: USB Serial support registered for zio
[    6.126396] usbserial: USB Serial support registered for funsoft
[    6.126417] usbserial: USB Serial support registered for flashloader
[    6.126437] usbserial: USB Serial support registered for google
[    6.126455] usbserial: USB Serial support registered for vivopay
[    6.126477] usbserial: USB Serial support registered for moto_modem
[    6.126497] usbserial: USB Serial support registered for novatel_gps
[    6.126518] usbserial: USB Serial support registered for hp4x
[    6.126540] usbserial: USB Serial support registered for suunto
[    6.126560] usbserial: USB Serial support registered for siemens_mpi
[    6.126593] usb_serial_simple 1-3:1.0: flashloader converter detected
[    6.126743] usb 1-3: flashloader converter now attached to ttyUSB0
[    6.151044] usbcore: registered new interface driver usbhid
[    6.151050] usbhid: USB HID core driver
[    6.212851] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    6.214546] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.218121] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.221053] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    6.307232] intel_rapl: Found RAPL domain package
[    6.307258] intel_rapl: Found RAPL domain core
[    6.342785] brcmfmac: brcmf_sdio_drivestrengthinit: No SDIO Drive strength init done for chip 4324 rev 6 pmurev 17
[    6.346728] usbcore: registered new interface driver brcmfmac
[    6.352181] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.bin
[    6.353087] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.txt
[    6.371272] iTCO_vendor_support: vendor-support=0
[    6.374344] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    6.374478] iTCO_wdt: Found a Bay Trail SoC TCO device (Version=3, TCOBASE=0x0460)
[    6.382482] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    6.404791] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.404888] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.436457] brcmfmac: brcmf_c_preinit_dcmds: Firmware version = wl0: Feb 24 2015 06:43:35 version 6.25.91.13 (r536868) FWID 01-b48d628a
[    6.482173] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    6.486512] input: gpio-keys as /devices/platform/gpio-keys.1.auto/input/input4
[    6.489042] input: gpio-keys as /devices/platform/gpio-keys.2.auto/input/input5
[    6.489554] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.489639] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.490201] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.490282] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.520761] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.520854] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.551621] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:070A:0025.0003/input/input6
[    6.553991] hid-generic 0003:070A:0025.0003: input,hidraw0: USB HID v1.00 Mouse [HID 070a:0025] on usb-0000:00:14.0-1.2/input0
[    6.554293] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:070A:0025.0004/input/input7
[    6.554570] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.554665] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.608935] hid-generic 0003:070A:0025.0004: input,hidraw1: USB HID v1.10 Keyboard [HID 070a:0025] on usb-0000:00:14.0-1.4/input0
[    6.609509] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.609603] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.612739] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:070A:0025.0005/input/input8
[    6.619908] usb 1-3: USB disconnect, device number 3
[    6.620164] flashloader ttyUSB0: flashloader converter now disconnected from ttyUSB0
[    6.620188] usb_serial_simple 1-3:1.0: device disconnected
[    6.627521] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    6.666249] input: ATML1000:00 03EB:844B as /devices/platform/80860F41:05/i2c-13/i2c-ATML1000:00/0018:03EB:844B.0002/input/input9
[    6.672305] hid-generic 0003:070A:0025.0005: input,hiddev0,hidraw2: USB HID v1.10 Device [HID 070a:0025] on usb-0000:00:14.0-1.4/input1
[    6.673373] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.673463] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.675693] hid-multitouch 0018:03EB:844B.0002: input,hidraw3: I2C HID v1.00 Device [ATML1000:00 03EB:844B] on i2c-ATML1000:00
[    6.676574] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.676671] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.681336] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.681430] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.685231] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.685323] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.687559] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.687672] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.690776] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.690870] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.692701] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.692786] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    7.082983] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    7.082990] Bluetooth: BNEP filters: protocol multicast
[    7.082998] Bluetooth: BNEP socket layer initialized
[    7.700862] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    7.732914] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    7.978150] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   11.316337] usb 1-3: new high-speed USB device number 6 using xhci_hcd
[   11.511958] usb 1-3: New USB device found, idVendor=1199, idProduct=a001
[   11.511965] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   11.511969] usb 1-3: Product: Sierra Wireless EM7345 4G LTE
[   11.511972] usb 1-3: Manufacturer: Sierra Wireless Inc.
[   11.511975] usb 1-3: SerialNumber: 013937001951332
[   11.530657] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.530669] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.551370] cdc_acm 1-3:1.2: ttyACM0: USB ACM device
[   11.552862] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.552873] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.553366] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.553373] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.553971] usbcore: registered new interface driver cdc_acm
[   11.553980] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[   11.559023] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.559034] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.597509] cdc_ncm 1-3:1.0: MAC-Address: 00:00:11:12:13:14
[   11.597516] cdc_ncm 1-3:1.0: setting rx_max = 16384
[   11.598484] cdc_ncm 1-3:1.0 usb0: register 'cdc_ncm' at usb-0000:00:14.0-3, CDC NCM, 00:00:11:12:13:14
[   11.598553] usbcore: registered new interface driver cdc_ncm
[   11.599131] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.599141] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.602333] usbcore: registered new interface driver cdc_wdm
[   11.606645] usbcore: registered new interface driver cdc_mbim
[   11.615950] cdc_ncm 1-3:1.0 enx000011121314: renamed from usb0
[   11.641291] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   11.641494] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   18.592251] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   35.538423] fuse init (API version 7.25)
[   42.311363] Bluetooth: RFCOMM TTY layer initialized
[   42.311386] Bluetooth: RFCOMM socket layer initialized
[   42.311398] Bluetooth: RFCOMM ver 1.11
[   44.415027] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[   44.415042] Bluetooth: HIDP socket layer initialized
[   44.416501] hid-generic 0005:046D:B00D.0006: unknown main item tag 0x0
[   44.416784] input: Ultrathin Touch Mouse as /devices/platform/80860F0A:00/tty/ttyS1/hci0/hci0:12/0005:046D:B00D.0006/input/input11
[   44.418239] hid-generic 0005:046D:B00D.0006: input,hidraw4: BLUETOOTH HID v7.00 Keyboard [Ultrathin Touch Mouse] on b0:10:41:b8:16:6c
[   44.418879] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   44.418891] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   46.413487] hid-generic 0005:046D:B319.0007: unknown main item tag 0x0
[   46.413749] input: Logitech K810 as /devices/platform/80860F0A:00/tty/ttyS1/hci0/hci0:13/0005:046D:B319.0007/input/input12
[   46.416994] hid-generic 0005:046D:B319.0007: input,hidraw5: BLUETOOTH HID v12.01 Keyboard [Logitech K810] on b0:10:41:b8:16:6c
[   46.417580] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   46.417591] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517

[-- Attachment #6: dmesg.systemd-triggered-by-udev-rule-with-1s-delay --]
[-- Type: text/plain, Size: 50159 bytes --]

[    0.000000] Linux version 4.7.0-1-amd64 (debian-kernel@lists.debian.org) (gcc version 5.4.1 20160803 (Debian 5.4.1-1) ) #1 SMP Debian 4.7.2-1 (2016-08-28)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] x86/fpu: Legacy x87 FPU detected.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000200fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020100000-0x00000000b81c2fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b81c3000-0x00000000b91c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b91c3000-0x00000000b92c2fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000b92c3000-0x00000000b98c2fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b98c3000-0x00000000b99c2fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000b99c3000-0x00000000b9a02fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000b9a03000-0x00000000ba7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by Phoenix Technologies Ltd.
[    0.000000] efi:  ACPI=0xb9a02000  ACPI 2.0=0xb9a02014  SMBIOS=0xb98a5000  ESRT=0xb8af8000 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 20BN0036UK/20BN0036UK, BIOS GYET26WW (1.26) 01/12/2015
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   1 base 000000000 mask F80000000 write-back
[    0.000000]   2 base 080000000 mask FC0000000 write-back
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   5 base 0BA800000 mask FFF800000 uncachable
[    0.000000]   6 base 100000000 mask FC0000000 write-back
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0xba800 max_arch_pfn = 0x400000000
[    0.000000] Base memory trampoline at [ffff880000029000] 29000 size 24576
[    0.000000] BRK [0x0a556000, 0x0a556fff] PGTABLE
[    0.000000] BRK [0x0a557000, 0x0a557fff] PGTABLE
[    0.000000] BRK [0x0a558000, 0x0a558fff] PGTABLE
[    0.000000] BRK [0x0a559000, 0x0a559fff] PGTABLE
[    0.000000] BRK [0x0a55a000, 0x0a55afff] PGTABLE
[    0.000000] BRK [0x0a55b000, 0x0a55bfff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35d52000-0x36ea0fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000B9A02014 000024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 0x00000000B9A02170 0000E4 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FACP 0x00000000B99FE000 00010C (v05 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: DSDT 0x00000000B99EA000 00F9BF (v02 LENOVO TP-GY    00001260 INTL 20120711)
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: FACS 0x00000000B9959000 000040
[    0.000000] ACPI: TCPA 0x00000000B9A01000 000032 (v02 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B9A00000 0000B1 (v01 LENOVO ADebTabl 00001000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99FF000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: HPET 0x00000000B99FD000 000038 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: LPIT 0x00000000B99FC000 000104 (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: APIC 0x00000000B99FB000 00006C (v03 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: MCFG 0x00000000B99FA000 00003C (v01 LENOVO TP-GY    00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E9000 0005FC (v01 LENOVO CpuDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E7000 0018E6 (v01 LENOVO DptfTab  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E6000 000058 (v01 LENOVO LowPwrM  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E5000 0000FF (v01 LENOVO SoCDptf  00001260 VLV2 0100000D)
[    0.000000] ACPI: SSDT 0x00000000B99E4000 000763 (v01 PmRef  CpuPm    00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E3000 000290 (v01 PmRef  Cpu0Tst  00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000B99E2000 00017A (v01 PmRef  ApTst    00003000 INTL 20120711)
[    0.000000] ACPI: UEFI 0x00000000B99E1000 000042 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: MSDM 0x00000000B9955000 000055 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BATB 0x00000000B99E0000 000046 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: FPDT 0x00000000B99DF000 000054 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: SSDT 0x00000000B99DE000 00043A (v01 LENOVO Tpm2Tabl 00001000 INTL 20120711)
[    0.000000] ACPI: TPM2 0x00000000B99DD000 000034 (v03 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: UEFI 0x00000000B99DC000 00008A (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: BGRT 0x00000000B99DB000 000038 (v01 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: CSRT 0x00000000B99DA000 00014C (v00 LENOVO TP-GY    00001260 PTEC 00000002)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x13fff8000-0x13fffcfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.000000]   node   0: [mem 0x0000000000090000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020100000-0x00000000b81c2fff]
[    0.000000]   node   0: [mem 0x00000000b9a03000-0x00000000ba7fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
[    0.000000] On node 0 totalpages: 1019486
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 133 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 11771 pages used for memmap
[    0.000000]   DMA32 zone: 753344 pages, LIFO batch:31
[    0.000000]   Normal zone: 4096 pages used for memmap
[    0.000000]   Normal zone: 262144 pages, LIFO batch:31
[    0.000000] x86/hpet: Will disable the HPET for this platform because it's not reliable
[    0.000000] Reserving Intel graphics stolen memory at 0xbaf00000-0xbeefffff
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-86
[    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: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x200fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xb81c3000-0xb91c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb91c3000-0xb92c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb92c3000-0xb98c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb98c3000-0xb99c2fff]
[    0.000000] PM: Registered nosave memory: [mem 0xb99c3000-0xb9a02fff]
[    0.000000] PM: Registered nosave memory: [mem 0xba800000-0xbaefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbaf00000-0xbeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbef00000-0xe00f7fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
[    0.000000] PM: Registered nosave memory: [mem 0xe00f9000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed02000-0xffffffff]
[    0.000000] e820: [mem 0xbef00000-0xe00f7fff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 33 pages/cpu @ffff88013fc00000 s98264 r8192 d28712 u524288
[    0.000000] pcpu-alloc: s98264 r8192 d28712 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1003422
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-1-amd64 root=UUID=9874b49c-74c6-44ad-a316-13c493249b28 ro intel_idle.max_cstate=1 efi=noruntime quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3913608K/4077944K available (6004K kernel code, 1096K rwdata, 2752K rodata, 1352K init, 928K bss, 164336K reserved, 0K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:33024 nr_irqs:1024 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Maximum core-clock to bus-clock ratio: 0xc
[    0.000000] Resolved frequency ID: 2, frequency: 133200 KHz
[    0.000000] TSC runs at 1598400 KHz
[    0.000000] lapic_timer_frequency = 532800
[    0.000000] tsc: Detected 1598.400 MHz processor
[    0.000038] Calibrating delay loop (skipped), value calculated using timer frequency.. 3196.80 BogoMIPS (lpj=6393600)
[    0.000045] pid_max: default: 32768 minimum: 301
[    0.000078] ACPI: Core revision 20160422
[    0.046001] ACPI: 10 ACPI AML tables successfully acquired and loaded

[    0.046116] Security Framework initialized
[    0.046122] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.046139] AppArmor: AppArmor disabled by boot time parameter
[    0.046697] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.049020] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.050073] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050089] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.050655] CPU: Physical Processor ID: 0
[    0.050661] CPU: Processor Core ID: 0
[    0.050668] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.050672] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.050684] mce: CPU supports 6 MCE banks
[    0.050697] CPU0: Thermal monitoring enabled (TM1)
[    0.050706] process: using mwait in idle threads
[    0.050713] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[    0.050717] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[    0.051157] Freeing SMP alternatives memory: 24K (ffffffff8a466000 - ffffffff8a46c000)
[    0.053357] ftrace: allocating 24665 entries in 97 pages
[    0.068451] smpboot: Max logical packages: 1
[    0.068458] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.069535] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.109245] TSC deadline timer enabled
[    0.109252] smpboot: CPU0: Intel(R) Atom(TM) CPU  Z3795  @ 1.60GHz (family: 0x6, model: 0x37, stepping: 0x8)
[    0.109262] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, full-width counters, Intel PMU driver.
[    0.109281] ... version:                3
[    0.109283] ... bit width:              40
[    0.109286] ... generic registers:      2
[    0.109289] ... value mask:             000000ffffffffff
[    0.109291] ... max period:             000000ffffffffff
[    0.109294] ... fixed-purpose events:   3
[    0.109296] ... event mask:             0000000700000003
[    0.110659] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.111022] x86: Booting SMP configuration:
[    0.111027] .... node  #0, CPUs:      #1 #2 #3
[    0.351653] x86: Booted up 1 node, 4 CPUs
[    0.351661] smpboot: Total of 4 processors activated (12793.87 BogoMIPS)
[    0.361734] devtmpfs: initialized
[    0.361920] x86/mm: Memory block size: 128MB
[    0.379623] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
[    0.379630] PM: Registering ACPI NVS region [mem 0xb98c3000-0xb99c2fff] (1048576 bytes)
[    0.379837] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.389533] pinctrl core: initialized pinctrl subsystem
[    0.399843] NET: Registered protocol family 16
[    0.409527] cpuidle: using governor ladder
[    0.419555] cpuidle: using governor menu
[    0.419666] ACPI: bus type PCI registered
[    0.419671] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.439721] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.439728] PCI: not using MMCONFIG
[    0.439731] PCI: Using configuration type 1 for base access
[    0.453924] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.493757] ACPI: Added _OSI(Module Device)
[    0.493762] ACPI: Added _OSI(Processor Device)
[    0.493765] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.493768] ACPI: Added _OSI(Processor Aggregator Device)
[    0.515054] ACPI: Dynamic OEM Table Load:
[    0.515075] ACPI: SSDT 0xFFFF88013A652000 0003D7 (v01 PmRef  Cpu0Ist  00003000 INTL 20120711)
[    0.516720] ACPI: Dynamic OEM Table Load:
[    0.516737] ACPI: SSDT 0xFFFF88013A6D8000 000433 (v01 PmRef  Cpu0Cst  00003001 INTL 20120711)
[    0.519064] ACPI: Dynamic OEM Table Load:
[    0.519079] ACPI: SSDT 0xFFFF88013A6C6A00 00015F (v01 PmRef  ApIst    00003000 INTL 20120711)
[    0.520643] ACPI: Dynamic OEM Table Load:
[    0.520658] ACPI: SSDT 0xFFFF88013A6BD840 00008D (v01 PmRef  ApCst    00003000 INTL 20120711)
[    0.525171] ACPI: Interpreter enabled
[    0.525230] ACPI: (supports S0 S4 S5)
[    0.525235] ACPI: Using IOAPIC for interrupt routing
[    0.525321] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.530925] [Firmware Info]: PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] not reserved in ACPI motherboard resources
[    0.530931] PCI: not using MMCONFIG
[    0.530939] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.533960] ACPI: Power Resource [USBC] (on)
[    0.534812] ACPI: Power Resource [WWPR] (off)
[    0.542069] ACPI: Power Resource [PLPE] (on)
[    0.551194] ACPI: Power Resource [CLK0] (on)
[    0.551321] ACPI: Power Resource [CLK1] (on)
[    0.551691] ACPI: Power Resource [P28X] (off)
[    0.551811] ACPI: Power Resource [P18X] (off)
[    0.554869] ACPI: Power Resource [TCPR] (off)
[    0.563897] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.563912] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.564036] \_SB_.PCI0 (33DB4D5B-1FF7-401C-9657-7441C03DD766): _OSC invalid UUID
[    0.564041] _OSC request data: 1 1e 0
[    0.564050] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.564084] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.564780] PCI host bridge to bus 0000:00
[    0.564788] pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
[    0.564793] pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
[    0.564798] pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
[    0.564803] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.564808] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.564813] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.564818] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.564823] pci_bus 0000:00: root bus resource [mem 0xd0c00000-0xd0ffffff window]
[    0.564828] pci_bus 0000:00: root bus resource [mem 0xbaf00001-0xbef00000 window]
[    0.564833] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xd08ffffe window]
[    0.564837] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed40fff window]
[    0.564843] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.564860] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
[    0.565065] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
[    0.565084] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff]
[    0.565099] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff pref]
[    0.565114] pci 0000:00:02.0: reg 0x20: [io  0x1000-0x1007]
[    0.565327] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
[    0.565351] pci 0000:00:14.0: reg 0x10: [mem 0xd0800000-0xd080ffff 64bit]
[    0.565428] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.565606] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
[    0.565631] pci 0000:00:1a.0: reg 0x10: [mem 0xd0700000-0xd07fffff]
[    0.565645] pci 0000:00:1a.0: reg 0x14: [mem 0xd0600000-0xd06fffff]
[    0.565755] pci 0000:00:1a.0: PME# supported from D0 D3hot
[    0.565929] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
[    0.567031] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.567224] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.567414] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.567604] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.567794] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.567985] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.568180] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.568371] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.581993] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.582001] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.582006] vgaarb: loaded
[    0.582009] vgaarb: bridge control possible 0000:00:02.0
[    0.582251] PCI: Using ACPI for IRQ routing
[    0.582257] PCI: pci_cache_line_size set to 64 bytes
[    0.582281] Expanded resource reserved due to conflict with PCI Bus 0000:00
[    0.582286] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.582290] e820: reserve RAM buffer [mem 0xb81c3000-0xbbffffff]
[    0.582295] e820: reserve RAM buffer [mem 0xba800000-0xbbffffff]
[    0.582693] amd_nb: Cannot enumerate AMD northbridges
[    0.582724] clocksource: Switched to clocksource refined-jiffies
[    0.598312] VFS: Disk quotas dquot_6.6.0
[    0.609902] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.615914] pnp: PnP ACPI init
[    0.616067] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.616238] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.616245] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.616251] system 00:01: [io  0x0500-0x05fe] has been reserved
[    0.616256] system 00:01: [io  0x0600-0x061f] has been reserved
[    0.616262] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.616271] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.616528] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.619582] pnp: PnP ACPI: found 3 devices
[    0.629467] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.629502] clocksource: Switched to clocksource acpi_pm
[    0.629525] pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
[    0.629530] pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
[    0.629534] pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
[    0.629539] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.629543] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.629548] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.629553] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[    0.629557] pci_bus 0000:00: resource 11 [mem 0xd0c00000-0xd0ffffff window]
[    0.629562] pci_bus 0000:00: resource 12 [mem 0xbaf00001-0xbef00000 window]
[    0.629566] pci_bus 0000:00: resource 13 [mem 0xc0000000-0xd08ffffe window]
[    0.629571] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed40fff window]
[    0.697603] NET: Registered protocol family 2
[    0.709728] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.709900] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.710094] TCP: Hash tables configured (established 32768 bind 32768)
[    0.710174] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.710222] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.737648] NET: Registered protocol family 1
[    0.737689] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.738055] PCI: CLS 0 bytes, default 64
[    0.738187] Unpacking initramfs...
[    1.374888] Freeing initrd memory: 17724K (ffff880035d52000 - ffff880036ea1000)
[    1.374900] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.374905] software IO TLB [mem 0xb41c3000-0xb81c3000] (64MB) mapped at [ffff8800b41c3000-ffff8800b81c2fff]
[    1.375283] simple-framebuffer simple-framebuffer.0: framebuffer at 0xc0000000, 0x500000 bytes, mapped to 0xffffc90000800000
[    1.375291] simple-framebuffer simple-framebuffer.0: format=a8r8g8b8, mode=1280x1024x32, linelength=5120
[    1.385627] Console: switching to colour frame buffer device 160x64
[    1.395639] simple-framebuffer simple-framebuffer.0: fb0: simplefb registered!
[    1.406776] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    1.418332] audit: initializing netlink subsys (disabled)
[    1.418376] audit: type=2000 audit(1473723828.407:1): initialized
[    1.419209] Initialise system trusted keyrings
[    1.419500] workingset: timestamp_bits=37 max_order=20 bucket_order=0
[    1.419530] zbud: loaded
[    1.550829] Key type asymmetric registered
[    1.550835] Asymmetric key parser 'x509' registered
[    1.566520] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    1.566611] io scheduler noop registered
[    1.566616] io scheduler deadline registered
[    1.582507] io scheduler cfq registered (default)
[    1.582636] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.582653] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.582725] intel_idle: MWAIT substates: 0x33000020
[    1.582729] intel_idle: v0.4.1 model 0x37
[    1.582735] intel_idle: max_cstate 1 reached
[    1.582915] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.587238] GHES: HEST is not enabled!
[    1.587404] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.607668] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.622701] 80860F0A:00: ttyS1 at MMIO 0xd094d000 (irq = 39, base_baud = 2764800) is a 16550A
[    1.623199] hpet: number irqs doesn't agree with number of timers
[    1.623261] Linux agpgart interface v0.103
[    1.623361] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    1.623365] AMD IOMMUv2 functionality not available on this system
[    1.624164] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    2.375308] tsc: Refined TSC clocksource calibration: 1599.999 MHz
[    2.375316] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x171023f09ff, max_idle_ns: 440795233615 ns
[    2.659875] i8042: No controller found
[    2.660108] mousedev: PS/2 mouse device common for all mice
[    2.660417] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    2.660456] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram
[    2.660478] intel_pstate: Intel P-state driver initializing
[    2.660739] ledtrig-cpu: registered to indicate activity on CPUs
[    2.731666] NET: Registered protocol family 10
[    2.732821] mip6: Mobile IPv6
[    2.732838] NET: Registered protocol family 17
[    2.732860] mpls_gso: MPLS GSO support
[    2.734327] microcode: CPU0 sig=0x30678, pf=0x2, revision=0x80a
[    2.734376] microcode: CPU1 sig=0x30678, pf=0x2, revision=0x80a
[    2.734425] microcode: CPU2 sig=0x30678, pf=0x2, revision=0x80a
[    2.734462] microcode: CPU3 sig=0x30678, pf=0x2, revision=0x80a
[    2.734733] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    2.735788] registered taskstats version 1
[    2.735804] Loading compiled-in X.509 certificates
[    2.745059] alg: No test for pkcs1pad(rsa,sha256) (pkcs1pad(rsa-generic,sha256))
[    2.747202] Loaded X.509 cert 'Debian Project: Ben Hutchings: 008a018dca80932630'
[    2.747323] zswap: loaded using pool lzo/zbud
[    2.748326] rtc_cmos 00:00: setting system clock to 2016-09-12 23:43:50 UTC (1473723830)
[    2.749056] PM: Hibernation image not present or could not be loaded.
[    2.756691] Freeing unused kernel memory: 1352K (ffffffff8a314000 - ffffffff8a466000)
[    2.756699] Write protecting the kernel read-only data: 10240k
[    2.757232] Freeing unused kernel memory: 124K (ffff880009de1000 - ffff880009e00000)
[    2.767972] Freeing unused kernel memory: 1344K (ffff88000a0b0000 - ffff88000a200000)
[    2.785328] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.854518] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.855162] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.855283] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.855422] random: systemd-udevd: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.860667] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.861030] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.863433] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.864077] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.864618] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.865142] random: udevadm: uninitialized urandom read (16 bytes read, 1 bits of entropy available)
[    2.959220] sdhci: Secure Digital Host Controller Interface driver
[    2.959226] sdhci: Copyright(c) Pierre Ossman
[    2.977574] hidraw: raw HID events driver (C) Jiri Kosina
[    2.982033] mmc0: SDHCI controller on ACPI [80860F14:00] using ADMA
[    2.990968] mmc1: SDHCI controller on ACPI [INT33BB:00] using ADMA
[    3.009148] FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
[    3.022646] mmc2: SDHCI controller on ACPI [80860F14:01] using ADMA
[    3.037057] [Firmware Bug]: No valid trip found
[    3.052875] ACPI: bus type USB registered
[    3.052930] usbcore: registered new interface driver usbfs
[    3.052954] usbcore: registered new interface driver hub
[    3.054130] usbcore: registered new device driver usb
[    3.070382] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.070400] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    3.071524] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[    3.071533] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.075459] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.075466] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.075470] usb usb1: Product: xHCI Host Controller
[    3.075473] usb usb1: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.075475] usb usb1: SerialNumber: 0000:00:14.0
[    3.075771] hub 1-0:1.0: USB hub found
[    3.075792] hub 1-0:1.0: 6 ports detected
[    3.084693] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    3.086266] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.087867] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    3.092380] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    3.130834] mmc0: new HS200 MMC card at address 0001
[    3.136654] SSE version of gcm_enc/dec engaged.
[    3.207159] mmc1: new ultra high speed DDR50 SDIO card at address 0001
[    3.248828] mmcblk0: mmc0:0001 SEM128 116 GiB 
[    3.249027] mmcblk0boot0: mmc0:0001 SEM128 partition 1 4.00 MiB
[    3.249193] mmcblk0boot1: mmc0:0001 SEM128 partition 2 4.00 MiB
[    3.249380] mmcblk0rpmb: mmc0:0001 SEM128 partition 3 4.00 MiB
[    3.271719]  mmcblk0: p1 p2 p3 p4 p5
[    3.376435] clocksource: Switched to clocksource tsc
[    3.677455] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.677492] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    3.678009] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    3.678029] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.678043] usb usb2: Product: xHCI Host Controller
[    3.678055] usb usb2: Manufacturer: Linux 4.7.0-1-amd64 xhci-hcd
[    3.678067] usb usb2: SerialNumber: 0000:00:14.0
[    3.679079] hub 2-0:1.0: USB hub found
[    3.679150] hub 2-0:1.0: 1 port detected
[    3.989158] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[    4.117816] usb 1-1: New USB device found, idVendor=058f, idProduct=9254
[    4.117838] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.117851] usb 1-1: Product: Generic USB Hub
[    4.117863] usb 1-1: Manufacturer: ALCOR
[    4.118953] hub 1-1:1.0: USB hub found
[    4.119098] hub 1-1:1.0: 4 ports detected
[    4.357304] usb 1-3: new high-speed USB device number 3 using xhci_hcd
[    4.378294] EXT4-fs (mmcblk0p5): mounted filesystem with ordered data mode. Opts: (null)
[    4.486600] usb 1-3: New USB device found, idVendor=8087, idProduct=0716
[    4.486607] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.557437] usb 1-1.2: new low-speed USB device number 4 using xhci_hcd
[    4.632510] systemd[1]: RTC configured in localtime, applying delta of 120 minutes to system time.
[    4.648715] usb 1-1.2: New USB device found, idVendor=070a, idProduct=0025
[    4.648720] usb 1-1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.721649] usb 1-1.4: new low-speed USB device number 5 using xhci_hcd
[    4.722704] systemd[1]: systemd 231 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[    4.723581] systemd[1]: Detected architecture x86-64.
[    4.728133] systemd[1]: Set hostname to <thinkpad8>.
[    4.821017] usb 1-1.4: New USB device found, idVendor=070a, idProduct=0025
[    4.821029] usb 1-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.969491] systemd[1]: Reached target Swap.
[    4.969684] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    4.970015] systemd[1]: Created slice System Slice.
[    4.970252] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    4.970442] systemd[1]: Created slice User and Session Slice.
[    4.970467] systemd[1]: Reached target Slices.
[    4.970492] systemd[1]: Reached target Encrypted Volumes.
[    4.970573] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    4.970679] systemd[1]: Listening on Journal Socket.
[    4.986043] systemd[1]: Mounting POSIX Message Queue File System...
[    4.989896] systemd[1]: Starting Load Kernel Modules...
[    4.991938] systemd[1]: Mounting RPC Pipe File System...
[    4.992658] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    4.994665] systemd[1]: Mounting Huge Pages File System...
[    4.994878] systemd[1]: Listening on fsck to fsckd communication Socket.
[    4.995197] systemd[1]: Listening on Journal Audit Socket.
[    4.995360] systemd[1]: Listening on Syslog Socket.
[    4.997257] systemd[1]: Starting Set the console keyboard layout...
[    4.997514] systemd[1]: Listening on Journal Socket (/dev/log).
[    5.001400] systemd[1]: Starting Journal Service...
[    5.001605] systemd[1]: Listening on udev Control Socket.
[    5.002143] systemd[1]: Created slice system-getty.slice.
[    5.003891] systemd[1]: Mounting Debug File System...
[    5.004052] systemd[1]: Listening on udev Kernel Socket.
[    5.005535] systemd[1]: Starting Remount Root and Kernel File Systems...
[    5.005604] systemd[1]: Reached target User and Group Name Lookups.
[    5.005789] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    5.005930] systemd[1]: Listening on RPCbind Server Activation Socket.
[    5.007418] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    5.024935] systemd[1]: Started Load Kernel Modules.
[    5.026388] systemd[1]: Started Create list of required static device nodes for the current kernel.
[    5.028324] systemd[1]: Starting Create Static Device Nodes in /dev...
[    5.029804] systemd[1]: Starting Apply Kernel Variables...
[    5.034101] systemd[1]: Mounted Debug File System.
[    5.034192] systemd[1]: Mounted Huge Pages File System.
[    5.034233] systemd[1]: Mounted POSIX Message Queue File System.
[    5.042023] EXT4-fs (mmcblk0p5): re-mounted. Opts: errors=remount-ro
[    5.043440] systemd[1]: Started Remount Root and Kernel File Systems.
[    5.082019] RPC: Registered named UNIX socket transport module.
[    5.082026] RPC: Registered udp transport module.
[    5.082028] RPC: Registered tcp transport module.
[    5.082030] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    5.086275] systemd[1]: Starting udev Coldplug all Devices...
[    5.087554] systemd[1]: Starting Load/Save Random Seed...
[    5.089349] systemd[1]: Mounted RPC Pipe File System.
[    5.089598] systemd[1]: Started Journal Service.
[    5.111008] systemd-journald[938]: Received request to flush runtime journal from PID 1
[    5.379801] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    5.379921] ACPI: Lid Switch [LID0]
[    5.380027] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    5.380033] ACPI: Power Button [PWRF]
[    5.413124] i2c i2c-0: i2c read failed
[    5.467085] [drm] Initialized drm 1.1.0 20060810
[    5.469551] i2c i2c-0: i2c read failed
[    5.469729] Bluetooth: Core ver 2.21
[    5.469763] NET: Registered protocol family 31
[    5.469766] Bluetooth: HCI device and connection manager initialized
[    5.469774] Bluetooth: HCI socket layer initialized
[    5.469779] Bluetooth: L2CAP socket layer initialized
[    5.469790] Bluetooth: SCO socket layer initialized
[    5.483185] Bluetooth: HCI UART driver ver 2.3
[    5.483192] Bluetooth: HCI UART protocol H4 registered
[    5.483194] Bluetooth: HCI UART protocol BCSP registered
[    5.483197] Bluetooth: HCI UART protocol LL registered
[    5.483199] Bluetooth: HCI UART protocol ATH3K registered
[    5.483201] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    5.483281] Bluetooth: HCI UART protocol Intel registered
[    5.498765] hci_bcm BCM2E55:00: BCM irq: 70
[    5.498834] hci_bcm BCM2E55:00: BCM2E55:00 device registered.
[    5.499013] Bluetooth: HCI UART protocol BCM registered
[    5.499016] Bluetooth: HCI UART protocol QCA registered
[    5.526190] i2c i2c-0: i2c read failed
[    5.562711] [drm] Memory usable by graphics device = 2048M
[    5.562720] checking generic (c0000000 500000) vs hw (c0000000 10000000)
[    5.562723] fb: switching to inteldrmfb from simple
[    5.562785] Console: switching to colour dummy device 80x25
[    5.562929] [drm] Replacing VGA console driver
[    5.563042] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    5.563045] [drm] Driver supports precise vblank timestamp query.
[    5.579329] i2c i2c-0: i2c read failed
[    5.618561] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    5.642209] i2c i2c-0: i2c read failed
[    5.673289] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.673873] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input2
[    5.673957] [drm] Initialized i915 1.6.0 20160425 for 0000:00:02.0 on minor 0
[    5.763080] fbcon: inteldrmfb (fb0) is primary device
[    5.798827] intel_sst_acpi 80860F28:00: LPE base: 0xd0a00000 size:0x200000
[    5.798829] intel_sst_acpi 80860F28:00: IRAM base: 0xd0ac0000
[    5.798848] intel_sst_acpi 80860F28:00: DRAM base: 0xd0b00000
[    5.798856] intel_sst_acpi 80860F28:00: SHIM base: 0xd0b40000
[    5.798868] intel_sst_acpi 80860F28:00: Mailbox base: 0xd0b44000
[    5.798875] intel_sst_acpi 80860F28:00: DDR base: 0x20000000
[    5.798959] intel_sst_acpi 80860F28:00: Got drv data max stream 25
[    5.818425] i2c i2c-0: i2c read failed
[    5.828269] intel_sst_acpi 80860F28:00: firmware: direct-loading firmware intel/fw_sst_0f28.bin
[    5.858869] ACPI: AC Adapter [ADP1] (off-line)
[    5.884966] i2c i2c-0: i2c read failed
[    5.964819] rt5640 i2c-10EC5640:01: Device with ID register 0x6271 is not rt5640/39
[    5.974947] ACPI: Battery Slot [BAT0] (battery absent)
[    6.003588] dw_dmac INTL9C60:00: DesignWare DMA Controller, 8 channels
[    6.035319] dw_dmac INTL9C60:01: DesignWare DMA Controller, 8 channels
[    6.083654] wmi: Mapper loaded
[    6.117859] Console: switching to colour frame buffer device 160x64
[    6.125351] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    6.128294] input: PC Speaker as /devices/platform/pcspkr/input/input3
[    6.189567] usbcore: registered new interface driver usbserial
[    6.189593] usbcore: registered new interface driver usbserial_generic
[    6.189615] usbserial: USB Serial support registered for generic
[    6.194219] usbcore: registered new interface driver usb_serial_simple
[    6.194248] usbserial: USB Serial support registered for carelink
[    6.194268] usbserial: USB Serial support registered for zio
[    6.194289] usbserial: USB Serial support registered for funsoft
[    6.194311] usbserial: USB Serial support registered for flashloader
[    6.194330] usbserial: USB Serial support registered for google
[    6.194350] usbserial: USB Serial support registered for vivopay
[    6.194373] usbserial: USB Serial support registered for moto_modem
[    6.194404] usbserial: USB Serial support registered for novatel_gps
[    6.194426] usbserial: USB Serial support registered for hp4x
[    6.194445] usbserial: USB Serial support registered for suunto
[    6.194465] usbserial: USB Serial support registered for siemens_mpi
[    6.194496] usb_serial_simple 1-3:1.0: flashloader converter detected
[    6.194652] usb 1-3: flashloader converter now attached to ttyUSB0
[    6.322543] random: nonblocking pool is initialized
[    6.341332] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
[    6.343060] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.347098] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
[    6.351571] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
[    6.361305] usbcore: registered new interface driver usbhid
[    6.361312] usbhid: USB HID core driver
[    6.436545] intel_rapl: Found RAPL domain package
[    6.436553] intel_rapl: Found RAPL domain core
[    6.453547] iTCO_vendor_support: vendor-support=0
[    6.456238] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    6.456357] iTCO_wdt: Found a Bay Trail SoC TCO device (Version=3, TCOBASE=0x0460)
[    6.457558] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    6.483773] brcmfmac: brcmf_sdio_drivestrengthinit: No SDIO Drive strength init done for chip 4324 rev 6 pmurev 17
[    6.493064] usbcore: registered new interface driver brcmfmac
[    6.506399] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.bin
[    6.507869] brcmfmac mmc1:0001:1: firmware: direct-loading firmware brcm/brcmfmac43241b5-sdio.txt
[    6.524463] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.524561] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.606087] brcmfmac: brcmf_c_preinit_dcmds: Firmware version = wl0: Feb 24 2015 06:43:35 version 6.25.91.13 (r536868) FWID 01-b48d628a
[    6.617573] input: gpio-keys as /devices/platform/gpio-keys.1.auto/input/input4
[    6.619320] input: gpio-keys as /devices/platform/gpio-keys.2.auto/input/input5
[    6.619760] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.619849] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.620691] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.620781] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.629703] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.629803] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.640541] usb 1-3: USB disconnect, device number 3
[    6.640986] flashloader ttyUSB0: flashloader converter now disconnected from ttyUSB0
[    6.641012] usb_serial_simple 1-3:1.0: device disconnected
[    6.659153] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    6.674303] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:070A:0025.0003/input/input6
[    6.677956] hid-generic 0003:070A:0025.0003: input,hidraw0: USB HID v1.00 Mouse [HID 070a:0025] on usb-0000:00:14.0-1.2/input0
[    6.678297] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:070A:0025.0004/input/input7
[    6.678865] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.678954] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.732071] hid-generic 0003:070A:0025.0004: input,hidraw1: USB HID v1.10 Keyboard [HID 070a:0025] on usb-0000:00:14.0-1.4/input0
[    6.733899] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.733905] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.735576] input: HID 070a:0025 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:070A:0025.0005/input/input8
[    6.765038] input: ATML1000:00 03EB:844B as /devices/platform/80860F41:05/i2c-13/i2c-ATML1000:00/0018:03EB:844B.0002/input/input9
[    6.788037] hid-generic 0003:070A:0025.0005: input,hiddev0,hidraw2: USB HID v1.10 Device [HID 070a:0025] on usb-0000:00:14.0-1.4/input1
[    6.788528] hid-multitouch 0018:03EB:844B.0002: input,hidraw3: I2C HID v1.00 Device [ATML1000:00 03EB:844B] on i2c-ATML1000:00
[    6.788809] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.788900] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.789438] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.789512] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.796857] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.796945] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.798003] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.798094] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.802643] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
[    6.803294] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.803386] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.803969] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.804048] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.807013] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.807106] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    6.809984] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[    6.810081] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[    7.870155] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    7.904150] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    8.137328] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    8.181883] Bluetooth: hci0: BCM: chip id 90
[    8.181895] Bluetooth: hci0: BCM (002.006.006) build 0000
[    8.182634] bluetooth hci0: firmware: direct-loading firmware brcm/BCM.hcd
[    8.656696] Bluetooth: hci0: BCM (002.006.006) build 1170
[    8.828565] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    8.828572] Bluetooth: BNEP filters: protocol multicast
[    8.828581] Bluetooth: BNEP socket layer initialized
[   11.352236] usb 1-3: new high-speed USB device number 6 using xhci_hcd
[   11.499831] usb 1-3: New USB device found, idVendor=1199, idProduct=a001
[   11.499838] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   11.499842] usb 1-3: Product: Sierra Wireless EM7345 4G LTE
[   11.499845] usb 1-3: Manufacturer: Sierra Wireless Inc.
[   11.499847] usb 1-3: SerialNumber: 013937001951332
[   11.509029] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.509040] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.545737] cdc_acm 1-3:1.2: ttyACM0: USB ACM device
[   11.547216] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.547229] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.547335] usbcore: registered new interface driver cdc_acm
[   11.547343] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[   11.547767] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.547775] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.554281] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.554292] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.589393] cdc_ncm 1-3:1.0: MAC-Address: 00:00:11:12:13:14
[   11.589401] cdc_ncm 1-3:1.0: setting rx_max = 16384
[   11.590407] cdc_ncm 1-3:1.0 usb0: register 'cdc_ncm' at usb-0000:00:14.0-3, CDC NCM, 00:00:11:12:13:14
[   11.590476] usbcore: registered new interface driver cdc_ncm
[   11.591444] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   11.591455] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   11.595756] usbcore: registered new interface driver cdc_wdm
[   11.598326] usbcore: registered new interface driver cdc_mbim
[   11.607535] cdc_ncm 1-3:1.0 enx000011121314: renamed from usb0
[   11.635391] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   11.635560] IPv6: ADDRCONF(NETDEV_UP): enx000011121314: link is not ready
[   18.899836] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   29.697992] fuse init (API version 7.25)
[   36.742318] Bluetooth: RFCOMM TTY layer initialized
[   36.742343] Bluetooth: RFCOMM socket layer initialized
[   36.742361] Bluetooth: RFCOMM ver 1.11
[   37.699358] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[   37.699371] Bluetooth: HIDP socket layer initialized
[   37.700635] hid-generic 0005:046D:B319.0006: unknown main item tag 0x0
[   37.700888] input: Logitech K810 as /devices/platform/80860F0A:00/tty/ttyS1/hci0/hci0:11/0005:046D:B319.0006/input/input11
[   37.701461] hid-generic 0005:046D:B319.0006: input,hidraw4: BLUETOOTH HID v12.01 Keyboard [Logitech K810] on b0:10:41:b8:16:6c
[   37.702053] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   37.702061] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517
[   38.767915] hid-generic 0005:046D:B00D.0007: unknown main item tag 0x0
[   38.768743] input: Ultrathin Touch Mouse as /devices/platform/80860F0A:00/tty/ttyS1/hci0/hci0:12/0005:046D:B00D.0007/input/input12
[   38.774737] hid-generic 0005:046D:B00D.0007: input,hidraw5: BLUETOOTH HID v7.00 Keyboard [Ultrathin Touch Mouse] on b0:10:41:b8:16:6c
[   38.775612] bytcr_rt5640 bytcr_rt5640: ASoC: CODEC DAI rt5640-aif1 not registered
[   38.775671] bytcr_rt5640 bytcr_rt5640: devm_snd_soc_register_card failed -517

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

end of thread, other threads:[~2016-09-14 21:03 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-04 17:10 btattach: auto triggering at boot time by Linux distributions Jérôme de Bretagne
2016-09-04 19:30 ` Marcel Holtmann
2016-09-05 21:40   ` Jérôme de Bretagne
2016-09-05 22:31     ` Marcel Holtmann
2016-09-06 21:35       ` Jérôme de Bretagne
2016-09-06 21:41       ` Jérôme de Bretagne
2016-09-07 21:25   ` Jérôme de Bretagne
2016-09-07 22:59     ` Marcel Holtmann
2016-09-08 22:03       ` Jérôme de Bretagne
2016-09-12  7:29         ` Marcel Holtmann
2016-09-12 20:42           ` Jérôme de Bretagne
2016-09-12 22:12             ` Jérôme de Bretagne
2016-09-14 21:03               ` Timing-related issue when loading the BT firmware on Broadcom Wi+Fi & BT combo chips (was: btattach: auto triggering at boot time by Linux distributions) Jérôme de Bretagne

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.