You are not logged in.

#1 2012-09-05 11:54:42

Haikarainen
Member
Registered: 2012-09-04
Posts: 93

[FIXED] Synaptics touchpad identified but not responding to input.

EDIT: FIXED: https://bbs.archlinux.org/viewtopic.php … 1#p1158481

Fresh install of Arch and KDE, my synaptics touchpad seems to be identified, xf86-input-synaptics is installed, synclient works, synaptiks identifies my touchpad etc. But it doesnt respond at all to input.

EDIT: Fresh info below: https://bbs.archlinux.org/viewtopic.php … 8#p1158238

I suspect that it might be a combination of my fn-buttons not working and that the touchpad is disabled by default with the fn-touchpad-on/off-button.

Any help appreciated!

[fredrik@fredrik-arch ~]$ dmesg | grep synaptics
[    9.720497] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x126c00
[fredrik@fredrik-arch ~]$ cat /var/log/Xorg.0.log | grep synaptics
[  7116.327] (II) LoadModule: "synaptics"
[  7116.328] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[  7116.328] (II) Module synaptics: vendor="X.Org Foundation"
[  7116.328] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[  7116.409] (II) synaptics: SynPS/2 Synaptics TouchPad: found clickpad property
[  7116.409] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5678
[  7116.409] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4732
[  7116.409] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[  7116.409] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[  7116.409] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left double triple
[  7116.409] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[  7116.409] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[  7116.449] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[  7116.449] (**) synaptics: SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
[  7116.449] (**) synaptics: SynPS/2 Synaptics TouchPad: AccelFactor is now 0.037
[  7116.449] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[ 10141.103] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[ 10167.936] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[fredrik@fredrik-arch xorg.conf.d]$ cat 10-synaptics.conf 
Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        #MatchDevicePath "/dev/input/mouse0"
        Option "SHMConfig" "true"
        Option "TapButton1" "1"
        Option "TapButton2" "2"
        Option "TapButton3" "3"
EndSection

Last edited by Haikarainen (2012-09-08 10:46:03)

Offline

#2 2012-09-06 23:23:16

flako
Member
Registered: 2008-10-24
Posts: 56

Re: [FIXED] Synaptics touchpad identified but not responding to input.

I think we have the same issue sad https://bbs.archlinux.org/viewtopic.php?id=148115
I tried booting into a live CD with linux mint on it to see if it had anything to do with the pad on/off key not working. The key didn't work there either. Have you tried booting into another dist?

Offline

#3 2012-09-07 04:29:46

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 19,739

Re: [FIXED] Synaptics touchpad identified but not responding to input.

Lets try a little experiment.

First, figure out which event number belongs to the touch pad.

ewaller@odin:~ 1024 %grep '' /sys/class/input/event*/device/name
/sys/class/input/event0/device/name:Power Button
/sys/class/input/event1/device/name:Lid Switch
/sys/class/input/event10/device/name:HP WMI hotkeys
/sys/class/input/event11/device/name:AlpsPS/2 ALPS GlidePoint
/sys/class/input/event12/device/name:HDA Digital PCBeep
/sys/class/input/event13/device/name:HDA Intel HDMI/DP,pcm=3
/sys/class/input/event14/device/name:HDA Intel Dock Mic
/sys/class/input/event15/device/name:HDA Intel Mic
/sys/class/input/event16/device/name:HDA Intel Front Headphone
/sys/class/input/event17/device/name:MCE IR Keyboard/Mouse (ene_ir)
/sys/class/input/event18/device/name:HP Webcam
/sys/class/input/event2/device/name:Sleep Button
/sys/class/input/event3/device/name:Power Button
/sys/class/input/event4/device/name:AT Translated Set 2 keyboard
/sys/class/input/event5/device/name:Video Bus
/sys/class/input/event6/device/name:PC Speaker
/sys/class/input/event7/device/name:ENE eHome Infrared Remote Receiver
/sys/class/input/event8/device/name:ST LIS3LV02DL Accelerometer
/sys/class/input/event9/device/name:PS/2 Mouse
ewaller@odin:~ 1025 %

On my system it is currently mapped to event11.  Note that this sometimes changes at boot time.

From a console, with the X system not running, try a
sudo od -x /dev/input/event11
but change the event number to match your mapping.

Try the touch pad and see if you see a stream of stuff.

Report back.


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way

Offline

#4 2012-09-07 08:47:58

Haikarainen
Member
Registered: 2012-09-04
Posts: 93

Re: [FIXED] Synaptics touchpad identified but not responding to input.

flako wrote:

I think we have the same issue sad https://bbs.archlinux.org/viewtopic.php?id=148115
I tried booting into a live CD with linux mint on it to see if it had anything to do with the pad on/off key not working. The key didn't work there either. Have you tried booting into another dist?

Im not 100% positive that it is the exact same issue, I dont get the "bad data" error hmm I have tried linux mint on this laptop a few months ago (probably before the current kernel release), it did work. Debian also with no problems.

Offline

#5 2012-09-07 08:51:46

Haikarainen
Member
Registered: 2012-09-04
Posts: 93

Re: [FIXED] Synaptics touchpad identified but not responding to input.

ewaller wrote:

Lets try a little experiment.

First, figure out which event number belongs to the touch pad.
...
On my system it is currently mapped to event11.  Note that this sometimes changes at boot time.

From a console, with the X system not running, try a
sudo od -x /dev/input/event11
but change the event number to match your mapping.

Try the touch pad and see if you see a stream of stuff.

Report back.

/sys/class/input/event9/device/name:SynPS/2 Synaptics TouchPad
od -x /dev/input/event9

returns absolutely nothing. I tried the same with cat while in an xserver, still nothing. Also tried it with both sudo as well as root, since I also have some problems running X-programs with sudo (no display or protocol set). kdesu works like a charm though.

EDIT: To think of it, synclient wont work with sudo neither, think this might be related?

fredrik@fredrik-arch ~]$ synclient
Parameter settings:
    LeftEdge                = 1766
    RightEdge               = 5384
    TopEdge                 = 1640
    BottomEdge              = 4500
    FingerLow               = 25
    FingerHigh              = 30
    FingerPress             = 256
    MaxTapTime              = 180
    MaxTapMove              = 235
    MaxDoubleTapTime        = 180
    SingleTapTimeout        = 180
    ClickTime               = 100
    FastTaps                = 0
    EmulateMidButtonTime    = 0
    EmulateTwoFingerMinZ    = 282
    EmulateTwoFingerMinW    = 7
    VertScrollDelta         = 107
    HorizScrollDelta        = 107
    VertEdgeScroll          = 0
    HorizEdgeScroll         = 0
    CornerCoasting          = 0
    VertTwoFingerScroll     = 1
    HorizTwoFingerScroll    = 0
    MinSpeed                = 1
    MaxSpeed                = 1.75
    AccelFactor             = 0.0373
    TrackstickSpeed         = 40
    EdgeMotionMinZ          = 30
    EdgeMotionMaxZ          = 160
    EdgeMotionMinSpeed      = 1
    EdgeMotionMaxSpeed      = 428
    EdgeMotionUseAlways     = 0
    TouchpadOff             = 0
    LockedDrags             = 0
    LockedDragTimeout       = 5000
    RTCornerButton          = 0
    RBCornerButton          = 3
    LTCornerButton          = 0
    LBCornerButton          = 1
    TapButton1              = 1
    TapButton2              = 0
    TapButton3              = 0
    ClickFinger1            = 1
    ClickFinger2            = 3
    ClickFinger3            = 2
    CircularScrolling       = 0
    CircScrollDelta         = 0.100007
    CircScrollTrigger       = 0
    CircularPad             = 0
    PalmDetect              = 0
    PalmMinWidth            = 10
    PalmMinZ                = 200
    CoastingSpeed           = 20
    CoastingFriction        = 50
    PressureMotionMinZ      = 30
    PressureMotionMaxZ      = 160
    PressureMotionMinFactor = 1
    PressureMotionMaxFactor = 1
    GrabEventDevice         = 1
    TapAndDragGesture       = 1
    AreaLeftEdge            = 0
    AreaRightEdge           = 0
    AreaTopEdge             = 0
    AreaBottomEdge          = 0
    HorizHysteresis         = 8
    VertHysteresis          = 8
    ClickPad                = 1
    RightButtonAreaLeft     = 0
    RightButtonAreaRight    = 0
    RightButtonAreaTop      = 0
    RightButtonAreaBottom   = 0
    MiddleButtonAreaLeft    = 0
    MiddleButtonAreaRight   = 0
    MiddleButtonAreaTop     = 0
    MiddleButtonAreaBottom  = 0
[fredrik@fredrik-arch ~]$ sudo synclient
No protocol specified
Failed to connect to X Server.
[fredrik@fredrik-arch ~]$ 

Last edited by Haikarainen (2012-09-07 08:53:58)

Offline

#6 2012-09-07 14:48:59

Haikarainen
Member
Registered: 2012-09-04
Posts: 93

Re: [FIXED] Synaptics touchpad identified but not responding to input.

Just tried the lts-kernel. No change regarding the synaptics. Will try to find another version of xf86-input-synaptics.

Offline

#7 2012-09-07 14:55:01

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 19,739

Re: [FIXED] Synaptics touchpad identified but not responding to input.

Well, your kernel sees the device and allocates an event stream for it.  When you look at the stream, however, there are no data.  I think that is the root of problem.  It makes sense as you had stated it comes up in a disabled state.  I'll look at this some more this evening (UTC -7)


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way

Offline

#8 2012-09-07 16:16:06

Haikarainen
Member
Registered: 2012-09-04
Posts: 93

Re: [FIXED] Synaptics touchpad identified but not responding to input.

ewaller wrote:

Well, your kernel sees the device and allocates an event stream for it.  When you look at the stream, however, there are no data.  I think that is the root of problem.  It makes sense as you had stated it comes up in a disabled state.  I'll look at this some more this evening (UTC -7)

Thanks a lot! Older version of synaptics wouldnt even load (tried to insmod a freshly compiled 1.5 from xfree86), so files turned out invalid :S

Offline

#9 2012-09-07 18:20:44

Haikarainen
Member
Registered: 2012-09-04
Posts: 93

Re: [FIXED] Synaptics touchpad identified but not responding to input.

Some fresh information:

1.  I found out there exists a c++-library to talk to the synapticsdriver, called libsynaptics. I created a small app to get some debugging information from synaptics, but either libsynaptics is broken or the current synaptics-driver in arch is(or libsynaptics, I dont really know).  Anyway I uploaded the program here: http://haikarainen.dotgeek.org/syndbg.tar.gz

syndbg / syndbg-clean.sh should be perfectly runnable for most arch users, but I've included the source, few helperscripts and a readme.

syndbg is the executable, syndbg-clean.sh is a small script that tries to only display syndbg:s output and filter out libsynaptics.

Basically what it does is use libsynaptics functions to retrieve information (like if it finds hardware, driver, versions etc). I get some weird results(from libsynaptics), and I'd truly appreciate if someone else with a touchpad tested this and gave me their output, and if their touchpad is working.

Full output(not cleaned)

[fredrik@fredrik-arch syndbg]$ ./syndbg
syndbg: Synaptics Debugger v0.1
syndbg: Fetching instance of Synaptics::Pad..
getInstance(pad.cpp:18)  --- waiting for lock...
Pad(pad.cpp:47)  --- created singleton
registerParameters(pad.cpp:491)  --- registration done!
init(pad.cpp:496)        --- this version of libsynaptics supports the following driver versions:
init(pad.cpp:501)        ---  --- 0.14.4
init(pad.cpp:501)        ---  --- 0.14.5
init(pad.cpp:501)        ---  --- 0.14.6
init(pad.cpp:503)        --- initializing fitting driver segment...
detectDriverVersion(pad.cpp:152)         --- detecting driver version...
driverStr(pad.cpp:195)   --- driverStr
intVerToStrVer(pad.cpp:98)       --- intVerToStrVer
detectDriverVersion(pad.cpp:182)         --- detected driver version None
driverVersion(pad.cpp:117)       --- driverVersion
init(pad.cpp:518)        --- cannot access driver, please install and configure it properly!
getInstance(pad.cpp:22)  --- ...unlocking done!
libraryStr(pad.cpp:201)  --- libraryStr
syndbg: Using libsynaptics 0.14.6c
hasHardware(pad.cpp:127)         --- hasHardware
hasHardware(pad.cpp:128)         --- implement me!
syndbg: No hardware found!
hasDriver(pad.cpp:140)   --- hasDriver
syndbg: No driver found!
driverKind(pad.cpp:134)  --- driverKind
syndbg: Driver state: Unknown/None
driverStr(pad.cpp:195)   --- driverStr
intVerToStrVer(pad.cpp:98)       --- intVerToStrVer
syndbg: Driver version: None
driverVersion(pad.cpp:117)       --- driverVersion
syndbg: Full driver version: 0
hasShm(pad.cpp:146)      --- hasShm
syndbg: Shared memory access is possible!
~Pad(pad.cpp:38)         --- detach driver
~Pad(pad.cpp:41)         --- deleted singleton

Cleaned output:

[fredrik@fredrik-arch syndbg]$ ./syndbg-clean.sh 
syndbg: Synaptics Debugger v0.1
syndbg: Fetching instance of Synaptics::Pad..
syndbg: Using libsynaptics 0.14.6c
syndbg: No hardware found!
syndbg: No driver found!
syndbg: Driver state: Unknown/None
syndbg: Driver version: None
syndbg: Full driver version: 0
syndbg: Shared memory access is possible!

2. Up-to-date and full logs:

dmesg

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.5.3-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.1 20120721 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Aug 26 09:14:51 CEST 2012
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=896552cc-1884-4d76-8794-e06627b3a834 ro quiet
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000d987cfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000d987d000-0x00000000d9d0efff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000d9d0f000-0x00000000d9d0ffff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000d9d10000-0x00000000d9e3dfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000d9e3e000-0x00000000da2a3fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000da2a4000-0x00000000da2a4fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000da2a5000-0x00000000da2e7fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000da2e8000-0x00000000dad7efff] usable
[    0.000000] BIOS-e820: [mem 0x00000000dad7f000-0x00000000daff1fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000daff2000-0x00000000daffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000db800000-0x00000000df9fffff] 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-0x000000011f5fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI 2.7 present.
[    0.000000] DMI: TOSHIBA SATELLITE P850/QFKAA, BIOS 1.40 04/20/2012
[    0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x11f600 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 000000000 mask F00000000 write-back
[    0.000000]   1 base 100000000 mask FE0000000 write-back
[    0.000000]   2 base 0E0000000 mask FE0000000 uncachable
[    0.000000]   3 base 0DC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0DB800000 mask FFF800000 uncachable
[    0.000000]   5 base 11F800000 mask FFF800000 uncachable
[    0.000000]   6 base 11F600000 mask FFFE00000 uncachable
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: update [mem 0xdb800000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0xdb000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fd700-0x000fd70f] mapped at [ffff8800000fd700]
[    0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
[    0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0xdaffffff]
[    0.000000]  [mem 0x00000000-0xdaffffff] page 2M
[    0.000000] kernel direct mapping tables up to 0xdaffffff @ [mem 0x1f923000-0x1fffffff]
[    0.000000] init_memory_mapping: [mem 0x100000000-0x11f5fffff]
[    0.000000]  [mem 0x100000000-0x11f5fffff] page 2M
[    0.000000] kernel direct mapping tables up to 0x11f5fffff @ [mem 0xdaffa000-0xdaffffff]
[    0.000000] RAMDISK: [mem 0x37a2a000-0x37d0cfff]
[    0.000000] ACPI: RSDP 00000000000f0490 00024 (v02 TOSCPL)
[    0.000000] ACPI: XSDT 00000000d9e15078 00074 (v01 TOSCPL TOSCPL00 01072009 AMI  00010013)
[    0.000000] ACPI: FACP 00000000d9e25a30 000F4 (v04 TOSCPL TOSCPL00 01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 00000000d9e15188 108A1 (v02 TOSCPL TOSCPL00 00000017 INTL 20051117)
[    0.000000] ACPI: FACS 00000000d9e3cf80 00040
[    0.000000] ACPI: APIC 00000000d9e25b28 00092 (v03 TOSCPL TOSCPL00 01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 00000000d9e25bc0 00044 (v01 TOSCPL TOSCPL00 01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 00000000d9e25c08 0003C (v01 TOSCPL TOSCPL00 01072009 MSFT 00000097)
[    0.000000] ACPI: SSDT 00000000d9e25c48 006E9 (v01 TrmRef PtidDevc 00001000 INTL 20091112)
[    0.000000] ACPI: HPET 00000000d9e26338 00038 (v01 TOSCPL TOSCPL00 01072009 AMI. 00000005)
[    0.000000] ACPI: SSDT 00000000d9e26370 0036D (v01 SataRe SataTabl 00001000 INTL 20091112)
[    0.000000] ACPI: SLIC 00000000d9e266e0 00176 (v01 TOSCPL TOSCPL00 01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 00000000d9e26858 008E4 (v01  PmRef  Cpu0Ist 00003000 INTL 20051117)
[    0.000000] ACPI: SSDT 00000000d9e27140 00A92 (v01  PmRef    CpuPm 00003000 INTL 20051117)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000011f5fffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x11f5fffff]
[    0.000000]   NODE_DATA [mem 0x11f5fc000-0x11f5fffff]
[    0.000000]  [ffffea0000000000-ffffea00047fffff] PMD -> [ffff88011ac00000-ffff88011ebfffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00010000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x11f5fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00010000-0x0009cfff]
[    0.000000]   node   0: [mem 0x00100000-0x1fffffff]
[    0.000000]   node   0: [mem 0x20200000-0x40003fff]
[    0.000000]   node   0: [mem 0x40005000-0xd987cfff]
[    0.000000]   node   0: [mem 0xda2a4000-0xda2a4fff]
[    0.000000]   node   0: [mem 0xda2e8000-0xdad7efff]
[    0.000000]   node   0: [mem 0xdaff2000-0xdaffffff]
[    0.000000]   node   0: [mem 0x100000000-0x11f5fffff]
[    0.000000] On node 0 totalpages: 1021615
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 6 pages reserved
[    0.000000]   DMA zone: 3911 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 16320 pages used for memmap
[    0.000000]   DMA32 zone: 872802 pages, LIFO batch:31
[    0.000000]   Normal zone: 2008 pages used for memmap
[    0.000000]   Normal zone: 126504 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[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] 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: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] SMP: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[    0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
[    0.000000] PM: Registered nosave memory: 0000000040004000 - 0000000040005000
[    0.000000] PM: Registered nosave memory: 00000000d987d000 - 00000000d9d0f000
[    0.000000] PM: Registered nosave memory: 00000000d9d0f000 - 00000000d9d10000
[    0.000000] PM: Registered nosave memory: 00000000d9d10000 - 00000000d9e3e000
[    0.000000] PM: Registered nosave memory: 00000000d9e3e000 - 00000000da2a4000
[    0.000000] PM: Registered nosave memory: 00000000da2a5000 - 00000000da2e8000
[    0.000000] PM: Registered nosave memory: 00000000dad7f000 - 00000000daff2000
[    0.000000] PM: Registered nosave memory: 00000000db000000 - 00000000db800000
[    0.000000] PM: Registered nosave memory: 00000000db800000 - 00000000dfa00000
[    0.000000] PM: Registered nosave memory: 00000000dfa00000 - 00000000f8000000
[    0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000
[    0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[    0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed00000
[    0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed04000
[    0.000000] PM: Registered nosave memory: 00000000fed04000 - 00000000fed1c000
[    0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
[    0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
[    0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[    0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ff000000
[    0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
[    0.000000] e820: [mem 0xdfa00000-0xf7ffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88011f200000 s83392 r8192 d23104 u262144
[    0.000000] pcpu-alloc: s83392 r8192 d23104 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1003217
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=896552cc-1884-4d76-8794-e06627b3a834 ro quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] 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: 3939796k/4708352k available (4635k kernel code, 621892k absent, 146664k reserved, 4212k data, 756k init)
[    0.000000] SLUB: Genslabs=15, 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] NR_IRQS:4352 nr_irqs:744 16
[    0.000000] Extended CMOS year: 2000
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 16777216 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] Fast TSC calibration using PIT
[    0.003333] Detected 2294.801 MHz processor.
[    0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4591.83 BogoMIPS (lpj=7649336)
[    0.000005] pid_max: default: 32768 minimum: 301
[    0.000027] Security Framework initialized
[    0.000031] AppArmor: AppArmor disabled by boot time parameter
[    0.000267] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.001299] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.001765] Mount-cache hash table entries: 256
[    0.001927] Initializing cgroup subsys cpuacct
[    0.001929] Initializing cgroup subsys memory
[    0.001935] Initializing cgroup subsys devices
[    0.001937] Initializing cgroup subsys freezer
[    0.001938] Initializing cgroup subsys net_cls
[    0.001939] Initializing cgroup subsys blkio
[    0.001962] CPU: Physical Processor ID: 0
[    0.001963] CPU: Processor Core ID: 0
[    0.001968] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.001968] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.002352] mce: CPU supports 9 MCE banks
[    0.002365] CPU0: Thermal monitoring enabled (TM1)
[    0.002371] using mwait in idle threads.
[    0.003374] ACPI: Core revision 20120320
[    0.013869] ftrace: allocating 17956 entries in 71 pages
[    0.022891] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.055878] CPU0: Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz stepping 09
[    0.159617] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, Intel PMU driver.
[    0.159622] ... version:                3
[    0.159623] ... bit width:              48
[    0.159624] ... generic registers:      4
[    0.159625] ... value mask:             0000ffffffffffff
[    0.159626] ... max period:             000000007fffffff
[    0.159627] ... fixed-purpose events:   3
[    0.159628] ... event mask:             000000070000000f
[    0.179696] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.192944] Booting Node   0, Processors  #1
[    0.206556] TSC synchronization [CPU#0 -> CPU#1]:
[    0.206559] Measured 921252599 cycles TSC warp between CPUs, turning off TSC clock.
[    0.006666] Marking TSC unstable due to check_tsc_sync_source failed
[    0.116670]  #2 #3 #4 #5 #6 #7 Ok.
[    0.244993] Brought up 8 CPUs
[    0.244996] Total of 8 processors activated (36731.68 BogoMIPS).
[    0.246759] devtmpfs: initialized
[    0.247512] PM: Registering ACPI NVS region [mem 0xd9d10000-0xd9e3dfff] (1236992 bytes)
[    0.247512] PM: Registering ACPI NVS region [mem 0xda2a5000-0xda2e7fff] (274432 bytes)
[    0.250523] NET: Registered protocol family 16
[    0.250626] ACPI: bus type pci registered
[    0.250676] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.250678] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.258786] PCI: Using configuration type 1 for base access
[    0.259251] bio: create slab <bio-0> at 0
[    0.259251] ACPI: Added _OSI(Module Device)
[    0.259251] ACPI: Added _OSI(Processor Device)
[    0.259251] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.259251] ACPI: Added _OSI(Processor Aggregator Device)
[    0.260962] ACPI: EC: Look up EC in DSDT
[    0.262536] ACPI: Executed 1 blocks of module-level executable AML code
[    0.265566] ACPI: SSDT 00000000d9cbc018 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20051117)
[    0.265566] ACPI: Dynamic OEM Table Load:
[    0.265566] ACPI: SSDT           (null) 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20051117)
[    0.265566] ACPI: SSDT 00000000d9cbda98 00303 (v01  PmRef    ApIst 00003000 INTL 20051117)
[    0.265566] ACPI: Dynamic OEM Table Load:
[    0.265566] ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20051117)
[    0.266773] ACPI: SSDT 00000000d9cbec18 00119 (v01  PmRef    ApCst 00003000 INTL 20051117)
[    0.267179] ACPI: Dynamic OEM Table Load:
[    0.267181] ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20051117)
[    3.506465] ACPI: Interpreter enabled
[    3.506480] ACPI: (supports S0 S3 S4 S5)
[    3.506503] ACPI: Using IOAPIC for interrupt routing
[    3.551911] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    3.552110] ACPI: No dock devices found.
[    3.552113] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    3.552381] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    3.552740] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[    3.552742] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
[    3.552744] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    3.552746] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
[    3.552747] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
[    3.552749] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
[    3.552750] pci_root PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff]
[    3.552752] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
[    3.552753] pci_root PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff]
[    3.552755] pci_root PNP0A08:00: host bridge window [mem 0xdfa00000-0xfeafffff]
[    3.552783] PCI host bridge to bus 0000:00
[    3.552785] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    3.552787] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    3.552789] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    3.552790] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
[    3.552791] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[    3.552793] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[    3.552794] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
[    3.552796] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
[    3.552797] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
[    3.552799] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfeafffff]
[    3.552807] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[    3.552844] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
[    3.552854] pci 0000:00:02.0: reg 10: [mem 0xf7000000-0xf73fffff 64bit]
[    3.552860] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
[    3.552864] pci 0000:00:02.0: reg 20: [io  0xf000-0xf03f]
[    3.552916] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[    3.552939] pci 0000:00:14.0: reg 10: [mem 0xf7f00000-0xf7f0ffff 64bit]
[    3.553011] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    3.553036] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[    3.553060] pci 0000:00:16.0: reg 10: [mem 0xf7f1a000-0xf7f1a00f 64bit]
[    3.553143] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    3.553178] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    3.553200] pci 0000:00:1a.0: reg 10: [mem 0xf7f18000-0xf7f183ff]
[    3.553292] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    3.553318] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[    3.553335] pci 0000:00:1b.0: reg 10: [mem 0xf7f10000-0xf7f13fff 64bit]
[    3.553405] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    3.553428] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    3.553509] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    3.553537] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    3.553617] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    3.553643] pci 0000:00:1c.3: [8086:1e16] type 01 class 0x060400
[    3.553724] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    3.553758] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    3.553779] pci 0000:00:1d.0: reg 10: [mem 0xf7f17000-0xf7f173ff]
[    3.553871] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    3.553897] pci 0000:00:1f.0: [8086:1e59] type 00 class 0x060100
[    3.554025] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[    3.554045] pci 0000:00:1f.2: reg 10: [io  0xf0b0-0xf0b7]
[    3.554053] pci 0000:00:1f.2: reg 14: [io  0xf0a0-0xf0a3]
[    3.554061] pci 0000:00:1f.2: reg 18: [io  0xf090-0xf097]
[    3.554070] pci 0000:00:1f.2: reg 1c: [io  0xf080-0xf083]
[    3.554078] pci 0000:00:1f.2: reg 20: [io  0xf060-0xf07f]
[    3.554086] pci 0000:00:1f.2: reg 24: [mem 0xf7f16000-0xf7f167ff]
[    3.554133] pci 0000:00:1f.2: PME# supported from D3hot
[    3.554153] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    3.554169] pci 0000:00:1f.3: reg 10: [mem 0xf7f15000-0xf7f150ff 64bit]
[    3.554191] pci 0000:00:1f.3: reg 20: [io  0xf040-0xf05f]
[    3.554343] pci 0000:01:00.0: [10ec:8136] type 00 class 0x020000
[    3.554408] pci 0000:01:00.0: reg 10: [io  0xe000-0xe0ff]
[    3.554530] pci 0000:01:00.0: reg 18: [mem 0xf0a04000-0xf0a04fff 64bit pref]
[    3.554605] pci 0000:01:00.0: reg 20: [mem 0xf0a00000-0xf0a03fff 64bit pref]
[    3.554943] pci 0000:01:00.0: supports D1 D2
[    3.554944] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.559841] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
[    3.559846] pci 0000:00:1c.0:   bridge window [io  0xe000-0xefff]
[    3.559854] pci 0000:00:1c.0:   bridge window [mem 0xf0a00000-0xf0afffff 64bit pref]
[    3.559961] pci 0000:02:00.0: [8086:0887] type 00 class 0x028000
[    3.560008] pci 0000:02:00.0: reg 10: [mem 0xf7e00000-0xf7e01fff 64bit]
[    3.560236] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    3.566516] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
[    3.566523] pci 0000:00:1c.1:   bridge window [mem 0xf7e00000-0xf7efffff]
[    3.566650] pci 0000:03:00.0: [10ec:5229] type 00 class 0xff0000
[    3.566714] pci 0000:03:00.0: reg 10: [mem 0xf7400000-0xf7400fff]
[    3.567202] pci 0000:03:00.0: supports D1 D2
[    3.567204] pci 0000:03:00.0: PME# supported from D1 D2 D3hot
[    3.573158] pci 0000:00:1c.3: PCI bridge to [bus 03-03]
[    3.573163] pci 0000:00:1c.3:   bridge window [io  0xd000-0xdfff]
[    3.573167] pci 0000:00:1c.3:   bridge window [mem 0xf7400000-0xf7dfffff]
[    3.573174] pci 0000:00:1c.3:   bridge window [mem 0xf0000000-0xf09fffff 64bit pref]
[    3.573192] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    3.573291] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
[    3.573327] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[    3.573360] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[    3.573470]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    3.573636]  pci0000:00: ACPI _OSC control (0x18) granted
[    3.576822] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[    3.576862] ACPI: PCI Interrupt Link [LNKB] (IRQs *3 4 5 6 10 11 12 14 15)
[    3.576900] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
[    3.576936] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
[    3.576973] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    3.577011] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    3.577050] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 10 11 12 14 15)
[    3.577087] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 *4 5 6 10 11 12 14 15)
[    3.577137] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    3.577137] vgaarb: loaded
[    3.577137] vgaarb: bridge control possible 0000:00:02.0
[    3.577137] PCI: Using ACPI for IRQ routing
[    3.578031] PCI: pci_cache_line_size set to 64 bytes
[    3.578161] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[    3.578163] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[    3.578164] e820: reserve RAM buffer [mem 0xd987d000-0xdbffffff]
[    3.578167] e820: reserve RAM buffer [mem 0xda2a5000-0xdbffffff]
[    3.578169] e820: reserve RAM buffer [mem 0xdad7f000-0xdbffffff]
[    3.578170] e820: reserve RAM buffer [mem 0xdb000000-0xdbffffff]
[    3.578171] e820: reserve RAM buffer [mem 0x11f600000-0x11fffffff]
[    3.578244] NetLabel: Initializing
[    3.578245] NetLabel:  domain hash size = 128
[    3.578246] NetLabel:  protocols = UNLABELED CIPSOv4
[    3.578255] NetLabel:  unlabeled traffic allowed by default
[    3.578269] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    3.578274] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    3.580777] Switching to clocksource hpet
[    3.584034] pnp: PnP ACPI init
[    3.584045] ACPI: bus type pnp registered
[    3.584259] pnp 00:00: [bus 00-3e]
[    3.584262] pnp 00:00: [io  0x0000-0x0cf7 window]
[    3.584263] pnp 00:00: [io  0x0cf8-0x0cff]
[    3.584265] pnp 00:00: [io  0x0d00-0xffff window]
[    3.584266] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    3.584268] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[    3.584269] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[    3.584271] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[    3.584272] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[    3.584274] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[    3.584275] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[    3.584276] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[    3.584278] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[    3.584279] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[    3.584281] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[    3.584282] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[    3.584284] pnp 00:00: [mem 0x000ec000-0x000effff window]
[    3.584285] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[    3.584287] pnp 00:00: [mem 0xdfa00000-0xfeafffff window]
[    3.584288] pnp 00:00: [mem 0x00010000-0x0001ffff window]
[    3.584336] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    3.584358] pnp 00:01: [mem 0xfed40000-0xfed44fff]
[    3.584384] system 00:01: [mem 0xfed40000-0xfed44fff] has been reserved
[    3.584387] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
[    3.584396] pnp 00:02: [io  0x0000-0x001f]
[    3.584397] pnp 00:02: [io  0x0081-0x0091]
[    3.584399] pnp 00:02: [io  0x0093-0x009f]
[    3.584400] pnp 00:02: [io  0x00c0-0x00df]
[    3.584402] pnp 00:02: [dma 4]
[    3.584419] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[    3.584425] pnp 00:03: [mem 0xff010000-0xffffffff]
[    3.584440] pnp 00:03: Plug and Play ACPI device, IDs INT0800 (active)
[    3.584502] pnp 00:04: [mem 0xfed00000-0xfed003ff]
[    3.584520] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
[    3.584530] pnp 00:05: [io  0x002e-0x002f]
[    3.584531] pnp 00:05: [io  0x004e-0x004f]
[    3.584532] pnp 00:05: [io  0x0061]
[    3.584534] pnp 00:05: [io  0x0063]
[    3.584535] pnp 00:05: [io  0x0065]
[    3.584536] pnp 00:05: [io  0x0067]
[    3.584537] pnp 00:05: [io  0x0070]
[    3.584539] pnp 00:05: [io  0x0080]
[    3.584540] pnp 00:05: [io  0x0092]
[    3.584541] pnp 00:05: [io  0x00b2-0x00b3]
[    3.584542] pnp 00:05: [io  0x0680-0x069f]
[    3.584544] pnp 00:05: [io  0x0200-0x020f]
[    3.584545] pnp 00:05: [io  0xffff]
[    3.584546] pnp 00:05: [io  0xffff]
[    3.584549] pnp 00:05: [io  0x0400-0x0453]
[    3.584550] pnp 00:05: [io  0x0458-0x047f]
[    3.584551] pnp 00:05: [io  0x0500-0x057f]
[    3.584553] pnp 00:05: [io  0x164e-0x164f]
[    3.584583] system 00:05: [io  0x0680-0x069f] has been reserved
[    3.584584] system 00:05: [io  0x0200-0x020f] has been reserved
[    3.584586] system 00:05: [io  0xffff] has been reserved
[    3.584588] system 00:05: [io  0xffff] has been reserved
[    3.584589] system 00:05: [io  0x0400-0x0453] has been reserved
[    3.584591] system 00:05: [io  0x0458-0x047f] has been reserved
[    3.584592] system 00:05: [io  0x0500-0x057f] has been reserved
[    3.584594] system 00:05: [io  0x164e-0x164f] has been reserved
[    3.584596] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    3.584617] pnp 00:06: [io  0x0454-0x0457]
[    3.584641] system 00:06: [io  0x0454-0x0457] has been reserved
[    3.584643] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    3.584661] pnp 00:07: [io  0x0010-0x001f]
[    3.584662] pnp 00:07: [io  0x0022-0x003f]
[    3.584663] pnp 00:07: [io  0x0044-0x005f]
[    3.584665] pnp 00:07: [io  0x0072-0x007f]
[    3.584666] pnp 00:07: [io  0x0080]
[    3.584667] pnp 00:07: [io  0x0084-0x0086]
[    3.584668] pnp 00:07: [io  0x0088]
[    3.584670] pnp 00:07: [io  0x008c-0x008e]
[    3.584671] pnp 00:07: [io  0x0090-0x009f]
[    3.584672] pnp 00:07: [io  0x00a2-0x00bf]
[    3.584674] pnp 00:07: [io  0x00e0-0x00ef]
[    3.584675] pnp 00:07: [io  0x04d0-0x04d1]
[    3.584676] pnp 00:07: [io  0xfd60-0xfd63]
[    3.584678] pnp 00:07: [mem 0xff000000-0xff000fff]
[    3.584707] system 00:07: [io  0x04d0-0x04d1] has been reserved
[    3.584709] system 00:07: [io  0xfd60-0xfd63] has been reserved
[    3.584711] system 00:07: [mem 0xff000000-0xff000fff] has been reserved
[    3.584713] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    3.584719] pnp 00:08: [io  0x00f0-0x00ff]
[    3.584727] pnp 00:08: [irq 13]
[    3.584744] pnp 00:08: Plug and Play ACPI device, IDs PNP0c04 (active)
[    3.603386] pnp 00:09: [io  0x0070-0x0077]
[    3.603392] pnp 00:09: [irq 8]
[    3.603413] pnp 00:09: Plug and Play ACPI device, IDs PNP0b00 (active)
[    3.603436] pnp 00:0a: [irq 12]
[    3.603456] pnp 00:0a: Plug and Play ACPI device, IDs TOS1110 SYN0700 SYN0002 PNP0f13 (active)
[    3.603466] pnp 00:0b: [io  0x0060]
[    3.603468] pnp 00:0b: [io  0x0064]
[    3.603472] pnp 00:0b: [irq 1]
[    3.603492] pnp 00:0b: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    3.603662] pnp 00:0c: [mem 0xfed1c000-0xfed1ffff]
[    3.603664] pnp 00:0c: [mem 0xfed10000-0xfed17fff]
[    3.603665] pnp 00:0c: [mem 0xfed18000-0xfed18fff]
[    3.603666] pnp 00:0c: [mem 0xfed19000-0xfed19fff]
[    3.603668] pnp 00:0c: [mem 0xf8000000-0xfbffffff]
[    3.603669] pnp 00:0c: [mem 0xfed20000-0xfed3ffff]
[    3.603670] pnp 00:0c: [mem 0xfed90000-0xfed93fff]
[    3.603672] pnp 00:0c: [mem 0xfed45000-0xfed8ffff]
[    3.603673] pnp 00:0c: [mem 0xff010000-0xffffffff]
[    3.603674] pnp 00:0c: [mem 0xfee00000-0xfeefffff]
[    3.603676] pnp 00:0c: [mem 0xdfa00000-0xdfa00fff]
[    3.603721] system 00:0c: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    3.603723] system 00:0c: [mem 0xfed10000-0xfed17fff] has been reserved
[    3.603724] system 00:0c: [mem 0xfed18000-0xfed18fff] has been reserved
[    3.603726] system 00:0c: [mem 0xfed19000-0xfed19fff] has been reserved
[    3.603728] system 00:0c: [mem 0xf8000000-0xfbffffff] has been reserved
[    3.603730] system 00:0c: [mem 0xfed20000-0xfed3ffff] has been reserved
[    3.603731] system 00:0c: [mem 0xfed90000-0xfed93fff] has been reserved
[    3.603733] system 00:0c: [mem 0xfed45000-0xfed8ffff] has been reserved
[    3.603735] system 00:0c: [mem 0xff010000-0xffffffff] has been reserved
[    3.603737] system 00:0c: [mem 0xfee00000-0xfeefffff] could not be reserved
[    3.603738] system 00:0c: [mem 0xdfa00000-0xdfa00fff] has been reserved
[    3.603741] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
[    3.604395] pnp 00:0d: [mem 0x20000000-0x201fffff]
[    3.604397] pnp 00:0d: [mem 0x40004000-0x40004fff]
[    3.604445] system 00:0d: [mem 0x20000000-0x201fffff] has been reserved
[    3.604447] system 00:0d: [mem 0x40004000-0x40004fff] has been reserved
[    3.604449] system 00:0d: Plug and Play ACPI device, IDs PNP0c01 (active)
[    3.604550] pnp: PnP ACPI: found 14 devices
[    3.604551] ACPI: ACPI bus type pnp unregistered
[    3.610909] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
[    3.610913] pci 0000:00:1c.0:   bridge window [io  0xe000-0xefff]
[    3.610921] pci 0000:00:1c.0:   bridge window [mem 0xf0a00000-0xf0afffff 64bit pref]
[    3.610927] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
[    3.610933] pci 0000:00:1c.1:   bridge window [mem 0xf7e00000-0xf7efffff]
[    3.610941] pci 0000:00:1c.3: PCI bridge to [bus 03-03]
[    3.610945] pci 0000:00:1c.3:   bridge window [io  0xd000-0xdfff]
[    3.610950] pci 0000:00:1c.3:   bridge window [mem 0xf7400000-0xf7dfffff]
[    3.610954] pci 0000:00:1c.3:   bridge window [mem 0xf0000000-0xf09fffff 64bit pref]
[    3.610990] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    3.610992] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    3.610994] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    3.610995] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
[    3.610997] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
[    3.610998] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
[    3.611000] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
[    3.611001] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
[    3.611003] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
[    3.611004] pci_bus 0000:00: resource 13 [mem 0xdfa00000-0xfeafffff]
[    3.611006] pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
[    3.611008] pci_bus 0000:01: resource 2 [mem 0xf0a00000-0xf0afffff 64bit pref]
[    3.611009] pci_bus 0000:02: resource 1 [mem 0xf7e00000-0xf7efffff]
[    3.611011] pci_bus 0000:03: resource 0 [io  0xd000-0xdfff]
[    3.611012] pci_bus 0000:03: resource 1 [mem 0xf7400000-0xf7dfffff]
[    3.611014] pci_bus 0000:03: resource 2 [mem 0xf0000000-0xf09fffff 64bit pref]
[    3.611039] NET: Registered protocol family 2
[    3.611128] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    3.611675] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    3.613137] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    3.613323] TCP: Hash tables configured (established 524288 bind 65536)
[    3.613325] TCP: reno registered
[    3.613332] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    3.613369] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    3.613438] NET: Registered protocol family 1
[    3.613449] pci 0000:00:02.0: Boot video device
[    3.646760] PCI: CLS 64 bytes, default 64
[    3.646796] Unpacking initramfs...
[    3.698754] Freeing initrd memory: 2956k freed
[    3.699058] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    3.699060] software IO TLB [mem 0xd587d000-0xd987cfff] (64MB) mapped at [ffff8800d587d000-ffff8800d987cfff]
[    3.699641] audit: initializing netlink socket (disabled)
[    3.699652] type=2000 audit(1347040783.696:1): initialized
[    3.710559] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    3.711899] VFS: Disk quotas dquot_6.5.2
[    3.711941] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.712015] msgmni has been set to 7700
[    3.712178] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    3.712206] io scheduler noop registered
[    3.712208] io scheduler deadline registered
[    3.712246] io scheduler cfq registered (default)
[    3.712481] vesafb: mode is 1366x768x32, linelength=5504, pages=0
[    3.712482] vesafb: scrolling: redraw
[    3.712484] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    3.713047] vesafb: framebuffer at 0xe0000000, mapped to 0xffffc90005100000, using 4160k, total 4160k
[    3.789871] Console: switching to colour frame buffer device 170x48
[    3.866421] fb0: VESA VGA frame buffer device
[    3.866428] intel_idle: does not run on family 6 model 58
[    3.866452] GHES: HEST is not enabled!
[    3.866497] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    3.866873] Linux agpgart interface v0.103
[    3.866944] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    3.883306] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.883328] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.883431] mousedev: PS/2 mouse device common for all mice
[    3.883683] rtc_cmos 00:09: RTC can wake from S4
[    3.883808] rtc_cmos 00:09: rtc core: registered rtc_cmos as rtc0
[    3.883835] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    3.883841] cpuidle: using governor ladder
[    3.883842] cpuidle: using governor menu
[    3.883935] drop_monitor: Initializing network drop monitor service
[    3.883992] TCP: cubic registered
[    3.884068] NET: Registered protocol family 10
[    3.884201] NET: Registered protocol family 17
[    3.884207] Key type dns_resolver registered
[    3.884303] PM: Hibernation image not present or could not be loaded.
[    3.884310] registered taskstats version 1
[    3.884799] rtc_cmos 00:09: setting system clock to 2012-09-07 17:59:44 UTC (1347040784)
[    3.885926] Freeing unused kernel memory: 756k freed
[    3.886015] Write protecting the kernel read-only data: 8192k
[    3.889630] Freeing unused kernel memory: 1496k freed
[    3.891379] Freeing unused kernel memory: 616k freed
[    3.897477] systemd-udevd[64]: starting version 189
[    3.901421] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    3.921044] ACPI: bus type usb registered
[    3.921156] usbcore: registered new interface driver usbfs
[    3.921293] usbcore: registered new interface driver hub
[    3.921344] usbcore: registered new device driver usb
[    3.922486] xhci_hcd 0000:00:14.0: setting latency timer to 64
[    3.922491] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.922500] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    3.922597] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.922619] xhci_hcd 0000:00:14.0: irq 16, io mem 0xf7f00000
[    3.922676] xhci_hcd 0000:00:14.0: irq 40 for MSI/MSI-X
[    3.922758] SCSI subsystem initialized
[    3.922959] xHCI xhci_add_endpoint called for root hub
[    3.922962] xHCI xhci_check_bandwidth called for root hub
[    3.923026] hub 1-0:1.0: USB hub found
[    3.923038] hub 1-0:1.0: 4 ports detected
[    3.923218] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.923224] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    3.923445] xHCI xhci_add_endpoint called for root hub
[    3.923447] xHCI xhci_check_bandwidth called for root hub
[    3.923482] hub 2-0:1.0: USB hub found
[    3.923491] hub 2-0:1.0: 4 ports detected
[    3.924030] libata version 3.00 loaded.
[    3.927106] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.930198] ahci 0000:00:1f.2: version 3.0
[    3.930257] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[    3.930304] ahci: SSS flag set, parallel bus scan disabled
[    3.943389] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x5 impl SATA mode
[    3.943392] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems apst 
[    3.943397] ahci 0000:00:1f.2: setting latency timer to 64
[    3.950460] scsi0 : ahci
[    3.950534] scsi1 : ahci
[    3.950594] scsi2 : ahci
[    3.950654] scsi3 : ahci
[    3.950710] scsi4 : ahci
[    3.950767] scsi5 : ahci
[    3.951042] ata1: SATA max UDMA/133 abar m2048@0xf7f16000 port 0xf7f16100 irq 41
[    3.951044] ata2: DUMMY
[    3.951046] ata3: SATA max UDMA/133 abar m2048@0xf7f16000 port 0xf7f16200 irq 41
[    3.951047] ata4: DUMMY
[    3.951048] ata5: DUMMY
[    3.951049] ata6: DUMMY
[    3.951110] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[    3.951115] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[    3.951123] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[    3.951158] ehci_hcd 0000:00:1a.0: debug port 2
[    3.955057] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[    3.955069] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xf7f18000
[    3.963362] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.963495] hub 3-0:1.0: USB hub found
[    3.963498] hub 3-0:1.0: 2 ports detected
[    3.963564] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[    3.963567] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[    3.963571] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
[    3.963591] ehci_hcd 0000:00:1d.0: debug port 2
[    3.967476] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[    3.967489] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xf7f17000
[    3.976710] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.976812] hub 4-0:1.0: USB hub found
[    3.976815] hub 4-0:1.0: 2 ports detected
[    4.270042] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.270580] ata1.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[    4.270586] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    4.270590] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    4.280044] usb 1-2: new low-speed USB device number 2 using xhci_hcd
[    4.298114] usb 1-2: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
[    4.314778] ata1.00: ATA-8: TOSHIBA MK5075GSX, GT001M, max UDMA/100
[    4.314782] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    4.315637] ata1.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[    4.315641] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    4.315645] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    4.316347] ata1.00: configured for UDMA/100
[    4.316463] scsi 0:0:0:0: Direct-Access     ATA      TOSHIBA MK5075GS GT00 PQ: 0 ANSI: 5
[    4.403365] usb 3-1: new high-speed USB device number 2 using ehci_hcd
[    4.527264] hub 3-1:1.0: USB hub found
[    4.527364] hub 3-1:1.0: 6 ports detected
[    4.633358] usb 4-1: new high-speed USB device number 2 using ehci_hcd
[    4.633379] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.638254] ata3.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[    4.638259] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    4.638262] ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    4.640431] ata3.00: ATAPI: TSSTcorp CDDVDW SN-208AB, TO03, max UDMA/100
[    4.643863] ata3.00: ACPI cmd ef/90:06:00:00:00:00 (SET FEATURES) succeeded
[    4.643867] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    4.643871] ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[    4.646033] ata3.00: configured for UDMA/100
[    4.647609] scsi 2:0:0:0: CD-ROM            TSSTcorp CDDVDW SN-208AB  TO03 PQ: 0 ANSI: 5
[    4.650198] usbcore: registered new interface driver usbhid
[    4.650200] usbhid: USB HID core driver
[    4.651344] input: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM) as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/input/input1
[    4.651444] hid-generic 0003:045E:0047.0001: input,hidraw0: USB HID v1.10 Mouse [Microsoft Microsoft 5-Button Mouse with IntelliEye(TM)] on usb-0000:00:14.0-2/input0
[    4.651852] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    4.651922] sd 0:0:0:0: [sda] Write Protect is off
[    4.651926] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    4.651951] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.657512] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    4.657526] cdrom: Uniform CD-ROM driver Revision: 3.20
[    4.657688] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    4.743131]  sda: sda1 sda2 sda3 sda4
[    4.743525] sd 0:0:0:0: [sda] Attached SCSI disk
[    4.757264] hub 4-1:1.0: USB hub found
[    4.757355] hub 4-1:1.0: 6 ports detected
[    4.823495] usb 3-1.4: new high-speed USB device number 3 using ehci_hcd
[    5.603647] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
[    7.206932] systemd-udevd[175]: starting version 189
[    7.882034] cfg80211: Calling CRDA to update world regulatory domain
[    8.353546] input: PC Speaker as /devices/platform/pcspkr/input/input2
[    8.364363] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3
[    8.364422] ACPI: Power Button [PWRB]
[    8.364738] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input4
[    8.364918] ACPI: Lid Switch [LID0]
[    8.365080] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
[    8.365267] ACPI: Power Button [PWRF]
[    8.368687] toshiba_bluetooth: Detected Toshiba ACPI Bluetooth device - installing RFKill handler
[    8.368877] toshiba_bluetooth: Re-enabling Toshiba Bluetooth
[    8.372734] wmi: Mapper loaded
[    8.406369] Linux media interface: v0.10
[    8.449418] Initializing Realtek PCIE storage driver...
[    8.449434] --- Sep  6 2012, 18:28:32 ---
[    8.449515] Resource length: 0x1000
[    8.450028] Original address: 0xf7400000, remapped address: 0xffffc9000067e000
[    8.450033] pci->irq = 19
[    8.450035] rtsx_acquire_irq: chip->msi_en = 0, pci->irq = 19
[    8.454180] scsi6 : SCSI emulation for RTS5229
[    8.454222] ACPI: Requesting acpi_cpufreq
[    8.454377] rts5229: waiting for device to settle before scanning
[    8.472789] Monitor-Mwait will be used to enter C-1 state
[    8.472829] Monitor-Mwait will be used to enter C-2 state
[    8.472839] ACPI: acpi_idle registered with cpuidle
[    8.496131] ACPI Warning: 0x000000000000f040-0x000000000000f05f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20120320/utaddress-251)
[    8.496137] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    8.506419] [drm] Initialized drm 1.1.0 20060810
[    8.523469] ACPI: Battery Slot [BAT1] (battery present)
[    8.523844] ACPI: AC Adapter [ACAD] (off-line)
[    8.525297] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20120320/utaddress-251)
[    8.525303] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    8.525306] ACPI Warning: 0x0000000000000500-0x000000000000053f SystemIO conflicts with Region \GPRF 1 (20120320/utaddress-251)
[    8.525309] ACPI Warning: 0x0000000000000500-0x000000000000053f SystemIO conflicts with Region \GPZP 2 (20120320/utaddress-251)
[    8.525312] ACPI Warning: 0x0000000000000500-0x000000000000053f SystemIO conflicts with Region \GPIO 3 (20120320/utaddress-251)
[    8.525316] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    8.525318] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    8.527877] iTCO_vendor_support: vendor-support=0
[    8.528264] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
[    8.528317] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
[    8.528379] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    8.546429] agpgart-intel 0000:00:00.0: Intel Ivybridge Chipset
[    8.546548] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
[    8.547844] agpgart-intel 0000:00:00.0: detected 65536K stolen memory
[    8.547981] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xe0000000
[    8.563259] iwlwifi: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:
[    8.563261] iwlwifi: Copyright(c) 2003-2012 Intel Corporation
[    8.563396] iwlwifi 0000:02:00.0: pci_resource_len = 0x00002000
[    8.563398] iwlwifi 0000:02:00.0: pci_resource_base = ffffc9000508c000
[    8.563400] iwlwifi 0000:02:00.0: HW Revision ID = 0xC4
[    8.563497] iwlwifi 0000:02:00.0: irq 42 for MSI/MSI-X
[    8.571657] mei 0000:00:16.0: setting latency timer to 64
[    8.571741] mei 0000:00:16.0: irq 43 for MSI/MSI-X
[    8.573875] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    8.574019] r8169 0000:01:00.0: irq 44 for MSI/MSI-X
[    8.574158] r8169 0000:01:00.0: eth0: RTL8105e at 0xffffc900050ae000, b8:88:e3:14:0b:c8, XID 00c00000 IRQ 44
[    8.582054] mei 0000:00:16.0: wd: failed to find the client
[    8.605670] toshiba_acpi: Toshiba Laptop ACPI Extras version 0.19
[    8.605733] input: Toshiba input device as /devices/virtual/input/input6
[    8.611186] Registered led device: toshiba::illumination
[    8.668117] Linux video capture interface: v2.00
[    8.750237] usb 3-1.2: new full-speed USB device number 4 using ehci_hcd
[    8.765347] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
[    8.931127] uvcvideo: Found UVC 1.00 device TOSHIBA Web Camera - HD (04f2:b307)
[    8.942295] input: TOSHIBA Web Camera - HD as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.4/3-1.4:1.0/input/input7
[    8.942370] usbcore: registered new interface driver uvcvideo
[    8.942371] USB Video Class driver (1.1.1)
[    9.039653] Bluetooth: Core ver 2.16
[    9.039664] NET: Registered protocol family 31
[    9.039665] Bluetooth: HCI device and connection manager initialized
[    9.039667] Bluetooth: HCI socket layer initialized
[    9.039668] Bluetooth: L2CAP socket layer initialized
[    9.039671] Bluetooth: SCO socket layer initialized
[    9.178809] iwlwifi 0000:02:00.0: loaded firmware version 18.168.6.1
[    9.178979] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUG disabled
[    9.178980] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
[    9.178981] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
[    9.178982] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE enabled
[    9.178983] iwlwifi 0000:02:00.0: CONFIG_IWLWIFI_P2P disabled
[    9.178984] iwlwifi 0000:02:00.0: Detected Intel(R) Centrino(R) Wireless-N 2230 BGN, REV=0xC8
[    9.179057] iwlwifi 0000:02:00.0: L1 Disabled; Enabling L0S
[    9.197607] iwlwifi 0000:02:00.0: device EEPROM VER=0x81c, CALIB=0x6
[    9.197610] iwlwifi 0000:02:00.0: Device SKU: 0x150
[    9.197613] iwlwifi 0000:02:00.0: Valid Tx ant: 0x3, Valid Rx ant: 0x3
[    9.197632] iwlwifi 0000:02:00.0: Tunable channels: 13 802.11bg, 0 802.11a channels
[    9.198014] Registered led device: phy0-led
[    9.198626] usbcore: registered new interface driver btusb
[    9.213238] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[    9.290400] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x12
[    9.290761] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x12
[    9.291054] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x12
[    9.291303] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x12
[    9.291558] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x12
[    9.291746] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x12
[    9.291966] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x12
[    9.292204] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x12
[    9.292494] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    9.453446] scsi 6:0:0:0: Direct-Access     Generic- SD/M.S.          1.00 PQ: 0 ANSI: 0 CCS
[    9.453597] Bad LUN (0:1)
[    9.453892] Bad target number (1:0)
[    9.454286] sd 6:0:0:0: [sdb] Attached SCSI removable disk
[    9.454321] Bad target number (2:0)
[    9.454680] Bad target number (3:0)
[    9.455099] Bad target number (4:0)
[    9.455924] Bad target number (5:0)
[    9.456741] Bad target number (6:0)
[    9.457093] Bad target number (7:0)
[    9.457394] rts5229: device scan complete
[    9.491025] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x126c00
[    9.562332] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[    9.562475] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[    9.562559] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    9.563243] checking generic (e0000000 410000) vs hw (e0000000 10000000)
[    9.563245] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
[    9.563263] Console: switching to colour dummy device 80x25
[    9.563360] i915 0000:00:02.0: setting latency timer to 64
[    9.566548] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input11
[    9.599910] i915 0000:00:02.0: irq 46 for MSI/MSI-X
[    9.599916] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    9.599917] [drm] Driver supports precise vblank timestamp query.
[    9.600270] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   10.024571] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
[   10.177414] fbcon: inteldrmfb (fb0) is primary device
[   10.430125] Console: switching to colour frame buffer device 170x48
[   10.435896] fb0: inteldrmfb frame buffer device
[   10.435896] drm: registered panic notifier
[   10.439280] acpi device:56: registered as cooling_device8
[   10.439534] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   10.439684] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input12
[   10.439924] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[   10.757052] EXT4-fs (sda4): re-mounted. Opts: data=ordered
[   10.803717] Adding 8447996k swap on /dev/sda3.  Priority:-1 extents:1 across:8447996k 
[   12.819664] iwlwifi 0000:02:00.0: L1 Disabled; Enabling L0S
[   12.827218] iwlwifi 0000:02:00.0: Radio type=0x2-0x0-0x0
[   13.094080] iwlwifi 0000:02:00.0: L1 Disabled; Enabling L0S
[   13.101649] iwlwifi 0000:02:00.0: Radio type=0x2-0x0-0x0
[   13.187196] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   13.631466] wlan0: authenticate with 74:44:01:36:c8:ae
[   13.640130] wlan0: send auth to 74:44:01:36:c8:ae (try 1/3)
[   13.641960] wlan0: authenticated
[   13.642125] wlan0: waiting for beacon from 74:44:01:36:c8:ae
[   13.660040] wlan0: associate with 74:44:01:36:c8:ae (try 1/3)
[   13.663201] wlan0: RX AssocResp from 74:44:01:36:c8:ae (capab=0x401 status=0 aid=2)
[   13.664627] wlan0: associated
[   13.664888] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   35.837009] EXT4-fs (sda4): re-mounted. Opts: data=ordered,commit=600
[   38.209752] r8169 0000:01:00.0: eth0: link down
[   38.210316] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[  164.165146] fuse init (API version 7.19)
[ 2538.845576] EXT4-fs (sda4): re-mounted. Opts: data=ordered,commit=0
[ 2574.103228] [Firmware Bug]: battery: (dis)charge rate invalid.

Xorg.0.log

[  1112.805] 
X.Org X Server 1.12.4
Release Date: 2012-08-27
[  1112.805] X Protocol Version 11, Revision 0
[  1112.805] Build Operating System: Linux 3.4.8-1-ARCH x86_64 
[  1112.805] Current Operating System: Linux fredrik-arch 3.5.3-1-ARCH #1 SMP PREEMPT Sun Aug 26 09:14:51 CEST 2012 x86_64
[  1112.805] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=896552cc-1884-4d76-8794-e06627b3a834 ro quiet
[  1112.805] Build Date: 27 August 2012  08:04:39AM
[  1112.805]  
[  1112.805] Current version of pixman: 0.26.2
[  1112.805] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[  1112.805] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  1112.805] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Sep  7 20:18:13 2012
[  1112.805] (==) Using config directory: "/etc/X11/xorg.conf.d"
[  1112.805] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  1112.805] (==) No Layout section.  Using the first Screen section.
[  1112.805] (==) No screen section available. Using defaults.
[  1112.805] (**) |-->Screen "Default Screen Section" (0)
[  1112.805] (**) |   |-->Monitor "<default monitor>"
[  1112.806] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[  1112.806] (==) Automatically adding devices
[  1112.806] (==) Automatically enabling devices
[  1112.806] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[  1112.806] 	Entry deleted from font path.
[  1112.806] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[  1112.806] 	Entry deleted from font path.
[  1112.806] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[  1112.806] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[  1112.806] 	Entry deleted from font path.
[  1112.806] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[  1112.806] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/Type1/
[  1112.806] (==) ModulePath set to "/usr/lib/xorg/modules"
[  1112.806] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[  1112.806] (II) Loader magic: 0x7c8b00
[  1112.806] (II) Module ABI versions:
[  1112.806] 	X.Org ANSI C Emulation: 0.4
[  1112.806] 	X.Org Video Driver: 12.1
[  1112.806] 	X.Org XInput driver : 16.0
[  1112.806] 	X.Org Server Extension : 6.0
[  1112.806] (--) PCI:*(0:0:2:0) 8086:0166:1179:fb00 rev 9, Mem @ 0xf7000000/4194304, 0xe0000000/268435456, I/O @ 0x0000f000/64
[  1112.807] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[  1112.807] (II) LoadModule: "extmod"
[  1112.807] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[  1112.807] (II) Module extmod: vendor="X.Org Foundation"
[  1112.807] 	compiled for 1.12.4, module version = 1.0.0
[  1112.807] 	Module class: X.Org Server Extension
[  1112.807] 	ABI class: X.Org Server Extension, version 6.0
[  1112.807] (II) Loading extension MIT-SCREEN-SAVER
[  1112.807] (II) Loading extension XFree86-VidModeExtension
[  1112.807] (II) Loading extension XFree86-DGA
[  1112.807] (II) Loading extension DPMS
[  1112.807] (II) Loading extension XVideo
[  1112.807] (II) Loading extension XVideo-MotionCompensation
[  1112.807] (II) Loading extension X-Resource
[  1112.807] (II) LoadModule: "dbe"
[  1112.807] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[  1112.807] (II) Module dbe: vendor="X.Org Foundation"
[  1112.807] 	compiled for 1.12.4, module version = 1.0.0
[  1112.807] 	Module class: X.Org Server Extension
[  1112.807] 	ABI class: X.Org Server Extension, version 6.0
[  1112.807] (II) Loading extension DOUBLE-BUFFER
[  1112.807] (II) LoadModule: "glx"
[  1112.807] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  1112.807] (II) Module glx: vendor="X.Org Foundation"
[  1112.807] 	compiled for 1.12.4, module version = 1.0.0
[  1112.808] 	ABI class: X.Org Server Extension, version 6.0
[  1112.808] (==) AIGLX enabled
[  1112.808] (II) Loading extension GLX
[  1112.808] (II) LoadModule: "record"
[  1112.808] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[  1112.808] (II) Module record: vendor="X.Org Foundation"
[  1112.808] 	compiled for 1.12.4, module version = 1.13.0
[  1112.808] 	Module class: X.Org Server Extension
[  1112.808] 	ABI class: X.Org Server Extension, version 6.0
[  1112.808] (II) Loading extension RECORD
[  1112.808] (II) LoadModule: "dri"
[  1112.808] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[  1112.808] (II) Module dri: vendor="X.Org Foundation"
[  1112.808] 	compiled for 1.12.4, module version = 1.0.0
[  1112.808] 	ABI class: X.Org Server Extension, version 6.0
[  1112.808] (II) Loading extension XFree86-DRI
[  1112.808] (II) LoadModule: "dri2"
[  1112.808] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[  1112.808] (II) Module dri2: vendor="X.Org Foundation"
[  1112.808] 	compiled for 1.12.4, module version = 1.2.0
[  1112.808] 	ABI class: X.Org Server Extension, version 6.0
[  1112.808] (II) Loading extension DRI2
[  1112.808] (==) Matched intel as autoconfigured driver 0
[  1112.808] (==) Matched vesa as autoconfigured driver 1
[  1112.808] (==) Matched fbdev as autoconfigured driver 2
[  1112.808] (==) Assigned the driver to the xf86ConfigLayout
[  1112.808] (II) LoadModule: "intel"
[  1112.808] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[  1112.809] (II) Module intel: vendor="X.Org Foundation"
[  1112.809] 	compiled for 1.12.4, module version = 2.20.6
[  1112.809] 	Module class: X.Org Video Driver
[  1112.809] 	ABI class: X.Org Video Driver, version 12.1
[  1112.809] (II) LoadModule: "vesa"
[  1112.809] (WW) Warning, couldn't open module vesa
[  1112.809] (II) UnloadModule: "vesa"
[  1112.809] (II) Unloading vesa
[  1112.809] (EE) Failed to load module "vesa" (module does not exist, 0)
[  1112.809] (II) LoadModule: "fbdev"
[  1112.809] (WW) Warning, couldn't open module fbdev
[  1112.809] (II) UnloadModule: "fbdev"
[  1112.809] (II) Unloading fbdev
[  1112.809] (EE) Failed to load module "fbdev" (module does not exist, 0)
[  1112.809] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
	i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
	E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
	965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
	4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
	Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
	Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
	Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
	Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
	Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server,
	Ivybridge Server (GT2), Haswell Desktop (GT1), Haswell Desktop (GT2),
	Haswell Desktop (GT2+), Haswell Mobile (GT1), Haswell Mobile (GT2),
	Haswell Mobile (GT2+), Haswell Server (GT1), Haswell Server (GT2),
	Haswell Server (GT2+), Haswell SDV Desktop (GT1),
	Haswell SDV Desktop (GT2), Haswell SDV Desktop (GT2+),
	Haswell SDV Mobile (GT1), Haswell SDV Mobile (GT2),
	Haswell SDV Mobile (GT2+), Haswell SDV Server (GT1),
	Haswell SDV Server (GT2), Haswell SDV Server (GT2+),
	Haswell ULT Desktop (GT1), Haswell ULT Desktop (GT2),
	Haswell ULT Desktop (GT2+), Haswell ULT Mobile (GT1),
	Haswell ULT Mobile (GT2), Haswell ULT Mobile (GT2+),
	Haswell ULT Server (GT1), Haswell ULT Server (GT2),
	Haswell ULT Server (GT2+), Haswell CRW Desktop (GT1),
	Haswell CRW Desktop (GT2), Haswell CRW Desktop (GT2+),
	Haswell CRW Mobile (GT1), Haswell CRW Mobile (GT2),
	Haswell CRW Mobile (GT2+), Haswell CRW Server (GT1),
	Haswell CRW Server (GT2), Haswell CRW Server (GT2+)
[  1112.810] (++) using VT number 7

[  1112.813] drmOpenDevice: node name is /dev/dri/card0
[  1112.813] drmOpenDevice: open result is 7, (OK)
[  1112.813] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
[  1112.813] drmOpenDevice: node name is /dev/dri/card0
[  1112.813] drmOpenDevice: open result is 7, (OK)
[  1112.813] drmOpenByBusid: drmOpenMinor returns 7
[  1112.813] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
[  1112.813] drmOpenDevice: node name is /dev/dri/card0
[  1112.813] drmOpenDevice: open result is 8, (OK)
[  1112.813] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
[  1112.813] drmOpenDevice: node name is /dev/dri/card0
[  1112.813] drmOpenDevice: open result is 8, (OK)
[  1112.813] drmOpenByBusid: drmOpenMinor returns 8
[  1112.813] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
[  1112.813] (II) intel(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[  1112.813] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[  1112.813] (==) intel(0): RGB weight 888
[  1112.813] (==) intel(0): Default visual is TrueColor
[  1112.814] (--) intel(0): Integrated Graphics Chipset: Intel(R) Ivybridge Mobile (GT2)
[  1112.814] (**) intel(0): Relaxed fencing enabled
[  1112.814] (**) intel(0): Wait on SwapBuffers? enabled
[  1112.814] (**) intel(0): Triple buffering? enabled
[  1112.814] (**) intel(0): Framebuffer tiled
[  1112.814] (**) intel(0): Pixmaps tiled
[  1112.814] (**) intel(0): 3D buffers tiled
[  1112.814] (**) intel(0): SwapBuffers wait enabled
[  1112.814] (==) intel(0): video overlay key set to 0x101fe
[  1112.814] (II) intel(0): Output LVDS1 has no monitor section
[  1112.814] (EE) intel(0): unrecognised backlight control interface (null)
[  1112.814] (--) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
[  1112.814] (II) intel(0): Output VGA1 has no monitor section
[  1112.815] (II) intel(0): Output HDMI1 has no monitor section
[  1112.856] (II) intel(0): Output DP1 has no monitor section
[  1112.856] (II) intel(0): EDID for output LVDS1
[  1112.856] (II) intel(0): Manufacturer: CMO  Model: 1592  Serial#: 0
[  1112.856] (II) intel(0): Year: 2009  Week: 53
[  1112.856] (II) intel(0): EDID Version: 1.3
[  1112.856] (II) intel(0): Digital Display Input
[  1112.856] (II) intel(0): Max Image Size [cm]: horiz.: 35  vert.: 19
[  1112.856] (II) intel(0): Gamma: 2.20
[  1112.856] (II) intel(0): No DPMS capabilities specified
[  1112.856] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[  1112.856] (II) intel(0): First detailed timing is preferred mode
[  1112.856] (II) intel(0): redX: 0.602 redY: 0.340   greenX: 0.306 greenY: 0.530
[  1112.856] (II) intel(0): blueX: 0.151 blueY: 0.120   whiteX: 0.313 whiteY: 0.329
[  1112.856] (II) intel(0): Manufacturer's mask: 0
[  1112.856] (II) intel(0): Supported detailed timing:
[  1112.856] (II) intel(0): clock: 69.3 MHz   Image Size:  344 x 193 mm
[  1112.856] (II) intel(0): h_active: 1366  h_sync: 1382  h_sync_end 1416 h_blank_end 1466 h_border: 0
[  1112.856] (II) intel(0): v_active: 768  v_sync: 770  v_sync_end 776 v_blanking: 788 v_border: 0
[  1112.856] (II) intel(0):  N156B6-L0B
[  1112.856] (II) intel(0):  CMO
[  1112.856] (II) intel(0):  N156B6-L0B
[  1112.856] (II) intel(0): EDID (in hex):
[  1112.856] (II) intel(0): 	00ffffffffffff000daf921500000000
[  1112.856] (II) intel(0): 	35130103802313780a07f59a574e8726
[  1112.856] (II) intel(0): 	1e505400000001010101010101010101
[  1112.856] (II) intel(0): 	010101010101121b5664500014301022
[  1112.856] (II) intel(0): 	260058c110000018000000fe004e3135
[  1112.856] (II) intel(0): 	3642362d4c30420a2020000000fe0043
[  1112.856] (II) intel(0): 	4d4f0a202020202020202020000000fe
[  1112.856] (II) intel(0): 	004e31353642362d4c30420a20200020
[  1112.856] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1112.856] (II) intel(0): Printing DDC gathered Modelines:
[  1112.856] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1112.856] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[  1112.856] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[  1112.857] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[  1112.857] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[  1112.857] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[  1112.857] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[  1112.857] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[  1112.857] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
[  1112.857] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
[  1112.857] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
[  1112.857] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[  1112.857] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
[  1112.857] (II) intel(0): Printing probed modes for output LVDS1
[  1112.857] (II) intel(0): Modeline "1366x768"x60.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1112.857] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[  1112.857] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[  1112.857] (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[  1112.857] (II) intel(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[  1112.857] (II) intel(0): EDID for output VGA1
[  1112.857] (II) intel(0): EDID for output HDMI1
[  1112.899] (II) intel(0): EDID for output DP1
[  1112.899] (II) intel(0): Output LVDS1 connected
[  1112.899] (II) intel(0): Output VGA1 disconnected
[  1112.900] (II) intel(0): Output HDMI1 disconnected
[  1112.900] (II) intel(0): Output DP1 disconnected
[  1112.900] (II) intel(0): Using exact sizes for initial modes
[  1112.900] (II) intel(0): Output LVDS1 using initial mode 1366x768
[  1112.900] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[  1112.900] (II) intel(0): Kernel page flipping support detected, enabling
[  1112.900] (**) intel(0): Display dimensions: (350, 190) mm
[  1112.900] (**) intel(0): DPI set to (99, 102)
[  1112.900] (II) Loading sub module "fb"
[  1112.900] (II) LoadModule: "fb"
[  1112.900] (II) Loading /usr/lib/xorg/modules/libfb.so
[  1112.900] (II) Module fb: vendor="X.Org Foundation"
[  1112.900] 	compiled for 1.12.4, module version = 1.0.0
[  1112.900] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1112.900] (II) Loading sub module "dri2"
[  1112.900] (II) LoadModule: "dri2"
[  1112.900] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[  1112.900] (II) Module dri2: vendor="X.Org Foundation"
[  1112.900] 	compiled for 1.12.4, module version = 1.2.0
[  1112.900] 	ABI class: X.Org Server Extension, version 6.0
[  1112.900] (==) Depth 24 pixmap format is 32 bpp
[  1112.900] (II) intel(0): [DRI2] Setup complete
[  1112.900] (II) intel(0): [DRI2]   DRI driver: i965
[  1112.900] (II) intel(0): Allocated new frame buffer 1408x768 stride 5632, tiled
[  1112.901] (II) UXA(0): Driver registered support for the following operations:
[  1112.901] (II)         solid
[  1112.901] (II)         copy
[  1112.901] (II)         composite (RENDER acceleration)
[  1112.901] (II)         put_image
[  1112.901] (II)         get_image
[  1112.901] (==) intel(0): Backing store disabled
[  1112.901] (==) intel(0): Silken mouse enabled
[  1112.901] (II) intel(0): Initializing HW Cursor
[  1112.901] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  1112.901] (==) intel(0): DPMS enabled
[  1112.901] (==) intel(0): Intel XvMC decoder enabled
[  1112.901] (II) intel(0): Set up textured video
[  1112.901] (II) intel(0): [XvMC] xvmc_vld driver initialized.
[  1112.901] (II) intel(0): direct rendering: DRI2 Enabled
[  1112.901] (==) intel(0): hotplug detection: "enabled"
[  1112.923] (--) RandR disabled
[  1112.923] (II) Initializing built-in extension Generic Event Extension
[  1112.923] (II) Initializing built-in extension SHAPE
[  1112.923] (II) Initializing built-in extension MIT-SHM
[  1112.923] (II) Initializing built-in extension XInputExtension
[  1112.923] (II) Initializing built-in extension XTEST
[  1112.923] (II) Initializing built-in extension BIG-REQUESTS
[  1112.923] (II) Initializing built-in extension SYNC
[  1112.923] (II) Initializing built-in extension XKEYBOARD
[  1112.923] (II) Initializing built-in extension XC-MISC
[  1112.923] (II) Initializing built-in extension SECURITY
[  1112.923] (II) Initializing built-in extension XINERAMA
[  1112.923] (II) Initializing built-in extension XFIXES
[  1112.923] (II) Initializing built-in extension RENDER
[  1112.923] (II) Initializing built-in extension RANDR
[  1112.923] (II) Initializing built-in extension COMPOSITE
[  1112.923] (II) Initializing built-in extension DAMAGE
[  1112.936] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[  1112.936] (II) AIGLX: enabled GLX_INTEL_swap_event
[  1112.936] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[  1112.936] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[  1112.936] (II) AIGLX: Loaded and initialized i965
[  1112.936] (II) GLX: Initialized DRI2 GL provider for screen 0
[  1112.936] (II) intel(0): Setting screen physical size to 361 x 203
[  1112.965] (II) config/udev: Adding input device Power Button (/dev/input/event5)
[  1112.965] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  1112.965] (II) LoadModule: "evdev"
[  1112.965] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[  1112.965] (II) Module evdev: vendor="X.Org Foundation"
[  1112.965] 	compiled for 1.12.3.901, module version = 2.7.3
[  1112.965] 	Module class: X.Org XInput Driver
[  1112.965] 	ABI class: X.Org XInput driver, version 16.0
[  1112.965] (II) Using input driver 'evdev' for 'Power Button'
[  1112.965] (**) Power Button: always reports core events
[  1112.965] (**) evdev: Power Button: Device: "/dev/input/event5"
[  1112.965] (--) evdev: Power Button: Vendor 0 Product 0x1
[  1112.965] (--) evdev: Power Button: Found keys
[  1112.965] (II) evdev: Power Button: Configuring as keyboard
[  1112.965] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input5/event5"
[  1112.965] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[  1112.965] (**) Option "xkb_rules" "evdev"
[  1112.965] (**) Option "xkb_model" "evdev"
[  1112.965] (**) Option "xkb_layout" "se"
[  1112.988] (II) config/udev: Adding input device Video Bus (/dev/input/event12)
[  1112.988] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  1112.988] (II) Using input driver 'evdev' for 'Video Bus'
[  1112.988] (**) Video Bus: always reports core events
[  1112.988] (**) evdev: Video Bus: Device: "/dev/input/event12"
[  1112.988] (--) evdev: Video Bus: Vendor 0 Product 0x6
[  1112.988] (--) evdev: Video Bus: Found keys
[  1112.988] (II) evdev: Video Bus: Configuring as keyboard
[  1112.988] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input12/event12"
[  1112.988] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[  1112.988] (**) Option "xkb_rules" "evdev"
[  1112.988] (**) Option "xkb_model" "evdev"
[  1112.988] (**) Option "xkb_layout" "se"
[  1112.989] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[  1112.989] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  1112.989] (II) Using input driver 'evdev' for 'Power Button'
[  1112.989] (**) Power Button: always reports core events
[  1112.989] (**) evdev: Power Button: Device: "/dev/input/event3"
[  1112.989] (--) evdev: Power Button: Vendor 0 Product 0x1
[  1112.989] (--) evdev: Power Button: Found keys
[  1112.989] (II) evdev: Power Button: Configuring as keyboard
[  1112.989] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3/event3"
[  1112.989] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[  1112.989] (**) Option "xkb_rules" "evdev"
[  1112.989] (**) Option "xkb_model" "evdev"
[  1112.989] (**) Option "xkb_layout" "se"
[  1112.990] (II) config/udev: Adding input device Lid Switch (/dev/input/event4)
[  1112.990] (II) No input driver specified, ignoring this device.
[  1112.990] (II) This device may have been added with another device file.
[  1112.991] (II) config/udev: Adding input device Microsoft Microsoft 5-Button Mouse with IntelliEye(TM) (/dev/input/event1)
[  1112.991] (**) Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Applying InputClass "evdev pointer catchall"
[  1112.991] (II) Using input driver 'evdev' for 'Microsoft Microsoft 5-Button Mouse with IntelliEye(TM)'
[  1112.991] (**) Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): always reports core events
[  1112.991] (**) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Device: "/dev/input/event1"
[  1112.991] (--) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Vendor 0x45e Product 0x47
[  1112.991] (--) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Found 9 mouse buttons
[  1112.991] (--) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Found scroll wheel(s)
[  1112.991] (--) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Found relative axes
[  1112.991] (--) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Found x and y relative axes
[  1112.991] (II) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Configuring as mouse
[  1112.991] (II) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): Adding scrollwheel support
[  1112.991] (**) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): YAxisMapping: buttons 4 and 5
[  1112.991] (**) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  1112.991] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/input/input1/event1"
[  1112.991] (II) XINPUT: Adding extended input device "Microsoft Microsoft 5-Button Mouse with IntelliEye(TM)" (type: MOUSE, id 9)
[  1112.992] (II) evdev: Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): initialized for relative axes.
[  1112.992] (**) Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): (accel) keeping acceleration scheme 1
[  1112.992] (**) Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): (accel) acceleration profile 0
[  1112.992] (**) Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): (accel) acceleration factor: 2.000
[  1112.992] (**) Microsoft Microsoft 5-Button Mouse with IntelliEye(TM): (accel) acceleration threshold: 4
[  1112.992] (II) config/udev: Adding input device Microsoft Microsoft 5-Button Mouse with IntelliEye(TM) (/dev/input/mouse0)
[  1112.992] (II) No input driver specified, ignoring this device.
[  1112.993] (II) This device may have been added with another device file.
[  1112.993] (II) config/udev: Adding input device TOSHIBA Web Camera - HD (/dev/input/event7)
[  1112.993] (**) TOSHIBA Web Camera - HD: Applying InputClass "evdev keyboard catchall"
[  1112.993] (II) Using input driver 'evdev' for 'TOSHIBA Web Camera - HD'
[  1112.993] (**) TOSHIBA Web Camera - HD: always reports core events
[  1112.993] (**) evdev: TOSHIBA Web Camera - HD: Device: "/dev/input/event7"
[  1112.993] (--) evdev: TOSHIBA Web Camera - HD: Vendor 0x4f2 Product 0xb307
[  1112.993] (--) evdev: TOSHIBA Web Camera - HD: Found keys
[  1112.993] (II) evdev: TOSHIBA Web Camera - HD: Configuring as keyboard
[  1112.993] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.4/3-1.4:1.0/input/input7/event7"
[  1112.993] (II) XINPUT: Adding extended input device "TOSHIBA Web Camera - HD" (type: KEYBOARD, id 10)
[  1112.994] (**) Option "xkb_rules" "evdev"
[  1112.994] (**) Option "xkb_model" "evdev"
[  1112.994] (**) Option "xkb_layout" "se"
[  1112.995] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event10)
[  1112.995] (II) No input driver specified, ignoring this device.
[  1112.995] (II) This device may have been added with another device file.
[  1112.995] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event8)
[  1112.995] (II) No input driver specified, ignoring this device.
[  1112.995] (II) This device may have been added with another device file.
[  1112.996] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event9)
[  1112.996] (II) No input driver specified, ignoring this device.
[  1112.996] (II) This device may have been added with another device file.
[  1112.996] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[  1112.996] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[  1112.996] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[  1112.996] (**) AT Translated Set 2 keyboard: always reports core events
[  1112.996] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[  1112.996] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[  1112.996] (--) evdev: AT Translated Set 2 keyboard: Found keys
[  1112.996] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[  1112.996] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[  1112.996] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
[  1112.996] (**) Option "xkb_rules" "evdev"
[  1112.996] (**) Option "xkb_model" "evdev"
[  1112.996] (**) Option "xkb_layout" "se"
[  1112.997] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event11)
[  1112.997] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[  1112.997] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[  1112.997] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[  1112.997] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[  1112.997] (II) LoadModule: "synaptics"
[  1112.997] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[  1112.997] (II) Module synaptics: vendor="X.Org Foundation"
[  1112.997] 	compiled for 1.12.2, module version = 1.6.2
[  1112.997] 	Module class: X.Org XInput Driver
[  1112.997] 	ABI class: X.Org XInput driver, version 16.0
[  1112.997] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[  1112.997] (**) SynPS/2 Synaptics TouchPad: always reports core events
[  1112.997] (**) Option "Device" "/dev/input/event11"
[  1113.023] (II) synaptics: SynPS/2 Synaptics TouchPad: found clickpad property
[  1113.023] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5678
[  1113.023] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4732
[  1113.023] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[  1113.023] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[  1113.023] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left double triple
[  1113.024] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[  1113.024] (**) Option "SHMConfig" "on"
[  1113.024] (**) Option "TapButton1" "1"
[  1113.024] (**) Option "TapButton2" "2"
[  1113.024] (**) Option "TapButton3" "3"
[  1113.024] (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
[  1113.024] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[  1113.024] (**) SynPS/2 Synaptics TouchPad: always reports core events
[  1113.024] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input11/event11"
[  1113.024] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
[  1113.024] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[  1113.024] (**) synaptics: SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
[  1113.024] (**) synaptics: SynPS/2 Synaptics TouchPad: AccelFactor is now 0.037
[  1113.025] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[  1113.025] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[  1113.025] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[  1113.025] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[  1113.025] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[  1113.025] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
[  1113.025] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[  1113.025] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
[  1113.025] (II) No input driver specified, ignoring this device.
[  1113.026] (II) This device may have been added with another device file.
[  1113.026] (II) config/udev: Adding input device Toshiba input device (/dev/input/event6)
[  1113.026] (**) Toshiba input device: Applying InputClass "evdev keyboard catchall"
[  1113.026] (II) Using input driver 'evdev' for 'Toshiba input device'
[  1113.026] (**) Toshiba input device: always reports core events
[  1113.026] (**) evdev: Toshiba input device: Device: "/dev/input/event6"
[  1113.026] (--) evdev: Toshiba input device: Vendor 0 Product 0
[  1113.026] (--) evdev: Toshiba input device: Found keys
[  1113.026] (II) evdev: Toshiba input device: Configuring as keyboard
[  1113.026] (**) Option "config_info" "udev:/sys/devices/virtual/input/input6/event6"
[  1113.026] (II) XINPUT: Adding extended input device "Toshiba input device" (type: KEYBOARD, id 13)
[  1113.026] (**) Option "xkb_rules" "evdev"
[  1113.026] (**) Option "xkb_model" "evdev"
[  1113.027] (**) Option "xkb_layout" "se"
[  1116.256] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1116.256] (II) intel(0): Printing DDC gathered Modelines:
[  1116.256] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1128.410] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1128.411] (II) intel(0): Printing DDC gathered Modelines:
[  1128.411] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1142.860] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1142.860] (II) intel(0): Printing DDC gathered Modelines:
[  1142.860] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1142.912] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1142.912] (II) intel(0): Printing DDC gathered Modelines:
[  1142.912] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1142.962] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1142.962] (II) intel(0): Printing DDC gathered Modelines:
[  1142.962] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1143.012] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1143.012] (II) intel(0): Printing DDC gathered Modelines:
[  1143.012] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1143.061] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1143.061] (II) intel(0): Printing DDC gathered Modelines:
[  1143.061] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1143.107] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1143.107] (II) intel(0): Printing DDC gathered Modelines:
[  1143.107] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1143.151] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1143.151] (II) intel(0): Printing DDC gathered Modelines:
[  1143.151] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1143.194] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1143.194] (II) intel(0): Printing DDC gathered Modelines:
[  1143.194] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1143.238] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1143.238] (II) intel(0): Printing DDC gathered Modelines:
[  1143.238] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1143.280] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1143.281] (II) intel(0): Printing DDC gathered Modelines:
[  1143.281] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1143.324] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1143.325] (II) intel(0): Printing DDC gathered Modelines:
[  1143.325] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1143.367] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1143.367] (II) intel(0): Printing DDC gathered Modelines:
[  1143.367] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1143.411] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1143.411] (II) intel(0): Printing DDC gathered Modelines:
[  1143.411] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1145.524] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1145.524] (II) intel(0): Printing DDC gathered Modelines:
[  1145.524] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1145.575] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1145.575] (II) intel(0): Printing DDC gathered Modelines:
[  1145.575] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1145.626] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1145.626] (II) intel(0): Printing DDC gathered Modelines:
[  1145.626] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1145.675] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1145.675] (II) intel(0): Printing DDC gathered Modelines:
[  1145.675] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1145.721] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1145.721] (II) intel(0): Printing DDC gathered Modelines:
[  1145.721] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1145.765] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1145.765] (II) intel(0): Printing DDC gathered Modelines:
[  1145.765] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1145.807] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1145.807] (II) intel(0): Printing DDC gathered Modelines:
[  1145.807] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1145.850] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1145.850] (II) intel(0): Printing DDC gathered Modelines:
[  1145.850] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1145.894] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1145.894] (II) intel(0): Printing DDC gathered Modelines:
[  1145.894] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1145.937] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1145.937] (II) intel(0): Printing DDC gathered Modelines:
[  1145.937] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1145.981] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1145.981] (II) intel(0): Printing DDC gathered Modelines:
[  1145.981] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1146.024] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1146.024] (II) intel(0): Printing DDC gathered Modelines:
[  1146.024] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  1146.068] (II) intel(0): EDID vendor "CMO", prod id 5522
[  1146.068] (II) intel(0): Printing DDC gathered Modelines:
[  1146.068] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)

Full synclient output:

[fredrik@fredrik-arch syndbg]$ synclient
Parameter settings:
    LeftEdge                = 1766
    RightEdge               = 5384
    TopEdge                 = 1640
    BottomEdge              = 4500
    FingerLow               = 25
    FingerHigh              = 30
    FingerPress             = 256
    MaxTapTime              = 180
    MaxTapMove              = 235
    MaxDoubleTapTime        = 180
    SingleTapTimeout        = 180
    ClickTime               = 100
    FastTaps                = 0
    EmulateMidButtonTime    = 0
    EmulateTwoFingerMinZ    = 282
    EmulateTwoFingerMinW    = 7
    VertScrollDelta         = 107
    HorizScrollDelta        = 107
    VertEdgeScroll          = 0
    HorizEdgeScroll         = 0
    CornerCoasting          = 0
    VertTwoFingerScroll     = 1
    HorizTwoFingerScroll    = 0
    MinSpeed                = 1
    MaxSpeed                = 1.75
    AccelFactor             = 0.0373134
    TrackstickSpeed         = 40
    EdgeMotionMinZ          = 30
    EdgeMotionMaxZ          = 160
    EdgeMotionMinSpeed      = 1
    EdgeMotionMaxSpeed      = 428
    EdgeMotionUseAlways     = 0
    TouchpadOff             = 0
    LockedDrags             = 0
    LockedDragTimeout       = 5000
    RTCornerButton          = 0
    RBCornerButton          = 0
    LTCornerButton          = 0
    LBCornerButton          = 0
    TapButton1              = 1
    TapButton2              = 2
    TapButton3              = 3
    ClickFinger1            = 1
    ClickFinger2            = 3
    ClickFinger3            = 2
    CircularScrolling       = 0
    CircScrollDelta         = 0.1
    CircScrollTrigger       = 0
    CircularPad             = 0
    PalmDetect              = 0
    PalmMinWidth            = 10
    PalmMinZ                = 200
    CoastingSpeed           = 20
    CoastingFriction        = 50
    PressureMotionMinZ      = 30
    PressureMotionMaxZ      = 160
    PressureMotionMinFactor = 1
    PressureMotionMaxFactor = 1
    GrabEventDevice         = 1
    TapAndDragGesture       = 1
    AreaLeftEdge            = 0
    AreaRightEdge           = 0
    AreaTopEdge             = 0
    AreaBottomEdge          = 0
    HorizHysteresis         = 8
    VertHysteresis          = 8
    ClickPad                = 1
    RightButtonAreaLeft     = 3575
    RightButtonAreaRight    = 0
    RightButtonAreaTop      = 4133
    RightButtonAreaBottom   = 0
    MiddleButtonAreaLeft    = 0
    MiddleButtonAreaRight   = 0
    MiddleButtonAreaTop     = 0
    MiddleButtonAreaBottom  = 0

Offline

#10 2012-09-08 10:45:37

Haikarainen
Member
Registered: 2012-09-04
Posts: 93

Re: [FIXED] Synaptics touchpad identified but not responding to input.

FIXED! It was what I suspected: fn-keys doesnt work in Arch. I found an old thread where some guy tried booting into fedora live, activating his touchpad, then rebooting into arch again, and it worked for him.

I tried exactly that, downloaded the latest fedora live cd, burned it, rebooted, pressed fn+f5 (which is the touchpadbutton on this laptop), it got the touchpad working in fedora, then just hardkilled the laptop by holding down the powerbutton, start it up in arch again, and it simply works!

I will do some research on how fedora handles fn-toshiba-keys and try to implement it into arch!

Thanks for all your help guys!

Offline

#11 2013-10-30 00:53:26

chuckiv
Member
Registered: 2013-10-28
Posts: 106

Re: [FIXED] Synaptics touchpad identified but not responding to input.

for me all my fn keys on my asus zenbook ux31a work simply bc i installed arch as EFI kernel

i inserted a live usb and hit esc in bios and selected UEFI:sandisk and during the install process formatted /boot as EFI

everything else was same installation

hope this helps people...

Offline

#12 2013-10-30 02:07:12

fukawi2
Ex-Administratorino
From: .vic.au
Registered: 2007-09-28
Posts: 6,217
Website

Re: [FIXED] Synaptics touchpad identified but not responding to input.

Again chuckiv, please familiarize yourself with our forum etiquette, particularly the section about leaving the dead to rest in peace: https://wiki.archlinux.org/index.php/Fo … Bumping.22

Closing.

Offline

Board footer

Powered by FluxBB