From: littlebat <dashing.meng@gmail.com>
To: Seth Forshee <seth.forshee@canonical.com>
Cc: linux-input@vger.kernel.org, 679750@bugs.debian.org,
jrnieder@gmail.com, rik.theys@gmail.com
Subject: Bug#679750: Lenovo G360: ALPS Touchpad Recognized as "PS/2 Generic Mouse"(with newly dmesg information)
Date: Sat, 7 Jul 2012 13:35:19 +0800 [thread overview]
Message-ID: <20120707133519.25bf82d4.dashing.meng@gmail.com> (raw)
In-Reply-To: <20120706051141.GA2937@thinkpad-t410>
[-- Attachment #1: Type: text/plain, Size: 5880 bytes --]
On Fri, 6 Jul 2012 00:11:41 -0500
Seth Forshee <seth.forshee@canonical.com> wrote:
> On Fri, Jul 06, 2012 at 11:39:42AM +0800, littlebat wrote:
> > I found these lines in my dmesg information:
> > [ 19.995850] psmouse serio4: alps: E6 report: 00 00 64
> > [ 20.021288] psmouse serio4: alps: E7 report: 73 03 50
> > [ 20.623609] input: PS/2 Generic Mouse
> > as /devices/platform/i8042/serio4/input/input9
>
> Thanks, this is the information we need to check whether or not your
> touchpad uses any of the known ALPS protocols.
>
> I'm attaching a patch to use as a starting point. Basically we're just
> going to try each protocol version until either we find one that works
> or run out of options. You should have an external mouse available,
> because it's likely that your touchpad will not be usable. I've also
> heard that some of the workarounds that people use to get the "disable
> touchpad while typing" behavior can cause the touchpad to no longer
> function once it starts behaving as a touchpad, so you should look out
> for that as well.
>
> I won't be able to respond further until next Monday, but it's pretty
> simple to modify the driver to try different protocol versions so I'll
> give you some instructions. The patch adds the following line. I've
> identified the two fields you'll need to change.
>
> { { 0x73, 0x03, 0x50 }, 0x8a, ALPS_PROTO_V4, 0x8f, 0x8f, 0 },
> ^ ^
> | |
> command_mode_resp |
> proto_version
>
> Not surprisingly, to try different protocol versions you just need to
> change the proto_version field. Try ALPS_PROTO_V4 first, if that
> doesn't work try ALPS_PROTO_V3, etc., until you've tried them all or
> found one that works.
>
> The first time you run the patch though you need to be on the lookout
> for a message in dmesg that says "Unknown command mode response"
> followed by two hex digits. If you see this then you need to change
> command_mode_resp to match the response printed in the message. Be
> sure to leave the 0x characters in place; only replace the 8a
> characters. Then try the same protocol version again.
>
> The basic test procedure after booting with a test version of the
> driver is:
>
> 1. Check dmesg for any errors from the alps driver. If you see
> anything other than the "Unknown command mode response" message then
> it probably means your touchpad doesn't use that protocol version, so
> you should move on to the next one. If the device name isn't
> showing up as something with ALPS in it, that also indicates your
> device isn't using that version.
>
> 2. Thoroughly test the touchpad. You may see erratic behavior -- the
> pointer jumping around, random clicks, etc -- which means it's
> using a different protocol.
>
> If you find a protocol version that works, let me know and I'll help
> get it added to the driver. If you don't then there's not much more I
> can do to help without hardware.
Thanks.
I have changed "proto_version" from V4 to V1, and changed
"command_mode_resp" to 0x73(followed by unknown response while entering
command mode: 73 01 0d) or 0x8a, 0x00, etc.. But, none of them works.
Briefly, "proto_version" V4 with "command_mode_resp" 0x00, 0x01, 0x73,
0x0d and V3 with 0x0d, 0x73, show the almost same symptoms:
1, dmesg output:
[ 19.105550] psmouse serio4: alps: E6 report: 00 00 64
[ 19.130028] psmouse serio4: alps: E7 report: 73 03 50
[ 19.149304] psmouse serio4: alps: unknown response while entering
command mode: 73 01 0d
[ 19.149311] psmouse serio4: alps: touchpad failed to enter command
mode
2, xinput --list shows it is a "PS/2 Generic Mouse"
3, No "touchpad" found in "Xorg.0.log" except "PS/2 Generic Mouse"
4, No touchpad tab in gnome mouse setting dialog.
Detail information see attachments, here is V4 with 0x73:
V4-73-dmesg.txt, V4-73-inputdevices.txt, V4-73-xinputlist.txt,
V4-73-Xorg.0.log
And, V2 or V1 with 0x8a or 0x00, show the almost same symptoms below:
1, dmesg output:
[ 19.935069] psmouse serio4: alps: E6 report: 00 00 64
[ 19.960457] psmouse serio4: alps: E7 report: 73 03 50
[ 20.000732] psmouse serio4: alps: Status: 10 00 0a
[ 20.026497] input: PS/2 Mouse
as /devices/platform/i8042/serio4/input/input9
[ 20.042797] input: AlpsPS/2 ALPS GlidePoint
as /devices/platform/i8042/serio4/input/input10
2, xinput --list shows there are "AlpsPS/2 ALPS GlidePoint" and "PS/2
Mouse"
3, Xorg.0.log shows:
[ 30.225] (--) AlpsPS/2 ALPS GlidePoint: touchpad found
...
But,
[ 30.245] (EE) Query no Synaptics: 6003C8
[ 30.245] (--) AlpsPS/2 ALPS GlidePoint: no supported touchpad found
[ 30.245] (EE) AlpsPS/2 ALPS GlidePoint Unable to query/initialize
Synaptics hardware.
[ 30.257] (EE) PreInit returned 11 for "AlpsPS/2 ALPS GlidePoint"
4, There is touchpad tab in gnome mouse setting dialog, but the
functions of "edge scrolling" and "disable touchpad when typing" still
can't work even if I can setup them in touchpad tab in gnome mouse
setting dialog.
Detail information see attachments, here is V2 with 0x00:
V2-00-dmesg.txt, V2-00-inputdevices.txt, V2-00-xinputlist.txt,
V2-00-Xorg.0.log
I have also changed "command_mode_resp" and even the other fields I can
find in the alps.c, but no lucky. V4, V3 can't find the touchpad, V2,
V1 can find a touchpad but still can't work.
What's the next step can I do?
Thanks.
PS: I found linux-input@vger.kernel.org archived the posts at
http://www.spinics.net/lists/linux-input/ several hours later after
post even if I hadn't subscribed this mail list at that time. But, it
seems don't archived post with big size attachment(My previous post
"Lenovo G360: ALPS Touchpad Recognized as "PS/2 Generic Mouse"(with
newly dmesg information)" with 6 attachments hasn't been archived after
posting 24h later. )
[-- Attachment #2: V4-73-dmesg.txt --]
[-- Type: text/plain, Size: 51991 bytes --]
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 3.4.4debugpsmouse (mengdaxing@ldebian) (gcc version 4.4.5 (Debian 4.4.5-8) ) #1 SMP Fri Jul 6 07:44:49 CST 2012
[ 0.000000] Command line: root=/dev/sda7 acpi_backlight=vendor ro
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009c400 (usable)
[ 0.000000] BIOS-e820: 000000000009c400 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000dc000 - 00000000000e0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000007727c000 (usable)
[ 0.000000] BIOS-e820: 000000007727c000 - 0000000077282000 (reserved)
[ 0.000000] BIOS-e820: 0000000077282000 - 00000000773ee000 (usable)
[ 0.000000] BIOS-e820: 00000000773ee000 - 000000007740f000 (reserved)
[ 0.000000] BIOS-e820: 000000007740f000 - 000000007746f000 (usable)
[ 0.000000] BIOS-e820: 000000007746f000 - 0000000077470000 (reserved)
[ 0.000000] BIOS-e820: 0000000077470000 - 00000000774f1000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000774f1000 - 000000007770f000 (reserved)
[ 0.000000] BIOS-e820: 000000007770f000 - 0000000077717000 (usable)
[ 0.000000] BIOS-e820: 0000000077717000 - 000000007771f000 (reserved)
[ 0.000000] BIOS-e820: 000000007771f000 - 000000007775e000 (usable)
[ 0.000000] BIOS-e820: 000000007775e000 - 000000007779f000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007779f000 - 00000000777e1000 (usable)
[ 0.000000] BIOS-e820: 00000000777e1000 - 00000000777ff000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000777ff000 - 0000000077800000 (usable)
[ 0.000000] BIOS-e820: 0000000077800000 - 000000007c000000 (reserved)
[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[ 0.000000] BIOS-e820: 00000000f0804000 - 00000000f0805000 (reserved)
[ 0.000000] BIOS-e820: 00000000feaff000 - 00000000feb00000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved)
[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved)
[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] DMI present.
[ 0.000000] DMI: LENOVO G360 /LL1 , BIOS 61CN06WW 10/27/2011
[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[ 0.000000] No AGP bridge found
[ 0.000000] last_pfn = 0x77800 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-D3FFF write-protect
[ 0.000000] D4000-DBFFF uncachable
[ 0.000000] DC000-FFFFF write-through
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 disabled
[ 0.000000] 1 base 078000000 mask FF8000000 uncachable
[ 0.000000] 2 base 000000000 mask F80000000 write-back
[ 0.000000] 3 disabled
[ 0.000000] 4 disabled
[ 0.000000] 5 disabled
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] found SMP MP-table at [ffff8800000f6200] f6200
[ 0.000000] initial memory mapped : 0 - 20000000
[ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 20480
[ 0.000000] init_memory_mapping: 0000000000000000-0000000077800000
[ 0.000000] 0000000000 - 0077800000 page 2M
[ 0.000000] kernel direct mapping tables up to 77800000 @ 1fffd000-20000000
[ 0.000000] RAMDISK: 6fc5c000 - 7726c000
[ 0.000000] ACPI: RSDP 00000000000f60c0 00024 (v02 PTLTD )
[ 0.000000] ACPI: XSDT 00000000777f2fcb 0005C (v01 LENOVO CB-01 06040000 LTP 00000000)
[ 0.000000] ACPI: FACP 00000000777e3000 000F4 (v03 LENOVO CB-01 06040000 PTEC 00000001)
[ 0.000000] ACPI: DSDT 00000000777e4000 0BBBF (v02 LENOVO CB-01 06040000 INTL 20060912)
[ 0.000000] ACPI: FACS 000000007779bfc0 00040
[ 0.000000] ACPI: HPET 00000000777fed86 00038 (v01 LENOVO CB-01 06040000 PTEC 00000001)
[ 0.000000] ACPI: MCFG 00000000777fedbe 0003C (v01 LENOVO CB-01 06040000 PTEC 00000001)
[ 0.000000] ACPI: APIC 00000000777fedfa 00068 (v01 LENOVO CB-01 06040000 LTP 00000000)
[ 0.000000] ACPI: BOOT 00000000777fee62 00028 (v01 LENOVO CB-01 06040000 LTP 00000001)
[ 0.000000] ACPI: SLIC 00000000777fee8a 00176 (v01 LENOVO CB-01 06040000 LTP 00000000)
[ 0.000000] ACPI: SSDT 00000000777e2000 009F1 (v01 PmRef CpuPm 00003000 INTL 20050624)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at 0000000000000000-0000000077800000
[ 0.000000] Initmem setup node 0 0000000000000000-0000000077800000
[ 0.000000] NODE_DATA [00000000777dd000 - 00000000777e0fff]
[ 0.000000] [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff88006d600000-ffff88006f1fffff] on node 0
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000010 -> 0x00001000
[ 0.000000] DMA32 0x00001000 -> 0x00100000
[ 0.000000] Normal empty
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] Early memory PFN ranges
[ 0.000000] 0: 0x00000010 -> 0x0000009c
[ 0.000000] 0: 0x00000100 -> 0x0007727c
[ 0.000000] 0: 0x00077282 -> 0x000773ee
[ 0.000000] 0: 0x0007740f -> 0x0007746f
[ 0.000000] 0: 0x0007770f -> 0x00077717
[ 0.000000] 0: 0x0007771f -> 0x0007775e
[ 0.000000] 0: 0x0007779f -> 0x000777e1
[ 0.000000] 0: 0x000777ff -> 0x00077800
[ 0.000000] On node 0 totalpages: 488542
[ 0.000000] DMA zone: 56 pages used for memmap
[ 0.000000] DMA zone: 5 pages reserved
[ 0.000000] DMA zone: 3919 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 6636 pages used for memmap
[ 0.000000] DMA32 zone: 477926 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[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x04] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[ 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 2 CPUs, 0 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 40
[ 0.000000] PM: Registered nosave memory: 000000000009c000 - 000000000009d000
[ 0.000000] PM: Registered nosave memory: 000000000009d000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000dc000
[ 0.000000] PM: Registered nosave memory: 00000000000dc000 - 00000000000e0000
[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 00000000000e4000
[ 0.000000] PM: Registered nosave memory: 00000000000e4000 - 0000000000100000
[ 0.000000] PM: Registered nosave memory: 000000007727c000 - 0000000077282000
[ 0.000000] PM: Registered nosave memory: 00000000773ee000 - 000000007740f000
[ 0.000000] PM: Registered nosave memory: 000000007746f000 - 0000000077470000
[ 0.000000] PM: Registered nosave memory: 0000000077470000 - 00000000774f1000
[ 0.000000] PM: Registered nosave memory: 00000000774f1000 - 000000007770f000
[ 0.000000] PM: Registered nosave memory: 0000000077717000 - 000000007771f000
[ 0.000000] PM: Registered nosave memory: 000000007775e000 - 000000007779f000
[ 0.000000] PM: Registered nosave memory: 00000000777e1000 - 00000000777ff000
[ 0.000000] Allocating PCI resources starting at 7c000000 (gap: 7c000000:64000000)
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:2 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88006fa00000 s82304 r8192 d24192 u1048576
[ 0.000000] pcpu-alloc: s82304 r8192 d24192 u1048576 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 481845
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: root=/dev/sda7 acpi_backlight=vendor ro
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 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: 1795820k/1957888k available (3581k kernel code, 3720k absent, 158348k reserved, 3112k data, 604k init)
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
[ 0.000000] NR_IRQS:33024 nr_irqs:512 16
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] allocated 7864320 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.004000] Detected 2127.875 MHz processor.
[ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4255.75 BogoMIPS (lpj=8511500)
[ 0.000151] pid_max: default: 32768 minimum: 301
[ 0.000262] Security Framework initialized
[ 0.000338] AppArmor: AppArmor disabled by boot time parameter
[ 0.000550] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.001356] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.001763] Mount-cache hash table entries: 256
[ 0.002042] Initializing cgroup subsys cpuacct
[ 0.002115] Initializing cgroup subsys memory
[ 0.002198] Initializing cgroup subsys devices
[ 0.002270] Initializing cgroup subsys freezer
[ 0.002341] Initializing cgroup subsys net_cls
[ 0.002412] Initializing cgroup subsys blkio
[ 0.002488] Initializing cgroup subsys perf_event
[ 0.002586] CPU: Physical Processor ID: 0
[ 0.002657] CPU: Processor Core ID: 0
[ 0.002730] mce: CPU supports 9 MCE banks
[ 0.002810] CPU0: Thermal monitoring enabled (TM1)
[ 0.002889] using mwait in idle threads.
[ 0.003970] ACPI: Core revision 20120320
[ 0.023641] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.063387] CPU0: Intel(R) Pentium(R) CPU P6200 @ 2.13GHz stepping 05
[ 0.168637] Performance Events: PEBS fmt1+, 16-deep LBR, Westmere events, Intel PMU driver.
[ 0.168914] CPUID marked event: 'bus cycles' unavailable
[ 0.168993] ... version: 3
[ 0.169065] ... bit width: 48
[ 0.169138] ... generic registers: 4
[ 0.169212] ... value mask: 0000ffffffffffff
[ 0.169288] ... max period: 000000007fffffff
[ 0.169369] ... fixed-purpose events: 3
[ 0.169442] ... event mask: 000000070000000f
[ 0.169669] NMI watchdog: enabled, takes one hw-pmu counter.
[ 0.169864] Booting Node 0, Processors #1 Ok.
[ 0.180932] CPU1: Thermal monitoring handled by SMI
[ 0.183045] NMI watchdog: enabled, takes one hw-pmu counter.
[ 0.183167] Brought up 2 CPUs
[ 0.183237] Total of 2 processors activated (8511.50 BogoMIPS).
[ 0.184540] devtmpfs: initialized
[ 0.188736] PM: Registering ACPI NVS region [mem 0x77470000-0x774f0fff] (528384 bytes)
[ 0.188864] PM: Registering ACPI NVS region [mem 0x7775e000-0x7779efff] (266240 bytes)
[ 0.189079] dummy:
[ 0.189208] NET: Registered protocol family 16
[ 0.189408] ACPI: bus type pci registered
[ 0.189562] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.189673] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[ 0.234956] PCI: Using configuration type 1 for base access
[ 0.235661] bio: create slab <bio-0> at 0
[ 0.235826] ACPI: Added _OSI(Module Device)
[ 0.235905] ACPI: Added _OSI(Processor Device)
[ 0.235983] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.236060] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.237679] ACPI: EC: Look up EC in DSDT
[ 0.245777] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[ 0.246332] ACPI: SSDT 000000007771ac18 003AE (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
[ 0.246895] ACPI: Dynamic OEM Table Load:
[ 0.247058] ACPI: SSDT (null) 003AE (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
[ 0.247431] ACPI: SSDT 0000000077718018 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
[ 0.250461] ACPI: Dynamic OEM Table Load:
[ 0.250619] ACPI: SSDT (null) 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
[ 0.251168] ACPI: SSDT 0000000077719a98 00303 (v01 PmRef ApIst 00003000 INTL 20050624)
[ 0.251801] ACPI: Dynamic OEM Table Load:
[ 0.251962] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20050624)
[ 0.252320] ACPI: SSDT 0000000077717d98 00119 (v01 PmRef ApCst 00003000 INTL 20050624)
[ 0.252897] ACPI: Dynamic OEM Table Load:
[ 0.253057] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20050624)
[ 0.263407] ACPI: Interpreter enabled
[ 0.263483] ACPI: (supports S0 S3 S4 S5)
[ 0.263747] ACPI: Using IOAPIC for interrupt routing
[ 0.273151] ACPI: EC: GPE = 0x16, I/O: command/status = 0x66, data = 0x62
[ 0.273426] ACPI: No dock devices found.
[ 0.273505] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.274090] \_SB_.PCI0:_OSC invalid UUID
[ 0.274092] _OSC request data:1 8 1f
[ 0.274097] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.274921] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
[ 0.275009] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
[ 0.275090] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[ 0.275196] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
[ 0.275300] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
[ 0.275403] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
[ 0.275509] pci_root PNP0A08:00: host bridge window [mem 0x7c000000-0xfeafffff]
[ 0.275649] PCI host bridge to bus 0000:00
[ 0.275724] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
[ 0.275807] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
[ 0.275889] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[ 0.275972] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[ 0.276056] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[ 0.276142] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
[ 0.276228] pci_bus 0000:00: root bus resource [mem 0x7c000000-0xfeafffff]
[ 0.276319] pci 0000:00:00.0: [8086:0044] type 00 class 0x060000
[ 0.276338] DMAR: BIOS has allocated no shadow GTT; disabling IOMMU for graphics
[ 0.276463] pci 0000:00:01.0: [8086:0045] type 01 class 0x060400
[ 0.276497] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.276512] pci 0000:00:02.0: [8086:0046] type 00 class 0x030000
[ 0.276524] pci 0000:00:02.0: reg 10: [mem 0xf0000000-0xf03fffff 64bit]
[ 0.276531] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref]
[ 0.276537] pci 0000:00:02.0: reg 20: [io 0x1800-0x1807]
[ 0.276619] pci 0000:00:1a.0: [8086:3b3c] type 00 class 0x0c0320
[ 0.276646] pci 0000:00:1a.0: reg 10: [mem 0xf0806000-0xf08063ff]
[ 0.276759] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.276795] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
[ 0.276816] pci 0000:00:1b.0: reg 10: [mem 0xf0800000-0xf0803fff 64bit]
[ 0.276916] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.276948] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
[ 0.277053] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.277086] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
[ 0.277190] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.277226] pci 0000:00:1c.4: [8086:3b4a] type 01 class 0x060400
[ 0.277329] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.277372] pci 0000:00:1d.0: [8086:3b34] type 00 class 0x0c0320
[ 0.277398] pci 0000:00:1d.0: reg 10: [mem 0xf0806400-0xf08067ff]
[ 0.277511] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.277541] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[ 0.277631] pci 0000:00:1f.0: [8086:3b09] type 00 class 0x060100
[ 0.277767] pci 0000:00:1f.2: [8086:3b29] type 00 class 0x010601
[ 0.277796] pci 0000:00:1f.2: reg 10: [io 0x1818-0x181f]
[ 0.277808] pci 0000:00:1f.2: reg 14: [io 0x180c-0x180f]
[ 0.277820] pci 0000:00:1f.2: reg 18: [io 0x1810-0x1817]
[ 0.277832] pci 0000:00:1f.2: reg 1c: [io 0x1808-0x180b]
[ 0.277843] pci 0000:00:1f.2: reg 20: [io 0x1820-0x183f]
[ 0.277856] pci 0000:00:1f.2: reg 24: [mem 0xf0805000-0xf08057ff]
[ 0.277925] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.277952] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
[ 0.277973] pci 0000:00:1f.3: reg 10: [mem 0xf0806800-0xf08068ff 64bit]
[ 0.278005] pci 0000:00:1f.3: reg 20: [io 0x1840-0x185f]
[ 0.278058] pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
[ 0.278087] pci 0000:00:1f.6: reg 10: [mem 0xf0804000-0xf0804fff 64bit]
[ 0.278237] pci 0000:01:00.0: [10de:0a70] type 00 class 0x030000
[ 0.278252] pci 0000:01:00.0: reg 10: [mem 0xac000000-0xacffffff]
[ 0.278269] pci 0000:01:00.0: reg 14: [mem 0xb0000000-0xbfffffff 64bit pref]
[ 0.278285] pci 0000:01:00.0: reg 1c: [mem 0xae000000-0xafffffff 64bit pref]
[ 0.278297] pci 0000:01:00.0: reg 24: [io 0x2000-0x207f]
[ 0.278310] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0007ffff pref]
[ 0.278407] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[ 0.278485] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
[ 0.278488] pci 0000:00:01.0: bridge window [mem 0xac000000-0xadefffff]
[ 0.278492] pci 0000:00:01.0: bridge window [mem 0xae000000-0xbfffffff 64bit pref]
[ 0.278551] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
[ 0.278734] pci 0000:03:00.0: [168c:002b] type 00 class 0x028000
[ 0.278778] pci 0000:03:00.0: reg 10: [mem 0xf0500000-0xf050ffff 64bit]
[ 0.278978] pci 0000:03:00.0: supports D1
[ 0.278980] pci 0000:03:00.0: PME# supported from D0 D1 D3hot
[ 0.279064] pci 0000:00:1c.1: PCI bridge to [bus 03-03]
[ 0.279150] pci 0000:00:1c.1: bridge window [mem 0xf0500000-0xf05fffff]
[ 0.279236] pci 0000:08:00.0: [1969:2060] type 00 class 0x020000
[ 0.279266] pci 0000:08:00.0: reg 10: [mem 0xf0400000-0xf043ffff 64bit]
[ 0.279282] pci 0000:08:00.0: reg 18: [io 0x3000-0x307f]
[ 0.279411] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.284612] pci 0000:00:1c.4: PCI bridge to [bus 08-08]
[ 0.284705] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
[ 0.284711] pci 0000:00:1c.4: bridge window [mem 0xf0400000-0xf04fffff]
[ 0.284792] pci 0000:00:1e.0: PCI bridge to [bus 0a-0a] (subtractive decode)
[ 0.284886] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
[ 0.284889] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
[ 0.284891] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[ 0.284894] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
[ 0.284897] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
[ 0.284899] pci 0000:00:1e.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
[ 0.284902] pci 0000:00:1e.0: bridge window [mem 0x7c000000-0xfeafffff] (subtractive decode)
[ 0.284932] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.285202] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2._PRT]
[ 0.285280] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
[ 0.285447] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[ 0.285516] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[ 0.285591] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP05._PRT]
[ 0.285739] \_SB_.PCI0:_OSC invalid UUID
[ 0.285741] _OSC request data:1 1f 1f
[ 0.285745] pci0000:00: Requesting ACPI _OSC control (0x1d)
[ 0.285865] \_SB_.PCI0:_OSC invalid UUID
[ 0.285867] _OSC request data:1 0 1d
[ 0.285871] pci0000:00: ACPI _OSC request failed (AE_ERROR), returned control mask: 0x1d
[ 0.285975] ACPI _OSC control for PCIe not granted, disabling ASPM
[ 0.292254] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff])
[ 0.292407] PCI host bridge to bus 0000:ff
[ 0.292487] pci 0000:ff:00.0: [8086:2c62] type 00 class 0x060000
[ 0.292509] pci 0000:ff:00.1: [8086:2d01] type 00 class 0x060000
[ 0.292531] pci 0000:ff:02.0: [8086:2d10] type 00 class 0x060000
[ 0.292551] pci 0000:ff:02.1: [8086:2d11] type 00 class 0x060000
[ 0.292570] pci 0000:ff:02.2: [8086:2d12] type 00 class 0x060000
[ 0.292594] pci 0000:ff:02.3: [8086:2d13] type 00 class 0x060000
[ 0.292629] pci0000:ff: Requesting ACPI _OSC control (0x1d)
[ 0.292709] pci0000:ff: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
[ 0.292817] ACPI _OSC control for PCIe not granted, disabling ASPM
[ 0.293151] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 *10 12 14 15)
[ 0.293782] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
[ 0.294473] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 *10 12 14 15)
[ 0.295105] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
[ 0.295738] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 0.296483] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[ 0.297237] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[ 0.297935] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15)
[ 0.298617] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.298732] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
[ 0.298840] vgaarb: loaded
[ 0.298909] vgaarb: bridge control possible 0000:01:00.0
[ 0.298989] vgaarb: no bridge control possible 0000:00:02.0
[ 0.299098] PCI: Using ACPI for IRQ routing
[ 0.309104] PCI: pci_cache_line_size set to 64 bytes
[ 0.309201] reserve RAM buffer: 000000000009c400 - 000000000009ffff
[ 0.309203] reserve RAM buffer: 000000007727c000 - 0000000077ffffff
[ 0.309209] reserve RAM buffer: 00000000773ee000 - 0000000077ffffff
[ 0.309214] reserve RAM buffer: 000000007746f000 - 0000000077ffffff
[ 0.309218] reserve RAM buffer: 0000000077717000 - 0000000077ffffff
[ 0.309222] reserve RAM buffer: 000000007775e000 - 0000000077ffffff
[ 0.309225] reserve RAM buffer: 00000000777e1000 - 0000000077ffffff
[ 0.309227] reserve RAM buffer: 0000000077800000 - 0000000077ffffff
[ 0.309364] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.309825] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.311923] Switching to clocksource hpet
[ 0.313813] pnp: PnP ACPI init
[ 0.313908] ACPI: bus type pnp registered
[ 0.314386] pnp 00:00: [bus 00-fe]
[ 0.314389] pnp 00:00: [io 0x0000-0x0cf7 window]
[ 0.314391] pnp 00:00: [io 0x0cf8-0x0cff]
[ 0.314393] pnp 00:00: [io 0x0d00-0xffff window]
[ 0.314396] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[ 0.314398] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[ 0.314400] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[ 0.314402] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[ 0.314406] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[ 0.314408] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[ 0.314410] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[ 0.314412] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[ 0.314415] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[ 0.314417] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[ 0.314419] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[ 0.314421] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[ 0.314423] pnp 00:00: [mem 0x000ec000-0x000effff window]
[ 0.314425] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[ 0.314427] pnp 00:00: [mem 0x7c000000-0xfeafffff window]
[ 0.314429] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
[ 0.314486] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[ 0.314593] pnp 00:01: [io 0x0000-0x001f]
[ 0.314596] pnp 00:01: [io 0x0081-0x0091]
[ 0.314598] pnp 00:01: [io 0x0093-0x009f]
[ 0.314600] pnp 00:01: [io 0x00c0-0x00df]
[ 0.314602] pnp 00:01: [dma 4]
[ 0.314636] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[ 0.314646] pnp 00:02: [mem 0xff000000-0xffffffff]
[ 0.314678] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
[ 0.314767] pnp 00:03: [irq 0 disabled]
[ 0.314780] pnp 00:03: [irq 8]
[ 0.314782] pnp 00:03: [mem 0xfed00000-0xfed003ff]
[ 0.314821] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
[ 0.314832] pnp 00:04: [io 0x00f0]
[ 0.314838] pnp 00:04: [irq 13]
[ 0.314871] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 0.314884] pnp 00:05: [io 0x002e-0x002f]
[ 0.314886] pnp 00:05: [io 0x004e-0x004f]
[ 0.314888] pnp 00:05: [io 0x0061]
[ 0.314889] pnp 00:05: [io 0x0063]
[ 0.314891] pnp 00:05: [io 0x0065]
[ 0.314893] pnp 00:05: [io 0x0067]
[ 0.314895] pnp 00:05: [io 0x0070]
[ 0.314898] pnp 00:05: [io 0x0080]
[ 0.314900] pnp 00:05: [io 0x0092]
[ 0.314902] pnp 00:05: [io 0x00b2-0x00b3]
[ 0.314904] pnp 00:05: [io 0x0680-0x069f]
[ 0.314905] pnp 00:05: [io 0x0500-0x050f]
[ 0.314907] pnp 00:05: [io 0x0600-0x0603]
[ 0.314909] pnp 00:05: [io 0xffff]
[ 0.314911] pnp 00:05: [io 0x0400-0x047f]
[ 0.314913] pnp 00:05: [io 0x1180-0x11ff]
[ 0.314915] pnp 00:05: [io 0x164e-0x164f]
[ 0.314916] pnp 00:05: [io 0xfe00]
[ 0.314918] pnp 00:05: [io 0x0068]
[ 0.314920] pnp 00:05: [io 0x006c]
[ 0.314922] pnp 00:05: [io 0x0700-0x070f]
[ 0.314985] system 00:05: [io 0x0680-0x069f] has been reserved
[ 0.315068] system 00:05: [io 0x0500-0x050f] has been reserved
[ 0.315148] system 00:05: [io 0x0600-0x0603] has been reserved
[ 0.315227] system 00:05: [io 0xffff] has been reserved
[ 0.315305] system 00:05: [io 0x0400-0x047f] has been reserved
[ 0.315385] system 00:05: [io 0x1180-0x11ff] has been reserved
[ 0.315467] system 00:05: [io 0x164e-0x164f] has been reserved
[ 0.315549] system 00:05: [io 0xfe00] has been reserved
[ 0.315631] system 00:05: [io 0x0700-0x070f] has been reserved
[ 0.315715] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.315754] pnp 00:06: [io 0x06a0-0x06af]
[ 0.315756] pnp 00:06: [io 0x06b0-0x06ff]
[ 0.315807] system 00:06: [io 0x06a0-0x06af] has been reserved
[ 0.315888] system 00:06: [io 0x06b0-0x06ff] has been reserved
[ 0.315969] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.316019] pnp 00:07: [io 0x0070-0x0077]
[ 0.316058] pnp 00:07: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.316090] pnp 00:08: [io 0x0060]
[ 0.316092] pnp 00:08: [io 0x0064]
[ 0.316098] pnp 00:08: [irq 1]
[ 0.316135] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
[ 0.316149] pnp 00:09: [irq 12]
[ 0.316183] pnp 00:09: Plug and Play ACPI device, IDs PNP0f13 (active)
[ 0.316479] pnp 00:0a: [mem 0xfed1c000-0xfed1ffff]
[ 0.316482] pnp 00:0a: [mem 0xfed10000-0xfed13fff]
[ 0.316484] pnp 00:0a: [mem 0xfed18000-0xfed18fff]
[ 0.316486] pnp 00:0a: [mem 0xfed19000-0xfed19fff]
[ 0.316489] pnp 00:0a: [mem 0xe0000000-0xefffffff]
[ 0.316491] pnp 00:0a: [mem 0x00000000-0xffffffffffffffff disabled]
[ 0.316493] pnp 00:0a: [mem 0xfeaff000-0xfeafffff]
[ 0.316496] pnp 00:0a: [mem 0xfed20000-0xfed3ffff]
[ 0.316499] pnp 00:0a: [mem 0xfed90000-0xfed8ffff disabled]
[ 0.316501] pnp 00:0a: [mem 0xfed40000-0xfed44fff]
[ 0.316503] pnp 00:0a: [mem 0xfed45000-0xfed8ffff]
[ 0.316505] pnp 00:0a: [mem 0xff000000-0xffffffff]
[ 0.316507] pnp 00:0a: [mem 0xfee00000-0xfeefffff]
[ 0.316572] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.316655] system 00:0a: [mem 0xfed10000-0xfed13fff] has been reserved
[ 0.316736] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.316819] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.316904] system 00:0a: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.316986] system 00:0a: [mem 0xfeaff000-0xfeafffff] has been reserved
[ 0.317068] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.317151] system 00:0a: [mem 0xfed40000-0xfed44fff] has been reserved
[ 0.317235] system 00:0a: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.317319] system 00:0a: [mem 0xff000000-0xffffffff] has been reserved
[ 0.317402] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.317485] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.317672] pnp 00:0b: [bus ff]
[ 0.317715] pnp 00:0b: Plug and Play ACPI device, IDs PNP0a03 (active)
[ 0.318045] pnp: PnP ACPI: found 12 devices
[ 0.318123] ACPI: ACPI bus type pnp unregistered
[ 0.325222] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 02-02] add_size 1000
[ 0.325227] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02-02] add_size 200000
[ 0.325230] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02-02] add_size 200000
[ 0.325242] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 03-03] add_size 1000
[ 0.325246] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03-03] add_size 200000
[ 0.325259] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 08-08] add_size 200000
[ 0.325277] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
[ 0.325280] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 0.325283] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 0.325286] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 0.325289] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 0.325291] pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 0.325297] pci 0000:00:1c.0: BAR 14: assigned [mem 0x7c000000-0x7c1fffff]
[ 0.325381] pci 0000:00:1c.0: BAR 15: assigned [mem 0x7c200000-0x7c3fffff 64bit pref]
[ 0.325489] pci 0000:00:1c.1: BAR 15: assigned [mem 0x7c400000-0x7c5fffff 64bit pref]
[ 0.325594] pci 0000:00:1c.4: BAR 15: assigned [mem 0x7c600000-0x7c7fffff 64bit pref]
[ 0.325702] pci 0000:00:1c.0: BAR 13: assigned [io 0x4000-0x4fff]
[ 0.325784] pci 0000:00:1c.1: BAR 13: assigned [io 0x5000-0x5fff]
[ 0.325869] pci 0000:01:00.0: BAR 6: assigned [mem 0xad000000-0xad07ffff pref]
[ 0.325974] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[ 0.326051] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
[ 0.326134] pci 0000:00:01.0: bridge window [mem 0xac000000-0xadefffff]
[ 0.326218] pci 0000:00:01.0: bridge window [mem 0xae000000-0xbfffffff 64bit pref]
[ 0.326325] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
[ 0.326406] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.326492] pci 0000:00:1c.0: bridge window [mem 0x7c000000-0x7c1fffff]
[ 0.326577] pci 0000:00:1c.0: bridge window [mem 0x7c200000-0x7c3fffff 64bit pref]
[ 0.326687] pci 0000:00:1c.1: PCI bridge to [bus 03-03]
[ 0.326767] pci 0000:00:1c.1: bridge window [io 0x5000-0x5fff]
[ 0.326854] pci 0000:00:1c.1: bridge window [mem 0xf0500000-0xf05fffff]
[ 0.326940] pci 0000:00:1c.1: bridge window [mem 0x7c400000-0x7c5fffff 64bit pref]
[ 0.327051] pci 0000:00:1c.4: PCI bridge to [bus 08-08]
[ 0.327133] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
[ 0.327218] pci 0000:00:1c.4: bridge window [mem 0xf0400000-0xf04fffff]
[ 0.327307] pci 0000:00:1c.4: bridge window [mem 0x7c600000-0x7c7fffff 64bit pref]
[ 0.327416] pci 0000:00:1e.0: PCI bridge to [bus 0a-0a]
[ 0.327546] pci 0000:00:1e.0: setting latency timer to 64
[ 0.327550] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 0.327553] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 0.327555] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.327557] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
[ 0.327560] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
[ 0.327562] pci_bus 0000:00: resource 9 [mem 0x000e0000-0x000e3fff]
[ 0.327564] pci_bus 0000:00: resource 10 [mem 0x7c000000-0xfeafffff]
[ 0.327567] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
[ 0.327569] pci_bus 0000:01: resource 1 [mem 0xac000000-0xadefffff]
[ 0.327571] pci_bus 0000:01: resource 2 [mem 0xae000000-0xbfffffff 64bit pref]
[ 0.327573] pci_bus 0000:02: resource 0 [io 0x4000-0x4fff]
[ 0.327576] pci_bus 0000:02: resource 1 [mem 0x7c000000-0x7c1fffff]
[ 0.327578] pci_bus 0000:02: resource 2 [mem 0x7c200000-0x7c3fffff 64bit pref]
[ 0.327580] pci_bus 0000:03: resource 0 [io 0x5000-0x5fff]
[ 0.327583] pci_bus 0000:03: resource 1 [mem 0xf0500000-0xf05fffff]
[ 0.327585] pci_bus 0000:03: resource 2 [mem 0x7c400000-0x7c5fffff 64bit pref]
[ 0.327587] pci_bus 0000:08: resource 0 [io 0x3000-0x3fff]
[ 0.327589] pci_bus 0000:08: resource 1 [mem 0xf0400000-0xf04fffff]
[ 0.327592] pci_bus 0000:08: resource 2 [mem 0x7c600000-0x7c7fffff 64bit pref]
[ 0.327594] pci_bus 0000:0a: resource 4 [io 0x0000-0x0cf7]
[ 0.327596] pci_bus 0000:0a: resource 5 [io 0x0d00-0xffff]
[ 0.327599] pci_bus 0000:0a: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.327601] pci_bus 0000:0a: resource 7 [mem 0x000d4000-0x000d7fff]
[ 0.327603] pci_bus 0000:0a: resource 8 [mem 0x000d8000-0x000dbfff]
[ 0.327605] pci_bus 0000:0a: resource 9 [mem 0x000e0000-0x000e3fff]
[ 0.327608] pci_bus 0000:0a: resource 10 [mem 0x7c000000-0xfeafffff]
[ 0.327676] NET: Registered protocol family 2
[ 0.327847] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[ 0.328425] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[ 0.329808] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.330216] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.330298] TCP: reno registered
[ 0.330374] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[ 0.330468] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[ 0.330674] NET: Registered protocol family 1
[ 0.330770] pci 0000:00:02.0: Boot video device
[ 0.330926] PCI: CLS 64 bytes, default 64
[ 0.330978] Unpacking initramfs...
[ 3.241872] Freeing initrd memory: 120896k freed
[ 3.269558] Simple Boot Flag at 0x36 set to 0x1
[ 3.270132] audit: initializing netlink socket (disabled)
[ 3.270224] type=2000 audit(1341652373.152:1): initialized
[ 3.284521] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 3.285086] VFS: Disk quotas dquot_6.5.2
[ 3.285186] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 3.285348] msgmni has been set to 3743
[ 3.285586] alg: No test for stdrng (krng)
[ 3.285690] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[ 3.285795] io scheduler noop registered
[ 3.285868] io scheduler deadline registered
[ 3.285954] io scheduler cfq registered (default)
[ 3.286145] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[ 3.286366] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 3.286463] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 3.286545] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 3.287073] intel_idle: MWAIT substates: 0x120
[ 3.287075] intel_idle: v0.4 model 0x25
[ 3.287076] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 3.287115] GHES: HEST is not enabled!
[ 3.287249] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 3.287846] Linux agpgart interface v0.103
[ 3.287993] agpgart-intel 0000:00:00.0: Intel HD Graphics Chipset
[ 3.288189] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
[ 3.289128] agpgart-intel 0000:00:00.0: detected 32768K stolen memory
[ 3.289357] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
[ 3.289557] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 3.292912] i8042: Detected active multiplexing controller, rev 1.1
[ 3.294680] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 3.297259] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[ 3.297364] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[ 3.297461] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[ 3.297560] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[ 3.297750] mousedev: PS/2 mouse device common for all mice
[ 3.297880] rtc_cmos 00:07: RTC can wake from S4
[ 3.298095] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0
[ 3.298207] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 3.298329] cpuidle: using governor ladder
[ 3.298441] cpuidle: using governor menu
[ 3.298638] TCP: cubic registered
[ 3.298794] NET: Registered protocol family 10
[ 3.299140] Mobile IPv6
[ 3.299212] NET: Registered protocol family 17
[ 3.299288] Registering the dns_resolver key type
[ 3.300109] PM: Hibernation image not present or could not be loaded.
[ 3.300135] registered taskstats version 1
[ 3.300959] rtc_cmos 00:07: setting system clock to 2012-07-07 09:12:53 UTC (1341652373)
[ 3.301273] Initializing network drop monitor service
[ 3.315477] Freeing unused kernel memory: 604k freed
[ 3.315644] Write protecting the kernel read-only data: 6144k
[ 3.317701] Freeing unused kernel memory: 496k freed
[ 3.320521] Freeing unused kernel memory: 720k freed
[ 3.343592] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[ 3.451144] udev[54]: starting version 164
[ 3.468043] usbcore: registered new interface driver usbfs
[ 3.468148] usbcore: registered new interface driver hub
[ 3.468975] usbcore: registered new device driver usb
[ 3.469904] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 3.470035] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[ 3.470040] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[ 3.470140] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 3.470271] ehci_hcd 0000:00:1a.0: debug port 2
[ 3.474318] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[ 3.474344] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xf0806000
[ 3.482878] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 3.483010] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 3.483092] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.483197] usb usb1: Product: EHCI Host Controller
[ 3.483274] usb usb1: Manufacturer: Linux 3.4.4debugpsmouse ehci_hcd
[ 3.483357] usb usb1: SerialNumber: 0000:00:1a.0
[ 3.483606] hub 1-0:1.0: USB hub found
[ 3.483683] hub 1-0:1.0: 3 ports detected
[ 3.483885] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[ 3.483889] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[ 3.483981] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 3.484114] ehci_hcd 0000:00:1d.0: debug port 2
[ 3.488201] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[ 3.510396] SCSI subsystem initialized
[ 3.523678] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xf0806400
[ 3.530705] thermal LNXTHERM:00: registered as thermal_zone0
[ 3.530819] ACPI: Thermal Zone [TZ00] (56 C)
[ 3.534765] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 3.534879] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 3.534963] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.535068] usb usb2: Product: EHCI Host Controller
[ 3.535147] usb usb2: Manufacturer: Linux 3.4.4debugpsmouse ehci_hcd
[ 3.535230] usb usb2: SerialNumber: 0000:00:1d.0
[ 3.535415] hub 2-0:1.0: USB hub found
[ 3.535564] hub 2-0:1.0: 3 ports detected
[ 3.537996] libata version 3.00 loaded.
[ 3.539215] ahci 0000:00:1f.2: version 3.0
[ 3.539293] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[ 3.539335] ahci: SSS flag set, parallel bus scan disabled
[ 3.539462] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x32 impl SATA mode
[ 3.539573] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems apst
[ 3.539688] ahci 0000:00:1f.2: setting latency timer to 64
[ 3.555316] scsi0 : ahci
[ 3.555626] scsi1 : ahci
[ 3.555871] scsi2 : ahci
[ 3.556099] scsi3 : ahci
[ 3.556333] scsi4 : ahci
[ 3.556564] scsi5 : ahci
[ 3.556752] ata1: DUMMY
[ 3.556833] ata2: SATA max UDMA/133 abar m2048@0xf0805000 port 0xf0805180 irq 41
[ 3.556950] ata3: DUMMY
[ 3.557027] ata4: DUMMY
[ 3.557108] ata5: SATA max UDMA/133 abar m2048@0xf0805000 port 0xf0805300 irq 41
[ 3.557226] ata6: SATA max UDMA/133 abar m2048@0xf0805000 port 0xf0805380 irq 41
[ 3.615140] atl1c 0000:08:00.0: version 1.0.1.0-NAPI
[ 3.794599] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[ 3.874565] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 3.926954] usb 1-1: New USB device found, idVendor=8087, idProduct=0020
[ 3.927079] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 3.927520] hub 1-1:1.0: USB hub found
[ 3.927792] hub 1-1:1.0: 6 ports detected
[ 3.927939] ata2.00: ATA-8: TOSHIBA MK3265GSX, GJ205E, max UDMA/100
[ 3.928031] ata2.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 3.929050] ata2.00: configured for UDMA/100
[ 3.929254] scsi 1:0:0:0: Direct-Access ATA TOSHIBA MK3265GS GJ20 PQ: 0 ANSI: 5
[ 4.038487] usb 2-1: new high-speed USB device number 2 using ehci_hcd
[ 4.170850] usb 2-1: New USB device found, idVendor=8087, idProduct=0020
[ 4.170942] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 4.171423] hub 2-1:1.0: USB hub found
[ 4.171543] hub 2-1:1.0: 8 ports detected
[ 4.242584] usb 1-1.1: new low-speed USB device number 3 using ehci_hcd
[ 4.246403] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 4.249441] ata5.00: ATAPI: PLDS DVD-RW DS8A8SH, KL31, max UDMA/100
[ 4.255602] ata5.00: configured for UDMA/100
[ 4.263232] scsi 4:0:0:0: CD-ROM PLDS DVD-RW DS8A8SH KL31 PQ: 0 ANSI: 5
[ 4.266381] Refined TSC clocksource calibration: 2127.999 MHz.
[ 4.266472] Switching to clocksource tsc
[ 4.338013] usb 1-1.1: New USB device found, idVendor=15d9, idProduct=0a4f
[ 4.338105] usb 1-1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 4.338217] usb 1-1.1: Product: USB OPTICAL MOUSE
[ 4.442517] usb 2-1.2: new low-speed USB device number 3 using ehci_hcd
[ 4.537679] usb 2-1.2: New USB device found, idVendor=0079, idProduct=0011
[ 4.537773] usb 2-1.2: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[ 4.537885] usb 2-1.2: Product: USB Gamepad
[ 4.544716] input: USB OPTICAL MOUSE as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/input/input1
[ 4.545029] generic-usb 0003:15D9:0A4F.0001: input,hidraw0: USB HID v1.11 Mouse [ USB OPTICAL MOUSE] on usb-0000:00:1a.0-1.1/input0
[ 4.545270] usbcore: registered new interface driver usbhid
[ 4.545354] usbhid: USB HID core driver
[ 4.582256] ata6: SATA link down (SStatus 0 SControl 300)
[ 4.589356] sd 1:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
[ 4.589530] sd 1:0:0:0: [sda] Write Protect is off
[ 4.589617] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 4.589747] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 4.594844] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 4.594958] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 4.595268] sr 4:0:0:0: Attached scsi CD-ROM sr0
[ 4.610415] usb 2-1.4: new high-speed USB device number 4 using ehci_hcd
[ 4.717040] sda: sda1 sda2 sda3 < sda5 sda6 sda7 > sda4
[ 4.717202] usb 2-1.4: New USB device found, idVendor=5986, idProduct=0294
[ 4.717292] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 4.717402] usb 2-1.4: Product: Lenovo EasyCamera
[ 4.717485] usb 2-1.4: Manufacturer: Bison Corp.
[ 4.718250] sd 1:0:0:0: [sda] Attached SCSI disk
[ 4.722416] sd 1:0:0:0: Attached scsi generic sg0 type 0
[ 4.722618] sr 4:0:0:0: Attached scsi generic sg1 type 5
[ 5.504801] nbd: registered device at major 43
[ 5.520919] device-mapper: uevent: version 1.0.3
[ 5.521086] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[ 5.670530] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
[ 17.628561] udev[413]: starting version 164
[ 17.878652] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
[ 17.879234] ACPI: Lid Switch [LID]
[ 17.879369] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3
[ 17.879478] ACPI: Power Button [PWRB]
[ 17.879591] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input4
[ 17.879702] ACPI: Sleep Button [SLPB]
[ 17.879818] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
[ 17.879927] ACPI: Power Button [PWRF]
[ 18.087536] microcode: CPU0 sig=0x20655, pf=0x10, revision=0x2
[ 18.099301] microcode: CPU1 sig=0x20655, pf=0x10, revision=0x2
[ 18.102059] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 18.193981] ACPI: Requesting acpi_cpufreq
[ 18.281028] intel ips 0000:00:1f.6: No CPUID match found.
[ 18.281110] intel ips 0000:00:1f.6: IPS not supported on this CPU
[ 18.516890] ACPI Warning: 0x0000000000001840-0x000000000000185f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20120320/utaddress-251)
[ 18.517123] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 18.527739] input: PC Speaker as /devices/platform/pcspkr/input/input6
[ 18.543968] input: USB Gamepad as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/input/input7
[ 18.544207] dragonrise 0003:0079:0011.0002: input,hidraw1: USB HID v1.10 Joystick [USB Gamepad ] on usb-0000:00:1d.0-1.2/input0
[ 18.625237] Linux media interface: v0.10
[ 18.874696] Linux video capture interface: v2.00
[ 18.986451] ACPI: Battery Slot [BAT1] (battery present)
[ 18.989490] ACPI: AC Adapter [ACAD] (on-line)
[ 18.994811] wmi: Mapper loaded
[ 19.062711] cfg80211: Calling CRDA to update world regulatory domain
[ 19.105550] psmouse serio4: alps: E6 report: 00 00 64
[ 19.130028] psmouse serio4: alps: E7 report: 73 03 50
[ 19.149304] psmouse serio4: alps: unknown response while entering command mode: 73 01 0d
[ 19.149311] psmouse serio4: alps: touchpad failed to enter command mode
[ 19.324387] input: Ideapad extra buttons as /devices/platform/ideapad/input/input8
[ 19.607328] [drm] Initialized drm 1.1.0 20060810
[ 19.665378] uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (5986:0294)
[ 19.667566] input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.0/input/input9
[ 19.667738] usbcore: registered new interface driver uvcvideo
[ 19.667822] USB Video Class driver (1.1.1)
[ 19.772454] input: PS/2 Generic Mouse as /devices/platform/i8042/serio4/input/input10
[ 21.049809] i915 0000:00:02.0: setting latency timer to 64
[ 21.103551] i915 0000:00:02.0: irq 42 for MSI/MSI-X
[ 21.103563] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[ 21.103652] [drm] Driver supports precise vblank timestamp query.
[ 21.103813] [drm:intel_dsm_platform_mux_info] *ERROR* MUX INFO call failed
[ 21.103919] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
[ 21.104027] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:01:00.0
[ 21.510193] fbcon: inteldrmfb (fb0) is primary device
[ 21.619734] ath: EEPROM regdomain: 0x65
[ 21.619738] ath: EEPROM indicates we should expect a direct regpair map
[ 21.619743] ath: Country alpha2 being used: 00
[ 21.619746] ath: Regpair used: 0x65
[ 21.656989] ieee80211 phy0: Selected rate control algorithm 'ath9k_rate_control'
[ 21.657322] Registered led device: ath9k-phy0
[ 21.657329] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xffffc90010920000, irq=17
[ 21.790523] Console: switching to colour frame buffer device 170x48
[ 21.798030] fb0: inteldrmfb frame buffer device
[ 21.798033] drm: registered panic notifier
[ 21.798420] ACPI Exception: AE_NOT_FOUND, Evaluating _DOD (20120320/video-1147)
[ 21.798474] video: probe of LNXVIDEO:00 failed with error 5
[ 21.801070] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input11
[ 21.801253] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 21.801528] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[ 21.801680] snd_hda_intel 0000:00:1b.0: irq 43 for MSI/MSI-X
[ 21.873287] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input12
[ 21.877417] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[ 21.877670] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[ 22.105384] EXT4-fs (sda7): re-mounted. Opts: (null)
[ 22.170023] EXT4-fs (sda7): re-mounted. Opts: errors=remount-ro
[ 22.300074] loop: module loaded
[ 23.694904] fuse init (API version 7.18)
[ 24.305189] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 25.894367] input: ACPI Virtual Keyboard Device as /devices/virtual/input/input15
[ 26.861883] atl1c 0000:08:00.0: irq 44 for MSI/MSI-X
[ 27.882839] Clocksource tsc unstable (delta = -126514396 ns)
[ 27.884078] Switching to clocksource hpet
[ 28.224284] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 30.610345] sshd (1643): /proc/1643/oom_adj is deprecated, please use /proc/1643/oom_score_adj instead.
[ 54.585466] wlan0: authenticate with ec:17:2f:2f:e9:b6
[ 54.598924] wlan0: send auth to ec:17:2f:2f:e9:b6 (try 1/3)
[ 54.602121] wlan0: authenticated
[ 54.609165] wlan0: associate with ec:17:2f:2f:e9:b6 (try 1/3)
[ 54.613379] wlan0: RX AssocResp from ec:17:2f:2f:e9:b6 (capab=0x431 status=0 aid=1)
[ 54.613384] wlan0: associated
[ 54.620466] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[-- Attachment #3: V4-73-inputdevices.txt --]
[-- Type: text/plain, Size: 4000 bytes --]
I: Bus=0011 Vendor=0001 Product=0001 Version=ab41
N: Name="AT Translated Set 2 keyboard"
P: Phys=isa0060/serio0/input0
S: Sysfs=/devices/platform/i8042/serio0/input/input0
U: Uniq=
H: Handlers=sysrq kbd event0
B: PROP=0
B: EV=120013
B: KEY=402000000 3803078f800d001 feffffdfffefffff fffffffffffffffe
B: MSC=10
B: LED=7
I: Bus=0003 Vendor=15d9 Product=0a4f Version=0111
N: Name=" USB OPTICAL MOUSE"
P: Phys=usb-0000:00:1a.0-1.1/input0
S: Sysfs=/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/input/input1
U: Uniq=
H: Handlers=mouse0 event1
B: PROP=0
B: EV=17
B: KEY=70000 0 0 0 0
B: REL=103
B: MSC=10
I: Bus=0019 Vendor=0000 Product=0005 Version=0000
N: Name="Lid Switch"
P: Phys=PNP0C0D/button/input0
S: Sysfs=/devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
U: Uniq=
H: Handlers=event2
B: PROP=0
B: EV=21
B: SW=1
I: Bus=0019 Vendor=0000 Product=0001 Version=0000
N: Name="Power Button"
P: Phys=PNP0C0C/button/input0
S: Sysfs=/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3
U: Uniq=
H: Handlers=kbd event3
B: PROP=0
B: EV=3
B: KEY=10000000000000 0
I: Bus=0019 Vendor=0000 Product=0003 Version=0000
N: Name="Sleep Button"
P: Phys=PNP0C0E/button/input0
S: Sysfs=/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input4
U: Uniq=
H: Handlers=kbd event4
B: PROP=0
B: EV=3
B: KEY=4000 0 0
I: Bus=0019 Vendor=0000 Product=0001 Version=0000
N: Name="Power Button"
P: Phys=LNXPWRBN/button/input0
S: Sysfs=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
U: Uniq=
H: Handlers=kbd event5
B: PROP=0
B: EV=3
B: KEY=10000000000000 0
I: Bus=0010 Vendor=001f Product=0001 Version=0100
N: Name="PC Speaker"
P: Phys=isa0061/input0
S: Sysfs=/devices/platform/pcspkr/input/input6
U: Uniq=
H: Handlers=kbd event6
B: PROP=0
B: EV=40001
B: SND=6
I: Bus=0003 Vendor=0079 Product=0011 Version=0110
N: Name="USB Gamepad "
P: Phys=usb-0000:00:1d.0-1.2/input0
S: Sysfs=/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/input/input7
U: Uniq=
H: Handlers=event7 js0
B: PROP=0
B: EV=1b
B: KEY=3ff00000000 0 0 0 0
B: ABS=3
B: MSC=10
I: Bus=0019 Vendor=0000 Product=0000 Version=0000
N: Name="Ideapad extra buttons"
P: Phys=ideapad/input0
S: Sysfs=/devices/platform/ideapad/input/input8
U: Uniq=
H: Handlers=kbd rfkill event8
B: PROP=0
B: EV=13
B: KEY=1400800000000 300000 0 0
B: MSC=10
I: Bus=0003 Vendor=5986 Product=0294 Version=1403
N: Name="Lenovo EasyCamera"
P: Phys=usb-0000:00:1d.0-1.4/button
S: Sysfs=/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.0/input/input9
U: Uniq=
H: Handlers=kbd event9
B: PROP=0
B: EV=3
B: KEY=100000 0 0 0
I: Bus=0011 Vendor=0002 Product=0001 Version=0000
N: Name="PS/2 Generic Mouse"
P: Phys=isa0060/serio4/input0
S: Sysfs=/devices/platform/i8042/serio4/input/input10
U: Uniq=
H: Handlers=mouse1 event10
B: PROP=0
B: EV=7
B: KEY=70000 0 0 0 0
B: REL=3
I: Bus=0019 Vendor=0000 Product=0006 Version=0000
N: Name="Video Bus"
P: Phys=LNXVIDEO/video/input0
S: Sysfs=/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input11
U: Uniq=
H: Handlers=kbd event11
B: PROP=0
B: EV=3
B: KEY=3e000b00000000 0 0 0
I: Bus=0001 Vendor=10ec Product=0272 Version=0001
N: Name="HDA Digital PCBeep"
P: Phys=card0/codec#0/beep0
S: Sysfs=/devices/pci0000:00/0000:00:1b.0/input/input12
U: Uniq=
H: Handlers=kbd event12
B: PROP=0
B: EV=40001
B: SND=6
I: Bus=0000 Vendor=0000 Product=0000 Version=0000
N: Name="HDA Intel Mic"
P: Phys=ALSA
S: Sysfs=/devices/pci0000:00/0000:00:1b.0/sound/card0/input13
U: Uniq=
H: Handlers=event13
B: PROP=0
B: EV=21
B: SW=10
I: Bus=0000 Vendor=0000 Product=0000 Version=0000
N: Name="HDA Intel Headphone"
P: Phys=ALSA
S: Sysfs=/devices/pci0000:00/0000:00:1b.0/sound/card0/input14
U: Uniq=
H: Handlers=event14
B: PROP=0
B: EV=21
B: SW=4
I: Bus=0003 Vendor=0000 Product=0000 Version=0004
N: Name="ACPI Virtual Keyboard Device"
P: Phys=
S: Sysfs=/devices/virtual/input/input15
U: Uniq=
H: Handlers=sysrq kbd rfkill event15
B: PROP=0
B: EV=3
B: KEY=ffffffffffffffff ffffffffffffffff ffffffffffffffff fffffffffffffffe
[-- Attachment #4: V4-73-xinputlist.txt --]
[-- Type: text/plain, Size: 4039 bytes --]
â¡ Virtual core pointer id=2 [master pointer (3)]
Reporting 3 classes:
Class originated from: 13
Buttons supported: 10
Button labels: Button Left Button Middle Button Right Button Wheel Up Button Wheel Down Button Horiz Wheel Left Button Horiz Wheel Right None None None
Button state:
Class originated from: 13
Detail for Valuator 0:
Label: Rel X
Range: -1.000000 - -1.000000
Resolution: 1 units/m
Mode: relative
Class originated from: 13
Detail for Valuator 1:
Label: Rel Y
Range: -1.000000 - -1.000000
Resolution: 1 units/m
Mode: relative
â â³ Virtual core XTEST pointer id=4 [slave pointer (2)]
Reporting 3 classes:
Class originated from: 4
Buttons supported: 10
Button labels: Button Left Button Middle Button Right Button Wheel Up Button Wheel Down Button Horiz Wheel Left Button Horiz Wheel Right None None None
Button state:
Class originated from: 4
Detail for Valuator 0:
Label: Rel X
Range: -1.000000 - -1.000000
Resolution: 0 units/m
Mode: relative
Class originated from: 4
Detail for Valuator 1:
Label: Rel Y
Range: -1.000000 - -1.000000
Resolution: 0 units/m
Mode: relative
â â³ USB OPTICAL MOUSE id=10 [slave pointer (2)]
Reporting 3 classes:
Class originated from: 10
Buttons supported: 7
Button labels: Button Left Button Middle Button Right Button Wheel Up Button Wheel Down Button Horiz Wheel Left Button Horiz Wheel Right
Button state:
Class originated from: 10
Detail for Valuator 0:
Label: Rel X
Range: -1.000000 - -1.000000
Resolution: 1 units/m
Mode: relative
Class originated from: 10
Detail for Valuator 1:
Label: Rel Y
Range: -1.000000 - -1.000000
Resolution: 1 units/m
Mode: relative
â â³ PS/2 Generic Mouse id=13 [slave pointer (2)]
Reporting 3 classes:
Class originated from: 13
Buttons supported: 5
Button labels: Button Left Button Middle Button Right Button Wheel Up Button Wheel Down
Button state:
Class originated from: 13
Detail for Valuator 0:
Label: Rel X
Range: -1.000000 - -1.000000
Resolution: 1 units/m
Mode: relative
Class originated from: 13
Detail for Valuator 1:
Label: Rel Y
Range: -1.000000 - -1.000000
Resolution: 1 units/m
Mode: relative
⣠Virtual core keyboard id=3 [master keyboard (2)]
Reporting 1 classes:
Class originated from: 12
Keycodes supported: 248
â³ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 5
Keycodes supported: 248
â³ Power Button id=6 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 6
Keycodes supported: 248
â³ Video Bus id=7 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 7
Keycodes supported: 248
â³ Power Button id=8 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 8
Keycodes supported: 248
â³ Sleep Button id=9 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 9
Keycodes supported: 248
â³ Lenovo EasyCamera id=11 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 11
Keycodes supported: 248
â³ AT Translated Set 2 keyboard id=12 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 12
Keycodes supported: 248
â³ Ideapad extra buttons id=14 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 14
Keycodes supported: 248
â³ ACPI Virtual Keyboard Device id=15 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 15
Keycodes supported: 248
[-- Attachment #5: V4-73-Xorg.0.log --]
[-- Type: application/octet-stream, Size: 30392 bytes --]
[ 30.146]
X.Org X Server 1.10.4
Release Date: 2011-08-19
[ 30.146] X Protocol Version 11, Revision 0
[ 30.146] Build Operating System: Linux 3.0.0-1-amd64 x86_64 Debian
[ 30.146] Current Operating System: Linux ldebian 3.4.4debugpsmouse #1 SMP Fri Jul 6 07:44:49 CST 2012 x86_64
[ 30.146] Kernel command line: root=/dev/sda7 acpi_backlight=vendor ro
[ 30.146] Build Date: 28 August 2011 09:39:43PM
[ 30.146] xorg-server 2:1.10.4-1~bpo60+1 (Cyril Brulebois <kibi@debian.org>)
[ 30.146] Current version of pixman: 0.24.0
[ 30.146] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 30.146] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 30.146] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jul 7 09:13:20 2012
[ 30.166] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 30.166] (==) No Layout section. Using the first Screen section.
[ 30.166] (==) No screen section available. Using defaults.
[ 30.166] (**) |-->Screen "Default Screen Section" (0)
[ 30.166] (**) | |-->Monitor "<default monitor>"
[ 30.166] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[ 30.166] (==) Automatically adding devices
[ 30.166] (==) Automatically enabling devices
[ 30.166] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[ 30.166] Entry deleted from font path.
[ 30.166] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
[ 30.166] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 30.166] (II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 30.166] (II) Loader magic: 0x7d3ae0
[ 30.166] (II) Module ABI versions:
[ 30.166] X.Org ANSI C Emulation: 0.4
[ 30.166] X.Org Video Driver: 10.0
[ 30.166] X.Org XInput driver : 12.2
[ 30.166] X.Org Server Extension : 5.0
[ 30.167] (--) PCI:*(0:0:2:0) 8086:0046:17aa:3920 rev 24, Mem @ 0xf0000000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8
[ 30.167] (--) PCI: (0:1:0:0) 10de:0a70:17aa:3968 rev 162, Mem @ 0xac000000/16777216, 0xb0000000/268435456, 0xae000000/33554432, I/O @ 0x00002000/128, BIOS @ 0x????????/524288
[ 30.167] (II) Open ACPI successful (/var/run/acpid.socket)
[ 30.167] (II) LoadModule: "extmod"
[ 30.196] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[ 30.196] (II) Module extmod: vendor="X.Org Foundation"
[ 30.196] compiled for 1.10.4, module version = 1.0.0
[ 30.196] Module class: X.Org Server Extension
[ 30.196] ABI class: X.Org Server Extension, version 5.0
[ 30.196] (II) Loading extension SELinux
[ 30.196] (II) Loading extension MIT-SCREEN-SAVER
[ 30.196] (II) Loading extension XFree86-VidModeExtension
[ 30.196] (II) Loading extension XFree86-DGA
[ 30.196] (II) Loading extension DPMS
[ 30.196] (II) Loading extension XVideo
[ 30.196] (II) Loading extension XVideo-MotionCompensation
[ 30.196] (II) Loading extension X-Resource
[ 30.196] (II) LoadModule: "dbe"
[ 30.196] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[ 30.197] (II) Module dbe: vendor="X.Org Foundation"
[ 30.197] compiled for 1.10.4, module version = 1.0.0
[ 30.197] Module class: X.Org Server Extension
[ 30.197] ABI class: X.Org Server Extension, version 5.0
[ 30.197] (II) Loading extension DOUBLE-BUFFER
[ 30.197] (II) LoadModule: "glx"
[ 30.197] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 30.197] (II) Module glx: vendor="X.Org Foundation"
[ 30.197] compiled for 1.10.4, module version = 1.0.0
[ 30.197] ABI class: X.Org Server Extension, version 5.0
[ 30.197] (==) AIGLX enabled
[ 30.197] (II) Loading extension GLX
[ 30.197] (II) LoadModule: "record"
[ 30.197] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[ 30.197] (II) Module record: vendor="X.Org Foundation"
[ 30.197] compiled for 1.10.4, module version = 1.13.0
[ 30.197] Module class: X.Org Server Extension
[ 30.197] ABI class: X.Org Server Extension, version 5.0
[ 30.197] (II) Loading extension RECORD
[ 30.197] (II) LoadModule: "dri"
[ 30.197] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[ 30.197] (II) Module dri: vendor="X.Org Foundation"
[ 30.197] compiled for 1.10.4, module version = 1.0.0
[ 30.198] ABI class: X.Org Server Extension, version 5.0
[ 30.198] (II) Loading extension XFree86-DRI
[ 30.198] (II) LoadModule: "dri2"
[ 30.198] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[ 30.198] (II) Module dri2: vendor="X.Org Foundation"
[ 30.198] compiled for 1.10.4, module version = 1.2.0
[ 30.198] ABI class: X.Org Server Extension, version 5.0
[ 30.198] (II) Loading extension DRI2
[ 30.198] (==) Matched intel as autoconfigured driver 0
[ 30.198] (==) Matched vesa as autoconfigured driver 1
[ 30.198] (==) Matched fbdev as autoconfigured driver 2
[ 30.198] (==) Assigned the driver to the xf86ConfigLayout
[ 30.198] (II) LoadModule: "intel"
[ 30.198] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[ 30.198] (II) Module intel: vendor="X.Org Foundation"
[ 30.198] compiled for 1.10.4, module version = 2.15.0
[ 30.198] Module class: X.Org Video Driver
[ 30.198] ABI class: X.Org Video Driver, version 10.0
[ 30.198] (II) LoadModule: "vesa"
[ 30.198] (WW) Warning, couldn't open module vesa
[ 30.198] (II) UnloadModule: "vesa"
[ 30.198] (II) Unloading vesa
[ 30.198] (EE) Failed to load module "vesa" (module does not exist, 0)
[ 30.198] (II) LoadModule: "fbdev"
[ 30.199] (WW) Warning, couldn't open module fbdev
[ 30.199] (II) UnloadModule: "fbdev"
[ 30.199] (II) Unloading fbdev
[ 30.199] (EE) Failed to load module "fbdev" (module does not exist, 0)
[ 30.199] (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, Sandybridge, Sandybridge, Sandybridge, Sandybridge,
Sandybridge, Sandybridge
[ 30.199] (++) using VT number 7
[ 30.207] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[ 30.207] drmOpenDevice: node name is /dev/dri/card0
[ 30.207] drmOpenDevice: open result is 9, (OK)
[ 30.207] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
[ 30.207] drmOpenDevice: node name is /dev/dri/card0
[ 30.207] drmOpenDevice: open result is 9, (OK)
[ 30.207] drmOpenByBusid: drmOpenMinor returns 9
[ 30.207] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
[ 30.207] (II) intel(0): Creating default Display subsection in Screen section
"Default Screen Section" for depth/fbbpp 24/32
[ 30.207] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[ 30.207] (==) intel(0): RGB weight 888
[ 30.207] (==) intel(0): Default visual is TrueColor
[ 30.207] (II) intel(0): Integrated Graphics Chipset: Intel(R) Arrandale
[ 30.207] (--) intel(0): Chipset: "Arrandale"
[ 30.207] (**) intel(0): Relaxed fencing enabled
[ 30.207] (**) intel(0): Framebuffer tiled
[ 30.207] (**) intel(0): Pixmaps tiled
[ 30.207] (**) intel(0): 3D buffers tiled
[ 30.207] (**) intel(0): SwapBuffers wait enabled
[ 30.207] (==) intel(0): video overlay key set to 0x101fe
[ 30.207] (II) intel(0): Output LVDS1 has no monitor section
[ 30.208] (II) intel(0): found backlight control interface /sys/class/backlight/intel_backlight
[ 30.208] (II) intel(0): Output VGA1 has no monitor section
[ 30.208] (II) intel(0): EDID for output LVDS1
[ 30.208] (II) intel(0): Manufacturer: AUO Model: 402c Serial#: 0
[ 30.208] (II) intel(0): Year: 2010 Week: 0
[ 30.208] (II) intel(0): EDID Version: 1.3
[ 30.208] (II) intel(0): Digital Display Input
[ 30.208] (II) intel(0): Max Image Size [cm]: horiz.: 29 vert.: 16
[ 30.208] (II) intel(0): Gamma: 2.20
[ 30.208] (II) intel(0): No DPMS capabilities specified
[ 30.208] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[ 30.208] (II) intel(0): First detailed timing is preferred mode
[ 30.208] (II) intel(0): redX: 0.590 redY: 0.345 greenX: 0.325 greenY: 0.540
[ 30.208] (II) intel(0): blueX: 0.150 blueY: 0.145 whiteX: 0.313 whiteY: 0.329
[ 30.208] (II) intel(0): Manufacturer's mask: 0
[ 30.208] (II) intel(0): Supported detailed timing:
[ 30.208] (II) intel(0): clock: 69.3 MHz Image Size: 293 x 164 mm
[ 30.208] (II) intel(0): h_active: 1366 h_sync: 1414 h_sync_end 1446 h_blank_end 1456 h_border: 0
[ 30.208] (II) intel(0): v_active: 768 v_sync: 771 v_sync_end 777 v_blanking: 793 v_border: 0
[ 30.208] (II) intel(0): Unknown vendor-specific block f
[ 30.208] (II) intel(0): AUO
[ 30.208] (II) intel(0): B133XW04 V0
[ 30.208] (II) intel(0): EDID (in hex):
[ 30.208] (II) intel(0): 00ffffffffffff0006af2c4000000000
[ 30.208] (II) intel(0): 00140103801d10780a15859758538a26
[ 30.208] (II) intel(0): 25505400000001010101010101010101
[ 30.208] (II) intel(0): 010101010101121b565a500019303020
[ 30.208] (II) intel(0): 360025a4100000180000000f00000000
[ 30.208] (II) intel(0): 00000000000000000020000000fe0041
[ 30.208] (II) intel(0): 554f0a202020202020202020000000fe
[ 30.208] (II) intel(0): 004231333358573034205630200a0056
[ 30.208] (II) intel(0): EDID vendor "AUO", prod id 16428
[ 30.208] (II) intel(0): Printing DDC gathered Modelines:
[ 30.208] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
[ 30.208] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "576x432" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "680x384" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "680x384" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "720x450" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "800x512" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "840x525" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "840x525" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "960x540" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "960x600" (doublescan mode not supported)
[ 30.208] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
[ 30.208] (II) intel(0): Printing probed modes for output LVDS1
[ 30.208] (II) intel(0): Modeline "1366x768"x60.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
[ 30.208] (II) intel(0): Modeline "1360x768"x59.8 84.75 1360 1432 1568 1776 768 771 781 798 -hsync +vsync (47.7 kHz)
[ 30.208] (II) intel(0): Modeline "1360x768"x60.0 72.00 1360 1408 1440 1520 768 771 781 790 +hsync -vsync (47.4 kHz)
[ 30.208] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
[ 30.208] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
[ 30.208] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
[ 30.208] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
[ 30.208] (II) intel(0): EDID for output VGA1
[ 30.208] (II) intel(0): Output LVDS1 connected
[ 30.208] (II) intel(0): Output VGA1 disconnected
[ 30.208] (II) intel(0): Using exact sizes for initial modes
[ 30.209] (II) intel(0): Output LVDS1 using initial mode 1366x768
[ 30.209] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[ 30.209] (II) intel(0): Kernel page flipping support detected, enabling
[ 30.209] (**) intel(0): Display dimensions: (290, 160) mm
[ 30.209] (**) intel(0): DPI set to (119, 121)
[ 30.209] (II) Loading sub module "fb"
[ 30.209] (II) LoadModule: "fb"
[ 30.209] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 30.209] (II) Module fb: vendor="X.Org Foundation"
[ 30.209] compiled for 1.10.4, module version = 1.0.0
[ 30.209] ABI class: X.Org ANSI C Emulation, version 0.4
[ 30.209] (II) Loading sub module "dri2"
[ 30.209] (II) LoadModule: "dri2"
[ 30.209] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[ 30.209] (II) Module dri2: vendor="X.Org Foundation"
[ 30.209] compiled for 1.10.4, module version = 1.2.0
[ 30.209] ABI class: X.Org Server Extension, version 5.0
[ 30.209] (==) Depth 24 pixmap format is 32 bpp
[ 30.209] (II) intel(0): [DRI2] Setup complete
[ 30.209] (II) intel(0): [DRI2] DRI driver: i965
[ 30.209] (II) intel(0): Allocated new frame buffer 1408x768 stride 5632, tiled
[ 30.217] (II) UXA(0): Driver registered support for the following operations:
[ 30.217] (II) solid
[ 30.217] (II) copy
[ 30.217] (II) composite (RENDER acceleration)
[ 30.217] (II) put_image
[ 30.217] (II) get_image
[ 30.217] (==) intel(0): Backing store disabled
[ 30.217] (==) intel(0): Silken mouse enabled
[ 30.217] (II) intel(0): Initializing HW Cursor
[ 30.280] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[ 30.280] (==) intel(0): DPMS enabled
[ 30.280] (==) intel(0): Intel XvMC decoder enabled
[ 30.280] (II) intel(0): Set up textured video
[ 30.280] (II) intel(0): [XvMC] xvmc_vld driver initialized.
[ 30.280] (II) intel(0): direct rendering: DRI2 Enabled
[ 30.280] (==) intel(0): hotplug detection: "enabled"
[ 30.280] (--) RandR disabled
[ 30.281] (II) Initializing built-in extension Generic Event Extension
[ 30.281] (II) Initializing built-in extension SHAPE
[ 30.281] (II) Initializing built-in extension MIT-SHM
[ 30.281] (II) Initializing built-in extension XInputExtension
[ 30.281] (II) Initializing built-in extension XTEST
[ 30.281] (II) Initializing built-in extension BIG-REQUESTS
[ 30.281] (II) Initializing built-in extension SYNC
[ 30.281] (II) Initializing built-in extension XKEYBOARD
[ 30.281] (II) Initializing built-in extension XC-MISC
[ 30.281] (II) Initializing built-in extension SECURITY
[ 30.281] (II) Initializing built-in extension XINERAMA
[ 30.281] (II) Initializing built-in extension XFIXES
[ 30.281] (II) Initializing built-in extension RENDER
[ 30.281] (II) Initializing built-in extension RANDR
[ 30.281] (II) Initializing built-in extension COMPOSITE
[ 30.281] (II) Initializing built-in extension DAMAGE
[ 30.281] (II) SELinux: Disabled on system
[ 30.297] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[ 30.297] (II) AIGLX: enabled GLX_INTEL_swap_event
[ 30.297] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[ 30.297] (II) AIGLX: enabled GLX_SGI_make_current_read
[ 30.297] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[ 30.297] (II) AIGLX: Loaded and initialized /usr/lib/dri/i965_dri.so
[ 30.297] (II) GLX: Initialized DRI2 GL provider for screen 0
[ 30.298] (II) intel(0): Setting screen physical size to 361 x 203
[ 30.389] (II) config/udev: Adding input device Power Button (/dev/input/event5)
[ 30.389] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 30.389] (II) LoadModule: "evdev"
[ 30.389] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.389] (II) Module evdev: vendor="X.Org Foundation"
[ 30.389] compiled for 1.10.3, module version = 2.6.0
[ 30.389] Module class: X.Org XInput Driver
[ 30.389] ABI class: X.Org XInput driver, version 12.2
[ 30.389] (II) Using input driver 'evdev' for 'Power Button'
[ 30.389] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.389] (**) Power Button: always reports core events
[ 30.389] (**) Power Button: Device: "/dev/input/event5"
[ 30.389] (--) Power Button: Found keys
[ 30.389] (II) Power Button: Configuring as keyboard
[ 30.389] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input5/event5"
[ 30.389] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[ 30.389] (**) Option "xkb_rules" "evdev"
[ 30.389] (**) Option "xkb_model" "pc105"
[ 30.389] (**) Option "xkb_layout" "us"
[ 30.393] (II) config/udev: Adding input device Video Bus (/dev/input/event11)
[ 30.394] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[ 30.394] (II) Using input driver 'evdev' for 'Video Bus'
[ 30.394] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.394] (**) Video Bus: always reports core events
[ 30.394] (**) Video Bus: Device: "/dev/input/event11"
[ 30.394] (--) Video Bus: Found keys
[ 30.394] (II) Video Bus: Configuring as keyboard
[ 30.394] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input11/event11"
[ 30.394] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
[ 30.394] (**) Option "xkb_rules" "evdev"
[ 30.394] (**) Option "xkb_model" "pc105"
[ 30.394] (**) Option "xkb_layout" "us"
[ 30.402] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[ 30.402] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 30.402] (II) Using input driver 'evdev' for 'Power Button'
[ 30.402] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.402] (**) Power Button: always reports core events
[ 30.402] (**) Power Button: Device: "/dev/input/event3"
[ 30.402] (--) Power Button: Found keys
[ 30.402] (II) Power Button: Configuring as keyboard
[ 30.402] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3/event3"
[ 30.402] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[ 30.402] (**) Option "xkb_rules" "evdev"
[ 30.402] (**) Option "xkb_model" "pc105"
[ 30.402] (**) Option "xkb_layout" "us"
[ 30.402] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
[ 30.403] (II) No input driver/identifier specified (ignoring)
[ 30.403] (II) config/udev: Adding input device Sleep Button (/dev/input/event4)
[ 30.403] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[ 30.403] (II) Using input driver 'evdev' for 'Sleep Button'
[ 30.403] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.403] (**) Sleep Button: always reports core events
[ 30.403] (**) Sleep Button: Device: "/dev/input/event4"
[ 30.403] (--) Sleep Button: Found keys
[ 30.403] (II) Sleep Button: Configuring as keyboard
[ 30.403] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input4/event4"
[ 30.403] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
[ 30.403] (**) Option "xkb_rules" "evdev"
[ 30.403] (**) Option "xkb_model" "pc105"
[ 30.403] (**) Option "xkb_layout" "us"
[ 30.405] (II) config/udev: Adding input device USB OPTICAL MOUSE (/dev/input/event1)
[ 30.405] (**) USB OPTICAL MOUSE: Applying InputClass "evdev pointer catchall"
[ 30.405] (II) Using input driver 'evdev' for ' USB OPTICAL MOUSE'
[ 30.405] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.405] (**) USB OPTICAL MOUSE: always reports core events
[ 30.405] (**) USB OPTICAL MOUSE: Device: "/dev/input/event1"
[ 30.405] (--) USB OPTICAL MOUSE: Found 3 mouse buttons
[ 30.405] (--) USB OPTICAL MOUSE: Found scroll wheel(s)
[ 30.405] (--) USB OPTICAL MOUSE: Found relative axes
[ 30.405] (--) USB OPTICAL MOUSE: Found x and y relative axes
[ 30.405] (II) USB OPTICAL MOUSE: Configuring as mouse
[ 30.405] (II) USB OPTICAL MOUSE: Adding scrollwheel support
[ 30.405] (**) USB OPTICAL MOUSE: YAxisMapping: buttons 4 and 5
[ 30.405] (**) USB OPTICAL MOUSE: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 30.405] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/input/input1/event1"
[ 30.405] (II) XINPUT: Adding extended input device " USB OPTICAL MOUSE" (type: MOUSE)
[ 30.405] (II) USB OPTICAL MOUSE: initialized for relative axes.
[ 30.405] (**) USB OPTICAL MOUSE: (accel) keeping acceleration scheme 1
[ 30.405] (**) USB OPTICAL MOUSE: (accel) acceleration profile 0
[ 30.405] (**) USB OPTICAL MOUSE: (accel) acceleration factor: 2.000
[ 30.405] (**) USB OPTICAL MOUSE: (accel) acceleration threshold: 4
[ 30.406] (II) config/udev: Adding input device USB OPTICAL MOUSE (/dev/input/mouse0)
[ 30.406] (II) No input driver/identifier specified (ignoring)
[ 30.406] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event12)
[ 30.406] (II) No input driver/identifier specified (ignoring)
[ 30.406] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event13)
[ 30.406] (II) No input driver/identifier specified (ignoring)
[ 30.406] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event14)
[ 30.407] (II) No input driver/identifier specified (ignoring)
[ 30.408] (II) config/udev: Adding input device USB Gamepad (/dev/input/event7)
[ 30.408] (II) No input driver/identifier specified (ignoring)
[ 30.408] (II) config/udev: Adding input device USB Gamepad (/dev/input/js0)
[ 30.408] (II) No input driver/identifier specified (ignoring)
[ 30.408] (II) config/udev: Adding input device Lenovo EasyCamera (/dev/input/event9)
[ 30.408] (**) Lenovo EasyCamera: Applying InputClass "evdev keyboard catchall"
[ 30.408] (II) Using input driver 'evdev' for 'Lenovo EasyCamera'
[ 30.408] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.409] (**) Lenovo EasyCamera: always reports core events
[ 30.409] (**) Lenovo EasyCamera: Device: "/dev/input/event9"
[ 30.409] (--) Lenovo EasyCamera: Found keys
[ 30.409] (II) Lenovo EasyCamera: Configuring as keyboard
[ 30.409] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.0/input/input9/event9"
[ 30.409] (II) XINPUT: Adding extended input device "Lenovo EasyCamera" (type: KEYBOARD)
[ 30.409] (**) Option "xkb_rules" "evdev"
[ 30.409] (**) Option "xkb_model" "pc105"
[ 30.409] (**) Option "xkb_layout" "us"
[ 30.412] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[ 30.412] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[ 30.412] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[ 30.412] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.412] (**) AT Translated Set 2 keyboard: always reports core events
[ 30.412] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[ 30.412] (--) AT Translated Set 2 keyboard: Found keys
[ 30.412] (II) AT Translated Set 2 keyboard: Configuring as keyboard
[ 30.412] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[ 30.412] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
[ 30.412] (**) Option "xkb_rules" "evdev"
[ 30.412] (**) Option "xkb_model" "pc105"
[ 30.412] (**) Option "xkb_layout" "us"
[ 30.413] (II) config/udev: Adding input device PS/2 Generic Mouse (/dev/input/event10)
[ 30.413] (**) PS/2 Generic Mouse: Applying InputClass "evdev pointer catchall"
[ 30.413] (II) Using input driver 'evdev' for 'PS/2 Generic Mouse'
[ 30.413] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.413] (**) PS/2 Generic Mouse: always reports core events
[ 30.413] (**) PS/2 Generic Mouse: Device: "/dev/input/event10"
[ 30.413] (--) PS/2 Generic Mouse: Found 3 mouse buttons
[ 30.413] (--) PS/2 Generic Mouse: Found relative axes
[ 30.413] (--) PS/2 Generic Mouse: Found x and y relative axes
[ 30.413] (II) PS/2 Generic Mouse: Configuring as mouse
[ 30.413] (**) PS/2 Generic Mouse: YAxisMapping: buttons 4 and 5
[ 30.413] (**) PS/2 Generic Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 30.413] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio4/input/input10/event10"
[ 30.413] (II) XINPUT: Adding extended input device "PS/2 Generic Mouse" (type: MOUSE)
[ 30.413] (II) PS/2 Generic Mouse: initialized for relative axes.
[ 30.413] (**) PS/2 Generic Mouse: (accel) keeping acceleration scheme 1
[ 30.413] (**) PS/2 Generic Mouse: (accel) acceleration profile 0
[ 30.413] (**) PS/2 Generic Mouse: (accel) acceleration factor: 2.000
[ 30.413] (**) PS/2 Generic Mouse: (accel) acceleration threshold: 4
[ 30.413] (II) config/udev: Adding input device PS/2 Generic Mouse (/dev/input/mouse1)
[ 30.413] (II) No input driver/identifier specified (ignoring)
[ 30.414] (II) config/udev: Adding input device Ideapad extra buttons (/dev/input/event8)
[ 30.414] (**) Ideapad extra buttons: Applying InputClass "evdev keyboard catchall"
[ 30.414] (II) Using input driver 'evdev' for 'Ideapad extra buttons'
[ 30.414] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.414] (**) Ideapad extra buttons: always reports core events
[ 30.414] (**) Ideapad extra buttons: Device: "/dev/input/event8"
[ 30.414] (--) Ideapad extra buttons: Found keys
[ 30.414] (II) Ideapad extra buttons: Configuring as keyboard
[ 30.414] (**) Option "config_info" "udev:/sys/devices/platform/ideapad/input/input8/event8"
[ 30.414] (II) XINPUT: Adding extended input device "Ideapad extra buttons" (type: KEYBOARD)
[ 30.414] (**) Option "xkb_rules" "evdev"
[ 30.414] (**) Option "xkb_model" "pc105"
[ 30.414] (**) Option "xkb_layout" "us"
[ 30.414] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
[ 30.414] (II) No input driver/identifier specified (ignoring)
[ 30.417] (II) config/udev: Adding input device ACPI Virtual Keyboard Device (/dev/input/event15)
[ 30.418] (**) ACPI Virtual Keyboard Device: Applying InputClass "evdev keyboard catchall"
[ 30.418] (II) Using input driver 'evdev' for 'ACPI Virtual Keyboard Device'
[ 30.418] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.418] (**) ACPI Virtual Keyboard Device: always reports core events
[ 30.418] (**) ACPI Virtual Keyboard Device: Device: "/dev/input/event15"
[ 30.418] (--) ACPI Virtual Keyboard Device: Found keys
[ 30.418] (II) ACPI Virtual Keyboard Device: Configuring as keyboard
[ 30.418] (**) Option "config_info" "udev:/sys/devices/virtual/input/input15/event15"
[ 30.418] (II) XINPUT: Adding extended input device "ACPI Virtual Keyboard Device" (type: KEYBOARD)
[ 30.418] (**) Option "xkb_rules" "evdev"
[ 30.418] (**) Option "xkb_model" "pc105"
[ 30.418] (**) Option "xkb_layout" "us"
[ 31.131] (II) intel(0): EDID vendor "AUO", prod id 16428
[ 31.131] (II) intel(0): Printing DDC gathered Modelines:
[ 31.131] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
[ 31.132] (II) intel(0): EDID vendor "AUO", prod id 16428
[ 31.133] (II) intel(0): Printing DDC gathered Modelines:
[ 31.133] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
[ 31.143] (II) intel(0): EDID vendor "AUO", prod id 16428
[ 31.143] (II) intel(0): Printing DDC gathered Modelines:
[ 31.143] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
[ 48.906] (II) intel(0): EDID vendor "AUO", prod id 16428
[ 48.906] (II) intel(0): Printing DDC gathered Modelines:
[ 48.906] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
[ 48.907] (II) intel(0): EDID vendor "AUO", prod id 16428
[ 48.907] (II) intel(0): Printing DDC gathered Modelines:
[ 48.907] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
[ 48.908] (II) intel(0): EDID vendor "AUO", prod id 16428
[ 48.908] (II) intel(0): Printing DDC gathered Modelines:
[ 48.908] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
[ 51.956] (II) intel(0): EDID vendor "AUO", prod id 16428
[ 51.956] (II) intel(0): Printing DDC gathered Modelines:
[ 51.956] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
[-- Attachment #6: V2-00-dmesg.txt --]
[-- Type: text/plain, Size: 52079 bytes --]
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 3.4.4debugpsmouse (mengdaxing@ldebian) (gcc version 4.4.5 (Debian 4.4.5-8) ) #1 SMP Fri Jul 6 07:44:49 CST 2012
[ 0.000000] Command line: root=/dev/sda7 acpi_backlight=vendor ro
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009c400 (usable)
[ 0.000000] BIOS-e820: 000000000009c400 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000dc000 - 00000000000e0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000007727c000 (usable)
[ 0.000000] BIOS-e820: 000000007727c000 - 0000000077282000 (reserved)
[ 0.000000] BIOS-e820: 0000000077282000 - 00000000773ee000 (usable)
[ 0.000000] BIOS-e820: 00000000773ee000 - 000000007740f000 (reserved)
[ 0.000000] BIOS-e820: 000000007740f000 - 000000007746f000 (usable)
[ 0.000000] BIOS-e820: 000000007746f000 - 0000000077470000 (reserved)
[ 0.000000] BIOS-e820: 0000000077470000 - 00000000774f1000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000774f1000 - 000000007770f000 (reserved)
[ 0.000000] BIOS-e820: 000000007770f000 - 0000000077717000 (usable)
[ 0.000000] BIOS-e820: 0000000077717000 - 000000007771f000 (reserved)
[ 0.000000] BIOS-e820: 000000007771f000 - 000000007775e000 (usable)
[ 0.000000] BIOS-e820: 000000007775e000 - 000000007779f000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000007779f000 - 00000000777e1000 (usable)
[ 0.000000] BIOS-e820: 00000000777e1000 - 00000000777ff000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000777ff000 - 0000000077800000 (usable)
[ 0.000000] BIOS-e820: 0000000077800000 - 000000007c000000 (reserved)
[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[ 0.000000] BIOS-e820: 00000000f0804000 - 00000000f0805000 (reserved)
[ 0.000000] BIOS-e820: 00000000feaff000 - 00000000feb00000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved)
[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved)
[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] DMI present.
[ 0.000000] DMI: LENOVO G360 /LL1 , BIOS 61CN06WW 10/27/2011
[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[ 0.000000] No AGP bridge found
[ 0.000000] last_pfn = 0x77800 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-D3FFF write-protect
[ 0.000000] D4000-DBFFF uncachable
[ 0.000000] DC000-FFFFF write-through
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 disabled
[ 0.000000] 1 base 078000000 mask FF8000000 uncachable
[ 0.000000] 2 base 000000000 mask F80000000 write-back
[ 0.000000] 3 disabled
[ 0.000000] 4 disabled
[ 0.000000] 5 disabled
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] found SMP MP-table at [ffff8800000f6200] f6200
[ 0.000000] initial memory mapped : 0 - 20000000
[ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 20480
[ 0.000000] init_memory_mapping: 0000000000000000-0000000077800000
[ 0.000000] 0000000000 - 0077800000 page 2M
[ 0.000000] kernel direct mapping tables up to 77800000 @ 1fffd000-20000000
[ 0.000000] RAMDISK: 6fc5c000 - 7726c000
[ 0.000000] ACPI: RSDP 00000000000f60c0 00024 (v02 PTLTD )
[ 0.000000] ACPI: XSDT 00000000777f2fcb 0005C (v01 LENOVO CB-01 06040000 LTP 00000000)
[ 0.000000] ACPI: FACP 00000000777e3000 000F4 (v03 LENOVO CB-01 06040000 PTEC 00000001)
[ 0.000000] ACPI: DSDT 00000000777e4000 0BBBF (v02 LENOVO CB-01 06040000 INTL 20060912)
[ 0.000000] ACPI: FACS 000000007779bfc0 00040
[ 0.000000] ACPI: HPET 00000000777fed86 00038 (v01 LENOVO CB-01 06040000 PTEC 00000001)
[ 0.000000] ACPI: MCFG 00000000777fedbe 0003C (v01 LENOVO CB-01 06040000 PTEC 00000001)
[ 0.000000] ACPI: APIC 00000000777fedfa 00068 (v01 LENOVO CB-01 06040000 LTP 00000000)
[ 0.000000] ACPI: BOOT 00000000777fee62 00028 (v01 LENOVO CB-01 06040000 LTP 00000001)
[ 0.000000] ACPI: SLIC 00000000777fee8a 00176 (v01 LENOVO CB-01 06040000 LTP 00000000)
[ 0.000000] ACPI: SSDT 00000000777e2000 009F1 (v01 PmRef CpuPm 00003000 INTL 20050624)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at 0000000000000000-0000000077800000
[ 0.000000] Initmem setup node 0 0000000000000000-0000000077800000
[ 0.000000] NODE_DATA [00000000777dd000 - 00000000777e0fff]
[ 0.000000] [ffffea0000000000-ffffea0001bfffff] PMD -> [ffff88006d600000-ffff88006f1fffff] on node 0
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000010 -> 0x00001000
[ 0.000000] DMA32 0x00001000 -> 0x00100000
[ 0.000000] Normal empty
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] Early memory PFN ranges
[ 0.000000] 0: 0x00000010 -> 0x0000009c
[ 0.000000] 0: 0x00000100 -> 0x0007727c
[ 0.000000] 0: 0x00077282 -> 0x000773ee
[ 0.000000] 0: 0x0007740f -> 0x0007746f
[ 0.000000] 0: 0x0007770f -> 0x00077717
[ 0.000000] 0: 0x0007771f -> 0x0007775e
[ 0.000000] 0: 0x0007779f -> 0x000777e1
[ 0.000000] 0: 0x000777ff -> 0x00077800
[ 0.000000] On node 0 totalpages: 488542
[ 0.000000] DMA zone: 56 pages used for memmap
[ 0.000000] DMA zone: 5 pages reserved
[ 0.000000] DMA zone: 3919 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 6636 pages used for memmap
[ 0.000000] DMA32 zone: 477926 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[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x04] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[ 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 2 CPUs, 0 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 40
[ 0.000000] PM: Registered nosave memory: 000000000009c000 - 000000000009d000
[ 0.000000] PM: Registered nosave memory: 000000000009d000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000dc000
[ 0.000000] PM: Registered nosave memory: 00000000000dc000 - 00000000000e0000
[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 00000000000e4000
[ 0.000000] PM: Registered nosave memory: 00000000000e4000 - 0000000000100000
[ 0.000000] PM: Registered nosave memory: 000000007727c000 - 0000000077282000
[ 0.000000] PM: Registered nosave memory: 00000000773ee000 - 000000007740f000
[ 0.000000] PM: Registered nosave memory: 000000007746f000 - 0000000077470000
[ 0.000000] PM: Registered nosave memory: 0000000077470000 - 00000000774f1000
[ 0.000000] PM: Registered nosave memory: 00000000774f1000 - 000000007770f000
[ 0.000000] PM: Registered nosave memory: 0000000077717000 - 000000007771f000
[ 0.000000] PM: Registered nosave memory: 000000007775e000 - 000000007779f000
[ 0.000000] PM: Registered nosave memory: 00000000777e1000 - 00000000777ff000
[ 0.000000] Allocating PCI resources starting at 7c000000 (gap: 7c000000:64000000)
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:2 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88006fa00000 s82304 r8192 d24192 u1048576
[ 0.000000] pcpu-alloc: s82304 r8192 d24192 u1048576 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 481845
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: root=/dev/sda7 acpi_backlight=vendor ro
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 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: 1795820k/1957888k available (3581k kernel code, 3720k absent, 158348k reserved, 3112k data, 604k init)
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
[ 0.000000] NR_IRQS:33024 nr_irqs:512 16
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] allocated 7864320 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.004000] Detected 2128.062 MHz processor.
[ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 4256.12 BogoMIPS (lpj=8512248)
[ 0.000152] pid_max: default: 32768 minimum: 301
[ 0.000262] Security Framework initialized
[ 0.000338] AppArmor: AppArmor disabled by boot time parameter
[ 0.000551] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.001347] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.001755] Mount-cache hash table entries: 256
[ 0.002035] Initializing cgroup subsys cpuacct
[ 0.002109] Initializing cgroup subsys memory
[ 0.002191] Initializing cgroup subsys devices
[ 0.002264] Initializing cgroup subsys freezer
[ 0.002336] Initializing cgroup subsys net_cls
[ 0.002408] Initializing cgroup subsys blkio
[ 0.002485] Initializing cgroup subsys perf_event
[ 0.002585] CPU: Physical Processor ID: 0
[ 0.002656] CPU: Processor Core ID: 0
[ 0.002729] mce: CPU supports 9 MCE banks
[ 0.002809] CPU0: Thermal monitoring enabled (TM1)
[ 0.002889] using mwait in idle threads.
[ 0.003999] ACPI: Core revision 20120320
[ 0.023651] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.063400] CPU0: Intel(R) Pentium(R) CPU P6200 @ 2.13GHz stepping 05
[ 0.171134] Performance Events: PEBS fmt1+, 16-deep LBR, Westmere events, Intel PMU driver.
[ 0.171408] CPUID marked event: 'bus cycles' unavailable
[ 0.171487] ... version: 3
[ 0.171563] ... bit width: 48
[ 0.171636] ... generic registers: 4
[ 0.171708] ... value mask: 0000ffffffffffff
[ 0.171785] ... max period: 000000007fffffff
[ 0.171862] ... fixed-purpose events: 3
[ 0.171935] ... event mask: 000000070000000f
[ 0.172158] NMI watchdog: enabled, takes one hw-pmu counter.
[ 0.172351] Booting Node 0, Processors #1 Ok.
[ 0.183421] CPU1: Thermal monitoring handled by SMI
[ 0.185533] NMI watchdog: enabled, takes one hw-pmu counter.
[ 0.185656] Brought up 2 CPUs
[ 0.185729] Total of 2 processors activated (8512.24 BogoMIPS).
[ 0.187031] devtmpfs: initialized
[ 0.191230] PM: Registering ACPI NVS region [mem 0x77470000-0x774f0fff] (528384 bytes)
[ 0.191358] PM: Registering ACPI NVS region [mem 0x7775e000-0x7779efff] (266240 bytes)
[ 0.191569] dummy:
[ 0.191699] NET: Registered protocol family 16
[ 0.191896] ACPI: bus type pci registered
[ 0.192052] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.192160] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[ 0.237598] PCI: Using configuration type 1 for base access
[ 0.238298] bio: create slab <bio-0> at 0
[ 0.238461] ACPI: Added _OSI(Module Device)
[ 0.238536] ACPI: Added _OSI(Processor Device)
[ 0.238610] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.238689] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.240307] ACPI: EC: Look up EC in DSDT
[ 0.248392] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[ 0.248948] ACPI: SSDT 000000007771ac18 003AE (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
[ 0.249514] ACPI: Dynamic OEM Table Load:
[ 0.249675] ACPI: SSDT (null) 003AE (v01 PmRef Cpu0Ist 00003000 INTL 20050624)
[ 0.250047] ACPI: SSDT 0000000077718018 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
[ 0.253055] ACPI: Dynamic OEM Table Load:
[ 0.253213] ACPI: SSDT (null) 00891 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
[ 0.253763] ACPI: SSDT 0000000077719a98 00303 (v01 PmRef ApIst 00003000 INTL 20050624)
[ 0.254392] ACPI: Dynamic OEM Table Load:
[ 0.254551] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20050624)
[ 0.254907] ACPI: SSDT 0000000077717d98 00119 (v01 PmRef ApCst 00003000 INTL 20050624)
[ 0.255483] ACPI: Dynamic OEM Table Load:
[ 0.255643] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20050624)
[ 0.264844] ACPI: Interpreter enabled
[ 0.264922] ACPI: (supports S0 S3 S4 S5)
[ 0.265189] ACPI: Using IOAPIC for interrupt routing
[ 0.277136] ACPI: EC: GPE = 0x16, I/O: command/status = 0x66, data = 0x62
[ 0.277422] ACPI: No dock devices found.
[ 0.277506] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.278094] \_SB_.PCI0:_OSC invalid UUID
[ 0.278096] _OSC request data:1 8 1f
[ 0.278101] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.278929] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
[ 0.279015] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
[ 0.279100] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[ 0.279205] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
[ 0.279314] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
[ 0.279418] pci_root PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff]
[ 0.279524] pci_root PNP0A08:00: host bridge window [mem 0x7c000000-0xfeafffff]
[ 0.279663] PCI host bridge to bus 0000:00
[ 0.279739] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
[ 0.279821] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
[ 0.279902] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[ 0.279987] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[ 0.280070] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[ 0.280153] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
[ 0.280235] pci_bus 0000:00: root bus resource [mem 0x7c000000-0xfeafffff]
[ 0.280329] pci 0000:00:00.0: [8086:0044] type 00 class 0x060000
[ 0.280348] DMAR: BIOS has allocated no shadow GTT; disabling IOMMU for graphics
[ 0.280474] pci 0000:00:01.0: [8086:0045] type 01 class 0x060400
[ 0.280508] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.280523] pci 0000:00:02.0: [8086:0046] type 00 class 0x030000
[ 0.280535] pci 0000:00:02.0: reg 10: [mem 0xf0000000-0xf03fffff 64bit]
[ 0.280542] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref]
[ 0.280547] pci 0000:00:02.0: reg 20: [io 0x1800-0x1807]
[ 0.280624] pci 0000:00:1a.0: [8086:3b3c] type 00 class 0x0c0320
[ 0.280650] pci 0000:00:1a.0: reg 10: [mem 0xf0806000-0xf08063ff]
[ 0.280762] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.280798] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
[ 0.280820] pci 0000:00:1b.0: reg 10: [mem 0xf0800000-0xf0803fff 64bit]
[ 0.280920] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.280952] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
[ 0.281055] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.281088] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
[ 0.281191] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.281227] pci 0000:00:1c.4: [8086:3b4a] type 01 class 0x060400
[ 0.281330] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.281373] pci 0000:00:1d.0: [8086:3b34] type 00 class 0x0c0320
[ 0.281399] pci 0000:00:1d.0: reg 10: [mem 0xf0806400-0xf08067ff]
[ 0.281516] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.281545] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[ 0.281635] pci 0000:00:1f.0: [8086:3b09] type 00 class 0x060100
[ 0.281771] pci 0000:00:1f.2: [8086:3b29] type 00 class 0x010601
[ 0.281799] pci 0000:00:1f.2: reg 10: [io 0x1818-0x181f]
[ 0.281810] pci 0000:00:1f.2: reg 14: [io 0x180c-0x180f]
[ 0.281822] pci 0000:00:1f.2: reg 18: [io 0x1810-0x1817]
[ 0.281833] pci 0000:00:1f.2: reg 1c: [io 0x1808-0x180b]
[ 0.281845] pci 0000:00:1f.2: reg 20: [io 0x1820-0x183f]
[ 0.281857] pci 0000:00:1f.2: reg 24: [mem 0xf0805000-0xf08057ff]
[ 0.281925] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.281951] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
[ 0.281973] pci 0000:00:1f.3: reg 10: [mem 0xf0806800-0xf08068ff 64bit]
[ 0.282004] pci 0000:00:1f.3: reg 20: [io 0x1840-0x185f]
[ 0.282056] pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
[ 0.282084] pci 0000:00:1f.6: reg 10: [mem 0xf0804000-0xf0804fff 64bit]
[ 0.282234] pci 0000:01:00.0: [10de:0a70] type 00 class 0x030000
[ 0.282250] pci 0000:01:00.0: reg 10: [mem 0xac000000-0xacffffff]
[ 0.282266] pci 0000:01:00.0: reg 14: [mem 0xb0000000-0xbfffffff 64bit pref]
[ 0.282283] pci 0000:01:00.0: reg 1c: [mem 0xae000000-0xafffffff 64bit pref]
[ 0.282295] pci 0000:01:00.0: reg 24: [io 0x2000-0x207f]
[ 0.282307] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0007ffff pref]
[ 0.282412] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[ 0.282492] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
[ 0.282495] pci 0000:00:01.0: bridge window [mem 0xac000000-0xadefffff]
[ 0.282499] pci 0000:00:01.0: bridge window [mem 0xae000000-0xbfffffff 64bit pref]
[ 0.282557] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
[ 0.282742] pci 0000:03:00.0: [168c:002b] type 00 class 0x028000
[ 0.282785] pci 0000:03:00.0: reg 10: [mem 0xf0500000-0xf050ffff 64bit]
[ 0.282986] pci 0000:03:00.0: supports D1
[ 0.282988] pci 0000:03:00.0: PME# supported from D0 D1 D3hot
[ 0.283071] pci 0000:00:1c.1: PCI bridge to [bus 03-03]
[ 0.283155] pci 0000:00:1c.1: bridge window [mem 0xf0500000-0xf05fffff]
[ 0.283241] pci 0000:08:00.0: [1969:2060] type 00 class 0x020000
[ 0.283271] pci 0000:08:00.0: reg 10: [mem 0xf0400000-0xf043ffff 64bit]
[ 0.283286] pci 0000:08:00.0: reg 18: [io 0x3000-0x307f]
[ 0.283412] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.293490] pci 0000:00:1c.4: PCI bridge to [bus 08-08]
[ 0.293584] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
[ 0.293589] pci 0000:00:1c.4: bridge window [mem 0xf0400000-0xf04fffff]
[ 0.293670] pci 0000:00:1e.0: PCI bridge to [bus 0a-0a] (subtractive decode)
[ 0.293768] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
[ 0.293771] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
[ 0.293773] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[ 0.293776] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
[ 0.293780] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
[ 0.293782] pci 0000:00:1e.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
[ 0.293785] pci 0000:00:1e.0: bridge window [mem 0x7c000000-0xfeafffff] (subtractive decode)
[ 0.293815] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.294083] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2._PRT]
[ 0.294161] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
[ 0.294329] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[ 0.294399] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[ 0.294474] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP05._PRT]
[ 0.294623] \_SB_.PCI0:_OSC invalid UUID
[ 0.294624] _OSC request data:1 1f 1f
[ 0.294629] pci0000:00: Requesting ACPI _OSC control (0x1d)
[ 0.294750] \_SB_.PCI0:_OSC invalid UUID
[ 0.294751] _OSC request data:1 0 1d
[ 0.294755] pci0000:00: ACPI _OSC request failed (AE_ERROR), returned control mask: 0x1d
[ 0.294863] ACPI _OSC control for PCIe not granted, disabling ASPM
[ 0.301152] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff])
[ 0.301305] PCI host bridge to bus 0000:ff
[ 0.301384] pci 0000:ff:00.0: [8086:2c62] type 00 class 0x060000
[ 0.301406] pci 0000:ff:00.1: [8086:2d01] type 00 class 0x060000
[ 0.301431] pci 0000:ff:02.0: [8086:2d10] type 00 class 0x060000
[ 0.301450] pci 0000:ff:02.1: [8086:2d11] type 00 class 0x060000
[ 0.301474] pci 0000:ff:02.2: [8086:2d12] type 00 class 0x060000
[ 0.301493] pci 0000:ff:02.3: [8086:2d13] type 00 class 0x060000
[ 0.301528] pci0000:ff: Requesting ACPI _OSC control (0x1d)
[ 0.301608] pci0000:ff: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
[ 0.301717] ACPI _OSC control for PCIe not granted, disabling ASPM
[ 0.302044] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 *10 12 14 15)
[ 0.302677] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
[ 0.303376] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 *10 12 14 15)
[ 0.304008] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
[ 0.304639] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 0.305380] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[ 0.306124] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[ 0.306817] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15)
[ 0.307497] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.307613] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
[ 0.307721] vgaarb: loaded
[ 0.307792] vgaarb: bridge control possible 0000:01:00.0
[ 0.307869] vgaarb: no bridge control possible 0000:00:02.0
[ 0.307976] PCI: Using ACPI for IRQ routing
[ 0.317983] PCI: pci_cache_line_size set to 64 bytes
[ 0.318080] reserve RAM buffer: 000000000009c400 - 000000000009ffff
[ 0.318082] reserve RAM buffer: 000000007727c000 - 0000000077ffffff
[ 0.318088] reserve RAM buffer: 00000000773ee000 - 0000000077ffffff
[ 0.318093] reserve RAM buffer: 000000007746f000 - 0000000077ffffff
[ 0.318097] reserve RAM buffer: 0000000077717000 - 0000000077ffffff
[ 0.318101] reserve RAM buffer: 000000007775e000 - 0000000077ffffff
[ 0.318104] reserve RAM buffer: 00000000777e1000 - 0000000077ffffff
[ 0.318106] reserve RAM buffer: 0000000077800000 - 0000000077ffffff
[ 0.318245] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.318706] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.320805] Switching to clocksource hpet
[ 0.322696] pnp: PnP ACPI init
[ 0.322787] ACPI: bus type pnp registered
[ 0.323267] pnp 00:00: [bus 00-fe]
[ 0.323270] pnp 00:00: [io 0x0000-0x0cf7 window]
[ 0.323273] pnp 00:00: [io 0x0cf8-0x0cff]
[ 0.323275] pnp 00:00: [io 0x0d00-0xffff window]
[ 0.323277] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[ 0.323279] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[ 0.323282] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[ 0.323284] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[ 0.323286] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[ 0.323288] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[ 0.323290] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[ 0.323292] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[ 0.323294] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[ 0.323296] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[ 0.323298] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[ 0.323301] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[ 0.323303] pnp 00:00: [mem 0x000ec000-0x000effff window]
[ 0.323305] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[ 0.323307] pnp 00:00: [mem 0x7c000000-0xfeafffff window]
[ 0.323309] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
[ 0.323366] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[ 0.323474] pnp 00:01: [io 0x0000-0x001f]
[ 0.323477] pnp 00:01: [io 0x0081-0x0091]
[ 0.323478] pnp 00:01: [io 0x0093-0x009f]
[ 0.323480] pnp 00:01: [io 0x00c0-0x00df]
[ 0.323482] pnp 00:01: [dma 4]
[ 0.323517] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[ 0.323527] pnp 00:02: [mem 0xff000000-0xffffffff]
[ 0.323561] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
[ 0.323649] pnp 00:03: [irq 0 disabled]
[ 0.323662] pnp 00:03: [irq 8]
[ 0.323665] pnp 00:03: [mem 0xfed00000-0xfed003ff]
[ 0.323701] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
[ 0.323712] pnp 00:04: [io 0x00f0]
[ 0.323718] pnp 00:04: [irq 13]
[ 0.323753] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 0.323767] pnp 00:05: [io 0x002e-0x002f]
[ 0.323769] pnp 00:05: [io 0x004e-0x004f]
[ 0.323771] pnp 00:05: [io 0x0061]
[ 0.323773] pnp 00:05: [io 0x0063]
[ 0.323774] pnp 00:05: [io 0x0065]
[ 0.323776] pnp 00:05: [io 0x0067]
[ 0.323778] pnp 00:05: [io 0x0070]
[ 0.323780] pnp 00:05: [io 0x0080]
[ 0.323781] pnp 00:05: [io 0x0092]
[ 0.323783] pnp 00:05: [io 0x00b2-0x00b3]
[ 0.323785] pnp 00:05: [io 0x0680-0x069f]
[ 0.323787] pnp 00:05: [io 0x0500-0x050f]
[ 0.323789] pnp 00:05: [io 0x0600-0x0603]
[ 0.323790] pnp 00:05: [io 0xffff]
[ 0.323792] pnp 00:05: [io 0x0400-0x047f]
[ 0.323794] pnp 00:05: [io 0x1180-0x11ff]
[ 0.323796] pnp 00:05: [io 0x164e-0x164f]
[ 0.323797] pnp 00:05: [io 0xfe00]
[ 0.323799] pnp 00:05: [io 0x0068]
[ 0.323801] pnp 00:05: [io 0x006c]
[ 0.323803] pnp 00:05: [io 0x0700-0x070f]
[ 0.323867] system 00:05: [io 0x0680-0x069f] has been reserved
[ 0.323953] system 00:05: [io 0x0500-0x050f] has been reserved
[ 0.324035] system 00:05: [io 0x0600-0x0603] has been reserved
[ 0.324114] system 00:05: [io 0xffff] has been reserved
[ 0.324192] system 00:05: [io 0x0400-0x047f] has been reserved
[ 0.324273] system 00:05: [io 0x1180-0x11ff] has been reserved
[ 0.324352] system 00:05: [io 0x164e-0x164f] has been reserved
[ 0.324434] system 00:05: [io 0xfe00] has been reserved
[ 0.324513] system 00:05: [io 0x0700-0x070f] has been reserved
[ 0.324593] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.324630] pnp 00:06: [io 0x06a0-0x06af]
[ 0.324632] pnp 00:06: [io 0x06b0-0x06ff]
[ 0.324685] system 00:06: [io 0x06a0-0x06af] has been reserved
[ 0.324766] system 00:06: [io 0x06b0-0x06ff] has been reserved
[ 0.324846] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.324899] pnp 00:07: [io 0x0070-0x0077]
[ 0.324937] pnp 00:07: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.324968] pnp 00:08: [io 0x0060]
[ 0.324970] pnp 00:08: [io 0x0064]
[ 0.324976] pnp 00:08: [irq 1]
[ 0.325013] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
[ 0.325027] pnp 00:09: [irq 12]
[ 0.325063] pnp 00:09: Plug and Play ACPI device, IDs PNP0f13 (active)
[ 0.325364] pnp 00:0a: [mem 0xfed1c000-0xfed1ffff]
[ 0.325367] pnp 00:0a: [mem 0xfed10000-0xfed13fff]
[ 0.325369] pnp 00:0a: [mem 0xfed18000-0xfed18fff]
[ 0.325371] pnp 00:0a: [mem 0xfed19000-0xfed19fff]
[ 0.325373] pnp 00:0a: [mem 0xe0000000-0xefffffff]
[ 0.325376] pnp 00:0a: [mem 0x00000000-0xffffffffffffffff disabled]
[ 0.325378] pnp 00:0a: [mem 0xfeaff000-0xfeafffff]
[ 0.325380] pnp 00:0a: [mem 0xfed20000-0xfed3ffff]
[ 0.325382] pnp 00:0a: [mem 0xfed90000-0xfed8ffff disabled]
[ 0.325384] pnp 00:0a: [mem 0xfed40000-0xfed44fff]
[ 0.325386] pnp 00:0a: [mem 0xfed45000-0xfed8ffff]
[ 0.325388] pnp 00:0a: [mem 0xff000000-0xffffffff]
[ 0.325390] pnp 00:0a: [mem 0xfee00000-0xfeefffff]
[ 0.325453] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.325535] system 00:0a: [mem 0xfed10000-0xfed13fff] has been reserved
[ 0.325618] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.325701] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.325784] system 00:0a: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.325868] system 00:0a: [mem 0xfeaff000-0xfeafffff] has been reserved
[ 0.325950] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.326036] system 00:0a: [mem 0xfed40000-0xfed44fff] has been reserved
[ 0.326117] system 00:0a: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.326199] system 00:0a: [mem 0xff000000-0xffffffff] has been reserved
[ 0.326285] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.326370] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.326556] pnp 00:0b: [bus ff]
[ 0.326600] pnp 00:0b: Plug and Play ACPI device, IDs PNP0a03 (active)
[ 0.326970] pnp: PnP ACPI: found 12 devices
[ 0.327048] ACPI: ACPI bus type pnp unregistered
[ 0.334127] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 02-02] add_size 1000
[ 0.334132] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02-02] add_size 200000
[ 0.334136] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02-02] add_size 200000
[ 0.334148] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 03-03] add_size 1000
[ 0.334152] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03-03] add_size 200000
[ 0.334164] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 08-08] add_size 200000
[ 0.334183] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
[ 0.334186] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 0.334189] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 0.334192] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[ 0.334195] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 0.334197] pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
[ 0.334203] pci 0000:00:1c.0: BAR 14: assigned [mem 0x7c000000-0x7c1fffff]
[ 0.334292] pci 0000:00:1c.0: BAR 15: assigned [mem 0x7c200000-0x7c3fffff 64bit pref]
[ 0.334401] pci 0000:00:1c.1: BAR 15: assigned [mem 0x7c400000-0x7c5fffff 64bit pref]
[ 0.334507] pci 0000:00:1c.4: BAR 15: assigned [mem 0x7c600000-0x7c7fffff 64bit pref]
[ 0.334614] pci 0000:00:1c.0: BAR 13: assigned [io 0x4000-0x4fff]
[ 0.334695] pci 0000:00:1c.1: BAR 13: assigned [io 0x5000-0x5fff]
[ 0.334781] pci 0000:01:00.0: BAR 6: assigned [mem 0xad000000-0xad07ffff pref]
[ 0.334884] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[ 0.334961] pci 0000:00:01.0: bridge window [io 0x2000-0x2fff]
[ 0.335042] pci 0000:00:01.0: bridge window [mem 0xac000000-0xadefffff]
[ 0.335127] pci 0000:00:01.0: bridge window [mem 0xae000000-0xbfffffff 64bit pref]
[ 0.335234] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
[ 0.335312] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.335398] pci 0000:00:1c.0: bridge window [mem 0x7c000000-0x7c1fffff]
[ 0.335484] pci 0000:00:1c.0: bridge window [mem 0x7c200000-0x7c3fffff 64bit pref]
[ 0.335594] pci 0000:00:1c.1: PCI bridge to [bus 03-03]
[ 0.335671] pci 0000:00:1c.1: bridge window [io 0x5000-0x5fff]
[ 0.335759] pci 0000:00:1c.1: bridge window [mem 0xf0500000-0xf05fffff]
[ 0.335844] pci 0000:00:1c.1: bridge window [mem 0x7c400000-0x7c5fffff 64bit pref]
[ 0.335955] pci 0000:00:1c.4: PCI bridge to [bus 08-08]
[ 0.336034] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
[ 0.336122] pci 0000:00:1c.4: bridge window [mem 0xf0400000-0xf04fffff]
[ 0.336207] pci 0000:00:1c.4: bridge window [mem 0x7c600000-0x7c7fffff 64bit pref]
[ 0.336318] pci 0000:00:1e.0: PCI bridge to [bus 0a-0a]
[ 0.336446] pci 0000:00:1e.0: setting latency timer to 64
[ 0.336451] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 0.336453] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 0.336456] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.336458] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
[ 0.336460] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
[ 0.336462] pci_bus 0000:00: resource 9 [mem 0x000e0000-0x000e3fff]
[ 0.336465] pci_bus 0000:00: resource 10 [mem 0x7c000000-0xfeafffff]
[ 0.336467] pci_bus 0000:01: resource 0 [io 0x2000-0x2fff]
[ 0.336469] pci_bus 0000:01: resource 1 [mem 0xac000000-0xadefffff]
[ 0.336472] pci_bus 0000:01: resource 2 [mem 0xae000000-0xbfffffff 64bit pref]
[ 0.336474] pci_bus 0000:02: resource 0 [io 0x4000-0x4fff]
[ 0.336476] pci_bus 0000:02: resource 1 [mem 0x7c000000-0x7c1fffff]
[ 0.336478] pci_bus 0000:02: resource 2 [mem 0x7c200000-0x7c3fffff 64bit pref]
[ 0.336481] pci_bus 0000:03: resource 0 [io 0x5000-0x5fff]
[ 0.336483] pci_bus 0000:03: resource 1 [mem 0xf0500000-0xf05fffff]
[ 0.336485] pci_bus 0000:03: resource 2 [mem 0x7c400000-0x7c5fffff 64bit pref]
[ 0.336488] pci_bus 0000:08: resource 0 [io 0x3000-0x3fff]
[ 0.336490] pci_bus 0000:08: resource 1 [mem 0xf0400000-0xf04fffff]
[ 0.336492] pci_bus 0000:08: resource 2 [mem 0x7c600000-0x7c7fffff 64bit pref]
[ 0.336495] pci_bus 0000:0a: resource 4 [io 0x0000-0x0cf7]
[ 0.336497] pci_bus 0000:0a: resource 5 [io 0x0d00-0xffff]
[ 0.336500] pci_bus 0000:0a: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.336502] pci_bus 0000:0a: resource 7 [mem 0x000d4000-0x000d7fff]
[ 0.336504] pci_bus 0000:0a: resource 8 [mem 0x000d8000-0x000dbfff]
[ 0.336506] pci_bus 0000:0a: resource 9 [mem 0x000e0000-0x000e3fff]
[ 0.336509] pci_bus 0000:0a: resource 10 [mem 0x7c000000-0xfeafffff]
[ 0.336576] NET: Registered protocol family 2
[ 0.336745] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[ 0.337318] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[ 0.338700] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.339107] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.339189] TCP: reno registered
[ 0.339269] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[ 0.339360] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[ 0.339563] NET: Registered protocol family 1
[ 0.339660] pci 0000:00:02.0: Boot video device
[ 0.339817] PCI: CLS 64 bytes, default 64
[ 0.339870] Unpacking initramfs...
[ 3.244045] Freeing initrd memory: 120896k freed
[ 3.271756] Simple Boot Flag at 0x36 set to 0x1
[ 3.272292] audit: initializing netlink socket (disabled)
[ 3.272382] type=2000 audit(1341659157.156:1): initialized
[ 3.286674] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 3.287241] VFS: Disk quotas dquot_6.5.2
[ 3.287337] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 3.287493] msgmni has been set to 3743
[ 3.287737] alg: No test for stdrng (krng)
[ 3.287835] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[ 3.287953] io scheduler noop registered
[ 3.288025] io scheduler deadline registered
[ 3.288113] io scheduler cfq registered (default)
[ 3.288304] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[ 3.288523] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 3.288620] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 3.288704] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 3.289204] intel_idle: MWAIT substates: 0x120
[ 3.289206] intel_idle: v0.4 model 0x25
[ 3.289208] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 3.289247] GHES: HEST is not enabled!
[ 3.289377] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 3.289939] Linux agpgart interface v0.103
[ 3.290082] agpgart-intel 0000:00:00.0: Intel HD Graphics Chipset
[ 3.290279] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
[ 3.291216] agpgart-intel 0000:00:00.0: detected 32768K stolen memory
[ 3.291441] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
[ 3.291664] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 3.296342] i8042: Detected active multiplexing controller, rev 1.1
[ 3.298322] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 3.300899] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[ 3.301004] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[ 3.301103] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[ 3.301202] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[ 3.301390] mousedev: PS/2 mouse device common for all mice
[ 3.301522] rtc_cmos 00:07: RTC can wake from S4
[ 3.301739] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0
[ 3.301850] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 3.301973] cpuidle: using governor ladder
[ 3.302086] cpuidle: using governor menu
[ 3.302281] TCP: cubic registered
[ 3.302437] NET: Registered protocol family 10
[ 3.302777] Mobile IPv6
[ 3.302846] NET: Registered protocol family 17
[ 3.302923] Registering the dns_resolver key type
[ 3.303291] PM: Hibernation image not present or could not be loaded.
[ 3.303305] registered taskstats version 1
[ 3.304017] rtc_cmos 00:07: setting system clock to 2012-07-07 11:05:58 UTC (1341659158)
[ 3.304335] Initializing network drop monitor service
[ 3.317425] Freeing unused kernel memory: 604k freed
[ 3.317609] Write protecting the kernel read-only data: 6144k
[ 3.319627] Freeing unused kernel memory: 496k freed
[ 3.322428] Freeing unused kernel memory: 720k freed
[ 3.348987] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[ 3.454092] udev[54]: starting version 164
[ 3.498037] SCSI subsystem initialized
[ 3.513101] usbcore: registered new interface driver usbfs
[ 3.513208] usbcore: registered new interface driver hub
[ 3.513391] usbcore: registered new device driver usb
[ 3.514374] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 3.514507] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[ 3.514511] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[ 3.514617] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 3.514755] ehci_hcd 0000:00:1a.0: debug port 2
[ 3.518814] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[ 3.519829] libata version 3.00 loaded.
[ 3.538765] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xf0806000
[ 3.539143] thermal LNXTHERM:00: registered as thermal_zone0
[ 3.539236] ACPI: Thermal Zone [TZ00] (59 C)
[ 3.547581] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 3.547704] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 3.547815] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.547919] usb usb1: Product: EHCI Host Controller
[ 3.547999] usb usb1: Manufacturer: Linux 3.4.4debugpsmouse ehci_hcd
[ 3.548083] usb usb1: SerialNumber: 0000:00:1a.0
[ 3.548431] hub 1-0:1.0: USB hub found
[ 3.548511] hub 1-0:1.0: 3 ports detected
[ 3.548671] ahci 0000:00:1f.2: version 3.0
[ 3.548748] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[ 3.548793] ahci: SSS flag set, parallel bus scan disabled
[ 3.548915] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x32 impl SATA mode
[ 3.549023] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems apst
[ 3.549135] ahci 0000:00:1f.2: setting latency timer to 64
[ 3.564193] scsi0 : ahci
[ 3.564464] scsi1 : ahci
[ 3.564730] scsi2 : ahci
[ 3.564987] scsi3 : ahci
[ 3.565242] scsi4 : ahci
[ 3.565469] scsi5 : ahci
[ 3.565665] ata1: DUMMY
[ 3.565747] ata2: SATA max UDMA/133 abar m2048@0xf0805000 port 0xf0805180 irq 41
[ 3.565865] ata3: DUMMY
[ 3.565943] ata4: DUMMY
[ 3.566024] ata5: SATA max UDMA/133 abar m2048@0xf0805000 port 0xf0805300 irq 41
[ 3.566144] ata6: SATA max UDMA/133 abar m2048@0xf0805000 port 0xf0805380 irq 41
[ 3.566390] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[ 3.566397] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[ 3.566517] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 3.566694] ehci_hcd 0000:00:1d.0: debug port 2
[ 3.570790] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[ 3.570817] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xf0806400
[ 3.579577] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 3.579701] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 3.579797] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.579914] usb usb2: Product: EHCI Host Controller
[ 3.580001] usb usb2: Manufacturer: Linux 3.4.4debugpsmouse ehci_hcd
[ 3.580093] usb usb2: SerialNumber: 0000:00:1d.0
[ 3.580449] hub 2-0:1.0: USB hub found
[ 3.580543] hub 2-0:1.0: 3 ports detected
[ 3.624021] atl1c 0000:08:00.0: version 1.0.1.0-NAPI
[ 3.859462] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[ 3.883462] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 3.937627] ata2.00: ATA-8: TOSHIBA MK3265GSX, GJ205E, max UDMA/100
[ 3.937722] ata2.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 3.938762] ata2.00: configured for UDMA/100
[ 3.939209] scsi 1:0:0:0: Direct-Access ATA TOSHIBA MK3265GS GJ20 PQ: 0 ANSI: 5
[ 3.991745] usb 1-1: New USB device found, idVendor=8087, idProduct=0020
[ 3.991837] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 3.992316] hub 1-1:1.0: USB hub found
[ 3.992491] hub 1-1:1.0: 6 ports detected
[ 4.103364] usb 2-1: new high-speed USB device number 2 using ehci_hcd
[ 4.235651] usb 2-1: New USB device found, idVendor=8087, idProduct=0020
[ 4.235742] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 4.236219] hub 2-1:1.0: USB hub found
[ 4.236351] hub 2-1:1.0: 8 ports detected
[ 4.259304] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 4.262370] ata5.00: ATAPI: PLDS DVD-RW DS8A8SH, KL31, max UDMA/100
[ 4.263676] ata5.00: configured for UDMA/100
[ 4.271302] Refined TSC clocksource calibration: 2127.999 MHz.
[ 4.271336] scsi 4:0:0:0: CD-ROM PLDS DVD-RW DS8A8SH KL31 PQ: 0 ANSI: 5
[ 4.271496] Switching to clocksource tsc
[ 4.307376] usb 1-1.1: new low-speed USB device number 3 using ehci_hcd
[ 4.403072] usb 1-1.1: New USB device found, idVendor=15d9, idProduct=0a4f
[ 4.403175] usb 1-1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 4.403282] usb 1-1.1: Product: USB OPTICAL MOUSE
[ 4.507287] usb 2-1.2: new low-speed USB device number 3 using ehci_hcd
[ 4.591157] ata6: SATA link down (SStatus 0 SControl 300)
[ 4.597687] sd 1:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
[ 4.597827] sd 1:0:0:0: [sda] Write Protect is off
[ 4.597901] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 4.597917] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 4.602749] usb 2-1.2: New USB device found, idVendor=0079, idProduct=0011
[ 4.602845] usb 2-1.2: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[ 4.602957] usb 2-1.2: Product: USB Gamepad
[ 4.611154] input: USB OPTICAL MOUSE as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/input/input1
[ 4.611543] generic-usb 0003:15D9:0A4F.0001: input,hidraw0: USB HID v1.11 Mouse [ USB OPTICAL MOUSE] on usb-0000:00:1a.0-1.1/input0
[ 4.611785] usbcore: registered new interface driver usbhid
[ 4.611870] usbhid: USB HID core driver
[ 4.675207] usb 2-1.4: new high-speed USB device number 4 using ehci_hcd
[ 4.726642] sda: sda1 sda2 sda3 < sda5 sda6 sda7 > sda4
[ 4.728414] sd 1:0:0:0: [sda] Attached SCSI disk
[ 4.736609] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 4.736727] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 4.737040] sr 4:0:0:0: Attached scsi CD-ROM sr0
[ 4.740245] sd 1:0:0:0: Attached scsi generic sg0 type 0
[ 4.740360] sr 4:0:0:0: Attached scsi generic sg1 type 5
[ 4.782046] usb 2-1.4: New USB device found, idVendor=5986, idProduct=0294
[ 4.782140] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 4.782246] usb 2-1.4: Product: Lenovo EasyCamera
[ 4.782320] usb 2-1.4: Manufacturer: Bison Corp.
[ 5.543938] nbd: registered device at major 43
[ 5.559928] device-mapper: uevent: version 1.0.3
[ 5.560252] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[ 5.711851] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
[ 17.536963] udev[369]: starting version 164
[ 17.843837] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
[ 17.844431] ACPI: Lid Switch [LID]
[ 17.844563] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3
[ 17.844673] ACPI: Power Button [PWRB]
[ 17.844833] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input4
[ 17.844936] ACPI: Sleep Button [SLPB]
[ 17.845145] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
[ 17.845556] ACPI: Power Button [PWRF]
[ 18.079584] intel ips 0000:00:1f.6: No CPUID match found.
[ 18.079665] intel ips 0000:00:1f.6: IPS not supported on this CPU
[ 18.126195] ACPI: Requesting acpi_cpufreq
[ 18.163997] microcode: CPU0 sig=0x20655, pf=0x10, revision=0x2
[ 18.186631] microcode: CPU1 sig=0x20655, pf=0x10, revision=0x2
[ 18.192903] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 18.276187] input: USB Gamepad as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/input/input6
[ 18.276396] dragonrise 0003:0079:0011.0002: input,hidraw1: USB HID v1.10 Joystick [USB Gamepad ] on usb-0000:00:1d.0-1.2/input0
[ 18.448477] input: PC Speaker as /devices/platform/pcspkr/input/input7
[ 18.535547] ACPI: AC Adapter [ACAD] (on-line)
[ 18.902340] cfg80211: Calling CRDA to update world regulatory domain
[ 19.495754] psmouse serio4: alps: E6 report: 00 00 64
[ 19.521210] psmouse serio4: alps: E7 report: 73 03 50
[ 19.619902] ACPI: Battery Slot [BAT1] (battery present)
[ 19.622671] wmi: Mapper loaded
[ 19.765567] input: Ideapad extra buttons as /devices/platform/ideapad/input/input8
[ 19.934146] Linux media interface: v0.10
[ 19.935069] psmouse serio4: alps: E6 report: 00 00 64
[ 19.960457] psmouse serio4: alps: E7 report: 73 03 50
[ 20.000732] psmouse serio4: alps: Status: 10 00 0a
[ 20.026497] input: PS/2 Mouse as /devices/platform/i8042/serio4/input/input9
[ 20.042797] input: AlpsPS/2 ALPS GlidePoint as /devices/platform/i8042/serio4/input/input10
[ 20.059219] ACPI Warning: 0x0000000000001840-0x000000000000185f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20120320/utaddress-251)
[ 20.059430] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 20.128642] Linux video capture interface: v2.00
[ 20.593510] [drm] Initialized drm 1.1.0 20060810
[ 20.719237] uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (5986:0294)
[ 20.721643] input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.0/input/input11
[ 20.721840] usbcore: registered new interface driver uvcvideo
[ 20.721916] USB Video Class driver (1.1.1)
[ 21.159986] i915 0000:00:02.0: setting latency timer to 64
[ 21.214361] i915 0000:00:02.0: irq 42 for MSI/MSI-X
[ 21.214373] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[ 21.214459] [drm] Driver supports precise vblank timestamp query.
[ 21.214618] [drm:intel_dsm_platform_mux_info] *ERROR* MUX INFO call failed
[ 21.214726] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
[ 21.214838] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:01:00.0
[ 21.627715] fbcon: inteldrmfb (fb0) is primary device
[ 21.752240] ath: EEPROM regdomain: 0x65
[ 21.752244] ath: EEPROM indicates we should expect a direct regpair map
[ 21.752250] ath: Country alpha2 being used: 00
[ 21.752253] ath: Regpair used: 0x65
[ 21.778755] ieee80211 phy0: Selected rate control algorithm 'ath9k_rate_control'
[ 21.779204] Registered led device: ath9k-phy0
[ 21.779216] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xffffc90010920000, irq=17
[ 21.875313] Console: switching to colour frame buffer device 170x48
[ 21.882817] fb0: inteldrmfb frame buffer device
[ 21.882820] drm: registered panic notifier
[ 21.883109] ACPI Exception: AE_NOT_FOUND, Evaluating _DOD (20120320/video-1147)
[ 21.883164] video: probe of LNXVIDEO:00 failed with error 5
[ 21.885789] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input12
[ 21.885970] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 21.886100] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[ 21.886247] snd_hda_intel 0000:00:1b.0: irq 43 for MSI/MSI-X
[ 21.960568] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input13
[ 21.964914] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[ 21.965033] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[ 22.123821] EXT4-fs (sda7): re-mounted. Opts: (null)
[ 22.166595] EXT4-fs (sda7): re-mounted. Opts: errors=remount-ro
[ 22.641608] loop: module loaded
[ 23.759344] fuse init (API version 7.18)
[ 24.781223] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 25.360823] input: ACPI Virtual Keyboard Device as /devices/virtual/input/input16
[ 26.317349] Clocksource tsc unstable (delta = -555400892 ns)
[ 27.338689] atl1c 0000:08:00.0: irq 44 for MSI/MSI-X
[ 27.338709] Switching to clocksource hpet
[ 28.700870] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 30.397841] sshd (1952): /proc/1952/oom_adj is deprecated, please use /proc/1952/oom_score_adj instead.
[ 53.614877] wlan0: authenticate with ec:17:2f:2f:e9:b6
[ 53.628120] wlan0: send auth to ec:17:2f:2f:e9:b6 (try 1/3)
[ 53.630538] wlan0: authenticated
[ 53.638363] wlan0: associate with ec:17:2f:2f:e9:b6 (try 1/3)
[ 53.644330] wlan0: RX AssocResp from ec:17:2f:2f:e9:b6 (capab=0x431 status=0 aid=1)
[ 53.644339] wlan0: associated
[ 53.651270] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[-- Attachment #7: V2-00-inputdevices.txt --]
[-- Type: text/plain, Size: 4257 bytes --]
I: Bus=0011 Vendor=0001 Product=0001 Version=ab41
N: Name="AT Translated Set 2 keyboard"
P: Phys=isa0060/serio0/input0
S: Sysfs=/devices/platform/i8042/serio0/input/input0
U: Uniq=
H: Handlers=sysrq kbd event0
B: PROP=0
B: EV=120013
B: KEY=402000000 3803078f800d001 feffffdfffefffff fffffffffffffffe
B: MSC=10
B: LED=7
I: Bus=0003 Vendor=15d9 Product=0a4f Version=0111
N: Name=" USB OPTICAL MOUSE"
P: Phys=usb-0000:00:1a.0-1.1/input0
S: Sysfs=/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/input/input1
U: Uniq=
H: Handlers=mouse0 event1
B: PROP=0
B: EV=17
B: KEY=70000 0 0 0 0
B: REL=103
B: MSC=10
I: Bus=0019 Vendor=0000 Product=0005 Version=0000
N: Name="Lid Switch"
P: Phys=PNP0C0D/button/input0
S: Sysfs=/devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
U: Uniq=
H: Handlers=event2
B: PROP=0
B: EV=21
B: SW=1
I: Bus=0019 Vendor=0000 Product=0001 Version=0000
N: Name="Power Button"
P: Phys=PNP0C0C/button/input0
S: Sysfs=/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3
U: Uniq=
H: Handlers=kbd event3
B: PROP=0
B: EV=3
B: KEY=10000000000000 0
I: Bus=0019 Vendor=0000 Product=0003 Version=0000
N: Name="Sleep Button"
P: Phys=PNP0C0E/button/input0
S: Sysfs=/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input4
U: Uniq=
H: Handlers=kbd event4
B: PROP=0
B: EV=3
B: KEY=4000 0 0
I: Bus=0019 Vendor=0000 Product=0001 Version=0000
N: Name="Power Button"
P: Phys=LNXPWRBN/button/input0
S: Sysfs=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
U: Uniq=
H: Handlers=kbd event5
B: PROP=0
B: EV=3
B: KEY=10000000000000 0
I: Bus=0003 Vendor=0079 Product=0011 Version=0110
N: Name="USB Gamepad "
P: Phys=usb-0000:00:1d.0-1.2/input0
S: Sysfs=/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/input/input6
U: Uniq=
H: Handlers=event6 js0
B: PROP=0
B: EV=1b
B: KEY=3ff00000000 0 0 0 0
B: ABS=3
B: MSC=10
I: Bus=0010 Vendor=001f Product=0001 Version=0100
N: Name="PC Speaker"
P: Phys=isa0061/input0
S: Sysfs=/devices/platform/pcspkr/input/input7
U: Uniq=
H: Handlers=kbd event7
B: PROP=0
B: EV=40001
B: SND=6
I: Bus=0019 Vendor=0000 Product=0000 Version=0000
N: Name="Ideapad extra buttons"
P: Phys=ideapad/input0
S: Sysfs=/devices/platform/ideapad/input/input8
U: Uniq=
H: Handlers=kbd rfkill event8
B: PROP=0
B: EV=13
B: KEY=1400800000000 300000 0 0
B: MSC=10
I: Bus=0011 Vendor=0002 Product=0008 Version=0000
N: Name="PS/2 Mouse"
P: Phys=isa0060/serio4/input1
S: Sysfs=/devices/platform/i8042/serio4/input/input9
U: Uniq=
H: Handlers=mouse1 event9
B: PROP=0
B: EV=7
B: KEY=70000 0 0 0 0
B: REL=3
I: Bus=0011 Vendor=0002 Product=0008 Version=7335
N: Name="AlpsPS/2 ALPS GlidePoint"
P: Phys=isa0060/serio4/input0
S: Sysfs=/devices/platform/i8042/serio4/input/input10
U: Uniq=
H: Handlers=mouse2 event10
B: PROP=0
B: EV=b
B: KEY=420 70000 0 0 0 0
B: ABS=1000003
I: Bus=0003 Vendor=5986 Product=0294 Version=1403
N: Name="Lenovo EasyCamera"
P: Phys=usb-0000:00:1d.0-1.4/button
S: Sysfs=/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.0/input/input11
U: Uniq=
H: Handlers=kbd event11
B: PROP=0
B: EV=3
B: KEY=100000 0 0 0
I: Bus=0019 Vendor=0000 Product=0006 Version=0000
N: Name="Video Bus"
P: Phys=LNXVIDEO/video/input0
S: Sysfs=/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input12
U: Uniq=
H: Handlers=kbd event12
B: PROP=0
B: EV=3
B: KEY=3e000b00000000 0 0 0
I: Bus=0001 Vendor=10ec Product=0272 Version=0001
N: Name="HDA Digital PCBeep"
P: Phys=card0/codec#0/beep0
S: Sysfs=/devices/pci0000:00/0000:00:1b.0/input/input13
U: Uniq=
H: Handlers=kbd event13
B: PROP=0
B: EV=40001
B: SND=6
I: Bus=0000 Vendor=0000 Product=0000 Version=0000
N: Name="HDA Intel Mic"
P: Phys=ALSA
S: Sysfs=/devices/pci0000:00/0000:00:1b.0/sound/card0/input14
U: Uniq=
H: Handlers=event14
B: PROP=0
B: EV=21
B: SW=10
I: Bus=0000 Vendor=0000 Product=0000 Version=0000
N: Name="HDA Intel Headphone"
P: Phys=ALSA
S: Sysfs=/devices/pci0000:00/0000:00:1b.0/sound/card0/input15
U: Uniq=
H: Handlers=event15
B: PROP=0
B: EV=21
B: SW=4
I: Bus=0003 Vendor=0000 Product=0000 Version=0004
N: Name="ACPI Virtual Keyboard Device"
P: Phys=
S: Sysfs=/devices/virtual/input/input16
U: Uniq=
H: Handlers=sysrq kbd rfkill event16
B: PROP=0
B: EV=3
B: KEY=ffffffffffffffff ffffffffffffffff ffffffffffffffff fffffffffffffffe
[-- Attachment #8: V2-00-xinputlist.txt --]
[-- Type: text/plain, Size: 4699 bytes --]
â¡ Virtual core pointer id=2 [master pointer (3)]
Reporting 3 classes:
Class originated from: 14
Buttons supported: 12
Button labels: Button Left Button Middle Button Right Button Wheel Up Button Wheel Down Button Horiz Wheel Left Button Horiz Wheel Right None None None None None
Button state:
Class originated from: 14
Detail for Valuator 0:
Label: Rel X
Range: -1.000000 - -1.000000
Resolution: 1 units/m
Mode: relative
Class originated from: 14
Detail for Valuator 1:
Label: Rel Y
Range: -1.000000 - -1.000000
Resolution: 1 units/m
Mode: relative
â â³ Virtual core XTEST pointer id=4 [slave pointer (2)]
Reporting 3 classes:
Class originated from: 4
Buttons supported: 10
Button labels: Button Left Button Middle Button Right Button Wheel Up Button Wheel Down Button Horiz Wheel Left Button Horiz Wheel Right None None None
Button state:
Class originated from: 4
Detail for Valuator 0:
Label: Rel X
Range: -1.000000 - -1.000000
Resolution: 0 units/m
Mode: relative
Class originated from: 4
Detail for Valuator 1:
Label: Rel Y
Range: -1.000000 - -1.000000
Resolution: 0 units/m
Mode: relative
â â³ USB OPTICAL MOUSE id=10 [slave pointer (2)]
Reporting 3 classes:
Class originated from: 10
Buttons supported: 7
Button labels: Button Left Button Middle Button Right Button Wheel Up Button Wheel Down Button Horiz Wheel Left Button Horiz Wheel Right
Button state:
Class originated from: 10
Detail for Valuator 0:
Label: Rel X
Range: -1.000000 - -1.000000
Resolution: 1 units/m
Mode: relative
Class originated from: 10
Detail for Valuator 1:
Label: Rel Y
Range: -1.000000 - -1.000000
Resolution: 1 units/m
Mode: relative
â â³ AlpsPS/2 ALPS GlidePoint id=13 [slave pointer (2)]
Reporting 3 classes:
Class originated from: 13
Buttons supported: 12
Button labels: Button Left Button Middle Button Right Button Wheel Up Button Wheel Down Button Horiz Wheel Left Button Horiz Wheel Right None None None None None
Button state:
Class originated from: 13
Detail for Valuator 0:
Label: Rel X
Range: 0.000000 - 1023.000000
Resolution: 0 units/m
Mode: relative
Class originated from: 13
Detail for Valuator 1:
Label: Rel Y
Range: 0.000000 - 767.000000
Resolution: 0 units/m
Mode: relative
â â³ PS/2 Mouse id=14 [slave pointer (2)]
Reporting 3 classes:
Class originated from: 14
Buttons supported: 5
Button labels: Button Left Button Middle Button Right Button Wheel Up Button Wheel Down
Button state:
Class originated from: 14
Detail for Valuator 0:
Label: Rel X
Range: -1.000000 - -1.000000
Resolution: 1 units/m
Mode: relative
Class originated from: 14
Detail for Valuator 1:
Label: Rel Y
Range: -1.000000 - -1.000000
Resolution: 1 units/m
Mode: relative
⣠Virtual core keyboard id=3 [master keyboard (2)]
Reporting 1 classes:
Class originated from: 12
Keycodes supported: 248
â³ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 5
Keycodes supported: 248
â³ Power Button id=6 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 6
Keycodes supported: 248
â³ Video Bus id=7 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 7
Keycodes supported: 248
â³ Power Button id=8 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 8
Keycodes supported: 248
â³ Sleep Button id=9 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 9
Keycodes supported: 248
â³ Lenovo EasyCamera id=11 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 11
Keycodes supported: 248
â³ AT Translated Set 2 keyboard id=12 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 12
Keycodes supported: 248
â³ Ideapad extra buttons id=15 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 15
Keycodes supported: 248
â³ ACPI Virtual Keyboard Device id=16 [slave keyboard (3)]
Reporting 1 classes:
Class originated from: 16
Keycodes supported: 248
[-- Attachment #9: V2-00-Xorg.0.log --]
[-- Type: application/octet-stream, Size: 33617 bytes --]
[ 29.855]
X.Org X Server 1.10.4
Release Date: 2011-08-19
[ 29.856] X Protocol Version 11, Revision 0
[ 29.856] Build Operating System: Linux 3.0.0-1-amd64 x86_64 Debian
[ 29.856] Current Operating System: Linux ldebian 3.4.4debugpsmouse #1 SMP Fri Jul 6 07:44:49 CST 2012 x86_64
[ 29.856] Kernel command line: root=/dev/sda7 acpi_backlight=vendor ro
[ 29.856] Build Date: 28 August 2011 09:39:43PM
[ 29.856] xorg-server 2:1.10.4-1~bpo60+1 (Cyril Brulebois <kibi@debian.org>)
[ 29.856] Current version of pixman: 0.24.0
[ 29.856] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 29.856] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 29.856] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jul 7 11:06:25 2012
[ 29.897] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 29.897] (==) No Layout section. Using the first Screen section.
[ 29.897] (==) No screen section available. Using defaults.
[ 29.901] (**) |-->Screen "Default Screen Section" (0)
[ 29.901] (**) | |-->Monitor "<default monitor>"
[ 29.901] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[ 29.901] (==) Automatically adding devices
[ 29.901] (==) Automatically enabling devices
[ 29.901] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[ 29.901] Entry deleted from font path.
[ 29.901] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
[ 29.901] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 29.901] (II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 29.901] (II) Loader magic: 0x7d3ae0
[ 29.901] (II) Module ABI versions:
[ 29.901] X.Org ANSI C Emulation: 0.4
[ 29.901] X.Org Video Driver: 10.0
[ 29.901] X.Org XInput driver : 12.2
[ 29.901] X.Org Server Extension : 5.0
[ 29.902] (--) PCI:*(0:0:2:0) 8086:0046:17aa:3920 rev 24, Mem @ 0xf0000000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8
[ 29.902] (--) PCI: (0:1:0:0) 10de:0a70:17aa:3968 rev 162, Mem @ 0xac000000/16777216, 0xb0000000/268435456, 0xae000000/33554432, I/O @ 0x00002000/128, BIOS @ 0x????????/524288
[ 29.902] (II) Open ACPI successful (/var/run/acpid.socket)
[ 29.902] (II) LoadModule: "extmod"
[ 29.960] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[ 29.960] (II) Module extmod: vendor="X.Org Foundation"
[ 29.960] compiled for 1.10.4, module version = 1.0.0
[ 29.960] Module class: X.Org Server Extension
[ 29.960] ABI class: X.Org Server Extension, version 5.0
[ 29.960] (II) Loading extension SELinux
[ 29.960] (II) Loading extension MIT-SCREEN-SAVER
[ 29.960] (II) Loading extension XFree86-VidModeExtension
[ 29.960] (II) Loading extension XFree86-DGA
[ 29.961] (II) Loading extension DPMS
[ 29.961] (II) Loading extension XVideo
[ 29.961] (II) Loading extension XVideo-MotionCompensation
[ 29.961] (II) Loading extension X-Resource
[ 29.961] (II) LoadModule: "dbe"
[ 29.961] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[ 29.961] (II) Module dbe: vendor="X.Org Foundation"
[ 29.961] compiled for 1.10.4, module version = 1.0.0
[ 29.961] Module class: X.Org Server Extension
[ 29.961] ABI class: X.Org Server Extension, version 5.0
[ 29.961] (II) Loading extension DOUBLE-BUFFER
[ 29.961] (II) LoadModule: "glx"
[ 29.961] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 29.961] (II) Module glx: vendor="X.Org Foundation"
[ 29.961] compiled for 1.10.4, module version = 1.0.0
[ 29.961] ABI class: X.Org Server Extension, version 5.0
[ 29.961] (==) AIGLX enabled
[ 29.961] (II) Loading extension GLX
[ 29.961] (II) LoadModule: "record"
[ 29.961] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[ 29.961] (II) Module record: vendor="X.Org Foundation"
[ 29.961] compiled for 1.10.4, module version = 1.13.0
[ 29.961] Module class: X.Org Server Extension
[ 29.961] ABI class: X.Org Server Extension, version 5.0
[ 29.961] (II) Loading extension RECORD
[ 29.961] (II) LoadModule: "dri"
[ 29.961] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[ 29.962] (II) Module dri: vendor="X.Org Foundation"
[ 29.962] compiled for 1.10.4, module version = 1.0.0
[ 29.962] ABI class: X.Org Server Extension, version 5.0
[ 29.962] (II) Loading extension XFree86-DRI
[ 29.962] (II) LoadModule: "dri2"
[ 29.962] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[ 29.962] (II) Module dri2: vendor="X.Org Foundation"
[ 29.962] compiled for 1.10.4, module version = 1.2.0
[ 29.962] ABI class: X.Org Server Extension, version 5.0
[ 29.962] (II) Loading extension DRI2
[ 29.962] (==) Matched intel as autoconfigured driver 0
[ 29.962] (==) Matched vesa as autoconfigured driver 1
[ 29.962] (==) Matched fbdev as autoconfigured driver 2
[ 29.962] (==) Assigned the driver to the xf86ConfigLayout
[ 29.962] (II) LoadModule: "intel"
[ 29.962] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[ 29.962] (II) Module intel: vendor="X.Org Foundation"
[ 29.962] compiled for 1.10.4, module version = 2.15.0
[ 29.962] Module class: X.Org Video Driver
[ 29.962] ABI class: X.Org Video Driver, version 10.0
[ 29.962] (II) LoadModule: "vesa"
[ 29.962] (WW) Warning, couldn't open module vesa
[ 29.962] (II) UnloadModule: "vesa"
[ 29.962] (II) Unloading vesa
[ 29.963] (EE) Failed to load module "vesa" (module does not exist, 0)
[ 29.963] (II) LoadModule: "fbdev"
[ 29.963] (WW) Warning, couldn't open module fbdev
[ 29.963] (II) UnloadModule: "fbdev"
[ 29.963] (II) Unloading fbdev
[ 29.963] (EE) Failed to load module "fbdev" (module does not exist, 0)
[ 29.963] (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, Sandybridge, Sandybridge, Sandybridge, Sandybridge,
Sandybridge, Sandybridge
[ 29.963] (++) using VT number 7
[ 29.969] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[ 29.969] drmOpenDevice: node name is /dev/dri/card0
[ 29.969] drmOpenDevice: open result is 9, (OK)
[ 29.969] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
[ 29.969] drmOpenDevice: node name is /dev/dri/card0
[ 29.969] drmOpenDevice: open result is 9, (OK)
[ 29.969] drmOpenByBusid: drmOpenMinor returns 9
[ 29.969] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
[ 29.969] (II) intel(0): Creating default Display subsection in Screen section
"Default Screen Section" for depth/fbbpp 24/32
[ 29.969] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[ 29.969] (==) intel(0): RGB weight 888
[ 29.969] (==) intel(0): Default visual is TrueColor
[ 29.969] (II) intel(0): Integrated Graphics Chipset: Intel(R) Arrandale
[ 29.969] (--) intel(0): Chipset: "Arrandale"
[ 29.969] (**) intel(0): Relaxed fencing enabled
[ 29.969] (**) intel(0): Framebuffer tiled
[ 29.969] (**) intel(0): Pixmaps tiled
[ 29.969] (**) intel(0): 3D buffers tiled
[ 29.969] (**) intel(0): SwapBuffers wait enabled
[ 29.969] (==) intel(0): video overlay key set to 0x101fe
[ 29.969] (II) intel(0): Output LVDS1 has no monitor section
[ 29.969] (II) intel(0): found backlight control interface /sys/class/backlight/intel_backlight
[ 29.969] (II) intel(0): Output VGA1 has no monitor section
[ 29.969] (II) intel(0): EDID for output LVDS1
[ 29.969] (II) intel(0): Manufacturer: AUO Model: 402c Serial#: 0
[ 29.970] (II) intel(0): Year: 2010 Week: 0
[ 29.970] (II) intel(0): EDID Version: 1.3
[ 29.970] (II) intel(0): Digital Display Input
[ 29.970] (II) intel(0): Max Image Size [cm]: horiz.: 29 vert.: 16
[ 29.970] (II) intel(0): Gamma: 2.20
[ 29.970] (II) intel(0): No DPMS capabilities specified
[ 29.970] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[ 29.970] (II) intel(0): First detailed timing is preferred mode
[ 29.970] (II) intel(0): redX: 0.590 redY: 0.345 greenX: 0.325 greenY: 0.540
[ 29.970] (II) intel(0): blueX: 0.150 blueY: 0.145 whiteX: 0.313 whiteY: 0.329
[ 29.970] (II) intel(0): Manufacturer's mask: 0
[ 29.970] (II) intel(0): Supported detailed timing:
[ 29.970] (II) intel(0): clock: 69.3 MHz Image Size: 293 x 164 mm
[ 29.970] (II) intel(0): h_active: 1366 h_sync: 1414 h_sync_end 1446 h_blank_end 1456 h_border: 0
[ 29.970] (II) intel(0): v_active: 768 v_sync: 771 v_sync_end 777 v_blanking: 793 v_border: 0
[ 29.970] (II) intel(0): Unknown vendor-specific block f
[ 29.970] (II) intel(0): AUO
[ 29.970] (II) intel(0): B133XW04 V0
[ 29.970] (II) intel(0): EDID (in hex):
[ 29.970] (II) intel(0): 00ffffffffffff0006af2c4000000000
[ 29.970] (II) intel(0): 00140103801d10780a15859758538a26
[ 29.970] (II) intel(0): 25505400000001010101010101010101
[ 29.970] (II) intel(0): 010101010101121b565a500019303020
[ 29.970] (II) intel(0): 360025a4100000180000000f00000000
[ 29.970] (II) intel(0): 00000000000000000020000000fe0041
[ 29.970] (II) intel(0): 554f0a202020202020202020000000fe
[ 29.970] (II) intel(0): 004231333358573034205630200a0056
[ 29.970] (II) intel(0): EDID vendor "AUO", prod id 16428
[ 29.970] (II) intel(0): Printing DDC gathered Modelines:
[ 29.970] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
[ 29.970] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "576x432" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "680x384" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "680x384" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "720x450" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "800x512" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "840x525" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "840x525" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "960x540" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "960x600" (doublescan mode not supported)
[ 29.970] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
[ 29.970] (II) intel(0): Printing probed modes for output LVDS1
[ 29.970] (II) intel(0): Modeline "1366x768"x60.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
[ 29.970] (II) intel(0): Modeline "1360x768"x59.8 84.75 1360 1432 1568 1776 768 771 781 798 -hsync +vsync (47.7 kHz)
[ 29.970] (II) intel(0): Modeline "1360x768"x60.0 72.00 1360 1408 1440 1520 768 771 781 790 +hsync -vsync (47.4 kHz)
[ 29.970] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
[ 29.970] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
[ 29.970] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
[ 29.970] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
[ 29.970] (II) intel(0): EDID for output VGA1
[ 29.970] (II) intel(0): Output LVDS1 connected
[ 29.970] (II) intel(0): Output VGA1 disconnected
[ 29.970] (II) intel(0): Using exact sizes for initial modes
[ 29.970] (II) intel(0): Output LVDS1 using initial mode 1366x768
[ 29.970] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[ 29.970] (II) intel(0): Kernel page flipping support detected, enabling
[ 29.970] (**) intel(0): Display dimensions: (290, 160) mm
[ 29.970] (**) intel(0): DPI set to (119, 121)
[ 29.970] (II) Loading sub module "fb"
[ 29.970] (II) LoadModule: "fb"
[ 29.971] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 29.971] (II) Module fb: vendor="X.Org Foundation"
[ 29.971] compiled for 1.10.4, module version = 1.0.0
[ 29.971] ABI class: X.Org ANSI C Emulation, version 0.4
[ 29.971] (II) Loading sub module "dri2"
[ 29.971] (II) LoadModule: "dri2"
[ 29.971] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[ 29.971] (II) Module dri2: vendor="X.Org Foundation"
[ 29.971] compiled for 1.10.4, module version = 1.2.0
[ 29.971] ABI class: X.Org Server Extension, version 5.0
[ 29.971] (==) Depth 24 pixmap format is 32 bpp
[ 29.971] (II) intel(0): [DRI2] Setup complete
[ 29.971] (II) intel(0): [DRI2] DRI driver: i965
[ 29.971] (II) intel(0): Allocated new frame buffer 1408x768 stride 5632, tiled
[ 29.978] (II) UXA(0): Driver registered support for the following operations:
[ 29.978] (II) solid
[ 29.978] (II) copy
[ 29.978] (II) composite (RENDER acceleration)
[ 29.979] (II) put_image
[ 29.979] (II) get_image
[ 29.979] (==) intel(0): Backing store disabled
[ 29.979] (==) intel(0): Silken mouse enabled
[ 29.979] (II) intel(0): Initializing HW Cursor
[ 30.040] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[ 30.040] (==) intel(0): DPMS enabled
[ 30.040] (==) intel(0): Intel XvMC decoder enabled
[ 30.040] (II) intel(0): Set up textured video
[ 30.040] (II) intel(0): [XvMC] xvmc_vld driver initialized.
[ 30.040] (II) intel(0): direct rendering: DRI2 Enabled
[ 30.040] (==) intel(0): hotplug detection: "enabled"
[ 30.040] (--) RandR disabled
[ 30.040] (II) Initializing built-in extension Generic Event Extension
[ 30.040] (II) Initializing built-in extension SHAPE
[ 30.041] (II) Initializing built-in extension MIT-SHM
[ 30.041] (II) Initializing built-in extension XInputExtension
[ 30.041] (II) Initializing built-in extension XTEST
[ 30.041] (II) Initializing built-in extension BIG-REQUESTS
[ 30.041] (II) Initializing built-in extension SYNC
[ 30.041] (II) Initializing built-in extension XKEYBOARD
[ 30.041] (II) Initializing built-in extension XC-MISC
[ 30.041] (II) Initializing built-in extension SECURITY
[ 30.041] (II) Initializing built-in extension XINERAMA
[ 30.041] (II) Initializing built-in extension XFIXES
[ 30.041] (II) Initializing built-in extension RENDER
[ 30.041] (II) Initializing built-in extension RANDR
[ 30.041] (II) Initializing built-in extension COMPOSITE
[ 30.041] (II) Initializing built-in extension DAMAGE
[ 30.041] (II) SELinux: Disabled on system
[ 30.050] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[ 30.050] (II) AIGLX: enabled GLX_INTEL_swap_event
[ 30.050] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[ 30.050] (II) AIGLX: enabled GLX_SGI_make_current_read
[ 30.050] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[ 30.050] (II) AIGLX: Loaded and initialized /usr/lib/dri/i965_dri.so
[ 30.050] (II) GLX: Initialized DRI2 GL provider for screen 0
[ 30.051] (II) intel(0): Setting screen physical size to 361 x 203
[ 30.144] (II) config/udev: Adding input device Power Button (/dev/input/event5)
[ 30.144] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 30.144] (II) LoadModule: "evdev"
[ 30.144] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.144] (II) Module evdev: vendor="X.Org Foundation"
[ 30.144] compiled for 1.10.3, module version = 2.6.0
[ 30.144] Module class: X.Org XInput Driver
[ 30.144] ABI class: X.Org XInput driver, version 12.2
[ 30.144] (II) Using input driver 'evdev' for 'Power Button'
[ 30.144] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.144] (**) Power Button: always reports core events
[ 30.144] (**) Power Button: Device: "/dev/input/event5"
[ 30.144] (--) Power Button: Found keys
[ 30.144] (II) Power Button: Configuring as keyboard
[ 30.144] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input5/event5"
[ 30.144] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[ 30.144] (**) Option "xkb_rules" "evdev"
[ 30.144] (**) Option "xkb_model" "pc105"
[ 30.144] (**) Option "xkb_layout" "us"
[ 30.146] (II) config/udev: Adding input device Video Bus (/dev/input/event12)
[ 30.146] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[ 30.146] (II) Using input driver 'evdev' for 'Video Bus'
[ 30.146] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.146] (**) Video Bus: always reports core events
[ 30.146] (**) Video Bus: Device: "/dev/input/event12"
[ 30.146] (--) Video Bus: Found keys
[ 30.146] (II) Video Bus: Configuring as keyboard
[ 30.146] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input12/event12"
[ 30.146] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
[ 30.146] (**) Option "xkb_rules" "evdev"
[ 30.146] (**) Option "xkb_model" "pc105"
[ 30.146] (**) Option "xkb_layout" "us"
[ 30.154] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[ 30.154] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 30.154] (II) Using input driver 'evdev' for 'Power Button'
[ 30.154] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.154] (**) Power Button: always reports core events
[ 30.154] (**) Power Button: Device: "/dev/input/event3"
[ 30.154] (--) Power Button: Found keys
[ 30.154] (II) Power Button: Configuring as keyboard
[ 30.154] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3/event3"
[ 30.154] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[ 30.154] (**) Option "xkb_rules" "evdev"
[ 30.154] (**) Option "xkb_model" "pc105"
[ 30.154] (**) Option "xkb_layout" "us"
[ 30.154] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
[ 30.155] (II) No input driver/identifier specified (ignoring)
[ 30.155] (II) config/udev: Adding input device Sleep Button (/dev/input/event4)
[ 30.155] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[ 30.155] (II) Using input driver 'evdev' for 'Sleep Button'
[ 30.155] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.155] (**) Sleep Button: always reports core events
[ 30.155] (**) Sleep Button: Device: "/dev/input/event4"
[ 30.155] (--) Sleep Button: Found keys
[ 30.155] (II) Sleep Button: Configuring as keyboard
[ 30.155] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input4/event4"
[ 30.155] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
[ 30.155] (**) Option "xkb_rules" "evdev"
[ 30.155] (**) Option "xkb_model" "pc105"
[ 30.155] (**) Option "xkb_layout" "us"
[ 30.157] (II) config/udev: Adding input device USB OPTICAL MOUSE (/dev/input/event1)
[ 30.157] (**) USB OPTICAL MOUSE: Applying InputClass "evdev pointer catchall"
[ 30.157] (II) Using input driver 'evdev' for ' USB OPTICAL MOUSE'
[ 30.157] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.157] (**) USB OPTICAL MOUSE: always reports core events
[ 30.157] (**) USB OPTICAL MOUSE: Device: "/dev/input/event1"
[ 30.157] (--) USB OPTICAL MOUSE: Found 3 mouse buttons
[ 30.157] (--) USB OPTICAL MOUSE: Found scroll wheel(s)
[ 30.157] (--) USB OPTICAL MOUSE: Found relative axes
[ 30.157] (--) USB OPTICAL MOUSE: Found x and y relative axes
[ 30.157] (II) USB OPTICAL MOUSE: Configuring as mouse
[ 30.157] (II) USB OPTICAL MOUSE: Adding scrollwheel support
[ 30.157] (**) USB OPTICAL MOUSE: YAxisMapping: buttons 4 and 5
[ 30.157] (**) USB OPTICAL MOUSE: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 30.157] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/input/input1/event1"
[ 30.157] (II) XINPUT: Adding extended input device " USB OPTICAL MOUSE" (type: MOUSE)
[ 30.157] (II) USB OPTICAL MOUSE: initialized for relative axes.
[ 30.157] (**) USB OPTICAL MOUSE: (accel) keeping acceleration scheme 1
[ 30.157] (**) USB OPTICAL MOUSE: (accel) acceleration profile 0
[ 30.157] (**) USB OPTICAL MOUSE: (accel) acceleration factor: 2.000
[ 30.157] (**) USB OPTICAL MOUSE: (accel) acceleration threshold: 4
[ 30.157] (II) config/udev: Adding input device USB OPTICAL MOUSE (/dev/input/mouse0)
[ 30.157] (II) No input driver/identifier specified (ignoring)
[ 30.158] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event13)
[ 30.158] (II) No input driver/identifier specified (ignoring)
[ 30.159] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event14)
[ 30.159] (II) No input driver/identifier specified (ignoring)
[ 30.159] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event15)
[ 30.159] (II) No input driver/identifier specified (ignoring)
[ 30.161] (II) config/udev: Adding input device USB Gamepad (/dev/input/event6)
[ 30.161] (II) No input driver/identifier specified (ignoring)
[ 30.161] (II) config/udev: Adding input device USB Gamepad (/dev/input/js0)
[ 30.161] (II) No input driver/identifier specified (ignoring)
[ 30.161] (II) config/udev: Adding input device Lenovo EasyCamera (/dev/input/event11)
[ 30.161] (**) Lenovo EasyCamera: Applying InputClass "evdev keyboard catchall"
[ 30.161] (II) Using input driver 'evdev' for 'Lenovo EasyCamera'
[ 30.161] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.161] (**) Lenovo EasyCamera: always reports core events
[ 30.161] (**) Lenovo EasyCamera: Device: "/dev/input/event11"
[ 30.161] (--) Lenovo EasyCamera: Found keys
[ 30.161] (II) Lenovo EasyCamera: Configuring as keyboard
[ 30.161] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.0/input/input11/event11"
[ 30.161] (II) XINPUT: Adding extended input device "Lenovo EasyCamera" (type: KEYBOARD)
[ 30.161] (**) Option "xkb_rules" "evdev"
[ 30.161] (**) Option "xkb_model" "pc105"
[ 30.161] (**) Option "xkb_layout" "us"
[ 30.165] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[ 30.165] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[ 30.165] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[ 30.165] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.165] (**) AT Translated Set 2 keyboard: always reports core events
[ 30.165] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[ 30.165] (--) AT Translated Set 2 keyboard: Found keys
[ 30.165] (II) AT Translated Set 2 keyboard: Configuring as keyboard
[ 30.165] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[ 30.165] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
[ 30.165] (**) Option "xkb_rules" "evdev"
[ 30.165] (**) Option "xkb_model" "pc105"
[ 30.165] (**) Option "xkb_layout" "us"
[ 30.165] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/event10)
[ 30.165] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "evdev touchpad catchall"
[ 30.165] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "touchpad catchall"
[ 30.165] (II) LoadModule: "synaptics"
[ 30.165] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[ 30.223] (II) Module synaptics: vendor="X.Org Foundation"
[ 30.223] compiled for 1.10.3, module version = 1.4.1
[ 30.223] Module class: X.Org XInput Driver
[ 30.223] ABI class: X.Org XInput driver, version 12.2
[ 30.223] (II) Using input driver 'synaptics' for 'AlpsPS/2 ALPS GlidePoint'
[ 30.223] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[ 30.223] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
[ 30.223] (**) Option "Device" "/dev/input/event10"
[ 30.223] (--) AlpsPS/2 ALPS GlidePoint: x-axis range 0 - 1023
[ 30.223] (--) AlpsPS/2 ALPS GlidePoint: y-axis range 0 - 767
[ 30.223] (--) AlpsPS/2 ALPS GlidePoint: pressure range 0 - 127
[ 30.223] (--) AlpsPS/2 ALPS GlidePoint: buttons: left right middle
[ 30.223] (--) AlpsPS/2 ALPS GlidePoint: invalid finger width range. defaulting to 0 - 16
[ 30.223] (--) AlpsPS/2 ALPS GlidePoint: touchpad found
[ 30.223] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
[ 30.224] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio4/input/input10/event10"
[ 30.224] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS GlidePoint" (type: TOUCHPAD)
[ 30.224] (**) AlpsPS/2 ALPS GlidePoint: (accel) MinSpeed is now constant deceleration 2.5
[ 30.224] (**) AlpsPS/2 ALPS GlidePoint: MaxSpeed is now 1.75
[ 30.224] (**) AlpsPS/2 ALPS GlidePoint: AccelFactor is now 0.156
[ 30.224] (**) AlpsPS/2 ALPS GlidePoint: (accel) keeping acceleration scheme 1
[ 30.224] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration profile 1
[ 30.224] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration factor: 2.000
[ 30.224] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration threshold: 4
[ 30.225] (--) AlpsPS/2 ALPS GlidePoint: touchpad found
[ 30.225] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/mouse2)
[ 30.225] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "touchpad catchall"
[ 30.225] (II) Using input driver 'synaptics' for 'AlpsPS/2 ALPS GlidePoint'
[ 30.225] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[ 30.225] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
[ 30.225] (**) Option "Device" "/dev/input/mouse2"
[ 30.225] (--) AlpsPS/2 ALPS GlidePoint: invalid x-axis range. defaulting to 1615 - 5685
[ 30.225] (--) AlpsPS/2 ALPS GlidePoint: invalid y-axis range. defaulting to 1729 - 4171
[ 30.225] (--) AlpsPS/2 ALPS GlidePoint: invalid pressure range. defaulting to 0 - 256
[ 30.225] (--) AlpsPS/2 ALPS GlidePoint: invalid finger width range. defaulting to 0 - 16
[ 30.245] (EE) Query no Synaptics: 6003C8
[ 30.245] (--) AlpsPS/2 ALPS GlidePoint: no supported touchpad found
[ 30.245] (EE) AlpsPS/2 ALPS GlidePoint Unable to query/initialize Synaptics hardware.
[ 30.257] (EE) PreInit returned 11 for "AlpsPS/2 ALPS GlidePoint"
[ 30.257] (II) UnloadModule: "synaptics"
[ 30.257] (II) Unloading synaptics
[ 30.257] (II) config/udev: Adding input device PS/2 Mouse (/dev/input/event9)
[ 30.257] (**) PS/2 Mouse: Applying InputClass "evdev pointer catchall"
[ 30.257] (II) Using input driver 'evdev' for 'PS/2 Mouse'
[ 30.257] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.257] (**) PS/2 Mouse: always reports core events
[ 30.257] (**) PS/2 Mouse: Device: "/dev/input/event9"
[ 30.257] (--) PS/2 Mouse: Found 3 mouse buttons
[ 30.257] (--) PS/2 Mouse: Found relative axes
[ 30.257] (--) PS/2 Mouse: Found x and y relative axes
[ 30.257] (II) PS/2 Mouse: Configuring as mouse
[ 30.257] (**) PS/2 Mouse: YAxisMapping: buttons 4 and 5
[ 30.257] (**) PS/2 Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 30.257] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio4/input/input9/event9"
[ 30.257] (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE)
[ 30.258] (II) PS/2 Mouse: initialized for relative axes.
[ 30.258] (**) PS/2 Mouse: (accel) keeping acceleration scheme 1
[ 30.258] (**) PS/2 Mouse: (accel) acceleration profile 0
[ 30.258] (**) PS/2 Mouse: (accel) acceleration factor: 2.000
[ 30.258] (**) PS/2 Mouse: (accel) acceleration threshold: 4
[ 30.258] (II) config/udev: Adding input device PS/2 Mouse (/dev/input/mouse1)
[ 30.258] (II) No input driver/identifier specified (ignoring)
[ 30.258] (II) config/udev: Adding input device Ideapad extra buttons (/dev/input/event8)
[ 30.258] (**) Ideapad extra buttons: Applying InputClass "evdev keyboard catchall"
[ 30.258] (II) Using input driver 'evdev' for 'Ideapad extra buttons'
[ 30.258] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.258] (**) Ideapad extra buttons: always reports core events
[ 30.258] (**) Ideapad extra buttons: Device: "/dev/input/event8"
[ 30.258] (--) Ideapad extra buttons: Found keys
[ 30.258] (II) Ideapad extra buttons: Configuring as keyboard
[ 30.258] (**) Option "config_info" "udev:/sys/devices/platform/ideapad/input/input8/event8"
[ 30.258] (II) XINPUT: Adding extended input device "Ideapad extra buttons" (type: KEYBOARD)
[ 30.258] (**) Option "xkb_rules" "evdev"
[ 30.258] (**) Option "xkb_model" "pc105"
[ 30.258] (**) Option "xkb_layout" "us"
[ 30.259] (II) config/udev: Adding input device PC Speaker (/dev/input/event7)
[ 30.259] (II) No input driver/identifier specified (ignoring)
[ 30.262] (II) config/udev: Adding input device ACPI Virtual Keyboard Device (/dev/input/event16)
[ 30.262] (**) ACPI Virtual Keyboard Device: Applying InputClass "evdev keyboard catchall"
[ 30.262] (II) Using input driver 'evdev' for 'ACPI Virtual Keyboard Device'
[ 30.262] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 30.262] (**) ACPI Virtual Keyboard Device: always reports core events
[ 30.262] (**) ACPI Virtual Keyboard Device: Device: "/dev/input/event16"
[ 30.262] (--) ACPI Virtual Keyboard Device: Found keys
[ 30.262] (II) ACPI Virtual Keyboard Device: Configuring as keyboard
[ 30.262] (**) Option "config_info" "udev:/sys/devices/virtual/input/input16/event16"
[ 30.262] (II) XINPUT: Adding extended input device "ACPI Virtual Keyboard Device" (type: KEYBOARD)
[ 30.262] (**) Option "xkb_rules" "evdev"
[ 30.262] (**) Option "xkb_model" "pc105"
[ 30.262] (**) Option "xkb_layout" "us"
[ 31.285] (II) intel(0): EDID vendor "AUO", prod id 16428
[ 31.285] (II) intel(0): Printing DDC gathered Modelines:
[ 31.285] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
[ 31.287] (II) intel(0): EDID vendor "AUO", prod id 16428
[ 31.287] (II) intel(0): Printing DDC gathered Modelines:
[ 31.287] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
[ 31.308] (II) intel(0): EDID vendor "AUO", prod id 16428
[ 31.308] (II) intel(0): Printing DDC gathered Modelines:
[ 31.308] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
[ 48.013] (II) intel(0): EDID vendor "AUO", prod id 16428
[ 48.013] (II) intel(0): Printing DDC gathered Modelines:
[ 48.013] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
[ 48.015] (II) intel(0): EDID vendor "AUO", prod id 16428
[ 48.015] (II) intel(0): Printing DDC gathered Modelines:
[ 48.015] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
[ 48.016] (II) intel(0): EDID vendor "AUO", prod id 16428
[ 48.016] (II) intel(0): Printing DDC gathered Modelines:
[ 48.016] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
[ 50.814] (II) intel(0): EDID vendor "AUO", prod id 16428
[ 50.814] (II) intel(0): Printing DDC gathered Modelines:
[ 50.814] (II) intel(0): Modeline "1366x768"x0.0 69.30 1366 1414 1446 1456 768 771 777 793 -hsync -vsync (47.6 kHz)
next prev parent reply other threads:[~2012-07-07 5:35 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-06 3:39 Bug#679750: Lenovo G360: ALPS Touchpad Recognized as "PS/2 Generic Mouse"(with newly dmesg information) littlebat
2012-07-06 5:11 ` Seth Forshee
2012-07-07 5:35 ` littlebat [this message]
2012-07-09 14:45 ` Seth Forshee
2012-07-10 4:16 ` littlebat
2012-07-10 4:57 ` Seth Forshee
2012-07-10 6:33 ` Rik Theys
2012-07-15 2:15 ` littlebat
2012-07-19 19:47 ` Seth Forshee
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120707133519.25bf82d4.dashing.meng@gmail.com \
--to=dashing.meng@gmail.com \
--cc=679750@bugs.debian.org \
--cc=jrnieder@gmail.com \
--cc=linux-input@vger.kernel.org \
--cc=rik.theys@gmail.com \
--cc=seth.forshee@canonical.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.