You are not logged in.
As in the thread https://bbs.archlinux.org/viewtopic.php?id=146006 (only that I do not have any encryption on my drive) I cannot get my ThinkPad W530 booting (I have installed via EFI) with Discrete graphics mode (set in BIOS). NVIDIA Optimus works with optirun and Integrated graphics works fine but I cannot start with Discrete graphics.
I want to do this since I cannot connect an external monitor to my computer at all right now (the Mini DisplayPort and VGA adapter are only physically connected to the NVIDIA card). I have tried following several more or less incomplete guides on how to start a second X server with bumblebee but I cannot get those working and do not see two X servers a a good solution. I want a virtual display that spans over two monitors. I tried booting the computer with an Ubuntu Live USB stick and it automatically connected and used both monitors (when I set Discrete graphics in the BIOS) even in the installation process, and I can run games like StarCraft II just fine on my Arch install with optirun (when I set NVIDIA Optimus in the BIOS) so the hardware seems to work just fine.
When I boot the regular Arch linux kernel (3.17.1-1-ARCH) with Discrete graphics I get to the message "Loading initial ramdisk...", then the screen turns black. My system is using GDM for login and Gnome as window manager.
I managed to login blindly (not sure if it was through GDM or Ctrl + Alt + F2 since I tried both) during the black screen and execute a command that I later found in my .zsh_history file and I also can see that the drive access led is blinking a while after the black screen so it seems that the system has not hanged entirely. If I disable GDM the screen does not turn black but freezes at the "Loading initial ramdisk..." output.
My /boot/grub/grub.cfg file is (I am not trying to boot with the linux-ck or linux-rt kernel that I also have installed):
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="4"
fi
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
}
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_gpt
insmod ext2
set root='hd0,gpt3'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3 25086a9b-a542-4018-9f71-4f492f09be91
else
search --no-floppy --fs-uuid --set=root 25086a9b-a542-4018-9f71-4f492f09be91
fi
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=auto
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=sv_SE
insmod gettext
fi
terminal_input console
terminal_output gfxterm
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=5
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-25086a9b-a542-4018-9f71-4f492f09be91' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 B1C0-6D51
else
search --no-floppy --fs-uuid --set=root B1C0-6D51
fi
echo 'Läser in Linux linux-rt ...'
linux /vmlinuz-linux-rt root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
echo 'Läser in initial ramdisk ...'
initrd /intel-ucode.img /initramfs-linux-rt.img
}
submenu 'Avancerade flaggor för Arch Linux' $menuentry_id_option 'gnulinux-advanced-25086a9b-a542-4018-9f71-4f492f09be91' {
menuentry 'Arch Linux, med Linux linux-rt' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-rt-advanced-25086a9b-a542-4018-9f71-4f492f09be91' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 B1C0-6D51
else
search --no-floppy --fs-uuid --set=root B1C0-6D51
fi
echo 'Läser in Linux linux-rt ...'
linux /vmlinuz-linux-rt root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
echo 'Läser in initial ramdisk ...'
initrd /intel-ucode.img /initramfs-linux-rt.img
}
menuentry 'Arch Linux, with Linux linux-rt (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-rt-fallback-25086a9b-a542-4018-9f71-4f492f09be91' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 B1C0-6D51
else
search --no-floppy --fs-uuid --set=root B1C0-6D51
fi
echo 'Läser in Linux linux-rt ...'
linux /vmlinuz-linux-rt root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
echo 'Läser in initial ramdisk ...'
initrd /intel-ucode.img /initramfs-linux-rt-fallback.img
}
menuentry 'Arch Linux, med Linux linux-ck' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-ck-advanced-25086a9b-a542-4018-9f71-4f492f09be91' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 B1C0-6D51
else
search --no-floppy --fs-uuid --set=root B1C0-6D51
fi
echo 'Läser in Linux linux-ck ...'
linux /vmlinuz-linux-ck root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
echo 'Läser in initial ramdisk ...'
initrd /intel-ucode.img /initramfs-linux-ck.img
}
menuentry 'Arch Linux, with Linux linux-ck (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-ck-fallback-25086a9b-a542-4018-9f71-4f492f09be91' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 B1C0-6D51
else
search --no-floppy --fs-uuid --set=root B1C0-6D51
fi
echo 'Läser in Linux linux-ck ...'
linux /vmlinuz-linux-ck root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
echo 'Läser in initial ramdisk ...'
initrd /intel-ucode.img /initramfs-linux-ck-fallback.img
}
menuentry 'Arch Linux, med Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-25086a9b-a542-4018-9f71-4f492f09be91' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 B1C0-6D51
else
search --no-floppy --fs-uuid --set=root B1C0-6D51
fi
echo 'Läser in Linux linux ...'
linux /vmlinuz-linux root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
echo 'Läser in initial ramdisk ...'
initrd /intel-ucode.img /initramfs-linux.img
}
menuentry 'Arch Linux, with Linux linux (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-25086a9b-a542-4018-9f71-4f492f09be91' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 B1C0-6D51
else
search --no-floppy --fs-uuid --set=root B1C0-6D51
fi
echo 'Läser in Linux linux ...'
linux /vmlinuz-linux root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
echo 'Läser in initial ramdisk ...'
initrd /intel-ucode.img /initramfs-linux-fallback.img
}
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
### BEGIN /etc/grub.d/60_memtest86+ ###
### END /etc/grub.d/60_memtest86+ ###Is the error with GRUB, with the kernel, with the NVIDIA drivers or with Xorg? How can I debug and fix this once and for all?
UPDATE:
I have managed to login to the computer when it has reached the black screen via SSH with my phone and got the dmesg output:
[ 0.000000] CPU0 microcode updated early to revision 0x1b, date = 2014-05-29
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 3.17.1-1-ARCH (nobody@var-lib-archbuild-testing-x86_64-tobias) (gcc version 4.9.1 20140903 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Oct 15 15:04:35 CEST 2014
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009cfff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009d000-0x00000000000bffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cbc6ffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000cbc70000-0x00000000cbe71fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000cbe72000-0x00000000db14efff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000db14f000-0x00000000db34efff] type 20
[ 0.000000] BIOS-e820: [mem 0x00000000db34f000-0x00000000df69efff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000df69f000-0x00000000df79efff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000df79f000-0x00000000df7fefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000df7ff000-0x00000000df7fffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000df800000-0x00000000dfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000021dffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] efi: EFI v2.31 by Lenovo
[ 0.000000] efi: ACPI 2.0=0xdf7fe014 ACPI=0xdf7fe000 SMBIOS=0xdf69e000
[ 0.000000] efi: mem00: type=7, attr=0xf, range=[0x0000000000000000-0x0000000000087000) (0MB)
[ 0.000000] efi: mem01: type=4, attr=0xf, range=[0x0000000000087000-0x0000000000088000) (0MB)
[ 0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000088000-0x000000000009d000) (0MB)
[ 0.000000] efi: mem03: type=0, attr=0xf, range=[0x000000000009d000-0x00000000000a0000) (0MB)
[ 0.000000] efi: mem04: type=2, attr=0xf, range=[0x0000000000100000-0x0000000001053000) (15MB)
[ 0.000000] efi: mem05: type=7, attr=0xf, range=[0x0000000001053000-0x0000000002000000) (15MB)
[ 0.000000] efi: mem06: type=2, attr=0xf, range=[0x0000000002000000-0x0000000002f53000) (15MB)
[ 0.000000] efi: mem07: type=7, attr=0xf, range=[0x0000000002f53000-0x0000000037834000) (840MB)
[ 0.000000] efi: mem08: type=2, attr=0xf, range=[0x0000000037834000-0x0000000037c12000) (3MB)
[ 0.000000] efi: mem09: type=7, attr=0xf, range=[0x0000000037c12000-0x0000000093e96000) (1474MB)
[ 0.000000] efi: mem10: type=2, attr=0xf, range=[0x0000000093e96000-0x00000000c9841000) (857MB)
[ 0.000000] efi: mem11: type=4, attr=0xf, range=[0x00000000c9841000-0x00000000c9861000) (0MB)
[ 0.000000] efi: mem12: type=7, attr=0xf, range=[0x00000000c9861000-0x00000000cbc5a000) (35MB)
[ 0.000000] efi: mem13: type=4, attr=0xf, range=[0x00000000cbc5a000-0x00000000cbc70000) (0MB)
[ 0.000000] efi: mem14: type=0, attr=0xf, range=[0x00000000cbc70000-0x00000000cbe72000) (2MB)
[ 0.000000] efi: mem15: type=4, attr=0xf, range=[0x00000000cbe72000-0x00000000cc831000) (9MB)
[ 0.000000] efi: mem16: type=7, attr=0xf, range=[0x00000000cc831000-0x00000000ccce0000) (4MB)
[ 0.000000] efi: mem17: type=1, attr=0xf, range=[0x00000000ccce0000-0x00000000cccfd000) (0MB)
[ 0.000000] efi: mem18: type=7, attr=0xf, range=[0x00000000cccfd000-0x00000000cec6f000) (31MB)
[ 0.000000] efi: mem19: type=4, attr=0xf, range=[0x00000000cec6f000-0x00000000cec70000) (0MB)
[ 0.000000] efi: mem20: type=7, attr=0xf, range=[0x00000000cec70000-0x00000000cec81000) (0MB)
[ 0.000000] efi: mem21: type=4, attr=0xf, range=[0x00000000cec81000-0x00000000d0974000) (28MB)
[ 0.000000] efi: mem22: type=7, attr=0xf, range=[0x00000000d0974000-0x00000000d0986000) (0MB)
[ 0.000000] efi: mem23: type=4, attr=0xf, range=[0x00000000d0986000-0x00000000d254f000) (27MB)
[ 0.000000] efi: mem24: type=7, attr=0xf, range=[0x00000000d254f000-0x00000000dac78000) (135MB)
[ 0.000000] efi: mem25: type=2, attr=0xf, range=[0x00000000dac78000-0x00000000dac82000) (0MB)
[ 0.000000] efi: mem26: type=3, attr=0xf, range=[0x00000000dac82000-0x00000000db14f000) (4MB)
[ 0.000000] efi: mem27: type=5, attr=0x800000000000000f, range=[0x00000000db14f000-0x00000000db228000) (0MB)
[ 0.000000] efi: mem28: type=5, attr=0x800000000000000f, range=[0x00000000db228000-0x00000000db34f000) (1MB)
[ 0.000000] efi: mem29: type=6, attr=0x800000000000000f, range=[0x00000000db34f000-0x00000000dbef8000) (11MB)
[ 0.000000] efi: mem30: type=6, attr=0x800000000000000f, range=[0x00000000dbef8000-0x00000000ded9f000) (46MB)
[ 0.000000] efi: mem31: type=0, attr=0xf, range=[0x00000000ded9f000-0x00000000df3f0000) (6MB)
[ 0.000000] efi: mem32: type=0, attr=0xf, range=[0x00000000df3f0000-0x00000000df69b000) (2MB)
[ 0.000000] efi: mem33: type=0, attr=0xf, range=[0x00000000df69b000-0x00000000df69d000) (0MB)
[ 0.000000] efi: mem34: type=0, attr=0xf, range=[0x00000000df69d000-0x00000000df69f000) (0MB)
[ 0.000000] efi: mem35: type=10, attr=0xf, range=[0x00000000df69f000-0x00000000df6f0000) (0MB)
[ 0.000000] efi: mem36: type=10, attr=0xf, range=[0x00000000df6f0000-0x00000000df79f000) (0MB)
[ 0.000000] efi: mem37: type=9, attr=0xf, range=[0x00000000df79f000-0x00000000df7d7000) (0MB)
[ 0.000000] efi: mem38: type=9, attr=0xf, range=[0x00000000df7d7000-0x00000000df7ff000) (0MB)
[ 0.000000] efi: mem39: type=4, attr=0xf, range=[0x00000000df7ff000-0x00000000df800000) (0MB)
[ 0.000000] efi: mem40: type=7, attr=0xf, range=[0x0000000100000000-0x000000021e000000) (4576MB)
[ 0.000000] efi: mem41: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[ 0.000000] efi: mem42: type=0, attr=0x0, range=[0x00000000df800000-0x00000000e0000000) (8MB)
[ 0.000000] efi: mem43: type=11, attr=0x8000000000000001, range=[0x00000000f80f8000-0x00000000f80f9000) (0MB)
[ 0.000000] efi: mem44: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[ 0.000000] SMBIOS 2.7 present.
[ 0.000000] DMI: LENOVO 244759G/244759G, BIOS G5ET92WW (2.52 ) 02/27/2013
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] AGP: No AGP bridge found
[ 0.000000] e820: last_pfn = 0x21e000 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-FFFFF uncachable
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 0FFC00000 mask FFFC00000 write-protect
[ 0.000000] 1 base 000000000 mask F80000000 write-back
[ 0.000000] 2 base 080000000 mask FC0000000 write-back
[ 0.000000] 3 base 0C0000000 mask FE0000000 write-back
[ 0.000000] 4 base 0DF800000 mask FFF800000 uncachable
[ 0.000000] 5 base 100000000 mask F00000000 write-back
[ 0.000000] 6 base 200000000 mask FE0000000 write-back
[ 0.000000] 7 base 21E000000 mask FFE000000 uncachable
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] e820: last_pfn = 0xdf800 max_arch_pfn = 0x400000000
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[ 0.000000] [mem 0x00000000-0x000fffff] page 4k
[ 0.000000] BRK [0x02b2f000, 0x02b2ffff] PGTABLE
[ 0.000000] BRK [0x02b30000, 0x02b30fff] PGTABLE
[ 0.000000] BRK [0x02b31000, 0x02b31fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x21de00000-0x21dffffff]
[ 0.000000] [mem 0x21de00000-0x21dffffff] page 2M
[ 0.000000] BRK [0x02b32000, 0x02b32fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x21c000000-0x21ddfffff]
[ 0.000000] [mem 0x21c000000-0x21ddfffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x200000000-0x21bffffff]
[ 0.000000] [mem 0x200000000-0x21bffffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x00100000-0xcbc6ffff]
[ 0.000000] [mem 0x00100000-0x001fffff] page 4k
[ 0.000000] [mem 0x00200000-0xcbbfffff] page 2M
[ 0.000000] [mem 0xcbc00000-0xcbc6ffff] page 4k
[ 0.000000] init_memory_mapping: [mem 0xcbe72000-0xdb14efff]
[ 0.000000] [mem 0xcbe72000-0xcbffffff] page 4k
[ 0.000000] [mem 0xcc000000-0xdaffffff] page 2M
[ 0.000000] [mem 0xdb000000-0xdb14efff] page 4k
[ 0.000000] BRK [0x02b33000, 0x02b33fff] PGTABLE
[ 0.000000] BRK [0x02b34000, 0x02b34fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0xdf7ff000-0xdf7fffff]
[ 0.000000] [mem 0xdf7ff000-0xdf7fffff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
[ 0.000000] [mem 0x100000000-0x1ffffffff] page 2M
[ 0.000000] RAMDISK: [mem 0x37834000-0x37c11fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000DF7FE014 000024 (v02 LENOVO)
[ 0.000000] ACPI: XSDT 0x00000000DF7FE170 0000CC (v01 LENOVO TP-G5 00002520 PTL 00000002)
[ 0.000000] ACPI: FACP 0x00000000DF7E6000 00010C (v05 LENOVO TP-G5 00002520 PTL 00000002)
[ 0.000000] ACPI: DSDT 0x00000000DF7E8000 010A68 (v01 LENOVO TP-G5 00002520 INTL 20061109)
[ 0.000000] ACPI: FACS 0x00000000DF754000 000040
[ 0.000000] ACPI: SLIC 0x00000000DF7FD000 000176 (v01 LENOVO TP-G5 00002520 PTL 00000001)
[ 0.000000] ACPI: TCPA 0x00000000DF7FC000 000032 (v02 PTL LENOVO 06040000 LNVO 00000001)
[ 0.000000] ACPI: SSDT 0x00000000DF7FB000 000408 (v01 LENOVO TP-SSDT2 00000200 INTL 20061109)
[ 0.000000] ACPI: SSDT 0x00000000DF7FA000 000033 (v01 LENOVO TP-SSDT1 00000100 INTL 20061109)
[ 0.000000] ACPI: SSDT 0x00000000DF7F9000 000797 (v01 LENOVO SataAhci 00001000 INTL 20061109)
[ 0.000000] ACPI: HPET 0x00000000DF7E4000 000038 (v01 LENOVO TP-G5 00002520 PTL 00000002)
[ 0.000000] ACPI: APIC 0x00000000DF7E3000 000098 (v01 LENOVO TP-G5 00002520 PTL 00000002)
[ 0.000000] ACPI: MCFG 0x00000000DF7E2000 00003C (v01 LENOVO TP-G5 00002520 PTL 00000002)
[ 0.000000] ACPI: ECDT 0x00000000DF7E1000 000052 (v01 LENOVO TP-G5 00002520 PTL 00000002)
[ 0.000000] ACPI: FPDT 0x00000000DF7E0000 000064 (v01 LENOVO TP-G5 00002520 PTL 00000002)
[ 0.000000] ACPI: ASF! 0x00000000DF7E7000 0000A5 (v32 LENOVO TP-G5 00002520 PTL 00000002)
[ 0.000000] ACPI: UEFI 0x00000000DF7DF000 00003E (v01 LENOVO TP-G5 00002520 PTL 00000002)
[ 0.000000] ACPI: UEFI 0x00000000DF7DE000 000042 (v01 PTL COMBUF 00000001 PTL 00000001)
[ 0.000000] ACPI: MSDM 0x00000000DF7DD000 000055 (v03 LENOVO TP-G5 00002520 PTL 00000002)
[ 0.000000] ACPI: SSDT 0x00000000DF7DC000 000D23 (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
[ 0.000000] ACPI: SSDT 0x00000000DF7DB000 000A83 (v01 PmRef CpuPm 00003000 INTL 20061109)
[ 0.000000] ACPI: DMAR 0x00000000DF7DA000 000080 (v01 INTEL SNB 00000001 INTL 00000001)
[ 0.000000] ACPI: UEFI 0x00000000DF7D9000 0002A6 (v01 LENOVO TP-G5 00002520 PTL 00000002)
[ 0.000000] ACPI: DBG2 0x00000000DF7D8000 0000E9 (v00 LENOVO TP-G5 00002520 PTL 00000002)
[ 0.000000] ACPI: BGRT 0x00000000DF7D7000 000038 (v00 LENOVO TP-G5 00002520 PTL 00000002)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000021dffffff]
[ 0.000000] Initmem setup node 0 [mem 0x00000000-0x21dffffff]
[ 0.000000] NODE_DATA [mem 0x21dff3000-0x21dff6fff]
[ 0.000000] [ffffea0000000000-ffffea00087fffff] PMD -> [ffff880215600000-ffff88021d5fffff] on node 0
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x00001000-0x00ffffff]
[ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
[ 0.000000] Normal [mem 0x100000000-0x21dffffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
[ 0.000000] node 0: [mem 0x00100000-0xcbc6ffff]
[ 0.000000] node 0: [mem 0xcbe72000-0xdb14efff]
[ 0.000000] node 0: [mem 0xdf7ff000-0xdf7fffff]
[ 0.000000] node 0: [mem 0x100000000-0x21dffffff]
[ 0.000000] On node 0 totalpages: 2068202
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 23 pages reserved
[ 0.000000] DMA zone: 3996 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 13950 pages used for memmap
[ 0.000000] DMA32 zone: 892750 pages, LIFO batch:31
[ 0.000000] Normal zone: 18304 pages used for memmap
[ 0.000000] Normal zone: 1171456 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x408
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[ 0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x000bffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xcbc70000-0xcbe71fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdb14f000-0xdb34efff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdb34f000-0xdf69efff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdf69f000-0xdf79efff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdf79f000-0xdf7fefff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdf800000-0xdfffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xf80f7fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xf80f8000-0xf80f8fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xf80f9000-0xfed1bfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xffffffff]
[ 0.000000] e820: [mem 0xe0000000-0xf80f7fff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88021dc00000 s86848 r8192 d23744 u262144
[ 0.000000] pcpu-alloc: s86848 r8192 d23744 u262144 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2035861
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[ 0.000000] AGP: Checking aperture...
[ 0.000000] AGP: No AGP bridge found
[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[ 0.000000] Memory: 7985704K/8272808K available (5381K kernel code, 909K rwdata, 1712K rodata, 1140K init, 1176K bss, 287104K reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.000000] Preemptible hierarchical RCU implementation.
[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
[ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
[ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[ 0.000000] NR_IRQS:8448 nr_irqs:488 0
[ 0.000000] Console: colour dummy device 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] allocated 33554432 bytes of page_cgroup
[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 2793.799 MHz processor
[ 0.000031] Calibrating delay loop (skipped), value calculated using timer frequency.. 5589.41 BogoMIPS (lpj=9312663)
[ 0.000033] pid_max: default: 32768 minimum: 301
[ 0.000039] ACPI: Core revision 20140724
[ 0.009889] ACPI: All ACPI Tables successfully acquired
[ 0.041073] Security Framework initialized
[ 0.041080] Yama: becoming mindful.
[ 0.041501] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[ 0.043224] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.044022] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
[ 0.044030] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
[ 0.044222] Initializing cgroup subsys memory
[ 0.044227] Initializing cgroup subsys devices
[ 0.044229] Initializing cgroup subsys freezer
[ 0.044231] Initializing cgroup subsys net_cls
[ 0.044232] Initializing cgroup subsys blkio
[ 0.044251] CPU: Physical Processor ID: 0
[ 0.044251] CPU: Processor Core ID: 0
[ 0.044256] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.044576] mce: CPU supports 9 MCE banks
[ 0.044587] CPU0: Thermal monitoring enabled (TM1)
[ 0.044597] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[ 0.044696] Freeing SMP alternatives memory: 20K (ffffffff81a02000 - ffffffff81a07000)
[ 0.047190] ftrace: allocating 20674 entries in 81 pages
[ 0.055722] dmar: Host address width 36
[ 0.055724] dmar: DRHD base: 0x000000fed90000 flags: 0x1
[ 0.055728] dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c9008020660262 ecap f0105a
[ 0.055729] dmar: RMRR base: 0x000000debba000 end: 0x000000debd0fff
[ 0.055802] IOAPIC id 2 under DRHD base 0xfed90000 IOMMU 0
[ 0.055803] HPET id 0 under DRHD base 0xfed90000
[ 0.055804] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.055890] Enabled IRQ remapping in x2apic mode
[ 0.055891] Enabling x2apic
[ 0.055892] Enabled x2apic
[ 0.055900] Switched APIC routing to cluster x2apic.
[ 0.056343] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.089389] smpboot: CPU0: Intel(R) Core(TM) i7-3840QM CPU @ 2.80GHz (fam: 06, model: 3a, stepping: 09)
[ 0.089397] TSC deadline timer enabled
[ 0.089416] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
[ 0.089433] ... version: 3
[ 0.089434] ... bit width: 48
[ 0.089435] ... generic registers: 4
[ 0.089436] ... value mask: 0000ffffffffffff
[ 0.089436] ... max period: 0000ffffffffffff
[ 0.089437] ... fixed-purpose events: 3
[ 0.089438] ... event mask: 000000070000000f
[ 0.109521] x86: Booting SMP configuration:
[ 0.109522] .... node #0, CPUs: #1
[ 0.123229] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.129911] #2
[ 0.140575] CPU2 microcode updated early to revision 0x1b, date = 2014-05-29
[ 0.150115] #3
[ 0.166977] #4
[ 0.177626] CPU4 microcode updated early to revision 0x1b, date = 2014-05-29
[ 0.187180] #5
[ 0.207384] #6
[ 0.218032] CPU6 microcode updated early to revision 0x1b, date = 2014-05-29
[ 0.227588] #7
[ 0.241051] x86: Booted up 1 node, 8 CPUs
[ 0.241055] smpboot: Total of 8 processors activated (44718.31 BogoMIPS)
[ 0.248684] devtmpfs: initialized
[ 0.250902] PM: Registering ACPI NVS region [mem 0xdf69f000-0xdf79efff] (1048576 bytes)
[ 0.251609] pinctrl core: initialized pinctrl subsystem
[ 0.251647] RTC time: 16:26:11, date: 10/27/14
[ 0.251717] NET: Registered protocol family 16
[ 0.251810] cpuidle: using governor ladder
[ 0.251813] cpuidle: using governor menu
[ 0.251841] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.251843] ACPI: bus type PCI registered
[ 0.251844] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.252033] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 0.252035] PCI: not using MMCONFIG
[ 0.252036] PCI: Using configuration type 1 for base access
[ 0.265514] ACPI: Added _OSI(Module Device)
[ 0.265515] ACPI: Added _OSI(Processor Device)
[ 0.265516] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.265517] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.266718] ACPI : EC: EC description table is found, configuring boot EC
[ 0.270105] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[ 0.309157] ACPI: Dynamic OEM Table Load:
[ 0.309168] ACPI: SSDT 0xFFFF880211C58000 000A01 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
[ 0.325525] ACPI: Dynamic OEM Table Load:
[ 0.325534] ACPI: SSDT 0xFFFF880211D29000 000303 (v01 PmRef ApIst 00003000 INTL 20061109)
[ 0.338781] ACPI: Dynamic OEM Table Load:
[ 0.338789] ACPI: SSDT 0xFFFF880211FBC000 000119 (v01 PmRef ApCst 00003000 INTL 20061109)
[ 0.352988] ACPI: Interpreter enabled
[ 0.352993] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
[ 0.352997] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
[ 0.353007] ACPI: (supports S0 S3 S4 S5)
[ 0.353008] ACPI: Using IOAPIC for interrupt routing
[ 0.353019] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 0.362314] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
[ 0.362393] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.364496] ACPI: Power Resource [PUBS] (on)
[ 0.365000] acpi PNP0C0A:01: ACPI dock station (docks/bays count: 1)
[ 0.365725] acpi LNXIOBAY:00: ACPI dock station (docks/bays count: 2)
[ 0.367751] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[ 0.367805] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[ 0.367859] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[ 0.367910] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[ 0.367961] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[ 0.368011] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[ 0.368064] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[ 0.368114] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[ 0.368182] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
[ 0.368186] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.368265] acpi PNP0A08:00: _OSC: platform does not support [PCIeCapability]
[ 0.368301] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
[ 0.368303] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
[ 0.368305] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER]
[ 0.368306] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
[ 0.368436] PCI host bridge to bus 0000:00
[ 0.368438] pci_bus 0000:00: root bus resource [bus 00-3f]
[ 0.368440] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
[ 0.368441] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
[ 0.368443] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[ 0.368444] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
[ 0.368445] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
[ 0.368446] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
[ 0.368448] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
[ 0.368449] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
[ 0.368450] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[ 0.368451] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[ 0.368452] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
[ 0.368454] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
[ 0.368455] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
[ 0.368456] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
[ 0.368457] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
[ 0.368459] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfebfffff]
[ 0.368460] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff]
[ 0.368466] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[ 0.368530] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
[ 0.368561] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.368637] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[ 0.368661] pci 0000:00:14.0: reg 0x10: [mem 0xf4220000-0xf422ffff 64bit]
[ 0.368730] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.368759] pci 0000:00:14.0: System wakeup disabled by ACPI
[ 0.368797] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[ 0.368821] pci 0000:00:16.0: reg 0x10: [mem 0xf4235000-0xf423500f 64bit]
[ 0.368896] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.368954] pci 0000:00:16.3: [8086:1e3d] type 00 class 0x070002
[ 0.368972] pci 0000:00:16.3: reg 0x10: [io 0x5070-0x5077]
[ 0.368981] pci 0000:00:16.3: reg 0x14: [mem 0xf423c000-0xf423cfff]
[ 0.369103] pci 0000:00:19.0: [8086:1502] type 00 class 0x020000
[ 0.369120] pci 0000:00:19.0: reg 0x10: [mem 0xf4200000-0xf421ffff]
[ 0.369127] pci 0000:00:19.0: reg 0x14: [mem 0xf423b000-0xf423bfff]
[ 0.369135] pci 0000:00:19.0: reg 0x18: [io 0x5040-0x505f]
[ 0.369194] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[ 0.369219] pci 0000:00:19.0: System wakeup disabled by ACPI
[ 0.369256] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[ 0.369276] pci 0000:00:1a.0: reg 0x10: [mem 0xf423a000-0xf423a3ff]
[ 0.369363] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.369389] pci 0000:00:1a.0: System wakeup disabled by ACPI
[ 0.369426] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[ 0.369442] pci 0000:00:1b.0: reg 0x10: [mem 0xf4230000-0xf4233fff 64bit]
[ 0.369514] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.369544] pci 0000:00:1b.0: System wakeup disabled by ACPI
[ 0.369581] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[ 0.369718] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.369792] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[ 0.369927] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.370005] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[ 0.370025] pci 0000:00:1d.0: reg 0x10: [mem 0xf4239000-0xf42393ff]
[ 0.370111] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.370137] pci 0000:00:1d.0: System wakeup disabled by ACPI
[ 0.370171] pci 0000:00:1f.0: [8086:1e55] type 00 class 0x060100
[ 0.370322] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[ 0.370339] pci 0000:00:1f.2: reg 0x10: [io 0x5068-0x506f]
[ 0.370346] pci 0000:00:1f.2: reg 0x14: [io 0x507c-0x507f]
[ 0.370354] pci 0000:00:1f.2: reg 0x18: [io 0x5060-0x5067]
[ 0.370361] pci 0000:00:1f.2: reg 0x1c: [io 0x5078-0x507b]
[ 0.370368] pci 0000:00:1f.2: reg 0x20: [io 0x5020-0x503f]
[ 0.370376] pci 0000:00:1f.2: reg 0x24: [mem 0xf4238000-0xf42387ff]
[ 0.370419] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.370472] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[ 0.370487] pci 0000:00:1f.3: reg 0x10: [mem 0xf4234000-0xf42340ff 64bit]
[ 0.370507] pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf]
[ 0.370616] pci 0000:01:00.0: [10de:0ffb] type 00 class 0x030000
[ 0.370627] pci 0000:01:00.0: reg 0x10: [mem 0xf2000000-0xf2ffffff]
[ 0.370637] pci 0000:01:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.370646] pci 0000:01:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
[ 0.370653] pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
[ 0.370660] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[ 0.370746] pci 0000:01:00.1: [10de:0e1b] type 00 class 0x040300
[ 0.370756] pci 0000:01:00.1: reg 0x10: [mem 0xf3000000-0xf3003fff]
[ 1.377401] pci 0000:00:01.0: ASPM: Could not configure common clock
[ 1.377430] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 1.377435] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
[ 1.377440] pci 0000:00:01.0: bridge window [mem 0xf2000000-0xf30fffff]
[ 1.377454] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
[ 1.377615] pci 0000:02:00.0: [1180:e823] type 00 class 0x088001
[ 1.377638] pci 0000:02:00.0: MMC controller base frequency changed to 50Mhz.
[ 1.377665] pci 0000:02:00.0: reg 0x10: [mem 0xf3a00000-0xf3a000ff]
[ 1.377889] pci 0000:02:00.0: supports D1 D2
[ 1.377890] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1.384191] pci 0000:00:1c.0: PCI bridge to [bus 02]
[ 1.384195] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
[ 1.384198] pci 0000:00:1c.0: bridge window [mem 0xf3a00000-0xf41fffff]
[ 1.384207] pci 0000:00:1c.0: bridge window [mem 0xf3100000-0xf38fffff 64bit pref]
[ 1.384435] pci 0000:03:00.0: [8086:4238] type 00 class 0x028000
[ 1.384618] pci 0000:03:00.0: reg 0x10: [mem 0xf3900000-0xf3901fff 64bit]
[ 1.385377] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 1.390878] pci 0000:00:1c.1: PCI bridge to [bus 03]
[ 1.390887] pci 0000:00:1c.1: bridge window [mem 0xf3900000-0xf39fffff]
[ 1.391702] ACPI: Enabled 4 GPEs in block 00 to 3F
[ 1.391749] ACPI : EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
[ 1.391838] vgaarb: setting as boot device: PCI:0000:01:00.0
[ 1.391840] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[ 1.391841] vgaarb: loaded
[ 1.391842] vgaarb: bridge control possible 0000:01:00.0
[ 1.391888] PCI: Using ACPI for IRQ routing
[ 1.393360] PCI: pci_cache_line_size set to 64 bytes
[ 1.393563] e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
[ 1.393565] e820: reserve RAM buffer [mem 0xcbc70000-0xcbffffff]
[ 1.393566] e820: reserve RAM buffer [mem 0xdb14f000-0xdbffffff]
[ 1.393567] e820: reserve RAM buffer [mem 0xdf800000-0xdfffffff]
[ 1.393568] e820: reserve RAM buffer [mem 0x21e000000-0x21fffffff]
[ 1.393651] NetLabel: Initializing
[ 1.393652] NetLabel: domain hash size = 128
[ 1.393653] NetLabel: protocols = UNLABELED CIPSOv4
[ 1.393662] NetLabel: unlabeled traffic allowed by default
[ 1.393685] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 1.393689] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 1.396725] Switched to clocksource hpet
[ 1.400615] pnp: PnP ACPI init
[ 1.400875] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
[ 1.400878] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
[ 1.400879] system 00:00: [mem 0x00100000-0xdfffffff] could not be reserved
[ 1.400881] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
[ 1.400883] system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
[ 1.400885] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 1.400948] pnp 00:01: disabling [mem 0xfffff000-0xffffffff] because it overlaps 0000:01:00.0 BAR 6 [mem 0xfff80000-0xffffffff pref]
[ 1.400954] pnp 00:01: [Firmware Bug]: PNP resource [mem 0xfed10000-0xfed13fff] covers only part of 0000:00:00.0 Intel MCH; extending to [mem 0xfed10000-0xfed17fff]
[ 1.400969] system 00:01: [io 0x0400-0x047f] could not be reserved
[ 1.400971] system 00:01: [io 0x0500-0x057f] has been reserved
[ 1.400972] system 00:01: [io 0x0800-0x080f] has been reserved
[ 1.400974] system 00:01: [io 0x15e0-0x15ef] has been reserved
[ 1.400975] system 00:01: [io 0x1600-0x167f] has been reserved
[ 1.400977] system 00:01: [mem 0xf8000000-0xfbffffff] could not be reserved
[ 1.400979] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 1.400980] system 00:01: [mem 0xfed10000-0xfed17fff] has been reserved
[ 1.400982] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
[ 1.400983] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
[ 1.400985] system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
[ 1.400987] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 1.401030] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 1.401057] pnp 00:03: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active)
[ 1.401080] pnp 00:04: Plug and Play ACPI device, IDs LEN0015 PNP0f13 (active)
[ 1.401117] pnp 00:05: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active)
[ 1.401508] pnp: PnP ACPI: found 6 devices
[ 1.408246] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[ 1.408283] pci 0000:01:00.0: BAR 6: assigned [mem 0xf3080000-0xf30fffff pref]
[ 1.408285] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 1.408288] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
[ 1.408290] pci 0000:00:01.0: bridge window [mem 0xf2000000-0xf30fffff]
[ 1.408292] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
[ 1.408295] pci 0000:00:1c.0: PCI bridge to [bus 02]
[ 1.408301] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
[ 1.408308] pci 0000:00:1c.0: bridge window [mem 0xf3a00000-0xf41fffff]
[ 1.408313] pci 0000:00:1c.0: bridge window [mem 0xf3100000-0xf38fffff 64bit pref]
[ 1.408320] pci 0000:00:1c.1: PCI bridge to [bus 03]
[ 1.408327] pci 0000:00:1c.1: bridge window [mem 0xf3900000-0xf39fffff]
[ 1.408339] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 1.408340] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 1.408342] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 1.408343] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
[ 1.408344] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
[ 1.408346] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
[ 1.408347] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
[ 1.408348] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
[ 1.408349] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
[ 1.408351] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
[ 1.408352] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
[ 1.408353] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
[ 1.408355] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
[ 1.408356] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
[ 1.408357] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
[ 1.408358] pci_bus 0000:00: resource 19 [mem 0xe0000000-0xfebfffff]
[ 1.408360] pci_bus 0000:00: resource 20 [mem 0xfed40000-0xfed4bfff]
[ 1.408361] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
[ 1.408362] pci_bus 0000:01: resource 1 [mem 0xf2000000-0xf30fffff]
[ 1.408364] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xf1ffffff 64bit pref]
[ 1.408365] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
[ 1.408366] pci_bus 0000:02: resource 1 [mem 0xf3a00000-0xf41fffff]
[ 1.408368] pci_bus 0000:02: resource 2 [mem 0xf3100000-0xf38fffff 64bit pref]
[ 1.408369] pci_bus 0000:03: resource 1 [mem 0xf3900000-0xf39fffff]
[ 1.408391] NET: Registered protocol family 2
[ 1.408550] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[ 1.408683] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 1.408851] TCP: Hash tables configured (established 65536 bind 65536)
[ 1.408867] TCP: reno registered
[ 1.408875] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[ 1.408903] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[ 1.408956] NET: Registered protocol family 1
[ 1.409307] pci 0000:01:00.0: Video device with shadowed ROM
[ 1.409390] PCI: CLS 64 bytes, default 64
[ 1.409431] Unpacking initramfs...
[ 1.456654] Freeing initrd memory: 3960K (ffff880037834000 - ffff880037c12000)
[ 1.456675] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 1.456678] software IO TLB [mem 0xd6c82000-0xdac82000] (64MB) mapped at [ffff8800d6c82000-ffff8800dac81fff]
[ 1.457012] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[ 1.457059] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x1b
[ 1.457066] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x1b
[ 1.457072] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x1b
[ 1.457077] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x1b
[ 1.457085] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x1b
[ 1.457092] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x1b
[ 1.457098] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x1b
[ 1.457105] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x1b
[ 1.457147] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 1.457167] Scanning for low memory corruption every 60 seconds
[ 1.457402] futex hash table entries: 2048 (order: 5, 131072 bytes)
[ 1.457428] Initialise system trusted keyring
[ 1.457761] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 1.458800] zpool: loaded
[ 1.458802] zbud: loaded
[ 1.458947] VFS: Disk quotas dquot_6.5.2
[ 1.458972] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 1.459072] msgmni has been set to 15747
[ 1.459118] Key type big_key registered
[ 1.459270] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[ 1.459324] io scheduler noop registered
[ 1.459326] io scheduler deadline registered
[ 1.459347] io scheduler cfq registered (default)
[ 1.459465] pcieport 0000:00:01.0: irq 25 for MSI/MSI-X
[ 1.459740] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 1.459753] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 1.459780] efifb: invalid framebuffer address
[ 1.459787] intel_idle: MWAIT substates: 0x21120
[ 1.459788] intel_idle: v0.4 model 0x3A
[ 1.459789] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 1.460069] GHES: HEST is not enabled!
[ 1.460132] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 1.480906] 0000:00:16.3: ttyS0 at I/O 0x5070 (irq = 19, base_baud = 115200) is a 16550A
[ 1.481036] Linux agpgart interface v0.103
[ 1.481100] rtc_cmos 00:02: RTC can wake from S4
[ 1.481222] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[ 1.481253] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 1.481261] Intel P-state driver initializing.
[ 1.481419] ledtrig-cpu: registered to indicate activity on CPUs
[ 1.481599] TCP: cubic registered
[ 1.481764] NET: Registered protocol family 10
[ 1.482132] NET: Registered protocol family 17
[ 1.482732] Loading compiled-in X.509 certificates
[ 1.482753] registered taskstats version 1
[ 1.483687] Magic number: 2:127:440
[ 1.483695] clockevents broadcast: hash matches
[ 1.483710] pcieport 0000:00:1c.1: hash matches
[ 1.483810] rtc_cmos 00:02: setting system clock to 2014-10-27 16:26:12 UTC (1414427172)
[ 1.483917] PM: Hibernation image not present or could not be loaded.
[ 1.485343] Freeing unused kernel memory: 1140K (ffffffff818e5000 - ffffffff81a02000)
[ 1.485346] Write protecting the kernel read-only data: 8192k
[ 1.488857] Freeing unused kernel memory: 752K (ffff880002544000 - ffff880002600000)
[ 1.490323] Freeing unused kernel memory: 336K (ffff8800027ac000 - ffff880002800000)
[ 1.500877] random: systemd-tmpfile urandom read with 7 bits of entropy available
[ 1.502894] systemd-udevd[79]: starting version 216
[ 1.511492] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[ 1.513508] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.513799] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.516752] ACPI: bus type USB registered
[ 1.516776] usbcore: registered new interface driver usbfs
[ 1.516791] usbcore: registered new interface driver hub
[ 1.516980] usbcore: registered new device driver usb
[ 1.517579] sdhci: Secure Digital Host Controller Interface driver
[ 1.517580] sdhci: Copyright(c) Pierre Ossman
[ 1.517794] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.517896] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.517906] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 1.518010] sdhci-pci 0000:02:00.0: SDHCI controller found [1180:e823] (rev 5)
[ 1.518069] SCSI subsystem initialized
[ 1.518079] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 1.518158] xhci_hcd 0000:00:14.0: irq 26 for MSI/MSI-X
[ 1.518215] sdhci-pci 0000:02:00.0: No vmmc regulator found
[ 1.518217] sdhci-pci 0000:02:00.0: No vqmmc regulator found
[ 1.518225] ehci-pci: EHCI PCI platform driver
[ 1.518342] mmc0: SDHCI controller on PCI [0000:02:00.0] using DMA
[ 1.518499] hub 1-0:1.0: USB hub found
[ 1.518510] hub 1-0:1.0: 4 ports detected
[ 1.518776] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.518778] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 1.518958] hub 2-0:1.0: USB hub found
[ 1.518969] hub 2-0:1.0: 4 ports detected
[ 1.519036] libata version 3.00 loaded.
[ 1.519376] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 1.519383] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 3
[ 1.519397] ehci-pci 0000:00:1a.0: debug port 2
[ 1.523293] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[ 1.523300] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf423a000
[ 1.528153] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[ 1.530239] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 1.530357] hub 3-0:1.0: USB hub found
[ 1.530361] hub 3-0:1.0: 3 ports detected
[ 1.530512] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 1.530515] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
[ 1.530528] ehci-pci 0000:00:1d.0: debug port 2
[ 1.534415] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 1.534428] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf4239000
[ 1.543624] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 1.543867] hub 4-0:1.0: USB hub found
[ 1.543871] hub 4-0:1.0: 3 ports detected
[ 1.544002] ahci 0000:00:1f.2: version 3.0
[ 1.544111] ahci 0000:00:1f.2: irq 27 for MSI/MSI-X
[ 1.544153] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3 impl SATA mode
[ 1.544155] ahci 0000:00:1f.2: flags: 64bit ncq ilck pm led clo pio slum part ems apst
[ 1.550818] scsi host0: ahci
[ 1.551275] scsi host1: ahci
[ 1.551751] scsi host2: ahci
[ 1.552085] scsi host3: ahci
[ 1.552361] scsi host4: ahci
[ 1.552561] scsi host5: ahci
[ 1.552602] ata1: SATA max UDMA/133 abar m2048@0xf4238000 port 0xf4238100 irq 27
[ 1.552605] ata2: SATA max UDMA/133 abar m2048@0xf4238000 port 0xf4238180 irq 27
[ 1.552606] ata3: DUMMY
[ 1.552606] ata4: DUMMY
[ 1.552607] ata5: DUMMY
[ 1.552608] ata6: DUMMY
[ 1.837361] usb 3-1: new high-speed USB device number 2 using ehci-pci
[ 1.870771] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.882191] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[ 1.882199] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 1.892187] ata1.00: ATA-9: INTEL SSDSC2BW240A3L, LF1i, max UDMA/133
[ 1.892194] ata1.00: 468862128 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 1.902211] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[ 1.902220] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 1.912240] ata1.00: configured for UDMA/133
[ 1.912585] scsi 0:0:0:0: Direct-Access ATA INTEL SSDSC2BW24 LF1i PQ: 0 ANSI: 5
[ 1.924185] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.926015] ata2.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[ 1.926024] ata2.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 1.927460] ata2.00: ATA-8: WDC WD10JPVT-08A1YT2, 01.01A01, max UDMA/133
[ 1.927467] ata2.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 1.929353] ata2.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[ 1.929362] ata2.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 1.930787] ata2.00: configured for UDMA/133
[ 1.931112] scsi 1:0:0:0: Direct-Access ATA WDC WD10JPVT-08A 1A01 PQ: 0 ANSI: 5
[ 1.936614] sd 0:0:0:0: [sda] 468862128 512-byte logical blocks: (240 GB/223 GiB)
[ 1.936637] sd 1:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[ 1.936640] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[ 1.936653] sd 0:0:0:0: [sda] Write Protect is off
[ 1.936655] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.936664] sd 1:0:0:0: [sdb] Write Protect is off
[ 1.936666] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 1.936667] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.936684] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.937479] sda: sda1 sda2 sda3 sda4
[ 1.937778] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.962137] hub 3-1:1.0: USB hub found
[ 1.962324] hub 3-1:1.0: 6 ports detected
[ 2.065022] sdb: sdb1 sdb2
[ 2.065588] sd 1:0:0:0: [sdb] Attached SCSI disk
[ 2.067665] usb 4-1: new high-speed USB device number 2 using ehci-pci
[ 2.192302] hub 4-1:1.0: USB hub found
[ 2.192454] hub 4-1:1.0: 8 ports detected
[ 2.261319] usb 3-1.6: new high-speed USB device number 3 using ehci-pci
[ 2.344660] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
[ 2.458157] tsc: Refined TSC clocksource calibration: 2793.661 MHz
[ 2.461737] usb 4-1.7: new low-speed USB device number 3 using ehci-pci
[ 2.741966] systemd[1]: Cannot add dependency job for unit httpd.service, ignoring: Unit httpd.service failed to load: No such file or directory.
[ 2.741977] systemd[1]: Cannot add dependency job for unit netctl-auto@wlp3s0.service, ignoring: Unit netctl-auto@wlp3s0.service failed to load: No such file or directory.
[ 2.766662] EXT4-fs (sda3): re-mounted. Opts: data=ordered
[ 2.797195] systemd-udevd[209]: starting version 216
[ 2.994729] pps_core: LinuxPPS API ver. 1 registered
[ 2.994732] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 2.994980] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\_SB_.PCI0.LPC_.PMIO) (20140724/utaddress-258)
[ 2.994985] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 2.994991] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140724/utaddress-258)
[ 2.994994] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 2.994995] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140724/utaddress-258)
[ 2.994997] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 2.994998] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140724/utaddress-258)
[ 2.995000] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 2.995001] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 2.995905] PTP clock support registered
[ 2.996690] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 2.997968] mei_me 0000:00:16.0: irq 28 for MSI/MSI-X
[ 3.000008] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
[ 3.000009] e1000e: Copyright(c) 1999 - 2014 Intel Corporation.
[ 3.004652] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 3.004707] e1000e 0000:00:19.0: irq 29 for MSI/MSI-X
[ 3.011387] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[ 3.011549] ACPI: Lid Switch [LID]
[ 3.011606] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
[ 3.011610] ACPI: Sleep Button [SLPB]
[ 3.011685] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
[ 3.011688] ACPI: Power Button [PWRF]
[ 3.011823] ACPI: Video Device [VID1] (multi-head: yes rom: yes post: no)
[ 3.033484] acpi device:0a: registered as cooling_device8
[ 3.033554] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09/LNXVIDEO:01/input/input5
[ 3.037383] Non-volatile memory driver v1.3
[ 3.042174] tpm_tis 00:05: 1.2 TPM (device-id 0x0, rev-id 78)
[ 3.042375] wmi: Mapper loaded
[ 3.042586] thinkpad_acpi: ThinkPad ACPI Extras v0.25
[ 3.042588] thinkpad_acpi: http://ibm-acpi.sf.net/
[ 3.042590] thinkpad_acpi: ThinkPad BIOS G5ET92WW (2.52 ), EC unknown
[ 3.042591] thinkpad_acpi: Lenovo ThinkPad W530, model 244759G
[ 3.043058] cfg80211: Calling CRDA to update world regulatory domain
[ 3.043279] thinkpad_acpi: Unsupported brightness interface, please contact ibm-acpi-devel@lists.sourceforge.net
[ 3.044385] thinkpad_acpi: radio switch found; radios are enabled
[ 3.044398] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[ 3.044399] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[ 3.045054] ACPI: Battery Slot [BAT0] (battery present)
[ 3.046083] thermal LNXTHERM:00: registered as thermal_zone0
[ 3.046085] ACPI: Thermal Zone [THM0] (48 C)
[ 3.046124] ACPI: AC Adapter [AC] (on-line)
[ 3.046223] random: nonblocking pool is initialized
[ 3.047273] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
[ 3.050109] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input6
[ 3.056235] rtc-efi rtc-efi: rtc core: registered rtc-efi as rtc1
[ 3.056771] Intel(R) Wireless WiFi driver for Linux, in-tree:
[ 3.056772] Copyright(c) 2003- 2014 Intel Corporation
[ 3.056924] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 3.057166] iwlwifi 0000:03:00.0: irq 30 for MSI/MSI-X
[ 3.058976] iwlwifi 0000:03:00.0: Direct firmware load for iwlwifi-6000-6.ucode failed with error -2
[ 3.058992] iwlwifi 0000:03:00.0: Direct firmware load for iwlwifi-6000-5.ucode failed with error -2
[ 3.059556] input: PC Speaker as /devices/platform/pcspkr/input/input7
[ 3.062216] iwlwifi 0000:03:00.0: loaded firmware version 9.221.4.1 build 25532 op_mode iwldvm
[ 3.065041] AVX version of gcm_enc/dec engaged.
[ 3.073560] Adding 8388604k swap on /dev/sda2. Priority:-1 extents:1 across:8388604k SSFS
[ 3.102267] tpm_tis 00:05: TPM is disabled/deactivated (0x6)
[ 3.105383] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled
[ 3.105387] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
[ 3.105388] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
[ 3.105390] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Ultimate-N 6300 AGN, REV=0x74
[ 3.105491] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[ 3.116970] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: data=ordered
[ 3.119500] media: Linux media interface: v0.10
[ 3.123002] Linux video capture interface: v2.00
[ 3.126296] iTCO_vendor_support: vendor-support=0
[ 3.127001] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[ 3.127038] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
[ 3.127120] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 3.152895] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[ 3.157388] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b2eb)
[ 3.161446] input: Integrated Camera as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.6/3-1.6:1.0/input/input9
[ 3.161525] usbcore: registered new interface driver uvcvideo
[ 3.161527] USB Video Class driver (1.1.1)
[ 3.163015] intel_rapl: Found RAPL domain package
[ 3.163018] intel_rapl: Found RAPL domain core
[ 3.174342] iwlwifi 0000:03:00.0 wlp3s0: renamed from wlan0
[ 3.180951] systemd-journald[183]: Received request to flush runtime journal from PID 1
[ 3.195849] systemd-udevd[212]: renamed network interface wlan0 to wlp3s0
[ 3.196309] hidraw: raw HID events driver (C) Jiri Kosina
[ 3.207108] usbcore: registered new interface driver usbhid
[ 3.207115] usbhid: USB HID core driver
[ 3.234434] hid-generic 0003:0765:5010.0001: hiddev0,hidraw0: USB HID v1.11 Device [HID 0765:5010] on usb-0000:00:1d.0-1.7/input0
[ 3.279807] e1000e 0000:00:19.0 eth0: registered PHC clock
[ 3.279810] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 3c:97:0e:96:b3:ae
[ 3.279811] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[ 3.279860] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: 1000FF-0FF
[ 3.280032] snd_hda_intel 0000:00:1b.0: irq 31 for MSI/MSI-X
[ 3.280164] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
[ 3.280184] snd_hda_intel 0000:01:00.1: Disabling MSI
[ 3.280190] snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
[ 3.280575] e1000e 0000:00:19.0 enp0s25: renamed from eth0
[ 3.292309] sound hdaudioC0D0: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[ 3.292312] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 3.292313] sound hdaudioC0D0: hp_outs=2 (0x15/0x1b/0x0/0x0/0x0)
[ 3.292314] sound hdaudioC0D0: mono: mono_out=0x0
[ 3.292315] sound hdaudioC0D0: inputs:
[ 3.292316] sound hdaudioC0D0: Mic=0x18
[ 3.292317] sound hdaudioC0D0: Dock Mic=0x19
[ 3.292318] sound hdaudioC0D0: Internal Mic=0x12
[ 3.294223] systemd-udevd[216]: renamed network interface eth0 to enp0s25
[ 3.300167] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input10
[ 3.300308] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[ 3.300350] input: HDA Intel PCH Dock Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[ 3.300390] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[ 3.300431] input: HDA Intel PCH Dock Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[ 3.459595] Switched to clocksource tsc
[ 3.504126] [drm] Initialized drm 1.1.0 20060810
[ 3.556797] nvidia: module license 'NVIDIA' taints kernel.
[ 3.556800] Disabling lock debugging due to kernel taint
[ 3.566100] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
[ 3.566709] [drm] Initialized nvidia-drm 0.0.0 20130102 for 0000:01:00.0 on minor 0
[ 3.566713] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 343.22 Thu Sep 11 16:27:43 PDT 2014
[ 3.569328] nvidia 0000:01:00.0: irq 32 for MSI/MSI-X
[ 3.571235] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140724/nsarguments-95)
[ 3.571310] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140724/nsarguments-95)
[ 3.571361] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140724/nsarguments-95)
[ 3.571411] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140724/nsarguments-95)
[ 3.571460] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140724/nsarguments-95)
[ 3.571640] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140724/nsarguments-95)
[ 3.571820] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140724/nsarguments-95)
[ 3.571871] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140724/nsarguments-95)
[ 3.643694] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input15
[ 3.643767] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16
[ 3.643826] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input17
[ 3.777806] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[ 3.784836] iwlwifi 0000:03:00.0: Radio type=0x0-0x3-0x1
[ 3.885087] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd047b3/0xb40000/0xa0000, board id: 71, fw id: 920262
[ 3.885094] psmouse serio1: synaptics: serio: Synaptics pass-through port at isa0060/serio1/input0
[ 3.921981] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input8
[ 3.923366] mousedev: PS/2 mouse device common for all mice
[ 4.001191] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[ 4.008214] iwlwifi 0000:03:00.0: Radio type=0x0-0x3-0x1
[ 4.100359] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[ 4.360590] e1000e 0000:00:19.0: irq 29 for MSI/MSI-X
[ 4.463962] e1000e 0000:00:19.0: irq 29 for MSI/MSI-X
[ 4.464114] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
[ 4.945012] cfg80211: Calling CRDA to update world regulatory domain
[ 7.647935] wlp3s0: authenticate with 00:25:9c:4b:75:51
[ 7.697349] wlp3s0: send auth to 00:25:9c:4b:75:51 (try 1/3)
[ 7.699412] wlp3s0: authenticated
[ 7.699708] iwlwifi 0000:03:00.0 wlp3s0: disabling HT as WMM/QoS is not supported by the AP
[ 7.699713] iwlwifi 0000:03:00.0 wlp3s0: disabling VHT as WMM/QoS is not supported by the AP
[ 7.701272] wlp3s0: associate with 00:25:9c:4b:75:51 (try 1/3)
[ 7.703928] wlp3s0: RX AssocResp from 00:25:9c:4b:75:51 (capab=0x411 status=0 aid=4)
[ 7.712283] wlp3s0: associated
[ 7.712331] IPv6: ADDRCONF(NETDEV_CHANGE): wlp3s0: link becomes ready
[ 8.064546] psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
[ 8.268359] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input18
[ 10.585769] ACPI Warning: \_SB_.PCI0.PEG_.VID_._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140724/nsarguments-95)
[ 10.611719] NVRM: GPU at 0000:01:00.0 has fallen off the bus.
[ 10.615770] NVRM: RmInitAdapter failed! (0x2c:0x32:1181)
[ 10.615789] NVRM: rm_init_adapter failed for device bearing minor number 0
[ 10.615812] NVRM: nvidia_frontend_open: minor 0, module->open() failed, error -5
[ 10.615846] nvidia_uvm: Loaded the UVM driver, major device number 246
[ 10.624520] vboxdrv: Found 8 processor cores.
[ 10.624750] vboxdrv: fAsync=0 offMin=0x1be offMax=0x12eb
[ 10.624828] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
[ 10.624830] vboxdrv: Successfully loaded version 4.3.18_OSE (interface 0x001a0008).
[ 10.631177] vboxpci: IOMMU not found (not registered)Among the last rows in the output it says something about that the GPU has fallen off the bus which I guess is bad, there is also some warnings about the ACPI, so now I know that the system starts but without any graphics at all, how should I continue to debug this?
Last edited by tirithen (2014-10-27 16:37:49)
Offline
According to the wiki adding rcutree.rcu_idle_gp_delay=1 as a kernel parameter should mitigate this: "NVRM: GPU at 0000:01:00.0 has fallen off the bus."
https://wiki.archlinux.org/index.php/NV … iled.21.29
Adding nolapic stops my monitors from going black, but then I only have one cpu core, and probably other problems...
Offline
I just added https://wiki.archlinux.org/index.php/repo-ck, and installed linux-ck-ivybridge and nvidia-ck-ivybridge, then recreated grub.cfg and now it works. Got the hint from this post https://bbs.archlinux.org/viewtopic.php … 8#p1466438
Offline