Mouse "crashes" remains immovable after a short time

Questions about hardware, drivers and peripherals
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
User avatar
AZgl1800
Level 20
Level 20
Posts: 11183
Joined: Thu Dec 31, 2015 3:20 am
Location: Oklahoma where the wind comes Sweeping down the Plains
Contact:

Re: Mouse "crashes" remains immovable after a short time

Post by AZgl1800 »

gm10 wrote: Sun Sep 16, 2018 1:50 pm
AZgl1500 wrote: Sun Sep 16, 2018 1:37 pm
gm10 wrote: Sun Sep 16, 2018 12:44 pm

Just to note that the usbcore.autosuspend=-1 kernel parameter (set in /etc/default/grub, don't forget to run sudo update-grub afterwards) disables this permanently.
I just repeated this again, did a reboot, and it still goes back to 2
the setting is not staying permanent,
and a few minutes back, while typing, my mouse just suddenly "hung up again"
Oh weird, I've successfully used this in the past, somebody should tell Linus: https://github.com/torvalds/linux/blob/ ... gement.rst (maybe double check that you added it in the right place - as described in the link you can also add it as an option to /etc/modprobe.d instead)

Follow up:

either I have done this all wrong, or it is NOT working with my ASUS TP500L
just 30 seconds ago, I had just clicked 'reply' to a forum post, typed in 1 sentence and tried to mouse to the SUBMIT button, and it was frozen..... turned the LogiTech M510 mouse power off/on with no effect.

had to pull the FOB out of the usb port, wait a few seconds, and plug it back in.

it is timing out on a schedule that has nothing to do with inactivity...
this is highly irritating for me.

I just now reset the suspend back to -1 and will not power the laptop off for a couple of days to see if that keeps it from suspending.....

am reading the Linux Torvalds link now.
LM21.3 Cinnamon ASUS FX705GM | Donate to Mint https://www.patreon.com/linux_mint
Image
User avatar
AZgl1800
Level 20
Level 20
Posts: 11183
Joined: Thu Dec 31, 2015 3:20 am
Location: Oklahoma where the wind comes Sweeping down the Plains
Contact:

Re: Mouse "crashes" remains immovable after a short time

Post by AZgl1800 »

I can't force it with this method, permission denied.

Code: Select all

 $ sudo echo -1 >/sys/module/usbcore/parameters/autosuspend
bash: /sys/module/usbcore/parameters/autosuspend: Permission denied
john@john-TP500LA ~ $ 
LM21.3 Cinnamon ASUS FX705GM | Donate to Mint https://www.patreon.com/linux_mint
Image
gm10

Re: Mouse "crashes" remains immovable after a short time

Post by gm10 »

AZgl1500 wrote: Sun Sep 16, 2018 3:12 pm I can't force it with this method, permission denied.

Code: Select all

 $ sudo echo -1 >/sys/module/usbcore/parameters/autosuspend
bash: /sys/module/usbcore/parameters/autosuspend: Permission denied
john@john-TP500LA ~ $ 
Do it like this:

Code: Select all

echo -1 | sudo tee /sys/module/usbcore/parameters/autosuspend
Alternatively, to be able to copy & paste the commands from that link, you need to be at a root shell, so run:

Code: Select all

sudo -s 
and then you won't need the sudo prefix anymore (careful, you are now root - the exit command makes you leave the root shell).
User avatar
AZgl1800
Level 20
Level 20
Posts: 11183
Joined: Thu Dec 31, 2015 3:20 am
Location: Oklahoma where the wind comes Sweeping down the Plains
Contact:

Re: Mouse "crashes" remains immovable after a short time

Post by AZgl1800 »

gm10 wrote: Sun Sep 16, 2018 3:18 pm
Do it like this:

Code: Select all

echo -1 | sudo tee /sys/module/usbcore/parameters/autosuspend
Alternatively, to be able to copy & paste the commands from that link, you need to be at a root shell, so run:

Code: Select all

sudo -s 
and then you won't need the sudo prefix anymore (careful, you are now root - the exit command makes you leave the root shell).
That worked, will put that in my Notebook.
LM21.3 Cinnamon ASUS FX705GM | Donate to Mint https://www.patreon.com/linux_mint
Image
User avatar
AZgl1800
Level 20
Level 20
Posts: 11183
Joined: Thu Dec 31, 2015 3:20 am
Location: Oklahoma where the wind comes Sweeping down the Plains
Contact:

Re: Mouse "crashes" remains immovable after a short time

Post by AZgl1800 »

I try to stay away from the root shell,
just preface sudo to a command when needed.
LM21.3 Cinnamon ASUS FX705GM | Donate to Mint https://www.patreon.com/linux_mint
Image
User avatar
AZgl1800
Level 20
Level 20
Posts: 11183
Joined: Thu Dec 31, 2015 3:20 am
Location: Oklahoma where the wind comes Sweeping down the Plains
Contact:

Re: Mouse "crashes" remains immovable after a short time

Post by AZgl1800 »

I read in one thread where this would turn suspend off permanently, but for me, it did not.

Code: Select all

echo on | sudo tee /sys/bus/usb/devices/*/power/level >/dev/null
LM21.3 Cinnamon ASUS FX705GM | Donate to Mint https://www.patreon.com/linux_mint
Image
User avatar
AZgl1800
Level 20
Level 20
Posts: 11183
Joined: Thu Dec 31, 2015 3:20 am
Location: Oklahoma where the wind comes Sweeping down the Plains
Contact:

Re: Mouse "crashes" remains immovable after a short time

Post by AZgl1800 »

I just now read JeremyB saying that my kernel has issues, should I go back to a previous kernel?

uname -r
4.15.0-34-generic
LM21.3 Cinnamon ASUS FX705GM | Donate to Mint https://www.patreon.com/linux_mint
Image
gm10

Re: Mouse "crashes" remains immovable after a short time

Post by gm10 »

AZgl1500 wrote: Sun Sep 16, 2018 3:25 pm I read in one thread where this would turn suspend off permanently, but for me, it did not.

Code: Select all

echo on | sudo tee /sys/bus/usb/devices/*/power/level >/dev/null
No modification to /sys is permanent. Those are not real files, that's just a virtual file system created by the kernel during run time, exposing some parameters.

And a different kernel (series) might well help you, so if JeremyB knows something is broken in yours that's well worth a try (I know nothing on this particular kernel issue so I won't advise other than this general statement).
User avatar
AZgl1800
Level 20
Level 20
Posts: 11183
Joined: Thu Dec 31, 2015 3:20 am
Location: Oklahoma where the wind comes Sweeping down the Plains
Contact:

Re: Mouse "crashes" remains immovable after a short time

Post by AZgl1800 »

it is exasperating, seems to occur about every 15 minute, although I have never timed it.

only way to get it working again, is to pull the FOB out and plug it back in.

Code: Select all

n-TP500LA Kernel: 4.15.0-34-generic x86_64 (64 bit gcc: 5.4.0)
           Desktop: Cinnamon 3.6.7 (Gtk 3.18.9-1ubuntu3.3) Distro: Linux Mint 18.3 Sylvia
Hope a new kernel fixes it
LM21.3 Cinnamon ASUS FX705GM | Donate to Mint https://www.patreon.com/linux_mint
Image
User avatar
AZgl1800
Level 20
Level 20
Posts: 11183
Joined: Thu Dec 31, 2015 3:20 am
Location: Oklahoma where the wind comes Sweeping down the Plains
Contact:

Re: Mouse "crashes" remains immovable after a short time

Post by AZgl1800 »

This AutoSuspend thing is very infuriating.
I tried tlp for a while, and can't remember why I didn't stay with that now.

Nothing seems to keep it from coming back, until I read somewhere about PowerTOP

after a bootup from Power OFF , the mouse is once again, dead in the water.
I can do Cntl-Alt-T and up comes Terminal and sudo powertop
then I can tab over to Tunables

from there, I use the dn arrow key to hover over the USB LogicTech Mouse entry.
it will be grouped initially in the 'good' USB category at that time.

Pressing <enter> toggles the line that is highlighted and it goes from 'good' to 'bad'.
and instantly, the USB mouse is good for as long as the PC is powered ON.

How come this works, and all the other ways of turning OFF AutoSuspend's timeout will not remain 'permanent' during the current session and disable the mouse again?

I just wish that that a Permanent AutoSuspend OFF would work with 18.3 Kernel: 4.15.0-33-generic x86_64 (64 bit) Desktop: Cinnamon 3.6.7 : Linux Mint 18.3 Sylvia

Image
LM21.3 Cinnamon ASUS FX705GM | Donate to Mint https://www.patreon.com/linux_mint
Image
User avatar
AZgl1800
Level 20
Level 20
Posts: 11183
Joined: Thu Dec 31, 2015 3:20 am
Location: Oklahoma where the wind comes Sweeping down the Plains
Contact:

Re: Mouse "crashes" remains immovable after a short time

Post by AZgl1800 »

I don't believe it.

just made the above post, and the USB mouse stopped working, even though PowerTOP has it toggled off.
I had to pull the wired USB mouse out of the port, and plug it back in.
LM21.3 Cinnamon ASUS FX705GM | Donate to Mint https://www.patreon.com/linux_mint
Image
TheObserver

Re: Mouse "crashes" remains immovable after a short time

Post by TheObserver »

For me, the issue resolved by itself. I'm in luck this time.
User avatar
AZgl1800
Level 20
Level 20
Posts: 11183
Joined: Thu Dec 31, 2015 3:20 am
Location: Oklahoma where the wind comes Sweeping down the Plains
Contact:

Re: Mouse "crashes" remains immovable after a short time

Post by AZgl1800 »

TheObserver wrote: Mon Sep 24, 2018 4:57 am For me, the issue resolved by itself. I'm in luck this time.
I can only wish it would quit this crap.
I am going to start a campaign to try and find a release that does not have this problem.
LM21.3 Cinnamon ASUS FX705GM | Donate to Mint https://www.patreon.com/linux_mint
Image
addysmith97

Re: Mouse "crashes" remains immovable after a short time

Post by addysmith97 »

Have you checked out your BIOS setting?
User avatar
AZgl1800
Level 20
Level 20
Posts: 11183
Joined: Thu Dec 31, 2015 3:20 am
Location: Oklahoma where the wind comes Sweeping down the Plains
Contact:

Re: Mouse "crashes" remains immovable after a short time

Post by AZgl1800 »

gm10 wrote: Sun Sep 16, 2018 12:44 pm
AZgl1500 wrote: Sat Sep 15, 2018 11:44 am The previous methods only worked for the Current Session.
upon reboot, the mouse locked up again ( USB suspended )
Just to note that the usbcore.autosuspend=-1 kernel parameter (set in /etc/default/grub, don't forget to run sudo update-grub afterwards) disables this permanently.
Okay,
I am back to trying this again. tlp is not doing the job permanently. PowerTOP is infuriating, in that it does not give a permenent fix, the mouse has to be unplugged and reinserted.

I just tried to modify /etc/default/grub and when I updated grub, got an error.
I think I did something wrong in the grub module.

Code: Select all

john@john-TP500LA ~ $ sudo update-grub
/usr/sbin/grub-mkconfig: 45: /etc/default/grub: usbcore.autosuspend=-1: not found
john@john-TP500LA ~ $ 
I just added the new command to grub like this by appending it to the end of the module:

Code: Select all

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=6
# force it to show
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
#
#GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
#GRUB_CMDLINE_LINUX_DEFAULT="quiet splash iommu=soft"
GRUB_CMDLINE_LINUX_DEFAULT="iommu=soft"
GRUB_CMDLINE_LINE_LINUX_DEFAULT="quiet splash video=SVIDEO-1:d" 
 
# the following chg'd per https://forums.linuxmint.com/viewtopic.php?f=61&t=275502#p1511391
#
#GRUB_CMDLINE_LINUX=""
GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable=1 quiet splash"

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
 GRUB_INIT_TUNE="480 440 1"

usbcore.autosuspend=-1
LM21.3 Cinnamon ASUS FX705GM | Donate to Mint https://www.patreon.com/linux_mint
Image
gm10

Re: Mouse "crashes" remains immovable after a short time

Post by gm10 »

AZgl1500 wrote: Tue Sep 25, 2018 4:57 am I think I did something wrong in the grub module.
More like everything. Plenty of invalid stuff in there. Cleaned it up for you, replace the entire file's contents with this:

Code: Select all

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=6
# force it to show
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
# parameters for non-recovery boot only:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash iommu=soft video=SVIDEO-1:d ipv6.disable=1 usbcore.autosuspend=-1"
# parameters for all boots:
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
GRUB_INIT_TUNE="480 440 1"
Do review this line though:

Code: Select all

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash iommu=soft video=SVIDEO-1:d ipv6.disable=1 usbcore.autosuspend=-1"
In your messed up file they were scattered across invalid or overridden variables, so they weren't all in effect, so decide whether you want to keep them. But that single line is where kernel boot options go, nowhere else.
User avatar
AZgl1800
Level 20
Level 20
Posts: 11183
Joined: Thu Dec 31, 2015 3:20 am
Location: Oklahoma where the wind comes Sweeping down the Plains
Contact:

Re: Mouse "crashes" remains immovable after a short time

Post by AZgl1800 »

I have been wondering about all of those repeated command line entries, in my way of thinking, the last one was the only one that was effective?

anyway, I researched each command to see what it did, and found out there some that weren't related to my particular laptop, as it has Intel cpu.

so, here is how it looks how.
and, the shutdown and reboot process is much faster than it was prior to this clean up.

Code: Select all

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=6
# force it to show
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
# parameters for non-recovery boot only:
GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable=1 usbcore.autosuspend=-1"
# parameters for all boots:
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
GRUB_INIT_TUNE="480 440 1"
now the mouse

upon boot up, the mouse is ignored, the Touchpad is working.

The wired mouse can be unplugged and plugged back in and it works.

tlp has been uninstalled, and PowerTOP is not in effect.

the mouse is working while in session, and so far, has not quit working.

just curious as to why it is not active immediately after the pc boots up?
LM21.3 Cinnamon ASUS FX705GM | Donate to Mint https://www.patreon.com/linux_mint
Image
gm10

Re: Mouse "crashes" remains immovable after a short time

Post by gm10 »

AZgl1500 wrote: Tue Sep 25, 2018 12:19 pm I have been wondering about all of those repeated command line entries, in my way of thinking, the last one was the only one that was effective?
Correct.
AZgl1500 wrote: Tue Sep 25, 2018 12:19 pm and, the shutdown and reboot process is much faster than it was prior to this clean up.
That would be unrelated to the cleanup. The boot process doesn't use the messed up file, that's just the template, the update-grub command generates a proper one out of that. It might be that the autosuspend option speeds it up, it might also be completely subjective.
AZgl1500 wrote: Tue Sep 25, 2018 12:19 pm just curious as to why it is not active immediately after the pc boots up?
I don't know. What does dmesg say? Is this reproducible across several reboots? Did you try in a different USB port? Does it start working again if you remove the autosuspend option? etc. Happy troubleshooting. :)
User avatar
AZgl1800
Level 20
Level 20
Posts: 11183
Joined: Thu Dec 31, 2015 3:20 am
Location: Oklahoma where the wind comes Sweeping down the Plains
Contact:

Re: Mouse "crashes" remains immovable after a short time

Post by AZgl1800 »

as for the mouse not being active, it has remained that way for the last couple days no matter what I do to get the problem fixed. Once unplugged and plugged back in, it seems to be working fine.
I can leave the laptop alone for a few hours, and it is still working.

here is dmsg
oops: going to have to break it up into 2 messages
Post a reply

Your message contains 74056 characters.
The maximum number of allowed characters is 60000.

Code: Select all

john@john-TP500LA ~ $ dmesg
[    0.000000] Linux version 4.15.0-33-generic (buildd@lgw01-amd64-010) (gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.10)) #36~16.04.1-Ubuntu SMP Wed Aug 15 17:21:05 UTC 2018 (Ubuntu 4.15.0-33.36~16.04.1-generic 4.15.18)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-33-generic root=UUID=25ddd311-91ad-4b80-91f1-ebb7955c288e ro ipv6.disable=1 usbcore.autosuspend=-1
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009c7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009c800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000c9b40fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000c9b41000-0x00000000c9b47fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000c9b48000-0x00000000ca37cfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ca37d000-0x00000000ca5f7fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ca5f8000-0x00000000d9929fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000d992a000-0x00000000d9b31fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000d9b32000-0x00000000d9e73fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000d9e74000-0x00000000dab37fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000dab38000-0x00000000daffefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000dafff000-0x00000000daffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000dbc00000-0x00000000dfdfffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000031f1fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: ASUSTeK COMPUTER INC. TP500LA/TP500LA, BIOS TP500LA.203 06/11/2014
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x31f200 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-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-E7FFF uncachable
[    0.000000]   E8000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0000000000 mask 7E00000000 write-back
[    0.000000]   1 base 0200000000 mask 7F00000000 write-back
[    0.000000]   2 base 0300000000 mask 7FE0000000 write-back
[    0.000000]   3 base 00E0000000 mask 7FE0000000 uncachable
[    0.000000]   4 base 00DC000000 mask 7FFC000000 uncachable
[    0.000000]   5 base 00DBC00000 mask 7FFFC00000 uncachable
[    0.000000]   6 base 031F800000 mask 7FFF800000 uncachable
[    0.000000]   7 base 031F400000 mask 7FFFC00000 uncachable
[    0.000000]   8 base 031F200000 mask 7FFFE00000 uncachable
[    0.000000]   9 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000000] total RAM covered: 12206M
[    0.000000]  gran_size: 64K 	chunk_size: 64K 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 64K 	chunk_size: 128K 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 64K 	chunk_size: 256K 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 64K 	chunk_size: 512K 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 64K 	chunk_size: 1M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 64K 	chunk_size: 2M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 64K 	chunk_size: 4M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 64K 	chunk_size: 8M 	num_reg: 10  	lose cover RAM: 114M
[    0.000000] *BAD*gran_size: 64K 	chunk_size: 16M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 64K 	chunk_size: 32M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 64K 	chunk_size: 64M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 64K 	chunk_size: 128M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 64K 	chunk_size: 256M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 64K 	chunk_size: 512M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 64K 	chunk_size: 1G 	num_reg: 10  	lose cover RAM: -512M
[    0.000000] *BAD*gran_size: 64K 	chunk_size: 2G 	num_reg: 10  	lose cover RAM: -1536M
[    0.000000]  gran_size: 128K 	chunk_size: 128K 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 128K 	chunk_size: 256K 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 128K 	chunk_size: 512K 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 128K 	chunk_size: 1M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 128K 	chunk_size: 2M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 128K 	chunk_size: 4M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 128K 	chunk_size: 8M 	num_reg: 10  	lose cover RAM: 114M
[    0.000000] *BAD*gran_size: 128K 	chunk_size: 16M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 128K 	chunk_size: 32M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 128K 	chunk_size: 64M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 128K 	chunk_size: 128M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 128K 	chunk_size: 256M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 128K 	chunk_size: 512M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 128K 	chunk_size: 1G 	num_reg: 10  	lose cover RAM: -512M
[    0.000000] *BAD*gran_size: 128K 	chunk_size: 2G 	num_reg: 10  	lose cover RAM: -1536M
[    0.000000]  gran_size: 256K 	chunk_size: 256K 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 256K 	chunk_size: 512K 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 256K 	chunk_size: 1M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 256K 	chunk_size: 2M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 256K 	chunk_size: 4M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 256K 	chunk_size: 8M 	num_reg: 10  	lose cover RAM: 114M
[    0.000000] *BAD*gran_size: 256K 	chunk_size: 16M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 256K 	chunk_size: 32M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 256K 	chunk_size: 64M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 256K 	chunk_size: 128M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 256K 	chunk_size: 256M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 256K 	chunk_size: 512M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 256K 	chunk_size: 1G 	num_reg: 10  	lose cover RAM: -512M
[    0.000000] *BAD*gran_size: 256K 	chunk_size: 2G 	num_reg: 10  	lose cover RAM: -1536M
[    0.000000]  gran_size: 512K 	chunk_size: 512K 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 512K 	chunk_size: 1M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 512K 	chunk_size: 2M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 512K 	chunk_size: 4M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 512K 	chunk_size: 8M 	num_reg: 10  	lose cover RAM: 114M
[    0.000000] *BAD*gran_size: 512K 	chunk_size: 16M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 512K 	chunk_size: 32M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 512K 	chunk_size: 64M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 512K 	chunk_size: 128M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 512K 	chunk_size: 256M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 512K 	chunk_size: 512M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 512K 	chunk_size: 1G 	num_reg: 10  	lose cover RAM: -512M
[    0.000000] *BAD*gran_size: 512K 	chunk_size: 2G 	num_reg: 10  	lose cover RAM: -1536M
[    0.000000]  gran_size: 1M 	chunk_size: 1M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 1M 	chunk_size: 2M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 1M 	chunk_size: 4M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 1M 	chunk_size: 8M 	num_reg: 10  	lose cover RAM: 114M
[    0.000000] *BAD*gran_size: 1M 	chunk_size: 16M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 1M 	chunk_size: 32M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 1M 	chunk_size: 64M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 1M 	chunk_size: 128M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 1M 	chunk_size: 256M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 1M 	chunk_size: 512M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 1M 	chunk_size: 1G 	num_reg: 10  	lose cover RAM: -512M
[    0.000000] *BAD*gran_size: 1M 	chunk_size: 2G 	num_reg: 10  	lose cover RAM: -1536M
[    0.000000]  gran_size: 2M 	chunk_size: 2M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 2M 	chunk_size: 4M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 2M 	chunk_size: 8M 	num_reg: 10  	lose cover RAM: 114M
[    0.000000] *BAD*gran_size: 2M 	chunk_size: 16M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 2M 	chunk_size: 32M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 2M 	chunk_size: 64M 	num_reg: 10  	lose cover RAM: -12M
[    0.000000] *BAD*gran_size: 2M 	chunk_size: 128M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 2M 	chunk_size: 256M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 2M 	chunk_size: 512M 	num_reg: 10  	lose cover RAM: -8M
[    0.000000] *BAD*gran_size: 2M 	chunk_size: 1G 	num_reg: 10  	lose cover RAM: -512M
[    0.000000] *BAD*gran_size: 2M 	chunk_size: 2G 	num_reg: 10  	lose cover RAM: -1536M
[    0.000000]  gran_size: 4M 	chunk_size: 4M 	num_reg: 10  	lose cover RAM: 498M
[    0.000000]  gran_size: 4M 	chunk_size: 8M 	num_reg: 10  	lose cover RAM: 114M
[    0.000000]  gran_size: 4M 	chunk_size: 16M 	num_reg: 10  	lose cover RAM: 114M
[    0.000000]  gran_size: 4M 	chunk_size: 32M 	num_reg: 10  	lose cover RAM: 2M
[    0.000000]  gran_size: 4M 	chunk_size: 64M 	num_reg: 10  	lose cover RAM: 2M
[    0.000000]  gran_size: 4M 	chunk_size: 128M 	num_reg: 9  	lose cover RAM: 2M
[    0.000000]  gran_size: 4M 	chunk_size: 256M 	num_reg: 9  	lose cover RAM: 2M
[    0.000000]  gran_size: 4M 	chunk_size: 512M 	num_reg: 9  	lose cover RAM: 2M
[    0.000000]  gran_size: 4M 	chunk_size: 1G 	num_reg: 9  	lose cover RAM: 2M
[    0.000000]  gran_size: 4M 	chunk_size: 2G 	num_reg: 10  	lose cover RAM: 2M
[    0.000000]  gran_size: 8M 	chunk_size: 8M 	num_reg: 10  	lose cover RAM: 246M
[    0.000000]  gran_size: 8M 	chunk_size: 16M 	num_reg: 10  	lose cover RAM: 118M
[    0.000000]  gran_size: 8M 	chunk_size: 32M 	num_reg: 10  	lose cover RAM: 6M
[    0.000000]  gran_size: 8M 	chunk_size: 64M 	num_reg: 10  	lose cover RAM: 6M
[    0.000000]  gran_size: 8M 	chunk_size: 128M 	num_reg: 9  	lose cover RAM: 6M
[    0.000000]  gran_size: 8M 	chunk_size: 256M 	num_reg: 9  	lose cover RAM: 6M
[    0.000000]  gran_size: 8M 	chunk_size: 512M 	num_reg: 9  	lose cover RAM: 6M
[    0.000000]  gran_size: 8M 	chunk_size: 1G 	num_reg: 9  	lose cover RAM: 6M
[    0.000000]  gran_size: 8M 	chunk_size: 2G 	num_reg: 10  	lose cover RAM: 6M
[    0.000000]  gran_size: 16M 	chunk_size: 16M 	num_reg: 10  	lose cover RAM: 126M
[    0.000000]  gran_size: 16M 	chunk_size: 32M 	num_reg: 10  	lose cover RAM: 14M
[    0.000000]  gran_size: 16M 	chunk_size: 64M 	num_reg: 10  	lose cover RAM: 14M
[    0.000000]  gran_size: 16M 	chunk_size: 128M 	num_reg: 9  	lose cover RAM: 14M
[    0.000000]  gran_size: 16M 	chunk_size: 256M 	num_reg: 9  	lose cover RAM: 14M
[    0.000000]  gran_size: 16M 	chunk_size: 512M 	num_reg: 9  	lose cover RAM: 14M
[    0.000000]  gran_size: 16M 	chunk_size: 1G 	num_reg: 9  	lose cover RAM: 14M
[    0.000000]  gran_size: 16M 	chunk_size: 2G 	num_reg: 10  	lose cover RAM: 14M
[    0.000000]  gran_size: 32M 	chunk_size: 32M 	num_reg: 10  	lose cover RAM: 78M
[    0.000000]  gran_size: 32M 	chunk_size: 64M 	num_reg: 10  	lose cover RAM: 46M
[    0.000000]  gran_size: 32M 	chunk_size: 128M 	num_reg: 9  	lose cover RAM: 46M
[    0.000000]  gran_size: 32M 	chunk_size: 256M 	num_reg: 9  	lose cover RAM: 46M
[    0.000000]  gran_size: 32M 	chunk_size: 512M 	num_reg: 9  	lose cover RAM: 46M
[    0.000000]  gran_size: 32M 	chunk_size: 1G 	num_reg: 9  	lose cover RAM: 46M
[    0.000000]  gran_size: 32M 	chunk_size: 2G 	num_reg: 10  	lose cover RAM: 46M
[    0.000000]  gran_size: 64M 	chunk_size: 64M 	num_reg: 9  	lose cover RAM: 110M
[    0.000000]  gran_size: 64M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 110M
[    0.000000]  gran_size: 64M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 110M
[    0.000000]  gran_size: 64M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 110M
[    0.000000]  gran_size: 64M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 110M
[    0.000000]  gran_size: 64M 	chunk_size: 2G 	num_reg: 9  	lose cover RAM: 110M
[    0.000000]  gran_size: 128M 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 174M
[    0.000000]  gran_size: 128M 	chunk_size: 256M 	num_reg: 8  	lose cover RAM: 174M
[    0.000000]  gran_size: 128M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 174M
[    0.000000]  gran_size: 128M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 174M
[    0.000000]  gran_size: 128M 	chunk_size: 2G 	num_reg: 9  	lose cover RAM: 174M
[    0.000000]  gran_size: 256M 	chunk_size: 256M 	num_reg: 6  	lose cover RAM: 430M
[    0.000000]  gran_size: 256M 	chunk_size: 512M 	num_reg: 8  	lose cover RAM: 430M
[    0.000000]  gran_size: 256M 	chunk_size: 1G 	num_reg: 8  	lose cover RAM: 430M
[    0.000000]  gran_size: 256M 	chunk_size: 2G 	num_reg: 9  	lose cover RAM: 430M
[    0.000000]  gran_size: 512M 	chunk_size: 512M 	num_reg: 4  	lose cover RAM: 942M
[    0.000000]  gran_size: 512M 	chunk_size: 1G 	num_reg: 4  	lose cover RAM: 942M
[    0.000000]  gran_size: 512M 	chunk_size: 2G 	num_reg: 4  	lose cover RAM: 942M
[    0.000000]  gran_size: 1G 	chunk_size: 1G 	num_reg: 4  	lose cover RAM: 942M
[    0.000000]  gran_size: 1G 	chunk_size: 2G 	num_reg: 4  	lose cover RAM: 942M
[    0.000000]  gran_size: 2G 	chunk_size: 2G 	num_reg: 3  	lose cover RAM: 1966M
[    0.000000] mtrr_cleanup: can not find optimal value
[    0.000000] please specify mtrr_gran_size/mtrr_chunk_size
[    0.000000] e820: update [mem 0xdbc00000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0xdb000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fd830-0x000fd83f] mapped at [        (ptrval)]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [        (ptrval)] 96000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0xad13d000, 0xad13dfff] PGTABLE
[    0.000000] BRK [0xad13e000, 0xad13efff] PGTABLE
[    0.000000] BRK [0xad13f000, 0xad13ffff] PGTABLE
[    0.000000] BRK [0xad140000, 0xad140fff] PGTABLE
[    0.000000] BRK [0xad141000, 0xad141fff] PGTABLE
[    0.000000] BRK [0xad142000, 0xad142fff] PGTABLE
[    0.000000] BRK [0xad143000, 0xad143fff] PGTABLE
[    0.000000] BRK [0xad144000, 0xad144fff] PGTABLE
[    0.000000] BRK [0xad145000, 0xad145fff] PGTABLE
[    0.000000] BRK [0xad146000, 0xad146fff] PGTABLE
[    0.000000] BRK [0xad147000, 0xad147fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x31566000-0x34aaafff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F0490 000024 (v02 _ASUS_)
[    0.000000] ACPI: XSDT 0x00000000DAAFB080 00008C (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000DAB11160 00010C (v05 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000DAAFB228 015F35 (v02 _ASUS_ Notebook 00000012 INTL 20120711)
[    0.000000] ACPI: FACS 0x00000000DAB35F80 000040
[    0.000000] ACPI: APIC 0x00000000DAB11270 000072 (v03 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x00000000DAB112E8 000044 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
[    0.000000] ACPI: ECDT 0x00000000DAB11330 0000C1 (v01 _ASUS_ Notebook 01072009 AMI. 00000005)
[    0.000000] ACPI: LPIT 0x00000000DAB113F8 000094 (v01 ALASKA          00000000 AMI. 00000005)
[    0.000000] ACPI: SSDT 0x00000000DAB11490 0004D6 (v01 PmRef  Cpu0Ist  00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000DAB11968 000AD8 (v01 PmRef  CpuPm    00003000 INTL 20120711)
[    0.000000] ACPI: MCFG 0x00000000DAB12440 00003C (v01 _ASUS_ Notebook 01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 0x00000000DAB12480 000038 (v01 _ASUS_ Notebook 01072009 AMI. 00000005)
[    0.000000] ACPI: SSDT 0x00000000DAB124B8 0002D7 (v01 SataRe SataTabl 00001000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000DAB12790 003F21 (v01 SaSsdt SaSsdt   00003000 INTL 20091112)
[    0.000000] ACPI: DMAR 0x00000000DAB166B8 0000CC (v01 INTEL  HSW      00000001 INTL 00000001)
[    0.000000] ACPI: MSDM 0x00000000D9B30E18 000055 (v03 _ASUS_ Notebook 00000000 ASUS 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000031f1fffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x31f1d3000-0x31f1fdfff]
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000031f1fffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009bfff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x00000000c9b40fff]
[    0.000000]   node   0: [mem 0x00000000c9b48000-0x00000000ca37cfff]
[    0.000000]   node   0: [mem 0x00000000ca5f8000-0x00000000d9929fff]
[    0.000000]   node   0: [mem 0x00000000d9b32000-0x00000000d9e73fff]
[    0.000000]   node   0: [mem 0x00000000dafff000-0x00000000daffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000031f1fffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000031f1fffff]
[    0.000000] On node 0 totalpages: 3115910
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3995 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 13864 pages used for memmap
[    0.000000]   DMA32 zone: 887275 pages, LIFO batch:31
[    0.000000]   Normal zone: 34760 pages used for memmap
[    0.000000]   Normal zone: 2224640 pages, LIFO batch:31
[    0.000000] Reserved but unavailable: 101 pages
[    0.000000] Reserving Intel graphics memory at 0x00000000dbe00000-0x00000000dfdfffff
[    0.000000] ACPI: PM-Timer IO Port: 0x1808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-39
[    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: 0x8086a701 base: 0xfed00000
[    0.000000] [Firmware Bug]: TSC_DEADLINE disabled due to Errata; please update microcode to version: 0x20 (or later)
[    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 0x0009c000-0x0009cfff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xc9b41000-0xc9b47fff]
[    0.000000] PM: Registered nosave memory: [mem 0xca37d000-0xca5f7fff]
[    0.000000] PM: Registered nosave memory: [mem 0xd992a000-0xd9b31fff]
[    0.000000] PM: Registered nosave memory: [mem 0xd9e74000-0xdab37fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdab38000-0xdaffefff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb000000-0xdbbfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xdbc00000-0xdfdfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xdfe00000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] e820: [mem 0xdfe00000-0xf7ffffff] 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] random: get_random_bytes called from start_kernel+0x99/0x51b with crng_init=0
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 46 pages/cpu @        (ptrval) s151552 r8192 d28672 u524288
[    0.000000] pcpu-alloc: s151552 r8192 d28672 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 3067201
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-33-generic root=UUID=25ddd311-91ad-4b80-91f1-ebb7955c288e ro ipv6.disable=1 usbcore.autosuspend=-1
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 12117528K/12463640K available (12300K kernel code, 2469K rwdata, 4252K rodata, 2404K init, 2416K bss, 346112K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Kernel/User page tables isolation: enabled
[    0.000000] ftrace: allocating 39127 entries in 153 pages
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS: 524544, nr_irqs: 728, preallocated irqs: 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] ACPI: Core revision 20170831
[    0.000000] ACPI: 5 ACPI AML tables successfully acquired and loaded
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] hpet clockevent registered
[    0.000000] APIC: Switch to symmetric I/O mode setup
[    0.000000] DMAR: Host address width 39
[    0.000000] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.000000] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap c0000020660462 ecap f0101a
[    0.000000] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.000000] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008020660462 ecap f010da
[    0.000000] DMAR: RMRR base: 0x000000d9ab9000 end: 0x000000d9ac5fff
[    0.000000] DMAR: RMRR base: 0x000000dbc00000 end: 0x000000dfdfffff
[    0.000000] DMAR: ANDD device: 1 name: \_SB.PCI0.I2C0
[    0.000000] DMAR-IR: IOAPIC id 8 under DRHD base  0xfed91000 IOMMU 1
[    0.000000] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.000000] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.000000] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.000000] x2apic enabled
[    0.000000] Switched APIC routing to cluster x2apic.
[    0.000000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.020000] tsc: Fast TSC calibration using PIT
[    0.024000] tsc: Detected 1895.506 MHz processor
[    0.024000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3791.01 BogoMIPS (lpj=7582024)
[    0.024000] pid_max: default: 32768 minimum: 301
[    0.024000] Security Framework initialized
[    0.024000] Yama: becoming mindful.
[    0.024000] AppArmor: AppArmor initialized
[    0.028959] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.030285] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.030344] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.030390] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.030634] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.030638] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.030645] mce: CPU supports 7 MCE banks
[    0.030658] CPU0: Thermal monitoring enabled (TM1)
[    0.030674] process: using mwait in idle threads
[    0.030678] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[    0.030681] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[    0.030685] Spectre V2 : Mitigation: Full generic retpoline
[    0.030687] Speculative Store Bypass: Vulnerable
[    0.038821] Freeing SMP alternatives memory: 36K
[    0.044000] smpboot: CPU0: Intel(R) Core(TM) i3-4030U CPU @ 1.90GHz (family: 0x6, model: 0x45, stepping: 0x1)
[    0.044000] Performance Events: PEBS fmt2+, Haswell events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.044000] ... version:                3
[    0.044000] ... bit width:              48
[    0.044000] ... generic registers:      4
[    0.044000] ... value mask:             0000ffffffffffff
[    0.044000] ... max period:             00007fffffffffff
[    0.044000] ... fixed-purpose events:   3
[    0.044000] ... event mask:             000000070000000f
[    0.044000] Hierarchical SRCU implementation.
[    0.044000] smp: Bringing up secondary CPUs ...
[    0.044000] x86: Booting SMP configuration:
[    0.044000] .... node  #0, CPUs:      #1
[    0.044000] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.044000]  #2 #3
[    0.044000] smp: Brought up 1 node, 4 CPUs
[    0.044000] smpboot: Max logical packages: 1
[    0.044000] smpboot: Total of 4 processors activated (15164.04 BogoMIPS)
[    0.044340] devtmpfs: initialized
[    0.048041] x86/mm: Memory block size: 128MB
[    0.049183] evm: security.selinux
[    0.049186] evm: security.SMACK64
[    0.049189] evm: security.SMACK64EXEC
[    0.049191] evm: security.SMACK64TRANSMUTE
[    0.049193] evm: security.SMACK64MMAP
[    0.049195] evm: security.apparmor
[    0.049198] evm: security.ima
[    0.049200] evm: security.capability
[    0.049219] PM: Registering ACPI NVS region [mem 0xc9b41000-0xc9b47fff] (28672 bytes)
[    0.049219] PM: Registering ACPI NVS region [mem 0xd9e74000-0xdab37fff] (13385728 bytes)
[    0.049219] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.049219] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.049219] pinctrl core: initialized pinctrl subsystem
[    0.049219] RTC time: 17:41:03, date: 09/25/18
[    0.049219] NET: Registered protocol family 16
[    0.049219] audit: initializing netlink subsys (disabled)
[    0.049219] audit: type=2000 audit(1537897263.048:1): state=initialized audit_enabled=0 res=1
[    0.049219] cpuidle: using governor ladder
[    0.049219] cpuidle: using governor menu
[    0.049219] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.049219] ACPI: bus type PCI registered
[    0.049219] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.049219] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.049219] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.049219] pmd_set_huge: Cannot satisfy [mem 0xf8000000-0xf8200000] with a huge-page mapping due to MTRR override.
[    0.049219] PCI: Using configuration type 1 for base access
[    0.049219] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.052048] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.052048] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.052118] ACPI: Added _OSI(Module Device)
[    0.052122] ACPI: Added _OSI(Processor Device)
[    0.052125] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.052128] ACPI: Added _OSI(Processor Aggregator Device)
[    0.052131] ACPI: Added _OSI(Linux-Dell-Video)
[    0.052137] ACPI: EC: EC started
[    0.052139] ACPI: EC: interrupt blocked
[    0.052915] ACPI: \: Used as first EC
[    0.052920] ACPI: \: GPE=0xa, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.052924] ACPI: \: Used as boot ECDT EC to handle transactions
[    0.053174] ACPI: Executed 1 blocks of module-level executable AML code
[    0.063345] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.069100] ACPI: Dynamic OEM Table Load:
[    0.069100] ACPI: SSDT 0xFFFF9160D0172800 0003D3 (v01 PmRef  Cpu0Cst  00003001 INTL 20120711)
[    0.069100] ACPI: Dynamic OEM Table Load:
[    0.069100] ACPI: SSDT 0xFFFF9160D0717000 0005AA (v01 PmRef  ApIst    00003000 INTL 20120711)
[    0.069100] ACPI: Dynamic OEM Table Load:
[    0.069100] ACPI: SSDT 0xFFFF9160D00C5400 000119 (v01 PmRef  ApCst    00003000 INTL 20120711)
[    0.070495] ACPI: Interpreter enabled
[    0.070548] ACPI: (supports S0 S3 S4 S5)
[    0.070551] ACPI: Using IOAPIC for interrupt routing
[    0.070595] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.071192] ACPI: Enabled 6 GPEs in block 00 to 7F
[    0.093711] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.093723] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.094212] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
[    0.094635] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
[    0.094640] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.095450] PCI host bridge to bus 0000:00
[    0.095456] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.095461] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.095465] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.095469] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    0.095475] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.095479] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.095483] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[    0.095487] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[    0.095491] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    0.095495] pci_bus 0000:00: root bus resource [mem 0xdfe00000-0xfeafffff window]
[    0.095500] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.095512] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
[    0.095661] pci 0000:00:02.0: [8086:0a16] type 00 class 0x030000
[    0.095675] pci 0000:00:02.0: reg 0x10: [mem 0xf7800000-0xf7bfffff 64bit]
[    0.095683] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.095689] pci 0000:00:02.0: reg 0x20: [io  0xf000-0xf03f]
[    0.095820] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
[    0.095833] pci 0000:00:03.0: reg 0x10: [mem 0xf7e14000-0xf7e17fff 64bit]
[    0.095992] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
[    0.096017] pci 0000:00:14.0: reg 0x10: [mem 0xf7e00000-0xf7e0ffff 64bit]
[    0.096079] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.096193] pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
[    0.096217] pci 0000:00:16.0: reg 0x10: [mem 0xf7e1c000-0xf7e1c01f 64bit]
[    0.096288] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.096406] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
[    0.096426] pci 0000:00:1b.0: reg 0x10: [mem 0xf7e10000-0xf7e13fff 64bit]
[    0.096497] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.096612] pci 0000:00:1c.0: [8086:9c10] type 01 class 0x060400
[    0.096685] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.096888] pci 0000:00:1c.2: [8086:9c14] type 01 class 0x060400
[    0.096966] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.097166] pci 0000:00:1c.3: [8086:9c16] type 01 class 0x060400
[    0.097243] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.097447] pci 0000:00:1f.0: [8086:9c43] type 00 class 0x060100
[    0.097677] pci 0000:00:1f.2: [8086:9c03] type 00 class 0x010601
[    0.097694] pci 0000:00:1f.2: reg 0x10: [io  0xf0b0-0xf0b7]
[    0.097701] pci 0000:00:1f.2: reg 0x14: [io  0xf0a0-0xf0a3]
[    0.097709] pci 0000:00:1f.2: reg 0x18: [io  0xf090-0xf097]
[    0.097716] pci 0000:00:1f.2: reg 0x1c: [io  0xf080-0xf083]
[    0.097724] pci 0000:00:1f.2: reg 0x20: [io  0xf060-0xf07f]
[    0.097731] pci 0000:00:1f.2: reg 0x24: [mem 0xf7e1a000-0xf7e1a7ff]
[    0.097768] pci 0000:00:1f.2: PME# supported from D3hot
[    0.097874] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
[    0.097893] pci 0000:00:1f.3: reg 0x10: [mem 0xf7e19000-0xf7e190ff 64bit]
[    0.097913] pci 0000:00:1f.3: reg 0x20: [io  0xf040-0xf05f]
[    0.098137] acpiphp: Slot [1] registered
[    0.098146] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.098269] pci 0000:02:00.0: [10ec:5287] type 00 class 0xff0000
[    0.098302] pci 0000:02:00.0: reg 0x10: [mem 0xf7d15000-0xf7d15fff]
[    0.098368] pci 0000:02:00.0: reg 0x30: [mem 0xf7d00000-0xf7d0ffff pref]
[    0.098463] pci 0000:02:00.0: supports D1 D2
[    0.098465] pci 0000:02:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.098567] pci 0000:02:00.1: [10ec:8168] type 00 class 0x020000
[    0.098598] pci 0000:02:00.1: reg 0x10: [io  0xe000-0xe0ff]
[    0.098627] pci 0000:02:00.1: reg 0x18: [mem 0xf7d14000-0xf7d14fff 64bit]
[    0.098646] pci 0000:02:00.1: reg 0x20: [mem 0xf7d10000-0xf7d13fff 64bit]
[    0.098746] pci 0000:02:00.1: supports D1 D2
[    0.098748] pci 0000:02:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.112047] pci 0000:00:1c.2: PCI bridge to [bus 02]
[    0.112054] pci 0000:00:1c.2:   bridge window [io  0xe000-0xefff]
[    0.112057] pci 0000:00:1c.2:   bridge window [mem 0xf7d00000-0xf7dfffff]
[    0.112188] pci 0000:03:00.0: [14c3:7630] type 00 class 0x028000
[    0.112219] pci 0000:03:00.0: reg 0x10: [mem 0xf7c00000-0xf7cfffff]
[    0.112359] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.124039] pci 0000:00:1c.3: PCI bridge to [bus 03]
[    0.124047] pci 0000:00:1c.3:   bridge window [mem 0xf7c00000-0xf7cfffff]
[    0.125258] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12)
[    0.125357] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 12) *0, disabled.
[    0.125455] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 10 12)
[    0.125553] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *10 12)
[    0.125647] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 12) *0, disabled.
[    0.125742] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 12) *0, disabled.
[    0.125837] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 10 12)
[    0.125931] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 12) *0, disabled.
[    0.128004] ACPI: EC: interrupt unblocked
[    0.128004] ACPI: EC: event unblocked
[    0.128004] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0xa, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.128004] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions and events
[    0.128004] SCSI subsystem initialized
[    0.128019] libata version 3.00 loaded.
[    0.128021] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.128021] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.128021] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.128021] vgaarb: loaded
[    0.128040] ACPI: bus type USB registered
[    0.128060] usbcore: registered new interface driver usbfs
[    0.128070] usbcore: registered new interface driver hub
[    0.128091] usbcore: registered new device driver usb
[    0.152976] EDAC MC: Ver: 3.0.0
[    0.152976] PCI: Using ACPI for IRQ routing
[    0.153450] PCI: pci_cache_line_size set to 64 bytes
[    0.153500] e820: reserve RAM buffer [mem 0x0009c800-0x0009ffff]
[    0.153501] e820: reserve RAM buffer [mem 0xc9b41000-0xcbffffff]
[    0.153503] e820: reserve RAM buffer [mem 0xca37d000-0xcbffffff]
[    0.153504] e820: reserve RAM buffer [mem 0xd992a000-0xdbffffff]
[    0.153506] e820: reserve RAM buffer [mem 0xd9e74000-0xdbffffff]
[    0.153507] e820: reserve RAM buffer [mem 0xdb000000-0xdbffffff]
[    0.153509] e820: reserve RAM buffer [mem 0x31f200000-0x31fffffff]
[    0.153618] NetLabel: Initializing
[    0.153622] NetLabel:  domain hash size = 128
[    0.153624] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.153643] NetLabel:  unlabeled traffic allowed by default
[    0.156049] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.156060] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.156060] clocksource: Switched to clocksource hpet
[    0.168052] VFS: Disk quotas dquot_6.6.0
[    0.168077] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.168196] AppArmor: AppArmor Filesystem Enabled
[    0.168228] pnp: PnP ACPI init
[    0.168388] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
[    0.168398] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.168758] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.168763] system 00:01: [io  0xffff] has been reserved
[    0.168767] system 00:01: [io  0xffff] has been reserved
[    0.168771] system 00:01: [io  0xffff] has been reserved
[    0.168776] system 00:01: [io  0x1c00-0x1cfe] could not be reserved
[    0.168780] system 00:01: [io  0x1d00-0x1dfe] could not be reserved
[    0.168783] system 00:01: [io  0x1e00-0x1efe] could not be reserved
[    0.168787] system 00:01: [io  0x1f00-0x1ffe] could not be reserved
[    0.168791] system 00:01: [io  0x1800-0x18fe] has been reserved
[    0.168795] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.168802] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.168833] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.168907] system 00:03: [io  0x1854-0x1857] has been reserved
[    0.168914] system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.168991] system 00:04: [io  0x04d0-0x04d1] has been reserved
[    0.168999] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.169043] system 00:05: [io  0x0240-0x0259] has been reserved
[    0.169050] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.169146] pnp 00:06: Plug and Play ACPI device, IDs ETD0108 SYN0a00 SYN0002 PNP0f03 PNP0f13 PNP0f12 (active)
[    0.169203] pnp 00:07: Plug and Play ACPI device, IDs ATK3001 PNP030b (active)
[    0.169739] system 00:08: [mem 0xfe104000-0xfe104fff] has been reserved
[    0.169747] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.170427] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.170432] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.170436] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.170440] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.170444] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.170448] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.170453] system 00:09: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.170457] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.170461] system 00:09: [mem 0xff000000-0xffffffff] has been reserved
[    0.170465] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.170470] system 00:09: [mem 0xf7fdf000-0xf7fdffff] has been reserved
[    0.170474] system 00:09: [mem 0xf7fe0000-0xf7feffff] has been reserved
[    0.170481] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.170615] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.171110] pnp: PnP ACPI: found 11 devices
[    0.177348] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.177379] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.177393] pci 0000:00:1c.2: PCI bridge to [bus 02]
[    0.177397] pci 0000:00:1c.2:   bridge window [io  0xe000-0xefff]
[    0.177404] pci 0000:00:1c.2:   bridge window [mem 0xf7d00000-0xf7dfffff]
[    0.177413] pci 0000:00:1c.3: PCI bridge to [bus 03]
[    0.177419] pci 0000:00:1c.3:   bridge window [mem 0xf7c00000-0xf7cfffff]
[    0.177430] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.177432] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.177434] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.177436] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff window]
[    0.177437] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff window]
[    0.177439] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff window]
[    0.177441] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff window]
[    0.177443] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff window]
[    0.177445] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff window]
[    0.177446] pci_bus 0000:00: resource 13 [mem 0xdfe00000-0xfeafffff window]
[    0.177449] pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
[    0.177450] pci_bus 0000:02: resource 1 [mem 0xf7d00000-0xf7dfffff]
[    0.177452] pci_bus 0000:03: resource 1 [mem 0xf7c00000-0xf7cfffff]
[    0.177651] NET: Registered protocol family 2
[    0.177878] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.178096] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.178225] TCP: Hash tables configured (established 131072 bind 65536)
[    0.178267] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[    0.178321] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[    0.178401] NET: Registered protocol family 1
[    0.178420] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.178723] PCI: CLS 64 bytes, default 64
[    0.178769] Unpacking initramfs...
[    1.247547] Freeing initrd memory: 54548K
[    1.247645] DMAR: ACPI device "INT33C2:00" under DMAR at fed91000 as 00:15.1
[    1.247662] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.247667] software IO TLB [mem 0xd592a000-0xd992a000] (64MB) mapped at [        (ptrval)-        (ptrval)]
[    1.247947] Scanning for low memory corruption every 60 seconds
[    1.248679] Initialise system trusted keyrings
[    1.248690] Key type blacklist registered
[    1.248729] workingset: timestamp_bits=36 max_order=22 bucket_order=0
[    1.250081] zbud: loaded
[    1.250682] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.250827] fuse init (API version 7.26)
[    1.252156] Key type asymmetric registered
[    1.252160] Asymmetric key parser 'x509' registered
[    1.252196] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    1.252234] io scheduler noop registered
[    1.252238] io scheduler deadline registered
[    1.252286] io scheduler cfq registered (default)
[    1.252964] vesafb: mode is 1366x768x32, linelength=5504, pages=0
[    1.252968] vesafb: scrolling: redraw
[    1.252972] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.252991] vesafb: framebuffer at 0xe0000000, mapped to 0x        (ptrval), using 4160k, total 4160k
[    1.361670] Console: switching to colour frame buffer device 170x48
[    1.470925] fb0: VESA VGA frame buffer device
[    1.471609] intel_idle: MWAIT substates: 0x11142120
[    1.471610] intel_idle: v0.4.1 model 0x45
[    1.471821] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.471998] ACPI: AC Adapter [AC0] (on-line)
[    1.472749] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    1.474002] ACPI: Lid Switch [LID]
[    1.474558] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[    1.475852] ACPI: Sleep Button [SLPB]
[    1.476491] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    1.477655] ACPI: Power Button [PWRF]
[    1.479473] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    1.481544] thermal LNXTHERM:00: registered as thermal_zone0
[    1.482409] ACPI: Thermal Zone [THRM] (43 C)
[    1.483215] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.486456] Linux agpgart interface v0.103
[    1.488886] loop: module loaded
[    1.489552] libphy: Fixed MDIO Bus: probed
[    1.490179] tun: Universal TUN/TAP device driver, 1.6
[    1.490983] PPP generic driver version 2.4.2
[    1.491677] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.492682] ehci-pci: EHCI PCI platform driver
[    1.493370] ehci-platform: EHCI generic platform driver
[    1.494177] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.495126] ohci-pci: OHCI PCI platform driver
[    1.495811] ohci-platform: OHCI generic platform driver
[    1.529746] random: fast init done
[    1.541851] ACPI: Battery Slot [BAT0] (battery present)
[    1.607494] uhci_hcd: USB Universal Host Controller Interface driver
[    1.643691] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.679341] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    1.680414] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0004b810
[    1.680419] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    1.680555] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.680557] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.680558] usb usb1: Product: xHCI Host Controller
[    1.680560] usb usb1: Manufacturer: Linux 4.15.0-33-generic xhci-hcd
[    1.680561] usb usb1: SerialNumber: 0000:00:14.0
[    1.680696] hub 1-0:1.0: USB hub found
[    1.680707] hub 1-0:1.0: 9 ports detected
[    1.684212] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.684216] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    1.684219] xhci_hcd 0000:00:14.0: Host supports USB 3.0  SuperSpeed
[    1.684253] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    1.684254] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.684256] usb usb2: Product: xHCI Host Controller
[    1.684258] usb usb2: Manufacturer: Linux 4.15.0-33-generic xhci-hcd
[    1.684259] usb usb2: SerialNumber: 0000:00:14.0
[    1.684364] hub 2-0:1.0: USB hub found
[    1.684372] hub 2-0:1.0: 4 ports detected
Last edited by AZgl1800 on Tue Sep 25, 2018 1:44 pm, edited 1 time in total.
LM21.3 Cinnamon ASUS FX705GM | Donate to Mint https://www.patreon.com/linux_mint
Image
User avatar
AZgl1800
Level 20
Level 20
Posts: 11183
Joined: Thu Dec 31, 2015 3:20 am
Location: Oklahoma where the wind comes Sweeping down the Plains
Contact:

Re: Mouse "crashes" remains immovable after a short time

Post by AZgl1800 »

dmsg part 2

Code: Select all


[    1.685407] i8042: PNP: PS/2 Controller [PNP030b:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    1.688816] i8042: Detected active multiplexing controller, rev 1.1
[    1.690514] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.690519] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    1.690552] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    1.690573] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    1.690595] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    1.690711] mousedev: PS/2 mouse device common for all mice
[    1.690899] rtc_cmos 00:02: RTC can wake from S4
[    1.691035] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    1.691065] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    1.691074] i2c /dev entries driver
[    1.691160] device-mapper: uevent: version 1.0.3
[    1.691232] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com
[    1.691240] intel_pstate: Intel P-state driver initializing
[    1.768877] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    2.020014] usb 1-1: new low-speed USB device number 2 using xhci_hcd
[    2.171390] usb 1-1: New USB device found, idVendor=046d, idProduct=c018
[    2.171392] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.171394] usb 1-1: Product: USB Optical Mouse
[    2.171395] usb 1-1: Manufacturer: Logitech
[    2.272013] tsc: Refined TSC clocksource calibration: 1895.611 MHz
[    2.272022] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x36a5f415104, max_idle_ns: 881590682539 ns
[    2.296037] usb 1-4: new high-speed USB device number 3 using xhci_hcd
[    2.458234] usb 1-4: New USB device found, idVendor=0489, idProduct=e069
[    2.458236] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.458238] usb 1-4: Product: BT
[    2.458239] usb 1-4: Manufacturer: MediaTek
[    2.458241] usb 1-4: SerialNumber: 1.0
[    3.291266] ledtrig-cpu: registered to indicate activity on CPUs
[    3.322995] clocksource: Switched to clocksource tsc
[    3.323311] IPv6: Loaded, but administratively disabled, reboot required to enable
[    3.323313] NET: Registered protocol family 17
[    3.323355] Key type dns_resolver registered
[    3.449803] RAS: Correctable Errors collector initialized.
[    3.481762] microcode: sig=0x40651, pf=0x40, revision=0x17
[    3.513704] microcode: Microcode Update Driver: v2.2.
[    3.513714] sched_clock: Marking stable (3513698119, 0)->(3599159044, -85460925)
[    3.579123] registered taskstats version 1
[    3.611885] Loading compiled-in X.509 certificates
[    3.648189] Loaded X.509 cert 'Build time autogenerated kernel key: d918b280ed158d77154089242222928ec1ab43e6'
[    3.682135] zswap: loaded using pool lzo/zbud
[    3.720817] Key type big_key registered
[    3.756777] Key type trusted registered
[    3.792315] Key type encrypted registered
[    3.825171] AppArmor: AppArmor sha1 policy hashing enabled
[    3.858422] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
[    3.892320] evm: HMAC attrs: 0x1
[    3.925953]   Magic number: 2:833:694
[    3.958735] rtc_cmos 00:02: setting system clock to 2018-09-25 17:41:07 UTC (1537897267)
[    3.992456] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    4.026320] EDD information not available.
[    4.588943] Freeing unused kernel memory: 2404K
[    4.628065] Write protecting the kernel read-only data: 20480k
[    4.665163] Freeing unused kernel memory: 2008K
[    4.706087] Freeing unused kernel memory: 1892K
[    4.750151] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    4.785667] x86/mm: Checking user space page tables
[    4.829690] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    4.949480] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    4.950159] random: udevadm: uninitialized urandom read (16 bytes read)
[    4.950185] random: udevadm: uninitialized urandom read (16 bytes read)
[    5.128504] ahci 0000:00:1f.2: version 3.0
[    5.128795] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    5.163734] hidraw: raw HID events driver (C) Jiri Kosina
[    5.180030] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0x1 impl SATA mode
[    5.180035] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo only pio slum part deso sadm sds apst 
[    5.181233] scsi host0: ahci
[    5.181381] scsi host1: ahci
[    5.181512] scsi host2: ahci
[    5.181641] scsi host3: ahci
[    5.181712] ata1: SATA max UDMA/133 abar m2048@0xf7e1a000 port 0xf7e1a100 irq 43
[    5.181713] ata2: DUMMY
[    5.181715] ata3: DUMMY
[    5.181716] ata4: DUMMY
[    5.232305] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    5.232315] r8169 0000:02:00.1: can't disable ASPM; OS doesn't have ASPM control
[    5.245092] r8169 0000:02:00.1 eth0: RTL8411 at 0x        (ptrval), ac:9e:17:97:7b:df, XID 1c800800 IRQ 45
[    5.245095] r8169 0000:02:00.1 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    5.368567] r8169 0000:02:00.1 enp2s0f1: renamed from eth0
[    5.494362] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    5.526751] ata1.00: supports DRM functions and may not be fully accessible
[    5.623324] ata1.00: ATA-11: Samsung SSD 860 EVO 500GB, RVT01B6Q, max UDMA/133
[    5.623327] ata1.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    5.819372] ata1.00: supports DRM functions and may not be fully accessible
[    5.854795] ata1.00: configured for UDMA/133
[    5.855708] usbcore: registered new interface driver usbhid
[    5.855709] usbhid: USB HID core driver
[    5.950765] scsi 0:0:0:0: Direct-Access     ATA      Samsung SSD 860  1B6Q PQ: 0 ANSI: 5
[    5.982870] ata1.00: Enabling discard_zeroes_data
[    5.984382] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    6.047504] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    6.080451] sd 0:0:0:0: [sda] Write Protect is off
[    6.112921] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    6.112939] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    6.146327] ata1.00: Enabling discard_zeroes_data
[    6.146397] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:046D:C018.0001/input/input12
[    6.146540] hid-generic 0003:046D:C018.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:14.0-1/input0
[    6.251114]  sda: sda1 sda2 < sda5 sda6 > sda3 sda4
[    6.287291] ata1.00: Enabling discard_zeroes_data
[    6.323009] [drm] Memory usable by graphics device = 2048M
[    6.323942] sd 0:0:0:0: [sda] supports TCG Opal
[    6.323944] sd 0:0:0:0: [sda] Attached SCSI disk
[    6.429112] checking generic (e0000000 410000) vs hw (e0000000 10000000)
[    6.429113] fb: switching to inteldrmfb from VESA VGA
[    6.464602] Console: switching to colour dummy device 80x25
[    6.464800] [drm] Replacing VGA console driver
[    6.471540] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    6.471546] [drm] Driver supports precise vblank timestamp query.
[    6.473650] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    6.500341] [drm] Initialized i915 1.6.0 20171023 for 0000:00:02.0 on minor 0
[    6.502810] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    6.508389] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input13
[    6.520117] fbcon: inteldrmfb (fb0) is primary device
[    6.592133] psmouse serio4: elantech: assuming hardware version 4 (with firmware version 0x381f17)
[    6.607771] psmouse serio4: elantech: Synaptics capabilities query result 0x10, 0x14, 0x0e.
[    6.622371] psmouse serio4: elantech: Elan sample query result 0f, 19, 75
[    6.725722] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio4/input/input11
[    7.681159] Console: switching to colour frame buffer device 170x48
[    7.698785] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    7.888023] raid6: sse2x1   gen()  5512 MB/s
[    7.936020] raid6: sse2x1   xor()  4294 MB/s
[    7.984025] raid6: sse2x2   gen()  7027 MB/s
[    8.032023] raid6: sse2x2   xor()  4698 MB/s
[    8.080019] raid6: sse2x4   gen()  8055 MB/s
[    8.128021] raid6: sse2x4   xor()  5698 MB/s
[    8.176021] raid6: avx2x1   gen() 10745 MB/s
[    8.224020] raid6: avx2x1   xor()  8071 MB/s
[    8.272019] raid6: avx2x2   gen() 12464 MB/s
[    8.320021] raid6: avx2x2   xor()  8447 MB/s
[    8.368021] raid6: avx2x4   gen() 14334 MB/s
[    8.416019] raid6: avx2x4   xor() 10762 MB/s
[    8.416041] raid6: using algorithm avx2x4 gen() 14334 MB/s
[    8.416066] raid6: .... xor() 10762 MB/s, rmw enabled
[    8.416998] raid6: using avx2x2 recovery algorithm
[    8.421973] xor: automatically using best checksumming function   avx       
[    8.444014] Btrfs loaded, crc32c=crc32c-intel
[    8.503582] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    8.616868] systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
[    8.636172] systemd[1]: Detected architecture x86-64.
[    8.642661] systemd[1]: Set hostname to <john-TP500LA>.
[    8.720699] systemd[1]: Listening on Journal Audit Socket.
[    8.723466] systemd[1]: Reached target Remote File Systems (Pre).
[    8.726197] systemd[1]: Listening on udev Control Socket.
[    8.728910] systemd[1]: Listening on Journal Socket.
[    8.731711] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    8.734454] systemd[1]: Listening on LVM2 metadata daemon socket.
[    8.737198] systemd[1]: Listening on udev Kernel Socket.
[    8.801090] lp: driver loaded but no devices found
[    8.806182] ppdev: user-space parallel port driver
[    8.928556] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[    8.957943] systemd-journald[354]: Received request to flush runtime journal from PID 1
[    9.040385] input: Asus Wireless Radio Control as /devices/LNXSYSTM:00/LNXSYBUS:00/ATK4002:00/input/input14
[    9.115598] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    9.136078] inv-mpu6050-i2c i2c-INVN6500:00: mounting matrix not found: using identity...
[    9.180259] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    9.220953] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    9.225734] asus_wmi: ASUS WMI generic driver loaded
[    9.235074] asus_wmi: Initialization: 0x1
[    9.235194] asus_wmi: BIOS WMI version: 7.9
[    9.235378] asus_wmi: SFUN value: 0x4a0877
[    9.242777] input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input15
[    9.248796] asus_wmi: Number of fans: 1
[    9.303113] mt76xx: loading out-of-tree module taints kernel.
[    9.304201] mt76xx: module verification failed: signature and/or required key missing - tainting kernel
[    9.305031] chip id = 76300002
[    9.309416] Firmware file "mt76x0.bin" Found 
[    9.309419] bulk_tx_ep = 2
[    9.311483] mtk_usb_reset
[    9.315813] ==>MT76x0_WLAN_ChipOnOff(): OnOff:1 pAd->WlanFunCtrl.word = 0x0, Reg-WlanFunCtrl=0xff000202
[    9.315816] WlanFunCtrl.word = 0xffff0203
[    9.315872] MACVersion = 0x76502000
[    9.315880] <== MT76x0_WLAN_ChipOnOff():  pAd->WlanFunCtrl.word = 0xffff0203, Reg->WlanFunCtrl=0xffff0f03!
[    9.315901] MAC_version=0x76300002
[    9.315905] ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 7630, rev 0002 detected
[    9.318220] MAC: 10:08:b1:45:12:3b
[    9.318223] MAC_version=0x76300002
[    9.318224] RFIC =0x7630
[    9.318228] ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 7630 detected
[    9.318229] rt2x00dev->chip.rt = 0x7630
[    9.318230] rt2x00dev->chip.rf = 0x7630
[    9.348074] snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    9.362815] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[    9.363183] -->RTMPAllocTxRxRingMemory
[    9.363208] CTRL Ring: total 512 bytes allocated
[    9.363209] <-- RTMPAllocTxRxRingMemory, Status=0
[    9.373799] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC3236: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    9.373804] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    9.373807] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    9.373810] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[    9.373811] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[    9.373814] snd_hda_codec_realtek hdaudioC1D0:      Mic=0x1b
[    9.395207] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input16
[    9.395300] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input17
[    9.395390] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input18
[    9.395478] input: HDA Intel HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.0/sound/card0/input19
[    9.395561] input: HDA Intel HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.0/sound/card0/input20
[    9.410755] fw version:16.0.151 
[    9.410758] build:370
[    9.410759] build Time =
[    9.410760] 2
[    9.410761] 0
[    9.410762] 1
[    9.410762] 4
[    9.410763] 0
[    9.410764] 4
[    9.410764] 2
[    9.410765] 1
[    9.410766] 1
[    9.410767] 6
[    9.410767] 2
[    9.410768] 9
[    9.410768] _
[    9.410769] _
[    9.410770] _
[    9.410770] _

[    9.410773] ILM length = 334408(bytes)
[    9.410774] DLM length = 47772(bytes)
[    9.410967] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[    9.410969] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    9.410971] RAPL PMU: hw unit of domain package 2^-14 Joules
[    9.410972] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    9.410973] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    9.422274] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input21
[    9.441800] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
[    9.444421] AVX2 version of gcm_enc/dec engaged.
[    9.444423] AES CTR mode by8 optimization enabled
[    9.455157] loading fw
[    9.457112] .
[    9.460358] .
[    9.465992] .
[    9.477008] .
[    9.482202] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
[    9.485861] .
[    9.488730] .
[    9.490739] .
[    9.498430] .
[    9.516382] .
[    9.517507] .
[    9.519563] .
[    9.527284] .
[    9.534738] .
[    9.536252] .
[    9.538892] .
[    9.539892] .
[    9.542937] .
[    9.550687] .
[    9.561844] intel_rapl: Found RAPL domain package
[    9.561846] intel_rapl: Found RAPL domain core
[    9.561848] intel_rapl: Found RAPL domain uncore
[    9.561850] intel_rapl: Found RAPL domain dram
[    9.561854] intel_rapl: RAPL package 0 domain package locked by BIOS
[    9.561860] intel_rapl: RAPL package 0 domain dram locked by BIOS
[    9.562376] .
[    9.563366] .
[    9.564746] .
[    9.565912] .
[    9.567255] .
[    9.567972] .
[    9.567973] loading ILM done
[    9.569185] .
[    9.570144] .
[    9.571740] .
[    9.572397] .
[    9.572399] loading DLM done
[    9.620494] mt7630e 0000:03:00.0 wlp3s0f0: renamed from wlan0
[    9.672249] loading fw success
[    9.673146] mtk_loader: done
[    9.673148] setup_packet in urb: size=8
[    9.673149] 20 
[    9.673150] 00 
[    9.673151] 00 
[    9.673151] 00 
[    9.673152] 00 
[    9.673153] 00 
[    9.673153] 34 
[    9.673154] 00 
[    9.673155] 
               transfer_buffer in urb: size=52
[    9.673156] c3 
[    9.673156] fc 
[    9.673157] 31 
[    9.673158] 01 
[    9.673158] 00 
[    9.673159] 00 
[    9.673160] 00 
[    9.673160] 00 
[    9.673161] 00 
[    9.673162] 00 
[    9.673162] 00 
[    9.673163] 00 
[    9.673164] ff 
[    9.673164] fc 
[    9.673165] 03 
[    9.673165] 00 
[    9.673166] 00 
[    9.673167] 00 
[    9.673167] 00 
[    9.673168] 80 
[    9.673169] 8d 
[    9.673169] 0e 
[    9.673170] 3f 
[    9.673171] 76 
[    9.673171] 05 
[    9.673172] b8 
[    9.673173] 88 
[    9.673173] 00 
[    9.673174] 78 
[    9.673175] 32 
[    9.673175] 64 
[    9.673176] 6c 
[    9.673177] 61 
[    9.673177] 62 
[    9.673178] 65 
[    9.673179] 6c 
[    9.673179] 2d 
[    9.673180] 31 
[    9.673181] 38 
[    9.673181] 2e 
[    9.673182] 33 
[    9.673183] 5c 
[    9.673183] 78 
[    9.673184] 35 
[    9.673185] 63 
[    9.673185] 78 
[    9.673186] 32 
[    9.673187] 30 
[    9.673187] 43 
[    9.673188] 69 
[    9.673189] 6e 
[    9.673189] 6e 
[    9.673190] 
               submit urb:
[    9.673194] usb_send_vendor_hci_cmd: return=0
[    9.673194] mtk_bt_loader_probe: ret = 0
[    9.673264] usbcore: registered new interface driver mtk_bt_loader
[    9.673299] usb_vendor_hci_cmd_complete 
[    9.673548] usb 1-4: USB disconnect, device number 3
[    9.673643] mtk_bt_loader_disconnect
[    9.737277] audit: type=1400 audit(1537897273.275:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=800 comm="apparmor_parser"
[    9.737283] audit: type=1400 audit(1537897273.275:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=800 comm="apparmor_parser"
[    9.737287] audit: type=1400 audit(1537897273.275:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=800 comm="apparmor_parser"
[    9.737290] audit: type=1400 audit(1537897273.275:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=800 comm="apparmor_parser"
[    9.738724] audit: type=1400 audit(1537897273.275:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=799 comm="apparmor_parser"
[    9.738728] audit: type=1400 audit(1537897273.275:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=799 comm="apparmor_parser"
[    9.740523] audit: type=1400 audit(1537897273.279:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/ippusbxd" pid=812 comm="apparmor_parser"
[    9.747264] audit: type=1400 audit(1537897273.283:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=803 comm="apparmor_parser"
[    9.749282] audit: type=1400 audit(1537897273.287:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=818 comm="apparmor_parser"
[    9.753596] audit: type=1400 audit(1537897273.291:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/ntpd" pid=813 comm="apparmor_parser"
[    9.939588] new mount options do not match the existing superblock, will be ignored
[   10.144043] i2c_designware INT33C2:00: controller timed out
[   10.145842] inv-mpu6050-i2c: probe of i2c-INVN6500:00 failed with error -110
[   10.151049] ak8975 i2c-INVN6500:00: mounting matrix not found: using identity...
[   10.151056] ak8975 i2c-INVN6500:00: i2c-INVN6500:00 supply vdd not found, using dummy regulator
[   10.151073] ak8975 i2c-INVN6500:00: i2c-INVN6500:00 supply vid not found, using dummy regulator
[   10.172040] usb 1-4: new high-speed USB device number 4 using xhci_hcd
[   10.325079] usb 1-4: New USB device found, idVendor=0e8d, idProduct=763f
[   10.325084] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   10.325087] usb 1-4: Product: BT
[   10.325090] usb 1-4: Manufacturer: MediaTek
[   10.325092] usb 1-4: SerialNumber: 1.0
[   10.418416] ahci 0000:00:1f.2: port does not support device sleep
[   10.439484] intel_pstate: Turbo disabled by BIOS or unavailable on processor
[   10.511188] ===>rt2x00lib_start
[   10.511222] ==>MT76x0_WLAN_ChipOnOff(): OnOff:1 pAd->WlanFunCtrl.word = 0xffff0203, Reg-WlanFunCtrl=0xffff0103
[   10.511223] Reset(1) WlanFunCtrl.word = 0xffff010f
[   10.511274] Reset(2) WlanFunCtrl.word = 0xffff0103
[   10.511325] WlanFunCtrl.word = 0xffff0103
[   10.511381] MACVersion = 0x76502000
[   10.511388] <== MT76x0_WLAN_ChipOnOff():  pAd->WlanFunCtrl.word = 0xffff0103, Reg->WlanFunCtrl=0xffff0103!
[   10.511446] ASIC is ready
[   10.511454] ieee80211 phy0: rt2x00lib_request_firmware: Info - Loading firmware file 'MT7650E234.bin'
[   10.512603] ieee80211 phy0: rt2x00lib_request_firmware: Info - Firmware detected - version: 112.3
[   10.512621] rt2800_load_firmware: COM_REG0(0x730) = 0x1
[   10.524143] ===>rt2x00lib_enable_radio
[   10.524185] ===>rt2800_enable_radio: 
[   10.524505] reg FCE_PSE_CTRL =x0
[   10.524519] rt2800_init_bbp(): Init BBP Registers MT7630
[   10.525522] BBP version = f000f200
[   10.525524] rt2800_init_bbp(): Init BBP Registers MT7630
[   10.525560] rt2800_init_bbp(): Init BBP Registers MT7630 complete
[   10.525561] ==>rt2800lib_init_queues
[   10.525564] -->TX_RING: Base=0x0x000000003483f000, Cnt=64
[   10.525566] -->TX_RING: Base=0x0x0000000034840000, Cnt=64
[   10.525567] -->TX_RING: Base=0x0x0000000034841000, Cnt=64
[   10.525569] -->TX_RING: Base=0x0x0000000034842000, Cnt=64
[   10.525571] -->RX_RING: Base=0x0x000000003483e000, Cnt=128
[   10.525572] AsicInitTxRxRing
[   10.525574] -->TX_RING_CTRL: Base=0x34820000, Cnt=32!
[   10.525578] <===rt2800lib_init_queues
[   10.525580] MAC 10:08:b1:45:12:3b 
[   10.525588] rt2800_enable_radio -7630 Dual antenna mode
[   10.536759] vboxdrv: Found 4 processor cores
[   10.544032] rt2800_init_rfcsr(): Init RF Registers MT7630
[   10.544437] rt2800_init_rfcsr: B0.R22 = 0x65
[   10.544453] rt2800_init_rfcsr(): Init RF Registers MT7630 complete
[   10.557756] vboxdrv: TSC mode is Invariant, tentative frequency 1895610297 Hz
[   10.557758] vboxdrv: Successfully loaded version 5.2.16 (interface 0x00290001)
[   10.565411] --> AsicCheckCommanFail2 Timeout Command = 2, CmdStatus= 0x0 
[   10.586341] --> AsicCheckCommanFail2 Timeout Command = 3, CmdStatus= 0x0 
[   10.586351] rtmp_bbp_set_rxpath(): rxpath=1, Set AGC1_R0=0x21400, agc_r0=0x21400
[   10.586354] rtmp_bbp_set_txdac(): txdac=0, Set txbe=0x0, txbe_r5=0x0
[   10.596042] set INT_MASK_CSR = 0xdff3ff3
[   10.596044] ==> RTMPEnableRxTx
[   10.596046] ==>  DMAIdle, GloCfg=0x50
[   10.596152] <== WRITE DMA offset 0x208 = 0x75
[   10.596153] <== RTMPEnableRxTx
[   10.596156] 0x1300 = 00064300
[   10.596157] rt2800pci_toggle_irq(1):Check if PDMA is idle!
[   10.596159] ==>  DMAIdle, GloCfg=0x75
[   10.596160] rt2800pci_toggle_irq(2):Check if PDMA is idle!
[   10.596162] ==>  DMAIdle, GloCfg=0x75
[   10.661990] r8169 0000:02:00.1 enp2s0f1: link down
[   10.762608] VBoxNetFlt: Successfully started.
[   10.764393] VBoxNetAdp: Successfully started.
[   10.766448] VBoxPciLinuxInit
[   10.770019] vboxpci: IOMMU not found (not registered)
[   11.168049] i2c_designware INT33C2:00: controller timed out
[   11.168350] ak8975 i2c-INVN6500:00: Error reading WIA
[   11.168353] ak8975 i2c-INVN6500:00: Unexpected device
[   11.168420] ak8975: probe of i2c-INVN6500:00 failed with error -110
[   11.492718] Bluetooth: Core ver 2.22
[   11.492769] NET: Registered protocol family 31
[   11.492771] Bluetooth: HCI device and connection manager initialized
[   11.493468] Bluetooth: HCI socket layer initialized
[   11.493472] Bluetooth: L2CAP socket layer initialized
[   11.493481] Bluetooth: SCO socket layer initialized
[   11.513798] usbcore: registered new interface driver btusb
[   11.712153] Bluetooth: hci0: last event is not cmd complete (0x0f)
[   12.312070] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   12.312073] Bluetooth: BNEP filters: protocol multicast
[   12.312078] Bluetooth: BNEP socket layer initialized
[   12.707022] Bluetooth: hci0: last event is not cmd complete (0x0f)
[   13.201914] wlp3s0f0: authenticate with 74:ea:e8:5c:28:40
[   13.224133] wlp3s0f0: send auth to 74:ea:e8:5c:28:40 (try 1/3)
[   13.226960] wlp3s0f0: authenticated
[   13.228061] wlp3s0f0: associate with 74:ea:e8:5c:28:40 (try 1/3)
[   13.233260] wlp3s0f0: RX AssocResp from 74:ea:e8:5c:28:40 (capab=0x1411 status=0 aid=2)
[   13.233276] ===>rt2800_sta_add:MT7630
[   13.233294] ===>rt2800_sta_add:MT7630   wcid=33
[   13.233295] Connect to AP MAC: 74:ea:e8:5c:28:40 WCID=33
[   13.233302] BtAFHCtl: COEX AFH Start Ch = 31, AFH End Ch = 78, Channel = 11, CentralChannel = 11
[   13.233303] SendAndesAFH: -->
[   13.233305] SendAndesAFH: LinkStatus = 1, BW = 1, Channel = 11, BssHashID = 1, PktLength = 20
[   13.233306] AsicSendCmdToAndes not need  Rsp!!!
[   13.233310] PCIKickOutCmd (TxCpuIdx = 1)
[   13.233311] SendAndesAFH: <--
[   13.233312] SendAndesWLANStatus: -->
[   13.233315] SendAndesWLANStatus: CoexOperation = 4, WlanStatus = 15, PrivilegeTime = 0, BssHashID = 1, PktLength = 16
[   13.233319] ==>INT_SOURCE_CSR_7630_HCCA_DMA_DONE
[   13.233329] AsicSendCmdToAndes not need  Rsp!!!
[   13.233330] PCIKickOutCmd (TxCpuIdx = 2)
[   13.233337] ==>INT_SOURCE_CSR_7630_HCCA_DMA_DONE
[   13.238798] BtAFHCtl: COEX AFH Start Ch = 31, AFH End Ch = 78, Channel = 11, CentralChannel = 11
[   13.238800] SendAndesAFH: -->
[   13.238803] SendAndesAFH: LinkStatus = 1, BW = 1, Channel = 11, BssHashID = 1, PktLength = 20
[   13.238804] AsicSendCmdToAndes not need  Rsp!!!
[   13.238808] PCIKickOutCmd (TxCpuIdx = 3)
[   13.238809] SendAndesAFH: <--
[   13.238816] ==>INT_SOURCE_CSR_7630_HCCA_DMA_DONE
[   13.244039] wlp3s0f0: associated
[   29.666152] usb 1-1: USB disconnect, device number 2
[   31.927337] usb 1-1: new low-speed USB device number 5 using xhci_hcd
[   32.079088] usb 1-1: New USB device found, idVendor=046d, idProduct=c018
[   32.079091] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   32.079093] usb 1-1: Product: USB Optical Mouse
[   32.079095] usb 1-1: Manufacturer: Logitech
[   32.081867] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:046D:C018.0002/input/input22
[   32.139560] hid-generic 0003:046D:C018.0002: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:14.0-1/input0
[   36.709781] random: crng init done
[   36.709784] random: 7 urandom warning(s) missed due to ratelimiting
john@john-TP500LA ~ $ 
LM21.3 Cinnamon ASUS FX705GM | Donate to Mint https://www.patreon.com/linux_mint
Image
Locked

Return to “Hardware Support”