Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 Jun 2010 18:47:45 -0500
From:      Brandon Gooch <jamesbrandongooch@gmail.com>
To:        Alexander Motin <mav@freebsd.org>
Cc:        FreeBSD-Current <freebsd-current@freebsd.org>, freebsd-arch@freebsd.org
Subject:   Re: RFC: New event timers infrastructure
Message-ID:  <AANLkTilFEtiiqllYzWPWEwz9HreYIC_JERZDq4R1kwwY@mail.gmail.com>
In-Reply-To: <4C0C1AE4.8050807@FreeBSD.org>
References:  <4C0C1AE4.8050807@FreeBSD.org>

next in thread | previous in thread | raw e-mail | index | archive | help

[-- Attachment #1 --]
2010/6/6 Alexander Motin <mav@freebsd.org>:
> Hi.
>
> Most of x86 systems now has at least 4 types of event timers: i8254,
> RTC, LAPIC and HPET. Respective code in kernel is very tangled, heavily
> hardcoded and absolutely not scalable. I have reimplemented it, trying
> to solve these issues.
>
> I did such things:
>  - created unified timer driver's API (sys/timeet.h, kernel/kern_et.c).
> It supports global and per-CPU timers, periodic and one-shot. Provides
> driver and consumer interfaces for choosing timers and operating them;
>  - cleaned existing x86 event timer driver's code and modified it for
> new API (x86/isa/atrtc.c, x86/isa/clock.c, x86/x86/local_apic.c). LAPIC
> timer is now per-CPU and supports both periodic and one-shot modes;
>  - extended HPET driver to support it's event timers in periodic and
> one-shot mode (dev/acpica/acpi_hpet.c). Support for per-CPU operation
> and FSB interrupts planned for later;
>  - written mostly machine-independent mid-layer for managing any present
> timers to provide clocks needed for kernel (x86/x86/timeevents.c). It
> supports both global and per-CPU timers. Now it supports only periodic
> mode, but one-shot mode support planned for later.
>
> All this stuff deeply configurable via both loader tunables on boot and
> sysctls in real time:
>
> %sysctl kern.eventtimer
> kern.eventtimer.choice: LAPIC(500) HPET(400) HPET1(390) HPET2(390)
> i8254(100) RTC(0)
> kern.eventtimer.et.LAPIC.flags: 7
> kern.eventtimer.et.LAPIC.frequency: 99752386
> kern.eventtimer.et.LAPIC.quality: 500
> kern.eventtimer.et.HPET.flags: 3
> kern.eventtimer.et.HPET.frequency: 14318180
> kern.eventtimer.et.HPET.quality: 400
> kern.eventtimer.et.HPET1.flags: 3
> kern.eventtimer.et.HPET1.frequency: 14318180
> kern.eventtimer.et.HPET1.quality: 390
> kern.eventtimer.et.HPET2.flags: 3
> kern.eventtimer.et.HPET2.frequency: 14318180
> kern.eventtimer.et.HPET2.quality: 390
> kern.eventtimer.et.RTC.flags: 1
> kern.eventtimer.et.RTC.frequency: 32768
> kern.eventtimer.et.RTC.quality: 0
> kern.eventtimer.et.i8254.flags: 1
> kern.eventtimer.et.i8254.frequency: 1193182
> kern.eventtimer.et.i8254.quality: 100
> kern.eventtimer.timer2: NONE
> kern.eventtimer.timer1: i8254
> kern.eventtimer.singlemul: 2
>
> By default system chooses two timers with highest "quality" for
> hardclock and statclock/profclock. User may affect that choice via
> disabling unwanted drivers and/or via direct specification of wanted
> ones. It is possible to change timers on-flight via sysctls:
>
> %sysctl kern.eventtimer.timer1=hpet
> kern.eventtimer.timer1: i8254 -> HPET
> %sysctl kern.eventtimer.timer2=hpet1
> kern.eventtimer.timer2: NONE -> HPET1
>
> After every timer change, if two timers available, mid-layer
> cross-checks them, and if one of them is not functional - replaces it.
>
> If there is no second timer available, or user specified to not use it -
> mid-layer automatically increases rate of the first timer and divide
> it's frequency to satisfy system needs as good as possible. User may
> specify how fast he wish to run fist timer relative to hz by setting
> kern.eventtimer.singlemul tunable/sysctl.
>
> When profiling is active, mid-layer automatically rises respective timer
> frequency to about 8KHz (was 1KHz previously) and decreases it back on
> profiling end.
>
> All above was tested on i386 and amd64. XEN was not affected and builds
> fine. pc98 was slightly touched. It wasn't tested, but builds fine. It's
> pc98/cbus/clock.c needs respective rewrite to use new features. Other
> architectures are untouched, but if any of them may benefit from this
> functionality - it should be possible to share most of the code.
>
> Latest patches can be found here:
> http://people.freebsd.org/~mav/et.20100606.patch
>
> Known issues:
>  - i8254 timer generates 18Hz interrupt rate when not used and not
> disabled. I haven't found a way to disable it's interrupt source while
> holding spinlock.
>  - timer drivers code will need some more cleaning after interrupt
> handler will be able to return both argument and frame same time.
>
> Feedback is very appreciated.

I've been testing these patches since the first iteration
(et.20100606), and I haven't discovered any related issues.

I'm not able to perform a suspend/resume cycle, but in all fairness,
this machine has never been fully functional in this regard. I will
look into the issue further if time allows...

It seems to me that a more widespread review and test of the code by
knowledgeable, skilled developers is warranted at this stage; as I
understand it, these patches comprise the initial stages necessary to
provide the so-called "tickless" kernel functionality which seems to
be all the rage in today's virtualized environments (at least
according to VMware, VirtualBox, etc...).

So, big thanks to Alexander for bravely undertaking this task and
seemingly making great progress!

Also, Alexander, I've attached two dmesg outputs, one with your patch
(r209354, applied and built today patched with
http://people.freebsd.org/~mav/et.20100618.patch) and another without,
r209256 from Thursday, June 17.

I am unclear about the number of interrupts I should expect from the
hpet0 device (compared to the 99 from the rtc at 100Hz), so here is
the output of vmstat -i with and without the "et" patches:

With "et" patches:

interrupt                          total       rate
irq1: atkbd0                         369          3
irq9: acpi0                          961          8
irq12: psm0                         1002          9
irq18: uhci5                         140          1
irq19: uhci2 ehci0*                 4823         45
irq20: hpet0                       23893        223
irq23: uhci3 ehci1                    11          0
irq256: vgapci0                     1031          9
irq257: hdac0                         14          0
irq258: iwn0                        4258         39
irq259: bge0                           1          0
Total                              36503        341

Without "et" patches:

interrupt                          total       rate
irq1: atkbd0                         449          2
irq0: clk                          17334         99
irq9: acpi0                         1701          9
irq12: psm0                         8784         50
irq18: uhci5                         188          1
irq19: uhci2 ehci0*                 5828         33
irq23: uhci3 ehci1                    11          0
irq256: vgapci0                     1896         10
irq257: hdac0                         14          0
irq258: iwn0                       29571        169
irq259: bge0                           1          0
Total                              65777        378

And lastly, the values of the kern.eventtimer sysctls:

$ sysctl kern.eventtimer
kern.eventtimer.choice: HPET(450) HPET1(440) HPET2(440) HPET3(440) i8254(100)
kern.eventtimer.et.HPET.flags: 3
kern.eventtimer.et.HPET.frequency: 14318180
kern.eventtimer.et.HPET.quality: 450
kern.eventtimer.et.HPET1.flags: 3
kern.eventtimer.et.HPET1.frequency: 14318180
kern.eventtimer.et.HPET1.quality: 440
kern.eventtimer.et.HPET2.flags: 3
kern.eventtimer.et.HPET2.frequency: 14318180
kern.eventtimer.et.HPET2.quality: 440
kern.eventtimer.et.HPET3.flags: 3
kern.eventtimer.et.HPET3.frequency: 14318180
kern.eventtimer.et.HPET3.quality: 440
kern.eventtimer.et.i8254.flags: 1
kern.eventtimer.et.i8254.frequency: 1193182
kern.eventtimer.et.i8254.quality: 100
kern.eventtimer.timer2: HPET1
kern.eventtimer.timer1: HPET
kern.eventtimer.singlemul: 4

Is there anything else one should provide (I know I've asked this
before, but I can't recall if you stated anything "officially")?

Thanks again,

-Brandon

[-- Attachment #2 --]
0x00000000bd4a7000 - 0x00000000bd5cffff, 1216512 bytes (297 pages)
0x00000000bd60f000 - 0x00000000bd708fff, 1024000 bytes (250 pages)
0x00000000bd90f000 - 0x00000000bd917fff, 36864 bytes (9 pages)
0x00000000bd91f000 - 0x00000000bd962fff, 278528 bytes (68 pages)
0x00000000bd99f000 - 0x00000000bd9e2fff, 278528 bytes (68 pages)
0x00000000bd9ff000 - 0x00000000bd9fffff, 4096 bytes (1 pages)
0x0000000100000000 - 0x000000013ffeffff, 1073676288 bytes (262128 pages)
avail memory = 4057841664 (3869 MB)
ACPI APIC Table: <PTLTD  	 APIC  >
INTR: Adding local APIC 1 as a target
FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs
FreeBSD/SMP: 1 package(s) x 2 core(s)
 cpu0 (BSP): APIC ID:  0
 cpu1 (AP): APIC ID:  1
APIC: CPU 0 has ACPI ID 0
APIC: CPU 1 has ACPI ID 1
x86bios:   IVT 0x000000-0x0004ff at 0xffffff0000000000
x86bios:  SSEG 0x010000-0x01ffff at 0xffffff8000016000
x86bios:  EBDA 0x09c000-0x09ffff at 0xffffff000009c000
x86bios:   ROM 0x0a0000-0x0effff at 0xffffff00000a0000
WARNING: VIMAGE (virtualized network stack) is a highly experimental feature.
ULE: setup cpu 0
ULE: setup cpu 1
ACPI: RSDP 0xf78e0 00024 (v2 PTLTD )
ACPI: XSDT 0xbd9f76c5 0007C (v1 DELL    QA09    06040000  LTP 00000000)
ACPI: FACP 0xbd9e7000 000F4 (v3 INTEL  CRESTLNE 06040000 ALAN 00000001)
ACPI: DSDT 0xbd9e8000 0740C (v2 Intel  CANTIGA  06040000 INTL 20050624)
ACPI: FACS 0xbd99efc0 00040
ACPI: HPET 0xbd9fed16 00038 (v1 INTEL  CRESTLNE 06040000 LOHR 0000005A)
ACPI: MCFG 0xbd9fed4e 0003C (v1 INTEL  CRESTLNE 06040000 LOHR 0000005A)
ACPI: APIC 0xbd9fed8a 00068 (v1 PTLTD  ? APIC   06040000  LTP 00000000)
ACPI: BOOT 0xbd9fedf2 00028 (v1 PTLTD  $SBFTBL$ 06040000  LTP 00000001)
ACPI: SLIC 0xbd9fee1a 00176 (v1 DELL    QA09    06040000  LTP 00000000)
ACPI: OSFR 0xbd9fef90 00070 (v1 DELL   DELL     06040000 ASL  00000061)
ACPI: SSDT 0xbd9f7769 00039 (v1 BrtRef  DD01BRT 00001000 INTL 20050624)
ACPI: SSDT 0xbd9e6000 00655 (v1  PmRef    CpuPm 00003000 INTL 20050624)
ACPI: SSDT 0xbd9e5000 00259 (v1  PmRef  Cpu0Tst 00003000 INTL 20050624)
ACPI: SSDT 0xbd9e4000 0020F (v1  PmRef    ApTst 00003000 INTL 20050624)
MADT: Found IO APIC ID 2, Interrupt 0 at 0xfec00000
ioapic0: Routing external 8259A's -> intpin 0
lapic0: Routing NMI -> LINT1
lapic0: LINT1 trigger: edge
lapic0: LINT1 polarity: high
lapic1: Routing NMI -> LINT1
lapic1: LINT1 trigger: edge
lapic1: LINT1 polarity: high
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: 0x00050014 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   cmci: 0x00000000
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>
VESA: information block
0000   56 45 53 41 00 03 00 01 00 01 01 00 00 00 40 00
0010   00 01 ff 01 00 01 33 01 00 01 45 01 00 01 69 01
0020   00 01 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 72 29 43 61 6e 74 69 67 61 20
0110   47 72 61 70 68 69 63 73 20 43 68 69 70 20 41 63
0120   63 65 6c 65 72 61 74 65 64 20 56 47 41 20 42 49
0130   4f 53 00 49 6e 74 65 6c 20 43 6f 72 70 6f 72 61
0140   74 69 6f 6e 00 49 6e 74 65 6c 28 72 29 43 61 6e
0150   74 69 67 61 20 47 72 61 70 68 69 63 73 20 43 6f
0160   6e 74 72 6f 6c 6c 65 72 00 48 61 72 64 77 61 72
0170   65 20 56 65 72 73 69 6f 6e 20 30 2e 30 00 00 00
0180   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
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:0xffffff8000062040 (1000040)
VESA: Intel(r)Cantiga Graphics Chip Accelerated VGA BIOS
VESA: Intel Corporation Intel(r)Cantiga Graphics Controller Hardware Version 0.0
io: <I/O>
kbd: new array size 4
kbd1 at kbdmux0
mem: <memory>
null: <null device, zero device>
nfslock: pseudo-device
random: <entropy source, Software, Yarrow>
CPU0: local APIC error 0x80
acpi0: <DELL QA09   > on motherboard
PCIe: Memory Mapped configuration base @ 0xe0000000
ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 0 vector 48
acpi0: [MPSAFE]
acpi0: [ITHREAD]
AcpiOsDerivePciId: \\_SB_.PCI0.HBUS -> bus 0 dev 0 func 0
AcpiOsDerivePciId: \\_SB_.PCI0.RP04.PXCS -> bus 0 dev 28 func 3
acpi0: Power Button (fixed)
AcpiOsDerivePciId: \\_SB_.PCI0.LPCB.LPC0 -> bus 0 dev 31 func 0
AcpiOsDerivePciId: \\_SB_.PCI0.LPCB.LPC1 -> bus 0 dev 31 func 0
hpet0: vendor 0x8086, rev 0x1, 14318180Hz 64bit, 4 timers, legacy route
hpet0:  t0: irqs 0x00f00000 (0), 64bit, periodic
hpet0:  t1: irqs 0x00f00000 (0)
hpet0:  t2: irqs 0x00f00800 (0)
hpet0:  t3: irqs 0x00f01000 (0)
Timecounter "HPET" frequency 14318180 Hz quality 900
ioapic0: routing intpin 20 (PCI IRQ 20) to lapic 0 vector 49
hpet0: [MPSAFE]
hpet0: [FILTER]
Event timer "HPET" frequency 14318180 Hz quality 450
Event timer "HPET1" frequency 14318180 Hz quality 440
Event timer "HPET2" frequency 14318180 Hz quality 440
Event timer "HPET3" frequency 14318180 Hz quality 440
ACPI timer: 0/3 0/3 0/3 0/3 1/2 1/2 1/2 0/3 0/3 0/3 -> 3
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
ACPI: SSDT 0xbd91ac20 00265 (v1  PmRef  Cpu0Ist 00003000 INTL 20050624)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0 00265 (v1  PmRef  Cpu0Ist 00003000 INTL 20050624)
ACPI: SSDT 0xbd918620 00575 (v1  PmRef  Cpu0Cst 00003001 INTL 20050624)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0 00575 (v1  PmRef  Cpu0Cst 00003001 INTL 20050624)
cpu1: <ACPI CPU> on acpi0
ACPI: SSDT 0xbd919ca0 001CF (v1  PmRef    ApIst 00003000 INTL 20050624)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0 001CF (v1  PmRef    ApIst 00003000 INTL 20050624)
ACPI: SSDT 0xbd919f20 0008D (v1  PmRef    ApCst 00003000 INTL 20050624)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0 0008D (v1  PmRef    ApCst 00003000 INTL 20050624)
acpi_ec0: <Embedded Controller: GPE 0x1c> port 0x62,0x66 on acpi0
pci_link0:        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_link1:        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
pci_link2:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   10   N     0  1 3 4 5 6 7 10 12 14 15
  Validation          0   10   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  255   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_link5:        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
pci_link6:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   10   N     0  1 3 4 5 6 7 10 12 14 15
  Validation          0   10   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    7   N     0  1 3 4 5 6 7 11 12 14 15
  Validation          0    7   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=0x2a40, revid=0x07
	domain=0, bus=0, slot=0, func=0
	class=06-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0106, statreg=0x2090, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found->	vendor=0x8086, dev=0x2a42, revid=0x07
	domain=0, bus=0, slot=2, func=0
	class=03-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0007, statreg=0x0090, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=5
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message
	map[10]: type Memory, range 64, base 0xf8000000, size 22, enabled
	map[18]: type Prefetchable Memory, range 64, base 0xd0000000, size 28, enabled
	map[20]: type I/O Port, range 32, base 0x1800, size  3, enabled
pcib0: matched entry for 0.2.INTA
pcib0: slot 2 INTA hardwired to IRQ 16
found->	vendor=0x8086, dev=0x2a43, revid=0x07
	domain=0, bus=0, slot=2, func=1
	class=03-80-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0007, statreg=0x0090, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	powerspec 3  supports D0 D3  current D0
	map[10]: type Memory, range 64, base 0xf8400000, size 20, enabled
found->	vendor=0x8086, dev=0x2937, revid=0x03
	domain=0, bus=0, slot=26, func=0
	class=0c-03-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=5
	map[20]: type I/O Port, range 32, base 0x1820, size  5, enabled
pcib0: matched entry for 0.26.INTA
pcib0: slot 26 INTA hardwired to IRQ 16
found->	vendor=0x8086, dev=0x2938, revid=0x03
	domain=0, bus=0, slot=26, func=1
	class=0c-03-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=11
	map[20]: type I/O Port, range 32, base 0x1840, size  5, enabled
pcib0: matched entry for 0.26.INTB
pcib0: slot 26 INTB hardwired to IRQ 21
found->	vendor=0x8086, dev=0x2939, revid=0x03
	domain=0, bus=0, slot=26, func=2
	class=0c-03-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=10
	map[20]: type I/O Port, range 32, base 0x1860, size  5, enabled
pcib0: matched entry for 0.26.INTC
pcib0: slot 26 INTC hardwired to IRQ 19
found->	vendor=0x8086, dev=0x293c, revid=0x03
	domain=0, bus=0, slot=26, func=7
	class=0c-03-20, hdrtype=0x00, mfdev=0
	cmdreg=0x0106, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=10
	powerspec 2  supports D0 D3  current D0
	map[10]: type Memory, range 32, base 0xf8804800, size 10, enabled
pcib0: matched entry for 0.26.INTC
pcib0: slot 26 INTC hardwired to IRQ 19
found->	vendor=0x8086, dev=0x293e, revid=0x03
	domain=0, bus=0, slot=27, func=0
	class=04-03-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0106, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=10
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 64, base 0xf8600000, size 14, enabled
pcib0: matched entry for 0.27.INTA
pcib0: slot 27 INTA hardwired to IRQ 22
found->	vendor=0x8086, dev=0x2940, revid=0x03
	domain=0, bus=0, slot=28, func=0
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0107, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x04 (1000 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 17
found->	vendor=0x8086, dev=0x2942, revid=0x03
	domain=0, bus=0, slot=28, func=1
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0107, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x04 (1000 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=5
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message
pcib0: matched entry for 0.28.INTB
pcib0: slot 28 INTB hardwired to IRQ 16
found->	vendor=0x8086, dev=0x294a, revid=0x03
	domain=0, bus=0, slot=28, func=5
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0107, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x04 (1000 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=5
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message
pcib0: matched entry for 0.28.INTB
pcib0: slot 28 INTB hardwired to IRQ 16
found->	vendor=0x8086, dev=0x2934, revid=0x03
	domain=0, bus=0, slot=29, func=0
	class=0c-03-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=7
	map[20]: type I/O Port, range 32, base 0x1880, size  5, enabled
pcib0: matched entry for 0.29.INTA
pcib0: slot 29 INTA hardwired to IRQ 23
found->	vendor=0x8086, dev=0x2935, revid=0x03
	domain=0, bus=0, slot=29, func=1
	class=0c-03-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=10
	map[20]: type I/O Port, range 32, base 0x18a0, size  5, enabled
pcib0: matched entry for 0.29.INTB
pcib0: slot 29 INTB hardwired to IRQ 19
found->	vendor=0x8086, dev=0x2936, revid=0x03
	domain=0, bus=0, slot=29, func=2
	class=0c-03-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=10
	map[20]: type I/O Port, range 32, base 0x18c0, size  5, enabled
pcib0: matched entry for 0.29.INTC
pcib0: slot 29 INTC hardwired to IRQ 18
found->	vendor=0x8086, dev=0x293a, revid=0x03
	domain=0, bus=0, slot=29, func=7
	class=0c-03-20, hdrtype=0x00, mfdev=0
	cmdreg=0x0106, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=7
	powerspec 2  supports D0 D3  current D0
	map[10]: type Memory, range 32, base 0xf8804c00, size 10, enabled
pcib0: matched entry for 0.29.INTA
pcib0: slot 29 INTA hardwired to IRQ 23
found->	vendor=0x8086, dev=0x2448, revid=0x93
	domain=0, bus=0, slot=30, func=0
	class=06-04-01, hdrtype=0x01, mfdev=0
	cmdreg=0x0107, statreg=0x0010, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x04 (1000 ns), maxlat=0x00 (0 ns)
found->	vendor=0x8086, dev=0x2917, revid=0x03
	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=0x2929, revid=0x03
	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 16 messages
	map[10]: type I/O Port, range 32, base 0x1818, size  3, enabled
	map[14]: type I/O Port, range 32, base 0x180c, size  2, enabled
	map[18]: type I/O Port, range 32, base 0x1810, size  3, enabled
	map[1c]: type I/O Port, range 32, base 0x1808, size  2, enabled
	map[20]: type I/O Port, range 32, base 0x18e0, size  5, enabled
	map[24]: type Memory, range 32, base 0xf8804000, size 11, enabled
pcib0: matched entry for 0.31.INTB
pcib0: slot 31 INTB hardwired to IRQ 19
found->	vendor=0x8086, dev=0x2930, revid=0x03
	domain=0, bus=0, slot=31, func=3
	class=0c-05-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0103, statreg=0x0280, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=10
	map[10]: type Memory, range 64, base 0, size  8, enabled
	map[20]: type I/O Port, range 32, base 0x1c00, size  5, enabled
pcib0: matched entry for 0.31.INTC
pcib0: slot 31 INTC hardwired to IRQ 19
vgapci0: <VGA-compatible display> port 0x1800-0x1807 mem 0xf8000000-0xf83fffff,0xd0000000-0xdfffffff irq 16 at device 2.0 on pci0
acpi_video0: <ACPI video extension> on vgapci0
found VGA CRT or VESA Compatible Analog Monitor(100), idx#0, port#0, head #0
found Internal/Integrated Digital Flat Panel(400), idx#0, port#0, head #0
found External Digital Monitor(300), idx#0, port#0, head #0
found External Digital Monitor(301), idx#1, port#0, head #0
found External Digital Monitor(302), idx#2, port#0, head #0
agp0: <Intel GM45 SVGA controller> on vgapci0
agp0: aperture size is 256M, detected 32764k stolen memory
drm0: <Mobile Intel\M-B\M-. GM45 Express Chipset> on vgapci0
vgapci0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 256 to local APIC 0 vector 50
vgapci0: using IRQ 256 for MSI
info: [drm] MSI enabled 1 message(s)
vgapci0: child drm0 requested pci_enable_busmaster
info: [drm] AGP at 0xd0000000 256MB
info: [drm] Initialized i915 1.6.0 20080730
vgapci1: <VGA-compatible display> mem 0xf8400000-0xf84fffff at device 2.1 on pci0
uhci0: <Intel 82801I (ICH9) USB controller> port 0x1820-0x183f irq 16 at device 26.0 on pci0
ioapic0: routing intpin 16 (PCI IRQ 16) to lapic 0 vector 51
uhci0: [MPSAFE]
uhci0: [ITHREAD]
usbus0: <Intel 82801I (ICH9) USB controller> on uhci0
uhci1: <Intel 82801I (ICH9) USB controller> port 0x1840-0x185f irq 21 at device 26.1 on pci0
ioapic0: routing intpin 21 (PCI IRQ 21) to lapic 0 vector 52
uhci1: [MPSAFE]
uhci1: [ITHREAD]
usbus1: <Intel 82801I (ICH9) USB controller> on uhci1
uhci2: <Intel 82801I (ICH9) USB controller> port 0x1860-0x187f irq 19 at device 26.2 on pci0
ioapic0: routing intpin 19 (PCI IRQ 19) to lapic 0 vector 53
uhci2: [MPSAFE]
uhci2: [ITHREAD]
usbus2: <Intel 82801I (ICH9) USB controller> on uhci2
ehci0: <Intel 82801I (ICH9) USB 2.0 controller> mem 0xf8804800-0xf8804bff irq 19 at device 26.7 on pci0
ehci0: [MPSAFE]
ehci0: [ITHREAD]
usbus3: EHCI version 1.0
usbus3: <Intel 82801I (ICH9) USB 2.0 controller> on ehci0
hdac0: <Intel 82801I High Definition Audio Controller> mem 0xf8600000-0xf8603fff 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 54
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 17 at device 28.0 on pci0
pcib1:   domain            0
pcib1:   secondary bus     2
pcib1:   subordinate bus   3
pcib1:   I/O decode        0x2000-0x2fff
pcib1:   memory decode     0xf4000000-0xf5ffffff
pcib1:   prefetched decode 0xf0000000-0xf1ffffff
pci2: <ACPI PCI bus> on pcib1
pci2: domain=0, physical bus=2
pcib2: <ACPI PCI-PCI bridge> irq 16 at device 28.1 on pci0
pcib2:   domain            0
pcib2:   secondary bus     4
pcib2:   subordinate bus   5
pcib2:   I/O decode        0x3000-0x3fff
pcib2:   memory decode     0xf6000000-0xf7ffffff
pcib2:   prefetched decode 0xf2000000-0xf3ffffff
pci4: <ACPI PCI bus> on pcib2
pci4: domain=0, physical bus=4
found->	vendor=0x8086, dev=0x4235, revid=0x00
	domain=0, bus=4, slot=0, func=0
	class=02-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0106, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=11
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 64, base 0xf6000000, size 13, enabled
pcib2: requested memory range 0xf6000000-0xf6001fff: good
pcib2: matched entry for 4.0.INTA
pcib2: slot 0 INTA hardwired to IRQ 17
iwn0: <Intel(R) PRO/Wireless 5300> mem 0xf6000000-0xf6001fff irq 17 at device 0.0 on pci4
iwn0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 258 to local APIC 0 vector 55
iwn0: using IRQ 258 for MSI
iwn0: MIMO 3T3R, MoW, address 00:21:6a:77:cd:92
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 16 at device 28.5 on pci0
pcib3:   domain            0
pcib3:   secondary bus     6
pcib3:   subordinate bus   6
pcib3:   I/O decode        0xf000-0xfff
pcib3:   memory decode     0xf8500000-0xf85fffff
pcib3:   no prefetched decode
pci6: <ACPI PCI bus> on pcib3
pci6: domain=0, physical bus=6
found->	vendor=0x14e4, dev=0x1698, revid=0x10
	domain=0, bus=6, slot=0, func=0
	class=02-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0106, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=11
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 64, base 0xf8500000, size 16, enabled
pcib3: requested memory range 0xf8500000-0xf850ffff: good
pcib3: matched entry for 6.0.INTA
pcib3: slot 0 INTA hardwired to IRQ 17
bge0: <Broadcom NetLink Gigabit Ethernet Controller    , ASIC rev. 0x5784100> mem 0xf8500000-0xf850ffff irq 17 at device 0.0 on pci6
bge0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 259 to local APIC 0 vector 56
bge0: using IRQ 259 for MSI
bge0: CHIP ID 0x05784100; ASIC REV 0x5784; CHIP REV 0x57841; PCI-E
bge0: Disabling fastboot
bge0: Disabling fastboot
miibus0: <MII bus> on bge0
brgphy0: <BCM5784 10/100/1000baseTX PHY> PHY 1 on miibus0
brgphy0: OUI 0x0050ef, model 0x003a, rev. 4
brgphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto
bge0: bpf attached
bge0: Ethernet address: 00:22:19:e5:ca:51
bge0: [MPSAFE]
bge0: [FILTER]
uhci3: <Intel 82801I (ICH9) USB controller> port 0x1880-0x189f irq 23 at device 29.0 on pci0
ioapic0: routing intpin 23 (PCI IRQ 23) to lapic 0 vector 57
uhci3: [MPSAFE]
uhci3: [ITHREAD]
usbus4: <Intel 82801I (ICH9) USB controller> on uhci3
uhci4: <Intel 82801I (ICH9) USB controller> port 0x18a0-0x18bf irq 19 at device 29.1 on pci0
uhci4: [MPSAFE]
uhci4: [ITHREAD]
usbus5: <Intel 82801I (ICH9) USB controller> on uhci4
uhci5: <Intel 82801I (ICH9) USB controller> port 0x18c0-0x18df irq 18 at device 29.2 on pci0
ioapic0: routing intpin 18 (PCI IRQ 18) to lapic 0 vector 58
uhci5: [MPSAFE]
uhci5: [ITHREAD]
usbus6: <Intel 82801I (ICH9) USB controller> on uhci5
ehci1: <Intel 82801I (ICH9) USB 2.0 controller> mem 0xf8804c00-0xf8804fff irq 23 at device 29.7 on pci0
ehci1: [MPSAFE]
ehci1: [ITHREAD]
usbus7: EHCI version 1.0
usbus7: <Intel 82801I (ICH9) USB 2.0 controller> on ehci1
pcib4: <ACPI PCI-PCI bridge> at device 30.0 on pci0
pcib4:   domain            0
pcib4:   secondary bus     7
pcib4:   subordinate bus   7
pcib4:   I/O decode        0xf000-0xfff
pcib4:   no prefetched decode
pcib4:   Subtractively decoded bridge.
pcib4: could not get PCI interrupt routing table for \\_SB_.PCI0.P0P1 - AE_NOT_FOUND
pci7: <ACPI PCI bus> on pcib4
pci7: domain=0, physical bus=7
isab0: <PCI-ISA bridge> at device 31.0 on pci0
isa0: <ISA bus> on isab0
atapci0: <Intel (ID=29298086) AHCI controller> port 0x1818-0x181f,0x180c-0x180f,0x1810-0x1817,0x1808-0x180b,0x18e0-0x18ff mem 0xf8804000-0xf88047ff irq 19 at device 31.2 on pci0
atapci0: [MPSAFE]
atapci0: [ITHREAD]
atapci0: AHCI v1.20 controller with 4 3Gbps ports, PM supported
atapci0: Caps: 64bit NCQ SNTF ALP AL CLO 3Gbps PM PMD SSC PSC 32cmd CCC eSATA 4ports
ata2: <ATA channel 0> on atapci0
ata2: [MPSAFE]
ata2: [ITHREAD]
ata3: <ATA channel 1> on atapci0
ata3: [MPSAFE]
ata3: [ITHREAD]
pci0: <serial bus, SMBus> at device 31.3 (no driver attached)
acpi_button0: <Power Button> on acpi0
acpi_button1: <Sleep Button> on acpi0
acpi_lid0: <Control Method Lid Switch> on acpi0
acpi_lid0: enable wake failed
acpi_acad0: <AC Adapter> on acpi0
battery0: <ACPI Control Method Battery> on acpi0
acpi_tz0: <Thermal Zone> on acpi0
acpi_tz1: <Thermal Zone> on acpi0
acpi_tz2: <Thermal Zone> on acpi0
atrtc0: <AT realtime clock> port 0x70-0x77 irq 8 on acpi0
atrtc0: Warning: Couldn't map I/O.
ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 0 vector 59
atrtc0: [MPSAFE]
atrtc0: [FILTER]
atrtc0: registered as a time-of-day clock (resolution 1000000us)
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 60
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 0047
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 61
atkbd0: [GIANT-LOCKED]
atkbd0: [ITHREAD]
psm0: unable to allocate IRQ
psmcpnp0: <PS/2 mouse port> irq 12 on acpi0
psm0: current command byte:0047
psm0: <PS/2 Mouse> irq 12 on atkbdc0
ioapic0: routing intpin 12 (ISA IRQ 12) to lapic 0 vector 62
psm0: [GIANT-LOCKED]
psm0: [ITHREAD]
psm0: model Synaptics Touchpad, device ID 0-00, 3 buttons
psm0: config:00006000, flags:00000008, packet size:6
psm0: syncmask:c0, syncbits:00
acpi0: wakeup code va 0xffffff8074de8000 pa 0x4000
isa_probe_children: disabling PnP devices
atkbdc: atkbdc0 already exists; skipping it
atrtc: atrtc0 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
est0: <Enhanced SpeedStep Frequency Control> on cpu0
est1: <Enhanced SpeedStep Frequency Control> on cpu1
Device configuration finished.
Reducing kern.maxvnodes 255258 -> 100000
procfs registered
Timecounter "TSC" frequency 1400079114 Hz quality -100
Starting kernel event timers: HPET @ 100Hz, HPET1 @ 128Hz
Timecounters tick every 10.000 msec
vlan: initialized, using hash tables with chaining
ipfw2 (+ipv6) initialized, divert enabled, nat enabled, rule-based forwarding enabled, default to accept, logging disabled
ipfw0: bpf attached
DUMMYNET 0xffffff000139c1c0 with IPv6 initialized (100409)
load_dn_sched dn_sched QFQ loaded
load_dn_sched dn_sched RR loaded
load_dn_sched dn_sched WF2Q+ loaded
lo0: bpf attached
load_dn_sched dn_sched FIFO loaded
load_dn_sched dn_sched PRIO loaded
hdac0: Probing codec #0...
hdac0: HDA Codec #0: IDT 92HD73C1
hdac0:  HDA Codec ID: 0x111d7675
hdac0:        Vendor: 0x111d
hdac0:        Device: 0x7675
hdac0:      Revision: 0x02
hdac0:      Stepping: 0x02
hdac0: PCI Subvendor: 0x02b91028
hdac0: 	Found audio FG nid=1 startnode=10 endnode=44 total=34
hdac0: Probing codec #1...
hdac0: HDA Codec #1: Intel G45 HDMI
hdac0:  HDA Codec ID: 0x80862802
hdac0:        Vendor: 0x8086
hdac0:        Device: 0x2802
hdac0:      Revision: 0x00
hdac0:      Stepping: 0x00
hdac0: PCI Subvendor: 0x02b91028
hdac0: 	Found audio FG nid=1 startnode=2 endnode=4 total=2
hdac0: 
hdac0: Processing audio FG cad=0 nid=1...
hdac0: GPIO: 0xc0000008 NumGPIO=8 NumGPO=0 NumGPI=0 GPIWake=1 GPIUnsol=1
hdac0:  nid 10 0x0421101f as  1 seq 15    Headphones  Jack jack  1 loc  4 color   Black misc 0
hdac0:  nid 11 0x400001f1 as 15 seq  1      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 12 0x400001f2 as 15 seq  2      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 13 0x90170110 as  1 seq  0       Speaker Fixed jack  7 loc 16 color Unknown misc 1
hdac0:  nid 14 0x400001f3 as 15 seq  3      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 15 0x400001f0 as 15 seq  0      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 16 0x400001f4 as 15 seq  4      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 17 0x400001f5 as 15 seq  5      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 18 0x400001f6 as 15 seq  6      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 19 0x90a60160 as  6 seq  0           Mic Fixed jack  6 loc 16 color Unknown misc 1
hdac0:  nid 20 0x400001f7 as 15 seq  7      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 34 0x400001f8 as 15 seq  8      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 35 0x400001f9 as 15 seq  9      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 36 0x400001fa as 15 seq 10      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0: Patched pins configuration:
hdac0:  nid 10 0x0421101f as  1 seq 15    Headphones  Jack jack  1 loc  4 color   Black misc 0
hdac0:  nid 11 0x400001f1 as 15 seq  1      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 12 0x400001f2 as 15 seq  2      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 13 0x90170110 as  1 seq  0       Speaker Fixed jack  7 loc 16 color Unknown misc 1
hdac0:  nid 14 0x400001f3 as 15 seq  3      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 15 0x400001f0 as 15 seq  0      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 16 0x400001f4 as 15 seq  4      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 17 0x400001f5 as 15 seq  5      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 18 0x400001f6 as 15 seq  6      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 19 0x90a60160 as  6 seq  0           Mic Fixed jack  6 loc 16 color Unknown misc 1
hdac0:  nid 20 0x400001f7 as 15 seq  7      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 34 0x400001f8 as 15 seq  8      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 35 0x400001f9 as 15 seq  9      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 36 0x400001fa as 15 seq 10      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0: 2 associations found:
hdac0: Association 0 (1) out:
hdac0:  Pin nid=13 seq=0
hdac0:  Pin nid=10 seq=15
hdac0: Association 1 (6) in:
hdac0:  Pin nid=19 seq=0
hdac0: Tracing association 0 (1)
hdac0:  Pin 13 traced to DAC 21
hdac0:  Pin 10 traced to DAC 21 and hpredir 0
hdac0: Association 0 (1) trace succeeded
hdac0: Tracing association 1 (6)
hdac0:  Pin 19 traced to ADC 26
hdac0: Association 1 (6) trace succeeded
hdac0: Tracing input monitor
hdac0: Tracing other input monitors
hdac0:  Tracing nid 19 to out
hdac0: Tracing beeper
hdac0: Enabling headphone/speaker audio routing switching:
hdac0: 	as=0 sense nid=10 [UNSOL]
hdac0: Pin sense: nid=10 res=0x7fffffff
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: 0x000e05e0
hdac0:                  16 20 24 bits, 44 48 88 96 192 KHz
hdac0:          IN amp: 0x00270300
hdac0:         OUT amp: 0x80027f7f
hdac0: 
hdac0:             nid: 10
hdac0:            Name: pin: Headphones (Black Jack)
hdac0:      Widget cap: 0x00400183
hdac0:                  UNSOL STEREO
hdac0:     Association: 0 (0x00008000)
hdac0:         Pin cap: 0x0000173f
hdac0:                  ISC TRQD PDC HP OUT IN VREF[ 50 80 GROUND HIZ ]
hdac0:      Pin config: 0x0421101f
hdac0:     Pin control: 0x00000080 HP
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + [DISABLED] <- nid=22 [audio output] [DISABLED]
hdac0:           + [DISABLED] <- nid=23 [audio output] [DISABLED]
hdac0:           + [DISABLED] <- nid=30 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 11 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400183
hdac0:                  UNSOL STEREO
hdac0:         Pin cap: 0x0000173f
hdac0:                  ISC TRQD PDC HP OUT IN VREF[ 50 80 GROUND HIZ ]
hdac0:      Pin config: 0x400001f1
hdac0:     Pin control: 0x00000000
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + <- nid=22 [audio output] [DISABLED]
hdac0:           + <- nid=23 [audio output] [DISABLED]
hdac0:           + <- nid=30 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 12 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400183
hdac0:                  UNSOL STEREO
hdac0:         Pin cap: 0x00001737
hdac0:                  ISC TRQD PDC OUT IN VREF[ 50 80 GROUND HIZ ]
hdac0:      Pin config: 0x400001f2
hdac0:     Pin control: 0x00000000
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + <- nid=22 [audio output] [DISABLED]
hdac0:           + <- nid=23 [audio output] [DISABLED]
hdac0:           + <- nid=30 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 13
hdac0:            Name: pin: Speaker (Fixed)
hdac0:      Widget cap: 0x00400183
hdac0:                  UNSOL STEREO
hdac0:     Association: 0 (0x00000001)
hdac0:         Pin cap: 0x0000003f
hdac0:                  ISC TRQD PDC HP OUT IN
hdac0:      Pin config: 0x90170110
hdac0:     Pin control: 0x00000040 OUT
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + [DISABLED] <- nid=22 [audio output] [DISABLED]
hdac0:           + [DISABLED] <- nid=23 [audio output] [DISABLED]
hdac0:           + [DISABLED] <- nid=30 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 14 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400183
hdac0:                  UNSOL STEREO
hdac0:         Pin cap: 0x00001737
hdac0:                  ISC TRQD PDC OUT IN VREF[ 50 80 GROUND HIZ ]
hdac0:      Pin config: 0x400001f3
hdac0:     Pin control: 0x00000000
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + <- nid=22 [audio output] [DISABLED]
hdac0:           + <- nid=23 [audio output] [DISABLED]
hdac0:           + <- nid=30 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 15 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400183
hdac0:                  UNSOL STEREO
hdac0:         Pin cap: 0x00000037
hdac0:                  ISC TRQD PDC OUT IN
hdac0:      Pin config: 0x400001f0
hdac0:     Pin control: 0x00000000
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + <- nid=22 [audio output] [DISABLED]
hdac0:           + <- nid=23 [audio output] [DISABLED]
hdac0:           + <- nid=30 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 16 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400183
hdac0:                  UNSOL STEREO
hdac0:         Pin cap: 0x00000037
hdac0:                  ISC TRQD PDC OUT IN
hdac0:      Pin config: 0x400001f4
hdac0:     Pin control: 0x00000000
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + <- nid=22 [audio output] [DISABLED]
hdac0:           + <- nid=23 [audio output] [DISABLED]
hdac0:           + <- nid=30 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 17 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400183
hdac0:                  UNSOL STEREO
hdac0:         Pin cap: 0x00000037
hdac0:                  ISC TRQD PDC OUT IN
hdac0:      Pin config: 0x400001f5
hdac0:     Pin control: 0x00000000
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + <- nid=22 [audio output] [DISABLED]
hdac0:           + <- nid=23 [audio output] [DISABLED]
hdac0:           + <- nid=30 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 18 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400081
hdac0:                  UNSOL STEREO
hdac0:         Pin cap: 0x00000024
hdac0:                  PDC IN
hdac0:      Pin config: 0x400001f6
hdac0:     Pin control: 0x00000000
hdac0: 
hdac0:             nid: 19
hdac0:            Name: pin: Mic (Fixed)
hdac0:      Widget cap: 0x00400003
hdac0:                  STEREO
hdac0:     Association: 1 (0x00000001)
hdac0:             OSS: monitor (monitor)
hdac0:         Pin cap: 0x00000020
hdac0:                  IN
hdac0:      Pin config: 0x90a60160
hdac0:     Pin control: 0x00000020 IN
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0: 
hdac0:             nid: 20 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400003
hdac0:                  STEREO
hdac0:         Pin cap: 0x00000020
hdac0:                  IN
hdac0:      Pin config: 0x400001f7
hdac0:     Pin control: 0x00000000
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0: 
hdac0:             nid: 21
hdac0:            Name: audio output
hdac0:      Widget cap: 0x000d0c05
hdac0:                  LRSWAP PWR STEREO
hdac0:     Association: 0 (0x00008001)
hdac0:             OSS: pcm (pcm)
hdac0:      Stream cap: 0x00000001
hdac0:                  PCM
hdac0:         PCM cap: 0x000e05e0
hdac0:                  16 20 24 bits, 44 48 88 96 192 KHz
hdac0:      Output amp: 0x80027f7f
hdac0:                  mute=1 step=127 size=2 offset=127
hdac0: 
hdac0:             nid: 22 [DISABLED]
hdac0:            Name: audio output
hdac0:      Widget cap: 0x000d0c05
hdac0:                  LRSWAP PWR STEREO
hdac0:      Stream cap: 0x00000001
hdac0:                  PCM
hdac0:         PCM cap: 0x000e05e0
hdac0:                  16 20 24 bits, 44 48 88 96 192 KHz
hdac0:      Output amp: 0x80027f7f
hdac0:                  mute=1 step=127 size=2 offset=127
hdac0: 
hdac0:             nid: 23 [DISABLED]
hdac0:            Name: audio output
hdac0:      Widget cap: 0x000d0c05
hdac0:                  LRSWAP PWR STEREO
hdac0:      Stream cap: 0x00000001
hdac0:                  PCM
hdac0:         PCM cap: 0x000e05e0
hdac0:                  16 20 24 bits, 44 48 88 96 192 KHz
hdac0:      Output amp: 0x80027f7f
hdac0:                  mute=1 step=127 size=2 offset=127
hdac0: 
hdac0:             nid: 24 [DISABLED]
hdac0:            Name: vendor widget
hdac0:      Widget cap: 0x00fd0c05
hdac0:                  LRSWAP PWR STEREO
hdac0:      Output amp: 0x80027f7f
hdac0:                  mute=1 step=127 size=2 offset=127
hdac0: 
hdac0:             nid: 25 [DISABLED]
hdac0:            Name: vendor widget
hdac0:      Widget cap: 0x00fd0c05
hdac0:                  LRSWAP PWR STEREO
hdac0:      Output amp: 0x80027f7f
hdac0:                  mute=1 step=127 size=2 offset=127
hdac0: 
hdac0:             nid: 26
hdac0:            Name: audio input
hdac0:      Widget cap: 0x001d0541
hdac0:                  PWR PROC STEREO
hdac0:     Association: 1 (0x00000001)
hdac0:      Stream cap: 0x00000001
hdac0:                  PCM
hdac0:         PCM cap: 0x000e05e0
hdac0:                  16 20 24 bits, 44 48 88 96 192 KHz
hdac0:     connections: 1
hdac0:           |
hdac0:           + <- nid=32 [audio selector]
hdac0: 
hdac0:             nid: 27 [DISABLED]
hdac0:            Name: audio input
hdac0:      Widget cap: 0x001d0541
hdac0:                  PWR PROC STEREO
hdac0:      Stream cap: 0x00000001
hdac0:                  PCM
hdac0:         PCM cap: 0x000e05e0
hdac0:                  16 20 24 bits, 44 48 88 96 192 KHz
hdac0:     connections: 1
hdac0:           |
hdac0:           + <- nid=33 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 28
hdac0:            Name: beep widget
hdac0:      Widget cap: 0x0070000c
hdac0:     Association: -2 (0x00000000)
hdac0:             OSS: speaker (speaker)
hdac0:      Output amp: 0x80170303
hdac0:                  mute=1 step=3 size=23 offset=3
hdac0: 
hdac0:             nid: 29 [DISABLED]
hdac0:            Name: audio mixer
hdac0:      Widget cap: 0x0020010b
hdac0:                  STEREO
hdac0:       Input amp: 0x80051f17
hdac0:                  mute=1 step=31 size=5 offset=23
hdac0:     connections: 5
hdac0:           |
hdac0:           + [DISABLED] <- nid=40 [audio selector] [DISABLED]
hdac0:           + [DISABLED] <- nid=41 [audio selector] [DISABLED]
hdac0:           + [DISABLED] <- nid=42 [audio selector] [DISABLED]
hdac0:           + [DISABLED] <- nid=43 [audio selector] [DISABLED]
hdac0:           + [DISABLED] <- nid=18 [pin: Line-out (None)] [DISABLED]
hdac0: 
hdac0:             nid: 30 [DISABLED]
hdac0:            Name: audio selector
hdac0:      Widget cap: 0x0030010d
hdac0:                  STEREO
hdac0:      Output amp: 0x80051f1f
hdac0:                  mute=1 step=31 size=5 offset=31
hdac0:     connections: 1
hdac0:           |
hdac0:           + <- nid=29 [audio mixer] [DISABLED]
hdac0: 
hdac0:             nid: 31 [DISABLED]
hdac0:            Name: volume widget
hdac0:      Widget cap: 0x00600000
hdac0:     connections: 3
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + <- nid=22 [audio output] [DISABLED]
hdac0:           + <- nid=23 [audio output] [DISABLED]
hdac0: 
hdac0:             nid: 32
hdac0:            Name: audio selector
hdac0:      Widget cap: 0x0030090d
hdac0:                  LRSWAP STEREO
hdac0:     Association: 1 (0x00000001)
hdac0:             OSS: monitor
hdac0:      Output amp: 0x80050f00
hdac0:                  mute=1 step=15 size=5 offset=0
hdac0:     connections: 12
hdac0:           |
hdac0:           + [DISABLED] <- nid=10 [pin: Headphones (Black Jack)]
hdac0:           + [DISABLED] <- nid=11 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=12 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=13 [pin: Speaker (Fixed)]
hdac0:           + [DISABLED] <- nid=14 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=15 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=16 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=17 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=18 [pin: Line-out (None)] [DISABLED]
hdac0:           + <- nid=19 [pin: Mic (Fixed)] (selected)
hdac0:           + [DISABLED] <- nid=20 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=29 [audio mixer] [DISABLED]
hdac0: 
hdac0:             nid: 33 [DISABLED]
hdac0:            Name: audio selector
hdac0:      Widget cap: 0x0030090d
hdac0:                  LRSWAP STEREO
hdac0:      Output amp: 0x80050f00
hdac0:                  mute=1 step=15 size=5 offset=0
hdac0:     connections: 12
hdac0:           |
hdac0:           + <- nid=10 [pin: Headphones (Black Jack)] (selected)
hdac0:           + [DISABLED] <- nid=11 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=12 [pin: Line-out (None)] [DISABLED]
hdac0:           + <- nid=13 [pin: Speaker (Fixed)]
hdac0:           + [DISABLED] <- nid=14 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=15 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=16 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=17 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=18 [pin: Line-out (None)] [DISABLED]
hdac0:           + <- nid=19 [pin: Mic (Fixed)]
hdac0:           + [DISABLED] <- nid=20 [pin: Line-out (None)] [DISABLED]
hdac0:           + <- nid=29 [audio mixer] [DISABLED]
hdac0: 
hdac0:             nid: 34 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400301
hdac0:                  DIGITAL STEREO
hdac0:         Pin cap: 0x00000010
hdac0:                  OUT
hdac0:      Pin config: 0x400001f8
hdac0:     Pin control: 0x00000000
hdac0:     connections: 3
hdac0:           |
hdac0:           + <- nid=37 [audio output] [DISABLED] (selected)
hdac0:           + <- nid=32 [audio selector]
hdac0:           + <- nid=33 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 35 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400301
hdac0:                  DIGITAL STEREO
hdac0:         Pin cap: 0x00000010
hdac0:                  OUT
hdac0:      Pin config: 0x400001f9
hdac0:     Pin control: 0x00000000
hdac0:     connections: 3
hdac0:           |
hdac0:           + <- nid=38 [audio output] [DISABLED] (selected)
hdac0:           + <- nid=32 [audio selector]
hdac0:           + <- nid=33 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 36 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400681
hdac0:                  PWR DIGITAL UNSOL STEREO
hdac0:         Pin cap: 0x00010024
hdac0:                  PDC IN EAPD
hdac0:      Pin config: 0x400001fa
hdac0:     Pin control: 0x00000000
hdac0:            EAPD: 0x00000002
hdac0: 
hdac0:             nid: 37 [DISABLED]
hdac0:            Name: audio output
hdac0:      Widget cap: 0x0004021d
hdac0:                  DIGITAL STEREO
hdac0:      Stream cap: 0x00000005
hdac0:                  AC3 PCM
hdac0:         PCM cap: 0x000e05e0
hdac0:                  16 20 24 bits, 44 48 88 96 192 KHz
hdac0:      Output amp: 0x80000000
hdac0:                  mute=1 step=0 size=0 offset=0
hdac0: 
hdac0:             nid: 38 [DISABLED]
hdac0:            Name: audio output
hdac0:      Widget cap: 0x0004021d
hdac0:                  DIGITAL STEREO
hdac0:      Stream cap: 0x00000005
hdac0:                  AC3 PCM
hdac0:         PCM cap: 0x000e05e0
hdac0:                  16 20 24 bits, 44 48 88 96 192 KHz
hdac0:      Output amp: 0x80000000
hdac0:                  mute=1 step=0 size=0 offset=0
hdac0: 
hdac0:             nid: 39 [DISABLED]
hdac0:            Name: audio input
hdac0:      Widget cap: 0x0014031b
hdac0:                  DIGITAL STEREO
hdac0:      Stream cap: 0x00000005
hdac0:                  AC3 PCM
hdac0:         PCM cap: 0x000e0160
hdac0:                  16 20 24 bits, 44 48 96 KHz
hdac0:       Input amp: 0x80000000
hdac0:                  mute=1 step=0 size=0 offset=0
hdac0:     connections: 1
hdac0:           |
hdac0:           + [DISABLED] <- nid=36 [pin: Line-out (None)] [DISABLED]
hdac0: 
hdac0:             nid: 40 [DISABLED]
hdac0:            Name: audio selector
hdac0:      Widget cap: 0x00300101
hdac0:                  STEREO
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=10 [pin: Headphones (Black Jack)] (selected)
hdac0:           + [DISABLED] <- nid=11 [pin: Line-out (None)] [DISABLED]
hdac0:           + <- nid=13 [pin: Speaker (Fixed)]
hdac0:           + [DISABLED] <- nid=15 [pin: Line-out (None)] [DISABLED]
hdac0: 
hdac0:             nid: 41 [DISABLED]
hdac0:            Name: audio selector
hdac0:      Widget cap: 0x00300101
hdac0:                  STEREO
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=10 [pin: Headphones (Black Jack)] (selected)
hdac0:           + [DISABLED] <- nid=14 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=16 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=17 [pin: Line-out (None)] [DISABLED]
hdac0: 
hdac0:             nid: 42 [DISABLED]
hdac0:            Name: audio selector
hdac0:      Widget cap: 0x00300101
hdac0:                  STEREO
hdac0:     connections: 4
hdac0:           |
hdac0:           + [DISABLED] <- nid=11 [pin: Line-out (None)] [DISABLED] (selected)
hdac0:           + [DISABLED] <- nid=12 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=16 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=17 [pin: Line-out (None)] [DISABLED]
hdac0: 
hdac0:             nid: 43 [DISABLED]
hdac0:            Name: audio selector
hdac0:      Widget cap: 0x00300101
hdac0:                  STEREO
hdac0:     connections: 3
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + <- nid=22 [audio output] [DISABLED]
hdac0:           + <- nid=23 [audio output] [DISABLED]
hdac0: 
hdac0: Processing audio FG cad=1 nid=1...
hdac0: GPIO: 0x00000000 NumGPIO=0 NumGPO=0 NumGPI=0 GPIWake=0 GPIUnsol=0
hdac0:  nid 3 0x18560010 as  1 seq  0   Digital-out  Jack jack  6 loc 24 color Unknown misc 0
hdac0: Patched pins configuration:
hdac0:  nid 3 0x18560010 as  1 seq  0   Digital-out  Jack jack  6 loc 24 color Unknown misc 0
hdac0: 1 associations found:
hdac0: Association 0 (1) out:
hdac0:  Pin nid=3 seq=0
hdac0: Tracing association 0 (1)
hdac0:  Pin 3 traced to DAC 2
hdac0: Association 0 (1) trace succeeded
hdac0: Tracing input monitor
hdac0: Tracing other input monitors
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:          IN amp: 0x00000000
hdac0:         OUT amp: 0x00000000
hdac0: 
hdac0:             nid: 2
hdac0:            Name: audio output
hdac0:      Widget cap: 0x00006211
hdac0:                  DIGITAL 8CH
hdac0:     Association: 0 (0x00000001)
hdac0:             OSS: pcm (pcm)
hdac0:      Stream cap: 0x00000005
hdac0:                  AC3 PCM
hdac0:         PCM cap: 0x001e07f0
hdac0:                  16 20 24 32 bits, 32 44 48 88 96 176 192 KHz
hdac0: 
hdac0:             nid: 3
hdac0:            Name: pin: Digital-out (Jack)
hdac0:      Widget cap: 0x0040739d
hdac0:                  DIGITAL UNSOL 8CH
hdac0:     Association: 0 (0x00000001)
hdac0:         Pin cap: 0x00000094
hdac0:                  PDC OUT HDMI
hdac0:      Pin config: 0x18560010
hdac0:     Pin control: 0x00000040 OUT
hdac0:      Output amp: 0x80000000
hdac0:                  mute=1 step=0 size=0 offset=0
hdac0:     connections: 1
hdac0:           |
hdac0:           + <- nid=2 [audio output]
hdac0: 
pcm0: <HDA IDT 92HD73C1 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: 0x000e05e0
pcm0:                  16 20 24 bits, 44 48 88 96 192 KHz
pcm0:             DAC: 21
pcm0: 
pcm0: Record:
pcm0: 
pcm0:      Stream cap: 0x00000001
pcm0:                  PCM
pcm0:         PCM cap: 0x000e05e0
pcm0:                  16 20 24 bits, 44 48 88 96 192 KHz
pcm0:             ADC: 26
pcm0: 
pcm0: +-------------------------------+
pcm0: | DUMPING Playback/Record Paths |
pcm0: +-------------------------------+
pcm0: 
pcm0: Playback:
pcm0: 
pcm0:     nid=13 [pin: Speaker (Fixed)]
pcm0:       |
pcm0:       + <- nid=21 [audio output] [src: pcm]
pcm0: 
pcm0:     nid=10 [pin: Headphones (Black Jack)]
pcm0:       |
pcm0:       + <- nid=21 [audio output] [src: pcm]
pcm0: 
pcm0: Record:
pcm0: 
pcm0:     nid=26 [audio input]
pcm0:       |
pcm0:       + <- nid=32 [audio selector] [src: monitor]
pcm0:              |
pcm0:              + <- nid=19 [pin: Mic (Fixed)] [src: monitor]
pcm0: 
pcm0: +-------------------------+
pcm0: | DUMPING Volume Controls |
pcm0: +-------------------------+
pcm0: 
pcm0: Master Volume (OSS: vol)
pcm0:    |
pcm0:    +- ctl 11 (nid  21 out):    -95/0dB (128 steps) + mute
pcm0: 
pcm0: PCM Volume (OSS: pcm)
pcm0:    |
pcm0:    +- ctl 11 (nid  21 out):    -95/0dB (128 steps) + mute
pcm0: 
pcm0: Microphone2 Volume (OSS: monitor)
pcm0:    |
pcm0:    +- ctl  9 (nid  19 out):    0/30dB (4 steps)
pcm0: 
pcm0: Speaker/Beep Volume (OSS: speaker)
pcm0:    |
pcm0:    +- ctl 16 (nid  28 out):    -18/0dB (4 steps) + mute
pcm0: 
pcm0: Recording Level (OSS: rec)
pcm0:    |
pcm0:    +- ctl 23 (nid  32 out):    0/22dB (16 steps) + mute
pcm0: 
pcm0: Mixer "vol":
pcm0: Mixer "bass":
pcm0: Mixer "treble":
pcm0: Mixer "pcm":
pcm0: Mixer "speaker":
pcm0: Mixer "rec":
pcm0: Mixer "monitor":
pcm0: EQ Treble/Bass ENABLED
pcm0: clone manager: deadline=750ms flags=0x8000001e
pcm0: sndbuf_setmap 13ffa0000, 4000; 0xffffff8074e00000 -> 13ffa0000
pcm0: sndbuf_setmap 13ffb0000, 4000; 0xffffff8074e10000 -> 13ffb0000
pcm1: <HDA Intel G45 HDMI PCM #0 HDMI> at cad 1 nid 1 on hdac0
pcm1: +--------------------------------------+
pcm1: | DUMPING PCM Playback/Record Channels |
pcm1: +--------------------------------------+
pcm1: 
pcm1: Playback:
pcm1: 
pcm1:      Stream cap: 0x00000005
pcm1:                  AC3 PCM
pcm1:         PCM cap: 0x001e07f0
pcm1:                  16 20 24 32 bits, 32 44 48 88 96 176 192 KHz
pcm1:             DAC: 2
pcm1: 
pcm1: +-------------------------------+
pcm1: | DUMPING Playback/Record Paths |
pcm1: +-------------------------------+
pcm1: 
pcm1: Playback:
pcm1: 
pcm1:     nid=3 [pin: Digital-out (Jack)]
pcm1:       |
pcm1:       + <- nid=2 [audio output] [src: pcm]
pcm1: 
pcm1: +-------------------------+
pcm1: | DUMPING Volume Controls |
pcm1: +-------------------------+
pcm1: 
pcm1: Master Volume (OSS: vol)
pcm1:    |
pcm1:    +- ctl  1 (nid   3 in ):    mute
pcm1: 
pcm1: PCM Volume (OSS: pcm)
pcm1:    |
pcm1:    +- ctl  1 (nid   3 in ):    mute
pcm1: 
pcm1: Enabling Soft PCM volume
pcm1: Mixer "vol":
pcm1: Mixer "pcm":
pcm1: Soft PCM mixer ENABLED
pcm1: clone manager: deadline=750ms flags=0x8000001e
pcm1: sndbuf_setmap 2bb0000, 4000; 0xffffff8074e20000 -> 2bb0000
ata2: AHCI reset...
ata2: hardware reset ...
ata2: SATA connect time=0ms status=00000123
ata2: ready wait time=6ms
ata2: software reset port 15...
ata2: ready wait time=0ms
ata2: SIGNATURE: 00000101
ata2: AHCI reset done: devices=00000001
ata3: AHCI reset...
ata3: hardware reset ...
ata3: SATA connect timeout status=00000000
ata3: AHCI reset done: phy reset found no device
(aprobe0:ata2:0:0:0): SIGNATURE: 0000
usbus0: 12Mbps Full Speed USB v1.0
usbus1: 12Mbps Full Speed USB v1.0
usbus2: 12Mbps Full Speed USB v1.0
usbus3: 480Mbps High Speed USB v2.0
usbus4: 12Mbps Full Speed USB v1.0
usbus5: 12Mbps Full Speed USB v1.0
usbus6: 12Mbps Full Speed USB v1.0
usbus7: 480Mbps High Speed USB v2.0
acpi_acad0: acline initialization start
battery0: battery initialization start
ada0 at ata2 bus 0 scbus0 target 0 lun 0GEOM: new disk ada0

ada0: <SAMSUNG SSD PB22-CS3 TM 256GB VBM23D1Q> ATA-7 SATA 2.x device
ada0: Serial Number YF30F0K939SY939B8334
ada0: 300.000MB/s transfers (SATA 2.x, UDMA5, PIO 8192bytes)
ada0: 244198MB (500118192 512 byte sectors: 16H 63S/T 16383C)
pass0 at ata2 bus 0 scbus0 target 0 lun 0
pass0: <SAMSUNG SSD PB22-CS3 TM 256GB VBM23D1Q> ATA-7 SATA 2.x device
pass0: Serial Number YF30F0K939SY939B8334
pass0: 300.000MB/s transfers (SATA 2.x, UDMA5, PIO 8192bytes)
AcpiOsDerivePciId: \\_SB_.PCI0.RP01.PXCS -> bus 0 dev 28 func 0
AcpiOsDerivePciId: \\_SB_.PCI0.RP02.PXCS -> bus 0 dev 28 func 1
SMP: AP CPU #1 Launched!
cpu1 AP:
     ID: 0x01000000   VER: 0x00050014 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   cmci: 0x00000000
ioapic0: routinCg PiUnt1pi:n  1l o(cal APIC error 0x80ISA IRQ 1
) to lapic 1 vector 48
ioapic0: routing intpin 12 (ISA IRQ 12) to lapic 1 vector 49
ioapic0: routing intpin 18 (PCI IRQ 18) to lapic 1 vector 50
ioapic0: routing intpin 21 (PCI IRQ 21) to lapic 1 vector 51
msi: Assigning MSI IRQ 257 to local APIC 1 vector 52
msi: Assigning MSI IRQ 259 to local APIC 1 vector 53
WARNING: WITNESS option enabled, expect reduced performance.
ugen0.1: <Intel> at usbus0ugen1.1: <Intel> at usbus1

uhub0: <Intel UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus0
uhub1: <Intel UHCI root HUB, class 9/0, rev 1.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 EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus3
ugen4.1: <Intel> at usbus4ugen5.1: <Intel> at usbus5

uhub4: <Intel UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus4
uhub5: <Intel UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus5
ugen6.1: <Intel> at usbus6
ugen7.1: <Intel> at usbus7
uhub6: <Intel UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus6
uhub7: <Intel EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus7
battery0: battery initialization done, tried 1 times
acpi_lid0: Lid opened
acpi_lid0: Lid opened
Root mount waiting for: usbus7 usbus6 usbus5 usbus4 usbus3 usbus2 usbus1 usbus0
AcpiOsDerivePciId: \\_SB_.PCI0.RP03.PXCS -> bus 0 dev 28 func 2
AcpiOsDerivePciId: \\_SB_.PCI0.RP06.PXCS -> bus 0 dev 28 func 5
acpi_acad0: On Line
acpi_acad0: acline initialization done, tried 1 times
uhub1: 2 ports with 2 removable, self powered
uhub0: 2 ports with 2 removable, self powered
uhub2: 2 ports with 2 removable, self powered
uhub5: 2 ports with 2 removable, self powered
uhub4: 2 ports with 2 removable, self powered
uhub6: 2 ports with 2 removable, self powered
Root mount waiting for: usbus7 usbus3
Root mount waiting for: usbus7 usbus3
uhub7: 6 ports with 6 removable, self powered
uhub3: 6 ports with 6 removable, self powered
Root mount waiting for: usbus7
Root mount waiting for: usbus7
Root mount waiting for: usbus7
Root mount waiting for: usbus7
Root mount waiting for: usbus7
ugen7.2: <(null)> at usbus7 (disconnected)
Root mount waiting for: usbus7
Trying to mount root from ufs:/dev/gpt/part0
ct_to_ts([2010-06-19 23:14:47]) = 1276989287.000000000
start_init: trying /sbin/init
acpi_lid0: Lid opened
acpi_lid0: Lid opened
Linux ELF exec handler installed
linprocfs registered
ugen6.2: <Broadcom> at usbus6
uhub8: <Broadcom BCM2046B1, class 9/0, rev 2.00/1.00, addr 2> on usbus6
lagg0: bpf attached
uhub8: 3 ports with 0 removable, self powered
ugen6.3: <vendor 0x413c> at usbus6
ukbd0: <vendor 0x413c product 0x8157, class 0/0, rev 2.00/1.00, addr 3> on usbus6
kbd2 at ukbd0
kbd2: ukbd0, generic (0), config:0x0, flags:0x3d0000
ugen6.4: <vendor 0x413c> at usbus6
ums0: <vendor 0x413c product 0x8158, class 0/0, rev 2.00/1.00, addr 4> on usbus6
ums0: 3 buttons and [XY] coordinates ID=2
firmware: 'iwn5000fw' version 0: 353240 bytes loaded at 0xffffffff80e340b0
wlan0: bpf attached
wlan0: bpf attached
wlan0: Ethernet address: 00:22:19:e5:ca:51
bge0: Disabling fastboot
bge0: Disabling fastboot
wlan0: link state changed to UP
lagg0: link state changed to UP
acpi_lid0: Lid opened
acpi_lid0: Lid opened
drm0: [MPSAFE]
drm0: [ITHREAD]
system power profile changed to 'economy'
acpi_acad0: Off Line
lock order reversal:
 1st 0xffffff80515cc498 bufwait (bufwait) @ /usr/src/sys/kern/vfs_bio.c:2608
 2nd 0xffffff00b24c5c00 dirhash (dirhash) @ /usr/src/sys/ufs/ufs/ufs_dirhash.c:283
KDB: stack backtrace:
db_trace_self_wrapper() at db_trace_self_wrapper+0x2a
_witness_debugger() at _witness_debugger+0x2e
witness_checkorder() at witness_checkorder+0x81e
_sx_xlock() at _sx_xlock+0x55
ufsdirhash_acquire() at ufsdirhash_acquire+0x33
ufsdirhash_add() at ufsdirhash_add+0x19
ufs_direnter() at ufs_direnter+0x8bc
ufs_makeinode() at ufs_makeinode+0x250
VOP_CREATE_APV() at VOP_CREATE_APV+0x8d
vn_open_cred() at vn_open_cred+0x46a
kern_openat() at kern_openat+0x179
syscallenter() at syscallenter+0xf0
syscall() at syscall+0x4c
Xfast_syscall() at Xfast_syscall+0xe1
--- syscall (5, FreeBSD ELF64, open), rip = 0x80198faec, rsp = 0x7fffffffd228, rbp = 0x1 ---
acquiring duplicate lock of same type: "ftlk"
 1st ftlk @ /usr/src/sys/modules/linux/../../compat/linux/linux_futex.c:177
 2nd ftlk @ /usr/src/sys/modules/linux/../../compat/linux/linux_futex.c:203
KDB: stack backtrace:
db_trace_self_wrapper() at db_trace_self_wrapper+0x2a
_witness_debugger() at _witness_debugger+0x2e
witness_checkorder() at witness_checkorder+0x8ef
_sx_xlock() at _sx_xlock+0x55
futex_get0() at futex_get0+0xfe
linux_sys_futex() at linux_sys_futex+0x96
syscallenter() at syscallenter+0xf0
ia32_syscall() at ia32_syscall+0x4b
Xint0x80_syscall() at Xint0x80_syscall+0x95
--- syscall (240, Linux ELF32, linux_sys_futex), rip = 0x28799533, rsp = 0xffffcd0c, rbp = 0x4000001 ---

[-- Attachment #3 --]
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 #0 r209256: Thu Jun 17 12:10:23 CDT 2010
    root@adamo:/usr/obj/usr/src/sys/ADAMO amd64
WARNING: WITNESS option enabled, expect reduced performance.
Preloaded elf kernel "/boot/kernel.old/kernel" at 0xffffffff80d07000.
Preloaded elf obj module "/boot/kernel.old/miibus.ko" at 0xffffffff80d07270.
Preloaded elf obj module "/boot/kernel.old/if_bge.ko" at 0xffffffff80d07860.
Preloaded elf obj module "/boot/kernel.old/sound.ko" at 0xffffffff80d07ed0.
Preloaded elf obj module "/boot/kernel.old/snd_hda.ko" at 0xffffffff80d08580.
Preloaded elf obj module "/boot/kernel.old/usb.ko" at 0xffffffff80d08bb0.
Preloaded elf obj module "/boot/kernel.old/uhid.ko" at 0xffffffff80d09258.
Preloaded elf obj module "/boot/kernel.old/ukbd.ko" at 0xffffffff80d09808.
Preloaded elf obj module "/boot/kernel.old/ums.ko" at 0xffffffff80d09e38.
Preloaded elf obj module "/boot/kernel.old/umass.ko" at 0xffffffff80d0a3e0.
Preloaded elf obj module "/boot/kernel.old/acpi_video.ko" at 0xffffffff80d0a990.
Preloaded /boot/zfs/zpool.cache "/boot/zfs/zpool.cache" at 0xffffffff80d0af40.
Preloaded elf obj module "/boot/kernel.old/drm.ko" at 0xffffffff80d0afa0.
Preloaded elf obj module "/boot/kernel.old/i915.ko" at 0xffffffff80d0b648.
Preloaded elf obj module "/boot/kernel.old/ehci.ko" at 0xffffffff80d0bbf8.
Preloaded elf obj module "/boot/kernel.old/uhci.ko" at 0xffffffff80d0c1a8.
Preloaded elf obj module "/boot/kernel.old/ucom.ko" at 0xffffffff80d0c758.
Preloaded elf obj module "/boot/kernel.old/umct.ko" at 0xffffffff80d0cf08.
Preloaded elf obj module "/boot/kernel.old/uplcom.ko" at 0xffffffff80d0d4b8.
Preloaded elf obj module "/boot/kernel.old/if_iwn.ko" at 0xffffffff80d0da68.
Preloaded elf obj module "/boot/kernel.old/if_lagg.ko" at 0xffffffff80d0e058.
Timecounter "i8254" frequency 1193182 Hz quality 0
Calibrating TSC clock ... TSC clock: 1400060557 Hz
CPU: Intel(R) Core(TM)2 Duo CPU     U9400  @ 1.40GHz (1400.06-MHz K8-class CPU)
  Origin = "GenuineIntel"  Id = 0x10676  Family = 6  Model = 17  Stepping = 6
  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=0x8e3fd<SSE3,DTES64,MON,DS_CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,SSE4.1>
  AMD Features=0x20100800<SYSCALL,NX,LM>
  AMD Features2=0x1<LAHF>
  TSC: P-state invariant
real memory  = 4294967296 (4096 MB)
Physical memory chunk(s):
0x0000000000001000 - 0x0000000000097fff, 618496 bytes (151 pages)
0x0000000000d3d000 - 0x00000000b3e20fff, 3004055552 bytes (733412 pages)
0x00000000bd4a7000 - 0x00000000bd5cffff, 1216512 bytes (297 pages)
0x00000000bd60f000 - 0x00000000bd708fff, 1024000 bytes (250 pages)
0x00000000bd90f000 - 0x00000000bd917fff, 36864 bytes (9 pages)
0x00000000bd91f000 - 0x00000000bd962fff, 278528 bytes (68 pages)
0x00000000bd99f000 - 0x00000000bd9e2fff, 278528 bytes (68 pages)
0x00000000bd9ff000 - 0x00000000bd9fffff, 4096 bytes (1 pages)
0x0000000100000000 - 0x000000013ffeffff, 1073676288 bytes (262128 pages)
avail memory = 4057858048 (3869 MB)
ACPI APIC Table: <PTLTD  	 APIC  >
INTR: Adding local APIC 1 as a target
FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs
FreeBSD/SMP: 1 package(s) x 2 core(s)
 cpu0 (BSP): APIC ID:  0
 cpu1 (AP): APIC ID:  1
APIC: CPU 0 has ACPI ID 0
APIC: CPU 1 has ACPI ID 1
x86bios:   IVT 0x000000-0x0004ff at 0xffffff0000000000
x86bios:  SSEG 0x010000-0x01ffff at 0xffffff8000016000
x86bios:  EBDA 0x09c000-0x09ffff at 0xffffff000009c000
x86bios:   ROM 0x0a0000-0x0effff at 0xffffff00000a0000
WARNING: VIMAGE (virtualized network stack) is a highly experimental feature.
ULE: setup cpu 0
ULE: setup cpu 1
ACPI: RSDP 0xf78e0 00024 (v2 PTLTD )
ACPI: XSDT 0xbd9f76c5 0007C (v1 DELL    QA09    06040000  LTP 00000000)
ACPI: FACP 0xbd9e7000 000F4 (v3 INTEL  CRESTLNE 06040000 ALAN 00000001)
ACPI: DSDT 0xbd9e8000 0740C (v2 Intel  CANTIGA  06040000 INTL 20050624)
ACPI: FACS 0xbd99efc0 00040
ACPI: HPET 0xbd9fed16 00038 (v1 INTEL  CRESTLNE 06040000 LOHR 0000005A)
ACPI: MCFG 0xbd9fed4e 0003C (v1 INTEL  CRESTLNE 06040000 LOHR 0000005A)
ACPI: APIC 0xbd9fed8a 00068 (v1 PTLTD  ? APIC   06040000  LTP 00000000)
ACPI: BOOT 0xbd9fedf2 00028 (v1 PTLTD  $SBFTBL$ 06040000  LTP 00000001)
ACPI: SLIC 0xbd9fee1a 00176 (v1 DELL    QA09    06040000  LTP 00000000)
ACPI: OSFR 0xbd9fef90 00070 (v1 DELL   DELL     06040000 ASL  00000061)
ACPI: SSDT 0xbd9f7769 00039 (v1 BrtRef  DD01BRT 00001000 INTL 20050624)
ACPI: SSDT 0xbd9e6000 00655 (v1  PmRef    CpuPm 00003000 INTL 20050624)
ACPI: SSDT 0xbd9e5000 00259 (v1  PmRef  Cpu0Tst 00003000 INTL 20050624)
ACPI: SSDT 0xbd9e4000 0020F (v1  PmRef    ApTst 00003000 INTL 20050624)
MADT: Found IO APIC ID 2, Interrupt 0 at 0xfec00000
ioapic0: Routing external 8259A's -> intpin 0
lapic0: Routing NMI -> LINT1
lapic0: LINT1 trigger: edge
lapic0: LINT1 polarity: high
lapic1: Routing NMI -> LINT1
lapic1: LINT1 trigger: edge
lapic1: LINT1 polarity: high
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: 0x00050014 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   cmci: 0x00000000
wlan: <802.11 Link Layer>
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
VESA: information block
0000   56 45 53 41 00 03 00 01 00 01 01 00 00 00 40 00
0010   00 01 ff 01 00 01 33 01 00 01 45 01 00 01 69 01
0020   00 01 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 72 29 43 61 6e 74 69 67 61 20
0110   47 72 61 70 68 69 63 73 20 43 68 69 70 20 41 63
0120   63 65 6c 65 72 61 74 65 64 20 56 47 41 20 42 49
0130   4f 53 00 49 6e 74 65 6c 20 43 6f 72 70 6f 72 61
0140   74 69 6f 6e 00 49 6e 74 65 6c 28 72 29 43 61 6e
0150   74 69 67 61 20 47 72 61 70 68 69 63 73 20 43 6f
0160   6e 74 72 6f 6c 6c 65 72 00 48 61 72 64 77 61 72
0170   65 20 56 65 72 73 69 6f 6e 20 30 2e 30 00 00 00
0180   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
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:0xffffff8000062040 (1000040)
VESA: Intel(r)Cantiga Graphics Chip Accelerated VGA BIOS
VESA: Intel Corporation Intel(r)Cantiga Graphics Controller Hardware Version 0.0
io: <I/O>
kbd: new array size 4
kbd1 at kbdmux0
mem: <memory>
null: <null device, zero device>
nfslock: pseudo-device
random: <entropy source, Software, Yarrow>
CPU0: local APIC error 0x80
acpi0: <DELL QA09   > on motherboard
PCIe: Memory Mapped configuration base @ 0xe0000000
ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 0 vector 48
acpi0: [MPSAFE]
acpi0: [ITHREAD]
AcpiOsDerivePciId: \\_SB_.PCI0.HBUS -> bus 0 dev 0 func 0
AcpiOsDerivePciId: \\_SB_.PCI0.RP04.PXCS -> bus 0 dev 28 func 3
acpi0: Power Button (fixed)
AcpiOsDerivePciId: \\_SB_.PCI0.LPCB.LPC0 -> bus 0 dev 31 func 0
AcpiOsDerivePciId: \\_SB_.PCI0.LPCB.LPC1 -> bus 0 dev 31 func 0
acpi_hpet0: vend: 0x8086 rev: 0x1 num: 4 hz: 14318180 opts: legacy_route 64-bit
Timecounter "HPET" frequency 14318180 Hz quality 900
ACPI timer: 0/3 0/3 1/1 0/3 0/3 1/2 1/2 0/3 0/3 0/3 -> 3
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
ACPI: SSDT 0xbd91ac20 00265 (v1  PmRef  Cpu0Ist 00003000 INTL 20050624)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0 00265 (v1  PmRef  Cpu0Ist 00003000 INTL 20050624)
ACPI: SSDT 0xbd918620 00575 (v1  PmRef  Cpu0Cst 00003001 INTL 20050624)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0 00575 (v1  PmRef  Cpu0Cst 00003001 INTL 20050624)
cpu1: <ACPI CPU> on acpi0
ACPI: SSDT 0xbd919ca0 001CF (v1  PmRef    ApIst 00003000 INTL 20050624)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0 001CF (v1  PmRef    ApIst 00003000 INTL 20050624)
ACPI: SSDT 0xbd919f20 0008D (v1  PmRef    ApCst 00003000 INTL 20050624)
ACPI: Dynamic OEM Table Load:
ACPI: SSDT 0 0008D (v1  PmRef    ApCst 00003000 INTL 20050624)
acpi_ec0: <Embedded Controller: GPE 0x1c> port 0x62,0x66 on acpi0
pci_link0:        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_link1:        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
pci_link2:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   10   N     0  1 3 4 5 6 7 10 12 14 15
  Validation          0   10   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  255   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_link5:        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
pci_link6:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   10   N     0  1 3 4 5 6 7 10 12 14 15
  Validation          0   10   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    7   N     0  1 3 4 5 6 7 11 12 14 15
  Validation          0    7   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=0x2a40, revid=0x07
	domain=0, bus=0, slot=0, func=0
	class=06-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0106, statreg=0x2090, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found->	vendor=0x8086, dev=0x2a42, revid=0x07
	domain=0, bus=0, slot=2, func=0
	class=03-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0007, statreg=0x0090, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=5
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message
	map[10]: type Memory, range 64, base 0xf8000000, size 22, enabled
	map[18]: type Prefetchable Memory, range 64, base 0xd0000000, size 28, enabled
	map[20]: type I/O Port, range 32, base 0x1800, size  3, enabled
pcib0: matched entry for 0.2.INTA
pcib0: slot 2 INTA hardwired to IRQ 16
found->	vendor=0x8086, dev=0x2a43, revid=0x07
	domain=0, bus=0, slot=2, func=1
	class=03-80-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0007, statreg=0x0090, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	powerspec 3  supports D0 D3  current D0
	map[10]: type Memory, range 64, base 0xf8400000, size 20, enabled
found->	vendor=0x8086, dev=0x2937, revid=0x03
	domain=0, bus=0, slot=26, func=0
	class=0c-03-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=5
	map[20]: type I/O Port, range 32, base 0x1820, size  5, enabled
pcib0: matched entry for 0.26.INTA
pcib0: slot 26 INTA hardwired to IRQ 16
found->	vendor=0x8086, dev=0x2938, revid=0x03
	domain=0, bus=0, slot=26, func=1
	class=0c-03-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=11
	map[20]: type I/O Port, range 32, base 0x1840, size  5, enabled
pcib0: matched entry for 0.26.INTB
pcib0: slot 26 INTB hardwired to IRQ 21
found->	vendor=0x8086, dev=0x2939, revid=0x03
	domain=0, bus=0, slot=26, func=2
	class=0c-03-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=10
	map[20]: type I/O Port, range 32, base 0x1860, size  5, enabled
pcib0: matched entry for 0.26.INTC
pcib0: slot 26 INTC hardwired to IRQ 19
found->	vendor=0x8086, dev=0x293c, revid=0x03
	domain=0, bus=0, slot=26, func=7
	class=0c-03-20, hdrtype=0x00, mfdev=0
	cmdreg=0x0106, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=10
	powerspec 2  supports D0 D3  current D0
	map[10]: type Memory, range 32, base 0xf8804800, size 10, enabled
pcib0: matched entry for 0.26.INTC
pcib0: slot 26 INTC hardwired to IRQ 19
found->	vendor=0x8086, dev=0x293e, revid=0x03
	domain=0, bus=0, slot=27, func=0
	class=04-03-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0106, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=10
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 64, base 0xf8600000, size 14, enabled
pcib0: matched entry for 0.27.INTA
pcib0: slot 27 INTA hardwired to IRQ 22
found->	vendor=0x8086, dev=0x2940, revid=0x03
	domain=0, bus=0, slot=28, func=0
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0107, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x04 (1000 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 17
found->	vendor=0x8086, dev=0x2942, revid=0x03
	domain=0, bus=0, slot=28, func=1
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0107, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x04 (1000 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=5
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message
pcib0: matched entry for 0.28.INTB
pcib0: slot 28 INTB hardwired to IRQ 16
found->	vendor=0x8086, dev=0x294a, revid=0x03
	domain=0, bus=0, slot=28, func=5
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0107, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x04 (1000 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=5
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message
pcib0: matched entry for 0.28.INTB
pcib0: slot 28 INTB hardwired to IRQ 16
found->	vendor=0x8086, dev=0x2934, revid=0x03
	domain=0, bus=0, slot=29, func=0
	class=0c-03-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=7
	map[20]: type I/O Port, range 32, base 0x1880, size  5, enabled
pcib0: matched entry for 0.29.INTA
pcib0: slot 29 INTA hardwired to IRQ 23
found->	vendor=0x8086, dev=0x2935, revid=0x03
	domain=0, bus=0, slot=29, func=1
	class=0c-03-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=10
	map[20]: type I/O Port, range 32, base 0x18a0, size  5, enabled
pcib0: matched entry for 0.29.INTB
pcib0: slot 29 INTB hardwired to IRQ 19
found->	vendor=0x8086, dev=0x2936, revid=0x03
	domain=0, bus=0, slot=29, func=2
	class=0c-03-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=10
	map[20]: type I/O Port, range 32, base 0x18c0, size  5, enabled
pcib0: matched entry for 0.29.INTC
pcib0: slot 29 INTC hardwired to IRQ 18
found->	vendor=0x8086, dev=0x293a, revid=0x03
	domain=0, bus=0, slot=29, func=7
	class=0c-03-20, hdrtype=0x00, mfdev=0
	cmdreg=0x0106, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=7
	powerspec 2  supports D0 D3  current D0
	map[10]: type Memory, range 32, base 0xf8804c00, size 10, enabled
pcib0: matched entry for 0.29.INTA
pcib0: slot 29 INTA hardwired to IRQ 23
found->	vendor=0x8086, dev=0x2448, revid=0x93
	domain=0, bus=0, slot=30, func=0
	class=06-04-01, hdrtype=0x01, mfdev=0
	cmdreg=0x0107, statreg=0x0010, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x04 (1000 ns), maxlat=0x00 (0 ns)
found->	vendor=0x8086, dev=0x2917, revid=0x03
	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=0x2929, revid=0x03
	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 16 messages
	map[10]: type I/O Port, range 32, base 0x1818, size  3, enabled
	map[14]: type I/O Port, range 32, base 0x180c, size  2, enabled
	map[18]: type I/O Port, range 32, base 0x1810, size  3, enabled
	map[1c]: type I/O Port, range 32, base 0x1808, size  2, enabled
	map[20]: type I/O Port, range 32, base 0x18e0, size  5, enabled
	map[24]: type Memory, range 32, base 0xf8804000, size 11, enabled
pcib0: matched entry for 0.31.INTB
pcib0: slot 31 INTB hardwired to IRQ 19
found->	vendor=0x8086, dev=0x2930, revid=0x03
	domain=0, bus=0, slot=31, func=3
	class=0c-05-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0103, statreg=0x0280, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=10
	map[10]: type Memory, range 64, base 0, size  8, enabled
	map[20]: type I/O Port, range 32, base 0x1c00, size  5, enabled
pcib0: matched entry for 0.31.INTC
pcib0: slot 31 INTC hardwired to IRQ 19
vgapci0: <VGA-compatible display> port 0x1800-0x1807 mem 0xf8000000-0xf83fffff,0xd0000000-0xdfffffff irq 16 at device 2.0 on pci0
acpi_video0: <ACPI video extension> on vgapci0
found VGA CRT or VESA Compatible Analog Monitor(100), idx#0, port#0, head #0
found Internal/Integrated Digital Flat Panel(400), idx#0, port#0, head #0
found External Digital Monitor(300), idx#0, port#0, head #0
found External Digital Monitor(301), idx#1, port#0, head #0
found External Digital Monitor(302), idx#2, port#0, head #0
agp0: <Intel GM45 SVGA controller> on vgapci0
agp0: aperture size is 256M, detected 32764k stolen memory
drm0: <Mobile Intel\M-B\M-. GM45 Express Chipset> on vgapci0
vgapci0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 256 to local APIC 0 vector 49
vgapci0: using IRQ 256 for MSI
info: [drm] MSI enabled 1 message(s)
vgapci0: child drm0 requested pci_enable_busmaster
info: [drm] AGP at 0xd0000000 256MB
info: [drm] Initialized i915 1.6.0 20080730
vgapci1: <VGA-compatible display> mem 0xf8400000-0xf84fffff at device 2.1 on pci0
uhci0: <Intel 82801I (ICH9) USB controller> port 0x1820-0x183f irq 16 at device 26.0 on pci0
ioapic0: routing intpin 16 (PCI IRQ 16) to lapic 0 vector 50
uhci0: [MPSAFE]
uhci0: [ITHREAD]
usbus0: <Intel 82801I (ICH9) USB controller> on uhci0
uhci1: <Intel 82801I (ICH9) USB controller> port 0x1840-0x185f irq 21 at device 26.1 on pci0
ioapic0: routing intpin 21 (PCI IRQ 21) to lapic 0 vector 51
uhci1: [MPSAFE]
uhci1: [ITHREAD]
usbus1: <Intel 82801I (ICH9) USB controller> on uhci1
uhci2: <Intel 82801I (ICH9) USB controller> port 0x1860-0x187f irq 19 at device 26.2 on pci0
ioapic0: routing intpin 19 (PCI IRQ 19) to lapic 0 vector 52
uhci2: [MPSAFE]
uhci2: [ITHREAD]
usbus2: <Intel 82801I (ICH9) USB controller> on uhci2
ehci0: <Intel 82801I (ICH9) USB 2.0 controller> mem 0xf8804800-0xf8804bff irq 19 at device 26.7 on pci0
ehci0: [MPSAFE]
ehci0: [ITHREAD]
usbus3: EHCI version 1.0
usbus3: <Intel 82801I (ICH9) USB 2.0 controller> on ehci0
hdac0: <Intel 82801I High Definition Audio Controller> mem 0xf8600000-0xf8603fff 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 53
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 17 at device 28.0 on pci0
pcib1:   domain            0
pcib1:   secondary bus     2
pcib1:   subordinate bus   3
pcib1:   I/O decode        0x2000-0x2fff
pcib1:   memory decode     0xf4000000-0xf5ffffff
pcib1:   prefetched decode 0xf0000000-0xf1ffffff
pci2: <ACPI PCI bus> on pcib1
pci2: domain=0, physical bus=2
pcib2: <ACPI PCI-PCI bridge> irq 16 at device 28.1 on pci0
pcib2:   domain            0
pcib2:   secondary bus     4
pcib2:   subordinate bus   5
pcib2:   I/O decode        0x3000-0x3fff
pcib2:   memory decode     0xf6000000-0xf7ffffff
pcib2:   prefetched decode 0xf2000000-0xf3ffffff
pci4: <ACPI PCI bus> on pcib2
pci4: domain=0, physical bus=4
found->	vendor=0x8086, dev=0x4235, revid=0x00
	domain=0, bus=4, slot=0, func=0
	class=02-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0106, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=11
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 64, base 0xf6000000, size 13, enabled
pcib2: requested memory range 0xf6000000-0xf6001fff: good
pcib2: matched entry for 4.0.INTA
pcib2: slot 0 INTA hardwired to IRQ 17
iwn0: <Intel(R) PRO/Wireless 5300> mem 0xf6000000-0xf6001fff irq 17 at device 0.0 on pci4
iwn0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 258 to local APIC 0 vector 54
iwn0: using IRQ 258 for MSI
iwn0: MIMO 3T3R, MoW, address 00:21:6a:77:cd:92
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 16 at device 28.5 on pci0
pcib3:   domain            0
pcib3:   secondary bus     6
pcib3:   subordinate bus   6
pcib3:   I/O decode        0xf000-0xfff
pcib3:   memory decode     0xf8500000-0xf85fffff
pcib3:   no prefetched decode
pci6: <ACPI PCI bus> on pcib3
pci6: domain=0, physical bus=6
found->	vendor=0x14e4, dev=0x1698, revid=0x10
	domain=0, bus=6, slot=0, func=0
	class=02-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0106, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=11
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 64, base 0xf8500000, size 16, enabled
pcib3: requested memory range 0xf8500000-0xf850ffff: good
pcib3: matched entry for 6.0.INTA
pcib3: slot 0 INTA hardwired to IRQ 17
bge0: <Broadcom NetLink Gigabit Ethernet Controller    , ASIC rev. 0x5784100> mem 0xf8500000-0xf850ffff irq 17 at device 0.0 on pci6
bge0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 259 to local APIC 0 vector 55
bge0: using IRQ 259 for MSI
bge0: CHIP ID 0x05784100; ASIC REV 0x5784; CHIP REV 0x57841; PCI-E
bge0: Disabling fastboot
bge0: Disabling fastboot
miibus0: <MII bus> on bge0
brgphy0: <BCM5784 10/100/1000baseTX PHY> PHY 1 on miibus0
brgphy0: OUI 0x0050ef, model 0x003a, rev. 4
brgphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto
bge0: bpf attached
bge0: Ethernet address: 00:22:19:e5:ca:51
bge0: [MPSAFE]
bge0: [FILTER]
uhci3: <Intel 82801I (ICH9) USB controller> port 0x1880-0x189f irq 23 at device 29.0 on pci0
ioapic0: routing intpin 23 (PCI IRQ 23) to lapic 0 vector 56
uhci3: [MPSAFE]
uhci3: [ITHREAD]
usbus4: <Intel 82801I (ICH9) USB controller> on uhci3
uhci4: <Intel 82801I (ICH9) USB controller> port 0x18a0-0x18bf irq 19 at device 29.1 on pci0
uhci4: [MPSAFE]
uhci4: [ITHREAD]
usbus5: <Intel 82801I (ICH9) USB controller> on uhci4
uhci5: <Intel 82801I (ICH9) USB controller> port 0x18c0-0x18df irq 18 at device 29.2 on pci0
ioapic0: routing intpin 18 (PCI IRQ 18) to lapic 0 vector 57
uhci5: [MPSAFE]
uhci5: [ITHREAD]
usbus6: <Intel 82801I (ICH9) USB controller> on uhci5
ehci1: <Intel 82801I (ICH9) USB 2.0 controller> mem 0xf8804c00-0xf8804fff irq 23 at device 29.7 on pci0
ehci1: [MPSAFE]
ehci1: [ITHREAD]
usbus7: EHCI version 1.0
usbus7: <Intel 82801I (ICH9) USB 2.0 controller> on ehci1
pcib4: <ACPI PCI-PCI bridge> at device 30.0 on pci0
pcib4:   domain            0
pcib4:   secondary bus     7
pcib4:   subordinate bus   7
pcib4:   I/O decode        0xf000-0xfff
pcib4:   no prefetched decode
pcib4:   Subtractively decoded bridge.
pcib4: could not get PCI interrupt routing table for \\_SB_.PCI0.P0P1 - AE_NOT_FOUND
pci7: <ACPI PCI bus> on pcib4
pci7: domain=0, physical bus=7
isab0: <PCI-ISA bridge> at device 31.0 on pci0
isa0: <ISA bus> on isab0
atapci0: <Intel (ID=29298086) AHCI controller> port 0x1818-0x181f,0x180c-0x180f,0x1810-0x1817,0x1808-0x180b,0x18e0-0x18ff mem 0xf8804000-0xf88047ff irq 19 at device 31.2 on pci0
atapci0: [MPSAFE]
atapci0: [ITHREAD]
atapci0: AHCI v1.20 controller with 4 3Gbps ports, PM supported
atapci0: Caps: 64bit NCQ SNTF ALP AL CLO 3Gbps PM PMD SSC PSC 32cmd CCC eSATA 4ports
ata2: <ATA channel 0> on atapci0
ata2: [MPSAFE]
ata2: [ITHREAD]
ata3: <ATA channel 1> on atapci0
ata3: [MPSAFE]
ata3: [ITHREAD]
pci0: <serial bus, SMBus> at device 31.3 (no driver attached)
acpi_button0: <Power Button> on acpi0
acpi_button1: <Sleep Button> on acpi0
acpi_lid0: <Control Method Lid Switch> on acpi0
acpi_lid0: enable wake failed
acpi_acad0: <AC Adapter> on acpi0
battery0: <ACPI Control Method Battery> on acpi0
acpi_tz0: <Thermal Zone> on acpi0
acpi_tz1: <Thermal Zone> on acpi0
acpi_tz2: <Thermal Zone> on acpi0
atrtc0: <AT realtime clock> port 0x70-0x77 irq 8 on acpi0
atrtc0: Warning: Couldn't map I/O.
atrtc0: registered as a time-of-day clock (resolution 1000000us)
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 0047
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 58
atkbd0: [GIANT-LOCKED]
atkbd0: [ITHREAD]
psm0: unable to allocate IRQ
psmcpnp0: <PS/2 mouse port> irq 12 on acpi0
psm0: current command byte:0047
psm0: <PS/2 Mouse> irq 12 on atkbdc0
ioapic0: routing intpin 12 (ISA IRQ 12) to lapic 0 vector 59
psm0: [GIANT-LOCKED]
psm0: [ITHREAD]
psm0: model Synaptics Touchpad, device ID 0-00, 3 buttons
psm0: config:00006000, flags:00000008, packet size:6
psm0: syncmask:c0, syncbits:00
acpi0: wakeup code va 0xffffff8074deb000 pa 0x4000
isa_probe_children: disabling PnP devices
atkbdc: atkbdc0 already exists; skipping it
atrtc: atrtc0 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
est0: <Enhanced SpeedStep Frequency Control> on cpu0
est0: Invalid id16 (set, cur) = (2075, 1810)
est0: Can't check freq 1401, it may be invalid
est1: <Enhanced SpeedStep Frequency Control> on cpu1
est1: Invalid id16 (set, cur) = (2075, 1810)
est1: Can't check freq 1401, it may be invalid
Device configuration finished.
Reducing kern.maxvnodes 255260 -> 100000
procfs registered
ioapic0: routing intpin 2 (ISA IRQ 0) to lapic 0 vector 60
Timecounter "TSC" frequency 1400060557 Hz quality -100
Timecounters tick every 10.000 msec
vlan: initialized, using hash tables with chaining
ipfw2 (+ipv6) initialized, divert enabled, nat enabled, rule-based forwarding enabled, default to accept, logging disabled
ipfw0: bpf attached
DUMMYNET 0xffffff000139c180 with IPv6 initialized (100409)
load_dn_sched dn_sched FIFO loaded
load_dn_sched dn_sched PRIO loaded
load_dn_sched dn_sched QFQ loaded
load_dn_sched dn_sched RR loaded
load_dn_sched dn_sched WF2Q+ loaded
lo0: bpf attached
hdac0: Probing codec #0...
hdac0: HDA Codec #0: IDT 92HD73C1
hdac0:  HDA Codec ID: 0x111d7675
hdac0:        Vendor: 0x111d
hdac0:        Device: 0x7675
hdac0:      Revision: 0x02
hdac0:      Stepping: 0x02
hdac0: PCI Subvendor: 0x02b91028
hdac0: 	Found audio FG nid=1 startnode=10 endnode=44 total=34
hdac0: Probing codec #1...
hdac0: HDA Codec #1: Intel G45 HDMI
hdac0:  HDA Codec ID: 0x80862802
hdac0:        Vendor: 0x8086
hdac0:        Device: 0x2802
hdac0:      Revision: 0x00
hdac0:      Stepping: 0x00
hdac0: PCI Subvendor: 0x02b91028
hdac0: 	Found audio FG nid=1 startnode=2 endnode=4 total=2
hdac0: 
hdac0: Processing audio FG cad=0 nid=1...
hdac0: GPIO: 0xc0000008 NumGPIO=8 NumGPO=0 NumGPI=0 GPIWake=1 GPIUnsol=1
hdac0:  nid 10 0x0421101f as  1 seq 15    Headphones  Jack jack  1 loc  4 color   Black misc 0
hdac0:  nid 11 0x400001f1 as 15 seq  1      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 12 0x400001f2 as 15 seq  2      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 13 0x90170110 as  1 seq  0       Speaker Fixed jack  7 loc 16 color Unknown misc 1
hdac0:  nid 14 0x400001f3 as 15 seq  3      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 15 0x400001f0 as 15 seq  0      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 16 0x400001f4 as 15 seq  4      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 17 0x400001f5 as 15 seq  5      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 18 0x400001f6 as 15 seq  6      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 19 0x90a60160 as  6 seq  0           Mic Fixed jack  6 loc 16 color Unknown misc 1
hdac0:  nid 20 0x400001f7 as 15 seq  7      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 34 0x400001f8 as 15 seq  8      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 35 0x400001f9 as 15 seq  9      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0:  nid 36 0x400001fa as 15 seq 10      Line-out  None jack  0 loc  0 color Unknown misc 1
hdac0: Patched pins configuration:
hdac0:  nid 10 0x0421101f as  1 seq 15    Headphones  Jack jack  1 loc  4 color   Black misc 0
hdac0:  nid 11 0x400001f1 as 15 seq  1      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 12 0x400001f2 as 15 seq  2      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 13 0x90170110 as  1 seq  0       Speaker Fixed jack  7 loc 16 color Unknown misc 1
hdac0:  nid 14 0x400001f3 as 15 seq  3      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 15 0x400001f0 as 15 seq  0      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 16 0x400001f4 as 15 seq  4      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 17 0x400001f5 as 15 seq  5      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 18 0x400001f6 as 15 seq  6      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 19 0x90a60160 as  6 seq  0           Mic Fixed jack  6 loc 16 color Unknown misc 1
hdac0:  nid 20 0x400001f7 as 15 seq  7      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 34 0x400001f8 as 15 seq  8      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 35 0x400001f9 as 15 seq  9      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0:  nid 36 0x400001fa as 15 seq 10      Line-out  None jack  0 loc  0 color Unknown misc 1 [DISABLED]
hdac0: 2 associations found:
hdac0: Association 0 (1) out:
hdac0:  Pin nid=13 seq=0
hdac0:  Pin nid=10 seq=15
hdac0: Association 1 (6) in:
hdac0:  Pin nid=19 seq=0
hdac0: Tracing association 0 (1)
hdac0:  Pin 13 traced to DAC 21
hdac0:  Pin 10 traced to DAC 21 and hpredir 0
hdac0: Association 0 (1) trace succeeded
hdac0: Tracing association 1 (6)
hdac0:  Pin 19 traced to ADC 26
hdac0: Association 1 (6) trace succeeded
hdac0: Tracing input monitor
hdac0: Tracing other input monitors
hdac0:  Tracing nid 19 to out
hdac0: Tracing beeper
hdac0: Enabling headphone/speaker audio routing switching:
hdac0: 	as=0 sense nid=10 [UNSOL]
hdac0: Pin sense: nid=10 res=0x7fffffff
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: 0x000e05e0
hdac0:                  16 20 24 bits, 44 48 88 96 192 KHz
hdac0:          IN amp: 0x00270300
hdac0:         OUT amp: 0x80027f7f
hdac0: 
hdac0:             nid: 10
hdac0:            Name: pin: Headphones (Black Jack)
hdac0:      Widget cap: 0x00400183
hdac0:                  UNSOL STEREO
hdac0:     Association: 0 (0x00008000)
hdac0:         Pin cap: 0x0000173f
hdac0:                  ISC TRQD PDC HP OUT IN VREF[ 50 80 GROUND HIZ ]
hdac0:      Pin config: 0x0421101f
hdac0:     Pin control: 0x00000080 HP
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + [DISABLED] <- nid=22 [audio output] [DISABLED]
hdac0:           + [DISABLED] <- nid=23 [audio output] [DISABLED]
hdac0:           + [DISABLED] <- nid=30 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 11 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400183
hdac0:                  UNSOL STEREO
hdac0:         Pin cap: 0x0000173f
hdac0:                  ISC TRQD PDC HP OUT IN VREF[ 50 80 GROUND HIZ ]
hdac0:      Pin config: 0x400001f1
hdac0:     Pin control: 0x00000000
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + <- nid=22 [audio output] [DISABLED]
hdac0:           + <- nid=23 [audio output] [DISABLED]
hdac0:           + <- nid=30 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 12 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400183
hdac0:                  UNSOL STEREO
hdac0:         Pin cap: 0x00001737
hdac0:                  ISC TRQD PDC OUT IN VREF[ 50 80 GROUND HIZ ]
hdac0:      Pin config: 0x400001f2
hdac0:     Pin control: 0x00000000
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + <- nid=22 [audio output] [DISABLED]
hdac0:           + <- nid=23 [audio output] [DISABLED]
hdac0:           + <- nid=30 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 13
hdac0:            Name: pin: Speaker (Fixed)
hdac0:      Widget cap: 0x00400183
hdac0:                  UNSOL STEREO
hdac0:     Association: 0 (0x00000001)
hdac0:         Pin cap: 0x0000003f
hdac0:                  ISC TRQD PDC HP OUT IN
hdac0:      Pin config: 0x90170110
hdac0:     Pin control: 0x00000040 OUT
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + [DISABLED] <- nid=22 [audio output] [DISABLED]
hdac0:           + [DISABLED] <- nid=23 [audio output] [DISABLED]
hdac0:           + [DISABLED] <- nid=30 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 14 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400183
hdac0:                  UNSOL STEREO
hdac0:         Pin cap: 0x00001737
hdac0:                  ISC TRQD PDC OUT IN VREF[ 50 80 GROUND HIZ ]
hdac0:      Pin config: 0x400001f3
hdac0:     Pin control: 0x00000000
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + <- nid=22 [audio output] [DISABLED]
hdac0:           + <- nid=23 [audio output] [DISABLED]
hdac0:           + <- nid=30 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 15 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400183
hdac0:                  UNSOL STEREO
hdac0:         Pin cap: 0x00000037
hdac0:                  ISC TRQD PDC OUT IN
hdac0:      Pin config: 0x400001f0
hdac0:     Pin control: 0x00000000
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + <- nid=22 [audio output] [DISABLED]
hdac0:           + <- nid=23 [audio output] [DISABLED]
hdac0:           + <- nid=30 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 16 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400183
hdac0:                  UNSOL STEREO
hdac0:         Pin cap: 0x00000037
hdac0:                  ISC TRQD PDC OUT IN
hdac0:      Pin config: 0x400001f4
hdac0:     Pin control: 0x00000000
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + <- nid=22 [audio output] [DISABLED]
hdac0:           + <- nid=23 [audio output] [DISABLED]
hdac0:           + <- nid=30 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 17 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400183
hdac0:                  UNSOL STEREO
hdac0:         Pin cap: 0x00000037
hdac0:                  ISC TRQD PDC OUT IN
hdac0:      Pin config: 0x400001f5
hdac0:     Pin control: 0x00000000
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + <- nid=22 [audio output] [DISABLED]
hdac0:           + <- nid=23 [audio output] [DISABLED]
hdac0:           + <- nid=30 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 18 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400081
hdac0:                  UNSOL STEREO
hdac0:         Pin cap: 0x00000024
hdac0:                  PDC IN
hdac0:      Pin config: 0x400001f6
hdac0:     Pin control: 0x00000000
hdac0: 
hdac0:             nid: 19
hdac0:            Name: pin: Mic (Fixed)
hdac0:      Widget cap: 0x00400003
hdac0:                  STEREO
hdac0:     Association: 1 (0x00000001)
hdac0:             OSS: monitor (monitor)
hdac0:         Pin cap: 0x00000020
hdac0:                  IN
hdac0:      Pin config: 0x90a60160
hdac0:     Pin control: 0x00000020 IN
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0: 
hdac0:             nid: 20 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400003
hdac0:                  STEREO
hdac0:         Pin cap: 0x00000020
hdac0:                  IN
hdac0:      Pin config: 0x400001f7
hdac0:     Pin control: 0x00000000
hdac0:       Input amp: 0x00270300
hdac0:                  mute=0 step=3 size=39 offset=0
hdac0: 
hdac0:             nid: 21
hdac0:            Name: audio output
hdac0:      Widget cap: 0x000d0c05
hdac0:                  LRSWAP PWR STEREO
hdac0:     Association: 0 (0x00008001)
hdac0:             OSS: pcm (pcm)
hdac0:      Stream cap: 0x00000001
hdac0:                  PCM
hdac0:         PCM cap: 0x000e05e0
hdac0:                  16 20 24 bits, 44 48 88 96 192 KHz
hdac0:      Output amp: 0x80027f7f
hdac0:                  mute=1 step=127 size=2 offset=127
hdac0: 
hdac0:             nid: 22 [DISABLED]
hdac0:            Name: audio output
hdac0:      Widget cap: 0x000d0c05
hdac0:                  LRSWAP PWR STEREO
hdac0:      Stream cap: 0x00000001
hdac0:                  PCM
hdac0:         PCM cap: 0x000e05e0
hdac0:                  16 20 24 bits, 44 48 88 96 192 KHz
hdac0:      Output amp: 0x80027f7f
hdac0:                  mute=1 step=127 size=2 offset=127
hdac0: 
hdac0:             nid: 23 [DISABLED]
hdac0:            Name: audio output
hdac0:      Widget cap: 0x000d0c05
hdac0:                  LRSWAP PWR STEREO
hdac0:      Stream cap: 0x00000001
hdac0:                  PCM
hdac0:         PCM cap: 0x000e05e0
hdac0:                  16 20 24 bits, 44 48 88 96 192 KHz
hdac0:      Output amp: 0x80027f7f
hdac0:                  mute=1 step=127 size=2 offset=127
hdac0: 
hdac0:             nid: 24 [DISABLED]
hdac0:            Name: vendor widget
hdac0:      Widget cap: 0x00fd0c05
hdac0:                  LRSWAP PWR STEREO
hdac0:      Output amp: 0x80027f7f
hdac0:                  mute=1 step=127 size=2 offset=127
hdac0: 
hdac0:             nid: 25 [DISABLED]
hdac0:            Name: vendor widget
hdac0:      Widget cap: 0x00fd0c05
hdac0:                  LRSWAP PWR STEREO
hdac0:      Output amp: 0x80027f7f
hdac0:                  mute=1 step=127 size=2 offset=127
hdac0: 
hdac0:             nid: 26
hdac0:            Name: audio input
hdac0:      Widget cap: 0x001d0541
hdac0:                  PWR PROC STEREO
hdac0:     Association: 1 (0x00000001)
hdac0:      Stream cap: 0x00000001
hdac0:                  PCM
hdac0:         PCM cap: 0x000e05e0
hdac0:                  16 20 24 bits, 44 48 88 96 192 KHz
hdac0:     connections: 1
hdac0:           |
hdac0:           + <- nid=32 [audio selector]
hdac0: 
hdac0:             nid: 27 [DISABLED]
hdac0:            Name: audio input
hdac0:      Widget cap: 0x001d0541
hdac0:                  PWR PROC STEREO
hdac0:      Stream cap: 0x00000001
hdac0:                  PCM
hdac0:         PCM cap: 0x000e05e0
hdac0:                  16 20 24 bits, 44 48 88 96 192 KHz
hdac0:     connections: 1
hdac0:           |
hdac0:           + <- nid=33 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 28
hdac0:            Name: beep widget
hdac0:      Widget cap: 0x0070000c
hdac0:     Association: -2 (0x00000000)
hdac0:             OSS: speaker (speaker)
hdac0:      Output amp: 0x80170303
hdac0:                  mute=1 step=3 size=23 offset=3
hdac0: 
hdac0:             nid: 29 [DISABLED]
hdac0:            Name: audio mixer
hdac0:      Widget cap: 0x0020010b
hdac0:                  STEREO
hdac0:       Input amp: 0x80051f17
hdac0:                  mute=1 step=31 size=5 offset=23
hdac0:     connections: 5
hdac0:           |
hdac0:           + [DISABLED] <- nid=40 [audio selector] [DISABLED]
hdac0:           + [DISABLED] <- nid=41 [audio selector] [DISABLED]
hdac0:           + [DISABLED] <- nid=42 [audio selector] [DISABLED]
hdac0:           + [DISABLED] <- nid=43 [audio selector] [DISABLED]
hdac0:           + [DISABLED] <- nid=18 [pin: Line-out (None)] [DISABLED]
hdac0: 
hdac0:             nid: 30 [DISABLED]
hdac0:            Name: audio selector
hdac0:      Widget cap: 0x0030010d
hdac0:                  STEREO
hdac0:      Output amp: 0x80051f1f
hdac0:                  mute=1 step=31 size=5 offset=31
hdac0:     connections: 1
hdac0:           |
hdac0:           + <- nid=29 [audio mixer] [DISABLED]
hdac0: 
hdac0:             nid: 31 [DISABLED]
hdac0:            Name: volume widget
hdac0:      Widget cap: 0x00600000
hdac0:     connections: 3
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + <- nid=22 [audio output] [DISABLED]
hdac0:           + <- nid=23 [audio output] [DISABLED]
hdac0: 
hdac0:             nid: 32
hdac0:            Name: audio selector
hdac0:      Widget cap: 0x0030090d
hdac0:                  LRSWAP STEREO
hdac0:     Association: 1 (0x00000001)
hdac0:             OSS: monitor
hdac0:      Output amp: 0x80050f00
hdac0:                  mute=1 step=15 size=5 offset=0
hdac0:     connections: 12
hdac0:           |
hdac0:           + [DISABLED] <- nid=10 [pin: Headphones (Black Jack)]
hdac0:           + [DISABLED] <- nid=11 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=12 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=13 [pin: Speaker (Fixed)]
hdac0:           + [DISABLED] <- nid=14 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=15 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=16 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=17 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=18 [pin: Line-out (None)] [DISABLED]
hdac0:           + <- nid=19 [pin: Mic (Fixed)] (selected)
hdac0:           + [DISABLED] <- nid=20 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=29 [audio mixer] [DISABLED]
hdac0: 
hdac0:             nid: 33 [DISABLED]
hdac0:            Name: audio selector
hdac0:      Widget cap: 0x0030090d
hdac0:                  LRSWAP STEREO
hdac0:      Output amp: 0x80050f00
hdac0:                  mute=1 step=15 size=5 offset=0
hdac0:     connections: 12
hdac0:           |
hdac0:           + <- nid=10 [pin: Headphones (Black Jack)] (selected)
hdac0:           + [DISABLED] <- nid=11 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=12 [pin: Line-out (None)] [DISABLED]
hdac0:           + <- nid=13 [pin: Speaker (Fixed)]
hdac0:           + [DISABLED] <- nid=14 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=15 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=16 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=17 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=18 [pin: Line-out (None)] [DISABLED]
hdac0:           + <- nid=19 [pin: Mic (Fixed)]
hdac0:           + [DISABLED] <- nid=20 [pin: Line-out (None)] [DISABLED]
hdac0:           + <- nid=29 [audio mixer] [DISABLED]
hdac0: 
hdac0:             nid: 34 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400301
hdac0:                  DIGITAL STEREO
hdac0:         Pin cap: 0x00000010
hdac0:                  OUT
hdac0:      Pin config: 0x400001f8
hdac0:     Pin control: 0x00000000
hdac0:     connections: 3
hdac0:           |
hdac0:           + <- nid=37 [audio output] [DISABLED] (selected)
hdac0:           + <- nid=32 [audio selector]
hdac0:           + <- nid=33 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 35 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400301
hdac0:                  DIGITAL STEREO
hdac0:         Pin cap: 0x00000010
hdac0:                  OUT
hdac0:      Pin config: 0x400001f9
hdac0:     Pin control: 0x00000000
hdac0:     connections: 3
hdac0:           |
hdac0:           + <- nid=38 [audio output] [DISABLED] (selected)
hdac0:           + <- nid=32 [audio selector]
hdac0:           + <- nid=33 [audio selector] [DISABLED]
hdac0: 
hdac0:             nid: 36 [DISABLED]
hdac0:            Name: pin: Line-out (None)
hdac0:      Widget cap: 0x00400681
hdac0:                  PWR DIGITAL UNSOL STEREO
hdac0:         Pin cap: 0x00010024
hdac0:                  PDC IN EAPD
hdac0:      Pin config: 0x400001fa
hdac0:     Pin control: 0x00000000
hdac0:            EAPD: 0x00000002
hdac0: 
hdac0:             nid: 37 [DISABLED]
hdac0:            Name: audio output
hdac0:      Widget cap: 0x0004021d
hdac0:                  DIGITAL STEREO
hdac0:      Stream cap: 0x00000005
hdac0:                  AC3 PCM
hdac0:         PCM cap: 0x000e05e0
hdac0:                  16 20 24 bits, 44 48 88 96 192 KHz
hdac0:      Output amp: 0x80000000
hdac0:                  mute=1 step=0 size=0 offset=0
hdac0: 
hdac0:             nid: 38 [DISABLED]
hdac0:            Name: audio output
hdac0:      Widget cap: 0x0004021d
hdac0:                  DIGITAL STEREO
hdac0:      Stream cap: 0x00000005
hdac0:                  AC3 PCM
hdac0:         PCM cap: 0x000e05e0
hdac0:                  16 20 24 bits, 44 48 88 96 192 KHz
hdac0:      Output amp: 0x80000000
hdac0:                  mute=1 step=0 size=0 offset=0
hdac0: 
hdac0:             nid: 39 [DISABLED]
hdac0:            Name: audio input
hdac0:      Widget cap: 0x0014031b
hdac0:                  DIGITAL STEREO
hdac0:      Stream cap: 0x00000005
hdac0:                  AC3 PCM
hdac0:         PCM cap: 0x000e0160
hdac0:                  16 20 24 bits, 44 48 96 KHz
hdac0:       Input amp: 0x80000000
hdac0:                  mute=1 step=0 size=0 offset=0
hdac0:     connections: 1
hdac0:           |
hdac0:           + [DISABLED] <- nid=36 [pin: Line-out (None)] [DISABLED]
hdac0: 
hdac0:             nid: 40 [DISABLED]
hdac0:            Name: audio selector
hdac0:      Widget cap: 0x00300101
hdac0:                  STEREO
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=10 [pin: Headphones (Black Jack)] (selected)
hdac0:           + [DISABLED] <- nid=11 [pin: Line-out (None)] [DISABLED]
hdac0:           + <- nid=13 [pin: Speaker (Fixed)]
hdac0:           + [DISABLED] <- nid=15 [pin: Line-out (None)] [DISABLED]
hdac0: 
hdac0:             nid: 41 [DISABLED]
hdac0:            Name: audio selector
hdac0:      Widget cap: 0x00300101
hdac0:                  STEREO
hdac0:     connections: 4
hdac0:           |
hdac0:           + <- nid=10 [pin: Headphones (Black Jack)] (selected)
hdac0:           + [DISABLED] <- nid=14 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=16 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=17 [pin: Line-out (None)] [DISABLED]
hdac0: 
hdac0:             nid: 42 [DISABLED]
hdac0:            Name: audio selector
hdac0:      Widget cap: 0x00300101
hdac0:                  STEREO
hdac0:     connections: 4
hdac0:           |
hdac0:           + [DISABLED] <- nid=11 [pin: Line-out (None)] [DISABLED] (selected)
hdac0:           + [DISABLED] <- nid=12 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=16 [pin: Line-out (None)] [DISABLED]
hdac0:           + [DISABLED] <- nid=17 [pin: Line-out (None)] [DISABLED]
hdac0: 
hdac0:             nid: 43 [DISABLED]
hdac0:            Name: audio selector
hdac0:      Widget cap: 0x00300101
hdac0:                  STEREO
hdac0:     connections: 3
hdac0:           |
hdac0:           + <- nid=21 [audio output] (selected)
hdac0:           + <- nid=22 [audio output] [DISABLED]
hdac0:           + <- nid=23 [audio output] [DISABLED]
hdac0: 
hdac0: Processing audio FG cad=1 nid=1...
hdac0: GPIO: 0x00000000 NumGPIO=0 NumGPO=0 NumGPI=0 GPIWake=0 GPIUnsol=0
hdac0:  nid 3 0x18560010 as  1 seq  0   Digital-out  Jack jack  6 loc 24 color Unknown misc 0
hdac0: Patched pins configuration:
hdac0:  nid 3 0x18560010 as  1 seq  0   Digital-out  Jack jack  6 loc 24 color Unknown misc 0
hdac0: 1 associations found:
hdac0: Association 0 (1) out:
hdac0:  Pin nid=3 seq=0
hdac0: Tracing association 0 (1)
hdac0:  Pin 3 traced to DAC 2
hdac0: Association 0 (1) trace succeeded
hdac0: Tracing input monitor
hdac0: Tracing other input monitors
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:          IN amp: 0x00000000
hdac0:         OUT amp: 0x00000000
hdac0: 
hdac0:             nid: 2
hdac0:            Name: audio output
hdac0:      Widget cap: 0x00006211
hdac0:                  DIGITAL 8CH
hdac0:     Association: 0 (0x00000001)
hdac0:             OSS: pcm (pcm)
hdac0:      Stream cap: 0x00000005
hdac0:                  AC3 PCM
hdac0:         PCM cap: 0x001e07f0
hdac0:                  16 20 24 32 bits, 32 44 48 88 96 176 192 KHz
hdac0: 
hdac0:             nid: 3
hdac0:            Name: pin: Digital-out (Jack)
hdac0:      Widget cap: 0x0040739d
hdac0:                  DIGITAL UNSOL 8CH
hdac0:     Association: 0 (0x00000001)
hdac0:         Pin cap: 0x00000094
hdac0:                  PDC OUT HDMI
hdac0:      Pin config: 0x18560010
hdac0:     Pin control: 0x00000040 OUT
hdac0:      Output amp: 0x80000000
hdac0:                  mute=1 step=0 size=0 offset=0
hdac0:     connections: 1
hdac0:           |
hdac0:           + <- nid=2 [audio output]
hdac0: 
pcm0: <HDA IDT 92HD73C1 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: 0x000e05e0
pcm0:                  16 20 24 bits, 44 48 88 96 192 KHz
pcm0:             DAC: 21
pcm0: 
pcm0: Record:
pcm0: 
pcm0:      Stream cap: 0x00000001
pcm0:                  PCM
pcm0:         PCM cap: 0x000e05e0
pcm0:                  16 20 24 bits, 44 48 88 96 192 KHz
pcm0:             ADC: 26
pcm0: 
pcm0: +-------------------------------+
pcm0: | DUMPING Playback/Record Paths |
pcm0: +-------------------------------+
pcm0: 
pcm0: Playback:
pcm0: 
pcm0:     nid=13 [pin: Speaker (Fixed)]
pcm0:       |
pcm0:       + <- nid=21 [audio output] [src: pcm]
pcm0: 
pcm0:     nid=10 [pin: Headphones (Black Jack)]
pcm0:       |
pcm0:       + <- nid=21 [audio output] [src: pcm]
pcm0: 
pcm0: Record:
pcm0: 
pcm0:     nid=26 [audio input]
pcm0:       |
pcm0:       + <- nid=32 [audio selector] [src: monitor]
pcm0:              |
pcm0:              + <- nid=19 [pin: Mic (Fixed)] [src: monitor]
pcm0: 
pcm0: +-------------------------+
pcm0: | DUMPING Volume Controls |
pcm0: +-------------------------+
pcm0: 
pcm0: Master Volume (OSS: vol)
pcm0:    |
pcm0:    +- ctl 11 (nid  21 out):    -95/0dB (128 steps) + mute
pcm0: 
pcm0: PCM Volume (OSS: pcm)
pcm0:    |
pcm0:    +- ctl 11 (nid  21 out):    -95/0dB (128 steps) + mute
pcm0: 
pcm0: Microphone2 Volume (OSS: monitor)
pcm0:    |
pcm0:    +- ctl  9 (nid  19 out):    0/30dB (4 steps)
pcm0: 
pcm0: Speaker/Beep Volume (OSS: speaker)
pcm0:    |
pcm0:    +- ctl 16 (nid  28 out):    -18/0dB (4 steps) + mute
pcm0: 
pcm0: Recording Level (OSS: rec)
pcm0:    |
pcm0:    +- ctl 23 (nid  32 out):    0/22dB (16 steps) + mute
pcm0: 
pcm0: Mixer "vol":
pcm0: Mixer "bass":
pcm0: Mixer "treble":
pcm0: Mixer "pcm":
pcm0: Mixer "speaker":
pcm0: Mixer "rec":
pcm0: Mixer "monitor":
pcm0: EQ Treble/Bass ENABLED
pcm0: clone manager: deadline=750ms flags=0x8000001e
pcm0: sndbuf_setmap 13ffa0000, 4000; 0xffffff8074e03000 -> 13ffa0000
pcm0: sndbuf_setmap 13ffb0000, 4000; 0xffffff8074e13000 -> 13ffb0000
pcm1: <HDA Intel G45 HDMI PCM #0 HDMI> at cad 1 nid 1 on hdac0
pcm1: +--------------------------------------+
pcm1: | DUMPING PCM Playback/Record Channels |
pcm1: +--------------------------------------+
pcm1: 
pcm1: Playback:
pcm1: 
pcm1:      Stream cap: 0x00000005
pcm1:                  AC3 PCM
pcm1:         PCM cap: 0x001e07f0
pcm1:                  16 20 24 32 bits, 32 44 48 88 96 176 192 KHz
pcm1:             DAC: 2
pcm1: 
pcm1: +-------------------------------+
pcm1: | DUMPING Playback/Record Paths |
pcm1: +-------------------------------+
pcm1: 
pcm1: Playback:
pcm1: 
pcm1:     nid=3 [pin: Digital-out (Jack)]
pcm1:       |
pcm1:       + <- nid=2 [audio output] [src: pcm]
pcm1: 
pcm1: +-------------------------+
pcm1: | DUMPING Volume Controls |
pcm1: +-------------------------+
pcm1: 
pcm1: Master Volume (OSS: vol)
pcm1:    |
pcm1:    +- ctl  1 (nid   3 in ):    mute
pcm1: 
pcm1: PCM Volume (OSS: pcm)
pcm1:    |
pcm1:    +- ctl  1 (nid   3 in ):    mute
pcm1: 
pcm1: Enabling Soft PCM volume
pcm1: Mixer "vol":
pcm1: Mixer "pcm":
pcm1: Soft PCM mixer ENABLED
pcm1: clone manager: deadline=750ms flags=0x8000001e
pcm1: sndbuf_setmap 2eb0000, 4000; 0xffffff8074e23000 -> 2eb0000
ata2: AHCI reset...
ata2: hardware reset ...
ata2: SATA connect time=0ms status=00000123
ata2: ready wait time=7ms
ata2: software reset port 15...
ata2: ready wait time=0ms
ata2: SIGNATURE: 00000101
ata2: AHCI reset done: devices=00000001
ata3: AHCI reset...
ata3: hardware reset ...
ata3: SATA connect timeout status=00000000
ata3: AHCI reset done: phy reset found no device
(aprobe0:ata2:0:0:0): SIGNATURE: 0000
usbus0: 12Mbps Full Speed USB v1.0
usbus1: 12Mbps Full Speed USB v1.0
usbus2: 12Mbps Full Speed USB v1.0
usbus3: 480Mbps High Speed USB v2.0
usbus4: 12Mbps Full Speed USB v1.0
usbus5: 12Mbps Full Speed USB v1.0
usbus6: 12Mbps Full Speed USB v1.0
usbus7: 480Mbps High Speed USB v2.0
acpi_acad0: acline initialization start
battery0: battery initialization start
ada0 at ata2 bus 0 scbus0 target 0 lun 0
ada0: <SAMSUNG SSD PB22-CS3 TM 256GB VBM23D1Q> ATA-7GEOM: new disk ada0
 SATA 2.x device
ada0: Serial Number YF30F0K939SY939B8334
ada0: 300.000MB/s transfers (SATA 2.x, UDMA5, PIO 8192bytes)
ada0: 244198MB (500118192 512 byte sectors: 16H 63S/T 16383C)
pass0 at ata2 bus 0 scbus0 target 0 lun 0
pass0: <SAMSUNG SSD PB22-CS3 TM 256GB VBM23D1Q> ATA-7 SATA 2.x device
pass0: Serial Number YF30F0K939SY939B8334
pass0: 300.000MB/s transfers (SATA 2.x, UDMA5, PIO 8192bytes)
SMP: AP CPU #1 Launched!
cpu1 AP:
     ID: 0x01000000   VER: 0x00050014 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   cmci: 0x00000000
CPU1:i loocaapl iAPcIC e0r:r orr 0oxu8ti0ng intpin 1 (
ISA IRQ 1) to lapic 1 vector 48
ioapic0: routing intpin 12 (ISA IRQ 12) to lapic 1 vector 49
ioapic0: routing intpin 18 (PCI IRQ 18) to lapic 1 vector 50
ioapic0: routing intpin 21 (PCI IRQ 21) to lapic 1 vector 51
msi: Assigning MSI IRQ 257 to local APIC 1 vector 52
msi: Assigning MSI IRQ 259 to local APIC 1 vector 53
WARNING: WITNESS option enabled, expect reduced performance.
ugen0.1: <Intel> at usbus0ugen1.1: <Intel> at usbus1

uhub0: <Intel UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus0
uhub1: <Intel UHCI root HUB, class 9/0, rev 1.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 usbus3ugen4.1: <Intel> at usbus4

uhub3: <Intel EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus3
uhub4: <Intel UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus4
ugen5.1: <Intel> at usbus5ugen6.1: <Intel> at usbus6

uhub5: <Intel UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus5
uhub6: <Intel UHCI root HUB, class 9/0, rev 1.00/1.00, addr 1> on usbus6
ugen7.1: <Intel> at usbus7
uhub7: <Intel EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus7
AcpiOsDerivePciId: \\_SB_.PCI0.RP01.PXCS -> bus 0 dev 28 func 0
AcpiOsDerivePciId: \\_SB_.PCI0.RP02.PXCS -> bus 0 dev 28 func 1
battery0: battery initialization done, tried 1 times
acpi_lid0: Lid opened
acpi_lid0: Lid opened
Root mount waiting for: usbus7 usbus6 usbus5 usbus4 usbus3 usbus2 usbus1 usbus0
acpi_acad0: On Line
acpi_acad0: acline initialization done, tried 1 times
AcpiOsDerivePciId: \\_SB_.PCI0.RP03.PXCS -> bus 0 dev 28 func 2
AcpiOsDerivePciId: \\_SB_.PCI0.RP06.PXCS -> bus 0 dev 28 func 5
uhub1: 2 ports with 2 removable, self powered
uhub0: 2 ports with 2 removable, self powered
uhub2: 2 ports with 2 removable, self powered
uhub4: 2 ports with 2 removable, self powered
uhub5: 2 ports with 2 removable, self powered
uhub6: 2 ports with 2 removable, self powered
Root mount waiting for: usbus7 usbus3
Root mount waiting for: usbus7 usbus3
uhub7: 6 ports with 6 removable, self powered
uhub3: 6 ports with 6 removable, self powered
Root mount waiting for: usbus7
Root mount waiting for: usbus7
Root mount waiting for: usbus7
Root mount waiting for: usbus7
Root mount waiting for: usbus7
ugen7.2: <(null)> at usbus7 (disconnected)
Root mount waiting for: usbus7
Trying to mount root from ufs:/dev/gpt/part0
ct_to_ts([2010-06-19 05:20:14]) = 1276924814.000000000
start_init: trying /sbin/init
acpi_lid0: Lid opened
acpi_lid0: Lid opened
Linux ELF exec handler installed
linprocfs registered
ugen6.2: <Broadcom> at usbus6
uhub8: <Broadcom BCM2046B1, class 9/0, rev 2.00/1.00, addr 2> on usbus6
lagg0: bpf attached
uhub8: 3 ports with 0 removable, self powered
ugen6.3: <vendor 0x413c> at usbus6
ukbd0: <vendor 0x413c product 0x8157, class 0/0, rev 2.00/1.00, addr 3> on usbus6
kbd2 at ukbd0
kbd2: ukbd0, generic (0), config:0x0, flags:0x3d0000
ugen6.4: <vendor 0x413c> at usbus6
ums0: <vendor 0x413c product 0x8158, class 0/0, rev 2.00/1.00, addr 4> on usbus6
ums0: 3 buttons and [XY] coordinates ID=2
firmware: 'iwn5000fw' version 0: 353240 bytes loaded at 0xffffffff80e340b0
wlan0: bpf attached
wlan0: bpf attached
wlan0: Ethernet address: 00:22:19:e5:ca:51
bge0: Disabling fastboot
bge0: Disabling fastboot

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