Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Sep 2010 19:05:37 +0900
From:      Norikatsu Shigemura <nork@FreeBSD.org>
To:        Andriy Gapon <avg@icyb.net.ua>
Cc:        Alexander Motin <mav@FreeBSD.org>, FreeBSD-Current <freebsd-current@FreeBSD.org>, nork@FreeBSD.org
Subject:   Re: CPU C-state storange on Panasonic TOUGH BOOK CF-R9
Message-ID:  <20100912190537.621e357e.nork@FreeBSD.org>
In-Reply-To: <4C8C9F06.4090505@icyb.net.ua>
References:  <4C8BCAC5.5050008@root.org> <mailpost.1284277196.1767764.83548.mailing.freebsd.current@FreeBSD.cs.nctu.edu.tw> <4C8C8B64.8020907@FreeBSD.org> <20100912182625.c49d3f1d.nork@FreeBSD.org> <4C8C9F06.4090505@icyb.net.ua>

next in thread | previous in thread | raw e-mail | index | archive | help
This is a multi-part message in MIME format.

--Multipart=_Sun__12_Sep_2010_19_05_37_+0900_a8svMvsOO8prOeQU
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit

Hi avg.

On Sun, 12 Sep 2010 12:36:06 +0300
Andriy Gapon <avg@icyb.net.ua> wrote:
> > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
> > --- sys/dev/acpica/acpi_cpu.c.orig	2010-09-12 01:31:38.144243000 +0900
> > +++ sys/dev/acpica/acpi_cpu.c	2010-09-12 18:06:14.651938193 +0900
> > @@ -597,7 +597,7 @@
	:
> >      gas.BitWidth = 8;
> > -    if (AcpiGbl_FADT.C2Latency <= 100) {
> > +    if (AcpiGbl_FADT.C2Latency <= 1000) {
> >  	gas.Address = sc->cpu_p_blk + 4;
> >  	acpi_bus_alloc_gas(sc->cpu_dev, &cx_ptr->res_type, &sc->cpu_rid,
	:
> >      /* Validate and allocate resources for C3 (P_LVL3). */
> > -    if (AcpiGbl_FADT.C3Latency <= 1000 && !(cpu_quirks & CPU_QUIRK_NO_C3)) {
> > +    if (AcpiGbl_FADT.C3Latency <= 10000 && !(cpu_quirks & CPU_QUIRK_NO_C3)) {
> >  	gas.Address = sc->cpu_p_blk + 5;
> >  	acpi_bus_alloc_gas(sc->cpu_dev, &cx_ptr->res_type, &sc->cpu_rid, &gas,
	:
> The above changes are incorrect.
> > @@ -690,7 +690,7 @@
	:
> >  	case ACPI_STATE_C2:
> > -	    if (cx_ptr->trans_lat > 100) {
> > +	    if (cx_ptr->trans_lat > 1000) {
> >  		ACPI_DEBUG_PRINT((ACPI_DB_INFO,
	:
> >  	default:
> > -	    if (cx_ptr->trans_lat > 1000 ||
> > +	    if (cx_ptr->trans_lat > 10000 ||
> >  		(cpu_quirks & CPU_QUIRK_NO_C3) != 0) {
	: 
> You should simply remove the check instead of bumping the threshold.

	I re-tried to test following patch.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
--- sys/dev/acpica/acpi_cpu.c.orig	2010-09-12 01:31:38.144243000 +0900
+++ sys/dev/acpica/acpi_cpu.c	2010-09-12 18:47:56.057309965 +0900
@@ -690,19 +690,13 @@
 	    sc->cpu_cx_count++;
 	    continue;
 	case ACPI_STATE_C2:
-	    if (cx_ptr->trans_lat > 100) {
-		ACPI_DEBUG_PRINT((ACPI_DB_INFO,
-				 "acpi_cpu%d: C2[%d] not available.\n",
-				 device_get_unit(sc->cpu_dev), i));
-		continue;
-	    }
-	    sc->cpu_non_c3 = i;
-	    break;
+	    ACPI_DEBUG_PRINT((ACPI_DB_INFO,
+	    		 "acpi_cpu%d: C2[%d] not available.\n",
+	    		 device_get_unit(sc->cpu_dev), i));
+	    continue;
 	case ACPI_STATE_C3:
 	default:
-	    if (cx_ptr->trans_lat > 1000 ||
-		(cpu_quirks & CPU_QUIRK_NO_C3) != 0) {
-
+	    if (cpu_quirks & CPU_QUIRK_NO_C3) {
 		ACPI_DEBUG_PRINT((ACPI_DB_INFO,
 				 "acpi_cpu%d: C3[%d] not available.\n",
 				 device_get_unit(sc->cpu_dev), i));
@@ -731,6 +725,9 @@
 	    cx_ptr++;
 	    sc->cpu_cx_count++;
 	}
+else {
+device_printf(sc->cpu_dev, "cx_ptr->p_lvlx IS NULL.\n");
+}
     }
     AcpiOsFree(buf.Pointer);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

	But not works:-(.
	Please see also attached dmesg.txt.

> > 	But cx_lowest is not changed:
> Why do you expect it to be changed?

	Sorry, I forgot about *_cx_lowest="LOW" in /etc/rc.conf.
	I wrote following setting to /etc/rc.conf.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
performance_cx_lowest="LOW"
economy_cx_lowest="LOW"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

	Thank you.

-- 
Norikatsu Shigemura <nork@FreeBSD.org>

--Multipart=_Sun__12_Sep_2010_19_05_37_+0900_a8svMvsOO8prOeQU
Content-Type: text/plain;
 name="dmesg.txt"
Content-Disposition: attachment;
 filename="dmesg.txt"
Content-Transfer-Encoding: 7bit

ACPI set debug layer 'ACPI_ALL_DRIVERS ACPI_DB_INFO' level 'ACPI_LV_INFO'
Copyright (c) 1992-2010 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 9.0-CURRENT #3: Sun Sep 12 18:52:55 JST 2010
    nork@pelsia.ninth-nine.com:/usr/obj/usr/src/sys/PELSIA amd64
Table 'FACP' at 0xda9aea98
Table 'APIC' at 0xda9aef18
Table 'MCFG' at 0xda9b0f18
Table 'HPET' at 0xda9b0e98
Table 'ASF!' at 0xda9af918
Table 'SLIC' at 0xda98ae18
Table 'SSDT' at 0xda9a9018
Table 'SSDT' at 0xda9a8c18
Table 'SSDT' at 0xda9a7c98
Table 'DMAR' at 0xda9a8f18
Table 'TCPA' at 0xda9b0e18
Table 'SSDT' at 0xda973a98
ACPI: No SRAT table found
Preloaded elf kernel "/boot/kernel/kernel" at 0xffffffff80be1000.
Preloaded elf obj module "/boot/kernel/zfs.ko" at 0xffffffff80be13b0.
Preloaded elf obj module "/boot/kernel/opensolaris.ko" at 0xffffffff80be1a58.
Preloaded elf obj module "/boot/kernel/krpc.ko" at 0xffffffff80be2088.
Preloaded elf obj module "/boot/kernel/if_iwn.ko" at 0xffffffff80be26b0.
Preloaded /boot/zfs/zpool.cache "/boot/zfs/zpool.cache" at 0xffffffff80be2c58.
Preloaded elf obj module "/boot/kernel/acpi_panasonic.ko" at 0xffffffff80be2cb8.
Calibrating TSC clock ... TSC clock: 1197032730 Hz
CPU: Intel(R) Core(TM) i7 CPU       U 640  @ 1.20GHz (1197.03-MHz K8-class CPU)
  Origin = "GenuineIntel"  Id = 0x20652  Family = 6  Model = 25  Stepping = 2
  Features=0xbfebfbff<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>
  Features2=0x298e3ff<SSE3,PCLMULQDQ,DTES64,MON,DS_CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,SSE4.1,SSE4.2,POPCNT,AESNI>
  AMD Features=0x28100800<SYSCALL,NX,RDTSCP,LM>
  AMD Features2=0x1<LAHF>
  TSC: P-state invariant
real memory  = 4303355904 (4104 MB)
Physical memory chunk(s):
0x0000000000001000 - 0x0000000000097fff, 618496 bytes (151 pages)
0x0000000000c12000 - 0x00000000d254ffff, 3516129280 bytes (858430 pages)
0x00000000da969000 - 0x00000000da96dfff, 20480 bytes (5 pages)
0x00000000daa04000 - 0x00000000db3fffff, 10469376 bytes (2556 pages)
0x0000000100000000 - 0x0000000117feffff, 402587648 bytes (98288 pages)
avail memory = 3907776512 (3726 MB)
Event timer "LAPIC" frequency 0 Hz quality 600
ACPI APIC Table: <MATBIO CFR9-1  >
INTR: Adding local APIC 1 as a target
INTR: Adding local APIC 4 as a target
INTR: Adding local APIC 5 as a target
FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs
FreeBSD/SMP: 1 package(s) x 2 core(s) x 2 SMT threads
 cpu0 (BSP): APIC ID:  0
 cpu1 (AP): APIC ID:  1
 cpu2 (AP): APIC ID:  4
 cpu3 (AP): APIC ID:  5
APIC: CPU 0 has ACPI ID 1
APIC: CPU 1 has ACPI ID 3
APIC: CPU 2 has ACPI ID 2
APIC: CPU 3 has ACPI ID 4
lapic0: CMCI unmasked
x86bios:  IVT 0x000000-0x0004ff at 0xffffff0000000000
x86bios: SSEG 0x001000-0x001fff at 0xffffff8000023000
x86bios: EBDA 0x09b000-0x09ffff at 0xffffff000009b000
x86bios:  ROM 0x0a0000-0x0fefff at 0xffffff00000a0000
ULE: setup cpu 0
ULE: setup cpu 1
ULE: setup cpu 2
ULE: setup cpu 3
ACPI: RSDP 0xf0410 00024 (v02 MATBIO)
ACPI: XSDT 0xda9afe18 00084 (v01 MATBIO CFR9-1   06222004 MSFT 00010013)
ACPI: FACP 0xda9aea98 000F4 (v04 MATBIO CFR9-1   06222004 MSFT 00010013)
ACPI Warning: 32/64X FACS address mismatch in FADT - 0xDA9C1F40/0x00000000DA9D5D40, using 32 (20100806/tbfadt-586)
ACPI: DSDT 0xda957018 119B4 (v01 MATBIO CFR9-1   00000000 INTL 20061109)
ACPI: FACS 0xda9c1f40 00040
ACPI: APIC 0xda9aef18 0008C (v02 MATBIO CFR9-1   06222004 MSFT 00010013)
ACPI: MCFG 0xda9b0f18 0003C (v01 MATBIO CFR9-1   06222004 MSFT 00000097)
ACPI: HPET 0xda9b0e98 00038 (v01 MATBIO CFR9-1   06222004 AMI. 00000003)
ACPI: ASF! 0xda9af918 00063 (v32 INTEL       HCG 00000001 TFSM 000F4240)
ACPI: SLIC 0xda98ae18 00176 (v01 MATBIO CFR9-1   06222004 AMI  00010013)
ACPI: SSDT 0xda9a9018 009F1 (v01  PmRef    CpuPm 00003000 INTL 20061109)
ACPI: SSDT 0xda9a8c18 00259 (v01  PmRef  Cpu0Tst 00003000 INTL 20061109)
ACPI: SSDT 0xda9a7c98 0020F (v01  PmRef    ApTst 00003000 INTL 20061109)
ACPI: DMAR 0xda9a8f18 000B8 (v01 INTEL  CP_DALE  00000001 INTL 00000001)
ACPI: TCPA 0xda9b0e18 00032 (v02 MATBIO CFR9-1   00000001 MSFT 01000013)
ACPI: SSDT 0xda973a98 002EF (v01 SataRe SataTabl 00001000 INTL 20061109)
MADT: Found IO APIC ID 2, Interrupt 0 at 0xfec00000
ioapic0: Routing external 8259A's -> intpin 0
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
ioapic0 <Version 2.0> irqs 0-23 on motherboard
cpu0 BSP:
     ID: 0x00000000   VER: 0x01060015 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00000200 err: 0x000000f0 pmc: 0x00010400
   cmci: 0x000000f2
snd_unit_init() u=0x00ff8000 [512] d=0x00007c00 [32] c=0x000003ff [1024]
feeder_register: snd_unit=-1 snd_maxautovchans=16 latency=5 feeder_rate_min=1 feeder_rate_max=2016000 feeder_rate_round=25
wlan: <802.11 Link Layer>
random: <entropy source, Software, Yarrow>
cpuctl: access to MSR registers/cpuid info.
VESA: INT 0x10 vector 0xc000:0x0014
VESA: information block
0000   56 45 53 41 00 03 00 01 00 02 01 00 00 00 40 00
0010   00 02 ff 01 00 01 3e 01 00 02 50 01 00 02 7c 01
0020   00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00
0030   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
0040   60 01 61 01 62 01 63 01 64 01 65 01 66 01 67 01
0050   68 01 69 01 6a 01 6b 01 6c 01 6d 01 6e 01 6f 01
0060   70 01 71 01 3c 01 4d 01 5c 01 3a 01 4b 01 5a 01
0070   07 01 1a 01 1b 01 05 01 17 01 18 01 12 01 14 01
0080   15 01 01 01 03 01 11 01 ff ff 00 00 00 00 00 00
0090   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00a0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00b0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00c0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00d0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00e0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00f0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
0100   49 6e 74 65 6c 28 52 29 49 72 6f 6e 6c 61 6b 65
0110   20 4d 6f 62 69 6c 65 20 47 72 61 70 68 69 63 73
0120   20 43 68 69 70 73 65 74 20 41 63 63 65 6c 65 72
0130   61 74 65 64 20 56 47 41 20 42 49 4f 53 00 49 6e
0140   74 65 6c 20 43 6f 72 70 6f 72 61 74 69 6f 6e 00
0150   49 6e 74 65 6c 28 52 29 49 72 6f 6e 6c 61 6b 65
0160   20 4d 6f 62 69 6c 65 20 47 72 61 70 68 69 63 73
0170   20 43 6f 6e 74 72 6f 6c 6c 65 72 00 48 61 72 64
0180   77 61 72 65 20 56 65 72 73 69 6f 6e 20 30 2e 30
0190   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
01a0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
01b0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
01c0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
01d0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
01e0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
01f0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
VESA: 9 mode(s) found
VESA: v3.0, 32704k memory, flags:0x1, mode table:0xffffff8000079040 (2000040)
VESA: Intel(R)Ironlake Mobile Graphics Chipset Accelerated VGA BIOS
VESA: Intel Corporation Intel(R)Ironlake Mobile Graphics Controller Hardware Version 0.0
io: <I/O>
kbd: new array size 4
kbd1 at kbdmux0
mem: <memory>
crypto: <crypto core>
null: <null device, zero device>
smbios0: <System Management BIOS> at iomem 0xf0440-0xf045e on motherboard
smbios0: Version: 2.6, BCD Revision: 2.6
aesni0: <AES-CBC> on motherboard
crypto: assign aesni0 driver id 0, flags 16777216
crypto: aesni0 registers alg 11 flags 0 maxoplen 0
cryptosoft0: <software crypto> on motherboard
crypto: assign cryptosoft0 driver id 1, flags 100663296
crypto: cryptosoft0 registers alg 1 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 2 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 3 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 4 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 5 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 16 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 6 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 7 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 18 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 19 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 20 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 8 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 15 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 9 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 10 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 13 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 14 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 11 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 21 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 17 flags 0 maxoplen 0
acpi0: <MATBIO CFR9-1> on motherboard
PCIe: Memory Mapped configuration base @ 0xf8000000
ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 0 vector 48
acpi0: [MPSAFE]
acpi0: [ITHREAD]
ACPI Error (dswload-0772): [DD02] Namespace lookup failure, AE_NOT_FOUND
ACPI Exception: AE_NOT_FOUND, During name lookup/catalog (20100806/psloop-326)
ACPI Error (psparse-0633): Method parse/execution failed [\\] (Node 0xffffffff808126a0), AE_NOT_FOUND
ACPI Error (dswload-0772): [EHC1] Namespace lookup failure, AE_NOT_FOUND
ACPI Exception: AE_NOT_FOUND, During name lookup/catalog (20100806/psloop-326)
ACPI Error (psparse-0633): Method parse/execution failed [\\] (Node 0xffffffff808126a0), AE_NOT_FOUND
ACPI Error (dswload-0772): [EHC1] Namespace lookup failure, AE_NOT_FOUND
ACPI Exception: AE_NOT_FOUND, During name lookup/catalog (20100806/psloop-326)
ACPI Error (psparse-0633): Method parse/execution failed [\\] (Node 0xffffffff808126a0), AE_NOT_FOUND
ACPI: Executed 5 blocks of module-level executable AML code
AcpiOsDerivePciId: \\_SB_.PCI0.SBUS.SMPB -> bus 0 dev 31 func 3
acpi0: Power Button (fixed)
AcpiOsDerivePciId: \\_SB_.CPBG.IMCH.PBUS -> bus 63 dev 0 func 1
AcpiOsDerivePciId: \\_SB_.PCI0.HBUS -> bus 0 dev 0 func 0
AcpiOsDerivePciId: \\_SB_.PCI0.LPCB.LPC0 -> bus 0 dev 31 func 0
AcpiOsDerivePciId: \\_SB_.PCI0.LPCB.LPC1 -> bus 0 dev 31 func 0
acpi0: reservation of e0000, 20000 (3) failed
ACPI timer: 0/18 0/17 0/18 0/18 0/18 0/17 0/15 0/15 0/16 0/16 -> 0
Timecounter "ACPI-safe" frequency 3579545 Hz quality 850
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0
cpu0: <ACPI CPU> on acpi0
PROCESSOR-0311 [230584] cpu_attach            : acpi_cpu0: P_BLK at 0x410/6
ACPI: SSDT 0xda9adc18 002AA (v01  PmRef  Cpu0Ist 00003000 INTL 20061109)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0 002AA (v01  PmRef  Cpu0Ist 00003000 INTL 20061109)
ACPI: SSDT 0xda9ab618 005CD (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0 005CD (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
PROCESSOR-0695 [241753] cpu_cx_cst            : acpi_cpu0: C2[1] not available.
PROCESSOR-0724 [241753] cpu_cx_cst            : acpi_cpu0: Got C3 - 245 latency
cpu1: <ACPI CPU> on acpi0
PROCESSOR-0311 [241991] cpu_attach            : acpi_cpu1: P_BLK at 0x410/6
ACPI: SSDT 0xda9aca98 00303 (v01  PmRef    ApIst 00003000 INTL 20061109)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0 00303 (v01  PmRef    ApIst 00003000 INTL 20061109)
ACPI: SSDT 0xda9aad98 00119 (v01  PmRef    ApCst 00003000 INTL 20061109)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0 00119 (v01  PmRef    ApCst 00003000 INTL 20061109)
PROCESSOR-0695 [254000] cpu_cx_cst            : acpi_cpu1: C2[1] not available.
PROCESSOR-0724 [254000] cpu_cx_cst            : acpi_cpu1: Got C3 - 245 latency
cpu2: <ACPI CPU> on acpi0
PROCESSOR-0311 [254238] cpu_attach            : acpi_cpu2: P_BLK at 0x410/6
PROCESSOR-0695 [255657] cpu_cx_cst            : acpi_cpu2: C2[1] not available.
PROCESSOR-0724 [255657] cpu_cx_cst            : acpi_cpu2: Got C3 - 245 latency
cpu3: <ACPI CPU> on acpi0
PROCESSOR-0311 [255895] cpu_attach            : acpi_cpu3: P_BLK at 0x410/6
PROCESSOR-0695 [257314] cpu_cx_cst            : acpi_cpu3: C2[1] not available.
PROCESSOR-0724 [257314] cpu_cx_cst            : acpi_cpu3: Got C3 - 245 latency
acpi_ec0: <Embedded Controller: GPE 0x17> port 0x62,0x66 on acpi0
pci_link0:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  1 3 4 5 6 7 10 12 14 15
  Validation          0  255   N     0  1 3 4 5 6 7 10 12 14 15
  After Disable       0  255   N     0  1 3 4 5 6 7 10 12 14 15
pci_link1:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  1 3 4 5 6 7 11 12 14 15
  Validation          0  255   N     0  1 3 4 5 6 7 11 12 14 15
  After Disable       0  255   N     0  1 3 4 5 6 7 11 12 14 15
pci_link2:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0    4   N     0  1 3 4 5 6 7 10 12 14 15
  Validation          0    4   N     0  1 3 4 5 6 7 10 12 14 15
  After Disable       0  255   N     0  1 3 4 5 6 7 10 12 14 15
pci_link3:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   10   N     0  1 3 4 5 6 7 11 12 14 15
  Validation          0  255   N     0  1 3 4 5 6 7 11 12 14 15
  After Disable       0  255   N     0  1 3 4 5 6 7 11 12 14 15
pci_link4:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0    5   N     0  1 3 4 5 6 7 10 12 14 15
  Validation          0    5   N     0  1 3 4 5 6 7 10 12 14 15
  After Disable       0  255   N     0  1 3 4 5 6 7 10 12 14 15
pci_link5:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  1 3 4 5 6 7 11 12 14 15
  Validation          0  255   N     0  1 3 4 5 6 7 11 12 14 15
  After Disable       0  255   N     0  1 3 4 5 6 7 11 12 14 15
pci_link6:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0    3   N     0  1 3 4 5 6 7 10 12 14 15
  Validation          0    3   N     0  1 3 4 5 6 7 10 12 14 15
  After Disable       0  255   N     0  1 3 4 5 6 7 10 12 14 15
pci_link7:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  1 3 4 5 6 7 11 12 14 15
  Validation          0   11   N     0  1 3 4 5 6 7 11 12 14 15
  After Disable       0  255   N     0  1 3 4 5 6 7 11 12 14 15
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
pci0: <ACPI PCI bus> on pcib0
pci0: domain=0, physical bus=0
found->	vendor=0x8086, dev=0x0044, revid=0x12
	domain=0, bus=0, slot=0, func=0
	class=06-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0006, statreg=0x2090, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found->	vendor=0x8086, dev=0x0046, revid=0x12
	domain=0, bus=0, slot=2, func=0
	class=03-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0007, statreg=0x0090, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=11
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message
	map[10]: type Memory, range 64, base 0xf0000000, size 22, enabled
	map[18]: type Prefetchable Memory, range 64, base 0xe0000000, size 28, enabled
	map[20]: type I/O Port, range 32, base 0xe0b0, size  3, enabled
pcib0: matched entry for 0.2.INTA
pcib0: slot 2 INTA hardwired to IRQ 16
found->	vendor=0x8086, dev=0x10ea, revid=0x06
	domain=0, bus=0, slot=25, func=0
	class=02-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=5
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 32, base 0xf4800000, size 17, enabled
	map[14]: type Memory, range 32, base 0xf4829000, size 12, enabled
	map[18]: type I/O Port, range 32, base 0xe040, size  5, enabled
pcib0: matched entry for 0.25.INTA
pcib0: slot 25 INTA hardwired to IRQ 20
found->	vendor=0x8086, dev=0x3b3c, revid=0x06
	domain=0, bus=0, slot=26, func=0
	class=0c-03-20, hdrtype=0x00, mfdev=0
	cmdreg=0x0006, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=11
	powerspec 2  supports D0 D3  current D0
	map[10]: type Memory, range 32, base 0xf4828000, size 10, enabled
pcib0: matched entry for 0.26.INTA
pcib0: slot 26 INTA hardwired to IRQ 16
found->	vendor=0x8086, dev=0x3b56, revid=0x06
	domain=0, bus=0, slot=27, func=0
	class=04-03-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0006, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=3
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 64, base 0xf4820000, size 14, enabled
pcib0: matched entry for 0.27.INTA
pcib0: slot 27 INTA hardwired to IRQ 22
found->	vendor=0x8086, dev=0x3b42, revid=0x06
	domain=0, bus=0, slot=28, func=0
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x10 (4000 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=11
	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=0x8086, dev=0x3b46, revid=0x06
	domain=0, bus=0, slot=28, func=2
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x10 (4000 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=4
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message
pcib0: matched entry for 0.28.INTC
pcib0: slot 28 INTC hardwired to IRQ 18
found->	vendor=0x8086, dev=0x3b48, revid=0x06
	domain=0, bus=0, slot=28, func=3
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x10 (4000 ns), maxlat=0x00 (0 ns)
	intpin=d, irq=10
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message
pcib0: matched entry for 0.28.INTD
pcib0: slot 28 INTD hardwired to IRQ 19
found->	vendor=0x8086, dev=0x3b34, revid=0x06
	domain=0, bus=0, slot=29, func=0
	class=0c-03-20, hdrtype=0x00, mfdev=0
	cmdreg=0x0006, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=11
	powerspec 2  supports D0 D3  current D0
	map[10]: type Memory, range 32, base 0xf4827000, size 10, enabled
pcib0: matched entry for 0.29.INTA
pcib0: slot 29 INTA hardwired to IRQ 23
found->	vendor=0x8086, dev=0x2448, revid=0xa6
	domain=0, bus=0, slot=30, func=0
	class=06-04-01, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x10 (4000 ns), maxlat=0x00 (0 ns)
found->	vendor=0x8086, dev=0x3b07, revid=0x06
	domain=0, bus=0, slot=31, func=0
	class=06-01-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0007, statreg=0x0210, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found->	vendor=0x8086, dev=0x3b2f, revid=0x06
	domain=0, bus=0, slot=31, func=2
	class=01-06-01, hdrtype=0x00, mfdev=0
	cmdreg=0x0007, statreg=0x02b0, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=10
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message
	map[10]: type I/O Port, range 32, base 0xe090, size  3, enabled
	map[14]: type I/O Port, range 32, base 0xe080, size  2, enabled
	map[18]: type I/O Port, range 32, base 0xe070, size  3, enabled
	map[1c]: type I/O Port, range 32, base 0xe060, size  2, enabled
	map[20]: type I/O Port, range 32, base 0xe020, size  5, enabled
	map[24]: type Memory, range 32, base 0xf4826000, size 11, enabled
pcib0: matched entry for 0.31.INTB
pcib0: slot 31 INTB hardwired to IRQ 19
found->	vendor=0x8086, dev=0x3b30, revid=0x06
	domain=0, bus=0, slot=31, func=3
	class=0c-05-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0003, statreg=0x0280, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=4
	map[10]: type Memory, range 64, base 0xf4825000, size  8, enabled
	map[20]: type I/O Port, range 32, base 0xe000, size  5, enabled
pcib0: matched entry for 0.31.INTC
pcib0: slot 31 INTC hardwired to IRQ 18
found->	vendor=0x8086, dev=0x3b32, revid=0x06
	domain=0, bus=0, slot=31, func=6
	class=11-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0006, statreg=0x0010, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=4
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message
	map[10]: type Memory, range 64, base 0xf4824000, size 12, enabled
pcib0: matched entry for 0.31.INTC
pcib0: slot 31 INTC hardwired to IRQ 18
vgapci0: <VGA-compatible display> port 0xe0b0-0xe0b7 mem 0xf0000000-0xf03fffff,0xe0000000-0xefffffff irq 16 at device 2.0 on pci0
agp0: <Intel Ironlake (M) SVGA controller> on vgapci0
agp0: aperture size is 256M, detected 32764k stolen memory
em0: <Intel(R) PRO/1000 Network Connection 7.0.6> port 0xe040-0xe05f mem 0xf4800000-0xf481ffff,0xf4829000-0xf4829fff irq 20 at device 25.0 on pci0
em0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 256 to local APIC 0 vector 49
em0: using IRQ 256 for MSI
em0: Using an MSI interrupt
em0: [FILTER]
em0: bpf attached
em0: Ethernet address: 00:1b:d3:89:b8:6e
ehci0: <Intel PCH USB 2.0 controller USB-B> mem 0xf4828000-0xf48283ff irq 16 at device 26.0 on pci0
ioapic0: routing intpin 16 (PCI IRQ 16) to lapic 0 vector 50
ehci0: [MPSAFE]
ehci0: [ITHREAD]
usbus0: EHCI version 1.0
usbus0: <Intel PCH USB 2.0 controller USB-B> on ehci0
hdac0: <Intel PCH High Definition Audio Controller> mem 0xf4820000-0xf4823fff irq 22 at device 27.0 on pci0
hdac0: HDA Driver Revision: 20100226_0142
hdac0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 257 to local APIC 0 vector 51
hdac0: using IRQ 257 for MSI
hdac0: [MPSAFE]
hdac0: [ITHREAD]
hdac0: Caps: OSS 4, ISS 4, BSS 0, NSDO 1, 64bit, CORB 256, RIRB 256
pcib1: <ACPI PCI-PCI bridge> irq 16 at device 28.0 on pci0
pcib1:   domain            0
pcib1:   secondary bus     1
pcib1:   subordinate bus   1
pcib1:   I/O decode        0xd000-0xdfff
pcib1:   memory decode     0xf4600000-0xf47fffff
pcib1:   no prefetched decode
pci1: <ACPI PCI bus> on pcib1
pci1: domain=0, physical bus=1
pcib2: <ACPI PCI-PCI bridge> irq 18 at device 28.2 on pci0
pcib2:   domain            0
pcib2:   secondary bus     2
pcib2:   subordinate bus   2
pcib2:   I/O decode        0xc000-0xcfff
pcib2:   memory decode     0xf4400000-0xf45fffff
pcib2:   no prefetched decode
pci2: <ACPI PCI bus> on pcib2
pci2: domain=0, physical bus=2
found->	vendor=0x8086, dev=0x422c, revid=0x35
	domain=0, bus=2, slot=0, func=0
	class=02-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0006, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=4
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 64, base 0xf4400000, size 13, enabled
pcib2: requested memory range 0xf4400000-0xf4401fff: good
pcib2: matched entry for 2.0.INTA
pcib2: slot 0 INTA hardwired to IRQ 18
iwn0: <Intel(R) PRO/Wireless 6000> mem 0xf4400000-0xf4401fff irq 18 at device 0.0 on pci2
iwn0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 258 to local APIC 0 vector 52
iwn0: using IRQ 258 for MSI
iwn0: MIMO 2T2R, MoW, address 00:23:14:21:69:00
iwn0: [MPSAFE]
iwn0: [ITHREAD]
iwn0: 11a rates: 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
iwn0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
iwn0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
pcib3: <ACPI PCI-PCI bridge> irq 19 at device 28.3 on pci0
pcib3:   domain            0
pcib3:   secondary bus     3
pcib3:   subordinate bus   11
pcib3:   I/O decode        0xa000-0xbfff
pcib3:   memory decode     0xf0400000-0xf43fffff
pcib3:   no prefetched decode
pci3: <ACPI PCI bus> on pcib3
pci3: domain=0, physical bus=3
found->	vendor=0x1180, dev=0xe476, revid=0x00
	domain=0, bus=3, slot=0, func=0
	class=06-07-00, hdrtype=0x02, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x04 (1000 ns)
	intpin=a, irq=10
	powerspec 3  supports D0 D1 D2 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 32, base 0xf2c01000, size 12, enabled
pcib3: requested memory range 0xf2c01000-0xf2c01fff: good
pcib3: matched entry for 3.0.INTA
pcib3: slot 0 INTA hardwired to IRQ 19
found->	vendor=0x1180, dev=0xe822, revid=0x02
	domain=0, bus=3, slot=0, func=1
	class=08-05-01, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=11
	powerspec 3  supports D0 D1 D2 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 32, base 0xf2c00000, size  8, enabled
pcib3: requested memory range 0xf2c00000-0xf2c000ff: good
pcib3: matched entry for 3.0.INTB
pcib3: slot 0 INTB hardwired to IRQ 16
cbb0: <PCI-CardBus Bridge> mem 0xf2c01000-0xf2c01fff irq 19 at device 0.0 on pci3
cardbus0: <CardBus bus> on cbb0
pccard0: <16-bit PCCard bus> on cbb0
ioapic0: routing intpin 19 (PCI IRQ 19) to lapic 0 vector 53
cbb0: [MPSAFE]
cbb0: [FILTER]
cbb0: PCI Configuration space:
  0x00: 0xe4761180 0x00100007 0x06070000 0x00820000 
  0x10: 0xf2c01000 0x020000a0 0x20040403 0xfffff000 
  0x20: 0x00000000 0xfffff000 0x00000000 0x0000fffc 
  0x30: 0x00000000 0x0000fffc 0x00000000 0x04000113 
  0x40: 0x833810f7 0x00000001 0x00000000 0x00000000 
  0x50: 0x00000000 0x00000000 0x00000000 0x00000000 
  0x60: 0x00000000 0x00000000 0x00000000 0x00000000 
  0x70: 0x00000000 0x00000000 0x00000000 0x00000000 
  0x80: 0x00710010 0x0590ffc0 0x000b2810 0x01076c11 
  0x90: 0x10110142 0x00000000 0xfe038001 0x48004000 
  0xa0: 0x00809805 0x00000000 0x00000000 0x00000000 
  0xb0: 0x30040001 0x00000000 0x08c608c6 0x00000000 
  0xc0: 0x00003000 0x00000001 0x5e000000 0x00000000 
  0xd0: 0x00000000 0x00000000 0x00000000 0x90000000 
  0xe0: 0x00020000 0x00000000 0x00000000 0x833810f7 
  0xf0: 0x00000000 0x00000000 0x00000000 0x00000000 
sdhci0: <Generic SD HCI> mem 0xf2c00000-0xf2c000ff irq 16 at device 0.1 on pci3
sdhci0-slot0: 50MHz HS 4bits 3.3V DMA
sdhci0-slot0: ============== REGISTER DUMP ==============
sdhci0-slot0: Sys addr: 0x00000000 | Version:  0x00000400
sdhci0-slot0: Blk size: 0x00000000 | Blk cnt:  0x00000000
sdhci0-slot0: Argument: 0x00000000 | Trn mode: 0x00000000
sdhci0-slot0: Present:  0x01f20000 | Host ctl: 0x00000000
sdhci0-slot0: Power:    0x00000000 | Blk gap:  0x00000000
sdhci0-slot0: Wake-up:  0x00000000 | Clock:    0x00000000
sdhci0-slot0: Timeout:  0x00000000 | Int stat: 0x00000000
sdhci0-slot0: Int enab: 0x01ff00fb | Sig enab: 0x01ff00fb
sdhci0-slot0: AC12 err: 0x00000000 | Slot int: 0x00000000
sdhci0-slot0: Caps:     0x01e032b2 | Max curr: 0x00000040
sdhci0-slot0: ===========================================
sdhci0: 1 slot(s) allocated
sdhci0: [MPSAFE]
sdhci0: [ITHREAD]
ehci1: <Intel PCH USB 2.0 controller USB-A> mem 0xf4827000-0xf48273ff irq 23 at device 29.0 on pci0
ioapic0: routing intpin 23 (PCI IRQ 23) to lapic 0 vector 54
ehci1: [MPSAFE]
ehci1: [ITHREAD]
usbus1: EHCI version 1.0
usbus1: <Intel PCH USB 2.0 controller USB-A> on ehci1
pcib4: <ACPI PCI-PCI bridge> at device 30.0 on pci0
pcib4:   domain            0
pcib4:   secondary bus     12
pcib4:   subordinate bus   12
pcib4:   I/O decode        0xf000-0xfff
pcib4:   no prefetched decode
pcib4:   Subtractively decoded bridge.
pci12: <ACPI PCI bus> on pcib4
pci12: domain=0, physical bus=12
isab0: <PCI-ISA bridge> at device 31.0 on pci0
isa0: <ISA bus> on isab0
ahci0: <Intel 5 Series/3400 Series AHCI SATA controller> port 0xe090-0xe097,0xe080-0xe083,0xe070-0xe077,0xe060-0xe063,0xe020-0xe03f mem 0xf4826000-0xf48267ff irq 19 at device 31.2 on pci0
ahci0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 259 to local APIC 0 vector 55
ahci0: using IRQ 259 for MSI
ahci0: [MPSAFE]
ahci0: [ITHREAD]
ahci0: AHCI v1.30 with 6 3Gbps ports, Port Multiplier not supported
ahci0: Caps: 64bit NCQ SNTF SS ALP AL CLO 3Gbps PMD SSC PSC 32cmd EM 6ports
ahci0: Caps2: APST
ahci0: EM Caps: ALHD XMT SMB LED
ahcich0: <AHCI channel> at channel 0 on ahci0
ahcich0: [MPSAFE]
ahcich0: [ITHREAD]
ahcich0: Caps:
ichsmb0: <Intel PCH SMBus controller> port 0xe000-0xe01f mem 0xf4825000-0xf48250ff irq 18 at device 31.3 on pci0
ioapic0: routing intpin 18 (PCI IRQ 18) to lapic 0 vector 56
ichsmb0: [MPSAFE]
ichsmb0: [ITHREAD]
smbus0: <System Management Bus> on ichsmb0
smb0: <SMBus generic I/O> on smbus0
pci0: <dasp> at device 31.6 (no driver attached)
pcib5: <ACPI Host-PCI bridge> on acpi0
pcib5: could not get PCI interrupt routing table for \\_SB_.CPBG - AE_NOT_FOUND
pci63: <ACPI PCI bus> on pcib5
pci63: domain=0, physical bus=63
found->	vendor=0x8086, dev=0x2c62, revid=0x02
	domain=0, bus=63, slot=0, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found->	vendor=0x8086, dev=0x2d01, revid=0x02
	domain=0, bus=63, slot=0, func=1
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found->	vendor=0x8086, dev=0x2d10, revid=0x02
	domain=0, bus=63, slot=2, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found->	vendor=0x8086, dev=0x2d11, revid=0x02
	domain=0, bus=63, slot=2, func=1
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found->	vendor=0x8086, dev=0x2d12, revid=0x02
	domain=0, bus=63, slot=2, func=2
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found->	vendor=0x8086, dev=0x2d13, revid=0x02
	domain=0, bus=63, slot=2, func=3
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
acpi_panasonic0: <Panasonic Notebook Hotkeys> on acpi0
acpi_acad0: <AC Adapter> on acpi0
battery0: <ACPI Control Method Battery> on acpi0
acpi_lid0: <Control Method Lid Switch> on acpi0
acpi_button0: <Power Button> on acpi0
acpi_tz0: <Thermal Zone> on acpi0
acpi_tz1: <Thermal Zone> on acpi0
hpet0: <High Precision Event Timer> iomem 0xfed00000-0xfed003ff on acpi0
hpet0: vendor 0x8086, rev 0x1, 14318180Hz 64bit, 8 timers, legacy route
hpet0:  t0: irqs 0x00f00000 (0), MSI, 64bit, periodic
hpet0:  t1: irqs 0x00f00000 (0), MSI
hpet0:  t2: irqs 0x00f00800 (0), MSI
hpet0:  t3: irqs 0x00f01000 (0), MSI
hpet0:  t4: irqs 0x00000000 (0), MSI
hpet0:  t5: irqs 0x00000000 (0), MSI
hpet0:  t6: irqs 0x00000000 (0), MSI
hpet0:  t7: irqs 0x00000000 (0), MSI
Timecounter "HPET" frequency 14318180 Hz quality 900
msi: routing MSI-X IRQ 260 to local APIC 0 vector 57
hpet0: [MPSAFE]
hpet0: [FILTER]
msi: routing MSI-X IRQ 261 to local APIC 0 vector 58
hpet0: [MPSAFE]
hpet0: [FILTER]
msi: routing MSI-X IRQ 262 to local APIC 0 vector 59
hpet0: [MPSAFE]
hpet0: [FILTER]
msi: routing MSI-X IRQ 263 to local APIC 0 vector 60
hpet0: [MPSAFE]
hpet0: [FILTER]
msi: routing MSI-X IRQ 264 to local APIC 0 vector 61
hpet0: [MPSAFE]
hpet0: [FILTER]
msi: routing MSI-X IRQ 265 to local APIC 0 vector 62
hpet0: [MPSAFE]
hpet0: [FILTER]
msi: routing MSI-X IRQ 266 to local APIC 0 vector 63
hpet0: [MPSAFE]
hpet0: [FILTER]
msi: routing MSI-X IRQ 267 to local APIC 0 vector 64
hpet0: [MPSAFE]
hpet0: [FILTER]
Event timer "HPET" frequency 14318180 Hz quality 550
Event timer "HPET1" frequency 14318180 Hz quality 440
Event timer "HPET2" frequency 14318180 Hz quality 440
Event timer "HPET3" frequency 14318180 Hz quality 440
Event timer "HPET4" frequency 14318180 Hz quality 440
atrtc0: <AT realtime clock> port 0x70-0x77 irq 8 on acpi0
atrtc0: registered as a time-of-day clock (resolution 1000000us, adjustment 0.500000000s)
ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 0 vector 65
atrtc0: [MPSAFE]
atrtc0: [FILTER]
Event timer "RTC" frequency 32768 Hz quality 0
attimer0: <AT timer> port 0x40-0x43,0x50-0x53 irq 0 on acpi0
Timecounter "i8254" frequency 1193182 Hz quality 0
attimer0: [MPSAFE]
attimer0: [FILTER]
ioapic0: routing intpin 2 (ISA IRQ 0) to lapic 0 vector 66
Event timer "i8254" frequency 1193182 Hz quality 100
atkbdc0: <Keyboard controller (i8042)> port 0x60,0x64 irq 1 on acpi0
atkbd0: <AT Keyboard> irq 1 on atkbdc0
atkbd: the current kbd controller command byte 0065
atkbd: keyboard ID 0x41ab (2)
kbd0 at atkbd0
kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x3d0000
ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 0 vector 67
atkbd0: [GIANT-LOCKED]
atkbd0: [ITHREAD]
psm0: unable to allocate IRQ
psmcpnp0: <PS/2 mouse port> irq 12 on acpi0
psm0: current command byte:0065
psm0: <PS/2 Mouse> irq 12 on atkbdc0
ioapic0: routing intpin 12 (ISA IRQ 12) to lapic 0 vector 68
psm0: [GIANT-LOCKED]
psm0: [ITHREAD]
psm0: model Generic PS/2 mouse, device ID 0-00, 2 buttons
psm0: config:00000000, flags:00000008, packet size:3
psm0: syncmask:c0, syncbits:00
acpi0: wakeup code va 0xffffff8071a1a000 pa 0x4000
isab0: found ICH10 or equivalent chipset: Intel QM57 watchdog timer
isa_probe_children: disabling PnP devices
ichwd0: <Intel QM57 watchdog timer> on isa0
isab0: found ICH10 or equivalent chipset: Intel QM57 watchdog timer
ichwd0: Intel QM57 watchdog timer (ICH10 or equivalent)
ichwd0: timer disabled
atkbdc: atkbdc0 already exists; skipping it
atrtc: atrtc0 already exists; skipping it
attimer: attimer0 already exists; skipping it
sc: sc0 already exists; skipping it
isa_probe_children: probing non-PnP devices
sc0: <System console> at flags 0x100 on isa0
sc0: VGA <16 virtual consoles, flags=0x300>
sc0: fb0, kbd1, terminal emulator: scteken (teken terminal)
vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0
fdc0 failed to probe at port 0x3f0 irq 6 drq 2 on isa0
ppc0 failed to probe at irq 7 on isa0
uart0 failed to probe at port 0x3f8 irq 4 on isa0
uart1 failed to probe at port 0x2f8 irq 3 on isa0
isa_probe_children: probing PnP devices
coretemp0: <CPU On-Die Thermal Sensors> on cpu0
coretemp0: Tj(target) value 105 does not seem right.
coretemp0: Setting TjMax=100
est0: <Enhanced SpeedStep Frequency Control> on cpu0
p4tcc0: <CPU Frequency Thermal Control> on cpu0
coretemp1: <CPU On-Die Thermal Sensors> on cpu1
coretemp1: Tj(target) value 105 does not seem right.
coretemp1: Setting TjMax=100
est1: <Enhanced SpeedStep Frequency Control> on cpu1
p4tcc1: <CPU Frequency Thermal Control> on cpu1
coretemp2: <CPU On-Die Thermal Sensors> on cpu2
coretemp2: Tj(target) value 105 does not seem right.
coretemp2: Setting TjMax=100
est2: <Enhanced SpeedStep Frequency Control> on cpu2
p4tcc2: <CPU Frequency Thermal Control> on cpu2
coretemp3: <CPU On-Die Thermal Sensors> on cpu3
coretemp3: Tj(target) value 105 does not seem right.
coretemp3: Setting TjMax=100
est3: <Enhanced SpeedStep Frequency Control> on cpu3
p4tcc3: <CPU Frequency Thermal Control> on cpu3
Device configuration finished.
ZFS filesystem version 4
ZFS storage pool version 15
Timecounter "TSC" frequency 1197032730 Hz quality -100
lapic: Divisor 2, Frequency 66501806 Hz
Timecounters tick every 1.000 msec
crypto: <crypto device>
Linux ELF exec handler installed
IPsec: Initialized Security Association Processing.
lo0: bpf attached
hdac0: Probing codec #0...
hdac0: HDA Codec #0: Conexant (Unknown)
hdac0:  HDA Codec ID: 0x14f15068
hdac0:        Vendor: 0x14f1
hdac0:        Device: 0x5068
hdac0:      Revision: 0x03
hdac0:      Stepping: 0x02
hdac0: PCI Subvendor: 0x833810f7
hdac0: 	Found audio FG nid=1 startnode=16 endnode=38 total=22
hdac0: 
hdac0: Processing audio FG cad=0 nid=1...
hdac0: GPIO: 0x40000004 NumGPIO=4 NumGPO=0 NumGPI=0 GPIWake=0 GPIUnsol=1
hdac0:  nid 25 0x022110f0 as 15 seq  0    Headphones  Jack jack  1 loc  2 color   Black misc 0
hdac0:  nid 26 0x02a110f0 as 15 seq  0           Mic  Jack jack  1 loc  2 color   Black misc 0
hdac0:  nid 27 0x40f001f0 as 15 seq  0         Other  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 28 0x40f001f0 as 15 seq  0         Other  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 29 0x40f001f0 as 15 seq  0         Other  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 30 0x40f001f0 as 15 seq  0         Other  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 31 0x901701f0 as 15 seq  0       Speaker Fixed jack  7 loc 16 color Unknown misc 1
hdac0:  nid 32 0x40f001f0 as 15 seq  0         Other  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 34 0x40f001f0 as 15 seq  0         Other  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 35 0x40f001f0 as 15 seq  0         Other  None jack  0 loc  0 color Unknown misc 1
hdac0: Patched pins configuration:
hdac0:  nid 25 0x022110f0 as 15 seq  0    Headphones  Jack jack  1 loc  2 color   Black misc 0
hdac0:  nid 26 0x02a110f0 as 15 seq  0           Mic  Jack jack  1 loc  2 color   Black misc 0
hdac0:  nid 27 0x40f001f0 as 15 seq  0         Other  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 28 0x40f001f0 as 15 seq  0         Other  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 29 0x40f001f0 as 15 seq  0         Other  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 30 0x40f001f0 as 15 seq  0         Other  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 31 0x901701f0 as 15 seq  0       Speaker Fixed jack  7 loc 16 color Unknown misc 1
hdac0:  nid 32 0x40f001f0 as 15 seq  0         Other  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 34 0x40f001f0 as 15 seq  0         Other  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 35 0x40f001f0 as 15 seq  0         Other  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0: 3 associations found:
hdac0: Association 0 (15) out:
hdac0:  Pin nid=25 seq=0
hdac0: Association 1 (15) in:
hdac0:  Pin nid=26 seq=0
hdac0: Association 2 (15) out:
hdac0:  Pin nid=31 seq=0
hdac0: Tracing association 0 (15)
hdac0:  Pin 25 traced to DAC 16
hdac0: Association 0 (15) trace succeeded
hdac0: Tracing association 1 (15)
hdac0:  Pin 26 traced to ADC 20
hdac0: Association 1 (15) trace succeeded
hdac0: Tracing association 2 (15)
hdac0:  Pin 31 traced to DAC 17
hdac0: Association 2 (15) trace succeeded
hdac0: Tracing input monitor
hdac0: Tracing other input monitors
hdac0:  Tracing nid 26 to out
hdac0: Tracing beeper
hdac0: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref
hdac0: 
hdac0: +-------------------+
hdac0: | DUMPING HDA NODES |
hdac0: +-------------------+
hdac0: 
hdac0: Default Parameter
hdac0: -----------------
hdac0:      Stream cap: 0x00000001
hdac0:                  PCM
hdac0:         PCM cap: 0x000e0160
hdac0:                  16 20 24 bits, 44 48 96 KHz
hdac0:          IN amp: 0x00000000
hdac0:         OUT amp: 0x00000000
hdac0: 
hdac0:             nid: 16
hdac0:            Name: audio output
hdac0:      Widget cap: 0x00000c1d
hdac0:                  LRSWAP PWR STEREO
hdac0:     Association: 0 (0x00000001)
hdac0:             OSS: pcm (pcm)
hdac0:      Stream cap: 0x00000001
hdac0:                  PCM
hdac0:         PCM cap: 0x000e0560
hdac0:                  16 20 24 bits, 44 48 96 192 KHz
hdac0:      Output amp: 0x80034a4a
hdac0:                  mute=1 step=74 size=3 offset=74
hdac0: 
hdac0:             nid: 17
hdac0:            Name: audio output
hdac0:      Widget cap: 0x00000c1d
hdac0:                  LRSWAP PWR STEREO
hdac0:     Association: 2 (0x00000001)
hdac0:             OSS: pcm (pcm)
hdac0:      Stream cap: 0x00000001
hdac0:                  PCM
hdac0:         PCM cap: 0x000e0560
hdac0:                  16 20 24 bits, 44 48 96 192 KHz
hdac0:      Output amp: 0x80034a4a
hdac0:                  mute=1 step=74 size=3 offset=74
hdac0: 
hdac0:             nid: 18 [DISABLED]
hdac0:            Name: audio output
hdac0:      Widget cap: 0x00000611
hdac0:                  PWR DIGITAL STEREO
hdac0:      Stream cap: 0x00000005
hdac0:                  AC3 PCM
hdac0:         PCM cap: 0x000e0160
hdac0:                  16 20 24 bits, 44 48 96 KHz
hdac0: 
hdac0:             nid: 19
hdac0:            Name: beep widget
hdac0:      Widget cap: 0x0070000c
hdac0:     Association: -2 (0x00000000)
hdac0:             OSS: speaker (speaker)
hdac0:      Output amp: 0x000f0707
hdac0:                  mute=0 step=7 size=15 offset=7
hdac0: 
hdac0:             nid: 20
hdac0:            Name: audio input
hdac0:      Widget cap: 0x00100d1b
hdac0:                  LRSWAP PWR STEREO
hdac0:     Association: 1 (0x00000001)
hdac0:      Stream cap: 0x00000001
hdac0:                  PCM
hdac0:         PCM cap: 0x000e0160
hdac0:                  16 20 24 bits, 44 48 96 KHz
hdac0:       Input amp: 0x8003504a
hdac0:                  mute=1 step=80 size=3 offset=74
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=23 [audio selector] (selected)
hdac0:           + <- nid=24 [audio selector]
hdac0:           + [DISABLED] <- nid=35 [pin: Other (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=36 [audio mixer] [DISABLED]
hdac0: 
hdac0:             nid: 21 [DISABLED]
hdac0:            Name: audio input
hdac0:      Widget cap: 0x00100d1b
hdac0:                  LRSWAP PWR STEREO
hdac0:      Stream cap: 0x00000001
hdac0:                  PCM
hdac0:         PCM cap: 0x000e0160
hdac0:                  16 20 24 bits, 44 48 96 KHz
hdac0:       Input amp: 0x8003504a
hdac0:                  mute=1 step=80 size=3 offset=74
hdac0:     connections: 4
hdac0:           |
hdac0:           + [DISABLED] <- nid=23 [audio selector] (selected)
hdac0:           + <- nid=24 [audio selector]
hdac0:           + [DISABLED] <- nid=35 [pin: Other (None)] [DISABLED]
hdac0:           + <- nid=36 [audio mixer] [DISABLED]
hdac0: 
hdac0:             nid: 22 [DISABLED]
hdac0:            Name: audio input
hdac0:      Widget cap: 0x00100d1b
hdac0:                  LRSWAP PWR STEREO
hdac0:      Stream cap: 0x00000001
hdac0:                  PCM
hdac0:         PCM cap: 0x000e0160
hdac0:                  16 20 24 bits, 44 48 96 KHz
hdac0:       Input amp: 0x8003504a
hdac0:                  mute=1 step=80 size=3 offset=74
hdac0:     connections: 4
hdac0:           |
hdac0:           + [DISABLED] <- nid=23 [audio selector] (selected)
hdac0:           + <- nid=24 [audio selector]
hdac0:           + [DISABLED] <- nid=35 [pin: Other (None)] [DISABLED]
hdac0:           + <- nid=36 [audio mixer] [DISABLED]
hdac0: 
hdac0:             nid: 23
hdac0:            Name: audio selector
hdac0:      Widget cap: 0x0030050d
hdac0:                  PWR STEREO
hdac0:     Association: 1 (0x00000001)
hdac0:             OSS: mic
hdac0:      Output amp: 0x00270400
hdac0:                  mute=0 step=4 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=26 [pin: Mic (Black Jack)] (selected)
hdac0:           + [DISABLED] <- nid=27 [pin: Other (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=29 [pin: Other (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=30 [pin: Other (None)] [DISABLED]
hdac0: 
hdac0:             nid: 24
hdac0:            Name: audio selector
hdac0:      Widget cap: 0x0030050d
hdac0:                  PWR STEREO
hdac0:     Association: 1 (0x00000001)
hdac0:             OSS: mic
hdac0:      Output amp: 0x00270400
hdac0:                  mute=0 step=4 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=26 [pin: Mic (Black Jack)] (selected)
hdac0:           + [DISABLED] <- nid=27 [pin: Other (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=29 [pin: Other (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=30 [pin: Other (None)] [DISABLED]
hdac0: 
hdac0:             nid: 25
hdac0:            Name: pin: Headphones (Black Jack)
hdac0:      Widget cap: 0x00400581
hdac0:                  PWR UNSOL STEREO
hdac0:     Association: 0 (0x00000001)
hdac0:         Pin cap: 0x0000001c
hdac0:                  PDC HP OUT
hdac0:      Pin config: 0x022110f0
hdac0:     Pin control: 0x000000c0 HP OUT
hdac0:     connections: 2
hdac0:           |
hdac0:           + <- nid=16 [audio output] (selected)
hdac0:           + [DISABLED] <- nid=17 [audio output]
hdac0: 
hdac0:             nid: 26
hdac0:            Name: pin: Mic (Black Jack)
hdac0:      Widget cap: 0x00400481
hdac0:                  PWR UNSOL STEREO
hdac0:     Association: 1 (0x00000001)
hdac0:             OSS: mic (mic)
hdac0:         Pin cap: 0x00001324
hdac0:                  PDC IN VREF[ 50 80 HIZ ]
hdac0:      Pin config: 0x02a110f0
hdac0:     Pin control: 0x00000024 IN VREFs
hdac0: 
hdac0:             nid: 27 [DISABLED]
hdac0:            Name: pin: Other (None)
hdac0:      Widget cap: 0x00400581
hdac0:                  PWR UNSOL STEREO
hdac0:         Pin cap: 0x00011334
hdac0:                  PDC OUT IN VREF[ 50 80 HIZ ] EAPD
hdac0:      Pin config: 0x40f001f0
hdac0:     Pin control: 0x00000000
hdac0:            EAPD: 0x00000002
hdac0:     connections: 2
hdac0:           |
hdac0:           + <- nid=16 [audio output] (selected)
hdac0:           + <- nid=17 [audio output]
hdac0: 
hdac0:             nid: 28 [DISABLED]
hdac0:            Name: pin: Other (None)
hdac0:      Widget cap: 0x00400581
hdac0:                  PWR UNSOL STEREO
hdac0:         Pin cap: 0x00000014
hdac0:                  PDC OUT
hdac0:      Pin config: 0x40f001f0
hdac0:     Pin control: 0x00000000
hdac0:     connections: 2
hdac0:           |
hdac0:           + <- nid=16 [audio output] (selected)
hdac0:           + <- nid=17 [audio output]
hdac0: 
hdac0:             nid: 29 [DISABLED]
hdac0:            Name: pin: Other (None)
hdac0:      Widget cap: 0x00400581
hdac0:                  PWR UNSOL STEREO
hdac0:         Pin cap: 0x00010034
hdac0:                  PDC OUT IN EAPD
hdac0:      Pin config: 0x40f001f0
hdac0:     Pin control: 0x00000000
hdac0:            EAPD: 0x00000002
hdac0:     connections: 2
hdac0:           |
hdac0:           + <- nid=16 [audio output] (selected)
hdac0:           + <- nid=17 [audio output]
hdac0: 
hdac0:             nid: 30 [DISABLED]
hdac0:            Name: pin: Other (None)
hdac0:      Widget cap: 0x00400481
hdac0:                  PWR UNSOL STEREO
hdac0:         Pin cap: 0x00000024
hdac0:                  PDC IN
hdac0:      Pin config: 0x40f001f0
hdac0:     Pin control: 0x00000000
hdac0: 
hdac0:             nid: 31
hdac0:            Name: pin: Speaker (Fixed)
hdac0:      Widget cap: 0x00400501
hdac0:                  PWR STEREO
hdac0:     Association: 2 (0x00000001)
hdac0:         Pin cap: 0x00000010
hdac0:                  OUT
hdac0:      Pin config: 0x901701f0
hdac0:     Pin control: 0x00000040 OUT
hdac0:     connections: 2
hdac0:           |
hdac0:           + [DISABLED] <- nid=16 [audio output]
hdac0:           + <- nid=17 [audio output] (selected)
hdac0: 
hdac0:             nid: 32 [DISABLED]
hdac0:            Name: pin: Other (None)
hdac0:      Widget cap: 0x00400781
hdac0:                  PWR DIGITAL UNSOL STEREO
hdac0:         Pin cap: 0x00000010
hdac0:                  OUT
hdac0:      Pin config: 0x40f001f0
hdac0:     Pin control: 0x00000000
hdac0:     connections: 1
hdac0:           |
hdac0:           + <- nid=18 [audio output] [DISABLED]
hdac0: 
hdac0:             nid: 33 [DISABLED]
hdac0:            Name: audio output
hdac0:      Widget cap: 0x00000611
hdac0:                  PWR DIGITAL STEREO
hdac0:      Stream cap: 0x00000005
hdac0:                  AC3 PCM
hdac0:         PCM cap: 0x000e0160
hdac0:                  16 20 24 bits, 44 48 96 KHz
hdac0: 
hdac0:             nid: 34 [DISABLED]
hdac0:            Name: pin: Other (None)
hdac0:      Widget cap: 0x00400781
hdac0:                  PWR DIGITAL UNSOL STEREO
hdac0:         Pin cap: 0x00000010
hdac0:                  OUT
hdac0:      Pin config: 0x40f001f0
hdac0:     Pin control: 0x00000000
hdac0:     connections: 1
hdac0:           |
hdac0:           + <- nid=33 [audio output] [DISABLED]
hdac0: 
hdac0:             nid: 35 [DISABLED]
hdac0:            Name: pin: Other (None)
hdac0:      Widget cap: 0x0040040b
hdac0:                  PWR STEREO
hdac0:         Pin cap: 0x00000020
hdac0:                  IN
hdac0:      Pin config: 0x40f001f0
hdac0:     Pin control: 0x00000000
hdac0:       Input amp: 0x002f0400
hdac0:                  mute=0 step=4 size=47 offset=0
hdac0: 
hdac0:             nid: 36 [DISABLED]
hdac0:            Name: audio mixer
hdac0:      Widget cap: 0x0020050b
hdac0:                  PWR STEREO
hdac0:       Input amp: 0x80034a4a
hdac0:                  mute=1 step=74 size=3 offset=74
hdac0:     connections: 2
hdac0:           |
hdac0:           + [DISABLED] <- nid=16 [audio output]
hdac0:           + [DISABLED] <- nid=17 [audio output]
hdac0: 
hdac0:             nid: 37 [DISABLED]
hdac0:            Name: vendor widget
hdac0:      Widget cap: 0x00f00000
hdac0: 
pcm0: <HDA Conexant (Unknown) PCM #0 Analog> at cad 0 nid 1 on hdac0
pcm0: +--------------------------------------+
pcm0: | DUMPING PCM Playback/Record Channels |
pcm0: +--------------------------------------+
pcm0: 
pcm0: Playback:
pcm0: 
pcm0:      Stream cap: 0x00000001
pcm0:                  PCM
pcm0:         PCM cap: 0x000e0560
pcm0:                  16 20 24 bits, 44 48 96 192 KHz
pcm0:             DAC: 16
pcm0: 
pcm0: Record:
pcm0: 
pcm0:      Stream cap: 0x00000001
pcm0:                  PCM
pcm0:         PCM cap: 0x000e0160
pcm0:                  16 20 24 bits, 44 48 96 KHz
pcm0:             ADC: 20
pcm0: 
pcm0: +-------------------------------+
pcm0: | DUMPING Playback/Record Paths |
pcm0: +-------------------------------+
pcm0: 
pcm0: Playback:
pcm0: 
pcm0:     nid=25 [pin: Headphones (Black Jack)]
pcm0:       |
pcm0:       + <- nid=16 [audio output] [src: pcm]
pcm0: 
pcm0: Record:
pcm0: 
pcm0:     nid=20 [audio input]
pcm0:       |
pcm0:       + <- nid=23 [audio selector] [src: mic]
pcm0:              |
pcm0:              + <- nid=26 [pin: Mic (Black Jack)] [src: mic]
pcm0:       + <- nid=24 [audio selector] [src: mic]
pcm0:              |
pcm0:              + <- nid=26 [pin: Mic (Black Jack)] [src: mic]
pcm0: 
pcm0: +-------------------------+
pcm0: | DUMPING Volume Controls |
pcm0: +-------------------------+
pcm0: 
pcm0: Master Volume (OSS: vol)
pcm0:    |
pcm0:    +- ctl  1 (nid  16 out):    -74/0dB (75 steps) + mute
pcm0: 
pcm0: PCM Volume (OSS: pcm)
pcm0:    |
pcm0:    +- ctl  1 (nid  16 out):    -74/0dB (75 steps) + mute
pcm0: 
pcm0: Microphone Volume (OSS: mic)
pcm0:    |
pcm0:    +- ctl  7 (nid  23 out):    0/40dB (5 steps)
pcm0:    +- ctl  8 (nid  24 out):    0/40dB (5 steps)
pcm0: 
pcm0: Speaker/Beep Volume (OSS: speaker)
pcm0:    |
pcm0:    +- ctl  3 (nid  19 out):    -28/0dB (8 steps)
pcm0: 
pcm0: Recording Level (OSS: rec)
pcm0:    |
pcm0:    +- ctl  4 (nid  20 in   0): -74/6dB (81 steps) + mute
pcm0:    +- ctl  8 (nid  24 out):    0/40dB (5 steps)
pcm0: 
pcm0: Mixer "vol":
pcm0: Mixer "pcm":
pcm0: Mixer "speaker":
pcm0: Mixer "mic":
pcm0: Mixer "rec":
pcm0: clone manager: deadline=750ms flags=0x8000001e
pcm0: sndbuf_setmap 3b60000, 4000; 0xffffff8071a46000 -> 3b60000
pcm0: sndbuf_setmap 3b70000, 4000; 0xffffff8071a56000 -> 3b70000
pcm1: <HDA Conexant (Unknown) PCM #1 Analog> at cad 0 nid 1 on hdac0
pcm1: +--------------------------------------+
pcm1: | DUMPING PCM Playback/Record Channels |
pcm1: +--------------------------------------+
pcm1: 
pcm1: Playback:
pcm1: 
pcm1:      Stream cap: 0x00000001
pcm1:                  PCM
pcm1:         PCM cap: 0x000e0560
pcm1:                  16 20 24 bits, 44 48 96 192 KHz
pcm1:             DAC: 17
pcm1: 
pcm1: +-------------------------------+
pcm1: | DUMPING Playback/Record Paths |
pcm1: +-------------------------------+
pcm1: 
pcm1: Playback:
pcm1: 
pcm1:     nid=31 [pin: Speaker (Fixed)]
pcm1:       |
pcm1:       + <- nid=17 [audio output] [src: pcm]
pcm1: 
pcm1: +-------------------------+
pcm1: | DUMPING Volume Controls |
pcm1: +-------------------------+
pcm1: 
pcm1: Master Volume (OSS: vol)
pcm1:    |
pcm1:    +- ctl  2 (nid  17 out):    -74/0dB (75 steps) + mute
pcm1: 
pcm1: PCM Volume (OSS: pcm)
pcm1:    |
pcm1:    +- ctl  2 (nid  17 out):    -74/0dB (75 steps) + mute
pcm1: 
pcm1: Mixer "vol":
pcm1: Mixer "pcm":
pcm1: clone manager: deadline=750ms flags=0x8000001e
pcm1: sndbuf_setmap 3b90000, 4000; 0xffffff8071a66000 -> 3b90000
usbus0: 480Mbps High Speed USB v2.0
usbus1: 480Mbps High Speed USB v2.0
ahcich0: AHCI reset...
ugen0.1: <Intel> at usbus0
uhub0: <Intel EHCI root HUB, class 9/0, rev 2.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
ahcich0: SATA connect time=0ms status=00000123
ahcich0: ready wait time=0ms
ahcich0: AHCI reset done: device found
(aprobe0:ahcich0:0:0:0): SIGNATURE: 0000
acpi_acad0: acline initialization start
battery0: battery initialization start
ada0 at ahcich0 bus 0 scbus0 target 0 lun 0GEOM: new disk ada0

ada0: <SAMSUNG MMCRE28G5MXP-0VB VBM1901Q> ATA-7 SATA 2.x device
ada0: Serial Number DC01S00951SE951A2260
ada0: 300.000MB/s transfers (SATA 2.x, UDMA5, PIO 8192bytes)
ada0: Command Queueing enabled
ada0: 122104MB (250069680 512 byte sectors: 16H 63S/T 16383C)
pass0 at ahcich0 bus 0 scbus0 target 0 lun 0
pass0: <SAMSUNG MMCRE28G5MXP-0VB VBM1901Q> ATA-7 SATA 2.x device
pass0: Serial Number DC01S00951SE951A2260
pass0: 300.000MB/s transfers (SATA 2.x, UDMA5, PIO 8192bytes)
pass0: Command Queueing enabled
lapilcapic54::  CCMMCCII  uunnmmaasskkeedd

SMP: AP CPU #1 Launched!
cpu1 AP:
     ID: 0x01000000   VER: 0x01060015 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   cmci: 0x000100f2
SMP: AP CPU #2 Launched!
cpu2 AP:
     ID: 0x04000000   VER: 0x01060015 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   cmci: 0x000000f2
SMP: AP CPU #3 Launched!
cpu3 AP:
     ID: 0x05000000   VER: 0x01060015 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   cmci: 0x000000f2
ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 1 vector 48
ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 4 vector 48acpi_acad0: 
ioapic0: routing intpin 12 (On LineISA IRQ 12
acpi_acad0: ) to lapic 5 vector 48acline initialization done, tried 1 times
GEOM: ada0: partition 4 does not start on a track boundary.ioapic0: routing intpin 18 (
PCI IRQ 18
GEOM: ada0: partition 4 does not end on a track boundary.) to lapic 1 vector 49
GEOM: ada0: partition 3 does not start on a track boundary.
ioapic0: routing intpin 19 (
GEOM: ada0: partition 3 does not end on a track boundary.PCI IRQ 19
GEOM: ada0: partition 2 does not start on a track boundary.) to lapic 4 vector 49
GEOM: ada0: partition 2 does not end on a track boundary.
ioapic0: routing intpin 23 (
GEOM: ada0: partition 1 does not start on a track boundary.PCI IRQ 23
GEOM: ada0: partition 1 does not end on a track boundary.) to lapic 5 vector 49

msi: Assigning MSI IRQ 257 to local APIC 1 vector 50
msi: Assigning MSI IRQ 258 to local APIC 4 vector 50
msi: Assigning MSI IRQ 259 to local APIC 5 vector 50
msi: Assigning MSI-X IRQ 261 to local APIC 1 vector 51
msi: Assigning MSI-X IRQ 262 to local APIC 4 vector 51
msi: Assigning MSI-X IRQ 263 to local APIC 5 vector 51
Root mount waiting for: usbus1 usbus0
uhub0: 2 ports with 2 removable, self powered
uhub1: 2 ports with 2 removable, self powered
Root mount waiting for: usbus1 usbus0
ugen0.2: <vendor 0x8087> at usbus0
uhub2: <vendor 0x8087 product 0x0020, class 9/0, rev 2.00/0.00, addr 2> on usbus0
ugen1.2: <vendor 0x8087> at usbus1
uhub3: <vendor 0x8087 product 0x0020, class 9/0, rev 2.00/0.00, addr 2> on usbus1
Root mount waiting for: usbus1 usbus0
uhub3: 8 ports with 8 removable, self powered
Root mount waiting for: usbus0
Root mount waiting for: usbus0
Root mount waiting for: usbus0
uhub_attach: getting hub descriptor failed,error=USB_ERR_TIMEOUT
device_attach: uhub2 attach returned 6
uhub2: <vendor 0x8087 product 0x0020, class 9/0, rev 2.00/0.00, addr 2> on usbus0
Root mount waiting for: usbus0
uhub2: 6 ports with 6 removable, self powered
Trying to mount root from zfs:zoot/system
ct_to_ts([2010-09-12 18:56:42]) = 1284317802.000000000
start_init: trying /sbin/init
procfs registered
em0: Link is up 1000 Mbps Full Duplex
PROCESSOR-0695 [382219] cpu_cx_cst            : acpi_cpu0: C2[1] not available.
PROCESSOR-0695 [382703] cpu_cx_cst            : acpi_cpu1: C2[1] not available.
PROCESSOR-0695 [383190] cpu_cx_cst            : acpi_cpu2: C2[1] not available.
PROCESSOR-0695 [383825] cpu_cx_cst            : acpi_cpu3: C2[1] not available.
acpi_lid0: Lid closed
ts_to_ct(1284317819.386966403) = [2010-09-12 18:56:59]

--Multipart=_Sun__12_Sep_2010_19_05_37_+0900_a8svMvsOO8prOeQU--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20100912190537.621e357e.nork>