Date: Thu, 8 Jul 2010 10:00:21 -0400 From: Scott Long <scottl@samsco.org> To: frank cheong <kwcheong@gmail.com> Cc: "freebsd-scsi@freebsd.org" <freebsd-scsi@freebsd.org>, Mike Hill <mike.hill@kitesystems.com>, Sean Bruno <seanbru@yahoo-inc.com>, Folkert Saathoff <folkert.saathoff@kitesystems.com> Subject: Re: /dev/ch0 not recognized Message-ID: <6EC599F1-3713-4497-9372-4032078890EF@samsco.org> In-Reply-To: <AANLkTimjNuezI-yhDzpjnpVoUfp5tI9CwIWrWFN6_pSD@mail.gmail.com> References: <AANLkTik3mfTCcHwgYC4R5ANgf0ydBFkpUyjj90n0-uNP@mail.gmail.com> <6A0E4367-98BB-4C24-B01A-63A3E533D88C@kitesystems.com> <1278433685.2506.9.camel@localhost.localdomain> <AANLkTimjNuezI-yhDzpjnpVoUfp5tI9CwIWrWFN6_pSD@mail.gmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
Someone asked me about this recently, and I looked into it a little bit = (sorry, can't find the conversation in my archives, apologies in advance = if it's someone in this discussion).=20 With that note aside, you have to understand how this system works. It = doesn't follow the traditional rules of SCSI when it comes to device = discovery; instead the CISS firmware controls what devices are allowed = to be seen by the OS. The OS cannot simply probe each possible = bus/target/lun address on the controller. In fact, there's no such = thing as bus/target/lun addressing in CISS. The CISS firmware creates = an inventory of device handles and passes that to the driver, and the = driver then creates synthetic bus/target/lun numbers to satisfy the SCSI = layer in the OS. If a device isn't in the inventory provided by the = firmware, then the driver and OS simply won't see it, period. There's = no way for the driver or OS to discover a device that's not part of the = firmware inventory. There are two special exceptions. The first is that the firmware does = try to hide some devices. Typically these are disk devices, and are = hidden so that you can't get screw around with a disk that's part of an = array. They are part of the inventory, but are flagged for the driver = to ignore. If you set the following tunable in /boot/loader.conf, = you'll override the "ignore" setting: hw.ciss.expose_hidden_physical=3D1 Second, when the hidden devices are exposed, the driver will filter the = INQUIRY info and change T_DIRECT devices into T_NODEVICE devices. This = has the effect of allowing disk drives to be seen only as passthrough = devices, providing an extra safety belt to disks that are part of = arrays. In my previous investigation, it looked like the tape device is showing = up in the inventory, but not the changer device. That's pretty much a = dead end for this problem, short of finding a hidden BIOS switch or a = new firmware image or some other magic from HP. You can try turning on = the expose tunable to see if it's actually part of the inventory, but = hidden. If that doesn't work, you can try looking at = ciss_filter_physical() in the driver and have it print out the entire = inventory as it iterates through it; that might identify something that = the driver doesn't know how to handle. Scott On Jul 6, 2010, at 10:26 PM, frank cheong wrote: > dmesg here >=20 > freeBSD# dmesg > Copyright (c) 1992-2009 The FreeBSD Project. > Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, = 1994 > The Regents of the University of California. All rights = reserved. > FreeBSD is a registered trademark of The FreeBSD Foundation. > FreeBSD 8.0-RELEASE #0: Sat Nov 21 15:48:17 UTC 2009 > root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC > Preloaded elf kernel "/boot/kernel/kernel" at 0xc0f6f000. > Timecounter "i8254" frequency 1193182 Hz quality 0 > Calibrating TSC clock ... TSC clock: 2266761792 Hz > CPU: Intel(R) Xeon(R) CPU E5520 @ 2.27GHz (2266.76-MHz = 686-class > CPU) > Origin =3D "GenuineIntel" Id =3D 0x106a5 Stepping =3D 5 >=20 > = Features=3D0xbfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE= ,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE> >=20 > = Features2=3D0x9ce3bd<SSE3,DTES64,MON,DS_CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PD= CM,DCA,SSE4.1,SSE4.2,POPCNT> > AMD Features=3D0x28100000<NX,RDTSCP,LM> > AMD Features2=3D0x1<LAHF> > TSC: P-state invariant >=20 > Data TLB: 4 KB pages, 4-way set associative, 64 entries > 1st-level data cache: 32 KB, 8-way set associative, 64 byte line size > L2 cache: 256 kbytes, 8-way associative, 64 bytes/line > real memory =3D 4294967296 (4096 MB) > Physical memory chunk(s): > 0x0000000000001000 - 0x000000000009bfff, 634880 bytes (155 pages) > 0x0000000000100000 - 0x00000000003fffff, 3145728 bytes (768 pages) > 0x0000000001026000 - 0x00000000bc126fff, 3138392064 bytes (766209 = pages) > avail memory =3D 3137052672 (2991 MB) > Table 'FACP' at 0xbf770290 > Table 'APIC' at 0xbf770390 > MADT: Found table at 0xbf770390 > MP Configuration Table version 1.4 found at 0xc00fd3e0 > APIC: Using the MADT enumerator. > MADT: Found CPU APIC ID 16 ACPI ID 1: enabled > SMP: Added CPU 16 (AP) > MADT: Found CPU APIC ID 18 ACPI ID 2: enabled > SMP: Added CPU 18 (AP) > MADT: Found CPU APIC ID 20 ACPI ID 3: enabled > SMP: Added CPU 20 (AP) > MADT: Found CPU APIC ID 22 ACPI ID 4: enabled > SMP: Added CPU 22 (AP) > MADT: Found CPU APIC ID 17 ACPI ID 5: enabled > SMP: Added CPU 17 (AP) > MADT: Found CPU APIC ID 19 ACPI ID 6: enabled > SMP: Added CPU 19 (AP) > MADT: Found CPU APIC ID 21 ACPI ID 7: enabled > SMP: Added CPU 21 (AP) > MADT: Found CPU APIC ID 23 ACPI ID 8: enabled > SMP: Added CPU 23 (AP) > MADT: Found CPU APIC ID 136 ACPI ID 9: disabled > MADT: Found CPU APIC ID 137 ACPI ID 10: disabled > MADT: Found CPU APIC ID 138 ACPI ID 11: disabled > MADT: Found CPU APIC ID 139 ACPI ID 12: disabled > MADT: Found CPU APIC ID 140 ACPI ID 13: disabled > MADT: Found CPU APIC ID 141 ACPI ID 14: disabled > MADT: Found CPU APIC ID 142 ACPI ID 15: disabled > MADT: Found CPU APIC ID 143 ACPI ID 16: disabled > MADT: Found CPU APIC ID 144 ACPI ID 17: disabled > MADT: Found CPU APIC ID 145 ACPI ID 18: disabled > MADT: Found CPU APIC ID 146 ACPI ID 19: disabled > MADT: Found CPU APIC ID 147 ACPI ID 20: disabled > MADT: Found CPU APIC ID 148 ACPI ID 21: disabled > MADT: Found CPU APIC ID 149 ACPI ID 22: disabled > MADT: Found CPU APIC ID 150 ACPI ID 23: disabled > MADT: Found CPU APIC ID 151 ACPI ID 24: disabled > ACPI APIC Table: <HP ProLiant> > INTR: Adding local APIC 17 as a target > INTR: Adding local APIC 18 as a target > INTR: Adding local APIC 19 as a target > INTR: Adding local APIC 20 as a target > INTR: Adding local APIC 21 as a target > INTR: Adding local APIC 22 as a target > INTR: Adding local APIC 23 as a target > FreeBSD/SMP: Multiprocessor System Detected: 8 CPUs > FreeBSD/SMP: 1 package(s) x 4 core(s) x 2 SMT threads > cpu0 (BSP): APIC ID: 16 > cpu1 (AP): APIC ID: 17 > cpu2 (AP): APIC ID: 18 > cpu3 (AP): APIC ID: 19 > cpu4 (AP): APIC ID: 20 > cpu5 (AP): APIC ID: 21 > cpu6 (AP): APIC ID: 22 > cpu7 (AP): APIC ID: 23 > APIC: CPU 0 has ACPI ID 1 > APIC: CPU 1 has ACPI ID 5 > APIC: CPU 2 has ACPI ID 2 > APIC: CPU 3 has ACPI ID 6 > APIC: CPU 4 has ACPI ID 3 > APIC: CPU 5 has ACPI ID 7 > APIC: CPU 6 has ACPI ID 4 > APIC: CPU 7 has ACPI ID 8 > bios32: Found BIOS32 Service Directory header at 0xc00f0000 > bios32: Entry =3D 0xf0010 (c00f0010) Rev =3D 0 Len =3D 1 > pcibios: PCI BIOS entry at 0xf0000+0x31 > pnpbios: Found PnP BIOS data at 0xc00f3dd0 > pnpbios: Entry =3D f0000:523a Rev =3D 1.0 > Other BIOS signatures found: > ULE: setup cpu 0 > ULE: setup cpu 1 > ULE: setup cpu 2 > ULE: setup cpu 3 > ULE: setup cpu 4 > ULE: setup cpu 5 > ULE: setup cpu 6 > ULE: setup cpu 7 > ACPI: RSDP 0xfa160 00024 (v2 HP ) > ACPI: XSDT 0xbf770100 0009C (v1 HP ProLiant 20100301 MSFT = 00000097) > ACPI: FACP 0xbf770290 000F4 (v4 HP ProLiant 20100301 MSFT = 00000097) > ACPI: DSDT 0xbf770740 05EEB (v2 HP ProLiant 00000200 INTL = 20051117) > ACPI: FACS 0xbf77e000 00040 > ACPI: APIC 0xbf770390 0011E (v2 HP ProLiant 20100301 MSFT = 00000097) > ACPI: SPCR 0xbf7704b0 00050 (v1 HP ProLiant 20100301 MSFT = 00000097) > ACPI: MCFG 0xbf770500 0003C (v1 HP ProLiant 20100301 MSFT = 00000097) > ACPI: SPMI 0xbf770540 00041 (v5 HP ProLiant 20100301 MSFT = 00000097) > ACPI: SLIC 0xbf770590 00176 (v1 HP SLIC1515 20100301 MSFT = 00000097) > ACPI: BOOT 0xbf770710 00028 (v1 HP ProLiant 20100301 MSFT = 00000097) > ACPI: OEMB 0xbf77e040 0007A (v1 HP ProLiant 20100301 MSFT = 00000097) > ACPI: HPET 0xbf77a740 00038 (v1 HP ProLiant 20100301 MSFT = 00000097) > ACPI: DMAR 0xbf77e0c0 000F8 (v1 AMI OEMDMAR 00000001 MSFT = 00000097) > ACPI: SSDT 0xbf77fbf0 00363 (v1 HP ProLiant 00000012 INTL = 20051117) > ACPI: EINJ 0xbf77a780 00130 (v1 HP ProLiant 20100301 MSFT = 00000097) > ACPI: BERT 0xbf77a910 00030 (v1 HP ProLiant 20100301 MSFT = 00000097) > ACPI: ERST 0xbf77a940 001B0 (v1 HP ProLiant 20100301 MSFT = 00000097) > ACPI: HEST 0xbf77aaf0 000A8 (v1 HP ProLiant 20100301 MSFT = 00000097) > MADT: Found IO APIC ID 8, Interrupt 0 at 0xfec00000 > ioapic0: Changing APIC ID to 8 > ioapic0: Routing external 8259A's -> intpin 0 > MADT: Found IO APIC ID 9, Interrupt 24 at 0xfec8a000 > ioapic1: Changing APIC ID to 9 > MADT: Interrupt override: source 0, irq 2 > ioapic0: Routing IRQ 0 -> intpin 2 > MADT: Interrupt override: source 9, irq 9 > ioapic0: intpin 9 trigger: level > lapic: Routing NMI -> LINT1 > lapic: LINT1 trigger: edge > lapic: LINT1 polarity: high > ioapic0 <Version 2.0> irqs 0-23 on motherboard > ioapic1 <Version 2.0> irqs 24-47 on motherboard > cpu0 BSP: > ID: 0x10000000 VER: 0x00060015 LDR: 0x00000000 DFR: 0xffffffff > lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff > timer: 0x000100ef therm: 0x00010000 err: 0x0001000f pcm: 0x00010400 > wlan: <802.11 Link Layer> > kbd: new array size 4 > kbd1 at kbdmux0 > mem: <memory> > Pentium Pro MTRR support enabled > null: <null device, zero device> > random: <entropy source, Software, Yarrow> > nfslock: pseudo-device > io: <I/O> > hptrr: RocketRAID 17xx/2xxx SATA controller driver v1.2 > npx0: INT 16 interface > acpi0: <HP ProLiant> on motherboard > PCIe: Memory Mapped configuration base @ 0xe0000000 > pcibios: BIOS version 3.00 > ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 16 vector 48 > acpi0: [MPSAFE] > acpi0: [ITHREAD] > acpi0: Power Button (fixed) > acpi0: wakeup code va 0xc62a6000 pa 0x1000 > AcpiOsDerivePciId: \\_SB_.PCI0.SBRG.IELK.RXA0 -> bus 0 dev 0 func 0 > AcpiOsDerivePciId: \\_SB_.PCI0.SBRG.PIX0 -> bus 0 dev 31 func 0 > acpi0: reservation of 0, a0000 (3) failed > acpi0: reservation of 100000, bff00000 (3) failed > ACPI timer: 1/1 1/2 1/1 1/2 1/0 1/2 1/2 1/1 1/1 1/1 -> 10 > Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 > acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 > pci_link0: Index IRQ Rtd Ref IRQs > Initial Probe 0 10 N 0 3 4 6 7 10 11 12 14 15 > Validation 0 10 N 0 3 4 6 7 10 11 12 14 15 > After Disable 0 255 N 0 3 4 6 7 10 11 12 14 15 > pci_link1: Index IRQ Rtd Ref IRQs > Initial Probe 0 5 N 0 5 > Validation 0 5 N 0 5 > After Disable 0 255 N 0 5 > pci_link2: Index IRQ Rtd Ref IRQs > Initial Probe 0 15 N 0 3 4 6 7 10 11 12 14 15 > Validation 0 15 N 0 3 4 6 7 10 11 12 14 15 > After Disable 0 255 N 0 3 4 6 7 10 11 12 14 15 > pci_link3: Index IRQ Rtd Ref IRQs > Initial Probe 0 11 N 0 3 4 6 7 10 11 12 14 15 > Validation 0 11 N 0 3 4 6 7 10 11 12 14 15 > After Disable 0 255 N 0 3 4 6 7 10 11 12 14 15 > pci_link4: Index IRQ Rtd Ref IRQs > Initial Probe 0 255 N 0 3 4 6 7 10 11 12 14 15 > Validation 0 255 N 0 3 4 6 7 10 11 12 14 15 > After Disable 0 255 N 0 3 4 6 7 10 11 12 14 15 > pci_link5: Index IRQ Rtd Ref IRQs > Initial Probe 0 255 N 0 3 4 6 7 10 11 12 14 15 > Validation 0 255 N 0 3 4 6 7 10 11 12 14 15 > After Disable 0 255 N 0 3 4 6 7 10 11 12 14 15 > pci_link6: Index IRQ Rtd Ref IRQs > Initial Probe 0 255 N 0 3 4 6 7 10 11 12 14 15 > Validation 0 255 N 0 3 4 6 7 10 11 12 14 15 > After Disable 0 255 N 0 3 4 6 7 10 11 12 14 15 > pci_link7: Index IRQ Rtd Ref IRQs > Initial Probe 0 14 N 0 3 4 6 7 10 11 12 14 15 > Validation 0 14 N 0 3 4 6 7 10 11 12 14 15 > After Disable 0 255 N 0 3 4 6 7 10 11 12 14 15 > acpi_hpet0: <High Precision Event Timer> iomem 0xfed00000-0xfed003ff = on > acpi0 > acpi_hpet0: vend: 0x8086 rev: 0x1 num: 3 hz: 14318180 opts: = legacy_route > 64-bit > Timecounter "HPET" frequency 14318180 Hz quality 900 > pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0 > pci0: <ACPI PCI bus> on pcib0 > pci0: domain=3D0, physical bus=3D0 > found-> vendor=3D0x8086, dev=3D0x3406, revid=3D0x13 > domain=3D0, bus=3D0, slot=3D0, func=3D0 > class=3D06-00-00, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0140, statreg=3D0x0810, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 = ns) > powerspec 3 supports D0 D3 current D0 > MSI supports 2 messages, vector masks > found-> vendor=3D0x8086, dev=3D0x3408, revid=3D0x13 > domain=3D0, bus=3D0, slot=3D1, func=3D0 > class=3D06-04-00, hdrtype=3D0x01, mfdev=3D0 > cmdreg=3D0x0147, statreg=3D0x0010, cachelnsz=3D64 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x03 (750 ns), maxlat=3D0x00 = (0 ns) > powerspec 3 supports D0 D3 current D0 > MSI supports 2 messages, vector masks > found-> vendor=3D0x8086, dev=3D0x340a, revid=3D0x13 > domain=3D0, bus=3D0, slot=3D3, func=3D0 > class=3D06-04-00, hdrtype=3D0x01, mfdev=3D0 > cmdreg=3D0x0147, statreg=3D0x0010, cachelnsz=3D64 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x03 (750 ns), maxlat=3D0x00 = (0 ns) > powerspec 3 supports D0 D3 current D0 > MSI supports 2 messages, vector masks > found-> vendor=3D0x8086, dev=3D0x340e, revid=3D0x13 > domain=3D0, bus=3D0, slot=3D7, func=3D0 > class=3D06-04-00, hdrtype=3D0x01, mfdev=3D0 > cmdreg=3D0x0144, statreg=3D0x0010, cachelnsz=3D64 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x03 (750 ns), maxlat=3D0x00 = (0 ns) > powerspec 3 supports D0 D3 current D0 > MSI supports 2 messages, vector masks > found-> vendor=3D0x8086, dev=3D0x3410, revid=3D0x13 > domain=3D0, bus=3D0, slot=3D9, func=3D0 > class=3D06-04-00, hdrtype=3D0x01, mfdev=3D0 > cmdreg=3D0x0147, statreg=3D0x0010, cachelnsz=3D64 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x03 (750 ns), maxlat=3D0x00 = (0 ns) > powerspec 3 supports D0 D3 current D0 > MSI supports 2 messages, vector masks > found-> vendor=3D0x8086, dev=3D0x342e, revid=3D0x13 > domain=3D0, bus=3D0, slot=3D20, func=3D0 > class=3D08-00-00, hdrtype=3D0x00, mfdev=3D1 > cmdreg=3D0x0000, statreg=3D0x0010, cachelnsz=3D64 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 = ns) > found-> vendor=3D0x8086, dev=3D0x3422, revid=3D0x13 > domain=3D0, bus=3D0, slot=3D20, func=3D1 > class=3D08-00-00, hdrtype=3D0x00, mfdev=3D1 > cmdreg=3D0x0000, statreg=3D0x0010, cachelnsz=3D64 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 = ns) > found-> vendor=3D0x8086, dev=3D0x3423, revid=3D0x13 > domain=3D0, bus=3D0, slot=3D20, func=3D2 > class=3D08-00-00, hdrtype=3D0x00, mfdev=3D1 > cmdreg=3D0x0000, statreg=3D0x0010, cachelnsz=3D64 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 = ns) > found-> vendor=3D0x8086, dev=3D0x3a37, revid=3D0x00 > domain=3D0, bus=3D0, slot=3D26, func=3D0 > class=3D0c-03-00, hdrtype=3D0x00, mfdev=3D1 > cmdreg=3D0x0005, statreg=3D0x0290, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 = ns) > intpin=3Da, irq=3D10 > map[20]: type I/O Port, range 32, base 0xa800, size 5, enabled > pcib0: matched entry for 0.26.INTA > pcib0: slot 26 INTA hardwired to IRQ 16 > found-> vendor=3D0x8086, dev=3D0x3a3c, revid=3D0x00 > domain=3D0, bus=3D0, slot=3D26, func=3D7 > class=3D0c-03-20, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0046, statreg=3D0x0290, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 = ns) > intpin=3Dc, irq=3D15 > powerspec 2 supports D0 D3 current D0 > map[10]: type Memory, range 32, base 0xfa7f8000, size 10, = enabled > pcib0: matched entry for 0.26.INTC > pcib0: slot 26 INTC hardwired to IRQ 18 > found-> vendor=3D0x8086, dev=3D0x3a40, revid=3D0x00 > domain=3D0, bus=3D0, slot=3D28, func=3D0 > class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1 > cmdreg=3D0x0146, statreg=3D0x0010, cachelnsz=3D64 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x03 (750 ns), maxlat=3D0x00 = (0 ns) > intpin=3Da, irq=3D10 > powerspec 2 supports D0 D3 current D0 > MSI supports 1 message > pcib0: matched entry for 0.28.INTA > pcib0: slot 28 INTA hardwired to IRQ 16 > found-> vendor=3D0x8086, dev=3D0x3a48, revid=3D0x00 > domain=3D0, bus=3D0, slot=3D28, func=3D4 > class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1 > cmdreg=3D0x0007, statreg=3D0x0810, cachelnsz=3D64 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x1a (6500 ns), maxlat=3D0x00 = (0 ns) > intpin=3Da, irq=3D10 > powerspec 2 supports D0 D3 current D0 > MSI supports 1 message > pcib0: matched entry for 0.28.INTA > pcib0: slot 28 INTA hardwired to IRQ 16 > found-> vendor=3D0x8086, dev=3D0x3a34, revid=3D0x00 > domain=3D0, bus=3D0, slot=3D29, func=3D0 > class=3D0c-03-00, hdrtype=3D0x00, mfdev=3D1 > cmdreg=3D0x0005, statreg=3D0x0290, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 = ns) > intpin=3Da, irq=3D14 > map[20]: type I/O Port, range 32, base 0xa880, size 5, enabled > pcib0: matched entry for 0.29.INTA > pcib0: slot 29 INTA hardwired to IRQ 23 > found-> vendor=3D0x8086, dev=3D0x3a35, revid=3D0x00 > domain=3D0, bus=3D0, slot=3D29, func=3D1 > class=3D0c-03-00, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0005, statreg=3D0x0290, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 = ns) > intpin=3Db, irq=3D11 > map[20]: type I/O Port, range 32, base 0xac00, size 5, enabled > pcib0: matched entry for 0.29.INTB > pcib0: slot 29 INTB hardwired to IRQ 19 > found-> vendor=3D0x8086, dev=3D0x3a36, revid=3D0x00 > domain=3D0, bus=3D0, slot=3D29, func=3D2 > class=3D0c-03-00, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0005, statreg=3D0x0290, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 = ns) > intpin=3Dc, irq=3D15 > map[20]: type I/O Port, range 32, base 0xb000, size 5, enabled > pcib0: matched entry for 0.29.INTC > pcib0: slot 29 INTC hardwired to IRQ 18 > found-> vendor=3D0x8086, dev=3D0x3a3a, revid=3D0x00 > domain=3D0, bus=3D0, slot=3D29, func=3D7 > class=3D0c-03-20, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0046, statreg=3D0x0290, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 = ns) > intpin=3Da, irq=3D14 > powerspec 2 supports D0 D3 current D0 > map[10]: type Memory, range 32, base 0xfa7fa000, size 10, = enabled > pcib0: matched entry for 0.29.INTA > pcib0: slot 29 INTA hardwired to IRQ 23 > found-> vendor=3D0x8086, dev=3D0x244e, revid=3D0x90 > domain=3D0, bus=3D0, slot=3D30, func=3D0 > class=3D06-04-01, hdrtype=3D0x01, mfdev=3D0 > cmdreg=3D0x0144, statreg=3D0x0010, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x02 (500 ns), maxlat=3D0x00 = (0 ns) > found-> vendor=3D0x8086, dev=3D0x3a16, revid=3D0x00 > domain=3D0, bus=3D0, slot=3D31, func=3D0 > class=3D06-01-00, hdrtype=3D0x00, mfdev=3D1 > cmdreg=3D0x0147, statreg=3D0x0210, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 = ns) > found-> vendor=3D0x8086, dev=3D0x3a22, revid=3D0x00 > domain=3D0, bus=3D0, slot=3D31, func=3D2 > class=3D01-06-01, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0047, statreg=3D0x02b0, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 = ns) > intpin=3Db, irq=3D11 > powerspec 3 supports D0 D3 current D0 > MSI supports 16 messages > map[10]: type I/O Port, range 32, base 0xb880, size 3, enabled > map[14]: type I/O Port, range 32, base 0xb800, size 2, enabled > map[18]: type I/O Port, range 32, base 0xb480, size 3, enabled > map[1c]: type I/O Port, range 32, base 0xb400, size 2, enabled > map[20]: type I/O Port, range 32, base 0xb080, size 5, enabled > map[24]: type Memory, range 32, base 0xfa7fc000, size 11, = enabled > pcib0: matched entry for 0.31.INTB > pcib0: slot 31 INTB hardwired to IRQ 19 > pcib1: <ACPI PCI-PCI bridge> at device 1.0 on pci0 > pcib1: domain 0 > pcib1: secondary bus 7 > pcib1: subordinate bus 7 > pcib1: I/O decode 0xe000-0xefff > pcib1: memory decode 0xfbe00000-0xfbefffff > pcib1: no prefetched decode > pci7: <ACPI PCI bus> on pcib1 > pci7: domain=3D0, physical bus=3D7 > found-> vendor=3D0x8086, dev=3D0x10c9, revid=3D0x01 > domain=3D0, bus=3D7, slot=3D0, func=3D0 > class=3D02-00-00, hdrtype=3D0x00, mfdev=3D1 > cmdreg=3D0x0147, statreg=3D0x0010, cachelnsz=3D64 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 = ns) > intpin=3Da, irq=3D10 > powerspec 3 supports D0 D3 current D0 > MSI supports 1 message, 64 bit, vector masks > MSI-X supports 10 messages in map 0x1c > map[10]: type Memory, range 32, base 0xfbe60000, size 17, = enabled > pcib1: requested memory range 0xfbe60000-0xfbe7ffff: good > map[14]: type Memory, range 32, base 0xfbe40000, size 17, = enabled > pcib1: requested memory range 0xfbe40000-0xfbe5ffff: good > map[18]: type I/O Port, range 32, base 0xe880, size 5, enabled > pcib1: requested I/O range 0xe880-0xe89f: in range > map[1c]: type Memory, range 32, base 0xfbeb8000, size 14, = enabled > pcib1: requested memory range 0xfbeb8000-0xfbebbfff: good > pcib1: matched entry for 7.0.INTA > pcib1: slot 0 INTA hardwired to IRQ 28 > found-> vendor=3D0x8086, dev=3D0x10c9, revid=3D0x01 > domain=3D0, bus=3D7, slot=3D0, func=3D1 > class=3D02-00-00, hdrtype=3D0x00, mfdev=3D1 > cmdreg=3D0x0147, statreg=3D0x0010, cachelnsz=3D64 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 = ns) > intpin=3Db, irq=3D5 > powerspec 3 supports D0 D3 current D0 > MSI supports 1 message, 64 bit, vector masks > MSI-X supports 10 messages in map 0x1c > map[10]: type Memory, range 32, base 0xfbee0000, size 17, = enabled > pcib1: requested memory range 0xfbee0000-0xfbefffff: good > map[14]: type Memory, range 32, base 0xfbec0000, size 17, = enabled > pcib1: requested memory range 0xfbec0000-0xfbedffff: good > map[18]: type I/O Port, range 32, base 0xec00, size 5, enabled > pcib1: requested I/O range 0xec00-0xec1f: in range > map[1c]: type Memory, range 32, base 0xfbebc000, size 14, = enabled > pcib1: requested memory range 0xfbebc000-0xfbebffff: good > pcib1: matched entry for 7.0.INTB > pcib1: slot 0 INTB hardwired to IRQ 40 > igb0: <Intel(R) PRO/1000 Network Connection version - 1.7.3> port > 0xe880-0xe89f mem > 0xfbe60000-0xfbe7ffff,0xfbe40000-0xfbe5ffff,0xfbeb8000-0xfbebbfff irq = 28 at > device 0.0 on pci7 > igb0: Reserved 0x20000 bytes for rid 0x10 type 3 at 0xfbe60000 > igb0: Reserved 0x4000 bytes for rid 0x1c type 3 at 0xfbeb8000 > igb0: attempting to allocate 3 MSI-X vectors (10 supported) > msi: routing MSI-X IRQ 256 to local APIC 16 vector 49 > msi: routing MSI-X IRQ 257 to local APIC 16 vector 50 > msi: routing MSI-X IRQ 258 to local APIC 16 vector 51 > igb0: using IRQs 256-258 for MSI-X > igb0: Using MSIX interrupts with 3 vectors > igb0: [MPSAFE] > igb0: [ITHREAD] > igb0: [MPSAFE] > igb0: [ITHREAD] > igb0: [MPSAFE] > igb0: [ITHREAD] > igb0: bpf attached > igb0: Ethernet address: d8:d3:85:b5:ec:2e > igb1: <Intel(R) PRO/1000 Network Connection version - 1.7.3> port > 0xec00-0xec1f mem > 0xfbee0000-0xfbefffff,0xfbec0000-0xfbedffff,0xfbebc000-0xfbebffff irq = 40 at > device 0.1 on pci7 > igb1: Reserved 0x20000 bytes for rid 0x10 type 3 at 0xfbee0000 > igb1: Reserved 0x4000 bytes for rid 0x1c type 3 at 0xfbebc000 > igb1: attempting to allocate 3 MSI-X vectors (10 supported) > msi: routing MSI-X IRQ 259 to local APIC 16 vector 52 > msi: routing MSI-X IRQ 260 to local APIC 16 vector 53 > msi: routing MSI-X IRQ 261 to local APIC 16 vector 54 > igb1: using IRQs 259-261 for MSI-X > igb1: Using MSIX interrupts with 3 vectors > igb1: [MPSAFE] > igb1: [ITHREAD] > igb1: [MPSAFE] > igb1: [ITHREAD] > igb1: [MPSAFE] > igb1: [ITHREAD] > igb1: bpf attached > igb1: Ethernet address: d8:d3:85:b5:ec:2f > pcib2: <ACPI PCI-PCI bridge> at device 3.0 on pci0 > pcib2: domain 0 > pcib2: secondary bus 6 > pcib2: subordinate bus 6 > pcib2: I/O decode 0xd000-0xdfff > pcib2: memory decode 0xfb800000-0xfbdfffff > pcib2: no prefetched decode > pci6: <ACPI PCI bus> on pcib2 > pci6: domain=3D0, physical bus=3D6 > found-> vendor=3D0x103c, dev=3D0x323a, revid=3D0x01 > domain=3D0, bus=3D6, slot=3D0, func=3D0 > class=3D01-04-00, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0047, statreg=3D0x0010, cachelnsz=3D64 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 = ns) > intpin=3Da, irq=3D10 > powerspec 3 supports D0 D1 D3 current D0 > MSI supports 1 message, 64 bit > MSI-X supports 16 messages in map 0x10 > map[10]: type Memory, range 64, base 0xfb800000, size 22, = enabled > pcib2: requested memory range 0xfb800000-0xfbbfffff: good > map[18]: type Memory, range 64, base 0xfbdff000, size 12, = enabled > pcib2: requested memory range 0xfbdff000-0xfbdfffff: good > map[20]: type I/O Port, range 32, base 0xd800, size 8, enabled > pcib2: requested I/O range 0xd800-0xd8ff: in range > pcib2: matched entry for 6.0.INTA > pcib2: slot 0 INTA hardwired to IRQ 24 > ciss0: <HP Smart Array P212> port 0xd800-0xd8ff mem > 0xfb800000-0xfbbfffff,0xfbdff000-0xfbdfffff irq 24 at device 0.0 on = pci6 > ciss0: Reserved 0x400000 bytes for rid 0x10 type 3 at 0xfb800000 > ciss0: PERFORMANT Transport > ciss0: attempting to allocate 1 MSI-X vectors (16 supported) > msi: routing MSI-X IRQ 262 to local APIC 16 vector 55 > ciss0: using IRQ 262 for MSI-X > ciss0: Using 1 MSIX interrupt > ciss0: [MPSAFE] > ciss0: [ITHREAD] > ciss0: using 32 of 32 available commands > ciss0: firmware 3.00 > ciss0: 1 SCSI channels > ciss0: signature 'CISS' > ciss0: valence 3 > ciss0: supported I/O methods 0x78000007<READY,simple,performant> > ciss0: active I/O method 0x5<performant> > ciss0: 4G page base 0x00000000 > ciss0: interrupt coalesce delay 0us > ciss0: interrupt coalesce count 16 > ciss0: max outstanding commands 32 > ciss0: bus types 0x200000 > ciss0: server name 'SGH931X7JB' > ciss0: heartbeat 0x2ba > ciss0: 2 physical devices > ciss0: 0 logical drives > pcib3: <ACPI PCI-PCI bridge> at device 7.0 on pci0 > pcib3: domain 0 > pcib3: secondary bus 5 > pcib3: subordinate bus 5 > pcib3: I/O decode 0x0-0x0 > pcib3: no prefetched decode > pci5: <ACPI PCI bus> on pcib3 > pci5: domain=3D0, physical bus=3D5 > pcib4: <ACPI PCI-PCI bridge> at device 9.0 on pci0 > pcib4: domain 0 > pcib4: secondary bus 4 > pcib4: subordinate bus 4 > pcib4: I/O decode 0xc000-0xcfff > pcib4: memory decode 0xfb300000-0xfb7fffff > pcib4: no prefetched decode > pci4: <ACPI PCI bus> on pcib4 > pci4: domain=3D0, physical bus=3D4 > found-> vendor=3D0x103c, dev=3D0x323a, revid=3D0x01 > domain=3D0, bus=3D4, slot=3D0, func=3D0 > class=3D01-04-00, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0047, statreg=3D0x0010, cachelnsz=3D64 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 = ns) > intpin=3Da, irq=3D10 > powerspec 3 supports D0 D1 D3 current D0 > MSI supports 1 message, 64 bit > MSI-X supports 16 messages in map 0x10 > map[10]: type Memory, range 64, base 0xfb400000, size 22, = enabled > pcib4: requested memory range 0xfb400000-0xfb7fffff: good > map[18]: type Memory, range 64, base 0xfb3ff000, size 12, = enabled > pcib4: requested memory range 0xfb3ff000-0xfb3fffff: good > map[20]: type I/O Port, range 32, base 0xc800, size 8, enabled > pcib4: requested I/O range 0xc800-0xc8ff: in range > pcib4: matched entry for 4.0.INTA > pcib4: slot 0 INTA hardwired to IRQ 32 > ciss1: <HP Smart Array P410> port 0xc800-0xc8ff mem > 0xfb400000-0xfb7fffff,0xfb3ff000-0xfb3fffff irq 32 at device 0.0 on = pci4 > ciss1: Reserved 0x400000 bytes for rid 0x10 type 3 at 0xfb400000 > ciss1: PERFORMANT Transport > ciss1: attempting to allocate 1 MSI-X vectors (16 supported) > msi: routing MSI-X IRQ 263 to local APIC 16 vector 56 > ciss1: using IRQ 263 for MSI-X > ciss1: Using 1 MSIX interrupt > ciss1: [MPSAFE] > ciss1: [ITHREAD] > ciss1: using 256 of 1024 available commands > ciss1: firmware 3.00 > ciss1: 1 SCSI channels > ciss1: signature 'CISS' > ciss1: valence 3 > ciss1: supported I/O methods 0x78000007<READY,simple,performant> > ciss1: active I/O method 0x5<performant> > ciss1: 4G page base 0x00000000 > ciss1: interrupt coalesce delay 0us > ciss1: interrupt coalesce count 16 > ciss1: max outstanding commands 1024 > ciss1: bus types 0x200000 > ciss1: server name 'USE179N286' > ciss1: heartbeat 0x270 > ciss1: 5 physical devices > ciss1: 1 logical drive > ciss1: logical drive (b0t0): RAID ADG, 1907200MB online > pci0: <base peripheral, interrupt controller> at device 20.0 (no = driver > attached) > pci0: <base peripheral, interrupt controller> at device 20.1 (no = driver > attached) > pci0: <base peripheral, interrupt controller> at device 20.2 (no = driver > attached) > uhci0: <UHCI (generic) USB controller> port 0xa800-0xa81f irq 16 at = device > 26.0 on pci0 > uhci0: Reserved 0x20 bytes for rid 0x20 type 4 at 0xa800 > ioapic0: routing intpin 16 (PCI IRQ 16) to lapic 16 vector 57 > uhci0: [MPSAFE] > uhci0: [ITHREAD] > uhci0: LegSup =3D 0x0430 > usbus0: <UHCI (generic) USB controller> on uhci0 > ehci0: <EHCI (generic) USB 2.0 controller> mem 0xfa7f8000-0xfa7f83ff = irq 18 > at device 26.7 on pci0 > ehci0: Reserved 0x400 bytes for rid 0x10 type 3 at 0xfa7f8000 > ioapic0: routing intpin 18 (PCI IRQ 18) to lapic 16 vector 58 > ehci0: [MPSAFE] > ehci0: [ITHREAD] > usbus1: EHCI version 1.0 > usbus1: <EHCI (generic) USB 2.0 controller> on ehci0 > pcib5: <ACPI PCI-PCI bridge> irq 16 at device 28.0 on pci0 > pcib5: domain 0 > pcib5: secondary bus 3 > pcib5: subordinate bus 3 > pcib5: I/O decode 0x0-0x0 > pcib5: prefetched decode 0xf9f00000-0xf9ffffff > pci3: <ACPI PCI bus> on pcib5 > pci3: domain=3D0, physical bus=3D3 > pcib6: <ACPI PCI-PCI bridge> irq 16 at device 28.4 on pci0 > pcib6: domain 0 > pcib6: secondary bus 2 > pcib6: subordinate bus 2 > pcib6: I/O decode 0xf000-0xfff > pcib6: memory decode 0xfa800000-0xfb2fffff > pcib6: prefetched decode 0xf8000000-0xf8ffffff > pci2: <ACPI PCI bus> on pcib6 > pci2: domain=3D0, physical bus=3D2 > found-> vendor=3D0x102b, dev=3D0x0522, revid=3D0x02 > domain=3D0, bus=3D2, slot=3D0, func=3D0 > class=3D03-00-00, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0047, statreg=3D0x1010, cachelnsz=3D64 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 = ns) > intpin=3Da, irq=3D10 > powerspec 2 supports D0 D3 current D0 > MSI supports 1 message > map[10]: type Prefetchable Memory, range 32, base 0xf8000000, = size > 24, enabled > pcib6: requested memory range 0xf8000000-0xf8ffffff: good > map[14]: type Memory, range 32, base 0xfb2fc000, size 14, = enabled > pcib6: requested memory range 0xfb2fc000-0xfb2fffff: good > map[18]: type Memory, range 32, base 0xfa800000, size 23, = enabled > pcib6: requested memory range 0xfa800000-0xfaffffff: good > pcib6: matched entry for 2.0.INTA > pcib6: slot 0 INTA hardwired to IRQ 16 > vgapci0: <VGA-compatible display> mem > 0xf8000000-0xf8ffffff,0xfb2fc000-0xfb2fffff,0xfa800000-0xfaffffff irq = 16 at > device 0.0 on pci2 > uhci1: <UHCI (generic) USB controller> port 0xa880-0xa89f irq 23 at = device > 29.0 on pci0 > uhci1: Reserved 0x20 bytes for rid 0x20 type 4 at 0xa880 > ioapic0: routing intpin 23 (PCI IRQ 23) to lapic 16 vector 59 > uhci1: [MPSAFE] > uhci1: [ITHREAD] > uhci1: LegSup =3D 0x0430 > usbus2: <UHCI (generic) USB controller> on uhci1 > uhci2: <UHCI (generic) USB controller> port 0xac00-0xac1f irq 19 at = device > 29.1 on pci0 > uhci2: Reserved 0x20 bytes for rid 0x20 type 4 at 0xac00 > ioapic0: routing intpin 19 (PCI IRQ 19) to lapic 16 vector 60 > uhci2: [MPSAFE] > uhci2: [ITHREAD] > uhci2: LegSup =3D 0x0430 > usbus3: <UHCI (generic) USB controller> on uhci2 > uhci3: <UHCI (generic) USB controller> port 0xb000-0xb01f irq 18 at = device > 29.2 on pci0 > uhci3: Reserved 0x20 bytes for rid 0x20 type 4 at 0xb000 > uhci3: [MPSAFE] > uhci3: [ITHREAD] > uhci3: LegSup =3D 0x0430 > usbus4: <UHCI (generic) USB controller> on uhci3 > ehci1: <EHCI (generic) USB 2.0 controller> mem 0xfa7fa000-0xfa7fa3ff = irq 23 > at device 29.7 on pci0 > ehci1: Reserved 0x400 bytes for rid 0x10 type 3 at 0xfa7fa000 > ehci1: [MPSAFE] > ehci1: [ITHREAD] > usbus5: EHCI version 1.0 > usbus5: <EHCI (generic) USB 2.0 controller> on ehci1 > pcib7: <ACPI PCI-PCI bridge> at device 30.0 on pci0 > pcib7: domain 0 > pcib7: secondary bus 1 > pcib7: subordinate bus 1 > pcib7: I/O decode 0x0-0x0 > pcib7: no prefetched decode > pcib7: Subtractively decoded bridge. > pcib7: could not get PCI interrupt routing table for \\_SB_.PCI0.P0P1 = - > AE_NOT_FOUND > pci1: <ACPI PCI bus> on pcib7 > pci1: domain=3D0, physical bus=3D1 > isab0: <PCI-ISA bridge> at device 31.0 on pci0 > isa0: <ISA bus> on isab0 > atapci0: <Intel ICH10 SATA300 controller> port > 0xb880-0xb887,0xb800-0xb803,0xb480-0xb487,0xb400-0xb403,0xb080-0xb09f = mem > 0xfa7fc000-0xfa7fc7ff irq 19 at device 31.2 on pci0 > atapci0: Reserved 0x20 bytes for rid 0x20 type 4 at 0xb080 > atapci0: [MPSAFE] > atapci0: [ITHREAD] > atapci0: Reserved 0x800 bytes for rid 0x24 type 3 at 0xfa7fc000 > atapci0: AHCI called from vendor specific driver > atapci0: AHCI v1.20 controller with 6 1.5Gbps ports, PM not supported > atapci0: Caps: 64bit NCQ SNTF SS ALP AL CLO 1.5Gbps PMD SSC PSC 32cmd = CCC EM > eSATA 6ports > ata2: <ATA channel 0> on atapci0 > ata2: AHCI reset... > ata2: hardware reset ... > ata2: SATA connect timeout status=3D00000000 > ata2: AHCI reset done: phy reset found no device > ata2: [MPSAFE] > ata2: [ITHREAD] > ata3: <ATA channel 1> on atapci0 > ata3: AHCI reset... > ata3: hardware reset ... > ata3: SATA connect timeout status=3D00000000 > ata3: AHCI reset done: phy reset found no device > ata3: [MPSAFE] > ata3: [ITHREAD] > ata4: <ATA channel 2> on atapci0 > ata4: AHCI reset... > ata4: hardware reset ... > ata4: SATA connect timeout status=3D00000000 > ata4: AHCI reset done: phy reset found no device > ata4: [MPSAFE] > ata4: [ITHREAD] > ata5: <ATA channel 3> on atapci0 > ata5: AHCI reset... > ata5: hardware reset ... > ata5: SATA connect timeout status=3D00000000 > ata5: AHCI reset done: phy reset found no device > ata5: [MPSAFE] > ata5: [ITHREAD] > ata6: <ATA channel 4> on atapci0 > ata6: AHCI reset... > ata6: hardware reset ... > ata6: SATA connect time=3D0ms status=3D00000113 > ata6: ready wait time=3D0ms > ata6: software reset port 0... > ata6: ready wait time=3D0ms > ata6: SIGNATURE: eb140101 > ata6: AHCI reset done: devices=3D00010000 > ata6: [MPSAFE] > ata6: [ITHREAD] > ata7: <ATA channel 5> on atapci0 > ata7: AHCI reset... > ata7: hardware reset ... > ata7: SATA connect timeout status=3D00000000 > ata7: AHCI reset done: phy reset found no device > ata7: [MPSAFE] > ata7: [ITHREAD] > acpi_button0: <Power Button> on acpi0 > atrtc0: <AT realtime clock> port 0x70-0x71 irq 8 on acpi0 > atrtc0: registered as a time-of-day clock (resolution 1000000us) > uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on = acpi0 > ioapic0: routing intpin 4 (ISA IRQ 4) to lapic 16 vector 61 > uart0: [FILTER] > uart0: fast interrupt > cpu0: <ACPI CPU> on acpi0 > ACPI: SSDT 0xbf77e1c0 013CC (v1 DpgPmm P001Ist 00000011 INTL = 20051117) > ACPI: SSDT 0xbf77f590 00659 (v1 PmRef P001Cst 00003001 INTL = 20051117) > est0: <Enhanced SpeedStep Frequency Control> on cpu0 > est0: Invalid id16 (set, cur) =3D (16, 17) > est0: Invalid freq 2133, ignored. > est0: Invalid id16 (set, cur) =3D (15, 17) > est0: Invalid freq 2000, ignored. > est0: Invalid id16 (set, cur) =3D (14, 17) > est0: Invalid freq 1867, ignored. > est0: Invalid id16 (set, cur) =3D (13, 17) > est0: Invalid freq 1733, ignored. > est0: Invalid id16 (set, cur) =3D (12, 17) > est0: Invalid freq 1600, ignored. > p4tcc0: <CPU Frequency Thermal Control> on cpu0 > cpu1: <ACPI CPU> on acpi0 > est1: <Enhanced SpeedStep Frequency Control> on cpu1 > est1: Invalid id16 (set, cur) =3D (16, 17) > est1: Invalid freq 2133, ignored. > est1: Invalid id16 (set, cur) =3D (15, 17) > est1: Invalid freq 2000, ignored. > est1: Invalid id16 (set, cur) =3D (14, 17) > est1: Invalid freq 1867, ignored. > est1: Invalid id16 (set, cur) =3D (13, 17) > est1: Invalid freq 1733, ignored. > est1: Invalid id16 (set, cur) =3D (12, 17) > est1: Invalid freq 1600, ignored. > p4tcc1: <CPU Frequency Thermal Control> on cpu1 > cpu2: <ACPI CPU> on acpi0 > est2: <Enhanced SpeedStep Frequency Control> on cpu2 > est2: Invalid id16 (set, cur) =3D (16, 17) > est2: Invalid freq 2133, ignored. > est2: Invalid id16 (set, cur) =3D (15, 17) > est2: Invalid freq 2000, ignored. > est2: Invalid id16 (set, cur) =3D (14, 17) > est2: Invalid freq 1867, ignored. > est2: Invalid id16 (set, cur) =3D (13, 17) > est2: Invalid freq 1733, ignored. > est2: Invalid id16 (set, cur) =3D (12, 17) > est2: Invalid freq 1600, ignored. > p4tcc2: <CPU Frequency Thermal Control> on cpu2 > cpu3: <ACPI CPU> on acpi0 > est3: <Enhanced SpeedStep Frequency Control> on cpu3 > est3: Invalid id16 (set, cur) =3D (16, 17) > est3: Invalid freq 2133, ignored. > est3: Invalid id16 (set, cur) =3D (15, 17) > est3: Invalid freq 2000, ignored. > est3: Invalid id16 (set, cur) =3D (14, 17) > est3: Invalid freq 1867, ignored. > est3: Invalid id16 (set, cur) =3D (13, 17) > est3: Invalid freq 1733, ignored. > est3: Invalid id16 (set, cur) =3D (12, 17) > est3: Invalid freq 1600, ignored. > p4tcc3: <CPU Frequency Thermal Control> on cpu3 > cpu4: <ACPI CPU> on acpi0 > est4: <Enhanced SpeedStep Frequency Control> on cpu4 > est4: Invalid id16 (set, cur) =3D (16, 17) > est4: Invalid freq 2133, ignored. > est4: Invalid id16 (set, cur) =3D (15, 17) > est4: Invalid freq 2000, ignored. > est4: Invalid id16 (set, cur) =3D (14, 17) > est4: Invalid freq 1867, ignored. > est4: Invalid id16 (set, cur) =3D (13, 17) > est4: Invalid freq 1733, ignored. > est4: Invalid id16 (set, cur) =3D (12, 17) > est4: Invalid freq 1600, ignored. > p4tcc4: <CPU Frequency Thermal Control> on cpu4 > cpu5: <ACPI CPU> on acpi0 > est5: <Enhanced SpeedStep Frequency Control> on cpu5 > est5: Invalid id16 (set, cur) =3D (16, 17) > est5: Invalid freq 2133, ignored. > est5: Invalid id16 (set, cur) =3D (15, 17) > est5: Invalid freq 2000, ignored. > est5: Invalid id16 (set, cur) =3D (14, 17) > est5: Invalid freq 1867, ignored. > est5: Invalid id16 (set, cur) =3D (13, 17) > est5: Invalid freq 1733, ignored. > est5: Invalid id16 (set, cur) =3D (12, 17) > est5: Invalid freq 1600, ignored. > p4tcc5: <CPU Frequency Thermal Control> on cpu5 > cpu6: <ACPI CPU> on acpi0 > est6: <Enhanced SpeedStep Frequency Control> on cpu6 > est6: Invalid id16 (set, cur) =3D (16, 17) > est6: Invalid freq 2133, ignored. > est6: Invalid id16 (set, cur) =3D (15, 17) > est6: Invalid freq 2000, ignored. > est6: Invalid id16 (set, cur) =3D (14, 17) > est6: Invalid freq 1867, ignored. > est6: Invalid id16 (set, cur) =3D (13, 17) > est6: Invalid freq 1733, ignored. > est6: Invalid id16 (set, cur) =3D (12, 17) > est6: Invalid freq 1600, ignored. > p4tcc6: <CPU Frequency Thermal Control> on cpu6 > cpu7: <ACPI CPU> on acpi0 > est7: <Enhanced SpeedStep Frequency Control> on cpu7 > est7: Invalid id16 (set, cur) =3D (16, 17) > est7: Invalid freq 2133, ignored. > est7: Invalid id16 (set, cur) =3D (15, 17) > est7: Invalid freq 2000, ignored. > est7: Invalid id16 (set, cur) =3D (14, 17) > est7: Invalid freq 1867, ignored. > est7: Invalid id16 (set, cur) =3D (13, 17) > est7: Invalid freq 1733, ignored. > est7: Invalid id16 (set, cur) =3D (12, 17) > est7: Invalid freq 1600, ignored. > p4tcc7: <CPU Frequency Thermal Control> on cpu7 > unknown: status reg test failed ff > unknown: status reg test failed ff > unknown: status reg test failed ff > unknown: status reg test failed ff > unknown: status reg test failed ff > unknown: status reg test failed ff > ahc_isa_probe 0: ioport 0xc00 alloc failed > ahc_isa_probe 10: ioport 0xac00 alloc failed > ahc_isa_probe 14: ioport 0xec00 alloc failed > pnp_identify: Trying Read_Port at 203 > pnp_identify: Trying Read_Port at 243 > pnp_identify: Trying Read_Port at 283 > pnp_identify: Trying Read_Port at 2c3 > pnp_identify: Trying Read_Port at 303 > pnp_identify: Trying Read_Port at 343 > pnp_identify: Trying Read_Port at 383 > pnp_identify: Trying Read_Port at 3c3 > PNP Identify complete > ex_isa_identify() > isa_probe_children: disabling PnP devices > pmtimer0 on isa0 > atrtc: atrtc0 already exists; skipping it > sc: sc0 already exists; skipping it > uart: uart0 already exists; skipping it > isa_probe_children: probing non-PnP devices > orm0: <ISA Option ROMs> at iomem > 0xc0000-0xc7fff,0xc8000-0xc8fff,0xc9000-0xccfff pnpid ORM0000 on isa0 > atkbd: the current kbd controller command byte 0087 > atkbd: keyboard ID 0x83ab (2) > sc0: <System console> at flags 0x100 on isa0 > sc0: VGA <16 virtual consoles, flags=3D0x300> > sc0: fb0, kbd1, terminal emulator: scteken (teken terminal) > vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on = isa0 > ata0 at port 0x1f0-0x1f7,0x3f6 irq 14 on isa0 > ata0: reset tp1 mask=3D00 ostat0=3Dff ostat1=3Dff > ioapic0: routing intpin 14 (ISA IRQ 14) to lapic 16 vector 62 > ata0: [MPSAFE] > ata0: [ITHREAD] > ata1 at port 0x170-0x177,0x376 irq 15 on isa0 > ata1: reset tp1 mask=3D00 ostat0=3Dff ostat1=3Dff > ioapic0: routing intpin 15 (ISA IRQ 15) to lapic 16 vector 63 > ata1: [MPSAFE] > ata1: [ITHREAD] > atkbdc0: <Keyboard controller (i8042)> at port 0x60,0x64 on isa0 > atkbd0: <AT Keyboard> irq 1 on atkbdc0 > kbd0 at atkbd0 > kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x3d0000 > ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 16 vector 64 > atkbd0: [GIANT-LOCKED] > atkbd0: [ITHREAD] > psm0: current command byte:0087 > psm0: <PS/2 Mouse> irq 12 on atkbdc0 > ioapic0: routing intpin 12 (ISA IRQ 12) to lapic 16 vector 65 > psm0: [GIANT-LOCKED] > psm0: [ITHREAD] > psm0: model GlidePoint, device ID 0-00, 3 buttons > psm0: config:00000000, flags:00000008, packet size:3 > psm0: syncmask:c0, syncbits:00 > fdc0 failed to probe at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 > ppc0: parallel port not found. > ppc0: <Parallel port> failed to probe at irq 7 on isa0 > uart1: <ns8250> failed to probe at port 0x2f8-0x2ff irq 3 on isa0 > isa_probe_children: probing PnP devices > Device configuration finished. > Reducing kern.maxvnodes 197947 -> 100000 > procfs registered > lapic: Divisor 2, Frequency 66669465 hz > Timecounter "TSC" frequency 2266761792 Hz quality -100 > Timecounters tick every 1.000 msec > lo0: bpf attached > hptrr: no controller detected. > ata0: Identifying devices: 00000000 > ata0: New devices: 00000000 > ata1: Identifying devices: 00000000 > ata1: New devices: 00000000 > ata2: Identifying devices: 00000000 > ata2: New devices: 00000000 > ata3: Identifying devices: 00000000 > ata3: New devices: 00000000 > ata4: Identifying devices: 00000000 > ata4: New devices: 00000000 > ata5: Identifying devices: 00000000 > ata5: New devices: 00000000 > ata6: Identifying devices: 00010000 > ata6: New devices: 00010000 > usbus0: 12Mbps Full Speed USB v1.0 > usbus1: 480Mbps High Speed USB v2.0 > usbus2: 12Mbps Full Speed USB v1.0 > usbus3: 12Mbps Full Speed USB v1.0 > usbus4: 12Mbps Full Speed USB v1.0 > usbus5: 480Mbps High Speed USB v2.0 > ugen0.1: <Intel> at usbus0 > uhub0: <Intel UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on = usbus0 > ugen1.1: <Intel> at usbus1 > uhub1: <Intel EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on = usbus1 > ugen2.1: <Intel> at usbus2 > uhub2: <Intel UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on = usbus2 > ugen3.1: <Intel> at usbus3 > uhub3: <Intel UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on = usbus3 > ugen4.1: <Intel> at usbus4 > uhub4: <Intel UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on = usbus4 > ugen5.1: <Intel> at usbus5 > uhub5: <Intel EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on = usbus5 > ata6-master: pio=3DPIO4 wdma=3DWDMA2 udma=3DUDMA100 cable=3D40 wire > ata6: device_reset timeout=3D330us > acd0: <Optiarc DVD RW AD-7561S/AH52> DVDR drive at ata6 as master > acd0: read 4134KB/s (4134KB/s) write 4134KB/s (4134KB/s), 2048KB = buffer, > SATA150 > acd0: Reads: CDR, CDRW, CDDA stream, DVDROM, DVDR, DVDRAM, packet > acd0: Writes: CDR, CDRW, DVDR, DVDRAM, test write, burnproof > acd0: Audio: play, 256 volume levels > acd0: Mechanism: ejectable tray, unlocked > acd0: Medium: no/blank disc > ata7: Identifying devices: 00000000 > ata7: New devices: 00000000 > uhub0: 2 ports with 2 removable, self powered > uhub2: 2 ports with 2 removable, self powered > uhub3: 2 ports with 2 removable, self powered > uhub4: 2 ports with 2 removable, self powered > uhub1: 2 ports with 2 removable, self powered > uhub5: 6 ports with 6 removable, self powered > pass0 at ciss0 bus 32 target 6 lun 0 > pass0: <HP Ultrium 4-SCSI U52W> Removable Sequential Access SCSI-5 = device > pass0: Serial Number HU101099DY > pass0: 135.168MB/s transfers > pass0: Command Queueing enabled > pass1 at ciss1 bus 0 target 0 lun 0 > pass1: <COMPAQ RAID ADGVOLUME OK> Fixed Direct Access SCSI-5 device > pass1: Serial Number PACCCOMPAQ RAID > pass1: 135.168MB/s transfers > pass1: Command Queueing enabled > sa0 at ciss0 bus 32 target 6 lun 0 > sa0: <HP Ultrium 4-SCSI U52W> Removable Sequential Access SCSI-5 = device > sa0: Serial Number HU101099DY > sa0: 135.168MB/s transfers > sa0: Command Queueing enabled > GEOM: new disk da0da0 at ciss1 bus 0 target 0 lun 0 > da0: <COMPAQ RAID ADGVOLUME OK> Fixed Direct Access SCSI-5 device > da0: Serial Number PACCCOMPAQ RAID > da0: 135.168MB/s transfers > da0: Command Queueing enabled > da0: 1907675MB (3906918832 512 byte sectors: 255H 32S/T 65535C) >=20 > ATA PseudoRAID loaded > SMP: AP CPU #3 Launched! > cpu3 AP: > ID: 0x13000000 VER: 0x00060015 LDR: 0x00000000 DFR: 0xffffffff > lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff > timer: 0x000200ef therm: 0x00010000 err: 0x00010000 pcm: 0x00010400 > SMP: AP CPU #7 Launched! > cpu7 AP: > ID: 0x17000000 VER: 0x00060015 LDR: 0x00000000 DFR: 0xffffffff > lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff > timer: 0x000200ef therm: 0x00010000 err: 0x00010000 pcm: 0x00010400 > SMP: AP CPU #2 Launched! > cpu2 AP: > ID: 0x12000000 VER: 0x00060015 LDR: 0x00000000 DFR: 0xffffffff > lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff > timer: 0x000200ef therm: 0x00010000 err: 0x00010000 pcm: 0x00010400 > SMP: AP CPU #1 Launched! > cpu1 AP: > ID: 0x11000000 VER: 0x00060015 LDR: 0x00000000 DFR: 0xffffffff > lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff > timer: 0x000200ef therm: 0x00010000 err: 0x00010000 pcm: 0x00010400 > SMP: AP CPU #6 Launched! > cpu6 AP: > ID: 0x16000000 VER: 0x00060015 LDR: 0x00000000 DFR: 0xffffffff > lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff > timer: 0x000200ef therm: 0x00010000 err: 0x00010000 pcm: 0x00010400 > SMP: AP CPU #4 Launched! > cpu4 AP: > ID: 0x14000000 VER: 0x00060015 LDR: 0x00000000 DFR: 0xffffffff > lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff > timer: 0x000200ef therm: 0x00010000 err: 0x00010000 pcm: 0x00010400 > SMP: AP CPU #5 Launched! > cpu5 AP: > ID: 0x15000000 VER: 0x00060015 LDR: 0x00000000 DFR: 0xffffffff > lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff > timer: 0x000200ef therm: 0x00010000 err: 0x00010000 pcm: 0x00010400 > ioapic0: routing intpin 4 (ISA IRQ 4) to lapic 17 vector 48 > ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 18 vector 48 > ioapic0: routing intpin 12 (ISA IRQ 12) to lapic 19 vector 48 > ioapic0: routing intpin 14 (ISA IRQ 14) to lapic 20 vector 48 > ioapic0: routing intpin 15 (ISA IRQ 15) to lapic 21 vector 48 > ioapic0: routing intpin 16 (PCI IRQ 16) to lapic 22 vector 48 > ioapic0: routing intpin 18 (PCI IRQ 18) to lapic 23 vector 48 > ioapic0: routing intpin 23 (PCI IRQ 23) to lapic 17 vector 49 > msi: Assigning MSI-X IRQ 256 to local APIC 18 vector 49 > msi: Assigning MSI-X IRQ 257 to local APIC 19 vector 49 > msi: Assigning MSI-X IRQ 258 to local APIC 20 vector 49 > msi: Assigning MSI-X IRQ 259 to local APIC 21 vector 49 > msi: Assigning MSI-X IRQ 260 to local APIC 22 vector 49 > msi: Assigning MSI-X IRQ 261 to local APIC 23 vector 49 > msi: Assigning MSI-X IRQ 263 to local APIC 17 vector 50 > ugen3.2: <ATEN> at usbus3 > ukbd0: <HID Keyboard> on usbus3 > kbd2 at ukbd0 > kbd2: ukbd0, generic (0), config:0x0, flags:0x3d0000 > ums0: <HID Mouse> on usbus3 > ums0: 5 buttons and [XYZ] coordinates ID=3D0 > Trying to mount root from ufs:/dev/da0s1a > ct_to_ts([2010-07-07 09:48:52]) =3D 1278496132.000000000 > start_init: trying /sbin/init > igb0: Link is up 1000 Mbps Full Duplex > igb0: link state changed to UP >=20 >=20 > while I don't have the cissutil with my freebsd even after I have = installed > the ciss-vol-status? what actually is it ? >=20 >=20 > Frank > On Wed, Jul 7, 2010 at 12:28 AM, Sean Bruno <seanbru@yahoo-inc.com> = wrote: >=20 >> On Tue, 2010-07-06 at 05:40 -0700, Folkert Saathoff wrote: >>> actually we were having a similar experience with the smartarray = p212... >> attached a SAS tape changer (tandbergdata lto-4 autoloader) to it, = but could >> only see the tape drive, not the changer. in our case, the p212 was = the >> second smartarray controller on the bus (ciss1), with a P410 as the = primary >> one. i believe there's a bug about that as well. to contrast, another >> machine with an IBM serveraid SAS controller and the same tape = changer works >> quite nicely out of the box with FreeBSD 8.0. >>>=20 >>>=20 >>> please get in touch with me if you're a developer and want to see a = dmesg >> or similar.. :) >>>=20 >>> cheers, >>> /folkert >>>=20 >>=20 >> If you could post verbose boot output + sudo cissutil --dump >>=20 >> For example, my ciss controller on an HPDL180G5 looks like this: >>=20 >> controller 0 (HP P400 ) >> logical drives: 2 >> running firmware 7.08 >> stored firmware 7.08 >> scsi bus count 1 >> drives per scsi bus 16 >> drives >> (b0t8,b0t9,b0t10,b0t11,b0t12,b0t13,b0t14,b0t15,b1t0,b1t1,b1t2,b1t3) >> scsi_bus_count 01 >> Battery 0: Not Present/Discharged >> Cache is: Disabled >> Total write cache size =3D 212992 KB >> Write cache size =3D 212992 KB >> Read cache size =3D 0 KB >> Cache disabled map =3D 0x00000000 >> Cache enabled on: (vol0,vol1) >> rebuild (64) priority 1 ms for every host command >> expand (64) priority 1 ms for every host command >> vol0 >> Volume is bootable: YES >> 1 phys drives (b0t8) >> status OK >> failed drives (none) >> block size 512 >> blocks available 585871964 >> fault tolerance RAID0 >> spare configured NO >> stripe size 128k >> vol1 >> Volume is bootable: YES >> 5 phys drives (b0t15,b1t0,b1t1,b1t2,b1t3) >> status OK >> failed drives (none) >> block size 512 >> blocks available 4294967295 >> fault tolerance RAID0 >> spare configured NO >> stripe size 128k >>=20 >>=20 >>=20 > _______________________________________________ > freebsd-scsi@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-scsi > To unsubscribe, send any mail to = "freebsd-scsi-unsubscribe@freebsd.org"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6EC599F1-3713-4497-9372-4032078890EF>