Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > Your Distro > Debian Linux Help > Various irritating bugs in Debian Lenny

Forgot Password?
 Debian Linux Help   Discussions related to Debian GNU/Linux.

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
RSS Feeds


Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Reply
 
Thread Tools Display Modes
Old 10-07-2007   #1 (permalink)
Just Joined!
 
Join Date: Nov 2006
Location: Minnesota, USA
Posts: 39
Various irritating bugs in Debian Lenny

I recently got around to installing Debian lenny on my AMD64 HP Pavilion dv6000 laptop (I've been using Linux on my desktop systems for years), but I'm plagued by problems.

First off, is that to get my system to boot I need to add either/and "nolapic" or "noapic" to the kernel boot parameters. It's kind of hard to explain what happens if I don't. When X.org starts to fire up, my display becomes covered with orange-and-red-tinted lines, that gradually grow darker, as black lines start to grow from the bottom and top in a kind of Gaussian curve. This goes on forever as far as I can tell, and ctrl-alt-del does nothing. If I do give it the boot parameters, this only goes for about half a second before GDM pops up.

Second, and I think this is related to number one, is that if I leave X.org running too long, the top of my screen starts to grow lines that don't go away unless I log out. Also, sometimes if I log out my cursor disappears even though both my touchpad and my USB mice still move the invisible cursor.

Third, and this is the most irritating problem, is that USB hotplugging is quite touchy. As far as I've been able to figure out, it sometimes works fine until a few minutes after login, when the terminal gives the message
Code:
Message from syslogd@andrew-laptop at Sun Oct  7 13:24:40 2007 ...
andrew-laptop kernel: Disabling IRQ #7
and needs to be killed with Ctrl-C. Anything already plugged in continues to work, but nothing more works. I think it's reliant to this problem that during shut down, Debian spends a while complaining that new high speed USB devices have been detected, and then stops when it gets an invalid IRQ address and continues the shut down OK.

Finally, one time when I shut it down, I got a warning that my hard drive may not have spun down properly and to update my shutdown utility. I haven't gotten that since, but it's still alarming.

A response to any of these questions would be handy. It's definitely possible that Linux just doesn't support my laptop well, but it would be nice to have some work-arounds at least.

EDIT: It would seem that my USB problems go away if I alternate between "nolapic" and "noapic". Also, my sound seems to die if I don't do this; I'll have to look further into that.

Last edited by i80and; 10-08-2007 at 12:43 AM.. Reason: Updated info
i80and is offline  


Reply With Quote
Old 10-08-2007   #2 (permalink)
Super Moderator
 
devils casper's Avatar
 
Join Date: Jun 2006
Location: Chandigarh, India
Posts: 21,049
Send a message via Yahoo to devils casper
Execute this
Code:
lspci | grep VGA
cat /etc/X11/xorg.conf | grep Driver
Post output here.
__________________
It takes a lot of time to be a genius, you have to sit around so much doing nothing, really doing nothing. - Gertrude Stein
New Users: Read This First
devils casper is offline   Reply With Quote
Old 10-08-2007   #3 (permalink)
/etc/init.d/moderator
 
bigtomrodney's Avatar
 
Join Date: Nov 2004
Location: Sunny South-East of Ireland
Posts: 6,031
When it comes to power and ACPI issues, the first thing I would do is a BIOS update. Check with your manufacturer's website to see if there is a newer version. I've seen all sorts of odd problems fixed this way over the years.
__________________
Registered Linux user #378740
New members read here / Forum Rules
#linuxforums on irc.freenode.net
bigtomrodney is offline   Reply With Quote
Old 10-08-2007   #4 (permalink)
Just Joined!
 
Join Date: Nov 2006
Location: Minnesota, USA
Posts: 39
Quote:
Originally Posted by devils_casper View Post
Execute this
Code:
lspci | grep VGA
cat /etc/X11/xorg.conf | grep Driver
Post output here.
Code:
andrew@andrew-laptop:~$ lspci | grep VGA
00:05.0 VGA compatible controller: nVidia Corporation C51 PCI Express Bridge (rev a2)
andrew@andrew-laptop:~$ cat /etc/X11/xorg.conf | grep Driver
        Driver          "kbd"
        Driver          "mouse"
        Driver          "synaptics"
        Driver          "nv"
GeForce Go 6150 video subsystem.
Quote:
Originally Posted by bigtomrodney
When it comes to power and ACPI issues, the first thing I would do is a BIOS update. Check with your manufacturer's website to see if there is a newer version. I've seen all sorts of odd problems fixed this way over the years.
I've never bothered to do BIOS upgrades, but I'll try it. Thanks.
i80and is offline   Reply With Quote
Old 10-08-2007   #5 (permalink)
Super Moderator
 
devils casper's Avatar
 
Join Date: Jun 2006
Location: Chandigarh, India
Posts: 21,049
Send a message via Yahoo to devils casper
nv driver is not working properly. Either install nVidia driver or replace 'nv' with 'vesa' in Section Device 'Video Card' of /etc/X11/xorg.conf file.
__________________
It takes a lot of time to be a genius, you have to sit around so much doing nothing, really doing nothing. - Gertrude Stein
New Users: Read This First
devils casper is offline   Reply With Quote
Old 10-08-2007   #6 (permalink)
Just Joined!
 
Join Date: Nov 2006
Location: Minnesota, USA
Posts: 39
Quote:
Originally Posted by devils_casper View Post
nv driver is not working properly. Either install nVidia driver or replace 'nv' with 'vesa' in Section Device 'Video Card' of /etc/X11/xorg.conf file.
I tried vesa, but booting without nolapic/noapic still didn't work (with the same bizarre display artifacts), and with them all it did was to induce a bad resolution, banding, and flickering. I'm planning on trying nvidia, but I don't think it'll help.

Should I post any system logs?
i80and is offline   Reply With Quote
Old 10-08-2007   #7 (permalink)
/etc/init.d/moderator
 
bigtomrodney's Avatar
 
Join Date: Nov 2004
Location: Sunny South-East of Ireland
Posts: 6,031
Post back the output from dmesg and also
Code:
grep -ir acpi /var/log/*
as root. Don't forget to use code tags as this will be quite big.
__________________
Registered Linux user #378740
New members read here / Forum Rules
#linuxforums on irc.freenode.net
bigtomrodney is offline   Reply With Quote
Old 10-08-2007   #8 (permalink)
Just Joined!
 
Join Date: Nov 2006
Location: Minnesota, USA
Posts: 39
Quote:
Originally Posted by bigtomrodney View Post
Post back the output from dmesg and also
Code:
grep -ir acpi /var/log/*
as root. Don't forget to use code tags as this will be quite big.
dmesg:
Code:
andrew@andrew-laptop:~$ dmesg
Linux version 2.6.22-2-amd64 (Debian 2.6.22-4) (waldi@debian.org) (gcc version 4.1.3 20070812 (prerelease) (Debian 4.1.2-15)) #1 SMP Thu Aug 30 23:43:59 UTC 2007
Command line: root=/dev/sda5 ro noapic
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
 BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000d2000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 000000007bf00000 (usable)
 BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
 BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
 BIOS-e820: 000000007bf80000 - 0000000080000000 (reserved)
 BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
 BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
 BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
 BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
Entering add_active_range(0, 0, 157) 0 entries of 3200 used
Entering add_active_range(0, 256, 507648) 1 entries of 3200 used
end_pfn_map = 1048576
DMI present.
ACPI: RSDP 000F88E0, 0014 (r0 HP    )
ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
ACPI: FACS 7BF16FC0, 0040
ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
ACPI: APIC 7BF15E04, 005E (r1 HP         APIC    6040000  LTP        0)
ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
Scanning NUMA topology in Northbridge 24
No NUMA configuration found
Faking a node at 0000000000000000-000000007bf00000
Entering add_active_range(0, 0, 157) 0 entries of 3200 used
Entering add_active_range(0, 256, 507648) 1 entries of 3200 used
Bootmem setup node 0 0000000000000000-000000007bf00000
Zone PFN ranges:
  DMA             0 ->     4096
  DMA32        4096 ->  1048576
  Normal    1048576 ->  1048576
early_node_map[2] active PFN ranges
    0:        0 ->      157
    0:      256 ->   507648
On node 0 totalpages: 507549
  DMA zone: 56 pages used for memmap
  DMA zone: 1021 pages reserved
  DMA zone: 2920 pages, LIFO batch:0
  DMA32 zone: 6884 pages used for memmap
  DMA32 zone: 496668 pages, LIFO batch:31
  Normal zone: 0 pages used for memmap
ACPI: PM-Timer IO Port: 0x1008
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Processor #0 (Bootup-CPU)
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
Processor #1
ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
ACPI: Skipping IOAPIC probe due to 'noapic' option.
ACPI: HPET id: 0x10de8201 base: 0xfed00000
Using ACPI for processor (LAPIC) configuration information
Intel MultiProcessor Specification v1.4
MPTABLE: OEM ID: nVIDIA   MPTABLE: Product ID: C51-MCP51    MPTABLE: APIC at: 0xFEE00000
I/O APIC #2 at 0xFEC00000.
Setting APIC routing to flat
Processors: 2
swsusp: Registered nosave memory region: 000000000009d000 - 000000000009e000
swsusp: Registered nosave memory region: 000000000009e000 - 00000000000a0000
swsusp: Registered nosave memory region: 00000000000a0000 - 00000000000d2000
swsusp: Registered nosave memory region: 00000000000d2000 - 0000000000100000
Allocating PCI resources starting at 88000000 (gap: 80000000:60000000)
SMP: Allowing 2 CPUs, 0 hotplug CPUs
PERCPU: Allocating 37896 bytes of per cpu data
Built 1 zonelists.  Total pages: 499588
Kernel command line: root=/dev/sda5 ro noapic
Initializing CPU#0
PID hash table entries: 4096 (order: 12, 32768 bytes)
Marking TSC unstable due to TSCs unsynchronized
time.c: Detected 1707.772 MHz processor.
Console: colour VGA+ 80x25
Checking aperture...
CPU 0: aperture @ 20f2000000 size 32 MB
Aperture too small (32 MB)
No AGP bridge found
Memory: 1992200k/2030592k available (2009k kernel code, 37996k reserved, 945k data, 296k init)
Calibrating delay using timer specific routine.. 3418.49 BogoMIPS (lpj=6836988)
Security Framework v1.0.0 initialized
SELinux:  Disabled at boot.
Capability LSM initialized
Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
Mount-cache hash table entries: 256
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 256K (64 bytes/line)
CPU 0/0 -> Node 0
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 0
SMP alternatives: switching to UP code
ACPI: Core revision 20070126
ACPI: setting ELCR to 0200 (from 0ca0)
Using local APIC timer interrupts.
result 12557153
Detected 12.557 MHz APIC timer.
SMP alternatives: switching to SMP code
Booting processor 1/2 APIC 0x1
Initializing CPU#1
spurious 8259A interrupt: IRQ7.
Calibrating delay using timer specific routine.. 3421.92 BogoMIPS (lpj=6843844)
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 256K (64 bytes/line)
CPU 1/1 -> Node 0
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 1
AMD Athlon(tm) 64 X2 Dual Core Processor TK-53 stepping 01
Brought up 2 CPUs
migration_cost=157
NET: Registered protocol family 16
ACPI: bus type pci registered
PCI: Using MMCONFIG at e0000000 - e06fffff
PCI: No mmconfig possible on device 00:18
PCI: No mmconfig possible on device 07:05
ACPI: System BIOS is requesting _OSI(Linux)
ACPI: Please test with "acpi_osi=!Linux"
Please send dmidecode to linux-acpi@vger.kernel.org
ACPI: Interpreter enabled
ACPI: (supports S0 S3 S4 S5)
ACPI: Using PIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (0000:00)
PCI: Probing PCI hardware (bus 00)
PCI: Transparent bridge - 0000:00:10.0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 *11 14 15)
ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 *11 14 15)
ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LK1E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LK2E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LK3E] (IRQs 5 7 9 10 *11 14 15)
ACPI: PCI Interrupt Link [LK4E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 *10 11 14 15)
ACPI: PCI Interrupt Link [LUS0] (IRQs 5 7 9 10 *11 14 15)
ACPI: PCI Interrupt Link [LUS2] (IRQs 5 *7 9 10 11 14 15)
ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LPID] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LTID] (IRQs *5 7 9 10 11 14 15)
ACPI: PCI Interrupt Link [LSI1] (IRQs 5 7 9 *10 11 14 15)
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
ACPI: bus type pnp registered
pnp: ACPI device : hid PNP0C02
pnp: ACPI device : hid PNP0C01
pnp: ACPI device : hid PNP0A03
pnp: ACPI device : hid PNP0C02
pnp: ACPI device : hid PNP0C02
pnp: ACPI device : hid PNP0C02
pnp: ACPI device : hid PNP0200
pnp: ACPI device : hid PNP0800
pnp: ACPI device : hid PNP0C04
pnp: ACPI device : hid PNP0B00
pnp: ACPI device : hid PNP0103
pnp: ACPI device : hid PNP0303
pnp: ACPI device : hid SYN0129
pnp: PnP ACPI: found 13 devices
ACPI: ACPI bus type pnp unregistered
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
PCI: Using ACPI for IRQ routing
PCI: If a device doesn't work, try "pci=routeirq".  If it helps, post a report
NET: Registered protocol family 8
NET: Registered protocol family 20
hpet0: at MMIO 0xfed00000, IRQs 2, 8, 31
hpet0: 3 32-bit timers, 25000000 Hz
ACPI: RTC can wake from S4
pnp: the driver 'system' has been registered
pnp: match found with the PnP device '00:00' and the driver 'system'
pnp: 00:00: iomem range 0xe0000000-0xefffffff could not be reserved
pnp: match found with the PnP device '00:01' and the driver 'system'
pnp: 00:01: iomem range 0xffc00000-0xffffffff could not be reserved
pnp: 00:01: iomem range 0xfec00000-0xfec00fff could not be reserved
pnp: 00:01: iomem range 0xfee00000-0xfeefffff could not be reserved
pnp: 00:01: iomem range 0xfed00000-0xfed00fff has been reserved
pnp: match found with the PnP device '00:03' and the driver 'system'
pnp: 00:03: iomem range 0xe0000000-0xefffffff could not be reserved
pnp: match found with the PnP device '00:04' and the driver 'system'
pnp: 00:04: ioport range 0x1000-0x107f has been reserved
pnp: 00:04: ioport range 0x1080-0x10ff has been reserved
pnp: 00:04: ioport range 0x1400-0x147f has been reserved
pnp: 00:04: ioport range 0x1480-0x14ff has been reserved
pnp: 00:04: ioport range 0x1800-0x187f has been reserved
pnp: 00:04: ioport range 0x1880-0x18ff has been reserved
pnp: 00:04: ioport range 0x2000-0x203f has been reserved
pnp: match found with the PnP device '00:05' and the driver 'system'
PCI: Bridge: 0000:00:02.0
  IO window: 4000-4fff
  MEM window: b4000000-b5ffffff
  PREFETCH window: d0000000-d01fffff
PCI: Bridge: 0000:00:03.0
  IO window: disabled.
  MEM window: b6000000-b7ffffff
  PREFETCH window: disabled.
PCI: Bridge: 0000:00:10.0
  IO window: disabled.
  MEM window: b8000000-b80fffff
Time: hpet clocksource has been installed.
  PREFETCH window: disabled.
PCI: Setting latency timer of device 0000:00:02.0 to 64
PCI: Setting latency timer of device 0000:00:03.0 to 64
PCI: Setting latency timer of device 0000:00:10.0 to 64
NET: Registered protocol family 2
IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
TCP established hash table entries: 262144 (order: 10, 6291456 bytes)
TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
TCP: Hash tables configured (established 262144 bind 65536)
TCP reno registered
checking if image is initramfs... it is
Freeing initrd memory: 5950k freed
Simple Boot Flag at 0x36 set to 0x1
audit: initializing netlink socket (disabled)
audit(1191832241.688:1): initialized
VFS: Disk quotas dquot_6.5.1
Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered
io scheduler cfq registered (default)
Boot video device is 0000:00:05.0
PCI: Setting latency timer of device 0000:00:02.0 to 64
assign_interrupt_mode Found MSI capability
Allocate Port Service[0000:00:02.0:pcie00]
Allocate Port Service[0000:00:02.0:pcie03]
PCI: Setting latency timer of device 0000:00:03.0 to 64
assign_interrupt_mode Found MSI capability
Allocate Port Service[0000:00:03.0:pcie00]
Allocate Port Service[0000:00:03.0:pcie03]
Real Time Clock Driver v1.12ac
hpet_resources: 0xfed00000 is busy
Linux agpgart interface v0.102 (c) Dave Jones
Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
pnp: the driver 'serial' has been registered
RAMDISK driver initialized: 16 RAM disks of 65536K size 1024 blocksize
pnp: the driver 'i8042 kbd' has been registered
pnp: match found with the PnP device '00:0b' and the driver 'i8042 kbd'
pnp: the driver 'i8042 aux' has been registered
pnp: match found with the PnP device '00:0c' and the driver 'i8042 aux'
PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
mice: PS/2 mouse device common for all mice
TCP bic registered
NET: Registered protocol family 1
NET: Registered protocol family 17
Freeing unused kernel memory: 296k freed
input: AT Translated Set 2 keyboard as /class/input/input0
ACPI: Thermal Zone [THRM] (57 C)
ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 7
PCI: setting IRQ 7 as level-triggered
ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 7 (level, low) -> IRQ 7
PCI: Setting latency timer of device 0000:00:0b.1 to 64
ehci_hcd 0000:00:0b.1: EHCI Host Controller
ehci_hcd 0000:00:0b.1: new USB bus registered, assigned bus number 1
ehci_hcd 0000:00:0b.1: debug port 1
PCI: cache line size of 64 is not supported by device 0000:00:0b.1
ehci_hcd 0000:00:0b.1: irq 7, io mem 0xb0005000
ehci_hcd 0000:00:0b.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 8 ports detected
ohci_hcd: 2006 August 04 USB 1.1 'Open' Host Controller (OHCI) Driver
SCSI subsystem initialized
forcedeth.c: Reverse Engineered nForce ethernet driver. Version 0.60.
ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 11
PCI: setting IRQ 11 as level-triggered
ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 11 (level, low) -> IRQ 11
PCI: Setting latency timer of device 0000:00:0b.0 to 64
ohci_hcd 0000:00:0b.0: OHCI Host Controller
ohci_hcd 0000:00:0b.0: new USB bus registered, assigned bus number 2
ohci_hcd 0000:00:0b.0: irq 11, io mem 0xb0004000
libata version 2.21 loaded.
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 8 ports detected
sata_nv 0000:00:0e.0: version 3.4
PCI: Enabling device 0000:00:0e.0 (0005 -> 0007)
ACPI: PCI Interrupt Link [LTID] enabled at IRQ 5
PCI: setting IRQ 5 as level-triggered
ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 5 (level, low) -> IRQ 5
PCI: Setting latency timer of device 0000:00:0e.0 to 64
scsi0 : sata_nv
scsi1 : sata_nv
ata1: SATA max UDMA/133 cmd 0x00000000000130c0 ctl 0x00000000000130b6 bmdma 0x0000000000013090 irq 5
ata2: SATA max UDMA/133 cmd 0x00000000000130b8 ctl 0x00000000000130b2 bmdma 0x0000000000013098 irq 5
usb 1-4: new high speed USB device using ehci_hcd and address 3
ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
usb 1-4: configuration #1 chosen from 1 choice
ata1.00: ATA-7: SAMSUNG HM120JI, YF100-18, max UDMA/100
ata1.00: 234441648 sectors, multi 16: LBA48 
ata1.00: configured for UDMA/100
ata2: SATA link down (SStatus 0 SControl 300)
scsi 0:0:0:0: Direct-Access     ATA      SAMSUNG HM120JI  YF10 PQ: 0 ANSI: 5
ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 10
PCI: setting IRQ 10 as level-triggered
ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 10 (level, low) -> IRQ 10
PCI: Setting latency timer of device 0000:00:14.0 to 64
forcedeth: using HIGHDMA
usb 2-3: new full speed USB device using ohci_hcd and address 2
usb 2-3: configuration #1 chosen from 1 choice
eth0: forcedeth.c: subsystem: 0103c:30b7 bound to 0000:00:14.0
ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 11
ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 11 (level, low) -> IRQ 11
udev: renamed network interface eth0 to eth1
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
pnp: the driver 'ide' has been registered
firewire_ohci: Added fw-ohci device 0000:07:05.0, OHCI version 1.10
NFORCE-MCP51: IDE controller at PCI slot 0000:00:0d.0
NFORCE-MCP51: chipset revision 241
NFORCE-MCP51: not 100% native mode: will probe irqs later
NFORCE-MCP51: BIOS didn't set cable bits correctly. Enabling workaround.
NFORCE-MCP51: 0000:00:0d.0 (rev f1) UDMA133 controller
    ide0: BM-DMA at 0x3080-0x3087, BIOS settings: hda:DMA, hdb:pio
Probing IDE interface ide0...
sd 0:0:0:0: [sda] 234441648 512-byte hardware sectors (120034 MB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sd 0:0:0:0: [sda] 234441648 512-byte hardware sectors (120034 MB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sda:<6>usb 2-6: new low speed USB device using ohci_hcd and address 3
usb 2-6: configuration #1 chosen from 1 choice
usbcore: registered new interface driver hiddev
input: Logitech USB-PS/2 Optical Mouse as /class/input/input1
input: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:0b.0-6
usbcore: registered new interface driver usbhid
drivers/hid/usbhid/hid-core.c: v2.6:USB HID core driver
 sda1 sda2 sda3 sda4 < sda5<5>firewire_core: created new fw device fw0 (0 config rom retries)
 sda6 >
sd 0:0:0:0: [sda] Attached SCSI disk
hda: HL-DT-ST DVDRAM GSA-T20L, ATAPI CD/DVD-ROM drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
hda: ATAPI 24X DVD-ROM DVD-R-RAM CD-R/RW drive, 2048kB Cache, DMA
Uniform CD-ROM driver Revision: 3.20
Attempting manual resume
swsusp: Marking nosave pages: 000000000009d000 - 0000000000100000
swsusp: Basic memory bitmaps created
swsusp: Basic memory bitmaps freed
EXT3-fs: INFO: recovery required on readonly filesystem.
EXT3-fs: write access will be enabled during recovery.
kjournald starting.  Commit interval 5 seconds
EXT3-fs: recovery complete.
EXT3-fs: mounted filesystem with ordered data mode.
Bluetooth: Core ver 2.11
NET: Registered protocol family 31
Bluetooth: HCI device and connection manager initialized
Bluetooth: HCI socket layer initialized
i2c-adapter i2c-0: nForce2 SMBus adapter at 0x3040
i2c-adapter i2c-1: nForce2 SMBus adapter at 0x3000
Bluetooth: HCI USB driver ver 2.9
input: PC Speaker as /class/input/input2
ieee80211_crypt: registered algorithm 'NULL'
ieee80211: 802.11 data/management/control stack, git-1.1.13
ieee80211: Copyright (C) 2004-2005 Intel Corporation <jketreno@linux.intel.com>
sdhci: Secure Digital Host Controller Interface driver
sdhci: Copyright(c) Pierre Ossman
sdhci: SDHCI controller found at 0000:07:05.1 [1180:0822] (rev 19)
ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 11
ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 11 (level, low) -> IRQ 11
mmc0: SDHCI at 0xb8000800 irq 11 DMA
usbcore: registered new interface driver hci_usb
bcm43xx driver
ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 10
ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 10 (level, low) -> IRQ 10
PCI: Setting latency timer of device 0000:03:00.0 to 64
bcm43xx: Chip ID 0x4311, rev 0x2
bcm43xx: Number of cores: 4
bcm43xx: Core 0: ID 0x800, rev 0x13, vendor 0x4243
bcm43xx: Core 1: ID 0x812, rev 0xd, vendor 0x4243
bcm43xx: Unsupported 80211 core revision 13
bcm43xx: Core 2: ID 0x817, rev 0x4, vendor 0x4243
bcm43xx: Core 3: ID 0x820, rev 0x5, vendor 0x4243
bcm43xx: PHY connected
bcm43xx: Detected PHY: Analog: 4, Type 2, Revision 9
bcm43xx: Invalid PHY Revision 9
bcm43xx: Detected Radio: ID: 2205017f (Manuf: 17f Ver: 2050 Rev: 2)
bcm43xx: Radio turned off
bcm43xx: Radio turned off
udev: renamed network interface eth0 to eth2
ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 9
PCI: setting IRQ 9 as level-triggered
ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 9 (level, low) -> IRQ 9
PCI: Setting latency timer of device 0000:00:10.1 to 64
Synaptics Touchpad, model: 1, fw: 6.3, id: 0x1a0b1, caps: 0xa04713/0x200000
input: SynPS/2 Synaptics TouchPad as /class/input/input3
Adding 690752k swap on /dev/sda6.  Priority:-1 extents:1 across:690752k
EXT3 FS on sda5, internal journal
loop: module loaded
device-mapper: ioctl: 4.11.0-ioctl (2006-10-12) initialised: dm-devel@redhat.com
powernow-k8: Found 2 AMD Athlon(tm) 64 X2 Dual Core Processor TK-53 processors (version 2.00.00)
powernow-k8:    0 : fid 0x9 (1700 MHz), vid 0x13
powernow-k8:    1 : fid 0x8 (1600 MHz), vid 0x14
powernow-k8:    2 : fid 0x0 (800 MHz), vid 0x1a
ACPI: Battery Slot [BAT0] (battery present)
ACPI: AC Adapter [ACAD] (on-line)
input: Power Button (FF) as /class/input/input4
ACPI: Power Button (FF) [PWRF]
input: Power Button (CM) as /class/input/input5
ACPI: Power Button (CM) [PWRB]
input: Sleep Button (CM) as /class/input/input6
ACPI: Sleep Button (CM) [SLPB]
input: Lid Switch as /class/input/input7
ACPI: Lid Switch [LID]
pnp: the driver 'parport_pc' has been registered
lp: driver loaded but no devices found
ppdev: user-space parallel port driver
Bluetooth: L2CAP ver 2.8
Bluetooth: L2CAP socket layer initialized
Bluetooth: RFCOMM socket layer initialized
Bluetooth: RFCOMM TTY layer initialized
Bluetooth: RFCOMM ver 1.8
bcm43xx: PHY connected
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: set security called, .level = 0, .enabled = 0, .encrypt = 0
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
NET: Registered protocol family 10
lo: Disabled Privacy Extensions
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
eth1: no IPv6 routers present
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
irq 7: nobody cared (try booting with the "irqpoll" option)

Call Trace:
 <IRQ>  [<ffffffff8025e007>] __report_bad_irq+0x30/0x72
 [<ffffffff8025e22c>] note_interrupt+0x1e3/0x227
 [<ffffffff8025ed00>] handle_level_irq+0xb9/0xf1
 [<ffffffff8020af1c>] call_softirq+0x1c/0x28
 [<ffffffff8020ca0d>] do_IRQ+0x6c/0xd3
 [<ffffffff8020a2a1>] ret_from_intr+0x0/0xa
 <EOI> 
handlers:
[<ffffffff8036776c>] (usb_hcd_irq+0x0/0x52)
Disabling IRQ #7
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
Firefox didn't let me post the entire 401kb, but I grepped out everything from Oct. 8. Tell me if you need more; nothing came up for any more recent date.
grep -ir acpi /var/log/* | grep "[.]*Oct 8":
Code:
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Local APIC address 0xfee00000
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ0 used by override.
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ2 used by override.
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ9 used by override.
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Local APIC address 0xfee00000
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: setting ELCR to 0200 (from 0ca0)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Using PIC for interrupt routing
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 *11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 *11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 5 7 9 10 *11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 *10 11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 5 7 9 10 *11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 5 *7 9 10 11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs *5 7 9 10 11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 5 7 9 *10 11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (31 C)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 7
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 7 (level, low) -> IRQ 7
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 5
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 5 (level, low) -> IRQ 5
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 10
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 10 (level, low) -> IRQ 10
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 11
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 11 (level, low) -> IRQ 11
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 11
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 11 (level, low) -> IRQ 11
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 10
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 10 (level, low) -> IRQ 10
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 11
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 11 (level, low) -> IRQ 11
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 9
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 9 (level, low) -> IRQ 9
/var/log/kern.log:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/kern.log:Oct  8 07:16:28 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/kern.log:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/kern.log:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/kern.log:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/kern.log:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Lid Switch [LID]
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Local APIC address 0xfee00000
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ0 used by override.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ2 used by override.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ9 used by override.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: Using ACPI (MADT) for SMP configuration information
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Using IOAPIC for interrupt routing
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 7) *11
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 10) *11
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 11) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 16) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 17) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 18) *11
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 19) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs *10)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 11) *10
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 22) *11
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 22) *7
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 20) *10
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 21) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 21) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 21) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 21) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs 23) *5
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 20) *10
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (59 C)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 22
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 22 (level, high) -> IRQ 22
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 22
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 22 (level, high) -> IRQ 22
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 5
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 5 (level, high) -> IRQ 5
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 20
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 20 (level, high) -> IRQ 20
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 23
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 23 (level, high) -> IRQ 23
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 7
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 7 (level, high) -> IRQ 7
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 19
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 19 (level, high) -> IRQ 19
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 21
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 21 (level, high) -> IRQ 21
/var/log/kern.log:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/kern.log:Oct  8 08:29:20 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/kern.log:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/kern.log:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/kern.log:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/kern.log:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Lid Switch [LID]
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Local APIC address 0xfee00000
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Skipping IOAPIC probe due to 'noapic' option.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: Using ACPI for processor (LAPIC) configuration information
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: setting ELCR to 0200 (from 0ca0)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Using PIC for interrupt routing
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 *11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 *11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 5 7 9 10 *11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 *10 11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 5 7 9 10 *11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 5 *7 9 10 11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs *5 7 9 10 11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 5 7 9 *10 11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (57 C)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 7
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 7 (level, low) -> IRQ 7
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 11
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 11 (level, low) -> IRQ 11
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 5
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 5 (level, low) -> IRQ 5
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 10
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 10 (level, low) -> IRQ 10
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 11
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 11 (level, low) -> IRQ 11
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 11
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 11 (level, low) -> IRQ 11
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 10
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 10 (level, low) -> IRQ 10
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 9
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 9 (level, low) -> IRQ 9
/var/log/kern.log:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/kern.log:Oct  8 08:31:03 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/kern.log:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/kern.log:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/kern.log:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/kern.log:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Lid Switch [LID]
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: setting ELCR to 0200 (from 0ca0)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Using PIC for interrupt routing
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 *11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 *11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 5 7 9 10 *11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 *10 11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 5 7 9 10 *11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 5 *7 9 10 11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs *5 7 9 10 11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 5 7 9 *10 11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (31 C)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 7
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 7 (level, low) -> IRQ 7
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 5
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 5 (level, low) -> IRQ 5
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 10
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 10 (level, low) -> IRQ 10
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 11
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 11 (level, low) -> IRQ 11
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 11
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 11 (level, low) -> IRQ 11
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 10
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 10 (level, low) -> IRQ 10
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 11
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 11 (level, low) -> IRQ 11
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 9
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 9 (level, low) -> IRQ 9
/var/log/messages:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/messages:Oct  8 07:16:28 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/messages:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/messages:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/messages:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/messages:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Lid Switch [LID]
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: Using ACPI (MADT) for SMP configuration information
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Using IOAPIC for interrupt routing
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 7) *11
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 10) *11
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 11) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 16) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 17) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 18) *11
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 19) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs *10)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 11) *10
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 22) *11
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 22) *7
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 20) *10
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 21) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 21) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 21) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 21) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs 23) *5
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 20) *10
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (59 C)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 22
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 22 (level, high) -> IRQ 22
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 22
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 22 (level, high) -> IRQ 22
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 5
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 5 (level, high) -> IRQ 5
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 20
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 20 (level, high) -> IRQ 20
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 23
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 23 (level, high) -> IRQ 23
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 7
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 7 (level, high) -> IRQ 7
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 19
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 19 (level, high) -> IRQ 19
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 21
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 21 (level, high) -> IRQ 21
/var/log/messages:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/messages:Oct  8 08:29:20 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/messages:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/messages:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/messages:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/messages:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Lid Switch [LID]
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Skipping IOAPIC probe due to 'noapic' option.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: Using ACPI for processor (LAPIC) configuration information
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: setting ELCR to 0200 (from 0ca0)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Using PIC for interrupt routing
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 *11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 *11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 5 7 9 10 *11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 *10 11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 5 7 9 10 *11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 5 *7 9 10 11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs *5 7 9 10 11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 5 7 9 *10 11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (57 C)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 7
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 7 (level, low) -> IRQ 7
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 11
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 11 (level, low) -> IRQ 11
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 5
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 5 (level, low) -> IRQ 5
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 10
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 10 (level, low) -> IRQ 10
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 11
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 11 (level, low) -> IRQ 11
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 11
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 11 (level, low) -> IRQ 11
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 10
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 10 (level, low) -> IRQ 10
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 9
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 9 (level, low) -> IRQ 9
/var/log/messages:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/messages:Oct  8 08:31:03 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/messages:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/messages:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/messages:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/messages:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Lid Switch [LID]
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Local APIC address 0xfee00000
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ0 used by override.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ2 used by override.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ9 used by override.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: Using ACPI (MADT) for SMP configuration information
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Using IOAPIC for interrupt routing
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 7) *11
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 10) *11
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 11) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 16) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 17) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 18) *11
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 19) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs *10)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 11) *10
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 22) *11
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 22) *7
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 20) *10
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 21) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 21) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 21) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 21) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs 23) *5
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 20) *10
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (59 C)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 22
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 22 (level, high) -> IRQ 22
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 22
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 22 (level, high) -> IRQ 22
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 5
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 5 (level, high) -> IRQ 5
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 20
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 20 (level, high) -> IRQ 20
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 23
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 23 (level, high) -> IRQ 23
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 7
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 7 (level, high) -> IRQ 7
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 19
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 19 (level, high) -> IRQ 19
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 21
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 21 (level, high) -> IRQ 21
/var/log/syslog:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/syslog:Oct  8 08:29:20 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/syslog:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/syslog:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/syslog:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/syslog:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Lid Switch [LID]
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Local APIC address 0xfee00000
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Skipping IOAPIC probe due to 'noapic' option.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: Using ACPI for processor (LAPIC) configuration information
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: setting ELCR to 0200 (from 0ca0)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Using PIC for interrupt routing
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 *11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 *11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 5 7 9 10 *11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 *10 11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 5 7 9 10 *11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 5 *7 9 10 11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs *5 7 9 10 11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 5 7 9 *10 11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (57 C)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 7
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 7 (level, low) -> IRQ 7
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 11
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 11 (level, low) -> IRQ 11
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 5
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 5 (level, low) -> IRQ 5
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 10
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 10 (level, low) -> IRQ 10
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 11
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 11 (level, low) -> IRQ 11
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 11
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 11 (level, low) -> IRQ 11
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 10
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 10 (level, low) -> IRQ 10
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 9
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 9 (level, low) -> IRQ 9
/var/log/syslog:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/syslog:Oct  8 08:31:03 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/syslog:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/syslog:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/syslog:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/syslog:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Lid Switch [LID]
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: setting ELCR to 0200 (from 0ca0)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Using PIC for interrupt routing
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 *11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 *11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 5 7 9 10 *11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 *10 11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 5 7 9 10 *11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 5 *7 9 10 11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs *5 7 9 10 11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 5 7 9 *10 11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (31 C)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 7
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 7 (level, low) -> IRQ 7
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 5
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 5 (level, low) -> IRQ 5
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 10
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 10 (level, low) -> IRQ 10
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 11
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 11 (level, low) -> IRQ 11
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 11
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 11 (level, low) -> IRQ 11
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 10
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 10 (level, low) -> IRQ 10
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 11
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 11 (level, low) -> IRQ 11
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 9
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 9 (level, low) -> IRQ 9
/var/log/syslog.0:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/syslog.0:Oct  8 07:16:28 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/syslog.0:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/syslog.0:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/syslog.0:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/syslog.0:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Lid Switch [LID]
i80and is offline   Reply With Quote
Old 10-08-2007   #9 (permalink)
Just Joined!
 
Join Date: Nov 2006
Location: Minnesota, USA
Posts: 39
Quote:
Originally Posted by bigtomrodney View Post
Post back the output from dmesg and also
Code:
grep -ir acpi /var/log/*
as root. Don't forget to use code tags as this will be quite big.
dmesg:
Code:
andrew@andrew-laptop:~$ dmesg
Linux version 2.6.22-2-amd64 (Debian 2.6.22-4) (waldi@debian.org) (gcc version 4.1.3 20070812 (prerelease) (Debian 4.1.2-15)) #1 SMP Thu Aug 30 23:43:59 UTC 2007
Command line: root=/dev/sda5 ro noapic
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
 BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000d2000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 000000007bf00000 (usable)
 BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
 BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
 BIOS-e820: 000000007bf80000 - 0000000080000000 (reserved)
 BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
 BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
 BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
 BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
Entering add_active_range(0, 0, 157) 0 entries of 3200 used
Entering add_active_range(0, 256, 507648) 1 entries of 3200 used
end_pfn_map = 1048576
DMI present.
ACPI: RSDP 000F88E0, 0014 (r0 HP    )
ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
ACPI: FACS 7BF16FC0, 0040
ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
ACPI: APIC 7BF15E04, 005E (r1 HP         APIC    6040000  LTP        0)
ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
Scanning NUMA topology in Northbridge 24
No NUMA configuration found
Faking a node at 0000000000000000-000000007bf00000
Entering add_active_range(0, 0, 157) 0 entries of 3200 used
Entering add_active_range(0, 256, 507648) 1 entries of 3200 used
Bootmem setup node 0 0000000000000000-000000007bf00000
Zone PFN ranges:
  DMA             0 ->     4096
  DMA32        4096 ->  1048576
  Normal    1048576 ->  1048576
early_node_map[2] active PFN ranges
    0:        0 ->      157
    0:      256 ->   507648
On node 0 totalpages: 507549
  DMA zone: 56 pages used for memmap
  DMA zone: 1021 pages reserved
  DMA zone: 2920 pages, LIFO batch:0
  DMA32 zone: 6884 pages used for memmap
  DMA32 zone: 496668 pages, LIFO batch:31
  Normal zone: 0 pages used for memmap
ACPI: PM-Timer IO Port: 0x1008
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Processor #0 (Bootup-CPU)
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
Processor #1
ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
ACPI: Skipping IOAPIC probe due to 'noapic' option.
ACPI: HPET id: 0x10de8201 base: 0xfed00000
Using ACPI for processor (LAPIC) configuration information
Intel MultiProcessor Specification v1.4
MPTABLE: OEM ID: nVIDIA   MPTABLE: Product ID: C51-MCP51    MPTABLE: APIC at: 0xFEE00000
I/O APIC #2 at 0xFEC00000.
Setting APIC routing to flat
Processors: 2
swsusp: Registered nosave memory region: 000000000009d000 - 000000000009e000
swsusp: Registered nosave memory region: 000000000009e000 - 00000000000a0000
swsusp: Registered nosave memory region: 00000000000a0000 - 00000000000d2000
swsusp: Registered nosave memory region: 00000000000d2000 - 0000000000100000
Allocating PCI resources starting at 88000000 (gap: 80000000:60000000)
SMP: Allowing 2 CPUs, 0 hotplug CPUs
PERCPU: Allocating 37896 bytes of per cpu data
Built 1 zonelists.  Total pages: 499588
Kernel command line: root=/dev/sda5 ro noapic
Initializing CPU#0
PID hash table entries: 4096 (order: 12, 32768 bytes)
Marking TSC unstable due to TSCs unsynchronized
time.c: Detected 1707.772 MHz processor.
Console: colour VGA+ 80x25
Checking aperture...
CPU 0: aperture @ 20f2000000 size 32 MB
Aperture too small (32 MB)
No AGP bridge found
Memory: 1992200k/2030592k available (2009k kernel code, 37996k reserved, 945k data, 296k init)
Calibrating delay using timer specific routine.. 3418.49 BogoMIPS (lpj=6836988)
Security Framework v1.0.0 initialized
SELinux:  Disabled at boot.
Capability LSM initialized
Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
Mount-cache hash table entries: 256
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 256K (64 bytes/line)
CPU 0/0 -> Node 0
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 0
SMP alternatives: switching to UP code
ACPI: Core revision 20070126
ACPI: setting ELCR to 0200 (from 0ca0)
Using local APIC timer interrupts.
result 12557153
Detected 12.557 MHz APIC timer.
SMP alternatives: switching to SMP code
Booting processor 1/2 APIC 0x1
Initializing CPU#1
spurious 8259A interrupt: IRQ7.
Calibrating delay using timer specific routine.. 3421.92 BogoMIPS (lpj=6843844)
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 256K (64 bytes/line)
CPU 1/1 -> Node 0
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 1
AMD Athlon(tm) 64 X2 Dual Core Processor TK-53 stepping 01
Brought up 2 CPUs
migration_cost=157
NET: Registered protocol family 16
ACPI: bus type pci registered
PCI: Using MMCONFIG at e0000000 - e06fffff
PCI: No mmconfig possible on device 00:18
PCI: No mmconfig possible on device 07:05
ACPI: System BIOS is requesting _OSI(Linux)
ACPI: Please test with "acpi_osi=!Linux"
Please send dmidecode to linux-acpi@vger.kernel.org
ACPI: Interpreter enabled
ACPI: (supports S0 S3 S4 S5)
ACPI: Using PIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (0000:00)
PCI: Probing PCI hardware (bus 00)
PCI: Transparent bridge - 0000:00:10.0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 *11 14 15)
ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 *11 14 15)
ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LK1E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LK2E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LK3E] (IRQs 5 7 9 10 *11 14 15)
ACPI: PCI Interrupt Link [LK4E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 *10 11 14 15)
ACPI: PCI Interrupt Link [LUS0] (IRQs 5 7 9 10 *11 14 15)
ACPI: PCI Interrupt Link [LUS2] (IRQs 5 *7 9 10 11 14 15)
ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LPID] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LTID] (IRQs *5 7 9 10 11 14 15)
ACPI: PCI Interrupt Link [LSI1] (IRQs 5 7 9 *10 11 14 15)
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
ACPI: bus type pnp registered
pnp: ACPI device : hid PNP0C02
pnp: ACPI device : hid PNP0C01
pnp: ACPI device : hid PNP0A03
pnp: ACPI device : hid PNP0C02
pnp: ACPI device : hid PNP0C02
pnp: ACPI device : hid PNP0C02
pnp: ACPI device : hid PNP0200
pnp: ACPI device : hid PNP0800
pnp: ACPI device : hid PNP0C04
pnp: ACPI device : hid PNP0B00
pnp: ACPI device : hid PNP0103
pnp: ACPI device : hid PNP0303
pnp: ACPI device : hid SYN0129
pnp: PnP ACPI: found 13 devices
ACPI: ACPI bus type pnp unregistered
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
PCI: Using ACPI for IRQ routing
PCI: If a device doesn't work, try "pci=routeirq".  If it helps, post a report
NET: Registered protocol family 8
NET: Registered protocol family 20
hpet0: at MMIO 0xfed00000, IRQs 2, 8, 31
hpet0: 3 32-bit timers, 25000000 Hz
ACPI: RTC can wake from S4
pnp: the driver 'system' has been registered
pnp: match found with the PnP device '00:00' and the driver 'system'
pnp: 00:00: iomem range 0xe0000000-0xefffffff could not be reserved
pnp: match found with the PnP device '00:01' and the driver 'system'
pnp: 00:01: iomem range 0xffc00000-0xffffffff could not be reserved
pnp: 00:01: iomem range 0xfec00000-0xfec00fff could not be reserved
pnp: 00:01: iomem range 0xfee00000-0xfeefffff could not be reserved
pnp: 00:01: iomem range 0xfed00000-0xfed00fff has been reserved
pnp: match found with the PnP device '00:03' and the driver 'system'
pnp: 00:03: iomem range 0xe0000000-0xefffffff could not be reserved
pnp: match found with the PnP device '00:04' and the driver 'system'
pnp: 00:04: ioport range 0x1000-0x107f has been reserved
pnp: 00:04: ioport range 0x1080-0x10ff has been reserved
pnp: 00:04: ioport range 0x1400-0x147f has been reserved
pnp: 00:04: ioport range 0x1480-0x14ff has been reserved
pnp: 00:04: ioport range 0x1800-0x187f has been reserved
pnp: 00:04: ioport range 0x1880-0x18ff has been reserved
pnp: 00:04: ioport range 0x2000-0x203f has been reserved
pnp: match found with the PnP device '00:05' and the driver 'system'
PCI: Bridge: 0000:00:02.0
  IO window: 4000-4fff
  MEM window: b4000000-b5ffffff
  PREFETCH window: d0000000-d01fffff
PCI: Bridge: 0000:00:03.0
  IO window: disabled.
  MEM window: b6000000-b7ffffff
  PREFETCH window: disabled.
PCI: Bridge: 0000:00:10.0
  IO window: disabled.
  MEM window: b8000000-b80fffff
Time: hpet clocksource has been installed.
  PREFETCH window: disabled.
PCI: Setting latency timer of device 0000:00:02.0 to 64
PCI: Setting latency timer of device 0000:00:03.0 to 64
PCI: Setting latency timer of device 0000:00:10.0 to 64
NET: Registered protocol family 2
IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
TCP established hash table entries: 262144 (order: 10, 6291456 bytes)
TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
TCP: Hash tables configured (established 262144 bind 65536)
TCP reno registered
checking if image is initramfs... it is
Freeing initrd memory: 5950k freed
Simple Boot Flag at 0x36 set to 0x1
audit: initializing netlink socket (disabled)
audit(1191832241.688:1): initialized
VFS: Disk quotas dquot_6.5.1
Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered
io scheduler cfq registered (default)
Boot video device is 0000:00:05.0
PCI: Setting latency timer of device 0000:00:02.0 to 64
assign_interrupt_mode Found MSI capability
Allocate Port Service[0000:00:02.0:pcie00]
Allocate Port Service[0000:00:02.0:pcie03]
PCI: Setting latency timer of device 0000:00:03.0 to 64
assign_interrupt_mode Found MSI capability
Allocate Port Service[0000:00:03.0:pcie00]
Allocate Port Service[0000:00:03.0:pcie03]
Real Time Clock Driver v1.12ac
hpet_resources: 0xfed00000 is busy
Linux agpgart interface v0.102 (c) Dave Jones
Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
pnp: the driver 'serial' has been registered
RAMDISK driver initialized: 16 RAM disks of 65536K size 1024 blocksize
pnp: the driver 'i8042 kbd' has been registered
pnp: match found with the PnP device '00:0b' and the driver 'i8042 kbd'
pnp: the driver 'i8042 aux' has been registered
pnp: match found with the PnP device '00:0c' and the driver 'i8042 aux'
PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
mice: PS/2 mouse device common for all mice
TCP bic registered
NET: Registered protocol family 1
NET: Registered protocol family 17
Freeing unused kernel memory: 296k freed
input: AT Translated Set 2 keyboard as /class/input/input0
ACPI: Thermal Zone [THRM] (57 C)
ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 7
PCI: setting IRQ 7 as level-triggered
ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 7 (level, low) -> IRQ 7
PCI: Setting latency timer of device 0000:00:0b.1 to 64
ehci_hcd 0000:00:0b.1: EHCI Host Controller
ehci_hcd 0000:00:0b.1: new USB bus registered, assigned bus number 1
ehci_hcd 0000:00:0b.1: debug port 1
PCI: cache line size of 64 is not supported by device 0000:00:0b.1
ehci_hcd 0000:00:0b.1: irq 7, io mem 0xb0005000
ehci_hcd 0000:00:0b.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 8 ports detected
ohci_hcd: 2006 August 04 USB 1.1 'Open' Host Controller (OHCI) Driver
SCSI subsystem initialized
forcedeth.c: Reverse Engineered nForce ethernet driver. Version 0.60.
ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 11
PCI: setting IRQ 11 as level-triggered
ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 11 (level, low) -> IRQ 11
PCI: Setting latency timer of device 0000:00:0b.0 to 64
ohci_hcd 0000:00:0b.0: OHCI Host Controller
ohci_hcd 0000:00:0b.0: new USB bus registered, assigned bus number 2
ohci_hcd 0000:00:0b.0: irq 11, io mem 0xb0004000
libata version 2.21 loaded.
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 8 ports detected
sata_nv 0000:00:0e.0: version 3.4
PCI: Enabling device 0000:00:0e.0 (0005 -> 0007)
ACPI: PCI Interrupt Link [LTID] enabled at IRQ 5
PCI: setting IRQ 5 as level-triggered
ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 5 (level, low) -> IRQ 5
PCI: Setting latency timer of device 0000:00:0e.0 to 64
scsi0 : sata_nv
scsi1 : sata_nv
ata1: SATA max UDMA/133 cmd 0x00000000000130c0 ctl 0x00000000000130b6 bmdma 0x0000000000013090 irq 5
ata2: SATA max UDMA/133 cmd 0x00000000000130b8 ctl 0x00000000000130b2 bmdma 0x0000000000013098 irq 5
usb 1-4: new high speed USB device using ehci_hcd and address 3
ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
usb 1-4: configuration #1 chosen from 1 choice
ata1.00: ATA-7: SAMSUNG HM120JI, YF100-18, max UDMA/100
ata1.00: 234441648 sectors, multi 16: LBA48 
ata1.00: configured for UDMA/100
ata2: SATA link down (SStatus 0 SControl 300)
scsi 0:0:0:0: Direct-Access     ATA      SAMSUNG HM120JI  YF10 PQ: 0 ANSI: 5
ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 10
PCI: setting IRQ 10 as level-triggered
ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 10 (level, low) -> IRQ 10
PCI: Setting latency timer of device 0000:00:14.0 to 64
forcedeth: using HIGHDMA
usb 2-3: new full speed USB device using ohci_hcd and address 2
usb 2-3: configuration #1 chosen from 1 choice
eth0: forcedeth.c: subsystem: 0103c:30b7 bound to 0000:00:14.0
ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 11
ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 11 (level, low) -> IRQ 11
udev: renamed network interface eth0 to eth1
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
pnp: the driver 'ide' has been registered
firewire_ohci: Added fw-ohci device 0000:07:05.0, OHCI version 1.10
NFORCE-MCP51: IDE controller at PCI slot 0000:00:0d.0
NFORCE-MCP51: chipset revision 241
NFORCE-MCP51: not 100% native mode: will probe irqs later
NFORCE-MCP51: BIOS didn't set cable bits correctly. Enabling workaround.
NFORCE-MCP51: 0000:00:0d.0 (rev f1) UDMA133 controller
    ide0: BM-DMA at 0x3080-0x3087, BIOS settings: hda:DMA, hdb:pio
Probing IDE interface ide0...
sd 0:0:0:0: [sda] 234441648 512-byte hardware sectors (120034 MB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sd 0:0:0:0: [sda] 234441648 512-byte hardware sectors (120034 MB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sda:<6>usb 2-6: new low speed USB device using ohci_hcd and address 3
usb 2-6: configuration #1 chosen from 1 choice
usbcore: registered new interface driver hiddev
input: Logitech USB-PS/2 Optical Mouse as /class/input/input1
input: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:0b.0-6
usbcore: registered new interface driver usbhid
drivers/hid/usbhid/hid-core.c: v2.6:USB HID core driver
 sda1 sda2 sda3 sda4 < sda5<5>firewire_core: created new fw device fw0 (0 config rom retries)
 sda6 >
sd 0:0:0:0: [sda] Attached SCSI disk
hda: HL-DT-ST DVDRAM GSA-T20L, ATAPI CD/DVD-ROM drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
hda: ATAPI 24X DVD-ROM DVD-R-RAM CD-R/RW drive, 2048kB Cache, DMA
Uniform CD-ROM driver Revision: 3.20
Attempting manual resume
swsusp: Marking nosave pages: 000000000009d000 - 0000000000100000
swsusp: Basic memory bitmaps created
swsusp: Basic memory bitmaps freed
EXT3-fs: INFO: recovery required on readonly filesystem.
EXT3-fs: write access will be enabled during recovery.
kjournald starting.  Commit interval 5 seconds
EXT3-fs: recovery complete.
EXT3-fs: mounted filesystem with ordered data mode.
Bluetooth: Core ver 2.11
NET: Registered protocol family 31
Bluetooth: HCI device and connection manager initialized
Bluetooth: HCI socket layer initialized
i2c-adapter i2c-0: nForce2 SMBus adapter at 0x3040
i2c-adapter i2c-1: nForce2 SMBus adapter at 0x3000
Bluetooth: HCI USB driver ver 2.9
input: PC Speaker as /class/input/input2
ieee80211_crypt: registered algorithm 'NULL'
ieee80211: 802.11 data/management/control stack, git-1.1.13
ieee80211: Copyright (C) 2004-2005 Intel Corporation <jketreno@linux.intel.com>
sdhci: Secure Digital Host Controller Interface driver
sdhci: Copyright(c) Pierre Ossman
sdhci: SDHCI controller found at 0000:07:05.1 [1180:0822] (rev 19)
ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 11
ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 11 (level, low) -> IRQ 11
mmc0: SDHCI at 0xb8000800 irq 11 DMA
usbcore: registered new interface driver hci_usb
bcm43xx driver
ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 10
ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 10 (level, low) -> IRQ 10
PCI: Setting latency timer of device 0000:03:00.0 to 64
bcm43xx: Chip ID 0x4311, rev 0x2
bcm43xx: Number of cores: 4
bcm43xx: Core 0: ID 0x800, rev 0x13, vendor 0x4243
bcm43xx: Core 1: ID 0x812, rev 0xd, vendor 0x4243
bcm43xx: Unsupported 80211 core revision 13
bcm43xx: Core 2: ID 0x817, rev 0x4, vendor 0x4243
bcm43xx: Core 3: ID 0x820, rev 0x5, vendor 0x4243
bcm43xx: PHY connected
bcm43xx: Detected PHY: Analog: 4, Type 2, Revision 9
bcm43xx: Invalid PHY Revision 9
bcm43xx: Detected Radio: ID: 2205017f (Manuf: 17f Ver: 2050 Rev: 2)
bcm43xx: Radio turned off
bcm43xx: Radio turned off
udev: renamed network interface eth0 to eth2
ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 9
PCI: setting IRQ 9 as level-triggered
ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 9 (level, low) -> IRQ 9
PCI: Setting latency timer of device 0000:00:10.1 to 64
Synaptics Touchpad, model: 1, fw: 6.3, id: 0x1a0b1, caps: 0xa04713/0x200000
input: SynPS/2 Synaptics TouchPad as /class/input/input3
Adding 690752k swap on /dev/sda6.  Priority:-1 extents:1 across:690752k
EXT3 FS on sda5, internal journal
loop: module loaded
device-mapper: ioctl: 4.11.0-ioctl (2006-10-12) initialised: dm-devel@redhat.com
powernow-k8: Found 2 AMD Athlon(tm) 64 X2 Dual Core Processor TK-53 processors (version 2.00.00)
powernow-k8:    0 : fid 0x9 (1700 MHz), vid 0x13
powernow-k8:    1 : fid 0x8 (1600 MHz), vid 0x14
powernow-k8:    2 : fid 0x0 (800 MHz), vid 0x1a
ACPI: Battery Slot [BAT0] (battery present)
ACPI: AC Adapter [ACAD] (on-line)
input: Power Button (FF) as /class/input/input4
ACPI: Power Button (FF) [PWRF]
input: Power Button (CM) as /class/input/input5
ACPI: Power Button (CM) [PWRB]
input: Sleep Button (CM) as /class/input/input6
ACPI: Sleep Button (CM) [SLPB]
input: Lid Switch as /class/input/input7
ACPI: Lid Switch [LID]
pnp: the driver 'parport_pc' has been registered
lp: driver loaded but no devices found
ppdev: user-space parallel port driver
Bluetooth: L2CAP ver 2.8
Bluetooth: L2CAP socket layer initialized
Bluetooth: RFCOMM socket layer initialized
Bluetooth: RFCOMM TTY layer initialized
Bluetooth: RFCOMM ver 1.8
bcm43xx: PHY connected
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: set security called, .level = 0, .enabled = 0, .encrypt = 0
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
NET: Registered protocol family 10
lo: Disabled Privacy Extensions
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
eth1: no IPv6 routers present
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
irq 7: nobody cared (try booting with the "irqpoll" option)

Call Trace:
 <IRQ>  [<ffffffff8025e007>] __report_bad_irq+0x30/0x72
 [<ffffffff8025e22c>] note_interrupt+0x1e3/0x227
 [<ffffffff8025ed00>] handle_level_irq+0xb9/0xf1
 [<ffffffff8020af1c>] call_softirq+0x1c/0x28
 [<ffffffff8020ca0d>] do_IRQ+0x6c/0xd3
 [<ffffffff8020a2a1>] ret_from_intr+0x0/0xa
 <EOI> 
handlers:
[<ffffffff8036776c>] (usb_hcd_irq+0x0/0x52)
Disabling IRQ #7
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
Firefox didn't let me post the entire 401kb, but I grepped out everything from Oct. 8. Tell me if you need more; nothing came up for any more recent date.
grep -ir acpi /var/log/* | grep "[.]*Oct 8":
Code:
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/debug:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Local APIC address 0xfee00000
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ0 used by override.
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ2 used by override.
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ9 used by override.
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/debug:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Local APIC address 0xfee00000
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/debug:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: setting ELCR to 0200 (from 0ca0)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Using PIC for interrupt routing
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 *11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 *11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 5 7 9 10 *11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 *10 11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 5 7 9 10 *11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 5 *7 9 10 11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs *5 7 9 10 11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 5 7 9 *10 11 14 15)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (31 C)
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 7
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 7 (level, low) -> IRQ 7
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 5
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 5 (level, low) -> IRQ 5
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 10
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 10 (level, low) -> IRQ 10
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 11
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 11 (level, low) -> IRQ 11
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 11
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 11 (level, low) -> IRQ 11
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 10
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 10 (level, low) -> IRQ 10
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 11
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 11 (level, low) -> IRQ 11
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 9
/var/log/kern.log:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 9 (level, low) -> IRQ 9
/var/log/kern.log:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/kern.log:Oct  8 07:16:28 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/kern.log:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/kern.log:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/kern.log:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/kern.log:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Lid Switch [LID]
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Local APIC address 0xfee00000
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ0 used by override.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ2 used by override.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ9 used by override.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: Using ACPI (MADT) for SMP configuration information
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Using IOAPIC for interrupt routing
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 7) *11
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 10) *11
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 11) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 16) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 17) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 18) *11
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 19) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs *10)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 11) *10
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 22) *11
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 22) *7
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 20) *10
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 21) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 21) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 21) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 21) *0, disabled.
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs 23) *5
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 20) *10
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (59 C)
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 22
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 22 (level, high) -> IRQ 22
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 22
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 22 (level, high) -> IRQ 22
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 5
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 5 (level, high) -> IRQ 5
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 20
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 20 (level, high) -> IRQ 20
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 23
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 23 (level, high) -> IRQ 23
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 7
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 7 (level, high) -> IRQ 7
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 19
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 19 (level, high) -> IRQ 19
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 21
/var/log/kern.log:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 21 (level, high) -> IRQ 21
/var/log/kern.log:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/kern.log:Oct  8 08:29:20 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/kern.log:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/kern.log:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/kern.log:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/kern.log:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Lid Switch [LID]
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Local APIC address 0xfee00000
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Skipping IOAPIC probe due to 'noapic' option.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: Using ACPI for processor (LAPIC) configuration information
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: setting ELCR to 0200 (from 0ca0)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Using PIC for interrupt routing
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 *11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 *11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 5 7 9 10 *11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 *10 11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 5 7 9 10 *11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 5 *7 9 10 11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs *5 7 9 10 11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 5 7 9 *10 11 14 15)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (57 C)
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 7
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 7 (level, low) -> IRQ 7
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 11
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 11 (level, low) -> IRQ 11
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 5
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 5 (level, low) -> IRQ 5
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 10
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 10 (level, low) -> IRQ 10
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 11
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 11 (level, low) -> IRQ 11
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 11
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 11 (level, low) -> IRQ 11
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 10
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 10 (level, low) -> IRQ 10
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 9
/var/log/kern.log:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 9 (level, low) -> IRQ 9
/var/log/kern.log:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/kern.log:Oct  8 08:31:03 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/kern.log:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/kern.log:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/kern.log:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/kern.log:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Lid Switch [LID]
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: setting ELCR to 0200 (from 0ca0)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Using PIC for interrupt routing
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 *11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 *11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 5 7 9 10 *11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 *10 11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 5 7 9 10 *11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 5 *7 9 10 11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs *5 7 9 10 11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 5 7 9 *10 11 14 15)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (31 C)
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 7
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 7 (level, low) -> IRQ 7
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 5
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 5 (level, low) -> IRQ 5
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 10
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 10 (level, low) -> IRQ 10
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 11
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 11 (level, low) -> IRQ 11
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 11
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 11 (level, low) -> IRQ 11
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 10
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 10 (level, low) -> IRQ 10
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 11
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 11 (level, low) -> IRQ 11
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 9
/var/log/messages:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 9 (level, low) -> IRQ 9
/var/log/messages:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/messages:Oct  8 07:16:28 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/messages:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/messages:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/messages:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/messages:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Lid Switch [LID]
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: Using ACPI (MADT) for SMP configuration information
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Using IOAPIC for interrupt routing
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 7) *11
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 10) *11
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 11) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 16) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 17) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 18) *11
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 19) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs *10)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 11) *10
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 22) *11
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 22) *7
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 20) *10
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 21) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 21) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 21) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 21) *0, disabled.
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs 23) *5
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 20) *10
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (59 C)
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 22
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 22 (level, high) -> IRQ 22
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 22
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 22 (level, high) -> IRQ 22
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 5
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 5 (level, high) -> IRQ 5
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 20
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 20 (level, high) -> IRQ 20
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 23
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 23 (level, high) -> IRQ 23
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 7
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 7 (level, high) -> IRQ 7
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 19
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 19 (level, high) -> IRQ 19
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 21
/var/log/messages:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 21 (level, high) -> IRQ 21
/var/log/messages:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/messages:Oct  8 08:29:20 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/messages:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/messages:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/messages:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/messages:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Lid Switch [LID]
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Skipping IOAPIC probe due to 'noapic' option.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: Using ACPI for processor (LAPIC) configuration information
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: setting ELCR to 0200 (from 0ca0)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Using PIC for interrupt routing
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 *11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 *11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 5 7 9 10 *11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 *10 11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 5 7 9 10 *11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 5 *7 9 10 11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs *5 7 9 10 11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 5 7 9 *10 11 14 15)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (57 C)
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 7
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 7 (level, low) -> IRQ 7
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 11
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 11 (level, low) -> IRQ 11
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 5
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 5 (level, low) -> IRQ 5
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 10
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 10 (level, low) -> IRQ 10
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 11
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 11 (level, low) -> IRQ 11
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 11
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 11 (level, low) -> IRQ 11
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 10
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 10 (level, low) -> IRQ 10
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 9
/var/log/messages:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 9 (level, low) -> IRQ 9
/var/log/messages:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/messages:Oct  8 08:31:03 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/messages:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/messages:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/messages:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/messages:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Lid Switch [LID]
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Local APIC address 0xfee00000
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ0 used by override.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ2 used by override.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: IRQ9 used by override.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: Using ACPI (MADT) for SMP configuration information
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Using IOAPIC for interrupt routing
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 7) *11
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 10) *11
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 11) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 16) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 17) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 18) *11
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 19) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs *10)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 11) *10
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 22) *11
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 22) *7
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 20) *10
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 21) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 21) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 21) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 21) *0, disabled.
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs 23) *5
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 20) *10
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (59 C)
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 22
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 22 (level, high) -> IRQ 22
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 22
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 22 (level, high) -> IRQ 22
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 5
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 5 (level, high) -> IRQ 5
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 20
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 20 (level, high) -> IRQ 20
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 23
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 23 (level, high) -> IRQ 23
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 7
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 7 (level, high) -> IRQ 7
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 19
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 19 (level, high) -> IRQ 19
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 21
/var/log/syslog:Oct  8 08:29:17 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 21 (level, high) -> IRQ 21
/var/log/syslog:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/syslog:Oct  8 08:29:20 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/syslog:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/syslog:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/syslog:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/syslog:Oct  8 08:29:20 andrew-laptop kernel: ACPI: Lid Switch [LID]
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Local APIC address 0xfee00000
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Skipping IOAPIC probe due to 'noapic' option.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: Using ACPI for processor (LAPIC) configuration information
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: setting ELCR to 0200 (from 0ca0)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Using PIC for interrupt routing
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 *11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 *11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 5 7 9 10 *11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 *10 11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 5 7 9 10 *11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 5 *7 9 10 11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs *5 7 9 10 11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 5 7 9 *10 11 14 15)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (57 C)
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 7
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 7 (level, low) -> IRQ 7
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 11
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 11 (level, low) -> IRQ 11
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 5
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 5 (level, low) -> IRQ 5
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 10
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 10 (level, low) -> IRQ 10
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 11
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 11 (level, low) -> IRQ 11
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 11
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 11 (level, low) -> IRQ 11
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 10
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 10 (level, low) -> IRQ 10
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 9
/var/log/syslog:Oct  8 08:31:00 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 9 (level, low) -> IRQ 9
/var/log/syslog:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/syslog:Oct  8 08:31:03 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/syslog:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/syslog:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/syslog:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/syslog:Oct  8 08:31:03 andrew-laptop kernel: ACPI: Lid Switch [LID]
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel:  BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel:  BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RSDP 000F88E0, 0014 (r0 HP    )
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: FACS 7BF16FC0, 0040
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: APIC 7BF15E04, 005E (r1 HP     ^I APIC    6040000  LTP        0)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PM-Timer IO Port: 0x1008
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: HPET id: 0x10de8201 base: 0xfed00000
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Core revision 20070126
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: setting ELCR to 0200 (from 0ca0)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: bus type pci registered
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: System BIOS is requesting _OSI(Linux)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Please test with "acpi_osi=!Linux"
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: Please send dmidecode to linux-acpi@vger.kernel.org
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Interpreter enabled
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: (supports S0 S3 S4 S5)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Using PIC for interrupt routing
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 *11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 *11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK1E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK2E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK3E] (IRQs 5 7 9 10 *11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 *10 11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] (IRQs 5 7 9 10 *11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] (IRQs 5 *7 9 10 11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LPID] (IRQs 5 7 9 10 11 14 15) *0, disabled.
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] (IRQs *5 7 9 10 11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LSI1] (IRQs 5 7 9 *10 11 14 15)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: PnP ACPI init
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: bus type pnp registered
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C01
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0A03
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C02
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0200
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0800
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0C04
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0B00
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0103
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid PNP0303
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: ACPI device : hid SYN0129
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: pnp: PnP ACPI: found 13 devices
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: ACPI bus type pnp unregistered
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: PCI: Using ACPI for IRQ routing
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: RTC can wake from S4
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: Thermal Zone [THRM] (31 C)
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 7
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 7 (level, low) -> IRQ 7
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LTID] enabled at IRQ 5
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 5 (level, low) -> IRQ 5
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 10
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 10 (level, low) -> IRQ 10
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 11
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 11 (level, low) -> IRQ 11
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 11
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 11 (level, low) -> IRQ 11
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 10
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 10 (level, low) -> IRQ 10
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 11
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 11 (level, low) -> IRQ 11
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 9
/var/log/syslog.0:Oct  8 07:16:25 andrew-laptop kernel: ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 9 (level, low) -> IRQ 9
/var/log/syslog.0:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Battery Slot [BAT0] (battery present)
/var/log/syslog.0:Oct  8 07:16:28 andrew-laptop kernel: ACPI: AC Adapter [ACAD] (on-line)
/var/log/syslog.0:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Power Button (FF) [PWRF]
/var/log/syslog.0:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Power Button (CM) [PWRB]
/var/log/syslog.0:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Sleep Button (CM) [SLPB]
/var/log/syslog.0:Oct  8 07:16:28 andrew-laptop kernel: ACPI: Lid Switch [LID]
i80and is offline   Reply With Quote
Old 10-08-2007   #10 (permalink)
Just Joined!
 
Join Date: Nov 2006
Location: Minnesota, USA
Posts: 39
Quote:
Originally Posted by bigtomrodney View Post
Post back the output from dmesg and also
Code:
grep -ir acpi /var/log/*
as root. Don't forget to use code tags as this will be quite big.
dmesg:
Code:
andrew@andrew-laptop:~$ dmesg
Linux version 2.6.22-2-amd64 (Debian 2.6.22-4) (waldi@debian.org) (gcc version 4.1.3 20070812 (prerelease) (Debian 4.1.2-15)) #1 SMP Thu Aug 30 23:43:59 UTC 2007
Command line: root=/dev/sda5 ro noapic
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009dc00 (usable)
 BIOS-e820: 000000000009dc00 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000d2000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 000000007bf00000 (usable)
 BIOS-e820: 000000007bf00000 - 000000007bf16000 (ACPI data)
 BIOS-e820: 000000007bf16000 - 000000007bf80000 (ACPI NVS)
 BIOS-e820: 000000007bf80000 - 0000000080000000 (reserved)
 BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
 BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
 BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
 BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
Entering add_active_range(0, 0, 157) 0 entries of 3200 used
Entering add_active_range(0, 256, 507648) 1 entries of 3200 used
end_pfn_map = 1048576
DMI present.
ACPI: RSDP 000F88E0, 0014 (r0 HP    )
ACPI: RSDT 7BF0CB68, 0040 (r1 HPQOEM SLIC-MPC  6040000  LTP        0)
ACPI: FACP 7BF15B58, 0074 (r1 HP     MCP51M    6040000 PTL_    F4240)
ACPI: DSDT 7BF0CBA8, 8FB0 (r1 HP       MCP51M  6040000 MSFT  3000000)
ACPI: FACS 7BF16FC0, 0040
ACPI: SSDT 7BF15BCC, 01C4 (r1 HP     POWERNOW  6040000  LTP        1)
ACPI: MCFG 7BF15D90, 003C (r1 HP       MCFG    6040000  LTP        0)
ACPI: HPET 7BF15DCC, 0038 (r1 PTLTD  HPETTBL   6040000  LTP        1)
ACPI: APIC 7BF15E04, 005E (r1 HP         APIC    6040000  LTP        0)
ACPI: BOOT 7BF15E62, 0028 (r1     HP $SBFTBL$  6040000  LTP        1)
ACPI: SLIC 7BF15E8A, 0176 (r1 HPQOEM SLIC-MPC  6040000  LTP        1)
Scanning NUMA topology in Northbridge 24
No NUMA configuration found
Faking a node at 0000000000000000-000000007bf00000
Entering add_active_range(0, 0, 157) 0 entries of 3200 used
Entering add_active_range(0, 256, 507648) 1 entries of 3200 used
Bootmem setup node 0 0000000000000000-000000007bf00000
Zone PFN ranges:
  DMA             0 ->     4096
  DMA32        4096 ->  1048576
  Normal    1048576 ->  1048576
early_node_map[2] active PFN ranges
    0:        0 ->      157
    0:      256 ->   507648
On node 0 totalpages: 507549
  DMA zone: 56 pages used for memmap
  DMA zone: 1021 pages reserved
  DMA zone: 2920 pages, LIFO batch:0
  DMA32 zone: 6884 pages used for memmap
  DMA32 zone: 496668 pages, LIFO batch:31
  Normal zone: 0 pages used for memmap
ACPI: PM-Timer IO Port: 0x1008
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Processor #0 (Bootup-CPU)
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
Processor #1
ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
ACPI: Skipping IOAPIC probe due to 'noapic' option.
ACPI: HPET id: 0x10de8201 base: 0xfed00000
Using ACPI for processor (LAPIC) configuration information
Intel MultiProcessor Specification v1.4
MPTABLE: OEM ID: nVIDIA   MPTABLE: Product ID: C51-MCP51    MPTABLE: APIC at: 0xFEE00000
I/O APIC #2 at 0xFEC00000.
Setting APIC routing to flat
Processors: 2
swsusp: Registered nosave memory region: 000000000009d000 - 000000000009e000
swsusp: Registered nosave memory region: 000000000009e000 - 00000000000a0000
swsusp: Registered nosave memory region: 00000000000a0000 - 00000000000d2000
swsusp: Registered nosave memory region: 00000000000d2000 - 0000000000100000
Allocating PCI resources starting at 88000000 (gap: 80000000:60000000)
SMP: Allowing 2 CPUs, 0 hotplug CPUs
PERCPU: Allocating 37896 bytes of per cpu data
Built 1 zonelists.  Total pages: 499588
Kernel command line: root=/dev/sda5 ro noapic
Initializing CPU#0
PID hash table entries: 4096 (order: 12, 32768 bytes)
Marking TSC unstable due to TSCs unsynchronized
time.c: Detected 1707.772 MHz processor.
Console: colour VGA+ 80x25
Checking aperture...
CPU 0: aperture @ 20f2000000 size 32 MB
Aperture too small (32 MB)
No AGP bridge found
Memory: 1992200k/2030592k available (2009k kernel code, 37996k reserved, 945k data, 296k init)
Calibrating delay using timer specific routine.. 3418.49 BogoMIPS (lpj=6836988)
Security Framework v1.0.0 initialized
SELinux:  Disabled at boot.
Capability LSM initialized
Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
Mount-cache hash table entries: 256
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 256K (64 bytes/line)
CPU 0/0 -> Node 0
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 0
SMP alternatives: switching to UP code
ACPI: Core revision 20070126
ACPI: setting ELCR to 0200 (from 0ca0)
Using local APIC timer interrupts.
result 12557153
Detected 12.557 MHz APIC timer.
SMP alternatives: switching to SMP code
Booting processor 1/2 APIC 0x1
Initializing CPU#1
spurious 8259A interrupt: IRQ7.
Calibrating delay using timer specific routine.. 3421.92 BogoMIPS (lpj=6843844)
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 256K (64 bytes/line)
CPU 1/1 -> Node 0
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 1
AMD Athlon(tm) 64 X2 Dual Core Processor TK-53 stepping 01
Brought up 2 CPUs
migration_cost=157
NET: Registered protocol family 16
ACPI: bus type pci registered
PCI: Using MMCONFIG at e0000000 - e06fffff
PCI: No mmconfig possible on device 00:18
PCI: No mmconfig possible on device 07:05
ACPI: System BIOS is requesting _OSI(Linux)
ACPI: Please test with "acpi_osi=!Linux"
Please send dmidecode to linux-acpi@vger.kernel.org
ACPI: Interpreter enabled
ACPI: (supports S0 S3 S4 S5)
ACPI: Using PIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (0000:00)
PCI: Probing PCI hardware (bus 00)
PCI: Transparent bridge - 0000:00:10.0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR1._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.XVR2._PRT]
ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 9 10 *11 14 15)
ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 9 10 *11 14 15)
ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LK1E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LK2E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LK3E] (IRQs 5 7 9 10 *11 14 15)
ACPI: PCI Interrupt Link [LK4E] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LSMB] (IRQs 5 7 9 *10 11 14 15)
ACPI: PCI Interrupt Link [LPMU] (IRQs 5 7 9 *10 11 14 15)
ACPI: PCI Interrupt Link [LUS0] (IRQs 5 7 9 10 *11 14 15)
ACPI: PCI Interrupt Link [LUS2] (IRQs 5 *7 9 10 11 14 15)
ACPI: PCI Interrupt Link [LMAC] (IRQs 5 7 9 *10 11 14 15)
ACPI: PCI Interrupt Link [LAZA] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LACI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LMCI] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LPID] (IRQs 5 7 9 10 11 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LTID] (IRQs *5 7 9 10 11 14 15)
ACPI: PCI Interrupt Link [LSI1] (IRQs 5 7 9 *10 11 14 15)
Linux Plug and Play Support v0.97 (c) Adam Belay
pnp: PnP ACPI init
ACPI: bus type pnp registered
pnp: ACPI device : hid PNP0C02
pnp: ACPI device : hid PNP0C01
pnp: ACPI device : hid PNP0A03
pnp: ACPI device : hid PNP0C02
pnp: ACPI device : hid PNP0C02
pnp: ACPI device : hid PNP0C02
pnp: ACPI device : hid PNP0200
pnp: ACPI device : hid PNP0800
pnp: ACPI device : hid PNP0C04
pnp: ACPI device : hid PNP0B00
pnp: ACPI device : hid PNP0103
pnp: ACPI device : hid PNP0303
pnp: ACPI device : hid SYN0129
pnp: PnP ACPI: found 13 devices
ACPI: ACPI bus type pnp unregistered
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
PCI: Using ACPI for IRQ routing
PCI: If a device doesn't work, try "pci=routeirq".  If it helps, post a report
NET: Registered protocol family 8
NET: Registered protocol family 20
hpet0: at MMIO 0xfed00000, IRQs 2, 8, 31
hpet0: 3 32-bit timers, 25000000 Hz
ACPI: RTC can wake from S4
pnp: the driver 'system' has been registered
pnp: match found with the PnP device '00:00' and the driver 'system'
pnp: 00:00: iomem range 0xe0000000-0xefffffff could not be reserved
pnp: match found with the PnP device '00:01' and the driver 'system'
pnp: 00:01: iomem range 0xffc00000-0xffffffff could not be reserved
pnp: 00:01: iomem range 0xfec00000-0xfec00fff could not be reserved
pnp: 00:01: iomem range 0xfee00000-0xfeefffff could not be reserved
pnp: 00:01: iomem range 0xfed00000-0xfed00fff has been reserved
pnp: match found with the PnP device '00:03' and the driver 'system'
pnp: 00:03: iomem range 0xe0000000-0xefffffff could not be reserved
pnp: match found with the PnP device '00:04' and the driver 'system'
pnp: 00:04: ioport range 0x1000-0x107f has been reserved
pnp: 00:04: ioport range 0x1080-0x10ff has been reserved
pnp: 00:04: ioport range 0x1400-0x147f has been reserved
pnp: 00:04: ioport range 0x1480-0x14ff has been reserved
pnp: 00:04: ioport range 0x1800-0x187f has been reserved
pnp: 00:04: ioport range 0x1880-0x18ff has been reserved
pnp: 00:04: ioport range 0x2000-0x203f has been reserved
pnp: match found with the PnP device '00:05' and the driver 'system'
PCI: Bridge: 0000:00:02.0
  IO window: 4000-4fff
  MEM window: b4000000-b5ffffff
  PREFETCH window: d0000000-d01fffff
PCI: Bridge: 0000:00:03.0
  IO window: disabled.
  MEM window: b6000000-b7ffffff
  PREFETCH window: disabled.
PCI: Bridge: 0000:00:10.0
  IO window: disabled.
  MEM window: b8000000-b80fffff
Time: hpet clocksource has been installed.
  PREFETCH window: disabled.
PCI: Setting latency timer of device 0000:00:02.0 to 64
PCI: Setting latency timer of device 0000:00:03.0 to 64
PCI: Setting latency timer of device 0000:00:10.0 to 64
NET: Registered protocol family 2
IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
TCP established hash table entries: 262144 (order: 10, 6291456 bytes)
TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
TCP: Hash tables configured (established 262144 bind 65536)
TCP reno registered
checking if image is initramfs... it is
Freeing initrd memory: 5950k freed
Simple Boot Flag at 0x36 set to 0x1
audit: initializing netlink socket (disabled)
audit(1191832241.688:1): initialized
VFS: Disk quotas dquot_6.5.1
Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered
io scheduler cfq registered (default)
Boot video device is 0000:00:05.0
PCI: Setting latency timer of device 0000:00:02.0 to 64
assign_interrupt_mode Found MSI capability
Allocate Port Service[0000:00:02.0:pcie00]
Allocate Port Service[0000:00:02.0:pcie03]
PCI: Setting latency timer of device 0000:00:03.0 to 64
assign_interrupt_mode Found MSI capability
Allocate Port Service[0000:00:03.0:pcie00]
Allocate Port Service[0000:00:03.0:pcie03]
Real Time Clock Driver v1.12ac
hpet_resources: 0xfed00000 is busy
Linux agpgart interface v0.102 (c) Dave Jones
Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
pnp: the driver 'serial' has been registered
RAMDISK driver initialized: 16 RAM disks of 65536K size 1024 blocksize
pnp: the driver 'i8042 kbd' has been registered
pnp: match found with the PnP device '00:0b' and the driver 'i8042 kbd'
pnp: the driver 'i8042 aux' has been registered
pnp: match found with the PnP device '00:0c' and the driver 'i8042 aux'
PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
mice: PS/2 mouse device common for all mice
TCP bic registered
NET: Registered protocol family 1
NET: Registered protocol family 17
Freeing unused kernel memory: 296k freed
input: AT Translated Set 2 keyboard as /class/input/input0
ACPI: Thermal Zone [THRM] (57 C)
ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 7
PCI: setting IRQ 7 as level-triggered
ACPI: PCI Interrupt 0000:00:0b.1[b] -> Link [LUS2] -> GSI 7 (level, low) -> IRQ 7
PCI: Setting latency timer of device 0000:00:0b.1 to 64
ehci_hcd 0000:00:0b.1: EHCI Host Controller
ehci_hcd 0000:00:0b.1: new USB bus registered, assigned bus number 1
ehci_hcd 0000:00:0b.1: debug port 1
PCI: cache line size of 64 is not supported by device 0000:00:0b.1
ehci_hcd 0000:00:0b.1: irq 7, io mem 0xb0005000
ehci_hcd 0000:00:0b.1: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 8 ports detected
ohci_hcd: 2006 August 04 USB 1.1 'Open' Host Controller (OHCI) Driver
SCSI subsystem initialized
forcedeth.c: Reverse Engineered nForce ethernet driver. Version 0.60.
ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 11
PCI: setting IRQ 11 as level-triggered
ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LUS0] -> GSI 11 (level, low) -> IRQ 11
PCI: Setting latency timer of device 0000:00:0b.0 to 64
ohci_hcd 0000:00:0b.0: OHCI Host Controller
ohci_hcd 0000:00:0b.0: new USB bus registered, assigned bus number 2
ohci_hcd 0000:00:0b.0: irq 11, io mem 0xb0004000
libata version 2.21 loaded.
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 8 ports detected
sata_nv 0000:00:0e.0: version 3.4
PCI: Enabling device 0000:00:0e.0 (0005 -> 0007)
ACPI: PCI Interrupt Link [LTID] enabled at IRQ 5
PCI: setting IRQ 5 as level-triggered
ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LTID] -> GSI 5 (level, low) -> IRQ 5
PCI: Setting latency timer of device 0000:00:0e.0 to 64
scsi0 : sata_nv
scsi1 : sata_nv
ata1: SATA max UDMA/133 cmd 0x00000000000130c0 ctl 0x00000000000130b6 bmdma 0x0000000000013090 irq 5
ata2: SATA max UDMA/133 cmd 0x00000000000130b8 ctl 0x00000000000130b2 bmdma 0x0000000000013098 irq 5
usb 1-4: new high speed USB device using ehci_hcd and address 3
ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
usb 1-4: configuration #1 chosen from 1 choice
ata1.00: ATA-7: SAMSUNG HM120JI, YF100-18, max UDMA/100
ata1.00: 234441648 sectors, multi 16: LBA48 
ata1.00: configured for UDMA/100
ata2: SATA link down (SStatus 0 SControl 300)
scsi 0:0:0:0: Direct-Access     ATA      SAMSUNG HM120JI  YF10 PQ: 0 ANSI: 5
ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 10
PCI: setting IRQ 10 as level-triggered
ACPI: PCI Interrupt 0000:00:14.0[A] -> Link [LMAC] -> GSI 10 (level, low) -> IRQ 10
PCI: Setting latency timer of device 0000:00:14.0 to 64
forcedeth: using HIGHDMA
usb 2-3: new full speed USB device using ohci_hcd and address 2
usb 2-3: configuration #1 chosen from 1 choice
eth0: forcedeth.c: subsystem: 0103c:30b7 bound to 0000:00:14.0
ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 11
ACPI: PCI Interrupt 0000:07:05.0[A] -> Link [LNK1] -> GSI 11 (level, low) -> IRQ 11
udev: renamed network interface eth0 to eth1
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
pnp: the driver 'ide' has been registered
firewire_ohci: Added fw-ohci device 0000:07:05.0, OHCI version 1.10
NFORCE-MCP51: IDE controller at PCI slot 0000:00:0d.0
NFORCE-MCP51: chipset revision 241
NFORCE-MCP51: not 100% native mode: will probe irqs later
NFORCE-MCP51: BIOS didn't set cable bits correctly. Enabling workaround.
NFORCE-MCP51: 0000:00:0d.0 (rev f1) UDMA133 controller
    ide0: BM-DMA at 0x3080-0x3087, BIOS settings: hda:DMA, hdb:pio
Probing IDE interface ide0...
sd 0:0:0:0: [sda] 234441648 512-byte hardware sectors (120034 MB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sd 0:0:0:0: [sda] 234441648 512-byte hardware sectors (120034 MB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sda:<6>usb 2-6: new low speed USB device using ohci_hcd and address 3
usb 2-6: configuration #1 chosen from 1 choice
usbcore: registered new interface driver hiddev
input: Logitech USB-PS/2 Optical Mouse as /class/input/input1
input: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:0b.0-6
usbcore: registered new interface driver usbhid
drivers/hid/usbhid/hid-core.c: v2.6:USB HID core driver
 sda1 sda2 sda3 sda4 < sda5<5>firewire_core: created new fw device fw0 (0 config rom retries)
 sda6 >
sd 0:0:0:0: [sda] Attached SCSI disk
hda: HL-DT-ST DVDRAM GSA-T20L, ATAPI CD/DVD-ROM drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
hda: ATAPI 24X DVD-ROM DVD-R-RAM CD-R/RW drive, 2048kB Cache, DMA
Uniform CD-ROM driver Revision: 3.20
Attempting manual resume
swsusp: Marking nosave pages: 000000000009d000 - 0000000000100000
swsusp: Basic memory bitmaps created
swsusp: Basic memory bitmaps freed
EXT3-fs: INFO: recovery required on readonly filesystem.
EXT3-fs: write access will be enabled during recovery.
kjournald starting.  Commit interval 5 seconds
EXT3-fs: recovery complete.
EXT3-fs: mounted filesystem with ordered data mode.
Bluetooth: Core ver 2.11
NET: Registered protocol family 31
Bluetooth: HCI device and connection manager initialized
Bluetooth: HCI socket layer initialized
i2c-adapter i2c-0: nForce2 SMBus adapter at 0x3040
i2c-adapter i2c-1: nForce2 SMBus adapter at 0x3000
Bluetooth: HCI USB driver ver 2.9
input: PC Speaker as /class/input/input2
ieee80211_crypt: registered algorithm 'NULL'
ieee80211: 802.11 data/management/control stack, git-1.1.13
ieee80211: Copyright (C) 2004-2005 Intel Corporation <jketreno@linux.intel.com>
sdhci: Secure Digital Host Controller Interface driver
sdhci: Copyright(c) Pierre Ossman
sdhci: SDHCI controller found at 0000:07:05.1 [1180:0822] (rev 19)
ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 11
ACPI: PCI Interrupt 0000:07:05.1[b] -> Link [LNK2] -> GSI 11 (level, low) -> IRQ 11
mmc0: SDHCI at 0xb8000800 irq 11 DMA
usbcore: registered new interface driver hci_usb
bcm43xx driver
ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 10
ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [LK4E] -> GSI 10 (level, low) -> IRQ 10
PCI: Setting latency timer of device 0000:03:00.0 to 64
bcm43xx: Chip ID 0x4311, rev 0x2
bcm43xx: Number of cores: 4
bcm43xx: Core 0: ID 0x800, rev 0x13, vendor 0x4243
bcm43xx: Core 1: ID 0x812, rev 0xd, vendor 0x4243
bcm43xx: Unsupported 80211 core revision 13
bcm43xx: Core 2: ID 0x817, rev 0x4, vendor 0x4243
bcm43xx: Core 3: ID 0x820, rev 0x5, vendor 0x4243
bcm43xx: PHY connected
bcm43xx: Detected PHY: Analog: 4, Type 2, Revision 9
bcm43xx: Invalid PHY Revision 9
bcm43xx: Detected Radio: ID: 2205017f (Manuf: 17f Ver: 2050 Rev: 2)
bcm43xx: Radio turned off
bcm43xx: Radio turned off
udev: renamed network interface eth0 to eth2
ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 9
PCI: setting IRQ 9 as level-triggered
ACPI: PCI Interrupt 0000:00:10.1[b] -> Link [LAZA] -> GSI 9 (level, low) -> IRQ 9
PCI: Setting latency timer of device 0000:00:10.1 to 64
Synaptics Touchpad, model: 1, fw: 6.3, id: 0x1a0b1, caps: 0xa04713/0x200000
input: SynPS/2 Synaptics TouchPad as /class/input/input3
Adding 690752k swap on /dev/sda6.  Priority:-1 extents:1 across:690752k
EXT3 FS on sda5, internal journal
loop: module loaded
device-mapper: ioctl: 4.11.0-ioctl (2006-10-12) initialised: dm-devel@redhat.com
powernow-k8: Found 2 AMD Athlon(tm) 64 X2 Dual Core Processor TK-53 processors (version 2.00.00)
powernow-k8:    0 : fid 0x9 (1700 MHz), vid 0x13
powernow-k8:    1 : fid 0x8 (1600 MHz), vid 0x14
powernow-k8:    2 : fid 0x0 (800 MHz), vid 0x1a
ACPI: Battery Slot [BAT0] (battery present)
ACPI: AC Adapter [ACAD] (on-line)
input: Power Button (FF) as /class/input/input4
ACPI: Power Button (FF) [PWRF]
input: Power Button (CM) as /class/input/input5
ACPI: Power Button (CM) [PWRB]
input: Sleep Button (CM) as /class/input/input6
ACPI: Sleep Button (CM) [SLPB]
input: Lid Switch as /class/input/input7
ACPI: Lid Switch [LID]
pnp: the driver 'parport_pc' has been registered
lp: driver loaded but no devices found
ppdev: user-space parallel port driver
Bluetooth: L2CAP ver 2.8
Bluetooth: L2CAP socket layer initialized
Bluetooth: RFCOMM socket layer initialized
Bluetooth: RFCOMM TTY layer initialized
Bluetooth: RFCOMM ver 1.8
bcm43xx: PHY connected
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: set security called, .level = 0, .enabled = 0, .encrypt = 0
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
NET: Registered protocol family 10
lo: Disabled Privacy Extensions
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
eth1: no IPv6 routers present
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
irq 7: nobody cared (try booting with the "irqpoll" option)

Call Trace:
 <IRQ>  [<ffffffff8025e007>] __report_bad_irq+0x30/0x72
 [<ffffffff8025e22c>] note_interrupt+0x1e3/0x227
 [<ffffffff8025ed00>] handle_level_irq+0xb9/0xf1
 [<ffffffff8020af1c>] call_softirq+0x1c/0x28
 [<ffffffff8020ca0d>] do_IRQ+0x6c/0xd3
 [<ffffffff8020a2a1>] ret_from_intr+0x0/0xa
 <EOI> 
handlers:
[<ffffffff8036776c>] (usb_hcd_irq+0x0/0x52)
Disabling IRQ #7
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
bcm43xx: Error: Microcode "bcm43xx_microcode5.fw" not available or load failed.
bcm43xx: core_up for active 802.11 core failed (-2)
Firefox didn't let me post the /var/log/* output, even if I just grepped out everything from a single day (401kb, ~81kb, respectively). It wanted to save "newpost.php" as a file. Sorry. Is there another way to get it here?
i80and is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Free Magazines
Run Your Own Web Server Using Linux & Apache - Free 191 Page Preview
Learn about everything you'll need to build and maintain your Linux servers, and to deploy Web applications to them.
subscribe
Open Source Security Myths Dispelled
Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization
subscribe
InformationWeek
InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology.
subscribe



All times are GMT. The time now is 12:13 AM.






© 2000 - 2009 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.3.0 RC2