Greg Brackley
2005-Oct-03 10:06 UTC
[Xen-users] Marvell SATA Driver with xen-unstable x86_64
I''m trying to get a Marvell based SATA card (Highpoint 1820A) working using the GPL Marvel driver under xen-unstable and FC4 x86_64 without success. I have been successfully compiling and using the driver with FC4 x86_64. The driver compiles and loads, but then generates a large number of errors (and then locks the machine up). The first few log entries appear to be significant [1]. I suspect the messages in a verbose log [5] might be the effect rather than the cause. It looks like I haven''t got something right in terms of PCI support in the xen0 kernel. I have done a lspci under native FC4 [2] where the driver works without error, and xen0 [3] were the driver fails. The card is in a PCI-X 133MHz slot on a Tyan S2882 motherboard (with a single Opteron CPU). I''m using a standard xen0 x86_64 kernel, with RAID/LVM, vlan and bonding support compiled into the kernel. Any recommendations would be appreciated. Greg :-) [1] Oct 2 17:50:28 blue kernel: ACPI: PCI Interrupt 0000:01:03.0[A] -> GSI 28 (level, low) -> IRQ 28 Oct 2 17:50:28 blue kernel: Core Driver (ERROR) 0 : disable pci conventional features when working in PCI-X. pciCommand original value:0x0107e371. new value: 0x0107e011. Oct 2 17:50:28 blue kernel: Core Driver (ERROR) 0 : PCI-X Master Write combine enable rejected Oct 2 17:50:28 blue kernel: scsi4 : Marvell SCSI to SATA adapter Oct 2 17:50:28 blue kernel: scsi5 : Marvell SCSI to SATA adapter Oct 2 17:50:28 blue kernel: scsi6 : Marvell SCSI to SATA adapter Oct 2 17:50:28 blue kernel: scsi7 : Marvell SCSI to SATA adapter Oct 2 17:50:28 blue kernel: scsi8 : Marvell SCSI to SATA adapter Oct 2 17:50:28 blue kernel: scsi9 : Marvell SCSI to SATA adapter Oct 2 17:50:28 blue kernel: scsi10 : Marvell SCSI to SATA adapter Oct 2 17:50:28 blue kernel: scsi11 : Marvell SCSI to SATA adapter [2] Linux 2.6.12-1.1447_FC4 #1 Fri Aug 26 20:35:25 EDT 2005 x86_64 x86_64 x86_64 GNU/Linux 01:03.0 SCSI storage controller: Marvell Technology Group Ltd. MV88SX5081 8-port SATA I PCI-X Controller (rev 03) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR+ FastB2B- Status: Cap+ 66Mhz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- Latency: 192, Cache Line Size 10 Interrupt: pin A routed to IRQ 169 Region 0: Memory at fc680000 (64-bit, non-prefetchable) [size=512K] Capabilities: [40] 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: [50] Message Signalled Interrupts: 64bit+ Queue=0/0 Enable- Address: 0000000000000000 Data: 0000 Capabilities: [60] PCI-X non-bridge device. Command: DPERE- ERO- RBC=0 OST=3 Status: Bus=1 Dev=3 Func=0 64bit+ 133MHz+ SCD- USC-, DC=simple, DMMRBC=0, DMOST=3, DMCRS=0, RSCEM- [3] Linux 2.6.12-xen0 #4 Sun Oct 2 15:00:00 NZDT 2005 x86_64 x86_64 x86_64 GNU/Linux 01:03.0 SCSI storage controller: Marvell Technology Group Ltd. MV88SX5081 8-port SATA I PCI-X Controller (rev 03) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR+ FastB2B- Status: Cap+ 66Mhz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- Latency: 192, Cache Line Size 10 Interrupt: pin A routed to IRQ 5 Region 0: Memory at fc680000 (64-bit, non-prefetchable) [size=512K] Capabilities: [40] 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: [50] Message Signalled Interrupts: 64bit+ Queue=0/0 Enable- Address: 0000000000000000 Data: 0000 Capabilities: [60] PCI-X non-bridge device. Command: DPERE- ERO- RBC=0 OST=3 Status: Bus=1 Dev=3 Func=0 64bit+ 133MHz+ SCD- USC-, DC=simple, DMMRBC=0, DMOST=3, DMCRS=0, RSCEM- [4] Extract from mvSata.c /* Check if working in PCI-X mode, then disable all conventional PCI */ /* features */ regVal = MV_REG_READ_DWORD(pAdapter->adapterIoBaseAddress, MV_PCI_REGS_OFFSET + MV_PCI_MODE_REG_OFFSET); if (((regVal & MV_PCI_MODE_MASK) >> MV_PCI_MODE_OFFSET) != 0) /* PCI-X */ { if (pAdapter->pciCommand & MV_PCI_COMMAND_PCI_CONVENTIONAL_ONLY) { mvLogMsg(MV_CORE_DRIVER_LOG_ID, MV_DEBUG_ERROR, " %d : disable pci conventio" "nal features when working in PCI-X. pciCommand origin" "al value:0x%08x. new value: 0x%08x.\n", pAdapter->adapterId, pAdapter->pciCommand, pAdapter->pciCommand & (~MV_PCI_COMMAND_PCI_CONVENTIONAL_ONLY)); pAdapter->pciCommand &= ~MV_PCI_COMMAND_PCI_CONVENTIONAL_ONLY; } if ((pAdapter->chipIs50XXB0 == MV_TRUE) || (pAdapter->chipIs50XXB2 == MV_TRUE) || (pAdapter->chipIs60X1B2 == MV_TRUE)) { /* PHI1*/ /* PHII7*/ if (pAdapter->pciCommand & MV_PCI_MWRITE_COMBINE_BIT) { mvLogMsg(MV_CORE_DRIVER_LOG_ID, MV_DEBUG_ERROR, " %d : PCI-X Master" " Write combine enable rejected\n", pAdapter->adapterId); pAdapter->pciCommand &= ~MV_PCI_MWRITE_COMBINE_BIT; } } } [5] Verbose error log Oct 2 14:10:01 blue kernel: Core Driver (ERROR) 0 : disable pci conventional features when working in PCI-X. pciCommand original value:0x0107e371. new value: 0x0107e011. Oct 2 14:10:01 blue kernel: Core Driver (ERROR) 0 : PCI-X Master Write combine enable rejected Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Main interrupt Cause 1d60 00040003 Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Main interrupt Mask 1d64 0006ab55 Oct 2 14:10:17 blue kernel: Core Driver (ERROR) SErr Mask 0c28 00d77fe6 Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Error Addr Low 1d40 0a616000 Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Error Addr High 1d44 00000700 Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Error Attr 1d48 0c010000 Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Error Command 1d50 00000006 Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Intr Cause 1d58 40000100 Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Intr Mask 1d5c 00d77fe6 Oct 2 14:10:17 blue kernel: Core Driver (ERROR) 0 0:Dump Edma HW Regs Oct 2 14:10:17 blue kernel: Core Driver (ERROR) EMDA CFG off 0x00022000 val 0x00000100: depth 0x0 NCQ 0 BURST SIZE 1 eQueue 0 Stop On Err 0 BURST EXT 0 WRITE BURST SIZE 0 Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Intr Cause off 0x00022008 val 0x00000142 Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Intr Mask off 0x0002200c val 0x00001118 Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Req AddrHi off 0x00022010 val 0x00000000 Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Req INP off 0x00022014 val 0x1dc60420: INP 0x1 BA 0x77181 Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Req OUTP off 0x00022018 val 0x00000020: OUT 0x1 Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Res AddrHi off 0x0002201c val 0x00000000 Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Res INP off 0x00022020 val 0x00000008: INP 0x1 Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Res OUTP off 0x00022024 val 0x1de7c100: OUTP 0x0 BA 0x1de7c1 Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Command off 0x00022028 val 0x00000000: EN 0 DIS 0 HW RESET 0 Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Status off 0x00022030 val 0x000000a0: TAG 0x0 Oct 2 14:10:18 blue kernel: Core Driver (ERROR) 0 0:Dump Channel Queues Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Request Qeueu Info: Oct 2 14:10:18 blue kernel: Core Driver (ERROR) virt addr ffff880007380400: Oct 2 14:10:18 blue kernel: Core Driver (ERROR) phy low addr 1dc60400: Oct 2 14:10:18 blue kernel: Core Driver (ERROR) phy high addr 00000000: Oct 2 14:10:18 blue kernel: Core Driver (ERROR) SW IN pointer 1: Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Request Qeueu Entries: Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Index [3:0] [7:4] [11:8] [15:12] Oct 2 14:10:18 blue kernel: Core Driver (ERROR) [ 0] 0x0a616000 0x00000700 0x12000001 0x13001208 0x14001300 0x15001400 0x16401500 0x00009725 Oct 2 14:10:18 blue kernel: Core Driver (ERROR) [ 1] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:18 blue kernel: Core Driver (ERROR) [ 2] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [ 3] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [ 4] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [ 5] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [ 6] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [ 7] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [ 8] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [ 9] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [10] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [11] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [12] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [13] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [14] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [15] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [16] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [17] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [18] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [19] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [20] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [21] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [22] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [23] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [24] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [25] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [26] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [27] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [28] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [29] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [30] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [31] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:20 blue kernel: Core Driver (ERROR) Responset Qeueu Info: Oct 2 14:10:21 blue kernel: Core Driver (ERROR) virt addr ffff880006388100: Oct 2 14:10:21 blue kernel: Core Driver (ERROR) phy low addr 1de7c100: Oct 2 14:10:21 blue kernel: Core Driver (ERROR) phy high addr 00000000: Oct 2 14:10:21 blue kernel: Core Driver (ERROR) SW OUT pointer 0: Oct 2 14:10:21 blue kernel: Core Driver (ERROR) Response Qeueu Entries: Oct 2 14:10:21 blue kernel: Core Driver (ERROR) Index [1:0] [3:2] [7:4] Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 0] 0x0000 0xd042 0x00000003 Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 1] 0x0000 0x0000 0x00000000 Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 2] 0x0000 0x0000 0x00000000 Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 3] 0x0000 0x0000 0x00000000 Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 4] 0x0000 0x0000 0x00000000 Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 5] 0x0000 0x0000 0x00000000 Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 6] 0x0000 0x0000 0x00000000 Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 7] 0x0000 0x0000 0x00000000 Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 8] 0x0000 0x0000 0x00000000 Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 9] 0x0000 0x0000 0x00000000 Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [10] 0x0000 0x0000 0x00000000 Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [11] 0x0000 0x0000 0x00000000 Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [12] 0x0000 0x0000 0x00000000 Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [13] 0x0000 0x0000 0x00000000 Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [14] 0x0000 0x0000 0x00000000 Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [15] 0x0000 0x0000 0x00000000 Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [16] 0x0000 0x0000 0x00000000 Oct 2 14:10:22 blue kernel: Core Driver (ERROR) [17] 0x0000 0x0000 0x00000000 Oct 2 14:10:22 blue kernel: Core Driver (ERROR) [18] 0x0000 0x0000 0x00000000 Oct 2 14:10:22 blue kernel: Core Driver (ERROR) [19] 0x0000 0x0000 0x00000000 Oct 2 14:10:22 blue kernel: Core Driver (ERROR) [20] 0x0000 0x0000 0x00000000 Oct 2 14:10:22 blue kernel: Core Driver (ERROR) [21] 0x0000 0x0000 0x00000000 Oct 2 14:10:22 blue kernel: Core Driver (ERROR) [22] 0x0000 0x0000 0x00000000 Oct 2 14:10:22 blue kernel: Core Driver (ERROR) [23] 0x0000 0x0000 0x00000000 Oct 2 14:10:22 blue kernel: Core Driver (ERROR) [24] 0x0000 0x0000 0x00000000 Oct 2 14:10:33 blue kernel: Core Driver (ERROR) [25] 0x0000 0x0000 0x00000000 Oct 2 14:10:33 blue kernel: Core Driver (ERROR) [26] 0x0000 0x0000 0x00000000 Oct 2 14:10:33 blue kernel: Core Driver (ERROR) [27] 0x0000 0x0000 0x00000000 Oct 2 14:10:33 blue kernel: Core Driver (ERROR) [28] 0x0000 0x0000 0x00000000 Oct 2 14:10:33 blue kernel: Core Driver (ERROR) [29] 0x0000 0x0000 0x00000000 Oct 2 14:10:33 blue kernel: Core Driver (ERROR) [30] 0x0000 0x0000 0x00000000 Oct 2 14:10:33 blue kernel: Core Driver (ERROR) [31] 0x0000 0x0000 0x00000000 Oct 2 14:10:33 blue kernel: Core Driver (ERROR) 0 1:Dump Edma HW Regs Oct 2 14:10:33 blue kernel: Core Driver (ERROR) EMDA CFG off 0x00024000 val 0x00000100: depth 0x0 NCQ 0 BURST SIZE 1 eQueue 0 Stop On Err 0 BURST EXT 0 WRITE BURST SIZE 0 Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Intr Cause off 0x00024008 val 0x00000000 Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Intr Mask off 0x0002400c val 0x00001118 Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Req AddrHi off 0x00024010 val 0x00000000 Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Req INP off 0x00024014 val 0x1dc60800: INP 0x0 BA 0x77182 Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Req OUTP off 0x00024018 val 0x00000000: OUT 0x0 Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Res AddrHi off 0x0002401c val 0x00000000 Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Res INP off 0x00024020 val 0x00000000: INP 0x0 Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Res OUTP off 0x00024024 val 0x1de7c200: OUTP 0x0 BA 0x1de7c2 Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Command off 0x00024028 val 0x00000001: EN 1 DIS 0 HW RESET 0 Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Status off 0x00024030 val 0x00001000: TAG 0x0 Oct 2 14:10:34 blue kernel: Core Driver (ERROR) 0 1:Dump Channel Queues Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Request Qeueu Info: Oct 2 14:10:35 blue kernel: Core Driver (ERROR) virt addr ffff880007380800: Oct 2 14:10:35 blue kernel: Core Driver (ERROR) phy low addr 1dc60800: Oct 2 14:10:35 blue kernel: Core Driver (ERROR) phy high addr 00000000: Oct 2 14:10:35 blue kernel: Core Driver (ERROR) SW IN pointer 0: Oct 2 14:10:35 blue kernel: Core Driver (ERROR) Request Qeueu Entries: Oct 2 14:10:35 blue kernel: Core Driver (ERROR) Index [3:0] [7:4] [11:8] [15:12] Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 0] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 1] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 2] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 3] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 4] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 5] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 6] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 7] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 8] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 9] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [10] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [11] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [12] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [13] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [14] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [15] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [16] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [17] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [18] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [19] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [20] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [21] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [22] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [23] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [24] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [25] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [26] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [27] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [28] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [29] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [30] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [31] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:37 blue kernel: Core Driver (ERROR) Responset Qeueu Info: Oct 2 14:10:37 blue kernel: Core Driver (ERROR) virt addr ffff880006388200: Oct 2 14:10:37 blue kernel: Core Driver (ERROR) phy low addr 1de7c200: Oct 2 14:10:37 blue kernel: Core Driver (ERROR) phy high addr 00000000: Oct 2 14:10:37 blue kernel: Core Driver (ERROR) SW OUT pointer 0: Oct 2 14:10:37 blue kernel: Core Driver (ERROR) Response Qeueu Entries: Oct 2 14:10:37 blue kernel: Core Driver (ERROR) Index [1:0] [3:2] [7:4] Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [ 0] 0x0000 0x0000 0x00000000 Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [ 1] 0x0000 0x0000 0x00000000 Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [ 2] 0x0000 0x0000 0x00000000 Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [ 3] 0x0000 0x0000 0x00000000 Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [ 4] 0x0000 0x0000 0x00000000 Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [ 5] 0x0000 0x0000 0x00000000 Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [ 6] 0x0000 0x0000 0x00000000 Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [ 7] 0x0000 0x0000 0x00000000 Oct 2 14:10:48 blue kernel: Core Driver (ERROR) [ 8] 0x0000 0x0000 0x00000000 Oct 2 14:10:48 blue kernel: Core Driver (ERROR) [ 9] 0x0000 0x0000 0x00000000 Oct 2 14:10:48 blue kernel: Core Driver (ERROR) [10] 0x0000 0x0000 0x00000000 Oct 2 14:10:48 blue kernel: Core Driver (ERROR) [11] 0x0000 0x0000 0x00000000 Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [12] 0x0000 0x0000 0x00000000 Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [13] 0x0000 0x0000 0x00000000 Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [14] 0x0000 0x0000 0x00000000 Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [15] 0x0000 0x0000 0x00000000 Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [16] 0x0000 0x0000 0x00000000 Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [17] 0x0000 0x0000 0x00000000 Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [18] 0x0000 0x0000 0x00000000 Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [19] 0x0000 0x0000 0x00000000 Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [20] 0x0000 0x0000 0x00000000 Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [21] 0x0000 0x0000 0x00000000 Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [22] 0x0000 0x0000 0x00000000 Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [23] 0x0000 0x0000 0x00000000 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) [24] 0x0000 0x0000 0x00000000 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) [25] 0x0000 0x0000 0x00000000 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) [26] 0x0000 0x0000 0x00000000 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) [27] 0x0000 0x0000 0x00000000 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) [28] 0x0000 0x0000 0x00000000 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) [29] 0x0000 0x0000 0x00000000 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) [30] 0x0000 0x0000 0x00000000 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) [31] 0x0000 0x0000 0x00000000 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) 0 2:Dump Edma HW Regs Oct 2 14:10:50 blue kernel: Core Driver (ERROR) EMDA CFG off 0x00026000 val 0x00000100: depth 0x0 NCQ 0 BURST SIZE 1 eQueue 0 Stop On Err 0 BURST EXT 0 WRITE BURST SIZE 0 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Intr Cause off 0x00026008 val 0x00000000 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Intr Mask off 0x0002600c val 0x00001118 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Req AddrHi off 0x00026010 val 0x00000000 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Req INP off 0x00026014 val 0x1dc60c00: INP 0x0 BA 0x77183 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Req OUTP off 0x00026018 val 0x00000000: OUT 0x0 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Res AddrHi off 0x0002601c val 0x00000000 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Res INP off 0x00026020 val 0x00000000: INP 0x0 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Res OUTP off 0x00026024 val 0x1de7c300: OUTP 0x0 BA 0x1de7c3 Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Command off 0x00026028 val 0x00000001: EN 1 DIS 0 HW RESET 0 Oct 2 14:10:51 blue kernel: Core Driver (ERROR) Status off 0x00026030 val 0x00001000: TAG 0x0 Oct 2 14:10:51 blue kernel: Core Driver (ERROR) 0 2:Dump Channel Queues Oct 2 14:10:51 blue kernel: Core Driver (ERROR) Request Qeueu Info: Oct 2 14:10:51 blue kernel: Core Driver (E00 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [17] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [18] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [19] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [20] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [21] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [22] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [23] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [24] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [25] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [26] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [27] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [28] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [29] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [30] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [31] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:10:52 blue kernel: Core Driver (ERROR) Responset Qeueu Info: Oct 2 14:10:52 blue kernel: Core Driver (ERROR) virt addr ffff880006388300: Oct 2 14:10:52 blue kernel: Core Driver (ERROR) phy low addr 1de7c300: Oct 2 14:10:52 blue kernel: Core Driver (ERROR) phy high addr 00000000: Oct 2 14:10:52 blue kernel: Core Driver (ERROR) SW OUT pointer 0: Oct 2 14:10:52 blue kernel: Core Driver (ERROR) Response Qeueu Entries: Oct 2 14:10:52 blue kernel: Core Driver (ERROR) Index [1:0] [3:2] [7:4] Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 0] 0x0000 0x0000 0x00000000 Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 1] 0x0000 0x0000 0x00000000 Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 2] 0x0000 0x0000 0x00000000 Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 3] 0x0000 0x0000 0x00000000 Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 4] 0x0000 0x0000 0x00000000 Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 5] 0x0000 0x0000 0x00000000 Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 6] 0x0000 0x0000 0x00000000 Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 7] 0x0000 0x0000 0x00000000 Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 8] 0x0000 0x0000 0x00000000 Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 9] 0x0000 0x0000 0x00000000 Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [10] 0x0000 0x0000 0x00000000 Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [11] 0x0000 0x0000 0x00000000 Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [12] 0x0000 0x0000 0x00000000 Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [13] 0x0000 0x0000 0x00000000 Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [14] 0x0000 0x0000 0x00000000 Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [15] 0x0000 0x0000 0x00000000 Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [16] 0x0000 0x0000 0x00000000 Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [17] 0x0000 0x0000 0x00000000 Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [18] 0x0000 0x0000 0x00000000 Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [19] 0x0000 0x0000 0x00000000 Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [20] 0x0000 0x0000 0x00000000 Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [21] 0x0000 0x0000 0x00000000 Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [22] 0x0000 0x0000 0x00000000 Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [23] 0x0000 0x0000 0x00000000 Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [24] 0x0000 0x0000 0x00000000 Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [25] 0x0000 0x0000 0x00000000 Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [26] 0x0000 0x0000 0x00000000 Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [27] 0x0000 0x0000 0x00000000 Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [28] 0x0000 0x0000 0x00000000 Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [29] 0x0000 0x0000 0x00000000 Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [30] 0x0000 0x0000 0x00000000 Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [31] 0x0000 0x0000 0x00000000 Oct 2 14:11:05 blue kernel: Core Driver (ERROR) 0 3:Dump Edma HW Regs Oct 2 14:11:05 blue kernel: Core Driver (ERROR) EMDA CFG off 0x00028000 val 0x000001000 Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [16] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [17] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [18] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [19] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [20] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [21] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [22] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [23] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [24] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [25] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [26] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [27] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [28] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [29] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [30] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [31] 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 Oct 2 14:11:06 blue kernel: Core Driver (ERROR) Responset Qeueu Info: Oct 2 14:11:06 blue kernel: Core Driver (ERROR) virt addr ffff880006388300: Oct 2 14:11:06 blue kernel: Core Driver (ERROR) phy low addr 1de7c300: Oct 2 14:11:06 blue kernel: Core Driver (ERROR) phy high addr 00000000: Oct 2 14:11:06 blue kernel: Core Driver (ERROR) SW OUT pointer 0: Oct 2 14:11:06 blue kernel: Core Driver (ERROR) Response Qeueu Entries: Oct 2 14:11:06 blue kernel: Core Driver (ERROR) Index [1:0] [3:2] [7:4] Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [ 0] 0x0000 0x0000 0x00000000 Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [ 1] 0x0000 0x0000 0x00000000 Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [ 2] 0x0000 0x0000 0x00000000 Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [ 3] 0x0000 0x0000 0x00000000 Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [ 4] 0x0000 0x0000 0x00000000 Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [ 5] 0x0000 0x0000 0x00000000 Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [ 6] 0x0000 0x0000 0x00000000 Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [ 7] 0x0000 0x0000 0x00000000 Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [ 8] 0x0000 0x0000 0x00000000 Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [ 9] 0x0000 0x0000 0x00000000 Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [10] 0x0000 0x0000 0x00000000 Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [11] 0x0000 0x0000 0x00000000 Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [12] 0x0000 0x0000 0x00000000 Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [13] 0x0000 0x0000 0x00000000 Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [14] 0x0000 0x0000 0x00000000 Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [15] 0x0000 0x0000 0x00000000 Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [16] 0x0000 0x0000 0x00000000 Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [17] 0x0000 0x0000 0x00000000 Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [18] 0x0000 0x0000 0x00000000 Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [19] 0x0000 0x0000 0x00000000 Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [20] 0x0000 0x0000 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [21] 0x0000 0x0000 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [22] 0x0000 0x0000 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [23] 0x0000 0x0000 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [24] 0x0000 0x0000 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [25] 0x0000 0x0000 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [26] 0x0000 0x0000 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [27] 0x0000 0x0000 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [28] 0x0000 0x0000 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [29] 0x0000 0x0000 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [30] 0x0000 0x0000 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [31] 0x0000 0x0000 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) 0 3:Dump Edma HW Regs Oct 2 14:11:08 blue kernel: Core Driver (ERROR) EMDA CFG off 0x00028000 val 0x0000011f: depth 0x1f NCQ 0 BURST SIZE 1 eQueue 0 Stop On Err 0 BURST EXT 0 WRITE BURST SIZE 0 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Intr Cause off 0x00028008 val 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Intr Mask off 0x0002800c val 0x00001118 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Req AddrHi off 0x00028010 val 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Req INP off 0x00028014 val 0x00000000: INP 0x0 BA 0x0 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Req OUTP off 0x00028018 val 0x00000000: OUT 0x0 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Res AddrHi off 0x0002801c val 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Res INP off 0x00028020 val 0x00000000: INP 0x0 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Res OUTP off 0x00028024 val 0x00000000: OUTP 0x0 BA 0x0 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Command off 0x00028028 val 0x00000000: EN 0 DIS 0 HW RESET 0 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Status off 0x00028030 val 0x00000000: TAG 0x0 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) 0 3:Dump Channel Queues Oct 2 14:11:08 blue kernel: Core Driver (ERROR) 0 3: _dumpChannelQueuesel Failed, channel data structure not allocated Oct 2 14:11:08 blue kernel: Core Driver (ERROR) 0 4:Dump Edma HW Regs Oct 2 14:11:08 blue kernel: Core Driver (ERROR) EMDA CFG off 0x00032000 val 0x00000100: depth 0x0 NCQ 0 BURST SIZE 1 eQueue 0 Stop On Err 0 BURST EXT 0 WRITE BURST SIZE 0 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Intr Cause off 0x00032008 val 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Intr Mask off 0x0003200c val 0x00001118 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Req AddrHi off 0x00032010 val 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Req INP off 0x00032014 val 0x1dc61400: INP 0x0 BA 0x77185 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Req OUTP off 0x00032018 val 0x00000000: OUT 0x0 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Res AddrHi off 0x0003201c val 0x00000000 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Res INP off 0x00032020 val 0x00000000: INP 0x0 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Res OUTP off 0x00032024 val 0x1de7c500: OUTP 0x0 BA 0x1de7c5 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Command off 0x00032028 val 0x00000001: EN 1 DIS 0 HW RESET 0 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Status off 0x00032030 val 0x00001000: TAG 0x0 Oct 2 14:11:08 blue kernel: Core Driver (ERROR) 0 4:Dump Channel Queues Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Request Qeueu Info: Oct 2 14:11:08 blue kernel: Core Driver (ERROR) virt addr ffff880007381400: Oct 2 14:11:08 blue kernel: Core Driver (ERROR) phy low addr 1dc61400: Oct 2 14:11:08 blue kernel: Core Driver (ERROR) phy high addr 00000000: _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Michael Gregg
2005-Oct-03 17:30 UTC
Re: [Xen-users] Marvell SATA Driver with xen-unstable x86_64
You could try enabling legacy /proc/pci support, or, disabling pci hotplug support. Does the driver work in a non-xen kernel? If not, you should try discussing the problem over at the kernel list: http://www.kernel.org/pub/linux/docs/lkml/ Good luck- On Mon, 2005-10-03 at 23:06 +1300, Greg Brackley wrote:> I''m trying to get a Marvell based SATA card (Highpoint 1820A) working using > the GPL Marvel driver under xen-unstable and FC4 x86_64 without success. I > have been successfully compiling and using the driver with FC4 x86_64. > > The driver compiles and loads, but then generates a large number of errors > (and then locks the machine up). The first few log entries appear to be > significant [1]. I suspect the messages in a verbose log [5] might be the > effect rather than the cause. It looks like I haven''t got something right > in terms of PCI support in the xen0 kernel. I have done a lspci under > native FC4 [2] where the driver works without error, and xen0 [3] were the > driver fails. The card is in a PCI-X 133MHz slot on a Tyan S2882 motherboard > (with a single Opteron CPU). > > I''m using a standard xen0 x86_64 kernel, with RAID/LVM, vlan and bonding > support compiled into the kernel. > > Any recommendations would be appreciated. > > Greg :-) > > > > [1] > > Oct 2 17:50:28 blue kernel: ACPI: PCI Interrupt 0000:01:03.0[A] -> GSI 28 > (level, low) -> IRQ 28 > Oct 2 17:50:28 blue kernel: Core Driver (ERROR) 0 : disable pci > conventional features when working in PCI-X. pciCommand original > value:0x0107e371. new value: 0x0107e011. > Oct 2 17:50:28 blue kernel: Core Driver (ERROR) 0 : PCI-X Master Write > combine enable rejected > Oct 2 17:50:28 blue kernel: scsi4 : Marvell SCSI to SATA adapter > Oct 2 17:50:28 blue kernel: scsi5 : Marvell SCSI to SATA adapter > Oct 2 17:50:28 blue kernel: scsi6 : Marvell SCSI to SATA adapter > Oct 2 17:50:28 blue kernel: scsi7 : Marvell SCSI to SATA adapter > Oct 2 17:50:28 blue kernel: scsi8 : Marvell SCSI to SATA adapter > Oct 2 17:50:28 blue kernel: scsi9 : Marvell SCSI to SATA adapter > Oct 2 17:50:28 blue kernel: scsi10 : Marvell SCSI to SATA adapter > Oct 2 17:50:28 blue kernel: scsi11 : Marvell SCSI to SATA adapter > > > [2] Linux 2.6.12-1.1447_FC4 #1 Fri Aug 26 20:35:25 EDT 2005 x86_64 x86_64 > x86_64 GNU/Linux > > 01:03.0 SCSI storage controller: Marvell Technology Group Ltd. MV88SX5081 > 8-port SATA I PCI-X Controller (rev 03) > Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- > Stepping- SERR+ FastB2B- > Status: Cap+ 66Mhz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- > <TAbort- <MAbort- >SERR- <PERR- > Latency: 192, Cache Line Size 10 > Interrupt: pin A routed to IRQ 169 > Region 0: Memory at fc680000 (64-bit, non-prefetchable) [size=512K] > Capabilities: [40] 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: [50] Message Signalled Interrupts: 64bit+ Queue=0/0 > Enable- > Address: 0000000000000000 Data: 0000 > Capabilities: [60] PCI-X non-bridge device. > Command: DPERE- ERO- RBC=0 OST=3 > Status: Bus=1 Dev=3 Func=0 64bit+ 133MHz+ SCD- USC-, > DC=simple, DMMRBC=0, DMOST=3, DMCRS=0, RSCEM- > > > > [3] Linux 2.6.12-xen0 #4 Sun Oct 2 15:00:00 NZDT 2005 x86_64 x86_64 x86_64 > GNU/Linux > > 01:03.0 SCSI storage controller: Marvell Technology Group Ltd. MV88SX5081 > 8-port SATA I PCI-X Controller (rev 03) > Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- > Stepping- SERR+ FastB2B- > Status: Cap+ 66Mhz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- > <TAbort- <MAbort- >SERR- <PERR- > Latency: 192, Cache Line Size 10 > Interrupt: pin A routed to IRQ 5 > Region 0: Memory at fc680000 (64-bit, non-prefetchable) [size=512K] > Capabilities: [40] 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: [50] Message Signalled Interrupts: 64bit+ Queue=0/0 > Enable- > Address: 0000000000000000 Data: 0000 > Capabilities: [60] PCI-X non-bridge device. > Command: DPERE- ERO- RBC=0 OST=3 > Status: Bus=1 Dev=3 Func=0 64bit+ 133MHz+ SCD- USC-, > DC=simple, DMMRBC=0, DMOST=3, DMCRS=0, RSCEM- > > > > [4] Extract from mvSata.c > > /* Check if working in PCI-X mode, then disable all conventional PCI */ > /* features */ > > regVal = MV_REG_READ_DWORD(pAdapter->adapterIoBaseAddress, > MV_PCI_REGS_OFFSET + MV_PCI_MODE_REG_OFFSET); > if (((regVal & MV_PCI_MODE_MASK) >> MV_PCI_MODE_OFFSET) != 0) /* PCI-X > */ > { > if (pAdapter->pciCommand & MV_PCI_COMMAND_PCI_CONVENTIONAL_ONLY) > { > mvLogMsg(MV_CORE_DRIVER_LOG_ID, MV_DEBUG_ERROR, " %d : disable > pci conventio" > "nal features when working in PCI-X. pciCommand origin" > "al value:0x%08x. new value: 0x%08x.\n", > pAdapter->adapterId, > pAdapter->pciCommand, pAdapter->pciCommand & > (~MV_PCI_COMMAND_PCI_CONVENTIONAL_ONLY)); > pAdapter->pciCommand &= ~MV_PCI_COMMAND_PCI_CONVENTIONAL_ONLY; > } > if ((pAdapter->chipIs50XXB0 == MV_TRUE) || > (pAdapter->chipIs50XXB2 == MV_TRUE) || > (pAdapter->chipIs60X1B2 == MV_TRUE)) > { > /* PHI1*/ > /* PHII7*/ > if (pAdapter->pciCommand & MV_PCI_MWRITE_COMBINE_BIT) > { > mvLogMsg(MV_CORE_DRIVER_LOG_ID, MV_DEBUG_ERROR, " %d : > PCI-X Master" > " Write combine enable rejected\n", > pAdapter->adapterId); > pAdapter->pciCommand &= ~MV_PCI_MWRITE_COMBINE_BIT; > } > } > } > > > > [5] Verbose error log > > Oct 2 14:10:01 blue kernel: Core Driver (ERROR) 0 : disable pci > conventional features when working in PCI-X. pciCommand original > value:0x0107e371. new value: 0x0107e011. > Oct 2 14:10:01 blue kernel: Core Driver (ERROR) 0 : PCI-X Master Write > combine enable rejected > Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Main interrupt Cause > 1d60 00040003 > Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Main interrupt Mask > 1d64 0006ab55 > Oct 2 14:10:17 blue kernel: Core Driver (ERROR) SErr Mask > 0c28 00d77fe6 > Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Error Addr Low > 1d40 0a616000 > Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Error Addr High > 1d44 00000700 > Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Error Attr > 1d48 0c010000 > Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Error Command > 1d50 00000006 > Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Intr Cause > 1d58 40000100 > Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Intr Mask > 1d5c 00d77fe6 > Oct 2 14:10:17 blue kernel: Core Driver (ERROR) 0 0:Dump Edma HW Regs > Oct 2 14:10:17 blue kernel: Core Driver (ERROR) EMDA CFG off 0x00022000 > val 0x00000100: depth 0x0 NCQ 0 BURST SIZE 1 eQueue 0 Stop On Err 0 BURST > EXT 0 WRITE BURST SIZE 0 > Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Intr Cause off 0x00022008 > val 0x00000142 > Oct 2 14:10:17 blue kernel: Core Driver (ERROR) Intr Mask off 0x0002200c > val 0x00001118 > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Req AddrHi off 0x00022010 > val 0x00000000 > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Req INP off 0x00022014 > val 0x1dc60420: INP 0x1 BA 0x77181 > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Req OUTP off 0x00022018 > val 0x00000020: OUT 0x1 > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Res AddrHi off 0x0002201c > val 0x00000000 > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Res INP off 0x00022020 > val 0x00000008: INP 0x1 > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Res OUTP off 0x00022024 > val 0x1de7c100: OUTP 0x0 BA 0x1de7c1 > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Command off 0x00022028 > val 0x00000000: EN 0 DIS 0 HW RESET 0 > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Status off 0x00022030 > val 0x000000a0: TAG 0x0 > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) 0 0:Dump Channel Queues > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Request Qeueu Info: > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) virt addr > ffff880007380400: > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) phy low addr 1dc60400: > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) phy high addr 00000000: > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) SW IN pointer 1: > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Request Qeueu Entries: > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) Index [3:0] [7:4] > [11:8] [15:12] > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) [ 0] 0x0a616000 0x00000700 > 0x12000001 0x13001208 0x14001300 0x15001400 0x16401500 0x00009725 > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) [ 1] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:18 blue kernel: Core Driver (ERROR) [ 2] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [ 3] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [ 4] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [ 5] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [ 6] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [ 7] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [ 8] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [ 9] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [10] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [11] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [12] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [13] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [14] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [15] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [16] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [17] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [18] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [19] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:19 blue kernel: Core Driver (ERROR) [20] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [21] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [22] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [23] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [24] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [25] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [26] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [27] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [28] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [29] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [30] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:20 blue kernel: Core Driver (ERROR) [31] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:20 blue kernel: Core Driver (ERROR) Responset Qeueu Info: > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) virt addr > ffff880006388100: > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) phy low addr 1de7c100: > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) phy high addr 00000000: > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) SW OUT pointer 0: > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) Response Qeueu Entries: > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) Index [1:0] [3:2] [7:4] > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 0] 0x0000 0xd042 > 0x00000003 > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 1] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 2] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 3] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 4] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 5] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 6] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 7] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 8] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [ 9] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [10] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [11] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [12] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [13] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [14] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [15] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:21 blue kernel: Core Driver (ERROR) [16] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:22 blue kernel: Core Driver (ERROR) [17] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:22 blue kernel: Core Driver (ERROR) [18] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:22 blue kernel: Core Driver (ERROR) [19] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:22 blue kernel: Core Driver (ERROR) [20] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:22 blue kernel: Core Driver (ERROR) [21] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:22 blue kernel: Core Driver (ERROR) [22] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:22 blue kernel: Core Driver (ERROR) [23] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:22 blue kernel: Core Driver (ERROR) [24] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:33 blue kernel: Core Driver (ERROR) [25] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:33 blue kernel: Core Driver (ERROR) [26] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:33 blue kernel: Core Driver (ERROR) [27] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:33 blue kernel: Core Driver (ERROR) [28] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:33 blue kernel: Core Driver (ERROR) [29] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:33 blue kernel: Core Driver (ERROR) [30] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:33 blue kernel: Core Driver (ERROR) [31] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:33 blue kernel: Core Driver (ERROR) 0 1:Dump Edma HW Regs > Oct 2 14:10:33 blue kernel: Core Driver (ERROR) EMDA CFG off 0x00024000 > val 0x00000100: depth 0x0 NCQ 0 BURST SIZE 1 eQueue 0 Stop On Err 0 BURST > EXT 0 WRITE BURST SIZE 0 > Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Intr Cause off 0x00024008 > val 0x00000000 > Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Intr Mask off 0x0002400c > val 0x00001118 > Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Req AddrHi off 0x00024010 > val 0x00000000 > Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Req INP off 0x00024014 > val 0x1dc60800: INP 0x0 BA 0x77182 > Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Req OUTP off 0x00024018 > val 0x00000000: OUT 0x0 > Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Res AddrHi off 0x0002401c > val 0x00000000 > Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Res INP off 0x00024020 > val 0x00000000: INP 0x0 > Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Res OUTP off 0x00024024 > val 0x1de7c200: OUTP 0x0 BA 0x1de7c2 > Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Command off 0x00024028 > val 0x00000001: EN 1 DIS 0 HW RESET 0 > Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Status off 0x00024030 > val 0x00001000: TAG 0x0 > Oct 2 14:10:34 blue kernel: Core Driver (ERROR) 0 1:Dump Channel Queues > Oct 2 14:10:34 blue kernel: Core Driver (ERROR) Request Qeueu Info: > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) virt addr > ffff880007380800: > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) phy low addr 1dc60800: > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) phy high addr 00000000: > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) SW IN pointer 0: > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) Request Qeueu Entries: > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) Index [3:0] [7:4] > [11:8] [15:12] > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 0] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 1] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 2] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 3] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 4] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 5] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 6] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 7] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 8] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [ 9] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [10] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [11] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:35 blue kernel: Core Driver (ERROR) [12] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [13] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [14] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [15] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [16] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [17] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [18] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [19] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [20] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [21] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [22] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [23] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [24] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:36 blue kernel: Core Driver (ERROR) [25] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [26] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [27] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [28] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [29] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [30] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [31] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) Responset Qeueu Info: > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) virt addr > ffff880006388200: > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) phy low addr 1de7c200: > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) phy high addr 00000000: > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) SW OUT pointer 0: > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) Response Qeueu Entries: > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) Index [1:0] [3:2] [7:4] > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [ 0] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [ 1] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [ 2] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [ 3] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [ 4] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [ 5] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [ 6] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:37 blue kernel: Core Driver (ERROR) [ 7] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:48 blue kernel: Core Driver (ERROR) [ 8] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:48 blue kernel: Core Driver (ERROR) [ 9] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:48 blue kernel: Core Driver (ERROR) [10] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:48 blue kernel: Core Driver (ERROR) [11] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [12] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [13] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [14] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [15] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [16] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [17] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [18] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [19] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [20] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [21] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [22] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:49 blue kernel: Core Driver (ERROR) [23] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) [24] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) [25] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) [26] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) [27] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) [28] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) [29] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) [30] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) [31] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) 0 2:Dump Edma HW Regs > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) EMDA CFG off 0x00026000 > val 0x00000100: depth 0x0 NCQ 0 BURST SIZE 1 eQueue 0 Stop On Err 0 BURST > EXT 0 WRITE BURST SIZE 0 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Intr Cause off 0x00026008 > val 0x00000000 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Intr Mask off 0x0002600c > val 0x00001118 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Req AddrHi off 0x00026010 > val 0x00000000 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Req INP off 0x00026014 > val 0x1dc60c00: INP 0x0 BA 0x77183 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Req OUTP off 0x00026018 > val 0x00000000: OUT 0x0 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Res AddrHi off 0x0002601c > val 0x00000000 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Res INP off 0x00026020 > val 0x00000000: INP 0x0 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Res OUTP off 0x00026024 > val 0x1de7c300: OUTP 0x0 BA 0x1de7c3 > Oct 2 14:10:50 blue kernel: Core Driver (ERROR) Command off 0x00026028 > val 0x00000001: EN 1 DIS 0 HW RESET 0 > Oct 2 14:10:51 blue kernel: Core Driver (ERROR) Status off 0x00026030 > val 0x00001000: TAG 0x0 > Oct 2 14:10:51 blue kernel: Core Driver (ERROR) 0 2:Dump Channel Queues > Oct 2 14:10:51 blue kernel: Core Driver (ERROR) Request Qeueu Info: > Oct 2 14:10:51 blue kernel: Core Driver (E00 0x00000000 0x00000000 > 0x00000000 0x00000000 > Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [17] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [18] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [19] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [20] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [21] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [22] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [23] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [24] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [25] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [26] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [27] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [28] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:51 blue kernel: Core Driver (ERROR) [29] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [30] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [31] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) Responset Qeueu Info: > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) virt addr > ffff880006388300: > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) phy low addr 1de7c300: > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) phy high addr 00000000: > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) SW OUT pointer 0: > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) Response Qeueu Entries: > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) Index [1:0] [3:2] [7:4] > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 0] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 1] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 2] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 3] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 4] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 5] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 6] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 7] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 8] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:52 blue kernel: Core Driver (ERROR) [ 9] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [10] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [11] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [12] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [13] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [14] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [15] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [16] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [17] 0x0000 0x0000 > 0x00000000 > Oct 2 14:10:53 blue kernel: Core Driver (ERROR) [18] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [19] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [20] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [21] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [22] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [23] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [24] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [25] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [26] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [27] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [28] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [29] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [30] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:04 blue kernel: Core Driver (ERROR) [31] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:05 blue kernel: Core Driver (ERROR) 0 3:Dump Edma HW Regs > Oct 2 14:11:05 blue kernel: Core Driver (ERROR) EMDA CFG off 0x00028000 > val 0x000001000 > Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [16] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [17] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [18] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [19] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [20] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [21] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [22] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [23] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [24] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [25] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:11:05 blue kernel: Core Driver (ERROR) [26] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [27] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [28] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [29] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [30] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [31] 0x00000000 0x00000000 > 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 0x00000000 > Oct 2 14:11:06 blue kernel: Core Driver (ERROR) Responset Qeueu Info: > Oct 2 14:11:06 blue kernel: Core Driver (ERROR) virt addr > ffff880006388300: > Oct 2 14:11:06 blue kernel: Core Driver (ERROR) phy low addr 1de7c300: > Oct 2 14:11:06 blue kernel: Core Driver (ERROR) phy high addr 00000000: > Oct 2 14:11:06 blue kernel: Core Driver (ERROR) SW OUT pointer 0: > Oct 2 14:11:06 blue kernel: Core Driver (ERROR) Response Qeueu Entries: > Oct 2 14:11:06 blue kernel: Core Driver (ERROR) Index [1:0] [3:2] [7:4] > Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [ 0] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [ 1] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [ 2] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [ 3] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:06 blue kernel: Core Driver (ERROR) [ 4] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [ 5] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [ 6] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [ 7] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [ 8] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [ 9] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [10] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [11] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [12] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [13] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [14] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [15] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [16] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [17] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [18] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [19] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:07 blue kernel: Core Driver (ERROR) [20] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [21] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [22] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [23] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [24] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [25] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [26] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [27] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [28] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [29] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [30] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) [31] 0x0000 0x0000 > 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) 0 3:Dump Edma HW Regs > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) EMDA CFG off 0x00028000 > val 0x0000011f: depth 0x1f NCQ 0 BURST SIZE 1 eQueue 0 Stop On Err 0 BURST > EXT 0 WRITE BURST SIZE 0 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Intr Cause off 0x00028008 > val 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Intr Mask off 0x0002800c > val 0x00001118 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Req AddrHi off 0x00028010 > val 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Req INP off 0x00028014 > val 0x00000000: INP 0x0 BA 0x0 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Req OUTP off 0x00028018 > val 0x00000000: OUT 0x0 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Res AddrHi off 0x0002801c > val 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Res INP off 0x00028020 > val 0x00000000: INP 0x0 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Res OUTP off 0x00028024 > val 0x00000000: OUTP 0x0 BA 0x0 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Command off 0x00028028 > val 0x00000000: EN 0 DIS 0 HW RESET 0 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Status off 0x00028030 > val 0x00000000: TAG 0x0 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) 0 3:Dump Channel Queues > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) 0 3: _dumpChannelQueuesel > Failed, channel data structure not allocated > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) 0 4:Dump Edma HW Regs > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) EMDA CFG off 0x00032000 > val 0x00000100: depth 0x0 NCQ 0 BURST SIZE 1 eQueue 0 Stop On Err 0 BURST > EXT 0 WRITE BURST SIZE 0 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Intr Cause off 0x00032008 > val 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Intr Mask off 0x0003200c > val 0x00001118 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Req AddrHi off 0x00032010 > val 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Req INP off 0x00032014 > val 0x1dc61400: INP 0x0 BA 0x77185 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Req OUTP off 0x00032018 > val 0x00000000: OUT 0x0 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Res AddrHi off 0x0003201c > val 0x00000000 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Res INP off 0x00032020 > val 0x00000000: INP 0x0 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Res OUTP off 0x00032024 > val 0x1de7c500: OUTP 0x0 BA 0x1de7c5 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Command off 0x00032028 > val 0x00000001: EN 1 DIS 0 HW RESET 0 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Status off 0x00032030 > val 0x00001000: TAG 0x0 > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) 0 4:Dump Channel Queues > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) Request Qeueu Info: > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) virt addr > ffff880007381400: > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) phy low addr 1dc61400: > Oct 2 14:11:08 blue kernel: Core Driver (ERROR) phy high addr 00000000: > > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users