All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: pc300too on a modern kernel?
       [not found]     ` <m3sjz34mka.fsf@intrepid.localdomain>
@ 2010-11-16 21:56       ` Bernie Innocenti
  2010-11-19 21:56         ` Krzysztof Halasa
  0 siblings, 1 reply; 5+ messages in thread
From: Bernie Innocenti @ 2010-11-16 21:56 UTC (permalink / raw)
  To: Krzysztof Halasa; +Cc: Ward Vandewege, lkml

[-- Attachment #1: Type: text/plain, Size: 3735 bytes --]

[cc += lkml]

On Sun, 2010-11-14 at 22:33 +0100, Krzysztof Halasa wrote:
> Well... could be a hardware problem. I'd make sure the card sits well in
> the PCI slot.

Nope, the card works perfectly in the old box and the bug triggers in
any PCI slot of the new box (running the new kernel with the pc300too
driver).


> Also... it's rather improbable, but I'd look at the SCA-II chip. There
> were certain chips with a hardware bug which could cause such problems.
> Chips with Hitachi logo and "R" letter after the lot code were ok, and
> all later chips made by Renesas (either missing any logo or with
> Renesas' - no "R" letter there) were ok.
> 
> The faulty chips were marked with Hitachi logo and were missing the "R"
> letter after the lot code. I think Hitachi fixed it in 1999 or so.
> I'm not sure if this bug could manifest itself when only one SCA channel
> was in use. The app note doesn't say a word about it, but I think I only
> experienced the problem (with an older card, not PC300) when both
> channels were simultaneously in use.

Looks like we've hit this bug! Here's a photo of the board to confirm
it's the bogus chip:

 http://people.sugarlabs.org/bernie/pc300too-photo.jpg


> It could also be some PLX PCI9050 oddity. Can you show me output of
> "lspci -vv" command (may be limited to the PC300 device)?

Attached as pc300too-lspci.out

> Also, please say something about the machine (CPU, motherboard). What
> speed are you trying to use it with?

Attached as pc300too-dmidecode.out

The most interesting thing is probably the dmesg output:


[   59.175900] bernie: stat=0x80, desc_address=ffffc900111003a8, port->chan=0
[   59.176639] bernie: cp=3b4, bp=1ef18, len=56, unused=12
[   67.159314] bernie: stat=0x80, desc_address=ffffc90011100390, port->chan=0
[   67.163214] bernie: cp=39c, bp=1e298, len=56, unused=12
[   68.425601] bernie: stat=0x80, desc_address=ffffc90011100390, port->chan=0
[   68.426123] bernie: cp=39c, bp=1e298, len=77, unused=12
[   70.312068] bernie: stat=0x80, desc_address=ffffc900111003b4, port->chan=0
[   70.314393] bernie: cp=3c0, bp=1f558, len=1504, unused=12

So it seems that sometimes the controller doesn't always clear the EOM
(0x80) status bit after transmitting a frame. Size and contents of the
packet doesn't seem to matter We're using a single T1 channel.

To obtain this debug output, I modified the driver as follows:

--- linux-2.6.36.orig/drivers/net/wan/hd64572.c	2010-10-20 16:30:22.000000000 -0400
+++ linux-2.6.36/drivers/net/wan/hd64572.c	2010-11-12 20:48:03.000000000 -0500
@@ -567,11 +567,20 @@ static netdev_tx_t sca_xmit(struct sk_bu
 	card_t *card = port->card;
 	pkt_desc __iomem *desc;
 	u32 buff, len;
+	uint8_t stat;
 
 	spin_lock_irq(&port->lock);
 
 	desc = desc_address(port, port->txin + 1, 1);
-	BUG_ON(readb(&desc->stat)); /* previous xmit should stop queue */
+
+	//BUG_ON(readb(&desc->stat)); /* previous xmit should stop queue */
+	stat = readb(&desc->stat); /* previous xmit should stop queue */
+	if (stat) {
+		printk(KERN_EMERG "bernie: stat=0x%02x, desc_address=%p, port->chan=%d\n", stat, desc, port->chan);
+		printk(KERN_EMERG "bernie: cp=%x, bp=%x, len=%d, unused=%x\n", readw(&desc->cp), readl(&desc->bp), readw(&desc->len), readb(&desc->unused));
+		printk(KERN_EMERG "bernie: %s TX(%i):", dev->name, skb->len);
+		debug_frame(skb);
+	}
 
 #ifdef DEBUG_PKT
 	printk(KERN_DEBUG "%s TX(%i):", dev->name, skb->len);


With this patch applied, our system doesn't crash any more and
communication works both ways with negligible packet loss.

Shall we submit a patch lowering the BUG_ON() to a KERN_ERR to report
the problem only once?

-- 
   // Bernie Innocenti - http://codewiz.org/
 \X/  Sugar Labs       - http://sugarlabs.org/

[-- Attachment #2: pc300too-dmesg.out --]
[-- Type: text/plain, Size: 55749 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.36 (root@newvalis.gnu.org) (gcc version 4.3.2 (Debian 4.3.2-1.1) ) #1 SMP Mon Nov 8 20:40:14 EST 2010
[    0.000000] Command line: root=/dev/md0 ro console=tty0 console=ttyS0,115200n8 
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 0000000000098400 (usable)
[    0.000000]  BIOS-e820: 0000000000098400 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000008fd81000 (usable)
[    0.000000]  BIOS-e820: 000000008fde0000 - 000000008fde3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000008fde3000 - 000000008fdf0000 (ACPI data)
[    0.000000]  BIOS-e820: 000000008fdf0000 - 000000008fe00000 (reserved)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 0000000150000000 (usable)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI 2.4 present.
[    0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] No AGP bridge found
[    0.000000] last_pfn = 0x150000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-C7FFF write-protect
[    0.000000]   C8000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFF0000000 write-back
[    0.000000]   2 base 00008FE00000 mask FFFFFFE00000 uncachable
[    0.000000]   3 base 000100000000 mask FFFFC0000000 write-back
[    0.000000]   4 base 000140000000 mask FFFFF0000000 write-back
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000150000000 aka 5376M
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820 update range: 000000008fe00000 - 0000000100000000 (usable) ==> (reserved)
[    0.000000] last_pfn = 0x8fd81 max_arch_pfn = 0x400000000
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] found SMP MP-table at [ffff8800000f59c0] f59c0
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: 0000000000000000-000000008fd81000
[    0.000000]  0000000000 - 0080000000 page 1G
[    0.000000]  0080000000 - 008fc00000 page 2M
[    0.000000]  008fc00000 - 008fd81000 page 4k
[    0.000000] kernel direct mapping tables up to 8fd81000 @ 8000-b000
[    0.000000] init_memory_mapping: 0000000100000000-0000000150000000
[    0.000000]  0100000000 - 0140000000 page 1G
[    0.000000]  0140000000 - 0150000000 page 2M
[    0.000000] kernel direct mapping tables up to 150000000 @ a000-c000
[    0.000000] RAMDISK: 378c1000 - 37ff0000
[    0.000000] ACPI: RSDP 00000000000f7360 00014 (v00 GBT   )
[    0.000000] ACPI: RSDT 000000008fde3000 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: FACP 000000008fde3040 00074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: DSDT 000000008fde30c0 0747E (v01 GBT    GBTUACPI 00001000 MSFT 03000000)
[    0.000000] ACPI: FACS 000000008fde0000 00040
[    0.000000] ACPI: SSDT 000000008fdea600 0088C (v01 PTLTD  POWERNOW 00000001  LTP 00000001)
[    0.000000] ACPI: HPET 000000008fdeaec0 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
[    0.000000] ACPI: MCFG 000000008fdeaf00 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: TAMG 000000008fdeaf40 0032A (v01 GBT    GBT   B0 5455312E BG?? 53450101)
[    0.000000] ACPI: APIC 000000008fdea540 00084 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000150000000
[    0.000000] Initmem setup node 0 0000000000000000-0000000150000000
[    0.000000]   NODE_DATA [0000000100000000 - 0000000100004fff]
[    0.000000]  [ffffea0000000000-ffffea00049fffff] PMD -> [ffff880100200000-ffff8801033fffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000001 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00150000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000001 -> 0x00000098
[    0.000000]     0: 0x00000100 -> 0x0008fd81
[    0.000000]     0: 0x00100000 -> 0x00150000
[    0.000000] On node 0 totalpages: 916760
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3935 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 570809 pages, LIFO batch:31
[    0.000000]   Normal zone: 4480 pages used for memmap
[    0.000000]   Normal zone: 323200 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] early_res array is doubled to 64 at [7000 - 77ff]
[    0.000000] PM: Registered nosave memory: 0000000000098000 - 0000000000099000
[    0.000000] PM: Registered nosave memory: 0000000000099000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 000000008fd81000 - 000000008fde0000
[    0.000000] PM: Registered nosave memory: 000000008fde0000 - 000000008fde3000
[    0.000000] PM: Registered nosave memory: 000000008fde3000 - 000000008fdf0000
[    0.000000] PM: Registered nosave memory: 000000008fdf0000 - 000000008fe00000
[    0.000000] PM: Registered nosave memory: 000000008fe00000 - 00000000e0000000
[    0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
[    0.000000] Allocating PCI resources starting at 8fe00000 (gap: 8fe00000:50200000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 27 pages/cpu @ffff880001800000 s78976 r8192 d23424 u524288
[    0.000000] pcpu-alloc: s78976 r8192 d23424 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 897944
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: root=/dev/md0 ro console=tty0 console=ttyS0,115200n8 
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Node 0: aperture @ 14000000 size 32 MB
[    0.000000] Aperture pointing to e820 RAM. Ignoring.
[    0.000000] Your BIOS doesn't leave a aperture memory hole
[    0.000000] Please enable the IOMMU option in the BIOS setup
[    0.000000] This costs you 64 MB of RAM
[    0.000000] Mapping aperture over 65536 KB of RAM @ 20000000
[    0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000024000000
[    0.000000] early_res array is doubled to 128 at [b000 - bfff]
[    0.000000] Subtract (58 early reservations)
[    0.000000]   #1 [0001000000 - 00015dcba0]   TEXT DATA BSS
[    0.000000]   #2 [00378c1000 - 0037ff0000]         RAMDISK
[    0.000000]   #3 [00015dd000 - 00015dd106]             BRK
[    0.000000]   #4 [00000f59d0 - 0000100000]   BIOS reserved
[    0.000000]   #5 [00000f59c0 - 00000f59d0]    MP-table mpf
[    0.000000]   #6 [0000098400 - 00000f1100]   BIOS reserved
[    0.000000]   #7 [00000f129c - 00000f59c0]   BIOS reserved
[    0.000000]   #8 [00000f1100 - 00000f129c]    MP-table mpc
[    0.000000]   #9 [0000001000 - 0000003000]      TRAMPOLINE
[    0.000000]   #10 [0000003000 - 0000007000]     ACPI WAKEUP
[    0.000000]   #11 [0000008000 - 000000a000]         PGTABLE
[    0.000000]   #12 [000000a000 - 000000b000]         PGTABLE
[    0.000000]   #13 [0100000000 - 0100005000]       NODE_DATA
[    0.000000]   #14 [00015dd140 - 00015de140]         BOOTMEM
[    0.000000]   #15 [00015dcbc0 - 00015dce60]         BOOTMEM
[    0.000000]   #16 [0100005000 - 0100006000]         BOOTMEM
[    0.000000]   #17 [0100006000 - 0100007000]         BOOTMEM
[    0.000000]   #18 [0100200000 - 0103400000]        MEMMAP 0
[    0.000000]   #19 [00015dce80 - 00015dd000]         BOOTMEM
[    0.000000]   #20 [00015de140 - 00015f6140]         BOOTMEM
[    0.000000]   #21 [00015f6140 - 0001602140]         BOOTMEM
[    0.000000]   #22 [0001603000 - 0001604000]         BOOTMEM
[    0.000000]   #23 [0001602140 - 0001602181]         BOOTMEM
[    0.000000]   #24 [00016021c0 - 0001602203]         BOOTMEM
[    0.000000]   #25 [0001602240 - 00016024a8]         BOOTMEM
[    0.000000]   #26 [00016024c0 - 0001602528]         BOOTMEM
[    0.000000]   #27 [0001602540 - 00016025a8]         BOOTMEM
[    0.000000]   #28 [00016025c0 - 0001602628]         BOOTMEM
[    0.000000]   #29 [0001602640 - 00016026a8]         BOOTMEM
[    0.000000]   #30 [00016026c0 - 0001602728]         BOOTMEM
[    0.000000]   #31 [0001602740 - 00016027a8]         BOOTMEM
[    0.000000]   #32 [00016027c0 - 0001602828]         BOOTMEM
[    0.000000]   #33 [0001602840 - 00016028a8]         BOOTMEM
[    0.000000]   #34 [00016028c0 - 0001602928]         BOOTMEM
[    0.000000]   #35 [0001602940 - 00016029a8]         BOOTMEM
[    0.000000]   #36 [00016029c0 - 00016029e0]         BOOTMEM
[    0.000000]   #37 [0001602a00 - 0001602a20]         BOOTMEM
[    0.000000]   #38 [0001602a40 - 0001602a76]         BOOTMEM
[    0.000000]   #39 [0001602a80 - 0001602ab6]         BOOTMEM
[    0.000000]   #40 [0001800000 - 000181b000]         BOOTMEM
[    0.000000]   #41 [0001880000 - 000189b000]         BOOTMEM
[    0.000000]   #42 [0001900000 - 000191b000]         BOOTMEM
[    0.000000]   #43 [0001980000 - 000199b000]         BOOTMEM
[    0.000000]   #44 [0001602ac0 - 0001602ac8]         BOOTMEM
[    0.000000]   #45 [0001602b00 - 0001602b08]         BOOTMEM
[    0.000000]   #46 [0001602b40 - 0001602b50]         BOOTMEM
[    0.000000]   #47 [0001602b80 - 0001602ba0]         BOOTMEM
[    0.000000]   #48 [0001602bc0 - 0001602cf0]         BOOTMEM
[    0.000000]   #49 [0001602d00 - 0001602d50]         BOOTMEM
[    0.000000]   #50 [0001602d80 - 0001602dd0]         BOOTMEM
[    0.000000]   #51 [0001604000 - 000160c000]         BOOTMEM
[    0.000000]   #52 [0020000000 - 0024000000]         BOOTMEM
[    0.000000]   #53 [0001602e00 - 0001602e20]         BOOTMEM
[    0.000000]   #54 [000199b000 - 000599b000]         BOOTMEM
[    0.000000]   #55 [000160c000 - 000162c000]         BOOTMEM
[    0.000000]   #56 [000162c000 - 000166c000]         BOOTMEM
[    0.000000]   #57 [000000c000 - 0000014000]         BOOTMEM
[    0.000000] Memory: 3470308k/5505024k available (2811k kernel code, 1837984k absent, 196732k reserved, 1719k data, 608k init)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Verbose stalled-CPUs detection is disabled.
[    0.000000] NR_IRQS:1280
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] console [ttyS0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2310.063 MHz processor.
[    0.016005] Calibrating delay loop (skipped), value calculated using timer frequency.. 4620.12 BogoMIPS (lpj=9240240)
[    0.024003] pid_max: default: 32768 minimum: 301
[    0.028037] Security Framework initialized
[    0.032004] SELinux:  Disabled at boot.
[    0.036372] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.044010] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.048648] Mount-cache hash table entries: 256
[    0.052110] Initializing cgroup subsys ns
[    0.056004] Initializing cgroup subsys cpuacct
[    0.060004] Initializing cgroup subsys devices
[    0.064025] tseg: 008fe00000
[    0.064027] CPU: Physical Processor ID: 0
[    0.068002] CPU: Processor Core ID: 0
[    0.072003] mce: CPU supports 6 MCE banks
[    0.076008] Performance Events: AMD PMU driver.
[    0.081524] ... version:                0
[    0.084002] ... bit width:              48
[    0.088002] ... generic registers:      4
[    0.092002] ... value mask:             0000ffffffffffff
[    0.096002] ... max period:             00007fffffffffff
[    0.100002] ... fixed-purpose events:   0
[    0.104002] ... event mask:             000000000000000f
[    0.108643] ACPI: Core revision 20100702
[    0.124061] Setting APIC routing to flat
[    0.128495] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.173697] CPU0: AMD Athlon(tm) II X4 605e Processor stepping 02
[    0.180000] Booting Node   0, Processors  #1 #2 #3 Ok.
[    0.456006] Brought up 4 CPUs
[    0.459006] Total of 4 processors activated (18482.86 BogoMIPS).
[    0.460405] NET: Registered protocol family 16
[    0.464039] node 0 link 0: io port [c000, ffff]
[    0.464039] TOM: 00000000b0000000 aka 2816M
[    0.468002] Fam 10h mmconf [e0000000, e00fffff]
[    0.468004] node 0 link 0: mmio [a0000, bffff]
[    0.468007] node 0 link 0: mmio [b0000000, dfffffff]
[    0.468009] node 0 link 0: mmio [f0000000, fe02ffff]
[    0.468011] node 0 link 0: mmio [e0000000, e03fffff] ==> [e0100000, e03fffff]
[    0.468015] TOM2: 0000000150000000 aka 5376M
[    0.472002] bus: [00, 03] on node 0 link 0
[    0.472004] bus: 00 index 0 [io  0x0000-0xffff]
[    0.472007] bus: 00 index 1 [mem 0x000a0000-0x000bffff]
[    0.472008] bus: 00 index 2 [mem 0xb0000000-0xdfffffff]
[    0.472010] bus: 00 index 3 [mem 0xe0400000-0xffffffff]
[    0.472012] bus: 00 index 4 [mem 0xe0100000-0xe03fffff]
[    0.472014] bus: 00 index 5 [mem 0x150000000-0xfcffffffff]
[    0.472044] ACPI: bus type pci registered
[    0.476040] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.488003] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.519273] PCI: Using configuration type 1 for base access
[    0.524052] bio: create slab <bio-0> at 0
[    0.528548] ACPI: EC: Look up EC in DSDT
[    0.538213] ACPI: Interpreter enabled
[    0.540003] ACPI: (supports S0 S3 S4 S5)
[    0.545257] ACPI: Using IOAPIC for interrupt routing
[    0.556116] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.564096] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.572166] pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7]
[    0.576002] pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff]
[    0.584002] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.592002] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
[    0.600002] pci_root PNP0A03:00: host bridge window [mem 0xaff00000-0xfebfffff]
[    0.604020] pci 0000:00:00.0: reg 1c: [mem 0xe0000000-0xffffffff 64bit]
[    0.604103] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
[    0.604106] pci 0000:00:0a.0: PME# disabled
[    0.604147] pci 0000:00:11.0: reg 10: [io  0xff00-0xff07]
[    0.604157] pci 0000:00:11.0: reg 14: [io  0xfe00-0xfe03]
[    0.604166] pci 0000:00:11.0: reg 18: [io  0xfd00-0xfd07]
[    0.604176] pci 0000:00:11.0: reg 1c: [io  0xfc00-0xfc03]
[    0.604185] pci 0000:00:11.0: reg 20: [io  0xfb00-0xfb0f]
[    0.604195] pci 0000:00:11.0: reg 24: [mem 0xfe02f000-0xfe02f3ff]
[    0.604249] pci 0000:00:12.0: reg 10: [mem 0xfe02e000-0xfe02efff]
[    0.604320] pci 0000:00:12.1: reg 10: [mem 0xfe02d000-0xfe02dfff]
[    0.604403] pci 0000:00:12.2: reg 10: [mem 0xfe02c000-0xfe02c0ff]
[    0.604470] pci 0000:00:12.2: supports D1 D2
[    0.604472] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.604476] pci 0000:00:12.2: PME# disabled
[    0.604507] pci 0000:00:13.0: reg 10: [mem 0xfe02b000-0xfe02bfff]
[    0.608074] pci 0000:00:13.1: reg 10: [mem 0xfe02a000-0xfe02afff]
[    0.608156] pci 0000:00:13.2: reg 10: [mem 0xfe029000-0xfe0290ff]
[    0.608223] pci 0000:00:13.2: supports D1 D2
[    0.608225] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.608229] pci 0000:00:13.2: PME# disabled
[    0.608352] pci 0000:00:14.1: reg 10: [io  0x0000-0x0007]
[    0.608362] pci 0000:00:14.1: reg 14: [io  0x0000-0x0003]
[    0.608371] pci 0000:00:14.1: reg 18: [io  0x0000-0x0007]
[    0.608380] pci 0000:00:14.1: reg 1c: [io  0x0000-0x0003]
[    0.608389] pci 0000:00:14.1: reg 20: [io  0xfa00-0xfa0f]
[    0.608456] pci 0000:00:14.2: reg 10: [mem 0xfe024000-0xfe027fff 64bit]
[    0.608511] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.608515] pci 0000:00:14.2: PME# disabled
[    0.608645] pci 0000:00:14.5: reg 10: [mem 0xfe028000-0xfe028fff]
[    0.608791] pci 0000:01:05.0: reg 10: [mem 0xd0000000-0xdfffffff pref]
[    0.608795] pci 0000:01:05.0: reg 14: [io  0xee00-0xeeff]
[    0.608800] pci 0000:01:05.0: reg 18: [mem 0xfdfe0000-0xfdfeffff]
[    0.608809] pci 0000:01:05.0: reg 24: [mem 0xfde00000-0xfdefffff]
[    0.608820] pci 0000:01:05.0: supports D1 D2
[    0.608835] pci 0000:01:05.1: reg 10: [mem 0xfdffc000-0xfdffffff]
[    0.608857] pci 0000:01:05.1: supports D1 D2
[    0.608893] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.612003] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.612006] pci 0000:00:01.0:   bridge window [mem 0xfde00000-0xfdffffff]
[    0.612009] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.612052] pci 0000:02:00.0: reg 10: [io  0xde00-0xdeff]
[    0.612071] pci 0000:02:00.0: reg 18: [mem 0xfdbff000-0xfdbfffff 64bit pref]
[    0.612084] pci 0000:02:00.0: reg 20: [mem 0xfdbe0000-0xfdbeffff 64bit pref]
[    0.612094] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
[    0.612121] pci 0000:02:00.0: supports D1 D2
[    0.612123] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.612127] pci 0000:02:00.0: PME# disabled
[    0.620035] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
[    0.624005] pci 0000:00:0a.0:   bridge window [io  0xd000-0xdfff]
[    0.624008] pci 0000:00:0a.0:   bridge window [mem 0xfdd00000-0xfddfffff]
[    0.624012] pci 0000:00:0a.0:   bridge window [mem 0xfdb00000-0xfdbfffff 64bit pref]
[    0.624066] pci 0000:03:06.0: reg 10: [io  0xcf00-0xcf3f]
[    0.624127] pci 0000:03:06.0: reg 30: [mem 0x00000000-0x0000ffff pref]
[    0.624164] pci 0000:03:07.0: reg 10: [mem 0xcffff000-0xcffff07f]
[    0.624177] pci 0000:03:07.0: reg 14: [io  0xce00-0xce7f]
[    0.624189] pci 0000:03:07.0: reg 18: [mem 0xcfffe000-0xcfffe3ff]
[    0.624202] pci 0000:03:07.0: reg 1c: [mem 0xfdc80000-0xfdcfffff pref]
[    0.624225] pci 0000:03:07.0: reg 24: [mem 0xcfffd000-0xcfffd0ff]
[    0.624289] pci 0000:03:0e.0: reg 10: [mem 0xcfffc000-0xcfffc7ff]
[    0.624302] pci 0000:03:0e.0: reg 14: [mem 0xcfff8000-0xcfffbfff]
[    0.624379] pci 0000:03:0e.0: supports D1 D2
[    0.624381] pci 0000:03:0e.0: PME# supported from D0 D1 D2 D3hot
[    0.624386] pci 0000:03:0e.0: PME# disabled
[    0.624419] pci 0000:00:14.4: PCI bridge to [bus 03-03] (subtractive decode)
[    0.632004] pci 0000:00:14.4:   bridge window [io  0xc000-0xcfff]
[    0.632008] pci 0000:00:14.4:   bridge window [mem 0xb0000000-0xcfffffff]
[    0.632013] pci 0000:00:14.4:   bridge window [mem 0xfdc00000-0xfdcfffff pref]
[    0.632015] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.632018] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.632020] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.632023] pci 0000:00:14.4:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
[    0.632026] pci 0000:00:14.4:   bridge window [mem 0xaff00000-0xfebfffff] (subtractive decode)
[    0.632040] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.632348] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
[    0.632439] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCEA._PRT]
[    0.632482] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
[    0.648681] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.657277] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.665275] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.673277] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.681278] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.689273] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.697274] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.705278] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.713255] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    0.720004] vgaarb: loaded
[    0.724037] usbcore: registered new interface driver usbfs
[    0.728038] usbcore: registered new interface driver hub
[    0.732038] usbcore: registered new device driver usb
[    0.740038] PCI: Using ACPI for IRQ routing
[    0.744003] PCI: pci_cache_line_size set to 64 bytes
[    0.744010] pci 0000:00:00.0: no compatible bridge window for [mem 0xe0000000-0xffffffff 64bit]
[    0.752077] reserve RAM buffer: 0000000000098400 - 000000000009ffff 
[    0.752079] reserve RAM buffer: 000000008fd81000 - 000000008fffffff 
[    0.752101] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    0.757361] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
[    0.766036] Switching to clocksource tsc
[    0.768938] pnp: PnP ACPI init
[    0.772036] ACPI: bus type pnp registered
[    0.776768] pnp 00:02: disabling [mem 0x00000000-0x00000fff window] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
[    0.789423] pnp 00:02: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:02:00.0 BAR 6 [mem 0x00000000-0x0000ffff pref]
[    0.802746] pnp 00:02: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:03:06.0 BAR 6 [mem 0x00000000-0x0000ffff pref]
[    0.818038] pnp 00:0d: disabling [mem 0x000d4400-0x000d7fff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
[    0.830061] pnp 00:0d: disabling [mem 0x000f0000-0x000f7fff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
[    0.842084] pnp 00:0d: disabling [mem 0x000f8000-0x000fbfff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
[    0.854106] pnp 00:0d: disabling [mem 0x000fc000-0x000fffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
[    0.866131] pnp 00:0d: disabling [mem 0x00000000-0x0009ffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
[    0.878154] pnp 00:0d: disabling [mem 0x00100000-0x8fddffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
[    0.890323] pnp: PnP ACPI: found 14 devices
[    0.894543] ACPI: ACPI bus type pnp unregistered
[    0.899194] system 00:01: [io  0x04d0-0x04d1] has been reserved
[    0.905145] system 00:01: [io  0x0220-0x0225] has been reserved
[    0.911092] system 00:01: [io  0x0290-0x0294] has been reserved
[    0.917041] system 00:02: [io  0x4100-0x411f] has been reserved
[    0.922994] system 00:02: [io  0x0228-0x022f] has been reserved
[    0.928939] system 00:02: [io  0x040b] has been reserved
[    0.934280] system 00:02: [io  0x04d6] has been reserved
[    0.939618] system 00:02: [io  0x0c00-0x0c01] has been reserved
[    0.945566] system 00:02: [io  0x0c14] has been reserved
[    0.950905] system 00:02: [io  0x0c50-0x0c52] has been reserved
[    0.956854] system 00:02: [io  0x0c6c-0x0c6d] has been reserved
[    0.962800] system 00:02: [io  0x0c6f] has been reserved
[    0.968140] system 00:02: [io  0x0cd0-0x0cd1] has been reserved
[    0.974088] system 00:02: [io  0x0cd2-0x0cd3] has been reserved
[    0.980041] system 00:02: [io  0x0cd4-0x0cdf] has been reserved
[    0.985988] system 00:02: [io  0x4000-0x40fe] has been reserved
[    0.991936] system 00:02: [io  0x4210-0x4217] has been reserved
[    0.997883] system 00:02: [io  0x0b00-0x0b0f] has been reserved
[    1.003837] system 00:02: [io  0x0b10-0x0b1f] has been reserved
[    1.009784] system 00:02: [io  0x0b20-0x0b3f] has been reserved
[    1.015738] system 00:02: [mem 0xfee00400-0xfee00fff window] has been reserved
[    1.022995] system 00:0c: [mem 0xe0000000-0xefffffff] has been reserved
[    1.029639] system 00:0d: [mem 0x8fde0000-0x8fdfffff] could not be reserved
[    1.036631] system 00:0d: [mem 0xffff0000-0xffffffff] has been reserved
[    1.043273] system 00:0d: [mem 0x8fef0000-0xafeeffff] could not be reserved
[    1.050258] system 00:0d: [mem 0xfec00000-0xfec00fff] could not be reserved
[    1.057247] system 00:0d: [mem 0xfee00000-0xfee00fff] could not be reserved
[    1.064243] system 00:0d: [mem 0xfff80000-0xfffeffff] has been reserved
[    1.078044] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    1.083303] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    1.089426] pci 0000:00:01.0:   bridge window [mem 0xfde00000-0xfdffffff]
[    1.096246] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    1.104019] pci 0000:02:00.0: BAR 6: assigned [mem 0xfdb00000-0xfdb0ffff pref]
[    1.111270] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
[    1.116531] pci 0000:00:0a.0:   bridge window [io  0xd000-0xdfff]
[    1.122652] pci 0000:00:0a.0:   bridge window [mem 0xfdd00000-0xfddfffff]
[    1.129466] pci 0000:00:0a.0:   bridge window [mem 0xfdb00000-0xfdbfffff 64bit pref]
[    1.137245] pci 0000:03:06.0: BAR 6: assigned [mem 0xfdc00000-0xfdc0ffff pref]
[    1.144499] pci 0000:00:14.4: PCI bridge to [bus 03-03]
[    1.149759] pci 0000:00:14.4:   bridge window [io  0xc000-0xcfff]
[    1.155888] pci 0000:00:14.4:   bridge window [mem 0xb0000000-0xcfffffff]
[    1.162711] pci 0000:00:14.4:   bridge window [mem 0xfdc00000-0xfdcfffff pref]
[    1.169984] pci 0000:00:0a.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.176719] pci 0000:00:0a.0: setting latency timer to 64
[    1.176727] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    1.176729] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    1.176731] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    1.176733] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
[    1.176736] pci_bus 0000:00: resource 8 [mem 0xaff00000-0xfebfffff]
[    1.176738] pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
[    1.176740] pci_bus 0000:01: resource 1 [mem 0xfde00000-0xfdffffff]
[    1.176743] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    1.176745] pci_bus 0000:02: resource 0 [io  0xd000-0xdfff]
[    1.176748] pci_bus 0000:02: resource 1 [mem 0xfdd00000-0xfddfffff]
[    1.176750] pci_bus 0000:02: resource 2 [mem 0xfdb00000-0xfdbfffff 64bit pref]
[    1.176752] pci_bus 0000:03: resource 0 [io  0xc000-0xcfff]
[    1.176755] pci_bus 0000:03: resource 1 [mem 0xb0000000-0xcfffffff]
[    1.176757] pci_bus 0000:03: resource 2 [mem 0xfdc00000-0xfdcfffff pref]
[    1.176759] pci_bus 0000:03: resource 4 [io  0x0000-0x0cf7]
[    1.176761] pci_bus 0000:03: resource 5 [io  0x0d00-0xffff]
[    1.176763] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
[    1.176766] pci_bus 0000:03: resource 7 [mem 0x000c0000-0x000dffff]
[    1.176768] pci_bus 0000:03: resource 8 [mem 0xaff00000-0xfebfffff]
[    1.176845] NET: Registered protocol family 2
[    1.181393] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    1.189919] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    1.199981] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    1.207019] TCP: Hash tables configured (established 524288 bind 65536)
[    1.213668] TCP reno registered
[    1.216859] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    1.222925] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    1.229537] NET: Registered protocol family 1
[    1.233942] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
[    1.380053] pci 0000:01:05.0: Boot video device
[    1.380069] PCI: CLS 4 bytes, default 64
[    1.380114] Trying to unpack rootfs image as initramfs...
[    1.533921] Freeing initrd memory: 7356k freed
[    1.541095] PCI-DMA: Disabling AGP.
[    1.544806] PCI-DMA: aperture base @ 20000000 size 65536 KB
[    1.550422] PCI-DMA: using GART IOMMU.
[    1.554207] PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
[    1.564867] audit: initializing netlink socket (disabled)
[    1.570315] type=2000 audit(1289958061.568:1): initialized
[    1.576099] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.582687] VFS: Disk quotas dquot_6.5.2
[    1.586685] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.593223] msgmni has been set to 6921
[    1.597325] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    1.604766] io scheduler noop registered
[    1.608722] io scheduler deadline registered
[    1.614324] io scheduler cfq registered (default)
[    1.619930] Linux agpgart interface v0.103
[    1.624075] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.650900] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    1.677736] 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    1.684940] brd: module loaded
[    1.688237] PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    1.694453] PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    1.704320] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.709515] mice: PS/2 mouse device common for all mice
[    1.714885] rtc_cmos 00:05: RTC can wake from S4
[    1.719648] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    1.725809] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    1.732264] cpuidle: using governor ladder
[    1.736397] cpuidle: using governor menu
[    1.740565] TCP cubic registered
[    1.742773] input: AT Translated Set 2 keyboard as /class/input/input0
[    1.750385] NET: Registered protocol family 17
[    1.754867] Registering the dns_resolver key type
[    1.759787] registered taskstats version 1
[    1.764206] rtc_cmos 00:05: setting system clock to 2010-11-17 01:41:03 UTC (1289958063)
[    1.772481] Freeing unused kernel memory: 608k freed
[    1.858877] udevd (521): /proc/521/oom_adj is deprecated, please use /proc/521/oom_score_adj instead.
[    2.046448] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.052474] Floppy drive(s): fd0 is 1.44M
[    2.070120] SCSI subsystem initialized
[    2.075593] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.081004] FDC 0 is a post-1991 82077
[    2.086187] Warning! ehci_hcd should always be loaded before uhci_hcd and ohci_hcd, not after
[    2.113258] Uniform Multi-Platform E-IDE driver
[    2.133777] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    2.139570] r8169 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.146680] r8169 0000:02:00.0: setting latency timer to 64
[    2.146717] r8169 0000:02:00.0: irq 40 for MSI/MSI-X
[    2.146913] r8169 0000:02:00.0: eth0: RTL8168c/8111c at 0xffffc9000067e000, 6c:f0:49:7a:b7:cc, XID 1c4000c0 IRQ 40
[    2.160721] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    2.168187] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    2.171423] libata version 3.00 loaded.
[    2.173604] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 1
[    2.181195] ohci_hcd 0000:00:12.0: irq 16, io mem 0xfe02e000
[    2.189726] 3c59x 0000:03:06.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[    2.196769] 3c59x: Donald Becker and others.
[    2.201143] 0000:03:06.0: 3Com PCI 3c905 Boomerang 100baseTx at 000000000001cf00.
[    2.231351] ohci1394 0000:03:0e.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    2.244050] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
[    2.251033] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.258418] usb usb1: Product: OHCI Host Controller
[    2.263425] usb usb1: Manufacturer: Linux 2.6.36 ohci_hcd
[    2.268930] usb usb1: SerialNumber: 0000:00:12.0
[    2.273740] hub 1-0:1.0: USB hub found
[    2.277604] hub 1-0:1.0: 3 ports detected
[    2.281856] ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    2.289177] ohci_hcd 0000:00:12.1: OHCI Host Controller
[    2.294569] ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 2
[    2.302150] ohci_hcd 0000:00:12.1: irq 16, io mem 0xfe02d000
[    2.307991] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[22]  MMIO=[cfffc000-cfffc7ff]  Max Packet=[2048]  IR/IT contexts=[4/8]
[    2.364034] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    2.370982] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.378421] usb usb2: Product: OHCI Host Controller
[    2.383385] usb usb2: Manufacturer: Linux 2.6.36 ohci_hcd
[    2.388946] usb usb2: SerialNumber: 0000:00:12.1
[    2.393768] hub 2-0:1.0: USB hub found
[    2.397605] hub 2-0:1.0: 3 ports detected
[    2.401888] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.409238] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    2.414624] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 3
[    2.422245] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe02b000
[    2.488027] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    2.494996] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.502410] usb usb3: Product: OHCI Host Controller
[    2.507427] usb usb3: Manufacturer: Linux 2.6.36 ohci_hcd
[    2.512926] usb usb3: SerialNumber: 0000:00:13.0
[    2.517758] hub 3-0:1.0: USB hub found
[    2.521610] hub 3-0:1.0: 3 ports detected
[    2.525854] ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.533156] ohci_hcd 0000:00:13.1: OHCI Host Controller
[    2.538538] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 4
[    2.546123] ohci_hcd 0000:00:13.1: irq 18, io mem 0xfe02a000
[    2.608026] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    2.614986] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.622383] usb usb4: Product: OHCI Host Controller
[    2.627401] usb usb4: Manufacturer: Linux 2.6.36 ohci_hcd
[    2.632978] usb usb4: SerialNumber: 0000:00:13.1
[    2.637825] hub 4-0:1.0: USB hub found
[    2.641637] hub 4-0:1.0: 3 ports detected
[    2.645934] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    2.653267] ohci_hcd 0000:00:14.5: OHCI Host Controller
[    2.658685] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 5
[    2.666289] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe028000
[    2.732026] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    2.739001] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.746453] usb usb5: Product: OHCI Host Controller
[    2.751428] usb usb5: Manufacturer: Linux 2.6.36 ohci_hcd
[    2.756917] usb usb5: SerialNumber: 0000:00:14.5
[    2.761777] hub 5-0:1.0: USB hub found
[    2.765660] hub 5-0:1.0: 2 ports detected
[    2.769940] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    2.777481] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    2.782937] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 6
[    2.790625] ehci_hcd 0000:00:12.2: debug port 1
[    2.795397] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe02c000
[    2.812054] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    2.817997] usb usb6: New USB device found, idVendor=1d6b, idProduct=0002
[    2.824952] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.832329] usb usb6: Product: EHCI Host Controller
[    2.837318] usb usb6: Manufacturer: Linux 2.6.36 ehci_hcd
[    2.842866] usb usb6: SerialNumber: 0000:00:12.2
[    2.847701] hub 6-0:1.0: USB hub found
[    2.851548] hub 6-0:1.0: 6 ports detected
[    2.855849] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    2.863217] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    2.868592] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 7
[    2.876211] ehci_hcd 0000:00:13.2: debug port 1
[    2.880937] ehci_hcd 0000:00:13.2: irq 19, io mem 0xfe029000
[    2.896056] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    2.901958] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002
[    2.908917] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.916285] usb usb7: Product: EHCI Host Controller
[    2.921301] usb usb7: Manufacturer: Linux 2.6.36 ehci_hcd
[    2.926796] usb usb7: SerialNumber: 0000:00:13.2
[    2.931614] hub 7-0:1.0: USB hub found
[    2.935477] hub 7-0:1.0: 6 ports detected
[    2.939772] atiixp 0000:00:14.1: IDE controller (0x1002:0x439c rev 0x00)
[    2.946832] ATIIXP_IDE 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    2.954398] atiixp 0000:00:14.1: not 100% native mode: will probe irqs later
[    2.961624]     ide0: BM-DMA at 0xfa00-0xfa07
[    2.966114] atiixp 0000:00:14.1: simplex device: DMA disabled
[    2.971979] ide1: DMA disabled
[    2.975151] Probing IDE interface ide0...
[    3.544078] Probing IDE interface ide1...
[    3.588179] ieee1394: Host added: ID:BUS[0-00:1023]  GUID[003a0966006cf049]
[    4.104102] ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
[    4.108841] ide1 at 0x170-0x177,0x376 on irq 15
[    4.113668] ahci 0000:00:11.0: version 3.0
[    4.113683] ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    4.120801] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[    4.129152] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
[    4.138018] scsi0 : ahci
[    4.140802] scsi1 : ahci
[    4.143525] scsi2 : ahci
[    4.146219] scsi3 : ahci
[    4.148946] scsi4 : ahci
[    4.151632] scsi5 : ahci
[    4.154358] ata1: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f100 irq 22
[    4.161893] ata2: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f180 irq 22
[    4.169449] ata3: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f200 irq 22
[    4.177010] ata4: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f280 irq 22
[    4.184559] ata5: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f300 irq 22
[    4.192102] ata6: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f380 irq 22
[    4.516078] ata4: SATA link down (SStatus 0 SControl 300)
[    4.516142] ata3: SATA link down (SStatus 0 SControl 300)
[    4.516186] ata5: SATA link down (SStatus 0 SControl 300)
[    4.516227] ata6: SATA link down (SStatus 0 SControl 300)
[    4.688060] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.688560] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.688820] ata2.00: ATA-7: INTEL SSDSA2M040G2GC, 2CV102HD, max UDMA/133
[    4.688824] ata2.00: 78165360 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    4.689080] ata2.00: configured for UDMA/133
[    4.720185] ata1.00: ATA-7: INTEL SSDSA2M040G2GC, 2CV102HD, max UDMA/133
[    4.727069] ata1.00: 78165360 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    4.734042] ata1.00: configured for UDMA/133
[    4.752187] scsi 0:0:0:0: Direct-Access     ATA      INTEL SSDSA2M040 2CV1 PQ: 0 ANSI: 5
[    4.760699] scsi 1:0:0:0: Direct-Access     ATA      INTEL SSDSA2M040 2CV1 PQ: 0 ANSI: 5
[    4.782669] sd 1:0:0:0: [sdb] 78165360 512-byte logical blocks: (40.0 GB/37.2 GiB)
[    4.782674] sd 0:0:0:0: [sda] 78165360 512-byte logical blocks: (40.0 GB/37.2 GiB)
[    4.782746] sd 0:0:0:0: [sda] Write Protect is off
[    4.782749] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    4.782774] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.783154]  sda: sda1 sda2
[    4.815336] sd 1:0:0:0: [sdb] Write Protect is off
[    4.815396] sd 0:0:0:0: [sda] Attached SCSI disk
[    4.824977] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    4.825040] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.834662]  sdb: sdb1 sdb2
[    4.837887] sd 1:0:0:0: [sdb] Attached SCSI disk
[    4.932765] md: raid1 personality registered for level 1
[    4.944673] md: md0 stopped.
[    4.953404] md: bind<sdb1>
[    4.956419] md: bind<sda1>
[    4.967540] md/raid1:md0: active with 2 out of 2 mirrors
[    4.973014] md0: detected capacity change from 0 to 35998597120
[    4.979233] md: md1 stopped.
[    4.981142]  md0: unknown partition table
[    5.023019] EXT3-fs: barriers not enabled
[    5.027421] kjournald starting.  Commit interval 5 seconds
[    5.027455] EXT3-fs (md0): mounted filesystem with writeback data mode
[    5.250966] udevd version 125 started
[    5.524398] input: PC Speaker as /class/input/input1
[    5.605992] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    5.618541] ACPI: acpi_idle registered with cpuidle
[    5.629723] input: Power Button as /class/input/input2
[    5.635078] ACPI: Power Button [PWRB]
[    5.637239] ACPI: WMI: Mapper loaded
[    5.642615] input: Power Button as /class/input/input3
[    5.647867] ACPI: Power Button [PWRF]
[    5.688020] ACPI: resource piix4_smbus [io  0x0b00-0x0b07] conflicts with ACPI region SOR1 [mem 0x00000b00-0x00000b0f]
[    5.698920] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    5.732031] shpchp 0000:00:01.0: HPC vendor_id 1022 device_id 9602 ss_vid 1022 ss_did 9602
[    5.740442] shpchp 0000:00:01.0: Cannot reserve MMIO region
[    5.768022] shpchp 0000:00:0a.0: HPC vendor_id 1022 device_id 9609 ss_vid 1022 ss_did 9601
[    5.776395] shpchp 0000:00:0a.0: Cannot reserve MMIO region
[    5.782109] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    5.853688] parport_pc 00:0a: reported by Plug and Play ACPI
[    5.859591] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
[    5.873870] Error: Driver 'pcspkr' is already registered, aborting...
[    5.960033] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    5.997815] HDLC support module revision 1.22
[    6.040078] PC300 0000:03:07.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[    6.201322] pc300: PC300/RSV, 256 KB RAM at 0xfdc80000, IRQ21, using 10 TX + 71 RX packets rings
[    6.210649] hdlc0: PC300 channel 0
[    6.214407] hdlc1: PC300 channel 1
[    6.261377] hda_codec: ALC889A: BIOS auto-probing.
[    6.272233] HDA Intel 0000:01:05.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    6.279685] HDA Intel 0000:01:05.1: setting latency timer to 64
[    6.986897] EXT3-fs (md0): using internal journal
[    8.015522] loop: module loaded
[    8.052997] md: md1 stopped.
[    8.072959] md: bind<sdb2>
[    8.102415] md/raid1:md1: active with 1 out of 2 mirrors
[    8.107893] md1: detected capacity change from 0 to 4016177152
[    8.114443]  md1: unknown partition table
[    8.169943] Adding 3922044k swap on /dev/md1.  Priority:-1 extents:1 across:3922044k 
[    8.275781] ip_tables: (C) 2000-2006 Netfilter Core Team
[    8.295476] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[    8.401941] r8169 0000:02:00.0: eth0: link up
[    8.405942] r8169 0000:02:00.0: eth0: link up
[    8.448733] eth1:  setting full-duplex.
[    8.491742] hdlc0: Carrier detected
[    8.818002] NET: Registered protocol family 10
[    8.823034] lo: Disabled Privacy Extensions
[   16.233712] hdlc0: Link up (peer uptime 0d18h55m19s)
[   19.488046] eth0: no IPv6 routers present
[   19.584022] eth1: no IPv6 routers present
[   59.175900] bernie: stat=0x80, desc_address=ffffc900111003a8, port->chan=0
[   59.176639] bernie: cp=3b4, bp=1ef18, len=56, unused=12
[   59.184040] bernie: hdlc0 TX(1504): 0F 00 08 00 45 00 05 DC E6 3B 40 00 3F 06 A1 DB C7 E8 4C A5 62 89 36 EE ED 41 00 19 82 4F FB AD B5 E8 FC F2 80 10 00 5C 19 D1 00 00 01 01 08 0A 41 46 1E 20 CE D6 C0 D2 72 73 61 2D 73 68 61 31 3B 20 63 3D 6E 6F 66 77 73 3B 20 64 3D 67 6D 61 69 6C 2E 63 6F 6D 3B 20 73 3D 67 61 6D 6D 61 3B 0D 0A 09 68...
[   67.159314] bernie: stat=0x80, desc_address=ffffc90011100390, port->chan=0
[   67.163214] bernie: cp=39c, bp=1e298, len=56, unused=12
[   67.168039] bernie: hdlc0 TX(62): 0F 00 08 00 45 00 00 3A 3D 62 40 00 3F 11 16 AA C7 E8 4C A5 8C BA 46 5F 84 2D 00 35 00 26 27 6E 0B A1 01 00 00 01 00 00 00 00 00 00 04 6D 78 31 30 03 67 6E 75 03 6F 72 67 00 00 01 00 01
[   68.425601] bernie: stat=0x80, desc_address=ffffc90011100390, port->chan=0
[   68.426123] bernie: cp=39c, bp=1e298, len=77, unused=12
[   68.426123] bernie: hdlc0 TX(69): 0F 00 08 00 45 00 00 41 42 5A 40 00 3F 11 11 AB C7 E8 4C A5 8C BA 46 5F CC E7 00 35 00 2D 6F 55 21 B4 01 00 00 01 00 00 00 00 00 00 01 65 02 6D 78 04 6D 61 69 6C 05 79 61 68 6F 6F 03 63 6F 6D 00 00 1C 00 01
[   70.312068] bernie: stat=0x80, desc_address=ffffc900111003b4, port->chan=0
[   70.314393] bernie: cp=3c0, bp=1f558, len=1504, unused=12
[   70.314393] bernie: hdlc0 TX(1474): 0F 00 08 00 45 00 05 BE 66 F5 40 00 3F 06 23 1F C7 E8 4C A5 4A 7D 4D 1B A9 3E 00 19 8E ED 22 77 3D 22 95 EF 80 10 00 5C 16 44 00 00 01 01 08 0A 41 46 49 A8 C4 92 9B A9 52 65 63 65 69 76 65 64 3A 20 66 72 6F 6D 20 5B 31 32 37 2E 30 2E 30 2E 31 5D 20 28 70 6F 72 74 3D 34 37 39 30 37 20 68 65 6C 6F 3D...
[   70.443466] bernie: stat=0x80, desc_address=ffffc9001110039c, port->chan=0
[   70.444392] bernie: cp=3a8, bp=1e8d8, len=76, unused=12
[   70.444392] bernie: hdlc0 TX(1504): 0F 00 08 00 45 00 05 DC 73 8B 40 00 3F 06 A4 58 C7 E8 4C A5 C3 9F 46 0B E0 A0 00 19 8A CF 46 5D 86 1E C0 30 80 10 00 5C 18 2A 00 00 01 01 08 0A 41 46 4A 05 16 CF 9B 47 52 65 63 65 69 76 65 64 3A 20 66 72 6F 6D 20 5B 31 32 37 2E 30 2E 30 2E 31 5D 20 28 70 6F 72 74 3D 36 30 35 31 34 20 68 65 6C 6F 3D...
[   73.776240] bernie: stat=0x80, desc_address=ffffc90011100384, port->chan=0
[   73.780127] bernie: cp=390, bp=1dc58, len=273, unused=12
[   73.780127] bernie: hdlc0 TX(64): 0F 00 08 00 45 00 00 3C 92 BA 40 00 3F 06 C1 8E C7 E8 4C AC 8C BA 46 24 A2 6C 00 50 30 AB 36 DE 00 00 00 00 A0 02 16 D0 5F B2 00 00 02 04 05 B4 04 02 08 0A 3B 60 A4 64 00 00 00 00 01 03 03 07
[   78.215881] bernie: stat=0x80, desc_address=ffffc90011100360, port->chan=0
[   78.219613] bernie: cp=36c, bp=1c998, len=50, unused=12
[   78.219613] bernie: hdlc0 TX(323): 0F 00 08 00 45 00 01 3F C7 32 40 00 3F 06 8C 2A C7 E8 4C AC 8C BA 46 0D BE 90 00 19 34 B2 6F C4 CD CF 00 43 80 18 00 42 18 EE 00 00 01 01 08 0A 3B 60 A8 BD 90 88 EA 5A 16 03 01 01 06 10 00 01 02 01 00 97 89 09 5E 3E E2 01 34 A2 1C B4 4F 66 13 96 6B 2F 5A EA 65 91 3D 51 ED 00 9D 64 7C E1 33 ED 1A 3B...
[   92.256355] bernie: stat=0x80, desc_address=ffffc900111003c0, port->chan=0
[   92.260297] bernie: cp=354, bp=1fb98, len=1504, unused=12
[   92.260297] bernie: hdlc0 TX(382): 0F 00 08 00 45 00 01 7A E2 75 40 00 3F 06 C9 DE C7 E8 4C A5 48 22 31 7A BC 9F 00 19 A2 BC 7F 4F 35 96 74 35 80 18 01 32 51 17 00 00 01 01 08 0A 41 46 9F 59 39 53 59 DD 16 03 01 01 06 10 00 01 02 01 00 42 79 A7 4B B8 36 6A 84 71 CA 57 84 92 AC 5A E5 05 49 F1 35 89 E6 AC E2 B8 1D 93 95 76 98 84 82 1E...
[   99.097689] bernie: stat=0x80, desc_address=ffffc90011100390, port->chan=0
[   99.100726] bernie: cp=39c, bp=1e298, len=1504, unused=12
[   99.100726] bernie: hdlc0 TX(93): 0F 00 08 00 45 00 00 59 26 08 40 00 3F 06 7D 1C C7 E8 4C A5 82 88 01 65 E6 D9 00 19 98 8C 66 3C 6E C4 D3 B7 80 18 00 BD 89 CA 00 00 01 01 08 0A 41 46 BA 32 3F BF 92 AF 15 03 01 00 20 50 35 A1 23 AC CD ED 7C 8F 33 2E 3F 82 0E 88 FD 80 90 70 B7 30 72 68 9E 8A 37 73 D2 63 71 2B 31
[  106.656297] bernie: stat=0x80, desc_address=ffffc900111003b4, port->chan=0
[  106.658742] bernie: cp=3c0, bp=1f558, len=1474, unused=12
[  106.658742] bernie: hdlc0 TX(56): 0F 00 08 00 45 00 00 34 24 32 40 00 3F 06 30 BD C7 E8 4C A5 4A 06 88 41 9A 7A 00 19 B0 87 F3 65 91 47 BB 65 80 10 00 5C E7 91 00 00 01 01 08 0A 41 46 D7 AA 93 5B 70 7F
[  109.223945] bernie: stat=0x80, desc_address=ffffc90011100378, port->chan=0
[  109.226964] bernie: cp=384, bp=1d618, len=56, unused=12
[  109.226964] bernie: hdlc0 TX(437): 0F 00 08 00 45 00 01 B1 82 CD 40 00 3F 06 0B 54 C7 E8 4C A5 4A 7D 4D 1B AC 03 00 19 B2 1D 73 91 FD 5E 3C 05 80 18 00 5C 58 B7 00 00 01 01 08 0A 41 46 E1 C1 C7 5D 6E D7 6F 6E 6D 65 6E 74 20 62 65 66 6F 72 65 20 70 72 69 6E 74 69 6E 67 20 74 68 69 73 20 65 6D 61 69 6C 0D 0A 3E 0D 0A 3E 20 5F 5F 5F 5F...
[  137.824245] bernie: stat=0x80, desc_address=ffffc9001110039c, port->chan=0
[  137.826918] bernie: cp=3a8, bp=1e8d8, len=56, unused=12
[  137.826918] bernie: hdlc0 TX(62): 0F 00 08 00 45 00 00 3A 04 B6 40 00 3F 06 FF E1 C7 E8 4C A5 11 94 11 05 DE 68 00 19 C9 B3 4B 2C C1 7D 20 BA 80 18 00 6C 79 0A 00 00 01 01 08 0A 41 47 51 6E 0E 44 A7 CB 51 55 49 54 0D 0A
[  146.835503] bernie: stat=0x80, desc_address=ffffc90011100378, port->chan=0
[  146.837804] bernie: cp=384, bp=1d618, len=1504, unused=12
[  146.837804] bernie: hdlc0 TX(56): 0F 00 08 00 45 00 00 34 0F 68 40 00 3F 06 80 36 C7 E8 4C A5 4A 7D 4D 1B AE 8A 00 19 D6 0A 7C 87 4D 04 C4 05 80 10 00 5C 4F 8F 00 00 01 01 08 0A 41 47 74 A6 1A 32 98 4C
[  181.782010] bernie: stat=0x80, desc_address=ffffc90011100354, port->chan=0
[  181.784576] bernie: cp=360, bp=1c358, len=1474, unused=12
[  181.784576] bernie: hdlc0 TX(56): 0F 00 08 00 45 00 00 34 CA E3 40 00 3F 06 DE 00 C7 E8 4C A5 5E 88 1F CA E5 D1 00 19 F5 34 3E 77 B6 06 48 B6 80 10 01 14 37 FC 00 00 01 01 08 0A 41 47 FD 05 1B 7B 38 B1
[  272.745752] bernie: stat=0x80, desc_address=ffffc90011100360, port->chan=0
[  272.748026] bernie: cp=36c, bp=1c998, len=1474, unused=12
[  272.748026] bernie: hdlc0 TX(81): 0F 00 08 00 45 00 00 4D 60 69 40 00 3F 11 F3 8F C7 E8 4C A5 8C BA 46 5F AE 02 00 35 00 39 51 DC 95 7D 01 00 00 01 00 00 00 00 00 00 04 61 6C 74 34 0D 67 6D 61 69 6C 2D 73 6D 74 70 2D 69 6E 01 6C 06 67 6F 6F 67 6C 65 03 63 6F 6D 00 00 01 00 01
[  294.233029] bernie: stat=0x80, desc_address=ffffc9001110036c, port->chan=0
[  294.235817] bernie: cp=378, bp=1cfd8, len=56, unused=12
[  294.235817] bernie: hdlc0 TX(56): 0F 00 08 00 45 00 00 34 30 E8 40 00 3F 06 86 2E C7 E8 4C A5 CC 0D A4 12 D8 49 00 19 60 0A 83 70 C3 A2 9F 6C 80 10 00 5C 2E 12 00 00 01 01 08 0A 41 49 B4 3E 05 52 A9 DA
[  316.166931] bernie: stat=0x80, desc_address=ffffc900111003a8, port->chan=0
[  316.166931] bernie: cp=3b4, bp=1ef18, len=1474, unused=12
[  316.166931] bernie: hdlc0 TX(56): 0F 00 08 00 45 00 00 34 9E FA 40 00 3F 06 EE A3 C7 E8 4C A5 4A 7D 4F 1B D8 D9 00 19 74 7C 97 70 1E D3 84 7F 80 10 00 5C CA 58 00 00 01 01 08 0A 41 4A 09 FA C4 81 65 EA
[  331.715177] bernie: stat=0x80, desc_address=ffffc9001110039c, port->chan=0
[  331.717278] bernie: cp=3a8, bp=1e8d8, len=198, unused=12
[  331.717278] bernie: hdlc0 TX(254): 0F 00 08 00 45 00 00 FA B8 47 40 00 3F 06 27 74 C7 E8 4C A5 42 6F 04 46 84 07 00 19 81 E2 FA 93 1A 88 32 FB 80 18 01 11 D2 2E 00 00 01 01 08 0A 41 4A 46 AB 0C 6C 6C 3B 16 03 01 00 86 10 00 00 82 00 80 1C 61 03 1E 89 F4 45 85 F1 88 C9 24 E7 61 6F E7 97 1F 7D EF CC 09 1C FB EA 15 2F 17 BD C4 7A 9B 39...
[  378.162278] bernie: stat=0x80, desc_address=ffffc90011100354, port->chan=0
[  378.164352] bernie: cp=360, bp=1c358, len=65, unused=12
[  378.164352] bernie: hdlc0 TX(62): 0F 00 08 00 45 00 00 3A FB FD 40 00 3F 11 58 0E C7 E8 4C A5 8C BA 46 5F DD 40 00 35 00 26 61 A2 78 3E 01 00 00 01 00 00 00 00 00 00 04 6D 78 31 30 03 67 6E 75 03 6F 72 67 00 00 1C 00 01
[  378.589909] bernie: stat=0x80, desc_address=ffffc900111003b4, port->chan=0
[  378.592006] bernie: cp=3c0, bp=1f558, len=1504, unused=12
[  378.592006] bernie: hdlc0 TX(373): 0F 00 08 00 45 00 01 71 32 56 40 00 3F 06 88 69 C7 E8 4C A5 80 6B EA CE A9 EC 00 19 AD 6F D8 0D 12 C7 B1 58 50 18 44 70 42 24 00 00 5F 7E F6 30 BD 36 18 E5 48 EC 0E BA 7F 64 4A 52 D6 E2 AB DB F5 79 F6 8A 4D 6B 01 02 54 11 68 89 1A 1B 22 A9 DF 37 EF 64 07 6C 62 2D 5A 88 56 5C F3 E7 2F 24 1B BD B9 7C...
[  378.736328] bernie: stat=0x82, desc_address=ffffc9001110036c, port->chan=0
[  378.740006] bernie: cp=378, bp=1cfd8, len=198, unused=12
[  378.740006] bernie: hdlc0 TX(1504): 0F 00 08 00 45 00 05 DC CD 47 40 00 3F 06 C1 32 C7 E8 4C A9 CF 2E C3 E1 00 50 81 10 94 B4 72 7A 4E 0C 13 8E 50 10 19 20 95 F5 00 00 69 A6 FA 8B AD 3B AA 01 90 A1 65 D5 AD 6E 0E 56 C0 36 05 25 B6 B9 AF BA D2 7E 7A A2 A0 85 4A 24 68 37 AB B8 38 3D B7 09 52 0D 8D AA 4B 01 05 AD 3C DD D5 7C EB CB 85 2C...
[  379.063796] bernie: stat=0x80, desc_address=ffffc9001110036c, port->chan=0
[  379.066167] bernie: cp=378, bp=1cfd8, len=56, unused=12
[  379.066167] bernie: hdlc0 TX(56): 0F 00 08 00 45 00 00 34 79 9B 40 00 3F 06 4B 10 C7 E8 4C A5 CF 7E 93 0C C9 D7 00 19 AE BA 84 C3 74 20 B1 8A 80 10 00 6C C9 0C 00 00 01 01 08 0A 41 4A FF 5A 71 C0 60 AC
[  394.457672] bernie: stat=0x80, desc_address=ffffc9001110039c, port->chan=0
[  394.461574] bernie: cp=3a8, bp=1e8d8, len=44, unused=12
[  394.461574] bernie: hdlc0 TX(1474): 0F 00 08 00 45 00 05 BE FB 34 40 00 3F 06 8C DF C7 E8 4C A5 4A 7D 4F 1B DD 52 00 19 BC 90 EB 2E 74 37 B2 F3 80 10 00 5C 0B 22 00 00 01 01 08 0A 41 4B 3B AD C0 2E 86 4D 20 6F 6E 6C 79 20 77 72 69 74 65 20 74 68 65 20 66 69 6C 65 2C 20 72 61 74 68 65 72 20 74 68 61 6E 0D 0A 3E 3E 20 74 72 79 69 6E 67...
[  402.361173] bernie: stat=0x80, desc_address=ffffc900111003a8, port->chan=0
[  402.364012] bernie: cp=3b4, bp=1ef18, len=62, unused=12
[  402.364012] bernie: hdlc0 TX(56): 0F 00 08 00 45 00 00 34 3D A4 40 00 3F 06 A3 72 C7 E8 4C A5 40 12 06 0E E1 B6 00 19 C4 0C 6B F6 95 20 43 2D 80 10 00 6C 3E C2 00 00 01 01 08 0A 41 4B 5A 47 08 58 4E D6
[  520.614583] bernie: stat=0x80, desc_address=ffffc90011100378, port->chan=0
[  520.618174] bernie: cp=384, bp=1d618, len=56, unused=12
[  520.618174] bernie: hdlc0 TX(93): 0F 00 08 00 45 00 00 59 5D 9D 40 00 3F 06 0E 9A C7 E8 4C A5 59 91 61 49 EA EA 00 19 2C E2 62 45 5D 93 A7 5A 80 18 03 DB 6F 6F 00 00 01 01 08 0A 41 4D 28 79 1A A5 41 5F 17 03 01 00 20 69 A6 32 DA 13 C4 A6 EB 4B C6 55 B2 48 D2 CB 8C 02 61 87 FC B8 FB AF 79 3B 93 71 42 54 43 F5 C2

[-- Attachment #3: pc300too-lspci.out --]
[-- Type: text/plain, Size: 21584 bytes --]

00:00.0 Host bridge: Advanced Micro Devices [AMD] RS780 Host Bridge Alternate
	Subsystem: Advanced Micro Devices [AMD] RS780 Host Bridge Alternate
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ >SERR- <PERR- INTx-
	Latency: 32
	Region 3: Memory at <ignored> (64-bit, non-prefetchable)
	Capabilities: [c4] HyperTransport: Slave or Primary Interface
		Command: BaseUnitID=0 UnitCnt=12 MastHost- DefDir- DUL-
		Link Control 0: CFlE- CST- CFE- <LkFail- Init+ EOC- TXO- <CRCErr=0 IsocEn- LSEn- ExtCTL- 64b-
		Link Config 0: MLWI=16bit DwFcIn- MLWO=16bit DwFcOut- LWI=16bit DwFcInEn- LWO=16bit DwFcOutEn-
		Link Control 1: CFlE- CST- CFE- <LkFail+ Init- EOC+ TXO+ <CRCErr=0 IsocEn- LSEn- ExtCTL- 64b-
		Link Config 1: MLWI=8bit DwFcIn- MLWO=8bit DwFcOut- LWI=8bit DwFcInEn- LWO=8bit DwFcOutEn-
		Revision ID: 3.00
		Link Frequency 0: [b]
		Link Error 0: <Prot- <Ovfl- <EOC- CTLTm-
		Link Frequency Capability 0: 200MHz+ 300MHz- 400MHz+ 500MHz- 600MHz+ 800MHz+ 1.0GHz+ 1.2GHz- 1.4GHz- 1.6GHz- Vend-
		Feature Capability: IsocFC- LDTSTOP+ CRCTM- ECTLT- 64bA- UIDRD-
		Link Frequency 1: 200MHz
		Link Error 1: <Prot- <Ovfl- <EOC- CTLTm-
		Link Frequency Capability 1: 200MHz- 300MHz- 400MHz- 500MHz- 600MHz- 800MHz- 1.0GHz- 1.2GHz- 1.4GHz- 1.6GHz- Vend-
		Error Handling: PFlE- OFlE- PFE- OFE- EOCFE- RFE- CRCFE- SERRFE- CF- RE- PNFE- ONFE- EOCNFE- RNFE- CRCNFE- SERRNFE-
		Prefetchable memory behind bridge Upper: 00-00
		Bus Number: 00
	Capabilities: [54] HyperTransport: UnitID Clumping
	Capabilities: [40] HyperTransport: Retry Mode
	Capabilities: [9c] HyperTransport: #1a
	Capabilities: [f8] HyperTransport: #1c

00:01.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (int gfx) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 99
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=68
	I/O behind bridge: 0000e000-0000efff
	Memory behind bridge: fde00000-fdffffff
	Prefetchable memory behind bridge: 00000000d0000000-00000000dfffffff
	Secondary status: 66MHz+ FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [44] HyperTransport: MSI Mapping Enable+ Fixed+
	Capabilities: [b0] Subsystem: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (int gfx)
	Kernel modules: shpchp

00:0a.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 5) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 4 bytes
	Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
	I/O behind bridge: 0000d000-0000dfff
	Memory behind bridge: fdd00000-fddfffff
	Prefetchable memory behind bridge: 00000000fdb00000-00000000fdbfffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Express (v2) Root Port (Slot+), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag+ RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #1, Speed 5GT/s, Width x1, ASPM L0s L1, Latency L0 <64ns, L1 <1us
			ClockPM- Suprise- LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		SltCap:	AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surpise-
			Slot #  a, PowerLimit 25.000000; Interlock- NoCompl+
		SltCtl:	Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
			Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
		SltSta:	Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
			Changed: MRL- PresDet+ LinkState+
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
	Capabilities: [a0] Message Signalled Interrupts: Mask- 64bit- Queue=0/0 Enable-
		Address: 00000000  Data: 0000
	Capabilities: [b0] Subsystem: Advanced Micro Devices [AMD] Device 9601
	Capabilities: [b8] HyperTransport: MSI Mapping Enable+ Fixed+
	Capabilities: [100] Vendor Specific Information <?>
	Capabilities: [110] Virtual Channel <?>
	Kernel modules: shpchp

00:11.0 SATA controller: ATI Technologies Inc SB700/SB800 SATA Controller [AHCI mode] (prog-if 01 [AHCI 1.0])
	Subsystem: Giga-byte Technology Device b002
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 32
	Interrupt: pin A routed to IRQ 22
	Region 0: I/O ports at ff00 [size=8]
	Region 1: I/O ports at fe00 [size=4]
	Region 2: I/O ports at fd00 [size=8]
	Region 3: I/O ports at fc00 [size=4]
	Region 4: I/O ports at fb00 [size=16]
	Region 5: Memory at fe02f000 (32-bit, non-prefetchable) [size=1K]
	Capabilities: [60] Power Management version 2
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [70] SATA HBA <?>
	Kernel driver in use: ahci
	Kernel modules: ahci

00:12.0 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller (prog-if 10 [OHCI])
	Subsystem: Giga-byte Technology Device 5004
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 32, Cache Line Size: 4 bytes
	Interrupt: pin A routed to IRQ 16
	Region 0: Memory at fe02e000 (32-bit, non-prefetchable) [size=4K]
	Kernel driver in use: ohci_hcd
	Kernel modules: ohci-hcd

00:12.1 USB Controller: ATI Technologies Inc SB700 USB OHCI1 Controller (prog-if 10 [OHCI])
	Subsystem: Giga-byte Technology Device 5004
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 32, Cache Line Size: 4 bytes
	Interrupt: pin A routed to IRQ 16
	Region 0: Memory at fe02d000 (32-bit, non-prefetchable) [size=4K]
	Kernel driver in use: ohci_hcd
	Kernel modules: ohci-hcd

00:12.2 USB Controller: ATI Technologies Inc SB700/SB800 USB EHCI Controller (prog-if 20 [EHCI])
	Subsystem: Giga-byte Technology Device 5004
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 32, Cache Line Size: 4 bytes
	Interrupt: pin B routed to IRQ 17
	Region 0: Memory at fe02c000 (32-bit, non-prefetchable) [size=256]
	Capabilities: [c0] Power Management version 2
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold-)
		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
		Bridge: PM- B3+
	Capabilities: [e4] Debug port: BAR=1 offset=00e0
	Kernel driver in use: ehci_hcd
	Kernel modules: ehci-hcd

00:13.0 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller (prog-if 10 [OHCI])
	Subsystem: Giga-byte Technology Device 5004
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 32, Cache Line Size: 4 bytes
	Interrupt: pin A routed to IRQ 18
	Region 0: Memory at fe02b000 (32-bit, non-prefetchable) [size=4K]
	Kernel driver in use: ohci_hcd
	Kernel modules: ohci-hcd

00:13.1 USB Controller: ATI Technologies Inc SB700 USB OHCI1 Controller (prog-if 10 [OHCI])
	Subsystem: Giga-byte Technology Device 5004
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 32, Cache Line Size: 4 bytes
	Interrupt: pin A routed to IRQ 18
	Region 0: Memory at fe02a000 (32-bit, non-prefetchable) [size=4K]
	Kernel driver in use: ohci_hcd
	Kernel modules: ohci-hcd

00:13.2 USB Controller: ATI Technologies Inc SB700/SB800 USB EHCI Controller (prog-if 20 [EHCI])
	Subsystem: Giga-byte Technology Device 5004
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 32, Cache Line Size: 4 bytes
	Interrupt: pin B routed to IRQ 19
	Region 0: Memory at fe029000 (32-bit, non-prefetchable) [size=256]
	Capabilities: [c0] Power Management version 2
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold-)
		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
		Bridge: PM- B3+
	Capabilities: [e4] Debug port: BAR=1 offset=00e0
	Kernel driver in use: ehci_hcd
	Kernel modules: ehci-hcd

00:14.0 SMBus: ATI Technologies Inc SBx00 SMBus Controller (rev 3c)
	Subsystem: Giga-byte Technology Device 4385
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [b0] HyperTransport: MSI Mapping Enable- Fixed+
	Kernel modules: i2c-piix4

00:14.1 IDE interface: ATI Technologies Inc SB700/SB800 IDE Controller (prog-if 8a [Master SecP PriP])
	Subsystem: Giga-byte Technology Device 5002
	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 32
	Interrupt: pin A routed to IRQ 16
	Region 0: I/O ports at 01f0 [size=8]
	Region 1: I/O ports at 03f4 [size=1]
	Region 2: I/O ports at 0170 [size=8]
	Region 3: I/O ports at 0374 [size=1]
	Region 4: I/O ports at fa00 [size=16]
	Capabilities: [70] Message Signalled Interrupts: Mask- 64bit- Queue=0/0 Enable-
		Address: 00000000  Data: 0000
	Kernel driver in use: ATIIXP_IDE
	Kernel modules: atiixp, ide-pci-generic, ata_generic

00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA)
	Subsystem: Giga-byte Technology Device a102
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=slow >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 32, Cache Line Size: 4 bytes
	Interrupt: pin ? routed to IRQ 16
	Region 0: Memory at fe024000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [50] Power Management version 2
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
	Kernel driver in use: HDA Intel
	Kernel modules: snd-hda-intel

00:14.3 ISA bridge: ATI Technologies Inc SB700/SB800 LPC host controller
	Subsystem: ATI Technologies Inc SB700/SB800 LPC host controller
	Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0

00:14.4 PCI bridge: ATI Technologies Inc SBx00 PCI to PCI Bridge (prog-if 01 [Subtractive decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop+ ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 64
	Bus: primary=00, secondary=03, subordinate=03, sec-latency=64
	I/O behind bridge: 0000c000-0000cfff
	Memory behind bridge: b0000000-cfffffff
	Prefetchable memory behind bridge: fdc00000-fdcfffff
	Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-

00:14.5 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI2 Controller (prog-if 10 [OHCI])
	Subsystem: Giga-byte Technology Device 5004
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 32, Cache Line Size: 4 bytes
	Interrupt: pin C routed to IRQ 18
	Region 0: Memory at fe028000 (32-bit, non-prefetchable) [size=4K]
	Kernel driver in use: ohci_hcd
	Kernel modules: ohci-hcd

00:18.0 Host bridge: Advanced Micro Devices [AMD] Family 10h [Opteron, Athlon64, Sempron] HyperTransport Configuration
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [80] HyperTransport: Host or Secondary Interface
		Command: WarmRst+ DblEnd- DevNum=0 ChainSide- HostHide+ Slave- <EOCErr- DUL-
		Link Control: CFlE- CST- CFE- <LkFail- Init+ EOC- TXO- <CRCErr=0 IsocEn- LSEn+ ExtCTL- 64b-
		Link Config: MLWI=16bit DwFcIn- MLWO=16bit DwFcOut- LWI=16bit DwFcInEn- LWO=16bit DwFcOutEn-
		Revision ID: 3.00
		Link Frequency: [b]
		Link Error: <Prot- <Ovfl- <EOC- CTLTm-
		Link Frequency Capability: 200MHz+ 300MHz- 400MHz+ 500MHz- 600MHz+ 800MHz+ 1.0GHz+ 1.2GHz+ 1.4GHz- 1.6GHz- Vend-
		Feature Capability: IsocFC+ LDTSTOP+ CRCTM- ECTLT- 64bA+ UIDRD- ExtRS- UCnfE-

00:18.1 Host bridge: Advanced Micro Devices [AMD] Family 10h [Opteron, Athlon64, Sempron] Address Map
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:18.2 Host bridge: Advanced Micro Devices [AMD] Family 10h [Opteron, Athlon64, Sempron] DRAM Controller
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

00:18.3 Host bridge: Advanced Micro Devices [AMD] Family 10h [Opteron, Athlon64, Sempron] Miscellaneous Control
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [f0] Secure device <?>

00:18.4 Host bridge: Advanced Micro Devices [AMD] Family 10h [Opteron, Athlon64, Sempron] Link Control
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

01:05.0 VGA compatible controller: ATI Technologies Inc Device 9710 (prog-if 00 [VGA controller])
	Subsystem: Giga-byte Technology Device d000
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 4 bytes
	Interrupt: pin A routed to IRQ 10
	Region 0: Memory at d0000000 (32-bit, prefetchable) [size=256M]
	Region 1: I/O ports at ee00 [size=256]
	Region 2: Memory at fdfe0000 (32-bit, non-prefetchable) [size=64K]
	Region 5: Memory at fde00000 (32-bit, non-prefetchable) [size=1M]
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [a0] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 Enable-
		Address: 0000000000000000  Data: 0000

01:05.1 Audio device: ATI Technologies Inc Device 970f
	Subsystem: Giga-byte Technology Device 960f
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 4 bytes
	Interrupt: pin B routed to IRQ 19
	Region 0: Memory at fdffc000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [a0] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 Enable-
		Address: 0000000000000000  Data: 0000
	Kernel driver in use: HDA Intel
	Kernel modules: snd-hda-intel

02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02)
	Subsystem: Giga-byte Technology Device e000
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 4 bytes
	Interrupt: pin A routed to IRQ 40
	Region 0: I/O ports at de00 [size=256]
	Region 2: Memory at fdbff000 (64-bit, prefetchable) [size=4K]
	Region 4: Memory at fdbe0000 (64-bit, prefetchable) [size=64K]
	[virtual] Expansion ROM at fdb00000 [disabled] [size=64K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [50] Message Signalled Interrupts: Mask- 64bit+ Queue=0/1 Enable+
		Address: 00000000fee0f00c  Data: 4141
	Capabilities: [70] Express (v1) Endpoint, MSI 01
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <512ns, L1 <8us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Latency L0 <512ns, L1 <64us
			ClockPM+ Suprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
	Capabilities: [b0] MSI-X: Enable- Mask- TabSize=2
		Vector table: BAR=4 offset=00000000
		PBA: BAR=4 offset=00000800
	Capabilities: [d0] Vital Product Data <?>
	Capabilities: [100] Advanced Error Reporting <?>
	Capabilities: [140] Virtual Channel <?>
	Capabilities: [160] Device Serial Number 78-56-34-12-78-56-34-12
	Kernel driver in use: r8169
	Kernel modules: r8169

03:06.0 Ethernet controller: 3Com Corporation 3c905 100BaseTX [Boomerang]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 64 (750ns min, 2000ns max)
	Interrupt: pin A routed to IRQ 20
	Region 0: I/O ports at cf00 [size=64]
	[virtual] Expansion ROM at fdc00000 [disabled] [size=64K]
	Kernel driver in use: 3c59x
	Kernel modules: 3c59x

03:07.0 Communication controller: Cyclades Corporation PC300/RSV or /X21 (2 ports) (rev 01)
	Subsystem: Cyclades Corporation Device 0301
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 21
	Region 0: Memory at cffff000 (32-bit, non-prefetchable) [size=128]
	Region 1: I/O ports at ce00 [size=128]
	Region 2: Memory at cfffe000 (32-bit, non-prefetchable) [size=1K]
	Region 3: Memory at fdc80000 (32-bit, prefetchable) [size=512K]
	Region 5: Memory at cfffd000 (32-bit, non-prefetchable) [size=256]
	Kernel driver in use: PC300
	Kernel modules: pc300too

03:0e.0 FireWire (IEEE 1394): Texas Instruments TSB43AB23 IEEE-1394a-2000 Controller (PHY/Link) (prog-if 10 [OHCI])
	Subsystem: Giga-byte Technology Device 1000
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 32 (500ns min, 1000ns max), Cache Line Size: 4 bytes
	Interrupt: pin A routed to IRQ 22
	Region 0: Memory at cfffc000 (32-bit, non-prefetchable) [size=2K]
	Region 1: Memory at cfff8000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: [44] Power Management version 2
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold-)
		Status: D0 PME-Enable- DSel=0 DScale=0 PME+
	Kernel driver in use: ohci1394
	Kernel modules: ohci1394


[-- Attachment #4: pc300too-dmidecode.out --]
[-- Type: text/plain, Size: 19738 bytes --]

# dmidecode 2.9
SMBIOS 2.4 present.
56 structures occupying 2903 bytes.
Table at 0x000F0100.

Handle 0x0000, DMI type 0, 24 bytes
BIOS Information
	Vendor: Award Software International, Inc.
	Version: F5
	Release Date: 11/30/2009
	Address: 0xE0000
	Runtime Size: 128 kB
	ROM Size: 1024 kB
	Characteristics:
		ISA is supported
		PCI is supported
		PNP is supported
		APM is supported
		BIOS is upgradeable
		BIOS shadowing is allowed
		Boot from CD is supported
		Selectable boot is supported
		BIOS ROM is socketed
		EDD is supported
		5.25"/360 KB floppy services are supported (int 13h)
		5.25"/1.2 MB floppy services are supported (int 13h)
		3.5"/720 KB floppy services are supported (int 13h)
		3.5"/2.88 MB floppy services are supported (int 13h)
		Print screen service is supported (int 5h)
		8042 keyboard services are supported (int 9h)
		Serial services are supported (int 14h)
		Printer services are supported (int 17h)
		CGA/mono video services are supported (int 10h)
		ACPI is supported
		USB legacy is supported
		AGP is supported
		LS-120 boot is supported
		ATAPI Zip drive boot is supported
		BIOS boot specification is supported
		Targeted content distribution is supported

Handle 0x0001, DMI type 1, 27 bytes
System Information
	Manufacturer: Gigabyte Technology Co., Ltd.
	Product Name: GA-MA785GMT-UD2H
	Version:  
	Serial Number:  
	UUID: 36434630-3439-3741-4237-4343FFFFFFFF
	Wake-up Type: Power Switch
	SKU Number:  
	Family:  

Handle 0x0002, DMI type 2, 8 bytes
Base Board Information
	Manufacturer: Gigabyte Technology Co., Ltd.
	Product Name: GA-MA785GMT-UD2H
	Version: x.x
	Serial Number:  

Handle 0x0003, DMI type 3, 17 bytes
Chassis Information
	Manufacturer: Gigabyte Technology Co., Ltd.
	Type: Desktop
	Lock: Not Present
	Version:  
	Serial Number:  
	Asset Tag:  
	Boot-up State: Unknown
	Power Supply State: Unknown
	Thermal State: Unknown
	Security Status: Unknown
	OEM Information: 0x00000000

Handle 0x0004, DMI type 4, 35 bytes
Processor Information
	Socket Designation: Socket M2
	Type: Central Processor
	Family: Athlon
	Manufacturer: AMD
	ID: 52 0F 10 00 FF FB 8B 17
	Signature: Family 16, Model 5, Stepping 2
	Flags:
		FPU (Floating-point unit on-chip)
		VME (Virtual mode extension)
		DE (Debugging extension)
		PSE (Page size extension)
		TSC (Time stamp counter)
		MSR (Model specific registers)
		PAE (Physical address extension)
		MCE (Machine check exception)
		CX8 (CMPXCHG8 instruction supported)
		APIC (On-chip APIC hardware supported)
		SEP (Fast system call)
		MTRR (Memory type range registers)
		PGE (Page global enable)
		MCA (Machine check architecture)
		CMOV (Conditional move instruction supported)
		PAT (Page attribute table)
		PSE-36 (36-bit page size extension)
		CLFSH (CLFLUSH instruction supported)
		MMX (MMX technology supported)
		FXSR (Fast floating-point save and restore)
		SSE (Streaming SIMD extensions)
		SSE2 (Streaming SIMD extensions 2)
		HTT (Hyper-threading technology)
	Version: AMD Athlon(tm) II X4 605e Processor
	Voltage: 1.0 V
	External Clock: 200 MHz
	Max Speed: 3000 MHz
	Current Speed: 2300 MHz
	Status: Populated, Enabled
	Upgrade: Socket 754
	L1 Cache Handle: 0x000A
	L2 Cache Handle: 0x000C
	L3 Cache Handle: Not Provided
	Serial Number:  
	Asset Tag:  
	Part Number:  

Handle 0x0005, DMI type 5, 24 bytes
Memory Controller Information
	Error Detecting Method: 64-bit ECC
	Error Correcting Capabilities:
		None
	Supported Interleave: One-way Interleave
	Current Interleave: One-way Interleave
	Maximum Memory Module Size: 4096 MB
	Maximum Total Memory Size: 16384 MB
	Supported Speeds:
		70 ns
		60 ns
		50 ns
	Supported Memory Types:
		Standard
		DIMM
	Memory Module Voltage: 2.9 V
	Associated Memory Slots: 4
		0x0006
		0x0007
		0x0008
		0x0009
	Enabled Error Correcting Capabilities:
		None

Handle 0x0006, DMI type 6, 12 bytes
Memory Module Information
	Socket Designation: A0
	Bank Connections: 1
	Current Speed: 42 ns
	Type: Other Unknown EDO
	Installed Size: 2048 MB (Single-bank Connection)
	Enabled Size: 2048 MB (Single-bank Connection)
	Error Status: OK

Handle 0x0007, DMI type 6, 12 bytes
Memory Module Information
	Socket Designation: A1
	Bank Connections: 2
	Current Speed: 42 ns
	Type: Other Unknown EDO
	Installed Size: 2048 MB (Single-bank Connection)
	Enabled Size: 2048 MB (Single-bank Connection)
	Error Status: OK

Handle 0x0008, DMI type 6, 12 bytes
Memory Module Information
	Socket Designation: A2
	Bank Connections: 3
	Current Speed: 42 ns
	Type: Other Unknown EDO
	Installed Size: Not Installed
	Enabled Size: Not Installed
	Error Status: OK

Handle 0x0009, DMI type 6, 12 bytes
Memory Module Information
	Socket Designation: A3
	Bank Connections: 4
	Current Speed: 42 ns
	Type: Other Unknown EDO
	Installed Size: Not Installed
	Enabled Size: Not Installed
	Error Status: OK

Handle 0x000A, DMI type 7, 19 bytes
Cache Information
	Socket Designation: Internal Cache
	Configuration: Enabled, Not Socketed, Level 1
	Operational Mode: Write Back
	Location: Internal
	Installed Size: 128 KB
	Maximum Size: 128 KB
	Supported SRAM Types:
		Synchronous
	Installed SRAM Type: Synchronous
	Speed: Unknown
	Error Correction Type: Unknown
	System Type: Unknown
	Associativity: Unknown

Handle 0x000B, DMI type 7, 19 bytes
Cache Information
	Socket Designation: Internal Cache
	Configuration: Enabled, Not Socketed, Level 1
	Operational Mode: Write Back
	Location: Internal
	Installed Size: 128 KB
	Maximum Size: 128 KB
	Supported SRAM Types:
		Synchronous
	Installed SRAM Type: Synchronous
	Speed: Unknown
	Error Correction Type: Unknown
	System Type: Unknown
	Associativity: Unknown

Handle 0x000C, DMI type 7, 19 bytes
Cache Information
	Socket Designation: External Cache
	Configuration: Enabled, Not Socketed, Level 3
	Operational Mode: Write Back
	Location: Internal
	Installed Size: 512 KB
	Maximum Size: 512 KB
	Supported SRAM Types:
		Synchronous
	Installed SRAM Type: Synchronous
	Speed: Unknown
	Error Correction Type: Unknown
	System Type: Unknown
	Associativity: Unknown

Handle 0x000D, DMI type 7, 19 bytes
Cache Information
	Socket Designation: External Cache
	Configuration: Disabled, Not Socketed, Level 2
	Operational Mode: Write Through
	Location: Internal
	Installed Size: 0 KB
	Maximum Size: 1024 KB
	Supported SRAM Types:
		Synchronous
	Installed SRAM Type: Synchronous
	Speed: Unknown
	Error Correction Type: Unknown
	System Type: Unknown
	Associativity: Unknown

Handle 0x000E, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: PRIMARY IDE
	Internal Connector Type: On Board IDE
	External Reference Designator:  
	External Connector Type: None
	Port Type: Other

Handle 0x000F, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: FDD
	Internal Connector Type: On Board Floppy
	External Reference Designator:  
	External Connector Type: None
	Port Type: 8251 FIFO Compatible

Handle 0x0010, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: COM1
	Internal Connector Type: 9 Pin Dual Inline (pin 10 cut)
	External Reference Designator:  
	External Connector Type: DB-9 male
	Port Type: Serial Port 16450 Compatible

Handle 0x0011, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: LPT1
	Internal Connector Type: DB-25 female
	External Reference Designator:  
	External Connector Type: DB-25 female
	Port Type: Parallel Port ECP/EPP

Handle 0x0012, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: Keyboard
	Internal Connector Type: Other
	External Reference Designator:  
	External Connector Type: PS/2
	Port Type: Keyboard Port

Handle 0x0013, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: PS/2 Mouse
	Internal Connector Type: PS/2
	External Reference Designator: No Detected
	External Connector Type: PS/2
	Port Type: Mouse Port

Handle 0x0014, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB
	Internal Connector Type: None
	External Reference Designator:  
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x0015, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB
	Internal Connector Type: None
	External Reference Designator:  
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x0016, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB
	Internal Connector Type: None
	External Reference Designator:  
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x0017, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB
	Internal Connector Type: None
	External Reference Designator:  
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x0018, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB
	Internal Connector Type: None
	External Reference Designator:  
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x0019, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB
	Internal Connector Type: None
	External Reference Designator:  
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x001A, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB
	Internal Connector Type: None
	External Reference Designator:  
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x001B, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB
	Internal Connector Type: None
	External Reference Designator:  
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x001C, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB
	Internal Connector Type: None
	External Reference Designator:  
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x001D, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB
	Internal Connector Type: None
	External Reference Designator:  
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x001E, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB
	Internal Connector Type: None
	External Reference Designator:  
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x001F, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB
	Internal Connector Type: None
	External Reference Designator:  
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x0020, DMI type 9, 13 bytes
System Slot Information
	Designation: PCI
	Type: 32-bit PCI
	Current Usage: In Use
	Length: Long
	ID: 7
	Characteristics:
		5.0 V is provided
		3.3 V is provided
		PME signal is supported
		SMBus signal is supported

Handle 0x0021, DMI type 9, 13 bytes
System Slot Information
	Designation: PCI
	Type: 32-bit PCI
	Current Usage: In Use
	Length: Long
	ID: 6
	Characteristics:
		5.0 V is provided
		3.3 V is provided
		PME signal is supported
		SMBus signal is supported

Handle 0x0022, DMI type 9, 13 bytes
System Slot Information
	Designation: AGP
	Type: 32-bit AGP
	Current Usage: Available
	Length: Long
	ID: 8
	Characteristics:
		5.0 V is provided

Handle 0x0023, DMI type 9, 13 bytes
System Slot Information
	Designation: PCI Express x16
	Type: x16 PCI Express
	Current Usage: Unknown
	Length: Other
	ID: 0
	Characteristics:
		3.3 V is provided

Handle 0x0024, DMI type 9, 13 bytes
System Slot Information
	Designation: PCI Express x1
	Type: x1 PCI Express
	Current Usage: Unknown
	Length: Other
	ID: 0
	Characteristics:
		3.3 V is provided

Handle 0x0025, DMI type 13, 22 bytes
BIOS Language Information
	Installable Languages: 3
		n|US|iso8859-1
		n|US|iso8859-1
		r|CA|iso8859-1
	Currently Installed Language: n|US|iso8859-1

Handle 0x0026, DMI type 16, 15 bytes
Physical Memory Array
	Location: System Board Or Motherboard
	Use: System Memory
	Error Correction Type: None
	Maximum Capacity: 16 GB
	Error Information Handle: Not Provided
	Number Of Devices: 4

Handle 0x0027, DMI type 17, 27 bytes
Memory Device
	Array Handle: 0x0026
	Error Information Handle: Not Provided
	Total Width: 64 bits
	Data Width: 64 bits
	Size: 2048 MB
	Form Factor: DIMM
	Set: None
	Locator: A0
	Bank Locator: Bank0/1
	Type: Unknown
	Type Detail: None
	Speed: 1066 MHz (0.9 ns)
	Manufacturer: None
	Serial Number: None
	Asset Tag: None
	Part Number: None

Handle 0x0028, DMI type 17, 27 bytes
Memory Device
	Array Handle: 0x0026
	Error Information Handle: Not Provided
	Total Width: 64 bits
	Data Width: 64 bits
	Size: 2048 MB
	Form Factor: DIMM
	Set: None
	Locator: A1
	Bank Locator: Bank2/3
	Type: Unknown
	Type Detail: None
	Speed: 1066 MHz (0.9 ns)
	Manufacturer: None
	Serial Number: None
	Asset Tag: None
	Part Number: None

Handle 0x0029, DMI type 17, 27 bytes
Memory Device
	Array Handle: 0x0026
	Error Information Handle: Not Provided
	Total Width: 64 bits
	Data Width: 64 bits
	Size: No Module Installed
	Form Factor: DIMM
	Set: None
	Locator: A2
	Bank Locator: Bank4/5
	Type: Unknown
	Type Detail: None
	Speed: 1066 MHz (0.9 ns)
	Manufacturer: None
	Serial Number: None
	Asset Tag: None
	Part Number: None

Handle 0x002A, DMI type 17, 27 bytes
Memory Device
	Array Handle: 0x0026
	Error Information Handle: Not Provided
	Total Width: 64 bits
	Data Width: 64 bits
	Size: No Module Installed
	Form Factor: DIMM
	Set: None
	Locator: A3
	Bank Locator: Bank6/7
	Type: Unknown
	Type Detail: None
	Speed: 1066 MHz (0.9 ns)
	Manufacturer: None
	Serial Number: None
	Asset Tag: None
	Part Number: None

Handle 0x002B, DMI type 19, 15 bytes
Memory Array Mapped Address
	Starting Address: 0x00000000000
	Ending Address: 0x000FFFFFFFF
	Range Size: 4 GB
	Physical Array Handle: 0x0026
	Partition Width: 32

Handle 0x002C, DMI type 20, 19 bytes
Memory Device Mapped Address
	Starting Address: 0x00000000000
	Ending Address: 0x0007FFFFFFF
	Range Size: 2 GB
	Physical Device Handle: 0x0027
	Memory Array Mapped Address Handle: 0x002B
	Partition Row Position: 1

Handle 0x002D, DMI type 20, 19 bytes
Memory Device Mapped Address
	Starting Address: 0x00080000000
	Ending Address: 0x000FFFFFFFF
	Range Size: 2 GB
	Physical Device Handle: 0x0028
	Memory Array Mapped Address Handle: 0x002B
	Partition Row Position: 1

Handle 0x002E, DMI type 20, 19 bytes
Memory Device Mapped Address
	Starting Address: 0x00000000000
	Ending Address: 0x000000003FF
	Range Size: 1 kB
	Physical Device Handle: 0x0029
	Memory Array Mapped Address Handle: 0x002B
	Partition Row Position: 1

Handle 0x002F, DMI type 20, 19 bytes
Memory Device Mapped Address
	Starting Address: 0x00000000000
	Ending Address: 0x000000003FF
	Range Size: 1 kB
	Physical Device Handle: 0x002A
	Memory Array Mapped Address Handle: 0x002B
	Partition Row Position: 1

Handle 0x0030, DMI type 32, 11 bytes
System Boot Information
	Status: No errors detected

Handle 0x0031, DMI type 188, 212 bytes
OEM-specific Type
	Header and Data:
		BC D4 31 00 00 00 00 B0 00 00 00 00 00 00 00 50
		01 00 00 00 00 06 76 00 00 00 00 00 08 00 00 00
		00 60 58 02 00 00 01 00 03 00 00 00 00 00 4F 01
		00 00 00 00 01 00 00 00 00 00 00 00 02 00 00 00
		00 00 00 00 03 00 00 00 00 00 00 00 04 00 00 00
		00 00 00 00 05 00 00 00 00 00 00 00 06 00 00 00
		00 00 00 00 07 00 00 00 03 50 00 B0 01 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 E0 3F 78 00
		00 00 00 00 00 00 00 00 00 00 00 00 06 00 C8 0D
		48 00 02 18 07 00 00 00 C4 00 14 00 23 51 10 EF
		44 68 32 00 00 00 01 00 00 02 00 00 40 00 00 00
		5C 00 B0 4A 0C 09 48 3F 00 00 00 00 00 00 00 00
		00 00 00 00

Handle 0x0032, DMI type 190, 212 bytes
OEM-specific Type
	Header and Data:
		BE D4 32 00 C4 05 00 00 00 00 00 00 24 B4 40 14
		FB 0F E0 2C 01 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 E0 3F 78 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 06 00 C8 0D
		48 00 02 18 00 00 00 00 29 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 29 00 00 00 00 00 00 00
		24 B4 40 14 FB 0F E0 2C 01 01 00 00 00 00 00 00
		00 02 00 00 00 00 00 00 40 00 00 00 07 00 00 00
		C4 00 14 00 23 51 10 EF 44 68 32 00 00 00 01 00
		0C 09 48 3F 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00

Handle 0x0033, DMI type 192, 244 bytes
OEM-specific Type
	Header and Data:
		C0 F4 33 00 06 40 00 00 22 32 11 20 E7 88 71 0E
		FE 2E 0D 00 00 00 00 00 22 32 11 20 1A 20 25 2A
		1A 00 05 0A 33 36 3A 3B 13 16 1A 1B 2E 00 00 00
		00 00 08 06 0A 0C 08 06 0A 0C 0E 0A 08 08 0E 0A
		08 08 0C 00 74 D0 41 05 FE 2E 0D 00 00 00 00 00
		71 00 77 00 79 00 7F 00 81 00 11 00 17 00 19 00
		1F 00 00 00 11 00 17 00 19 00 1F 00 00 00 11 00
		17 00 19 00 1F 00 00 00 83 00 8E 00 92 00 9A 00
		03 00 0E 00 12 00 1A 00 03 00 0E 00 12 00 1A 00
		03 00 0E 00 12 00 1A 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00

Handle 0x0034, DMI type 194, 244 bytes
OEM-specific Type
	Header and Data:
		C2 F4 34 00 06 40 00 00 22 32 11 20 E7 88 71 0E
		FE 2E 0C 00 00 00 00 00 22 32 11 20 15 1D 24 28
		15 1D 04 08 31 34 37 38 11 14 17 18 2C 00 00 00
		00 00 0A 0A 0C 0A 0A 0A 0C 0A 0A 0A 0C 0A 0A 0A
		0C 0A 0A 00 60 C3 92 26 FE 2E 0C 00 00 00 00 00
		78 00 7D 00 7E 00 83 00 86 00 18 00 1D 00 1E 00
		03 00 00 00 18 00 1D 00 1E 00 03 00 00 00 18 00
		1D 00 1E 00 03 00 00 00 89 00 8F 00 95 00 9E 00
		09 00 0F 00 15 00 1E 00 09 00 0F 00 15 00 1E 00
		09 00 0F 00 15 00 1E 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00

Handle 0x0035, DMI type 196, 244 bytes
OEM-specific Type
	Header and Data:
		C4 F4 35 00 06 40 00 00 07 00 0D 00 13 00 1A 00
		00 00 00 00 07 00 0D 00 13 00 1A 00 00 00 07 00
		0D 00 13 00 1A 00 00 00 00 00 07 00 0D 00 22 00
		24 00 28 00 28 00 02 00 04 00 08 00 08 00 02 00
		04 00 08 00 08 00 02 00 04 00 08 00 08 00 07 0D
		13 1A 22 24 28 28 69 00 00 00 38 01 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00

Handle 0x0036, DMI type 198, 244 bytes
OEM-specific Type
	Header and Data:
		C6 F4 36 00 06 40 00 00 03 00 0B 00 14 00 16 00
		02 00 00 00 03 00 0B 00 14 00 16 00 02 00 03 00
		0B 00 14 00 16 00 02 00 00 00 03 00 0B 00 1F 00
		23 00 27 00 26 00 1F 00 03 00 07 00 06 00 1F 00
		03 00 07 00 06 00 1F 00 03 00 07 00 06 00 03 0B
		14 16 1F 23 27 26 02 00 00 00 0F 01 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00

Handle 0x0037, DMI type 127, 4 bytes
End Of Table


[-- Attachment #5: pc300too-dmesg.out --]
[-- Type: text/plain, Size: 55749 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.36 (root@newvalis.gnu.org) (gcc version 4.3.2 (Debian 4.3.2-1.1) ) #1 SMP Mon Nov 8 20:40:14 EST 2010
[    0.000000] Command line: root=/dev/md0 ro console=tty0 console=ttyS0,115200n8 
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 0000000000098400 (usable)
[    0.000000]  BIOS-e820: 0000000000098400 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000008fd81000 (usable)
[    0.000000]  BIOS-e820: 000000008fde0000 - 000000008fde3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000008fde3000 - 000000008fdf0000 (ACPI data)
[    0.000000]  BIOS-e820: 000000008fdf0000 - 000000008fe00000 (reserved)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 0000000150000000 (usable)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI 2.4 present.
[    0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] No AGP bridge found
[    0.000000] last_pfn = 0x150000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-C7FFF write-protect
[    0.000000]   C8000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFF0000000 write-back
[    0.000000]   2 base 00008FE00000 mask FFFFFFE00000 uncachable
[    0.000000]   3 base 000100000000 mask FFFFC0000000 write-back
[    0.000000]   4 base 000140000000 mask FFFFF0000000 write-back
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000150000000 aka 5376M
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820 update range: 000000008fe00000 - 0000000100000000 (usable) ==> (reserved)
[    0.000000] last_pfn = 0x8fd81 max_arch_pfn = 0x400000000
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] found SMP MP-table at [ffff8800000f59c0] f59c0
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: 0000000000000000-000000008fd81000
[    0.000000]  0000000000 - 0080000000 page 1G
[    0.000000]  0080000000 - 008fc00000 page 2M
[    0.000000]  008fc00000 - 008fd81000 page 4k
[    0.000000] kernel direct mapping tables up to 8fd81000 @ 8000-b000
[    0.000000] init_memory_mapping: 0000000100000000-0000000150000000
[    0.000000]  0100000000 - 0140000000 page 1G
[    0.000000]  0140000000 - 0150000000 page 2M
[    0.000000] kernel direct mapping tables up to 150000000 @ a000-c000
[    0.000000] RAMDISK: 378c1000 - 37ff0000
[    0.000000] ACPI: RSDP 00000000000f7360 00014 (v00 GBT   )
[    0.000000] ACPI: RSDT 000000008fde3000 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: FACP 000000008fde3040 00074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: DSDT 000000008fde30c0 0747E (v01 GBT    GBTUACPI 00001000 MSFT 03000000)
[    0.000000] ACPI: FACS 000000008fde0000 00040
[    0.000000] ACPI: SSDT 000000008fdea600 0088C (v01 PTLTD  POWERNOW 00000001  LTP 00000001)
[    0.000000] ACPI: HPET 000000008fdeaec0 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
[    0.000000] ACPI: MCFG 000000008fdeaf00 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: TAMG 000000008fdeaf40 0032A (v01 GBT    GBT   B0 5455312E BG?? 53450101)
[    0.000000] ACPI: APIC 000000008fdea540 00084 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000150000000
[    0.000000] Initmem setup node 0 0000000000000000-0000000150000000
[    0.000000]   NODE_DATA [0000000100000000 - 0000000100004fff]
[    0.000000]  [ffffea0000000000-ffffea00049fffff] PMD -> [ffff880100200000-ffff8801033fffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000001 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00150000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000001 -> 0x00000098
[    0.000000]     0: 0x00000100 -> 0x0008fd81
[    0.000000]     0: 0x00100000 -> 0x00150000
[    0.000000] On node 0 totalpages: 916760
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3935 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 570809 pages, LIFO batch:31
[    0.000000]   Normal zone: 4480 pages used for memmap
[    0.000000]   Normal zone: 323200 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] early_res array is doubled to 64 at [7000 - 77ff]
[    0.000000] PM: Registered nosave memory: 0000000000098000 - 0000000000099000
[    0.000000] PM: Registered nosave memory: 0000000000099000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 000000008fd81000 - 000000008fde0000
[    0.000000] PM: Registered nosave memory: 000000008fde0000 - 000000008fde3000
[    0.000000] PM: Registered nosave memory: 000000008fde3000 - 000000008fdf0000
[    0.000000] PM: Registered nosave memory: 000000008fdf0000 - 000000008fe00000
[    0.000000] PM: Registered nosave memory: 000000008fe00000 - 00000000e0000000
[    0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
[    0.000000] Allocating PCI resources starting at 8fe00000 (gap: 8fe00000:50200000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 27 pages/cpu @ffff880001800000 s78976 r8192 d23424 u524288
[    0.000000] pcpu-alloc: s78976 r8192 d23424 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 897944
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: root=/dev/md0 ro console=tty0 console=ttyS0,115200n8 
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Node 0: aperture @ 14000000 size 32 MB
[    0.000000] Aperture pointing to e820 RAM. Ignoring.
[    0.000000] Your BIOS doesn't leave a aperture memory hole
[    0.000000] Please enable the IOMMU option in the BIOS setup
[    0.000000] This costs you 64 MB of RAM
[    0.000000] Mapping aperture over 65536 KB of RAM @ 20000000
[    0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000024000000
[    0.000000] early_res array is doubled to 128 at [b000 - bfff]
[    0.000000] Subtract (58 early reservations)
[    0.000000]   #1 [0001000000 - 00015dcba0]   TEXT DATA BSS
[    0.000000]   #2 [00378c1000 - 0037ff0000]         RAMDISK
[    0.000000]   #3 [00015dd000 - 00015dd106]             BRK
[    0.000000]   #4 [00000f59d0 - 0000100000]   BIOS reserved
[    0.000000]   #5 [00000f59c0 - 00000f59d0]    MP-table mpf
[    0.000000]   #6 [0000098400 - 00000f1100]   BIOS reserved
[    0.000000]   #7 [00000f129c - 00000f59c0]   BIOS reserved
[    0.000000]   #8 [00000f1100 - 00000f129c]    MP-table mpc
[    0.000000]   #9 [0000001000 - 0000003000]      TRAMPOLINE
[    0.000000]   #10 [0000003000 - 0000007000]     ACPI WAKEUP
[    0.000000]   #11 [0000008000 - 000000a000]         PGTABLE
[    0.000000]   #12 [000000a000 - 000000b000]         PGTABLE
[    0.000000]   #13 [0100000000 - 0100005000]       NODE_DATA
[    0.000000]   #14 [00015dd140 - 00015de140]         BOOTMEM
[    0.000000]   #15 [00015dcbc0 - 00015dce60]         BOOTMEM
[    0.000000]   #16 [0100005000 - 0100006000]         BOOTMEM
[    0.000000]   #17 [0100006000 - 0100007000]         BOOTMEM
[    0.000000]   #18 [0100200000 - 0103400000]        MEMMAP 0
[    0.000000]   #19 [00015dce80 - 00015dd000]         BOOTMEM
[    0.000000]   #20 [00015de140 - 00015f6140]         BOOTMEM
[    0.000000]   #21 [00015f6140 - 0001602140]         BOOTMEM
[    0.000000]   #22 [0001603000 - 0001604000]         BOOTMEM
[    0.000000]   #23 [0001602140 - 0001602181]         BOOTMEM
[    0.000000]   #24 [00016021c0 - 0001602203]         BOOTMEM
[    0.000000]   #25 [0001602240 - 00016024a8]         BOOTMEM
[    0.000000]   #26 [00016024c0 - 0001602528]         BOOTMEM
[    0.000000]   #27 [0001602540 - 00016025a8]         BOOTMEM
[    0.000000]   #28 [00016025c0 - 0001602628]         BOOTMEM
[    0.000000]   #29 [0001602640 - 00016026a8]         BOOTMEM
[    0.000000]   #30 [00016026c0 - 0001602728]         BOOTMEM
[    0.000000]   #31 [0001602740 - 00016027a8]         BOOTMEM
[    0.000000]   #32 [00016027c0 - 0001602828]         BOOTMEM
[    0.000000]   #33 [0001602840 - 00016028a8]         BOOTMEM
[    0.000000]   #34 [00016028c0 - 0001602928]         BOOTMEM
[    0.000000]   #35 [0001602940 - 00016029a8]         BOOTMEM
[    0.000000]   #36 [00016029c0 - 00016029e0]         BOOTMEM
[    0.000000]   #37 [0001602a00 - 0001602a20]         BOOTMEM
[    0.000000]   #38 [0001602a40 - 0001602a76]         BOOTMEM
[    0.000000]   #39 [0001602a80 - 0001602ab6]         BOOTMEM
[    0.000000]   #40 [0001800000 - 000181b000]         BOOTMEM
[    0.000000]   #41 [0001880000 - 000189b000]         BOOTMEM
[    0.000000]   #42 [0001900000 - 000191b000]         BOOTMEM
[    0.000000]   #43 [0001980000 - 000199b000]         BOOTMEM
[    0.000000]   #44 [0001602ac0 - 0001602ac8]         BOOTMEM
[    0.000000]   #45 [0001602b00 - 0001602b08]         BOOTMEM
[    0.000000]   #46 [0001602b40 - 0001602b50]         BOOTMEM
[    0.000000]   #47 [0001602b80 - 0001602ba0]         BOOTMEM
[    0.000000]   #48 [0001602bc0 - 0001602cf0]         BOOTMEM
[    0.000000]   #49 [0001602d00 - 0001602d50]         BOOTMEM
[    0.000000]   #50 [0001602d80 - 0001602dd0]         BOOTMEM
[    0.000000]   #51 [0001604000 - 000160c000]         BOOTMEM
[    0.000000]   #52 [0020000000 - 0024000000]         BOOTMEM
[    0.000000]   #53 [0001602e00 - 0001602e20]         BOOTMEM
[    0.000000]   #54 [000199b000 - 000599b000]         BOOTMEM
[    0.000000]   #55 [000160c000 - 000162c000]         BOOTMEM
[    0.000000]   #56 [000162c000 - 000166c000]         BOOTMEM
[    0.000000]   #57 [000000c000 - 0000014000]         BOOTMEM
[    0.000000] Memory: 3470308k/5505024k available (2811k kernel code, 1837984k absent, 196732k reserved, 1719k data, 608k init)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Verbose stalled-CPUs detection is disabled.
[    0.000000] NR_IRQS:1280
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] console [ttyS0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2310.063 MHz processor.
[    0.016005] Calibrating delay loop (skipped), value calculated using timer frequency.. 4620.12 BogoMIPS (lpj=9240240)
[    0.024003] pid_max: default: 32768 minimum: 301
[    0.028037] Security Framework initialized
[    0.032004] SELinux:  Disabled at boot.
[    0.036372] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.044010] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.048648] Mount-cache hash table entries: 256
[    0.052110] Initializing cgroup subsys ns
[    0.056004] Initializing cgroup subsys cpuacct
[    0.060004] Initializing cgroup subsys devices
[    0.064025] tseg: 008fe00000
[    0.064027] CPU: Physical Processor ID: 0
[    0.068002] CPU: Processor Core ID: 0
[    0.072003] mce: CPU supports 6 MCE banks
[    0.076008] Performance Events: AMD PMU driver.
[    0.081524] ... version:                0
[    0.084002] ... bit width:              48
[    0.088002] ... generic registers:      4
[    0.092002] ... value mask:             0000ffffffffffff
[    0.096002] ... max period:             00007fffffffffff
[    0.100002] ... fixed-purpose events:   0
[    0.104002] ... event mask:             000000000000000f
[    0.108643] ACPI: Core revision 20100702
[    0.124061] Setting APIC routing to flat
[    0.128495] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.173697] CPU0: AMD Athlon(tm) II X4 605e Processor stepping 02
[    0.180000] Booting Node   0, Processors  #1 #2 #3 Ok.
[    0.456006] Brought up 4 CPUs
[    0.459006] Total of 4 processors activated (18482.86 BogoMIPS).
[    0.460405] NET: Registered protocol family 16
[    0.464039] node 0 link 0: io port [c000, ffff]
[    0.464039] TOM: 00000000b0000000 aka 2816M
[    0.468002] Fam 10h mmconf [e0000000, e00fffff]
[    0.468004] node 0 link 0: mmio [a0000, bffff]
[    0.468007] node 0 link 0: mmio [b0000000, dfffffff]
[    0.468009] node 0 link 0: mmio [f0000000, fe02ffff]
[    0.468011] node 0 link 0: mmio [e0000000, e03fffff] ==> [e0100000, e03fffff]
[    0.468015] TOM2: 0000000150000000 aka 5376M
[    0.472002] bus: [00, 03] on node 0 link 0
[    0.472004] bus: 00 index 0 [io  0x0000-0xffff]
[    0.472007] bus: 00 index 1 [mem 0x000a0000-0x000bffff]
[    0.472008] bus: 00 index 2 [mem 0xb0000000-0xdfffffff]
[    0.472010] bus: 00 index 3 [mem 0xe0400000-0xffffffff]
[    0.472012] bus: 00 index 4 [mem 0xe0100000-0xe03fffff]
[    0.472014] bus: 00 index 5 [mem 0x150000000-0xfcffffffff]
[    0.472044] ACPI: bus type pci registered
[    0.476040] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.488003] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.519273] PCI: Using configuration type 1 for base access
[    0.524052] bio: create slab <bio-0> at 0
[    0.528548] ACPI: EC: Look up EC in DSDT
[    0.538213] ACPI: Interpreter enabled
[    0.540003] ACPI: (supports S0 S3 S4 S5)
[    0.545257] ACPI: Using IOAPIC for interrupt routing
[    0.556116] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.564096] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.572166] pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7]
[    0.576002] pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff]
[    0.584002] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.592002] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
[    0.600002] pci_root PNP0A03:00: host bridge window [mem 0xaff00000-0xfebfffff]
[    0.604020] pci 0000:00:00.0: reg 1c: [mem 0xe0000000-0xffffffff 64bit]
[    0.604103] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
[    0.604106] pci 0000:00:0a.0: PME# disabled
[    0.604147] pci 0000:00:11.0: reg 10: [io  0xff00-0xff07]
[    0.604157] pci 0000:00:11.0: reg 14: [io  0xfe00-0xfe03]
[    0.604166] pci 0000:00:11.0: reg 18: [io  0xfd00-0xfd07]
[    0.604176] pci 0000:00:11.0: reg 1c: [io  0xfc00-0xfc03]
[    0.604185] pci 0000:00:11.0: reg 20: [io  0xfb00-0xfb0f]
[    0.604195] pci 0000:00:11.0: reg 24: [mem 0xfe02f000-0xfe02f3ff]
[    0.604249] pci 0000:00:12.0: reg 10: [mem 0xfe02e000-0xfe02efff]
[    0.604320] pci 0000:00:12.1: reg 10: [mem 0xfe02d000-0xfe02dfff]
[    0.604403] pci 0000:00:12.2: reg 10: [mem 0xfe02c000-0xfe02c0ff]
[    0.604470] pci 0000:00:12.2: supports D1 D2
[    0.604472] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.604476] pci 0000:00:12.2: PME# disabled
[    0.604507] pci 0000:00:13.0: reg 10: [mem 0xfe02b000-0xfe02bfff]
[    0.608074] pci 0000:00:13.1: reg 10: [mem 0xfe02a000-0xfe02afff]
[    0.608156] pci 0000:00:13.2: reg 10: [mem 0xfe029000-0xfe0290ff]
[    0.608223] pci 0000:00:13.2: supports D1 D2
[    0.608225] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.608229] pci 0000:00:13.2: PME# disabled
[    0.608352] pci 0000:00:14.1: reg 10: [io  0x0000-0x0007]
[    0.608362] pci 0000:00:14.1: reg 14: [io  0x0000-0x0003]
[    0.608371] pci 0000:00:14.1: reg 18: [io  0x0000-0x0007]
[    0.608380] pci 0000:00:14.1: reg 1c: [io  0x0000-0x0003]
[    0.608389] pci 0000:00:14.1: reg 20: [io  0xfa00-0xfa0f]
[    0.608456] pci 0000:00:14.2: reg 10: [mem 0xfe024000-0xfe027fff 64bit]
[    0.608511] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.608515] pci 0000:00:14.2: PME# disabled
[    0.608645] pci 0000:00:14.5: reg 10: [mem 0xfe028000-0xfe028fff]
[    0.608791] pci 0000:01:05.0: reg 10: [mem 0xd0000000-0xdfffffff pref]
[    0.608795] pci 0000:01:05.0: reg 14: [io  0xee00-0xeeff]
[    0.608800] pci 0000:01:05.0: reg 18: [mem 0xfdfe0000-0xfdfeffff]
[    0.608809] pci 0000:01:05.0: reg 24: [mem 0xfde00000-0xfdefffff]
[    0.608820] pci 0000:01:05.0: supports D1 D2
[    0.608835] pci 0000:01:05.1: reg 10: [mem 0xfdffc000-0xfdffffff]
[    0.608857] pci 0000:01:05.1: supports D1 D2
[    0.608893] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    0.612003] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.612006] pci 0000:00:01.0:   bridge window [mem 0xfde00000-0xfdffffff]
[    0.612009] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.612052] pci 0000:02:00.0: reg 10: [io  0xde00-0xdeff]
[    0.612071] pci 0000:02:00.0: reg 18: [mem 0xfdbff000-0xfdbfffff 64bit pref]
[    0.612084] pci 0000:02:00.0: reg 20: [mem 0xfdbe0000-0xfdbeffff 64bit pref]
[    0.612094] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
[    0.612121] pci 0000:02:00.0: supports D1 D2
[    0.612123] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.612127] pci 0000:02:00.0: PME# disabled
[    0.620035] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
[    0.624005] pci 0000:00:0a.0:   bridge window [io  0xd000-0xdfff]
[    0.624008] pci 0000:00:0a.0:   bridge window [mem 0xfdd00000-0xfddfffff]
[    0.624012] pci 0000:00:0a.0:   bridge window [mem 0xfdb00000-0xfdbfffff 64bit pref]
[    0.624066] pci 0000:03:06.0: reg 10: [io  0xcf00-0xcf3f]
[    0.624127] pci 0000:03:06.0: reg 30: [mem 0x00000000-0x0000ffff pref]
[    0.624164] pci 0000:03:07.0: reg 10: [mem 0xcffff000-0xcffff07f]
[    0.624177] pci 0000:03:07.0: reg 14: [io  0xce00-0xce7f]
[    0.624189] pci 0000:03:07.0: reg 18: [mem 0xcfffe000-0xcfffe3ff]
[    0.624202] pci 0000:03:07.0: reg 1c: [mem 0xfdc80000-0xfdcfffff pref]
[    0.624225] pci 0000:03:07.0: reg 24: [mem 0xcfffd000-0xcfffd0ff]
[    0.624289] pci 0000:03:0e.0: reg 10: [mem 0xcfffc000-0xcfffc7ff]
[    0.624302] pci 0000:03:0e.0: reg 14: [mem 0xcfff8000-0xcfffbfff]
[    0.624379] pci 0000:03:0e.0: supports D1 D2
[    0.624381] pci 0000:03:0e.0: PME# supported from D0 D1 D2 D3hot
[    0.624386] pci 0000:03:0e.0: PME# disabled
[    0.624419] pci 0000:00:14.4: PCI bridge to [bus 03-03] (subtractive decode)
[    0.632004] pci 0000:00:14.4:   bridge window [io  0xc000-0xcfff]
[    0.632008] pci 0000:00:14.4:   bridge window [mem 0xb0000000-0xcfffffff]
[    0.632013] pci 0000:00:14.4:   bridge window [mem 0xfdc00000-0xfdcfffff pref]
[    0.632015] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.632018] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.632020] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.632023] pci 0000:00:14.4:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
[    0.632026] pci 0000:00:14.4:   bridge window [mem 0xaff00000-0xfebfffff] (subtractive decode)
[    0.632040] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.632348] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
[    0.632439] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCEA._PRT]
[    0.632482] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
[    0.648681] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.657277] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.665275] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.673277] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.681278] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.689273] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.697274] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.705278] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.713255] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    0.720004] vgaarb: loaded
[    0.724037] usbcore: registered new interface driver usbfs
[    0.728038] usbcore: registered new interface driver hub
[    0.732038] usbcore: registered new device driver usb
[    0.740038] PCI: Using ACPI for IRQ routing
[    0.744003] PCI: pci_cache_line_size set to 64 bytes
[    0.744010] pci 0000:00:00.0: no compatible bridge window for [mem 0xe0000000-0xffffffff 64bit]
[    0.752077] reserve RAM buffer: 0000000000098400 - 000000000009ffff 
[    0.752079] reserve RAM buffer: 000000008fd81000 - 000000008fffffff 
[    0.752101] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    0.757361] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
[    0.766036] Switching to clocksource tsc
[    0.768938] pnp: PnP ACPI init
[    0.772036] ACPI: bus type pnp registered
[    0.776768] pnp 00:02: disabling [mem 0x00000000-0x00000fff window] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
[    0.789423] pnp 00:02: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:02:00.0 BAR 6 [mem 0x00000000-0x0000ffff pref]
[    0.802746] pnp 00:02: disabling [mem 0x00000000-0x00000fff window disabled] because it overlaps 0000:03:06.0 BAR 6 [mem 0x00000000-0x0000ffff pref]
[    0.818038] pnp 00:0d: disabling [mem 0x000d4400-0x000d7fff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
[    0.830061] pnp 00:0d: disabling [mem 0x000f0000-0x000f7fff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
[    0.842084] pnp 00:0d: disabling [mem 0x000f8000-0x000fbfff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
[    0.854106] pnp 00:0d: disabling [mem 0x000fc000-0x000fffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
[    0.866131] pnp 00:0d: disabling [mem 0x00000000-0x0009ffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
[    0.878154] pnp 00:0d: disabling [mem 0x00100000-0x8fddffff] because it overlaps 0000:00:00.0 BAR 3 [mem 0x00000000-0x1fffffff 64bit]
[    0.890323] pnp: PnP ACPI: found 14 devices
[    0.894543] ACPI: ACPI bus type pnp unregistered
[    0.899194] system 00:01: [io  0x04d0-0x04d1] has been reserved
[    0.905145] system 00:01: [io  0x0220-0x0225] has been reserved
[    0.911092] system 00:01: [io  0x0290-0x0294] has been reserved
[    0.917041] system 00:02: [io  0x4100-0x411f] has been reserved
[    0.922994] system 00:02: [io  0x0228-0x022f] has been reserved
[    0.928939] system 00:02: [io  0x040b] has been reserved
[    0.934280] system 00:02: [io  0x04d6] has been reserved
[    0.939618] system 00:02: [io  0x0c00-0x0c01] has been reserved
[    0.945566] system 00:02: [io  0x0c14] has been reserved
[    0.950905] system 00:02: [io  0x0c50-0x0c52] has been reserved
[    0.956854] system 00:02: [io  0x0c6c-0x0c6d] has been reserved
[    0.962800] system 00:02: [io  0x0c6f] has been reserved
[    0.968140] system 00:02: [io  0x0cd0-0x0cd1] has been reserved
[    0.974088] system 00:02: [io  0x0cd2-0x0cd3] has been reserved
[    0.980041] system 00:02: [io  0x0cd4-0x0cdf] has been reserved
[    0.985988] system 00:02: [io  0x4000-0x40fe] has been reserved
[    0.991936] system 00:02: [io  0x4210-0x4217] has been reserved
[    0.997883] system 00:02: [io  0x0b00-0x0b0f] has been reserved
[    1.003837] system 00:02: [io  0x0b10-0x0b1f] has been reserved
[    1.009784] system 00:02: [io  0x0b20-0x0b3f] has been reserved
[    1.015738] system 00:02: [mem 0xfee00400-0xfee00fff window] has been reserved
[    1.022995] system 00:0c: [mem 0xe0000000-0xefffffff] has been reserved
[    1.029639] system 00:0d: [mem 0x8fde0000-0x8fdfffff] could not be reserved
[    1.036631] system 00:0d: [mem 0xffff0000-0xffffffff] has been reserved
[    1.043273] system 00:0d: [mem 0x8fef0000-0xafeeffff] could not be reserved
[    1.050258] system 00:0d: [mem 0xfec00000-0xfec00fff] could not be reserved
[    1.057247] system 00:0d: [mem 0xfee00000-0xfee00fff] could not be reserved
[    1.064243] system 00:0d: [mem 0xfff80000-0xfffeffff] has been reserved
[    1.078044] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    1.083303] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    1.089426] pci 0000:00:01.0:   bridge window [mem 0xfde00000-0xfdffffff]
[    1.096246] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    1.104019] pci 0000:02:00.0: BAR 6: assigned [mem 0xfdb00000-0xfdb0ffff pref]
[    1.111270] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
[    1.116531] pci 0000:00:0a.0:   bridge window [io  0xd000-0xdfff]
[    1.122652] pci 0000:00:0a.0:   bridge window [mem 0xfdd00000-0xfddfffff]
[    1.129466] pci 0000:00:0a.0:   bridge window [mem 0xfdb00000-0xfdbfffff 64bit pref]
[    1.137245] pci 0000:03:06.0: BAR 6: assigned [mem 0xfdc00000-0xfdc0ffff pref]
[    1.144499] pci 0000:00:14.4: PCI bridge to [bus 03-03]
[    1.149759] pci 0000:00:14.4:   bridge window [io  0xc000-0xcfff]
[    1.155888] pci 0000:00:14.4:   bridge window [mem 0xb0000000-0xcfffffff]
[    1.162711] pci 0000:00:14.4:   bridge window [mem 0xfdc00000-0xfdcfffff pref]
[    1.169984] pci 0000:00:0a.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.176719] pci 0000:00:0a.0: setting latency timer to 64
[    1.176727] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    1.176729] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    1.176731] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    1.176733] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
[    1.176736] pci_bus 0000:00: resource 8 [mem 0xaff00000-0xfebfffff]
[    1.176738] pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
[    1.176740] pci_bus 0000:01: resource 1 [mem 0xfde00000-0xfdffffff]
[    1.176743] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    1.176745] pci_bus 0000:02: resource 0 [io  0xd000-0xdfff]
[    1.176748] pci_bus 0000:02: resource 1 [mem 0xfdd00000-0xfddfffff]
[    1.176750] pci_bus 0000:02: resource 2 [mem 0xfdb00000-0xfdbfffff 64bit pref]
[    1.176752] pci_bus 0000:03: resource 0 [io  0xc000-0xcfff]
[    1.176755] pci_bus 0000:03: resource 1 [mem 0xb0000000-0xcfffffff]
[    1.176757] pci_bus 0000:03: resource 2 [mem 0xfdc00000-0xfdcfffff pref]
[    1.176759] pci_bus 0000:03: resource 4 [io  0x0000-0x0cf7]
[    1.176761] pci_bus 0000:03: resource 5 [io  0x0d00-0xffff]
[    1.176763] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
[    1.176766] pci_bus 0000:03: resource 7 [mem 0x000c0000-0x000dffff]
[    1.176768] pci_bus 0000:03: resource 8 [mem 0xaff00000-0xfebfffff]
[    1.176845] NET: Registered protocol family 2
[    1.181393] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    1.189919] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    1.199981] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    1.207019] TCP: Hash tables configured (established 524288 bind 65536)
[    1.213668] TCP reno registered
[    1.216859] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    1.222925] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    1.229537] NET: Registered protocol family 1
[    1.233942] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
[    1.380053] pci 0000:01:05.0: Boot video device
[    1.380069] PCI: CLS 4 bytes, default 64
[    1.380114] Trying to unpack rootfs image as initramfs...
[    1.533921] Freeing initrd memory: 7356k freed
[    1.541095] PCI-DMA: Disabling AGP.
[    1.544806] PCI-DMA: aperture base @ 20000000 size 65536 KB
[    1.550422] PCI-DMA: using GART IOMMU.
[    1.554207] PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
[    1.564867] audit: initializing netlink socket (disabled)
[    1.570315] type=2000 audit(1289958061.568:1): initialized
[    1.576099] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.582687] VFS: Disk quotas dquot_6.5.2
[    1.586685] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.593223] msgmni has been set to 6921
[    1.597325] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    1.604766] io scheduler noop registered
[    1.608722] io scheduler deadline registered
[    1.614324] io scheduler cfq registered (default)
[    1.619930] Linux agpgart interface v0.103
[    1.624075] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.650900] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    1.677736] 00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    1.684940] brd: module loaded
[    1.688237] PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    1.694453] PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    1.704320] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.709515] mice: PS/2 mouse device common for all mice
[    1.714885] rtc_cmos 00:05: RTC can wake from S4
[    1.719648] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    1.725809] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    1.732264] cpuidle: using governor ladder
[    1.736397] cpuidle: using governor menu
[    1.740565] TCP cubic registered
[    1.742773] input: AT Translated Set 2 keyboard as /class/input/input0
[    1.750385] NET: Registered protocol family 17
[    1.754867] Registering the dns_resolver key type
[    1.759787] registered taskstats version 1
[    1.764206] rtc_cmos 00:05: setting system clock to 2010-11-17 01:41:03 UTC (1289958063)
[    1.772481] Freeing unused kernel memory: 608k freed
[    1.858877] udevd (521): /proc/521/oom_adj is deprecated, please use /proc/521/oom_score_adj instead.
[    2.046448] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.052474] Floppy drive(s): fd0 is 1.44M
[    2.070120] SCSI subsystem initialized
[    2.075593] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.081004] FDC 0 is a post-1991 82077
[    2.086187] Warning! ehci_hcd should always be loaded before uhci_hcd and ohci_hcd, not after
[    2.113258] Uniform Multi-Platform E-IDE driver
[    2.133777] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    2.139570] r8169 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.146680] r8169 0000:02:00.0: setting latency timer to 64
[    2.146717] r8169 0000:02:00.0: irq 40 for MSI/MSI-X
[    2.146913] r8169 0000:02:00.0: eth0: RTL8168c/8111c at 0xffffc9000067e000, 6c:f0:49:7a:b7:cc, XID 1c4000c0 IRQ 40
[    2.160721] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    2.168187] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    2.171423] libata version 3.00 loaded.
[    2.173604] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 1
[    2.181195] ohci_hcd 0000:00:12.0: irq 16, io mem 0xfe02e000
[    2.189726] 3c59x 0000:03:06.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[    2.196769] 3c59x: Donald Becker and others.
[    2.201143] 0000:03:06.0: 3Com PCI 3c905 Boomerang 100baseTx at 000000000001cf00.
[    2.231351] ohci1394 0000:03:0e.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    2.244050] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
[    2.251033] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.258418] usb usb1: Product: OHCI Host Controller
[    2.263425] usb usb1: Manufacturer: Linux 2.6.36 ohci_hcd
[    2.268930] usb usb1: SerialNumber: 0000:00:12.0
[    2.273740] hub 1-0:1.0: USB hub found
[    2.277604] hub 1-0:1.0: 3 ports detected
[    2.281856] ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    2.289177] ohci_hcd 0000:00:12.1: OHCI Host Controller
[    2.294569] ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 2
[    2.302150] ohci_hcd 0000:00:12.1: irq 16, io mem 0xfe02d000
[    2.307991] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[22]  MMIO=[cfffc000-cfffc7ff]  Max Packet=[2048]  IR/IT contexts=[4/8]
[    2.364034] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    2.370982] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.378421] usb usb2: Product: OHCI Host Controller
[    2.383385] usb usb2: Manufacturer: Linux 2.6.36 ohci_hcd
[    2.388946] usb usb2: SerialNumber: 0000:00:12.1
[    2.393768] hub 2-0:1.0: USB hub found
[    2.397605] hub 2-0:1.0: 3 ports detected
[    2.401888] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.409238] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    2.414624] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 3
[    2.422245] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe02b000
[    2.488027] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    2.494996] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.502410] usb usb3: Product: OHCI Host Controller
[    2.507427] usb usb3: Manufacturer: Linux 2.6.36 ohci_hcd
[    2.512926] usb usb3: SerialNumber: 0000:00:13.0
[    2.517758] hub 3-0:1.0: USB hub found
[    2.521610] hub 3-0:1.0: 3 ports detected
[    2.525854] ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.533156] ohci_hcd 0000:00:13.1: OHCI Host Controller
[    2.538538] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 4
[    2.546123] ohci_hcd 0000:00:13.1: irq 18, io mem 0xfe02a000
[    2.608026] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    2.614986] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.622383] usb usb4: Product: OHCI Host Controller
[    2.627401] usb usb4: Manufacturer: Linux 2.6.36 ohci_hcd
[    2.632978] usb usb4: SerialNumber: 0000:00:13.1
[    2.637825] hub 4-0:1.0: USB hub found
[    2.641637] hub 4-0:1.0: 3 ports detected
[    2.645934] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    2.653267] ohci_hcd 0000:00:14.5: OHCI Host Controller
[    2.658685] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 5
[    2.666289] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe028000
[    2.732026] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    2.739001] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.746453] usb usb5: Product: OHCI Host Controller
[    2.751428] usb usb5: Manufacturer: Linux 2.6.36 ohci_hcd
[    2.756917] usb usb5: SerialNumber: 0000:00:14.5
[    2.761777] hub 5-0:1.0: USB hub found
[    2.765660] hub 5-0:1.0: 2 ports detected
[    2.769940] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    2.777481] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    2.782937] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 6
[    2.790625] ehci_hcd 0000:00:12.2: debug port 1
[    2.795397] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe02c000
[    2.812054] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    2.817997] usb usb6: New USB device found, idVendor=1d6b, idProduct=0002
[    2.824952] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.832329] usb usb6: Product: EHCI Host Controller
[    2.837318] usb usb6: Manufacturer: Linux 2.6.36 ehci_hcd
[    2.842866] usb usb6: SerialNumber: 0000:00:12.2
[    2.847701] hub 6-0:1.0: USB hub found
[    2.851548] hub 6-0:1.0: 6 ports detected
[    2.855849] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    2.863217] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    2.868592] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 7
[    2.876211] ehci_hcd 0000:00:13.2: debug port 1
[    2.880937] ehci_hcd 0000:00:13.2: irq 19, io mem 0xfe029000
[    2.896056] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    2.901958] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002
[    2.908917] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.916285] usb usb7: Product: EHCI Host Controller
[    2.921301] usb usb7: Manufacturer: Linux 2.6.36 ehci_hcd
[    2.926796] usb usb7: SerialNumber: 0000:00:13.2
[    2.931614] hub 7-0:1.0: USB hub found
[    2.935477] hub 7-0:1.0: 6 ports detected
[    2.939772] atiixp 0000:00:14.1: IDE controller (0x1002:0x439c rev 0x00)
[    2.946832] ATIIXP_IDE 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    2.954398] atiixp 0000:00:14.1: not 100% native mode: will probe irqs later
[    2.961624]     ide0: BM-DMA at 0xfa00-0xfa07
[    2.966114] atiixp 0000:00:14.1: simplex device: DMA disabled
[    2.971979] ide1: DMA disabled
[    2.975151] Probing IDE interface ide0...
[    3.544078] Probing IDE interface ide1...
[    3.588179] ieee1394: Host added: ID:BUS[0-00:1023]  GUID[003a0966006cf049]
[    4.104102] ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
[    4.108841] ide1 at 0x170-0x177,0x376 on irq 15
[    4.113668] ahci 0000:00:11.0: version 3.0
[    4.113683] ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    4.120801] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[    4.129152] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
[    4.138018] scsi0 : ahci
[    4.140802] scsi1 : ahci
[    4.143525] scsi2 : ahci
[    4.146219] scsi3 : ahci
[    4.148946] scsi4 : ahci
[    4.151632] scsi5 : ahci
[    4.154358] ata1: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f100 irq 22
[    4.161893] ata2: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f180 irq 22
[    4.169449] ata3: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f200 irq 22
[    4.177010] ata4: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f280 irq 22
[    4.184559] ata5: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f300 irq 22
[    4.192102] ata6: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f380 irq 22
[    4.516078] ata4: SATA link down (SStatus 0 SControl 300)
[    4.516142] ata3: SATA link down (SStatus 0 SControl 300)
[    4.516186] ata5: SATA link down (SStatus 0 SControl 300)
[    4.516227] ata6: SATA link down (SStatus 0 SControl 300)
[    4.688060] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.688560] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.688820] ata2.00: ATA-7: INTEL SSDSA2M040G2GC, 2CV102HD, max UDMA/133
[    4.688824] ata2.00: 78165360 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    4.689080] ata2.00: configured for UDMA/133
[    4.720185] ata1.00: ATA-7: INTEL SSDSA2M040G2GC, 2CV102HD, max UDMA/133
[    4.727069] ata1.00: 78165360 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    4.734042] ata1.00: configured for UDMA/133
[    4.752187] scsi 0:0:0:0: Direct-Access     ATA      INTEL SSDSA2M040 2CV1 PQ: 0 ANSI: 5
[    4.760699] scsi 1:0:0:0: Direct-Access     ATA      INTEL SSDSA2M040 2CV1 PQ: 0 ANSI: 5
[    4.782669] sd 1:0:0:0: [sdb] 78165360 512-byte logical blocks: (40.0 GB/37.2 GiB)
[    4.782674] sd 0:0:0:0: [sda] 78165360 512-byte logical blocks: (40.0 GB/37.2 GiB)
[    4.782746] sd 0:0:0:0: [sda] Write Protect is off
[    4.782749] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    4.782774] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.783154]  sda: sda1 sda2
[    4.815336] sd 1:0:0:0: [sdb] Write Protect is off
[    4.815396] sd 0:0:0:0: [sda] Attached SCSI disk
[    4.824977] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    4.825040] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.834662]  sdb: sdb1 sdb2
[    4.837887] sd 1:0:0:0: [sdb] Attached SCSI disk
[    4.932765] md: raid1 personality registered for level 1
[    4.944673] md: md0 stopped.
[    4.953404] md: bind<sdb1>
[    4.956419] md: bind<sda1>
[    4.967540] md/raid1:md0: active with 2 out of 2 mirrors
[    4.973014] md0: detected capacity change from 0 to 35998597120
[    4.979233] md: md1 stopped.
[    4.981142]  md0: unknown partition table
[    5.023019] EXT3-fs: barriers not enabled
[    5.027421] kjournald starting.  Commit interval 5 seconds
[    5.027455] EXT3-fs (md0): mounted filesystem with writeback data mode
[    5.250966] udevd version 125 started
[    5.524398] input: PC Speaker as /class/input/input1
[    5.605992] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    5.618541] ACPI: acpi_idle registered with cpuidle
[    5.629723] input: Power Button as /class/input/input2
[    5.635078] ACPI: Power Button [PWRB]
[    5.637239] ACPI: WMI: Mapper loaded
[    5.642615] input: Power Button as /class/input/input3
[    5.647867] ACPI: Power Button [PWRF]
[    5.688020] ACPI: resource piix4_smbus [io  0x0b00-0x0b07] conflicts with ACPI region SOR1 [mem 0x00000b00-0x00000b0f]
[    5.698920] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    5.732031] shpchp 0000:00:01.0: HPC vendor_id 1022 device_id 9602 ss_vid 1022 ss_did 9602
[    5.740442] shpchp 0000:00:01.0: Cannot reserve MMIO region
[    5.768022] shpchp 0000:00:0a.0: HPC vendor_id 1022 device_id 9609 ss_vid 1022 ss_did 9601
[    5.776395] shpchp 0000:00:0a.0: Cannot reserve MMIO region
[    5.782109] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    5.853688] parport_pc 00:0a: reported by Plug and Play ACPI
[    5.859591] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
[    5.873870] Error: Driver 'pcspkr' is already registered, aborting...
[    5.960033] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    5.997815] HDLC support module revision 1.22
[    6.040078] PC300 0000:03:07.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[    6.201322] pc300: PC300/RSV, 256 KB RAM at 0xfdc80000, IRQ21, using 10 TX + 71 RX packets rings
[    6.210649] hdlc0: PC300 channel 0
[    6.214407] hdlc1: PC300 channel 1
[    6.261377] hda_codec: ALC889A: BIOS auto-probing.
[    6.272233] HDA Intel 0000:01:05.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    6.279685] HDA Intel 0000:01:05.1: setting latency timer to 64
[    6.986897] EXT3-fs (md0): using internal journal
[    8.015522] loop: module loaded
[    8.052997] md: md1 stopped.
[    8.072959] md: bind<sdb2>
[    8.102415] md/raid1:md1: active with 1 out of 2 mirrors
[    8.107893] md1: detected capacity change from 0 to 4016177152
[    8.114443]  md1: unknown partition table
[    8.169943] Adding 3922044k swap on /dev/md1.  Priority:-1 extents:1 across:3922044k 
[    8.275781] ip_tables: (C) 2000-2006 Netfilter Core Team
[    8.295476] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[    8.401941] r8169 0000:02:00.0: eth0: link up
[    8.405942] r8169 0000:02:00.0: eth0: link up
[    8.448733] eth1:  setting full-duplex.
[    8.491742] hdlc0: Carrier detected
[    8.818002] NET: Registered protocol family 10
[    8.823034] lo: Disabled Privacy Extensions
[   16.233712] hdlc0: Link up (peer uptime 0d18h55m19s)
[   19.488046] eth0: no IPv6 routers present
[   19.584022] eth1: no IPv6 routers present
[   59.175900] bernie: stat=0x80, desc_address=ffffc900111003a8, port->chan=0
[   59.176639] bernie: cp=3b4, bp=1ef18, len=56, unused=12
[   59.184040] bernie: hdlc0 TX(1504): 0F 00 08 00 45 00 05 DC E6 3B 40 00 3F 06 A1 DB C7 E8 4C A5 62 89 36 EE ED 41 00 19 82 4F FB AD B5 E8 FC F2 80 10 00 5C 19 D1 00 00 01 01 08 0A 41 46 1E 20 CE D6 C0 D2 72 73 61 2D 73 68 61 31 3B 20 63 3D 6E 6F 66 77 73 3B 20 64 3D 67 6D 61 69 6C 2E 63 6F 6D 3B 20 73 3D 67 61 6D 6D 61 3B 0D 0A 09 68...
[   67.159314] bernie: stat=0x80, desc_address=ffffc90011100390, port->chan=0
[   67.163214] bernie: cp=39c, bp=1e298, len=56, unused=12
[   67.168039] bernie: hdlc0 TX(62): 0F 00 08 00 45 00 00 3A 3D 62 40 00 3F 11 16 AA C7 E8 4C A5 8C BA 46 5F 84 2D 00 35 00 26 27 6E 0B A1 01 00 00 01 00 00 00 00 00 00 04 6D 78 31 30 03 67 6E 75 03 6F 72 67 00 00 01 00 01
[   68.425601] bernie: stat=0x80, desc_address=ffffc90011100390, port->chan=0
[   68.426123] bernie: cp=39c, bp=1e298, len=77, unused=12
[   68.426123] bernie: hdlc0 TX(69): 0F 00 08 00 45 00 00 41 42 5A 40 00 3F 11 11 AB C7 E8 4C A5 8C BA 46 5F CC E7 00 35 00 2D 6F 55 21 B4 01 00 00 01 00 00 00 00 00 00 01 65 02 6D 78 04 6D 61 69 6C 05 79 61 68 6F 6F 03 63 6F 6D 00 00 1C 00 01
[   70.312068] bernie: stat=0x80, desc_address=ffffc900111003b4, port->chan=0
[   70.314393] bernie: cp=3c0, bp=1f558, len=1504, unused=12
[   70.314393] bernie: hdlc0 TX(1474): 0F 00 08 00 45 00 05 BE 66 F5 40 00 3F 06 23 1F C7 E8 4C A5 4A 7D 4D 1B A9 3E 00 19 8E ED 22 77 3D 22 95 EF 80 10 00 5C 16 44 00 00 01 01 08 0A 41 46 49 A8 C4 92 9B A9 52 65 63 65 69 76 65 64 3A 20 66 72 6F 6D 20 5B 31 32 37 2E 30 2E 30 2E 31 5D 20 28 70 6F 72 74 3D 34 37 39 30 37 20 68 65 6C 6F 3D...
[   70.443466] bernie: stat=0x80, desc_address=ffffc9001110039c, port->chan=0
[   70.444392] bernie: cp=3a8, bp=1e8d8, len=76, unused=12
[   70.444392] bernie: hdlc0 TX(1504): 0F 00 08 00 45 00 05 DC 73 8B 40 00 3F 06 A4 58 C7 E8 4C A5 C3 9F 46 0B E0 A0 00 19 8A CF 46 5D 86 1E C0 30 80 10 00 5C 18 2A 00 00 01 01 08 0A 41 46 4A 05 16 CF 9B 47 52 65 63 65 69 76 65 64 3A 20 66 72 6F 6D 20 5B 31 32 37 2E 30 2E 30 2E 31 5D 20 28 70 6F 72 74 3D 36 30 35 31 34 20 68 65 6C 6F 3D...
[   73.776240] bernie: stat=0x80, desc_address=ffffc90011100384, port->chan=0
[   73.780127] bernie: cp=390, bp=1dc58, len=273, unused=12
[   73.780127] bernie: hdlc0 TX(64): 0F 00 08 00 45 00 00 3C 92 BA 40 00 3F 06 C1 8E C7 E8 4C AC 8C BA 46 24 A2 6C 00 50 30 AB 36 DE 00 00 00 00 A0 02 16 D0 5F B2 00 00 02 04 05 B4 04 02 08 0A 3B 60 A4 64 00 00 00 00 01 03 03 07
[   78.215881] bernie: stat=0x80, desc_address=ffffc90011100360, port->chan=0
[   78.219613] bernie: cp=36c, bp=1c998, len=50, unused=12
[   78.219613] bernie: hdlc0 TX(323): 0F 00 08 00 45 00 01 3F C7 32 40 00 3F 06 8C 2A C7 E8 4C AC 8C BA 46 0D BE 90 00 19 34 B2 6F C4 CD CF 00 43 80 18 00 42 18 EE 00 00 01 01 08 0A 3B 60 A8 BD 90 88 EA 5A 16 03 01 01 06 10 00 01 02 01 00 97 89 09 5E 3E E2 01 34 A2 1C B4 4F 66 13 96 6B 2F 5A EA 65 91 3D 51 ED 00 9D 64 7C E1 33 ED 1A 3B...
[   92.256355] bernie: stat=0x80, desc_address=ffffc900111003c0, port->chan=0
[   92.260297] bernie: cp=354, bp=1fb98, len=1504, unused=12
[   92.260297] bernie: hdlc0 TX(382): 0F 00 08 00 45 00 01 7A E2 75 40 00 3F 06 C9 DE C7 E8 4C A5 48 22 31 7A BC 9F 00 19 A2 BC 7F 4F 35 96 74 35 80 18 01 32 51 17 00 00 01 01 08 0A 41 46 9F 59 39 53 59 DD 16 03 01 01 06 10 00 01 02 01 00 42 79 A7 4B B8 36 6A 84 71 CA 57 84 92 AC 5A E5 05 49 F1 35 89 E6 AC E2 B8 1D 93 95 76 98 84 82 1E...
[   99.097689] bernie: stat=0x80, desc_address=ffffc90011100390, port->chan=0
[   99.100726] bernie: cp=39c, bp=1e298, len=1504, unused=12
[   99.100726] bernie: hdlc0 TX(93): 0F 00 08 00 45 00 00 59 26 08 40 00 3F 06 7D 1C C7 E8 4C A5 82 88 01 65 E6 D9 00 19 98 8C 66 3C 6E C4 D3 B7 80 18 00 BD 89 CA 00 00 01 01 08 0A 41 46 BA 32 3F BF 92 AF 15 03 01 00 20 50 35 A1 23 AC CD ED 7C 8F 33 2E 3F 82 0E 88 FD 80 90 70 B7 30 72 68 9E 8A 37 73 D2 63 71 2B 31
[  106.656297] bernie: stat=0x80, desc_address=ffffc900111003b4, port->chan=0
[  106.658742] bernie: cp=3c0, bp=1f558, len=1474, unused=12
[  106.658742] bernie: hdlc0 TX(56): 0F 00 08 00 45 00 00 34 24 32 40 00 3F 06 30 BD C7 E8 4C A5 4A 06 88 41 9A 7A 00 19 B0 87 F3 65 91 47 BB 65 80 10 00 5C E7 91 00 00 01 01 08 0A 41 46 D7 AA 93 5B 70 7F
[  109.223945] bernie: stat=0x80, desc_address=ffffc90011100378, port->chan=0
[  109.226964] bernie: cp=384, bp=1d618, len=56, unused=12
[  109.226964] bernie: hdlc0 TX(437): 0F 00 08 00 45 00 01 B1 82 CD 40 00 3F 06 0B 54 C7 E8 4C A5 4A 7D 4D 1B AC 03 00 19 B2 1D 73 91 FD 5E 3C 05 80 18 00 5C 58 B7 00 00 01 01 08 0A 41 46 E1 C1 C7 5D 6E D7 6F 6E 6D 65 6E 74 20 62 65 66 6F 72 65 20 70 72 69 6E 74 69 6E 67 20 74 68 69 73 20 65 6D 61 69 6C 0D 0A 3E 0D 0A 3E 20 5F 5F 5F 5F...
[  137.824245] bernie: stat=0x80, desc_address=ffffc9001110039c, port->chan=0
[  137.826918] bernie: cp=3a8, bp=1e8d8, len=56, unused=12
[  137.826918] bernie: hdlc0 TX(62): 0F 00 08 00 45 00 00 3A 04 B6 40 00 3F 06 FF E1 C7 E8 4C A5 11 94 11 05 DE 68 00 19 C9 B3 4B 2C C1 7D 20 BA 80 18 00 6C 79 0A 00 00 01 01 08 0A 41 47 51 6E 0E 44 A7 CB 51 55 49 54 0D 0A
[  146.835503] bernie: stat=0x80, desc_address=ffffc90011100378, port->chan=0
[  146.837804] bernie: cp=384, bp=1d618, len=1504, unused=12
[  146.837804] bernie: hdlc0 TX(56): 0F 00 08 00 45 00 00 34 0F 68 40 00 3F 06 80 36 C7 E8 4C A5 4A 7D 4D 1B AE 8A 00 19 D6 0A 7C 87 4D 04 C4 05 80 10 00 5C 4F 8F 00 00 01 01 08 0A 41 47 74 A6 1A 32 98 4C
[  181.782010] bernie: stat=0x80, desc_address=ffffc90011100354, port->chan=0
[  181.784576] bernie: cp=360, bp=1c358, len=1474, unused=12
[  181.784576] bernie: hdlc0 TX(56): 0F 00 08 00 45 00 00 34 CA E3 40 00 3F 06 DE 00 C7 E8 4C A5 5E 88 1F CA E5 D1 00 19 F5 34 3E 77 B6 06 48 B6 80 10 01 14 37 FC 00 00 01 01 08 0A 41 47 FD 05 1B 7B 38 B1
[  272.745752] bernie: stat=0x80, desc_address=ffffc90011100360, port->chan=0
[  272.748026] bernie: cp=36c, bp=1c998, len=1474, unused=12
[  272.748026] bernie: hdlc0 TX(81): 0F 00 08 00 45 00 00 4D 60 69 40 00 3F 11 F3 8F C7 E8 4C A5 8C BA 46 5F AE 02 00 35 00 39 51 DC 95 7D 01 00 00 01 00 00 00 00 00 00 04 61 6C 74 34 0D 67 6D 61 69 6C 2D 73 6D 74 70 2D 69 6E 01 6C 06 67 6F 6F 67 6C 65 03 63 6F 6D 00 00 01 00 01
[  294.233029] bernie: stat=0x80, desc_address=ffffc9001110036c, port->chan=0
[  294.235817] bernie: cp=378, bp=1cfd8, len=56, unused=12
[  294.235817] bernie: hdlc0 TX(56): 0F 00 08 00 45 00 00 34 30 E8 40 00 3F 06 86 2E C7 E8 4C A5 CC 0D A4 12 D8 49 00 19 60 0A 83 70 C3 A2 9F 6C 80 10 00 5C 2E 12 00 00 01 01 08 0A 41 49 B4 3E 05 52 A9 DA
[  316.166931] bernie: stat=0x80, desc_address=ffffc900111003a8, port->chan=0
[  316.166931] bernie: cp=3b4, bp=1ef18, len=1474, unused=12
[  316.166931] bernie: hdlc0 TX(56): 0F 00 08 00 45 00 00 34 9E FA 40 00 3F 06 EE A3 C7 E8 4C A5 4A 7D 4F 1B D8 D9 00 19 74 7C 97 70 1E D3 84 7F 80 10 00 5C CA 58 00 00 01 01 08 0A 41 4A 09 FA C4 81 65 EA
[  331.715177] bernie: stat=0x80, desc_address=ffffc9001110039c, port->chan=0
[  331.717278] bernie: cp=3a8, bp=1e8d8, len=198, unused=12
[  331.717278] bernie: hdlc0 TX(254): 0F 00 08 00 45 00 00 FA B8 47 40 00 3F 06 27 74 C7 E8 4C A5 42 6F 04 46 84 07 00 19 81 E2 FA 93 1A 88 32 FB 80 18 01 11 D2 2E 00 00 01 01 08 0A 41 4A 46 AB 0C 6C 6C 3B 16 03 01 00 86 10 00 00 82 00 80 1C 61 03 1E 89 F4 45 85 F1 88 C9 24 E7 61 6F E7 97 1F 7D EF CC 09 1C FB EA 15 2F 17 BD C4 7A 9B 39...
[  378.162278] bernie: stat=0x80, desc_address=ffffc90011100354, port->chan=0
[  378.164352] bernie: cp=360, bp=1c358, len=65, unused=12
[  378.164352] bernie: hdlc0 TX(62): 0F 00 08 00 45 00 00 3A FB FD 40 00 3F 11 58 0E C7 E8 4C A5 8C BA 46 5F DD 40 00 35 00 26 61 A2 78 3E 01 00 00 01 00 00 00 00 00 00 04 6D 78 31 30 03 67 6E 75 03 6F 72 67 00 00 1C 00 01
[  378.589909] bernie: stat=0x80, desc_address=ffffc900111003b4, port->chan=0
[  378.592006] bernie: cp=3c0, bp=1f558, len=1504, unused=12
[  378.592006] bernie: hdlc0 TX(373): 0F 00 08 00 45 00 01 71 32 56 40 00 3F 06 88 69 C7 E8 4C A5 80 6B EA CE A9 EC 00 19 AD 6F D8 0D 12 C7 B1 58 50 18 44 70 42 24 00 00 5F 7E F6 30 BD 36 18 E5 48 EC 0E BA 7F 64 4A 52 D6 E2 AB DB F5 79 F6 8A 4D 6B 01 02 54 11 68 89 1A 1B 22 A9 DF 37 EF 64 07 6C 62 2D 5A 88 56 5C F3 E7 2F 24 1B BD B9 7C...
[  378.736328] bernie: stat=0x82, desc_address=ffffc9001110036c, port->chan=0
[  378.740006] bernie: cp=378, bp=1cfd8, len=198, unused=12
[  378.740006] bernie: hdlc0 TX(1504): 0F 00 08 00 45 00 05 DC CD 47 40 00 3F 06 C1 32 C7 E8 4C A9 CF 2E C3 E1 00 50 81 10 94 B4 72 7A 4E 0C 13 8E 50 10 19 20 95 F5 00 00 69 A6 FA 8B AD 3B AA 01 90 A1 65 D5 AD 6E 0E 56 C0 36 05 25 B6 B9 AF BA D2 7E 7A A2 A0 85 4A 24 68 37 AB B8 38 3D B7 09 52 0D 8D AA 4B 01 05 AD 3C DD D5 7C EB CB 85 2C...
[  379.063796] bernie: stat=0x80, desc_address=ffffc9001110036c, port->chan=0
[  379.066167] bernie: cp=378, bp=1cfd8, len=56, unused=12
[  379.066167] bernie: hdlc0 TX(56): 0F 00 08 00 45 00 00 34 79 9B 40 00 3F 06 4B 10 C7 E8 4C A5 CF 7E 93 0C C9 D7 00 19 AE BA 84 C3 74 20 B1 8A 80 10 00 6C C9 0C 00 00 01 01 08 0A 41 4A FF 5A 71 C0 60 AC
[  394.457672] bernie: stat=0x80, desc_address=ffffc9001110039c, port->chan=0
[  394.461574] bernie: cp=3a8, bp=1e8d8, len=44, unused=12
[  394.461574] bernie: hdlc0 TX(1474): 0F 00 08 00 45 00 05 BE FB 34 40 00 3F 06 8C DF C7 E8 4C A5 4A 7D 4F 1B DD 52 00 19 BC 90 EB 2E 74 37 B2 F3 80 10 00 5C 0B 22 00 00 01 01 08 0A 41 4B 3B AD C0 2E 86 4D 20 6F 6E 6C 79 20 77 72 69 74 65 20 74 68 65 20 66 69 6C 65 2C 20 72 61 74 68 65 72 20 74 68 61 6E 0D 0A 3E 3E 20 74 72 79 69 6E 67...
[  402.361173] bernie: stat=0x80, desc_address=ffffc900111003a8, port->chan=0
[  402.364012] bernie: cp=3b4, bp=1ef18, len=62, unused=12
[  402.364012] bernie: hdlc0 TX(56): 0F 00 08 00 45 00 00 34 3D A4 40 00 3F 06 A3 72 C7 E8 4C A5 40 12 06 0E E1 B6 00 19 C4 0C 6B F6 95 20 43 2D 80 10 00 6C 3E C2 00 00 01 01 08 0A 41 4B 5A 47 08 58 4E D6
[  520.614583] bernie: stat=0x80, desc_address=ffffc90011100378, port->chan=0
[  520.618174] bernie: cp=384, bp=1d618, len=56, unused=12
[  520.618174] bernie: hdlc0 TX(93): 0F 00 08 00 45 00 00 59 5D 9D 40 00 3F 06 0E 9A C7 E8 4C A5 59 91 61 49 EA EA 00 19 2C E2 62 45 5D 93 A7 5A 80 18 03 DB 6F 6F 00 00 01 01 08 0A 41 4D 28 79 1A A5 41 5F 17 03 01 00 20 69 A6 32 DA 13 C4 A6 EB 4B C6 55 B2 48 D2 CB 8C 02 61 87 FC B8 FB AF 79 3B 93 71 42 54 43 F5 C2

[-- Attachment #6: pc300too-photo.jpg --]
[-- Type: image/jpeg, Size: 170494 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: pc300too on a modern kernel?
  2010-11-16 21:56       ` pc300too on a modern kernel? Bernie Innocenti
@ 2010-11-19 21:56         ` Krzysztof Halasa
  2010-11-22 16:17           ` Bernie Innocenti
  0 siblings, 1 reply; 5+ messages in thread
From: Krzysztof Halasa @ 2010-11-19 21:56 UTC (permalink / raw)
  To: Bernie Innocenti; +Cc: Ward Vandewege, lkml

Bernie Innocenti <bernie@codewiz.org> writes:

>> Also... it's rather improbable, but I'd look at the SCA-II chip. There
>> were certain chips with a hardware bug which could cause such problems.
>> Chips with Hitachi logo and "R" letter after the lot code were ok, and
>> all later chips made by Renesas (either missing any logo or with
>> Renesas' - no "R" letter there) were ok.
>> 
>> The faulty chips were marked with Hitachi logo and were missing the "R"
>> letter after the lot code. I think Hitachi fixed it in 1999 or so.
>> I'm not sure if this bug could manifest itself when only one SCA channel
>> was in use. The app note doesn't say a word about it, but I think I only
>> experienced the problem (with an older card, not PC300) when both
>> channels were simultaneously in use.
>
> Looks like we've hit this bug! Here's a photo of the board to confirm
> it's the bogus chip:
>
>  http://people.sugarlabs.org/bernie/pc300too-photo.jpg

It's weird. Hitachi's app note TN-PSC-337B/E dated Dec 10, 1998 shows
example lot codes for unfixed chips - "8A3" and fixed - "9A3 R". I don't
really remember the details, but I think the first digit is year (+1990)
and the last digit is quarter#. 0M1 would mean Q1 2000. I personally
have (different) cards with chips marked "9H1 R" and "0C1 R". I remember
a prototype card with something like 7** lot code (faulty, without the
"R") though I can't look up the code anymore. I'd never expect a faulty
chip dated 2000.

BTW their (now Renesas) errata is at
http://www.renesas.eu/products/assp/for_information_and_communication_equipment/com_control/Technical_Update.jsp
(I have the datasheet / prog manual as well). TN-PSC-337B/E seems to
indicate that the bug is present in chips made till March 31, 1999.

Your card has "SFL33" chip while my cards are "FL33". I have a card with
"SFL33" but it's dated 2005 and it's a newer chip, missing the "R" and
Hitachi logo because of Hitachi -> Renesas transition. I don't know what
"S" means. The datasheet (1998) only lists "FL33" = 25 Mb/s max transfer
rate and "AFL33" is 30 Mb/s.

> [   59.175900] bernie: stat=0x80, desc_address=ffffc900111003a8, port->chan=0
> [   59.176639] bernie: cp=3b4, bp=1ef18, len=56, unused=12
> [   67.159314] bernie: stat=0x80, desc_address=ffffc90011100390, port->chan=0
> [   67.163214] bernie: cp=39c, bp=1e298, len=56, unused=12
> [   68.425601] bernie: stat=0x80, desc_address=ffffc90011100390, port->chan=0
> [   68.426123] bernie: cp=39c, bp=1e298, len=77, unused=12
> [   70.312068] bernie: stat=0x80, desc_address=ffffc900111003b4, port->chan=0
> [   70.314393] bernie: cp=3c0, bp=1f558, len=1504, unused=12
>
> So it seems that sometimes the controller doesn't always clear the EOM
> (0x80) status bit after transmitting a frame. Size and contents of the
> packet doesn't seem to matter We're using a single T1 channel.

Actually, the SCA-II never clears EOM. sca_tx_done() does, after it sees
the "ownership" bit set by SCA-II. Then it does netif_wake_queue().

It seems it happens this way:
- sca_xmit() fills the whole ring (leaving one descriptor empty as
  designed - for EDA to work)
- the chip transmits something and signals IRQ->sca_tx_done()
- sca_tx_done can't see any descriptor processed and only wakes the
  queue. Perhaps we should only wake the queue if at least one
  descriptor has been processed - though sca_tx_done() should never be
  called otherwise.
- sca_xmit is called again with full ring, thus BUG().

I wonder if the following helps (untested):

--- a/drivers/net/wan/hd64572.c
+++ b/drivers/net/wan/hd64572.c
@@ -293,6 +293,7 @@ static inline void sca_tx_done(port_t *port)
 	struct net_device *dev = port->netdev;
 	card_t* card = port->card;
 	u8 stat;
+	int wake = 0;
 
 	spin_lock(&port->lock);
 
@@ -316,10 +317,12 @@ static inline void sca_tx_done(port_t *port)
 			dev->stats.tx_bytes += readw(&desc->len);
 		}
 		writeb(0, &desc->stat);	/* Free descriptor */
+		wake = 1;
 		port->txlast = (port->txlast + 1) % card->tx_ring_buffers;
 	}
 
-	netif_wake_queue(dev);
+	if (wake)
+		netif_wake_queue(dev);
 	spin_unlock(&port->lock);
 }
 

Perhaps the chip sets the bit in ISR0 register before ST_TX_OWNRSHP is
written to device RAM. With this patch sca_tx_done() should be called
again shortly, in the worst case after the next packed is transmitted.

> +++ linux-2.6.36/drivers/net/wan/hd64572.c	2010-11-12 20:48:03.000000000 -0500
> @@ -567,11 +567,20 @@ static netdev_tx_t sca_xmit(struct sk_bu
>  	card_t *card = port->card;
>  	pkt_desc __iomem *desc;
>  	u32 buff, len;
> +	uint8_t stat;
>  
>  	spin_lock_irq(&port->lock);
>  
>  	desc = desc_address(port, port->txin + 1, 1);
> -	BUG_ON(readb(&desc->stat)); /* previous xmit should stop queue */
> +
> +	//BUG_ON(readb(&desc->stat)); /* previous xmit should stop queue */
> +	stat = readb(&desc->stat); /* previous xmit should stop queue */
> +	if (stat) {
> +		printk(KERN_EMERG "bernie: stat=0x%02x, desc_address=%p, port->chan=%d\n", stat, desc, port->chan);
> +		printk(KERN_EMERG "bernie: cp=%x, bp=%x, len=%d, unused=%x\n", readw(&desc->cp), readl(&desc->bp), readw(&desc->len), readb(&desc->unused));
> +		printk(KERN_EMERG "bernie: %s TX(%i):", dev->name, skb->len);
> +		debug_frame(skb);
> +	}
>  
>  #ifdef DEBUG_PKT
>  	printk(KERN_DEBUG "%s TX(%i):", dev->name, skb->len);

This could send corrupted data, we don't want to overwrite buffers being
transmitted (or queued for TX).

Anyway, I think it has nothing to do with the "non-R" bug. That one
corrupts CDA register rendering any ring operation impossible and
probably corrupting system RAM (my experience is a single channel with
up to 2 Mb/s doesn't trigger it, two channels trigger it several times
a day). IOW, trying to use two channels with buggy chip is pointless.
OTOH I'm not sure your chip is buggy, perhaps SFL33 were always fixed
and thus not marked with "R"?
-- 
Krzysztof Halasa

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: pc300too on a modern kernel?
  2010-11-19 21:56         ` Krzysztof Halasa
@ 2010-11-22 16:17           ` Bernie Innocenti
  2010-11-22 21:20             ` Krzysztof Halasa
  0 siblings, 1 reply; 5+ messages in thread
From: Bernie Innocenti @ 2010-11-22 16:17 UTC (permalink / raw)
  To: Krzysztof Halasa; +Cc: Ward Vandewege, lkml, Jan Seiffert

On Fri, 2010-11-19 at 22:56 +0100, Krzysztof Halasa wrote:

> It seems it happens this way:
> - sca_xmit() fills the whole ring (leaving one descriptor empty as
>   designed - for EDA to work)
> - the chip transmits something and signals IRQ->sca_tx_done()
> - sca_tx_done can't see any descriptor processed and only wakes the
>   queue. Perhaps we should only wake the queue if at least one
>   descriptor has been processed - though sca_tx_done() should never be
>   called otherwise.
> - sca_xmit is called again with full ring, thus BUG().
> 
> I wonder if the following helps (untested):
> 
> --- a/drivers/net/wan/hd64572.c
> +++ b/drivers/net/wan/hd64572.c
> @@ -293,6 +293,7 @@ static inline void sca_tx_done(port_t *port)
>  	struct net_device *dev = port->netdev;
>  	card_t* card = port->card;
>  	u8 stat;
> +	int wake = 0;
>  
>  	spin_lock(&port->lock);
>  
> @@ -316,10 +317,12 @@ static inline void sca_tx_done(port_t *port)
>  			dev->stats.tx_bytes += readw(&desc->len);
>  		}
>  		writeb(0, &desc->stat);	/* Free descriptor */
> +		wake = 1;
>  		port->txlast = (port->txlast + 1) % card->tx_ring_buffers;
>  	}
>  
> -	netif_wake_queue(dev);
> +	if (wake)
> +		netif_wake_queue(dev);
>  	spin_unlock(&port->lock);
>  }

Last Friday I applied a patch very similar to this one, with a printk on
the no-wake case.

As you predicted, this made the BUG_ON() disappear. My printk fired
approximately at same frequency of the debug statements I had in
sca_xmit(), thus confirming your hypothesis.

Now the question is: why do we get so many spurious interrupts?

With this workaround applied, we're st seeing occasional clusters of
packet loss. We're working to graph the ping loss alongside traffic to
see if there's any correlation.

-- 
   // Bernie Innocenti - http://codewiz.org/
 \X/  Sugar Labs       - http://sugarlabs.org/


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: pc300too on a modern kernel?
  2010-11-22 16:17           ` Bernie Innocenti
@ 2010-11-22 21:20             ` Krzysztof Halasa
  2010-11-23 14:44               ` Ward Vandewege
  0 siblings, 1 reply; 5+ messages in thread
From: Krzysztof Halasa @ 2010-11-22 21:20 UTC (permalink / raw)
  To: Bernie Innocenti; +Cc: Ward Vandewege, lkml, Jan Seiffert, netdev

(added Cc: netdev)

Bernie Innocenti <bernie@codewiz.org> writes:

> Now the question is: why do we get so many spurious interrupts?

Let me see... we call sca_tx_done() on (isr0 & 0x2020) which are DMIB3
and DMIB1, which in turn are (EOT & (EOTE = 0) | EOM & (EOME = 1)), i.e.
the interrupt is generated on EOM (end of message = packet).

It seems TN-PSC-339A/E is the answer: the interrupt is generated at the
end of the last DMA access filling the TX buffer. Only then the status
is written to the descriptor (=RAM). I guess it didn't make a difference
on older, slower machines, with slower paths from PCI to CPU.
Also I don't know if the descriptor status is being written in the same
DMA transfer (between the chip and on-board SRAM) as the last data
transfer. Perhaps it's another DMA request and arbitration, and perhaps
the chip has to wait for another transfer to finish.

> With this workaround applied, we're st seeing occasional clusters of
> packet loss. We're working to graph the ping loss alongside traffic to
> see if there's any correlation.

That's interesting. I remember seeing some TX underruns at higher
speeds, though nothing alike at 2 Mb/s. What bit rate are you using?
Does "ifconfig hdlc0" show any errors?
-- 
Krzysztof Halasa

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: pc300too on a modern kernel?
  2010-11-22 21:20             ` Krzysztof Halasa
@ 2010-11-23 14:44               ` Ward Vandewege
  0 siblings, 0 replies; 5+ messages in thread
From: Ward Vandewege @ 2010-11-23 14:44 UTC (permalink / raw)
  To: Krzysztof Halasa; +Cc: Bernie Innocenti, lkml, Jan Seiffert, netdev

On Mon, Nov 22, 2010 at 10:20:02PM +0100, Krzysztof Halasa wrote:
> > With this workaround applied, we're st seeing occasional clusters of
> > packet loss. We're working to graph the ping loss alongside traffic to
> > see if there's any correlation.
> 
> That's interesting. I remember seeing some TX underruns at higher
> speeds, though nothing alike at 2 Mb/s. What bit rate are you using?
> Does "ifconfig hdlc0" show any errors?

This turned out to be caused by line saturation. We were not seeing this
before we upgraded to the latest kernel because we have a set of qos rules
that we forgot to install on our new box. Mea culpa...

Thanks,
Ward.

-- 
Ward Vandewege <ward@gnu.org>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-11-23 15:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20100902131531.GA19028@countzero.vandewege.net>
     [not found] ` <m3mxrw1lg0.fsf@intrepid.localdomain>
     [not found]   ` <1289421869.9336.49.camel@giskard.codewiz.org>
     [not found]     ` <m3sjz34mka.fsf@intrepid.localdomain>
2010-11-16 21:56       ` pc300too on a modern kernel? Bernie Innocenti
2010-11-19 21:56         ` Krzysztof Halasa
2010-11-22 16:17           ` Bernie Innocenti
2010-11-22 21:20             ` Krzysztof Halasa
2010-11-23 14:44               ` Ward Vandewege

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.