Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 29 Dec 2018 22:19:10 +0100
From:      Johnny Sorocil <jsorocil@gmail.com>
To:        freebsd-acpi@freebsd.org
Subject:   ACPI on CoreBoot ThinkPad
Message-ID:  <CADxA8SrK4P8Ow7a-sWfshKH1Qxvfv4KFX9D%2BfBtt4_4APTp%2B6Q@mail.gmail.com>

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

[-- Attachment #1 --]
Hi list,

I am trying to have reliable suspend and resume on my laptop after
flashing CoreBoot and SeaBIOS on ThinkPad T430s.
Problem is that system will shutdown because it thinks that temperature
is too high:
> acpi_tz0: WARNING - current temperature (128.1C) exceeds safe limits
Laptop was in suspend less than a minute and it is not too hot on touch.

Not sure if relevant, but I noticed that acpidump from base doesn't
work:
> /usr/sbin/acpidump -dt > acpi_dt.asl
> /usr/sbin/iasl acpi_dt.asl
>
> Intel ACPI Component Architecture
> ASL+ Optimizing Compiler/Disassembler version 20181003
> Copyright (c) 2000 - 2018 Intel Corporation
>
> Compiler aborting due to parser-detected syntax error(s)
> acpi_dt.asl   6008:             }
> Error    6126 -   syntax error ^
>
> acpi_dt.asl   6028:             }
> Error    6126 -   syntax error ^
>
> acpi_dt.asl   6063:             }
> Error    6126 -   syntax error ^
>
> acpi_dt.asl   6445:
> Error    6126 - syntax error and premature End-Of-File
>
> ASL Input:     acpi_dt.asl - 6445 lines, 207014 bytes, 1574 keywords
>
> Compilation complete. 4 Errors, 0 Warnings, 0 Remarks, 0 Optimizations

Another try with acpidump from ports:
> /usr/local/bin/acpidump -b
> /usr/local/bin/iasl dsdt.dat
>
> Intel ACPI Component Architecture
> ASL+ Optimizing Compiler/Disassembler version 20181213
> Copyright (c) 2000 - 2018 Intel Corporation
>
> File appears to be binary: found 4624 non-ASCII characters, disassembling
> Binary file appears to be a valid ACPI table, disassembling
> Input file dsdt.dat, Length 0x387B (14459) bytes
> ACPI: DSDT 0x0000000000000000 00387B (v02 COREv4 COREBOOT 20110725 INTL
20180810)
> Pass 1 parse of [DSDT]
> Pass 2 parse of [DSDT]
> Parsing Deferred Opcodes (Methods/Buffers/Packages/Regions)
>
> Parsing completed
> Disassembly completed
> ASL Output:    dsdt.dsl - 146025 bytes

So, at least I can use that DSDT:
  cp dsdt.dat /boot/dsdt.aml
  /boot/loader.conf:
  acpi_dsdt_load="YES"
  acpi_dsdt_name="/boot/dsdt.aml"

> dmesg | grep -i 'acpi error'
> ACPI Error: No handler for Region [ERAM] (0xfffff80003580d00)
[EmbeddedControl] (20181003/evregion-288)
> ACPI Error: Region EmbeddedControl (ID=3) has no handler
(20181003/exfldio-428)
> ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.BAT0._STA,
AE_NOT_EXIST (20181003/psparse-677)
> ACPI Error: No handler for Region [ERAM] (0xfffff80003580d00)
[EmbeddedControl] (20181003/evregion-288)
> ACPI Error: Region EmbeddedControl (ID=3) has no handler
(20181003/exfldio-428)
> ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.BAT1._STA,
AE_NOT_EXIST (20181003/psparse-677)
> ACPI Error: AE_NOT_FOUND, While resolving a named reference package
element - \134_PR_.CP00 (20181003/dspkginit-579)
> ACPI Error: AE_NOT_FOUND, While resolving a named reference package
element - \134_PR_.CP01 (20181003/dspkginit-579)
> ACPI Error: AE_NOT_FOUND, While resolving a named reference package
element - \134_PR_.CP02 (20181003/dspkginit-579)
> ACPI Error: AE_NOT_FOUND, While resolving a named reference package
element - \134_PR_.CP03 (20181003/dspkginit-579)
> ACPI Error: AE_NOT_FOUND, While resolving a named reference package
element - \134_PR_.CP00 (20181003/dspkginit-579)
> ACPI Error: AE_NOT_FOUND, While resolving a named reference package
element - \134_PR_.CP01 (20181003/dspkginit-579)
> ACPI Error: AE_NOT_FOUND, While resolving a named reference package
element - \134_PR_.CP02 (20181003/dspkginit-579)
> ACPI Error: AE_NOT_FOUND, While resolving a named reference package
element - \134_PR_.CP03 (20181003/dspkginit-579)
> ACPI Error: uhub0: Method parse/execution failed <0x8086 XHCI root HUB,
class 9/0, rev 3.00/1.00, addr 1> on usbus0
> ACPI Error: uhub1: Method parse/execution failed
\134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
> ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND
(20181003/psparse-677)
> ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR,
AE_NOT_FOUND (20181003/psparse-677)
> ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND
(20181003/psparse-677)
> ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR,
AE_NOT_FOUND (20181003/psparse-677)
> ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND
(20181003/psparse-677)
Full "dmesg.boot" file is attached.
But now with DSDT unmodifed, my system lost sysctl dev.cpu:
sysctl: unknown oid 'dev.cpu'

I have also tried to boot Linux (which doesn't have problems with resume
after suspend) and dumped ACPI tables but that was not successfull
(IIRC, problem was that FreeBSD was unable to parse DSDT from Linux)

I am using FreeBSD 12.0-RELEASE amd64 with small patch (but the problem
with resume was same as with GENERIC kernel) so my battery can be
recognized:
https://bugs.freebsd.org/bugzilla/attachment.cgi?id=196523&action=diff

Unfortunately currently I don't have stock BIOS ACPI tables (then I
didn't know for acpica-tools package) but if needed I can flash stock
BIOS and dump ACPI tables.
Any ideas how to proceed with debugging?

[-- Attachment #2 --]
ACPI Error: No handler for Region [ERAM] (0xfffff80003580d00) [EmbeddedControl] (20181003/evregion-288)
ACPI Error: Region EmbeddedControl (ID=3) has no handler (20181003/exfldio-428)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.BAT0._STA, AE_NOT_EXIST (20181003/psparse-677)
ACPI Error: No handler for Region [ERAM] (0xfffff80003580d00) [EmbeddedControl] (20181003/evregion-288)
ACPI Error: Region EmbeddedControl (ID=3) has no handler (20181003/exfldio-428)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.BAT1._STA, AE_NOT_EXIST (20181003/psparse-677)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP00 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP01 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP02 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP03 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP00 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP01 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP02 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP03 (20181003/dspkginit-579)
ACPI Error: uhub0: Method parse/execution failed <0x8086 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus0
ACPI Error: uhub1: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)

[-- Attachment #3 --]
Dec 27 11:58:22 ProjectBSD acpi[68897]: suspend at 20181227 11:58:22
Dec 27 11:58:59 ProjectBSD kernel: uhub1: at usbus2, port 1, addr 1 (disconnected)
Dec 27 11:58:59 ProjectBSD kernel: ugen2.2: <vendor 0x8087 product 0x0024> at usbus2 (disconnected)
Dec 27 11:58:59 ProjectBSD kernel: uhub4: at uhub1, port 1, addr 2 (disconnected)
Dec 27 11:58:59 ProjectBSD kernel: uhub4: detached
Dec 27 11:58:59 ProjectBSD kernel: wlan0: link state changed to DOWN
Dec 27 11:58:59 ProjectBSD kernel: uhub0: at usbus1, port 1, addr 1 (disconnected)
Dec 27 11:58:59 ProjectBSD kernel: ugen1.2: <vendor 0x8087 product 0x0024> at usbus1 (disconnected)
Dec 27 11:58:59 ProjectBSD kernel: uhub3: at uhub0, port 1, addr 2 (disconnected)
Dec 27 11:58:59 ProjectBSD kernel: ugen1.3: <Auth Biometric Coprocessor> at usbus1 (disconnected)
Dec 27 11:58:59 ProjectBSD kernel: uhub3: detached
Dec 27 11:58:59 ProjectBSD kernel: uhub2: at usbus0, port 1, addr 1 (disconnected)
Dec 27 11:58:59 ProjectBSD kernel: acpi0: cleared fixed power button status
Dec 27 11:58:59 ProjectBSD kernel: acpi_tz0: WARNING - current temperature (128.1C) exceeds safe limits
Dec 27 11:58:59 ProjectBSD kernel: xhci0: Port routing mask set to 0xffffffff
Dec 27 11:58:59 ProjectBSD kernel: uhub0: <0x8086 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus0
Dec 27 11:58:59 ProjectBSD kernel: uhub0: 8 ports with 8 removable, self powered
Dec 27 11:58:59 ProjectBSD kernel: info: [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
Dec 27 11:58:59 ProjectBSD kernel: uhub1: <Intel EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus1
Dec 27 11:58:59 ProjectBSD kernel: uhub2: <Intel EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus2
Dec 27 11:58:59 ProjectBSD root[68988]: WARNING: system temperature too high, shutting down soon!
Dec 27 11:58:59 ProjectBSD wpa_supplicant[325]: wlan0: CTRL-EVENT-DISCONNECTED bssid=64:6e:ea:1f:c6:f0 reason=0
Dec 27 11:58:59 ProjectBSD acpi[68992]: resumed at 20181227 11:58:59
Dec 27 11:58:59 ProjectBSD wpa_supplicant[325]: ioctl[SIOCS80211, op=20, val=0, arg_len=7]: Can't assign requested address
Dec 27 11:58:59 ProjectBSD kernel: .
Dec 27 11:58:59 ProjectBSD kernel: .
Dec 27 11:58:59 ProjectBSD devd[722]: notify_clients: send() failed; dropping unresponsive client
Dec 27 11:59:00 ProjectBSD kernel: .
Dec 27 11:59:00 ProjectBSD kernel: uhub1: 3 ports with 3 removable, self powered
Dec 27 11:59:00 ProjectBSD kernel: uhub2: 3 ports with 3 removable, self powered
Dec 27 11:59:01 ProjectBSD kernel: .
Dec 27 11:59:01 ProjectBSD kernel: ugen2.2: <vendor 0x8087 product 0x0024> at usbus2
Dec 27 11:59:01 ProjectBSD kernel: uhub3 on uhub2
Dec 27 11:59:01 ProjectBSD kernel: uhub3: <vendor 0x8087 product 0x0024, class 9/0, rev 2.00/0.00, addr 2> on usbus2
Dec 27 11:59:01 ProjectBSD kernel: ugen1.2: <vendor 0x8087 product 0x0024> at usbus1
Dec 27 11:59:01 ProjectBSD kernel: uhub4 on uhub1
Dec 27 11:59:01 ProjectBSD kernel: uhub4: <vendor 0x8087 product 0x0024, class 9/0, rev 2.00/0.00, addr 2> on usbus1
Dec 27 11:59:02 ProjectBSD wpa_supplicant[325]: wlan0: Trying to associate with 64:6e:ea:1f:c6:f0 (SSID='Dzidzabaja' freq=2427 MHz)
Dec 27 11:59:02 ProjectBSD wpa_supplicant[325]: wlan0: Associated with 64:6e:ea:1f:c6:f0
Dec 27 11:59:02 ProjectBSD kernel: wlan0: link state changed to UP
Dec 27 11:59:02 ProjectBSD syslogd: exiting on signal 15
Dec 27 12:00:59 ProjectBSD syslogd: kernel boot file is /boot/kernel/kernel

[-- Attachment #4 --]
Launching APs: 1 2 3
Timecounter "TSC-low" frequency 1446748022 Hz quality 1000
random: entropy device external interface
kbd1 at kbdmux0
netmap: loaded module
[ath_hal] loaded
module_register_init: MOD_LOAD (vesa, 0xffffffff810f9770, 0) error 19
random: registering fast source Intel Secure Key RNG
random: fast provider: "Intel Secure Key RNG"
nexus0
vtvga0: <VT VGA driver> on motherboard
cryptosoft0: <software crypto> on motherboard
acpi0: <CORE COREBOOT> on motherboard
acpi0: Power Button (fixed)
ACPI Error: No handler for Region [ERAM] (0xfffff80003593d80) [EmbeddedControl] (20181003/evregion-288)
ACPI Error: Region EmbeddedControl (ID=3) has no handler (20181003/exfldio-428)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.BAT0._STA, AE_NOT_EXIST (20181003/psparse-677)
ACPI Error: No handler for Region [ERAM] (0xfffff80003593d80) [EmbeddedControl] (20181003/evregion-288)
ACPI Error: Region EmbeddedControl (ID=3) has no handler (20181003/exfldio-428)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.BAT1._STA, AE_NOT_EXIST (20181003/psparse-677)
hpet0: <High Precision Event Timer> iomem 0xfed00000-0xfed003ff on acpi0
Timecounter "HPET" frequency 14318180 Hz quality 950
Event timer "HPET" frequency 14318180 Hz quality 550
Event timer "HPET1" frequency 14318180 Hz quality 440
Event timer "HPET2" frequency 14318180 Hz quality 440
Event timer "HPET3" frequency 14318180 Hz quality 440
Event timer "HPET4" frequency 14318180 Hz quality 440
atrtc0: <AT realtime clock> port 0x70-0x77 on acpi0
atrtc0: registered as a time-of-day clock, resolution 1.000000s
Event timer "RTC" frequency 32768 Hz quality 0
attimer0: <AT timer> port 0x40-0x43,0x50-0x53 irq 0 on acpi0
Timecounter "i8254" frequency 1193182 Hz quality 0
Event timer "i8254" frequency 1193182 Hz quality 100
Timecounter "ACPI-fast" frequency 3579545 Hz quality 900
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x508-0x50b on acpi0
acpi_ec0: <Embedded Controller: GPE 0x11> port 0x62,0x66 on acpi0
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
pci0: <ACPI PCI bus> on pcib0
pcib0: no PRT entry for 0.2.INTA
pcib0: no PRT entry for 0.4.INTA
pcib0: no PRT entry for 0.20.INTA
pcib0: no PRT entry for 0.26.INTA
pcib0: no PRT entry for 0.27.INTA
pcib0: no PRT entry for 0.28.INTB
pcib0: no PRT entry for 0.28.INTC
pcib0: no PRT entry for 0.29.INTA
pcib0: no PRT entry for 0.31.INTA
pcib0: no PRT entry for 0.31.INTB
pcib0: no PRT entry for 0.31.INTC
vgapci0: <VGA-compatible display> port 0x3000-0x303f mem 0xe1400000-0xe17fffff,0xd0000000-0xdfffffff irq 11 at device 2.0 on pci0
vgapci0: Boot video device
xhci0: <Intel Panther Point USB 3.0 controller> mem 0xe1920000-0xe192ffff irq 11 at device 20.0 on pci0
xhci0: 32 bytes context size, 64-bit DMA
xhci0: Port routing mask set to 0xffffffff
usbus0 on xhci0
usbus0: 5.0Gbps Super Speed USB v3.0
em0: <Intel(R) PRO/1000 Network Connection> port 0x3040-0x305f mem 0xe1900000-0xe191ffff,0xe193c000-0xe193cfff at device 25.0 on pci0
em0: attach_pre capping queues at 1
em0: using 1024 tx descriptors and 1024 rx descriptors
em0: msix_init qsets capped at 1
em0: Unable to map MSIX table 
em0: Using an MSI interrupt
em0: allocated for 1 tx_queues
em0: allocated for 1 rx_queues
em0: Ethernet address: 3c:97:0e:b7:35:ea
em0: netmap queues/slots: TX 1/1024, RX 1/1024
ehci0: <Intel Panther Point USB 2.0 controller> mem 0xe193f000-0xe193f3ff irq 11 at device 26.0 on pci0
usbus1: EHCI version 1.0
usbus1 on ehci0
usbus1: 480Mbps High Speed USB v2.0
hdac0: <Intel Panther Point HDA Controller> mem 0xe1938000-0xe193bfff irq 11 at device 27.0 on pci0
pcib1: <ACPI PCI-PCI bridge> irq 11 at device 28.0 on pci0
pci1: <ACPI PCI bus> on pcib1
ath0: <Atheros 9285> mem 0xe1800000-0xe180ffff irq 17 at device 0.0 on pci1
[ath] AR9285 Main LNA config: LNA2
[ath] AR9285 Alt LNA config: LNA1
[ath] LNA diversity enabled, Diversity enabled
[ath] Enabling diversity for Kite
ath0: [HT] enabling HT modes
ath0: [HT] 1 stream STBC receive enabled
ath0: [HT] 1 RX streams; 1 TX streams
ath0: AR9285 mac 192.2 RF5133 phy 14.0
ath0: 2GHz radio: 0x0000; 5GHz radio: 0x00c0
pcib2: <ACPI PCI-PCI bridge> irq 11 at device 28.1 on pci0
pcib2: [GIANT-LOCKED]
pci2: <ACPI PCI bus> on pcib2
sdhci_pci0: <RICOH R5CE823 SD> mem 0xe0800000-0xe08000ff irq 18 at device 0.0 on pci2
sdhci_pci0: 1 slot(s) allocated
ehci1: <Intel Panther Point USB 2.0 controller> mem 0xe1940000-0xe19403ff irq 11 at device 29.0 on pci0
usbus2: EHCI version 1.0
usbus2 on ehci1
usbus2: 480Mbps High Speed USB v2.0
isab0: <PCI-ISA bridge> at device 31.0 on pci0
isa0: <ISA bus> on isab0
ahci0: <Intel Panther Point AHCI SATA controller> port 0x3080-0x3087,0x3090-0x3093,0x3088-0x308f,0x3094-0x3097,0x3060-0x307f mem 0xe193e000-0xe193e7ff irq 10 at device 31.2 on pci0
ahci0: AHCI v1.30 with 6 6Gbps ports, Port Multiplier not supported
ahcich0: <AHCI channel> at channel 0 on ahci0
ahcich1: <AHCI channel> at channel 1 on ahci0
ahcich2: <AHCI channel> at channel 2 on ahci0
ahcich4: <AHCI channel> at channel 4 on ahci0
acpi_tz0: <Thermal Zone> on acpi0
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP00 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP01 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP02 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP03 (20181003/dspkginit-579)
acpi_tz1: <Thermal Zone> on acpi0
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP00 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP01 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP02 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP03 (20181003/dspkginit-579)
atkbdc0: <Keyboard controller (i8042)> port 0x60,0x64 irq 1 on acpi0
atkbd0: <AT Keyboard> irq 1 on atkbdc0
kbd0 at atkbd0
atkbd0: [GIANT-LOCKED]
psm0: <PS/2 Mouse> irq 12 on atkbdc0
psm0: [GIANT-LOCKED]
psm0: model Synaptics Touchpad, device ID 0
acpi_acad0: <AC Adapter> on acpi0
battery0: <ACPI Control Method Battery> on acpi0
battery1: <ACPI Control Method Battery> on acpi0
acpi_button0: <Sleep Button> on acpi0
acpi_lid0: <Control Method Lid Switch> on acpi0
orm0: <ISA Option ROM> at iomem 0xed800-0xeffff pnpid ORM0000 on isa0
ZFS filesystem version: 5
ZFS storage pool version: features support (5000)
Timecounters tick every 1.000 msec
hdacc0: <Realtek ALC269 HDA CODEC> at cad 0 on hdac0
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: ugen2.1: <Intel EHCI root HUB> at usbus2
ugen1.1: <Intel EHCI root HUB> at usbus1
ugen0.1: <0x8086 XHCI root HUB> at usbus0
Method parse/execution failed \134PNOT, AE_NOT_FOUNDuhub0: <0x8086 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus0
 (20181003/psparse-677)
uhub1: ACPI Error: Method parse/execution failed <Intel EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus2
hdaa0: \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
<Realtek ALC269 Audio Function Group> at nid 1 on hdacc0
pcm0: <Realtek ALC269 (Analog 2.0+HP/2.0)> at nid 20,21 and 24 on hdaa0
pcm1: <Realtek ALC269 (Internal Analog Mic)> at nid 18 on hdaa0
hdacc1: <Intel Panther Point HDA CODEC> at cad 3 on hdac0
hdaa1: <Intel Panther Point Audio Function Group> at nid 1 on hdacc1
pcm2: <Intel Panther Point (HDMI/DP 8ch)> at nid 5 on hdaa1
pcm3: <Intel Panther Point (HDMI/DP 8ch)> at nid 6 on hdaa1
pcm4: <Intel Panther Point (HDMI/DP 8ch)> at nid 7 on hdaa1
uhub2: <Intel EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus1
ada0 at ahcich0 bus 0 scbus0 target 0 lun 0
ada0: <INTEL SSDSA2BW160G3L 4PC1LE04> ATA8-ACS SATA 2.x device
ada0: Serial Number BTPR151103EC160DGN
ada0: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes)
ada0: Command Queueing enabled
ada0: 152627MB (312581808 512 byte sectors)
Trying to mount root from zfs:projectBSD-ssd2/ROOT/master []...
Root mount waiting for: usbus2 usbus1 usbus0
uhub0: 8 ports with 8 removable, self powered
uhub1: 3 ports with 3 removable, self powered
uhub2: 3 ports with 3 removable, self powered
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
usb_alloc_device: set address 2 failed (USB_ERR_TIMEOUT, ignored)
usb_alloc_device: set address 2 failed (USB_ERR_TIMEOUT, ignored)
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Root mount waiting for: usbus2 usbus1
usbd_req_re_enumerate: addr=2, set address failed! (USB_ERR_TIMEOUT, ignored)
usbd_req_re_enumerate: addr=2, set address failed! (USB_ERR_TIMEOUT, ignored)
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
usbd_req_re_enumerate: addr=2, set address failed! (USB_ERR_TIMEOUT, ignored)
usbd_req_re_enumerate: addr=2, set address failed! (USB_ERR_TIMEOUT, ignored)
Root mount waiting for: usbus2 usbus1
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
Root mount waiting for: usbus2 usbus1
usbd_req_re_enumerate: addr=2, set address failed! (USB_ERR_TIMEOUT, ignored)
usbd_req_re_enumerate: addr=2, set address failed! (USB_ERR_TIMEOUT, ignored)
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
usbd_req_re_enumerate: addr=2, set address failed! (USB_ERR_TIMEOUT, ignored)
usbd_req_re_enumerate: addr=2, set address failed! (USB_ERR_TIMEOUT, ignored)
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
ugen2.2: <Unknown > at usbus2 (disconnected)
uhub_reattach_port: could not allocate new device
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
ugen1.2: <Unknown > at usbus1 (disconnected)
uhub_reattach_port: could not allocate new device
info: [drm] Initialized drm 1.1.0 20060810
drmn0: =======================================================
drmn0: This code is obsolete abandonware. Install the graphics/drm-legacy-kmod pkg
drmn0: =======================================================
drmn0: Deprecated code (to be removed in FreeBSD 13): drm2 drivers
drmn0: =======================================================
drmn0: This code is obsolete abandonware. Install the graphics/drm-legacy-kmod pkg
drmn0: =======================================================
drmn0: Deprecated code (to be removed in FreeBSD 13): drm2 drivers
drmn0: <Intel IvyBridge (M)> on vgapci0
info: [drm] Memory usable by graphics device = 2048M
intel_iicbb0 on drmn0
iicbus0: <Philips I2C bus> on iicbb0 addr 0xff
iic0: <I2C generic I/O> on iicbus0
iicbus1: <Philips I2C bus> on intel_gmbus0
iic1: <I2C generic I/O> on iicbus1
intel_iicbb1 on drmn0
iicbus2: <Philips I2C bus> on iicbb1 addr 0xff
iic2: <I2C generic I/O> on iicbus2
iicbus3: <Philips I2C bus> on intel_gmbus1
iic3: <I2C generic I/O> on iicbus3
intel_iicbb2 on drmn0
iicbus4: <Philips I2C bus> on iicbb2 addr 0xff
iic4: <I2C generic I/O> on iicbus4
iicbus5: <Philips I2C bus> on intel_gmbus2
iic5: <I2C generic I/O> on iicbus5
intel_iicbb3 on drmn0
iicbus6: <Philips I2C bus> on iicbb3 addr 0xff
iic6: <I2C generic I/O> on iicbus6
iicbus7: <Philips I2C bus> on intel_gmbus3
iic7: <I2C generic I/O> on iicbus7
intel_iicbb4 on drmn0
iicbus8: <Philips I2C bus> on iicbb4 addr 0xff
iic8: <I2C generic I/O> on iicbus8
iicbus9: <Philips I2C bus> on intel_gmbus4
iic9: <I2C generic I/O> on iicbus9
intel_iicbb5 on drmn0
iicbus10: <Philips I2C bus> on iicbb5 addr 0xff
iic10: <I2C generic I/O> on iicbus10
iicbus11: <Philips I2C bus> on intel_gmbus5
iic11: <I2C generic I/O> on iicbus11
info: [drm] MSI enabled 1 message(s)
info: [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
info: [drm] Driver supports precise vblank timestamp query.
intel_sdvo_ddc_proxy921920 on drmn0
info: [drm] GMBUS [i915 gmbus dpb] timed out, falling back to bit banging on pin 5
intel_sdvo_ddc_proxy921920: detached
drm_iic_dp_aux0 on drmn0
drm_iic_dp_aux1 on drmn0
drm_iic_dp_aux2 on drmn0
drmn0: taking over the fictitious range 0xd0000000-0xe0000000
info: [drm] Connector LVDS-1: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.LVDS-1
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector VGA-1: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.VGA-1
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector HDMI-A-1: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.HDMI-A-1
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector DP-1: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.DP-1
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector HDMI-A-2: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.HDMI-A-2
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector HDMI-A-3: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.HDMI-A-3
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector DP-2: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.DP-2
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector DP-3: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.DP-3
info: [drm]   - kern.vt.fb.default_mode
fbd0 on drmn0
VT: Replacing driver "vga" with new "fb".
drmn0: No ACPI video bus found
info: [drm] Initialized i915 1.6.0 20080730 for drmn0 on minor 0
aesni0: <AES-CBC,AES-XTS,AES-GCM,AES-ICM> on motherboard
fuse-freebsd: version 0.4.4, FUSE ABI 7.8
wlan0: Ethernet address: 1c:4b:d6:78:c2:00
lo0: link state changed to UP
info: [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
wlan0: link state changed to UP
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
wlan0: link state changed to DOWN
Waiting (max 60 seconds) for system process `vnlru' to stop... done
Waiting (max 60 seconds) for system process `syncer' to stop... 
Syncing disks, vnodes remaining... 0 0 0 0 0 0 0 done
Waiting (max 60 seconds) for system thread `bufdaemon' to stop... done
Waiting (max 60 seconds) for system thread `bufspacedaemon-0' to stop... done
Waiting (max 60 seconds) for system thread `bufspacedaemon-1' to stop... done
Waiting (max 60 seconds) for system thread `bufspacedaemon-2' to stop... done
Waiting (max 60 seconds) for system thread `bufspacedaemon-3' to stop... done
All buffers synced.
Uptime: 15m55s
---<<BOOT>>---
Table 'FACP' at 0x7ff49b00
Table 'SSDT' at 0x7ff49c00
Table 'MCFG' at 0x7ff4b590
Table 'TCPA' at 0x7ff4b5d0
Table 'APIC' at 0x7ff4b610
APIC: Found table at 0x7ff4b610
APIC: Using the MADT enumerator.
Copyright (c) 1992-2018 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 12.0-RELEASE-p1 #4 8b4b86db8ad(r12.0)-dirty: Fri Dec 21 18:39:39 CET 2018
    root@ProjectBSD:/usr/obj/usr/src/amd64.amd64/sys/GENERIC amd64
FreeBSD clang version 6.0.1 (tags/RELEASE_601/final 335540) (based on LLVM 6.0.1)
Table 'FACP' at 0x7ff49b00
Table 'SSDT' at 0x7ff49c00
Table 'MCFG' at 0x7ff4b590
Table 'TCPA' at 0x7ff4b5d0
Table 'APIC' at 0x7ff4b610
Table 'DMAR' at 0x7ff4b680
Table 'HPET' at 0x7ff4d730
ACPI: No SRAT table found
PPIM 0: PA=0xa0000, VA=0xffffffff82c10000, size=0x10000, mode=0
pmap: large map 8 PML4 slots (4096 Gb)
VT(vga): resolution 640x480
Preloaded elf kernel "/boot/kernel/kernel" at 0xffffffff829f3000.
Preloaded elf obj module "/boot/kernel/zfs.ko" at 0xffffffff829fc1f8.
Preloaded elf obj module "/boot/kernel/opensolaris.ko" at 0xffffffff829fca60.
Preloaded boot_entropy_cache "/boot/entropy" at 0xffffffff829fd090.
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
Calibrating TSC clock ... TSC clock: 2893487844 Hz
CPU: Intel(R) Core(TM) i7-3520M CPU @ 2.90GHz (2893.49-MHz K8-class CPU)
  Origin="GenuineIntel"  Id=0x306a9  Family=0x6  Model=0x3a  Stepping=9
  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=0x7fbae3ff<SSE3,PCLMULQDQ,DTES64,MON,DS_CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,TSCDLT,AESNI,XSAVE,OSXSAVE,AVX,F16C,RDRAND>
  AMD Features=0x28100800<SYSCALL,NX,RDTSCP,LM>
  AMD Features2=0x1<LAHF>
  Structured Extended Features=0x281<FSGSBASE,SMEP,ERMS>
  Structured Extended Features3=0xc000000<IBPB,STIBP>
  XSAVE Features=0x1<XSAVEOPT>
  VT-x: Basic Features=0xda0400<SMM,INS/OUTS,TRUE>
        Pin-Based Controls=0x7f<ExtINT,NMI,VNMI,PreTmr>
        Primary Processor Controls=0xfff9fffe<INTWIN,TSCOff,HLT,INVLPG,MWAIT,RDPMC,RDTSC,CR3-LD,CR3-ST,CR8-LD,CR8-ST,TPR,NMIWIN,MOV-DR,IO,IOmap,MTF,MSRmap,MONITOR,PAUSE>
        Secondary Processor Controls=0x8ff<APIC,EPT,DT,RDTSCP,x2APIC,VPID,WBINVD,UG,RDRAND>
        Exit Controls=0xda0400<PAT-LD,EFER-SV,PTMR-SV>
        Entry Controls=0xda0400
        EPT Features=0x6114141<XO,PW4,UC,WB,2M,INVEPT,single,all>
        VPID Features=0xf01<INVVPID,individual,single,all,single-globals>
  TSC: P-state invariant, performance statistics
Data TLB0: 2-MByte or 4 MByte pages, 4-way set associative, 32 entries
Data TLB: 4 KB pages, 4-way set associative, 64 entries
Instruction TLB: 2M/4M pages, fully associative, 8 entries
Instruction TLB: 4KByte pages, 4-way set associative, 64 entries
64-Byte prefetching
Shared 2nd-Level TLB: 4 KByte pages, 4-way associative, 512 entries
L2 cache: 256 kbytes, 8-way associative, 64 bytes/line
real memory  = 8589934592 (8192 MB)
Physical memory chunk(s):
0x0000000000010000 - 0x000000000009efff, 585728 bytes (143 pages)
0x0000000000103000 - 0x00000000001fffff, 1036288 bytes (253 pages)
0x0000000002c00000 - 0x000000007ff21fff, 2100436992 bytes (512802 pages)
0x0000000100000000 - 0x000000026d842fff, 6132346880 bytes (1497155 pages)
avail memory = 8200093696 (7820 MB)
intel stolen mem: base 0x80a00000 size 32 MB
Table 'FACP' at 0x7ff49b00
Table 'SSDT' at 0x7ff49c00
Table 'MCFG' at 0x7ff4b590
Table 'TCPA' at 0x7ff4b5d0
Table 'APIC' at 0x7ff4b610
Table 'DMAR' at 0x7ff4b680
DMAR: Found table at 0x7ff4b680
MADT: Found CPU APIC ID 0 ACPI ID 0: enabled
SMP: Added CPU 0 (AP)
MADT: Found CPU APIC ID 1 ACPI ID 1: enabled
SMP: Added CPU 1 (AP)
MADT: Found CPU APIC ID 2 ACPI ID 2: enabled
SMP: Added CPU 2 (AP)
MADT: Found CPU APIC ID 3 ACPI ID 3: enabled
SMP: Added CPU 3 (AP)
Event timer "LAPIC" quality 600
ACPI APIC Table: <CORE   COREBOOT>
Package ID shift: 4
L3 cache ID shift: 4
L2 cache ID shift: 1
L1 cache ID shift: 1
Core ID shift: 1
INTR: Adding local APIC 2 as a target
FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs
FreeBSD/SMP: 1 package(s) x 2 core(s) x 2 hardware threads
Package HW ID = 0
	Core HW ID = 0
		CPU0 (BSP): APIC ID: 0
		CPU1 (AP/HT): APIC ID: 1
	Core HW ID = 1
		CPU2 (AP): APIC ID: 2
		CPU3 (AP/HT): APIC ID: 3
APIC: CPU 0 has ACPI ID 0
APIC: CPU 1 has ACPI ID 1
APIC: CPU 2 has ACPI ID 2
APIC: CPU 3 has ACPI ID 3
Pentium Pro MTRR support enabled
x86bios:  IVT 0x000000-0x0004ff at 0xfffff80000000000
x86bios: SSEG 0x09e000-0x09efff at 0xfffffe00024bf000
x86bios: EBDA 0x09f000-0x09ffff at 0xfffff8000009f000
x86bios:  ROM 0x0a0000-0x0fefff at 0xfffff800000a0000
lapic0: CMCI unmasked
random: read 3840 bytes from preloaded cache
random: unblocking device.
arc4random: read 32 bytes from preloaded cache
VIMAGE (virtualized network stack) enabled
ULE: setup cpu 0
ULE: setup cpu 1
ULE: setup cpu 2
ULE: setup cpu 3
ACPI: RSDP 0x00000000000F6770 000024 (v02 CORE  )
ACPI: XSDT 0x000000007FF460E0 00005C (v01 CORE   COREBOOT 00000000 CORE 00000000)
ACPI: FACP 0x000000007FF49B00 0000F4 (v04 CORE   COREBOOT 00000000 CORE 00000000)
ACPI: DSDT 0x000000007FF46280 00387B (v02 COREv4 COREBOOT 20110725 INTL 20180810)
ACPI: FACS 0x000000007FF46240 000040
ACPI: SSDT 0x000000007FF49C00 00198B (v02 CORE   COREBOOT 0000002A CORE 0000002A)
ACPI: MCFG 0x000000007FF4B590 00003C (v01 CORE   COREBOOT 00000000 CORE 00000000)
ACPI: TCPA 0x000000007FF4B5D0 000032 (v02 CORE   COREBOOT 00000000 CORE 00000000)
ACPI: APIC 0x000000007FF4B610 00006C (v02 CORE   COREBOOT 00000000 CORE 00000000)
ACPI: DMAR 0x000000007FF4B680 0000A8 (v01 CORE   COREBOOT 00000000 CORE 00000000)
ACPI: HPET 0x000000007FF4D730 000038 (v01 CORE   COREBOOT 00000000 CORE 00000000)
MADT: Found IO APIC ID 2, Interrupt 0 at 0xfec00000
ioapic0: ver 0x20 maxredir 0x17
ioapic0: Routing external 8259A's -> intpin 0
MADT: Interrupt override: source 0, irq 2
ioapic0: Routing IRQ 0 -> intpin 2
MADT: Interrupt override: source 9, irq 9
ioapic0: intpin 9 trigger: level
ioapic0 <Version 2.0> irqs 0-23 on motherboard
lapic: Divisor 2, Frequency 49887728 Hz
lapic: deadline tsc mode, Frequency 2893487844 Hz
cpu0 BSP:
     ID: 0x00000000   VER: 0x01060015 LDR: 0x00000001 DFR: 0x00000000 x2APIC: 1
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   cmci: 0x000000f2
SMP: AP CPU #1 Launched!
cpu1 AP:
     ID: 0x00000001   VER: 0x01060015 LDR: 0x00000002 DFR: 0x00000000 x2APIC: 1
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   cmci: 0x000100f2
lapic2: CMCI unmasked
SMP: AP CPU #2 Launched!
cpu2 AP:
     ID: 0x00000002   VER: 0x01060015 LDR: 0x00000004 DFR: 0x00000000 x2APIC: 1
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   cmci: 0x000000f2
SMP: AP CPU #3 Launched!
cpu3 AP:
     ID: 0x00000003   VER: 0x01060015 LDR: 0x00000008 DFR: 0x00000000 x2APIC: 1
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   cmci: 0x000100f2
SMP: passed TSC synchronization test
TSC timecounter discards lower 1 bit(s)
Timecounter "TSC-low" frequency 1446743922 Hz quality 1000
wlan: <802.11 Link Layer>
random: entropy device external interface
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
EFI systbl not available
kbd: new array size 4
kbd1 at kbdmux0
mem: <memory>
netmap: loaded module
null: <full device, null device, zero device>
nfslock: pseudo-device
[ath_hal] loaded
crypto: <crypto core>
module_register_init: MOD_LOAD (vesa, 0xffffffff810f9770, 0) error 19
io: <I/O>
tcp_log: tcp_log device
random: registering fast source Intel Secure Key RNG
random: fast provider: "Intel Secure Key RNG"
hptnr: R750/DC7280 controller driver v1.1.5
hptrr: RocketRAID 17xx/2xxx SATA controller driver v1.2
hpt27xx: RocketRAID 27xx controller driver v1.2.8
nexus0
vtvga0: <VT VGA driver> on motherboard
cryptosoft0: <software crypto> on motherboard
crypto: assign cryptosoft0 driver id 0, flags 0x6000000
crypto: cryptosoft0 registers alg 1 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 2 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 3 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 4 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 5 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 16 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 6 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 7 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 32 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 18 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 19 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 20 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 8 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 15 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 9 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 10 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 13 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 14 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 34 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 35 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 36 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 37 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 11 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 22 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 23 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 25 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 24 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 26 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 27 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 28 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 21 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 17 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 29 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 30 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 31 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 38 flags 0 maxoplen 0
acpi0: <CORE COREBOOT> on motherboard
ACPI: 2 ACPI AML tables successfully acquired and loaded
PCIe: Memory Mapped configuration base @ 0xf0000000
ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 0 vector 48
acpi0: Power Button (fixed)
acpi0: wakeup code va 0xfffffe00003e8000 pa 0x9c000
ACPI Error: No handler for Region [ERAM] (0xfffff800035a1d00) [EmbeddedControl] (20181003/evregion-288)
ACPI Error: Region EmbeddedControl (ID=3) has no handler (20181003/exfldio-428)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.BAT0._STA, AE_NOT_EXIST (20181003/psparse-677)
ACPI Error: No handler for Region [ERAM] (0xfffff800035a1d00) [EmbeddedControl] (20181003/evregion-288)
ACPI Error: Region EmbeddedControl (ID=3) has no handler (20181003/exfldio-428)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.BAT1._STA, AE_NOT_EXIST (20181003/psparse-677)
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
hpet0: <High Precision Event Timer> iomem 0xfed00000-0xfed003ff on acpi0
hpet0: vendor 0x8086, rev 0x1, 14318180Hz 64bit, 8 timers, legacy route
hpet0:  t0: irqs 0x00f00000 (0), MSI, 64bit, periodic
hpet0:  t1: irqs 0x00f00000 (0), MSI
hpet0:  t2: irqs 0x00f00800 (0), MSI
hpet0:  t3: irqs 0x00f01000 (0), MSI
hpet0:  t4: irqs 0x00000000 (0), MSI
hpet0:  t5: irqs 0x00000000 (0), MSI
hpet0:  t6: irqs 0x00000000 (0), MSI
hpet0:  t7: irqs 0x00000000 (0), MSI
Timecounter "HPET" frequency 14318180 Hz quality 950
msi: routing MSI-X IRQ 256 to local APIC 2 vector 48
msi: routing MSI-X IRQ 257 to local APIC 0 vector 49
msi: routing MSI-X IRQ 258 to local APIC 2 vector 49
msi: routing MSI-X IRQ 259 to local APIC 0 vector 50
msi: routing MSI-X IRQ 260 to local APIC 2 vector 50
msi: routing MSI-X IRQ 261 to local APIC 0 vector 51
msi: routing MSI-X IRQ 262 to local APIC 2 vector 51
msi: routing MSI-X IRQ 263 to local APIC 0 vector 52
msi: Assigning MSI-X IRQ 256 to local APIC 0 vector 53
msi: Assigning MSI-X IRQ 257 to local APIC 1 vector 48
msi: Assigning MSI-X IRQ 259 to local APIC 3 vector 48
msi: Assigning MSI-X IRQ 260 to local APIC 0 vector 49
msi: Assigning MSI-X IRQ 262 to local APIC 0 vector 50
Event timer "HPET" frequency 14318180 Hz quality 550
Event timer "HPET1" frequency 14318180 Hz quality 440
Event timer "HPET2" frequency 14318180 Hz quality 440
Event timer "HPET3" frequency 14318180 Hz quality 440
Event timer "HPET4" frequency 14318180 Hz quality 440
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
acpi0: reservation of 20000000, 200000 (3) failed
acpi0: reservation of 40000000, 200000 (3) failed
cpu0: Processor \134_PR_.CP00 (ACPI ID 0) -> APIC ID 0
cpu0: <ACPI CPU> on acpi0
cpu1: Processor \134_PR_.CP01 (ACPI ID 1) -> APIC ID 1
cpu1: <ACPI CPU> on acpi0
cpu2: Processor \134_PR_.CP02 (ACPI ID 2) -> APIC ID 2
cpu2: <ACPI CPU> on acpi0
cpu3: Processor \134_PR_.CP03 (ACPI ID 3) -> APIC ID 3
cpu3: <ACPI CPU> on acpi0
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
atrtc0: <AT realtime clock> port 0x70-0x77 on acpi0
atrtc0: registered as a time-of-day clock, resolution 1.000000s
ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 2 vector 48
ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 0 vector 54
Event timer "RTC" frequency 32768 Hz quality 0
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
attimer0: <AT timer> port 0x40-0x43,0x50-0x53 irq 0 on acpi0
Timecounter "i8254" frequency 1193182 Hz quality 0
ioapic0: routing intpin 2 (ISA IRQ 0) to lapic 0 vector 55
Event timer "i8254" frequency 1193182 Hz quality 100
ACPI timer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 -> 10
Timecounter "ACPI-fast" frequency 3579545 Hz quality 900
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x508-0x50b on acpi0
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
acpi_ec0: <Embedded Controller: GPE 0x11> port 0x62,0x66 on acpi0
pci_link0:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  3 4 5 6 7 10 11 12 14 15
  Validation          0   11   N     0  3 4 5 6 7 10 11 12 14 15
  After Disable       0  255   N     0  3 4 5 6 7 10 11 12 14 15
pci_link1:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  3 4 5 6 7 10 11 12 14 15
  Validation          0   11   N     0  3 4 5 6 7 10 11 12 14 15
  After Disable       0  255   N     0  3 4 5 6 7 10 11 12 14 15
pci_link2:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  3 4 5 6 7 10 11 12 14 15
  Validation          0   11   N     0  3 4 5 6 7 10 11 12 14 15
  After Disable       0  255   N     0  3 4 5 6 7 10 11 12 14 15
pci_link3:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  3 4 5 6 7 10 11 12 14 15
  Validation          0   11   N     0  3 4 5 6 7 10 11 12 14 15
  After Disable       0  255   N     0  3 4 5 6 7 10 11 12 14 15
pci_link4:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  3 4 5 6 7 10 11 12 14 15
  Validation          0   11   N     0  3 4 5 6 7 10 11 12 14 15
  After Disable       0  255   N     0  3 4 5 6 7 10 11 12 14 15
pci_link5:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  3 4 5 6 7 10 11 12 14 15
  Validation          0   11   N     0  3 4 5 6 7 10 11 12 14 15
  After Disable       0  255   N     0  3 4 5 6 7 10 11 12 14 15
pci_link6:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  3 4 5 6 7 10 11 12 14 15
  Validation          0   11   N     0  3 4 5 6 7 10 11 12 14 15
  After Disable       0  255   N     0  3 4 5 6 7 10 11 12 14 15
pci_link7:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  3 4 5 6 7 10 11 12 14 15
  Validation          0   11   N     0  3 4 5 6 7 10 11 12 14 15
  After Disable       0  255   N     0  3 4 5 6 7 10 11 12 14 15
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
pcib0: decoding 5 range 0-0xff
pcib0: decoding 4 range 0-0xcf7
pcib0: decoding 4 range 0xd00-0xffff
pcib0: decoding 3 range 0xa0000-0xbffff
pcib0: decoding 3 range 0xc0000-0xc3fff
pcib0: decoding 3 range 0xc4000-0xc7fff
pcib0: decoding 3 range 0xc8000-0xcbfff
pcib0: decoding 3 range 0xcc000-0xcffff
pcib0: decoding 3 range 0xd0000-0xd3fff
pcib0: decoding 3 range 0xd4000-0xd7fff
pcib0: decoding 3 range 0xd8000-0xdbfff
pcib0: decoding 3 range 0xdc000-0xdffff
pcib0: decoding 3 range 0xe0000-0xe3fff
pcib0: decoding 3 range 0xe4000-0xe7fff
pcib0: decoding 3 range 0xe8000-0xebfff
pcib0: decoding 3 range 0xec000-0xeffff
pcib0: decoding 3 range 0xf0000-0xfffff
pcib0: decoding 3 range 0x82a00001-0xefffffff
pcib0: decoding 3 range 0xfed40000-0xfed44fff
pci0: <ACPI PCI bus> on pcib0
pci0: domain=0, physical bus=0
found->	vendor=0x8086, dev=0x0154, revid=0x09
	domain=0, bus=0, slot=0, func=0
	class=06-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0006, statreg=0x2090, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found->	vendor=0x8086, dev=0x0166, revid=0x09
	domain=0, bus=0, slot=2, func=0
	class=03-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0007, statreg=0x0090, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=11
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message
	map[10]: type Memory, range 64, base 0xe1400000, size 22, enabled
pcib0: allocated type 3 (0xe1400000-0xe17fffff) for rid 10 of pci0:0:2:0
	map[18]: type Prefetchable Memory, range 64, base 0xd0000000, size 28, enabled
pcib0: allocated type 3 (0xd0000000-0xdfffffff) for rid 18 of pci0:0:2:0
	map[20]: type I/O Port, range 32, base 0x3000, size  6, enabled
pcib0: allocated type 4 (0x3000-0x303f) for rid 20 of pci0:0:2:0
pcib0: matched entry for 0.2.INTA
pcib0: slot 2 INTA hardwired to IRQ 16
found->	vendor=0x8086, dev=0x0153, revid=0x09
	domain=0, bus=0, slot=4, func=0
	class=11-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0002, statreg=0x0090, cachelnsz=0 (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
	map[10]: type Memory, range 64, base 0xe1930000, size 15, enabled
pcib0: allocated type 3 (0xe1930000-0xe1937fff) for rid 10 of pci0:0:4:0
pcib0: matched entry for 0.4.INTA
pcib0: slot 4 INTA hardwired to IRQ 16
found->	vendor=0x8086, dev=0x1e31, revid=0x04
	domain=0, bus=0, slot=20, func=0
	class=0c-03-30, 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=11
	powerspec 2  supports D0 D3  current D0
	MSI supports 8 messages, 64 bit
	map[10]: type Memory, range 64, base 0xe1920000, size 16, enabled
pcib0: allocated type 3 (0xe1920000-0xe192ffff) for rid 10 of pci0:0:20:0
pcib0: matched entry for 0.20.INTA
pcib0: slot 20 INTA hardwired to IRQ 16
found->	vendor=0x8086, dev=0x1502, revid=0x04
	domain=0, bus=0, slot=25, func=0
	class=02-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0103, statreg=0x0010, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 32, base 0xe1900000, size 17, enabled
pcib0: allocated type 3 (0xe1900000-0xe191ffff) for rid 10 of pci0:0:25:0
	map[14]: type Memory, range 32, base 0xe193c000, size 12, enabled
pcib0: allocated type 3 (0xe193c000-0xe193cfff) for rid 14 of pci0:0:25:0
	map[18]: type I/O Port, range 32, base 0x3040, size  5, enabled
pcib0: allocated type 4 (0x3040-0x305f) for rid 18 of pci0:0:25:0
found->	vendor=0x8086, dev=0x1e2d, revid=0x04
	domain=0, bus=0, slot=26, func=0
	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=11
	powerspec 2  supports D0 D3  current D0
	map[10]: type Memory, range 32, base 0xe193f000, size 10, enabled
pcib0: allocated type 3 (0xe193f000-0xe193f3ff) for rid 10 of pci0:0:26:0
pcib0: matched entry for 0.26.INTA
pcib0: slot 26 INTA hardwired to IRQ 21
found->	vendor=0x8086, dev=0x1e20, revid=0x04
	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=11
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 64, base 0xe1938000, size 14, enabled
pcib0: allocated type 3 (0xe1938000-0xe193bfff) for rid 10 of pci0:0:27:0
pcib0: matched entry for 0.27.INTA
pcib0: slot 27 INTA hardwired to IRQ 16
found->	vendor=0x8086, dev=0x1e12, revid=0xc4
	domain=0, bus=0, slot=28, func=0
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0106, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=11
	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 21
	secbus=1, subbus=1
found->	vendor=0x8086, dev=0x1e14, revid=0xc4
	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=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=11
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message
pcib0: matched entry for 0.28.INTC
pcib0: slot 28 INTC hardwired to IRQ 19
	secbus=2, subbus=2
found->	vendor=0x8086, dev=0x1e26, revid=0x04
	domain=0, bus=0, slot=29, func=0
	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=11
	powerspec 2  supports D0 D3  current D0
	map[10]: type Memory, range 32, base 0xe1940000, size 10, enabled
pcib0: allocated type 3 (0xe1940000-0xe19403ff) for rid 10 of pci0:0:29:0
pcib0: matched entry for 0.29.INTA
pcib0: slot 29 INTA hardwired to IRQ 19
found->	vendor=0x8086, dev=0x1e55, revid=0x04
	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=0x1e03, revid=0x04
	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=a, irq=10
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message
	map[10]: type I/O Port, range 32, base 0x3080, size  3, enabled
pcib0: allocated type 4 (0x3080-0x3087) for rid 10 of pci0:0:31:2
	map[14]: type I/O Port, range 32, base 0x3090, size  2, enabled
pcib0: allocated type 4 (0x3090-0x3093) for rid 14 of pci0:0:31:2
	map[18]: type I/O Port, range 32, base 0x3088, size  3, enabled
pcib0: allocated type 4 (0x3088-0x308f) for rid 18 of pci0:0:31:2
	map[1c]: type I/O Port, range 32, base 0x3094, size  2, enabled
pcib0: allocated type 4 (0x3094-0x3097) for rid 1c of pci0:0:31:2
	map[20]: type I/O Port, range 32, base 0x3060, size  5, enabled
pcib0: allocated type 4 (0x3060-0x307f) for rid 20 of pci0:0:31:2
	map[24]: type Memory, range 32, base 0xe193e000, size 11, enabled
pcib0: allocated type 3 (0xe193e000-0xe193e7ff) for rid 24 of pci0:0:31:2
pcib0: matched entry for 0.31.INTA
pcib0: slot 31 INTA hardwired to IRQ 17
found->	vendor=0x8086, dev=0x1e22, revid=0x04
	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=b, irq=11
	map[10]: type Memory, range 64, base 0xe1941000, size  8, enabled
pcib0: allocated type 3 (0xe1941000-0xe19410ff) for rid 10 of pci0:0:31:3
	map[20]: type I/O Port, range 32, base 0x400, size  5, enabled
pcib0: allocated type 4 (0x400-0x41f) for rid 20 of pci0:0:31:3
pcib0: matched entry for 0.31.INTB
pcib0: slot 31 INTB hardwired to IRQ 23
found->	vendor=0x8086, dev=0x1e24, revid=0x04
	domain=0, bus=0, slot=31, func=6
	class=11-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0002, statreg=0x0010, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=11
	powerspec 3  supports D0 D3  current D0
	map[10]: type Memory, range 64, base 0xe193d000, size 12, enabled
pcib0: allocated type 3 (0xe193d000-0xe193dfff) for rid 10 of pci0:0:31:6
pcib0: matched entry for 0.31.INTC
pcib0: slot 31 INTC hardwired to IRQ 16
vgapci0: <VGA-compatible display> port 0x3000-0x303f mem 0xe1400000-0xe17fffff,0xd0000000-0xdfffffff irq 16 at device 2.0 on pci0
vgapci0: Boot video device
pci0: <dasp> at device 4.0 (no driver attached)
xhci0: <Intel Panther Point USB 3.0 controller> mem 0xe1920000-0xe192ffff irq 16 at device 20.0 on pci0
xhci0: 32 bytes context size, 64-bit DMA
xhci0: attempting to allocate 1 MSI vectors (8 supported)
msi: routing MSI IRQ 264 to local APIC 2 vector 48
xhci0: using IRQ 264 for MSI
xhci0: MSI enabled
xhci0: Port routing mask set to 0xffffffff
usbus0 on xhci0
xhci0: usbpf: Attached
usbus0: 5.0Gbps Super Speed USB v3.0
em0: <Intel(R) PRO/1000 Network Connection> port 0x3040-0x305f mem 0xe1900000-0xe191ffff,0xe193c000-0xe193cfff at device 25.0 on pci0
em0: attach_pre capping queues at 1
em0: using 1024 tx descriptors and 1024 rx descriptors
em0: msix_init qsets capped at 1
em0: Unable to map MSIX table 
em0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 265 to local APIC 0 vector 56
em0: using IRQ 265 for MSI
em0: Using an MSI interrupt
em0: allocated for 1 tx_queues
em0: allocated for 1 rx_queues
msi: Assigning MSI IRQ 265 to local APIC 3 vector 49
msi: Assigning MSI IRQ 265 to local APIC 2 vector 50
em0: bpf attached
em0: Ethernet address: 3c:97:0e:b7:35:ea
em0: netmap queues/slots: TX 1/1024, RX 1/1024
ehci0: <Intel Panther Point USB 2.0 controller> mem 0xe193f000-0xe193f3ff irq 21 at device 26.0 on pci0
ioapic0: routing intpin 21 (PCI IRQ 21) to lapic 2 vector 51
usbus1: EHCI version 1.0
usbus1 on ehci0
ehci0: usbpf: Attached
usbus1: 480Mbps High Speed USB v2.0
hdac0: <Intel Panther Point HDA Controller> mem 0xe1938000-0xe193bfff irq 16 at device 27.0 on pci0
hdac0: PCI card vendor: 0x17aa, device: 0x21fb
hdac0: HDA Driver Revision: 20120126_0002
hdac0: Config options: on=0x00000000 off=0x00000000
hdac0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 266 to local APIC 0 vector 56
hdac0: using IRQ 266 for MSI
hdac0: Caps: OSS 4, ISS 4, BSS 0, NSDO 1, 64bit, CORB 256, RIRB 256
pcib1: <ACPI PCI-PCI bridge> irq 21 at device 28.0 on pci0
pcib0: allocated type 3 (0xe1800000-0xe18fffff) for rid 20 of pcib1
pcib1:   domain            0
pcib1:   secondary bus     1
pcib1:   subordinate bus   1
pcib1:   memory decode     0xe1800000-0xe18fffff
pcib1:   special decode    ISA
pci1: <ACPI PCI bus> on pcib1
pcib1: allocated bus range (1-1) for rid 0 of pci1
pci1: domain=0, physical bus=1
found->	vendor=0x168c, dev=0x002b, revid=0x01
	domain=0, bus=1, slot=0, func=0
	class=02-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0002, 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 D1 D3  current D0
	MSI supports 1 message
	map[10]: type Memory, range 64, base 0xe1800000, size 16, enabled
pcib1: allocated memory range (0xe1800000-0xe180ffff) for rid 10 of pci0:1:0:0
pcib1: matched entry for 1.0.INTA
pcib1: slot 0 INTA hardwired to IRQ 17
ath0: <Atheros 9285> mem 0xe1800000-0xe180ffff irq 17 at device 0.0 on pci1
ioapic0: routing intpin 17 (PCI IRQ 17) to lapic 2 vector 52
[ath] AR9285 Main LNA config: LNA2
[ath] AR9285 Alt LNA config: LNA1
[ath] LNA diversity enabled, Diversity enabled
[ath] Enabling diversity for Kite
ath0: RX timestamp: 32 bits
ath0: TX timestamp: 32 bits
ath0: [HT] enabling HT modes
ath0: [HT] 1 stream STBC receive enabled
ath0: [HT] 1 RX streams; 1 TX streams
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
ath0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
ath0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
ath0: 1T1R
ath0: 11ng MCS 20MHz
ath0: MCS 0-7: 6.5Mbps - 65Mbps
ath0: 11ng MCS 40MHz:
ath0: MCS 0-7: 13.5Mbps - 135Mbps
ath0: 11ng MCS 40MHz SGI:
ath0: MCS 0-7: 15Mbps - 150Mbps
ath0: AR9285 mac 192.2 RF5133 phy 14.0
ath0: 2GHz radio: 0x0000; 5GHz radio: 0x00c0
ath0: Use hw queue 1 for WME_AC_BE traffic
ath0: Use hw queue 0 for WME_AC_BK traffic
ath0: Use hw queue 2 for WME_AC_VI traffic
ath0: Use hw queue 3 for WME_AC_VO traffic
ath0: Use hw queue 8 for CAB traffic
ath0: Use hw queue 9 for beacons
ath0: using multicast key search
pcib2: <ACPI PCI-PCI bridge> irq 19 at device 28.1 on pci0
pcib2: allocating non-ISA range 0x2000-0x20ff
pcib0: allocated type 4 (0x2000-0x20ff) for rid 1c of pcib2
pcib2: allocating non-ISA range 0x2400-0x24ff
pcib0: allocated type 4 (0x2400-0x24ff) for rid 1c of pcib2
pcib2: allocating non-ISA range 0x2800-0x28ff
pcib0: allocated type 4 (0x2800-0x28ff) for rid 1c of pcib2
pcib2: allocating non-ISA range 0x2c00-0x2cff
pcib0: allocated type 4 (0x2c00-0x2cff) for rid 1c of pcib2
pcib0: allocated type 3 (0xe0000000-0xe08fffff) for rid 20 of pcib2
pcib0: allocated type 3 (0xe0c00000-0xe13fffff) for rid 24 of pcib2
pcib2: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 267 to local APIC 0 vector 57
pcib2: using IRQ 267 for MSI
pcib2: [GIANT-LOCKED]
pcib2: HotPlug command: 0000 -> 1028
pcib2:   domain            0
pcib2:   secondary bus     2
pcib2:   subordinate bus   2
pcib2:   I/O decode        0x2000-0x2fff
pcib2:   memory decode     0xe0000000-0xe08fffff
pcib2:   prefetched decode 0xe0c00000-0xe13fffff
pcib2:   special decode    ISA
pci2: <ACPI PCI bus> on pcib2
pcib2: allocated bus range (2-2) for rid 0 of pci2
pci2: domain=0, physical bus=2
found->	vendor=0x1180, dev=0xe823, revid=0x04
	domain=0, bus=2, slot=0, func=0
	class=08-05-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0006, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=11
	powerspec 3  supports D0 D1 D2 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 32, base 0xe0800000, size  8, enabled
pcib2: allocated memory range (0xe0800000-0xe08000ff) for rid 10 of pci0:2:0:0
pcib2: matched entry for 2.0.INTA
pcib2: slot 0 INTA hardwired to IRQ 18
sdhci_pci0: <RICOH R5CE823 SD> mem 0xe0800000-0xe08000ff irq 18 at device 0.0 on pci2
sdhci_pci0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 268 to local APIC 2 vector 53
sdhci_pci0: using IRQ 268 for MSI
sdhci_pci0-slot0: 50MHz HS 4bits VDD: 3.3V VCCQ: 3.3V 1.8V DRV: BACD DMA removable
sdhci_pci0-slot0: eMMC: HS200
sdhci_pci0-slot0: UHS-I: SDR12 SDR25 SDR50 SDR104
sdhci_pci0-slot0: Re-tuning count 0 secs, mode 3
sdhci_pci0-slot0: ============== REGISTER DUMP ==============
sdhci_pci0-slot0: Sys addr: 0x00000000 | Version:  0x00000502
sdhci_pci0-slot0: Blk size: 0x00000000 | Blk cnt:  0x00000000
sdhci_pci0-slot0: Argument: 0x00000000 | Trn mode: 0x00000000
sdhci_pci0-slot0: Present:  0x01f20000 | Host ctl: 0x00000000
sdhci_pci0-slot0: Power:    0x00000000 | Blk gap:  0x00000000
sdhci_pci0-slot0: Wake-up:  0x00000000 | Clock:    0x00000000
sdhci_pci0-slot0: Timeout:  0x00000000 | Int stat: 0x00000000
sdhci_pci0-slot0: Int enab: 0x01ff00fb | Sig enab: 0x01ff00fb
sdhci_pci0-slot0: AC12 err: 0x00000000 | Host ctl2:0x00000000
sdhci_pci0-slot0: Caps:     0x21e832b2 | Caps2:    0x00008073
sdhci_pci0-slot0: Max curr: 0x00000040 | ADMA err: 0x00000000
sdhci_pci0-slot0: ADMA addr:0x00000000 | Slot int: 0x00000000
sdhci_pci0-slot0: ===========================================
sdhci_pci0: 1 slot(s) allocated
ehci1: <Intel Panther Point USB 2.0 controller> mem 0xe1940000-0xe19403ff irq 19 at device 29.0 on pci0
ioapic0: routing intpin 19 (PCI IRQ 19) to lapic 0 vector 58
usbus2: EHCI version 1.0
usbus2 on ehci1
ehci1: usbpf: Attached
usbus2: 480Mbps High Speed USB v2.0
isab0: <PCI-ISA bridge> at device 31.0 on pci0
isa0: <ISA bus> on isab0
ahci0: <Intel Panther Point AHCI SATA controller> port 0x3080-0x3087,0x3090-0x3093,0x3088-0x308f,0x3094-0x3097,0x3060-0x307f mem 0xe193e000-0xe193e7ff irq 17 at device 31.2 on pci0
ahci0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 269 to local APIC 2 vector 54
ahci0: using IRQ 269 for MSI
ahci0: AHCI v1.30 with 6 6Gbps ports, Port Multiplier not supported
ahci0: Caps: 64bit NCQ SNTF MPS SS ALP AL CLO 6Gbps PMD SSC PSC 32cmd 6ports
ahci0: Caps2: APST
ahcich0: <AHCI channel> at channel 0 on ahci0
ahcich0: Caps:
ahcich1: <AHCI channel> at channel 1 on ahci0
ahcich1: Caps:
ahcich2: <AHCI channel> at channel 2 on ahci0
ahcich2: Caps:
ahcich3: not probed (disabled)
ahcich4: <AHCI channel> at channel 4 on ahci0
ahcich4: Caps:
ahcich5: not probed (disabled)
pci0: <serial bus, SMBus> at device 31.3 (no driver attached)
pci0: <dasp> at device 31.6 (no driver attached)
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
acpi_tz0: <Thermal Zone> on acpi0
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
acpi_tz1: <Thermal Zone> on acpi0
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
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 0061
kbdc: RESET_KBD return code:00fa
kbdc: RESET_KBD status:00aa
atkbd: keyboard ID 0x54ab (2)
kbd0 at atkbd0
kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x1d0000
ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 0 vector 59
atkbd0: [GIANT-LOCKED]
psm0: unable to allocate IRQ
psmcpnp0: <PS/2 mouse port> irq 12 on acpi0
psm0: current command byte:0061
kbdc: TEST_AUX_PORT status:0000
kbdc: RESET_AUX return code:00fa
kbdc: RESET_AUX status:00aa
kbdc: RESET_AUX ID:0000
kbdc: RESET_AUX return code:00fa
kbdc: RESET_AUX status:00aa
kbdc: RESET_AUX ID:0000
psm: status 00 02 64
psm: status 00 00 64
psm: status 00 03 64
psm: status 00 03 64
psm: data 08 00 00
psm: status 02 47 17
psm: status 01 c0 b1
psm: status d0 47 b1
psm: status 3c 80 55
psm: status b4 00 00
psm: status 0a 00 00
psm: status aa 9f 8c
psm: status 01 47 40
psm: status 00 02 64
psm0: <PS/2 Mouse> irq 12 on atkbdc0
ioapic0: routing intpin 12 (ISA IRQ 12) to lapic 2 vector 55
psm0: [GIANT-LOCKED]
psm0: model Synaptics Touchpad, device ID 0-00, 3 buttons
psm0: config:00004000, flags:00000008, packet size:6
psm0: syncmask:c0, syncbits:00
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
acpi_acad0: <AC Adapter> on acpi0
AcpiOsExecute: task queue not started
battery0: <ACPI Control Method Battery> on acpi0
AcpiOsExecute: task queue not started
battery1: <ACPI Control Method Battery> on acpi0
AcpiOsExecute: task queue not started
acpi_button0: <Sleep Button> on acpi0
acpi_lid0: <Control Method Lid Switch> on acpi0
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
ACPI: Enabled 1 GPEs in block 00 to 3F
AcpiOsExecute: task queue not started
pcib0: allocated type 3 (0xb0000-0xb07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb0800-0xb0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb1000-0xb17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb1800-0xb1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb2000-0xb27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb2800-0xb2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb3000-0xb37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb3800-0xb3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb4000-0xb47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb4800-0xb4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb5000-0xb57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb5800-0xb5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb6000-0xb67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb6800-0xb6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb7000-0xb77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb7800-0xb7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb8000-0xb87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb8800-0xb8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb9000-0xb97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb9800-0xb9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xba000-0xba7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xba800-0xbafff) for rid 0 of orm0
pcib0: allocated type 3 (0xbb000-0xbb7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xbb800-0xbbfff) for rid 0 of orm0
pcib0: allocated type 3 (0xbc000-0xbc7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xbc800-0xbcfff) for rid 0 of orm0
pcib0: allocated type 3 (0xbd000-0xbd7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xbd800-0xbdfff) for rid 0 of orm0
pcib0: allocated type 3 (0xbe000-0xbe7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xbe800-0xbefff) for rid 0 of orm0
pcib0: allocated type 3 (0xbf000-0xbf7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xbf800-0xbffff) for rid 0 of orm0
pcib0: allocated type 3 (0xc0000-0xc07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc0800-0xc0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc1000-0xc17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc1800-0xc1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc2000-0xc27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc2800-0xc2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc3000-0xc37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc3800-0xc3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc4000-0xc47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc4800-0xc4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc5000-0xc57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc5800-0xc5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc6000-0xc67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc6800-0xc6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc7000-0xc77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc7800-0xc7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc8000-0xc87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc8800-0xc8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc9000-0xc97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc9800-0xc9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xca000-0xca7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xca800-0xcafff) for rid 0 of orm0
pcib0: allocated type 3 (0xcb000-0xcb7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcb800-0xcbfff) for rid 0 of orm0
pcib0: allocated type 3 (0xcc000-0xcc7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcc800-0xccfff) for rid 0 of orm0
pcib0: allocated type 3 (0xcd000-0xcd7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcd800-0xcdfff) for rid 0 of orm0
pcib0: allocated type 3 (0xce000-0xce7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xce800-0xcefff) for rid 0 of orm0
pcib0: allocated type 3 (0xcf000-0xcf7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcf800-0xcffff) for rid 0 of orm0
pcib0: allocated type 3 (0xd0000-0xd07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd0800-0xd0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd1000-0xd17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd1800-0xd1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd2000-0xd27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd2800-0xd2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd3000-0xd37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd3800-0xd3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd4000-0xd47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd4800-0xd4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd5000-0xd57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd5800-0xd5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd6000-0xd67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd6800-0xd6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd7000-0xd77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd7800-0xd7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd8000-0xd87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd8800-0xd8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd9000-0xd97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd9800-0xd9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xda000-0xda7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xda800-0xdafff) for rid 0 of orm0
pcib0: allocated type 3 (0xdb000-0xdb7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xdb800-0xdbfff) for rid 0 of orm0
pcib0: allocated type 3 (0xdc000-0xdc7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xdc800-0xdcfff) for rid 0 of orm0
pcib0: allocated type 3 (0xdd000-0xdd7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xdd800-0xddfff) for rid 0 of orm0
pcib0: allocated type 3 (0xde000-0xde7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xde800-0xdefff) for rid 0 of orm0
pcib0: allocated type 3 (0xdf000-0xdf7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xdf800-0xdffff) for rid 0 of orm0
pcib0: allocated type 3 (0xe0000-0xe07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe0800-0xe0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe1000-0xe17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe1800-0xe1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe2000-0xe27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe2800-0xe2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe3000-0xe37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe3800-0xe3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe4000-0xe47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe4800-0xe4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe5000-0xe57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe5800-0xe5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe6000-0xe67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe6800-0xe6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe7000-0xe77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe7800-0xe7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe8000-0xe87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe8800-0xe8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe9000-0xe97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe9800-0xe9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xea000-0xea7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xea800-0xeafff) for rid 0 of orm0
pcib0: allocated type 3 (0xeb000-0xeb7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xeb800-0xebfff) for rid 0 of orm0
pcib0: allocated type 3 (0xec000-0xec7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xec800-0xecfff) for rid 0 of orm0
pcib0: allocated type 3 (0xed000-0xed7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xed800-0xedfff) for rid 0 of orm0
pcib0: allocated type 3 (0xed800-0xeffff) for rid 0 of orm0
pcib0: allocated type 3 (0xf0000-0xf07ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf0800-0xf0fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf1000-0xf17ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf1800-0xf1fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf2000-0xf27ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf2800-0xf2fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf3000-0xf37ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf3800-0xf3fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf4000-0xf47ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf4800-0xf4fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf5000-0xf57ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf5800-0xf5fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf6000-0xf67ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf6800-0xf6fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf7000-0xf77ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf7800-0xf7fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf8000-0xf87ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf8800-0xf8fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf9000-0xf97ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf9800-0xf9fff) for rid 1 of orm0
pcib0: allocated type 3 (0xfa000-0xfa7ff) for rid 1 of orm0
pcib0: allocated type 3 (0xfa800-0xfafff) for rid 1 of orm0
pcib0: allocated type 3 (0xfb000-0xfb7ff) for rid 1 of orm0
pcib0: allocated type 3 (0xfb800-0xfbfff) for rid 1 of orm0
pcib0: allocated type 3 (0xfc000-0xfc7ff) for rid 1 of orm0
pcib0: allocated type 3 (0xfc800-0xfcfff) for rid 1 of orm0
pcib0: allocated type 3 (0xfd000-0xfd7ff) for rid 1 of orm0
pcib0: allocated type 3 (0xfd800-0xfdfff) for rid 1 of orm0
pcib0: allocated type 3 (0xfe000-0xfe7ff) for rid 1 of orm0
pcib0: allocated type 3 (0xfe800-0xfefff) for rid 1 of orm0
pcib0: allocated type 3 (0xff000-0xff7ff) for rid 1 of orm0
pcib0: allocated type 3 (0xff800-0xfffff) for rid 1 of orm0
ahc_isa_identify 0: ioport 0xc00 alloc failed
ahc_isa_identify 1: ioport 0x1c00 alloc failed
ahc_isa_identify 2: ioport 0x2c00 alloc failed
ahc_isa_identify 3: ioport 0x3c00 alloc failed
ahc_isa_identify 4: ioport 0x4c00 alloc failed
ahc_isa_identify 5: ioport 0x5c00 alloc failed
ahc_isa_identify 6: ioport 0x6c00 alloc failed
ahc_isa_identify 7: ioport 0x7c00 alloc failed
ahc_isa_identify 8: ioport 0x8c00 alloc failed
ahc_isa_identify 9: ioport 0x9c00 alloc failed
ahc_isa_identify 10: ioport 0xac00 alloc failed
ahc_isa_identify 11: ioport 0xbc00 alloc failed
ahc_isa_identify 12: ioport 0xcc00 alloc failed
ahc_isa_identify 13: ioport 0xdc00 alloc failed
ahc_isa_identify 14: ioport 0xec00 alloc failed
isa_probe_children: disabling PnP devices
atkbdc: atkbdc0 already exists; skipping it
atrtc: atrtc0 already exists; skipping it
attimer: attimer0 already exists; skipping it
sc: sc0 already exists; skipping it
isa_probe_children: probing non-PnP devices
orm0: <ISA Option ROM> at iomem 0xed800-0xeffff pnpid ORM0000 on isa0
sc0 failed to probe on isa0
vga0 failed to probe on isa0
pcib0: allocated type 4 (0x3f0-0x3f5) for rid 0 of fdc0
pcib0: allocated type 4 (0x3f7-0x3f7) for rid 1 of fdc0
fdc0 failed to probe at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0
ppc0: cannot reserve I/O port range
ppc0 failed to probe at irq 7 on isa0
pcib0: allocated type 4 (0x3f8-0x3f8) for rid 0 of uart0
uart0 failed to probe at port 0x3f8 irq 4 on isa0
pcib0: allocated type 4 (0x2f8-0x2f8) for rid 0 of uart1
uart1 failed to probe at port 0x2f8 irq 3 on isa0
isa_probe_children: probing PnP devices
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
est0: <Enhanced SpeedStep Frequency Control> on cpu0
est1: <Enhanced SpeedStep Frequency Control> on cpu1
est2: <Enhanced SpeedStep Frequency Control> on cpu2
est3: <Enhanced SpeedStep Frequency Control> on cpu3
Device configuration finished.
procfs registered
ZFS filesystem version: 5
ZFS storage pool version: features support (5000)
Timecounters tick every 1.000 msec
vlan: initialized, using hash tables with chaining
lo0: bpf attached
tcp_init: net.inet.tcp.tcbhashsize auto tuned to 65536
IPsec: Initialized Security Association Processing.
AcpiOsExecute: enqueue 8 pending tasks
acpi_acad0: battery0: acline initialization start
hptnr: no controller detected.
battery initialization start
battery1: battery initialization start
battery0: acpi_acad0: hptrr: no controller detected.
hpt27xx: no controller detected.
battery initialization done, tried 1 times
hdacc0: ahcich0: On Line
acpi_acad0: <Realtek ALC269 HDA CODEC> at cad 0 on hdac0
acline initialization done, tried 1 times
hdaa0: AHCI reset...
<Realtek ALC269 Audio Function Group> at nid 1 on hdacc0
ahcich0: hdaa0: SATA connect time=900us status=00000123
ahcich0: AHCI reset: device found
ahcich0: AHCI reset: device ready after 0ms
Subsystem ID: 0x17aa21fb
ahcich1: AHCI reset...
hdaa0: NumGPIO=2 NumGPO=0 NumGPI=0 GPIWake=0 GPIUnsol=1
hdaa0:  GPIO0: disabled
hdaa0:  GPIO1: disabled
ahcich1: SATA connect timeout time=10000us status=00000000
ahcich1: AHCI reset: device not found
hdaa0: Original pins configuration:
ahcich2: hdaa0: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa0: 18 90a60140 4  0  Mic           Fixed Digital Internal   Unknown 1
AHCI reset...
hdaa0: 20 90170110 1  0  Speaker       Fixed Analog  Internal   Unknown 1
hdaa0: 21 03211020 2  0  Headphones    Jack  1/8     Left       Black   0
ahcich2: hdaa0: 23 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa0: 24 03a11830 3  0  Mic           Jack  1/8     Left       Black   8
hdaa0: 25 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa0: 26 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa0: 27 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa0: 29 40138205 0  5  Speaker       None  ATAPI   0x00       Purple  2
hdaa0: 30 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa0: Patching pin config nid=21 0x03211020 -> 0x0321101f
hdaa0: Patching widget caps nid=29 0x00400400 -> 0x00700400
hdaa0: Patched pins configuration:
hdaa0: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa0: 18 90a60140 4  0  Mic           Fixed Digital Internal   Unknown 1
hdaa0: 20 90170110 1  0  Speaker       Fixed Analog  Internal   Unknown 1
hdaa0: 21 0321101f 1  15 Headphones    Jack  1/8     Left       Black   0
hdaa0: 23 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa0: 24 03a11830 3  0  Mic           Jack  1/8     Left       Black   8
hdaa0: 25 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa0: 26 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa0: 27 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa0: 30 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa0: 3 associations found:
hdaa0: Association 0 (1) out:
hdaa0:  Pin nid=20 seq=0
hdaa0:  Pin nid=21 seq=15
hdaa0: Association 1 (3) in:
hdaa0:  Pin nid=24 seq=0
hdaa0: Association 2 (4) in:
hdaa0:  Pin nid=18 seq=0
hdaa0: Tracing association 0 (1)
hdaa0:  Pin 20 traced to DAC 2
hdaa0:  Pin 21 traced to DAC 2 and hpredir 0
hdaa0: Association 0 (1) trace succeeded
hdaa0: Tracing association 1 (3)
hdaa0:  Pin 24 traced to ADC 8
hdaa0: Association 1 (3) trace succeeded
hdaa0: Tracing association 2 (4)
hdaa0:  Pin 18 traced to ADC 9
hdaa0: Association 2 (4) trace succeeded
hdaa0: Looking for additional DAC for association 0 (1)
hdaa0: Looking for additional ADC for association 1 (3)
hdaa0: Looking for additional ADC for association 2 (4)
hdaa0: Tracing input monitor
hdaa0:  Tracing nid 11 to out
hdaa0:  nid 11 is input monitor
hdaa0:  Tracing nid 34 to out
hdaa0:  Tracing nid 35 to out
hdaa0: Tracing other input monitors
hdaa0:  Tracing nid 18 to out
hdaa0:  Tracing nid 24 to out
hdaa0: Tracing beeper
hdaa0: Headphones redirection for association 0 nid=21 using unsolicited responses.
hdaa0: Redirect output to: main
hdaa0: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref
SATA connect timeout time=10000us status=00000000
pcm0: ahcich2: AHCI reset: device not found
<Realtek ALC269 (Analog 2.0+HP/2.0)>ahcich4:  at nid 20,21 and 24 on hdaa0
pcm0: AHCI reset...
Playback:
pcm0:      Stream cap: 0x00000001 PCM
pcm0:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm0:             DAC: 2
pcm0: 
pcm0:     nid=20 [pin: Speaker (Fixed)]
pcm0:       + <- nid=12 [audio mixer] [src: pcm, mix]
pcm0:              + <- nid=2 [audio output] [src: pcm]
ahcich4: pcm0:              + <- nid=11 [audio mixer] [src: mix]
pcm0: 
pcm0:     SATA connect timeout time=10000us status=00000000
nid=21 [pin: Headphones (Black Jack)]
pcm0:       + <- nid=12 [audio mixer] [src: pcm, mix]
pcm0:              + <- nid=2 [audio output] [src: pcm]
pcm0:              + <- nid=11 [audio mixer] [src: mix]
pcm0: 
pcm0: Record:
pcm0:      Stream cap: 0x00000001 PCM
pcm0:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm0: ahcich4: AHCI reset: device not found
            ADC: 8
ada0 at ahcich0 bus 0 scbus0 target 0 lun 0
ada0: <INTEL SSDSA2BW160G3L 4PC1LE04> ATA8-ACS SATA 2.x device
ada0: Serial Number BTPR151103EC160DGN
ada0: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes)
ada0: Command Queueing enabled
ada0: 152627MB (312581808 512 byte sectors)
pcm0: 
pcm0:     nid=8 [audio input]
pcm0:       + <- nid=35 [audio mixer] [src: speaker, mic, mix]
pcm0:              + <- pass0 at ahcich0 bus 0 scbus0 target 0 lun 0
nid=24 [pin: Mic (Black Jack)] [src: mic]
pcm0:              + <- pass0: <INTEL SSDSA2BW160G3L 4PC1LE04> ATA8-ACS SATA 2.x device
nid=29 [beep widget] [src: speaker]
pcm0:              + <- nid=11 [audio mixer] [src: mix]
pcm0: 
pcm0: Input Mix:
pcm0: 
pcm0:     nid=11 [audio mixer]
pass0: Serial Number BTPR151103EC160DGN
pass0: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes)
pass0: Command Queueing enabled
GEOM: new disk ada0
pcm0:       + <- nid=24 [pin: Mic (Black Jack)] [src: mic]
pcm0:       + <- nid=29 [beep widget] [src: speaker]
pcm0: 
pcm0: Master Volume (OSS: vol): -65/0dB
pcm0:    +- ctl  1 (nid   2 out):    -65/0dB (88 steps)
pcm0:    +- ctl 10 (nid  12 in   0): mute
pcm0:    +- ctl 11 (nid  12 in   1): mute
pcm0:    +- ctl 17 (nid  20 in ):    mute
pcm0:    +- ctl 18 (nid  21 in ):    mute
pcm0: 
pcm0: PCM Volume (OSS: pcm): -65/0dB
pcm0:    +- ctl  1 (nid   2 out):    -65/0dB (88 steps)
pcm0:    +- ctl 10 (nid  12 in   0): mute
pcm0: 
pcm0: Microphone Volume (OSS: mic): 0/30dB
pcm0:    +- ctl  5 (nid  11 in   0): -34/12dB (32 steps) + mute
pcm0:    +- ctl 21 (nid  24 out):    0/30dB (4 steps)
pcm0:    +- ctl 35 (nid  35 in   0): mute
pcm0: 
pcm0: Speaker/Beep Volume (OSS: speaker): -34/12dB
pcm0:    +- ctl  9 (nid  11 in   4): -34/12dB (32 steps) + mute
pcm0:    +- ctl 39 (nid  35 in   4): mute
pcm0: 
pcm0: Recording Level (OSS: rec): -17/30dB
pcm0:    +- ctl  3 (nid   8 in   0): -17/30dB (64 steps) + mute
pcm0:    +- ctl 35 (nid  35 in   0): mute
pcm0:    +- ctl 39 (nid  35 in   4): mute
pcm0:    +- ctl 40 (nid  35 in   5): mute
pcm0: 
pcm0: Input Mix Level (OSS: mix): -34/12dB
pcm0:    +- ctl  5 (nid  11 in   0): -34/12dB (32 steps) + mute
pcm0:    +- ctl  9 (nid  11 in   4): -34/12dB (32 steps) + mute
pcm0:    +- ctl 11 (nid  12 in   1): mute
pcm0:    +- ctl 40 (nid  35 in   5): mute
pcm0: 
pcm0: Input Monitoring Level (OSS: igain): 0/0dB
pcm0:    +- ctl 11 (nid  12 in   1): mute
pcm0: 
pcm0: Mixer "vol":
pcm0: Mixer "pcm":
pcm0: Mixer "speaker":
pcm0: Mixer "mic":
pcm0: Mixer "mix":
pcm0: Mixer "rec":
pcm0: Mixer "igain":
pcm0: Mixer "ogain":
pcm0: Playback channel set is: Front Left, Front Right, 
pcm0: Playback channel matrix is: 2.0 (unknown)
pcm0: Recording channel set is: Front Left, Front Right, 
pcm0: Recording channel matrix is: 2.0 (disconnected)
pcm1: <Realtek ALC269 (Internal Analog Mic)> at nid 18 on hdaa0
pcm1: Record:
pcm1:      Stream cap: 0x00000001 PCM
pcm1:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm1:             ADC: 9
pcm1: 
pcm1:     nid=9 [audio input]
pcm1:       + <- nid=34 [audio mixer] [src: speaker, monitor]
pcm1:              + <- nid=29 [beep widget] [src: speaker]
pcm1:              + <- nid=18 [pin: Mic (Fixed)] [src: monitor]
pcm1: 
pcm1: Microphone2 Volume (OSS: monitor): 0/30dB
pcm1:    +- ctl 16 (nid  18 out):    0/30dB (4 steps)
pcm1:    +- ctl 34 (nid  34 in   6): mute
pcm1: 
pcm1: Speaker/Beep Volume (OSS: speaker)
pcm1:    +- ctl 32 (nid  34 in   4): mute
pcm1: 
pcm1: Recording Level (OSS: rec): -17/30dB
pcm1:    +- ctl  4 (nid   9 in   0): -17/30dB (64 steps) + mute
pcm1:    +- ctl 16 (nid  18 out):    0/30dB (4 steps)
pcm1:    +- ctl 32 (nid  34 in   4): mute
pcm1:    +- ctl 34 (nid  34 in   6): mute
pcm1: 
pcm1: Mixer "rec":
pcm1: Mixer "monitor":
pcm1: Automatically set rec source to: monitor
pcm1: Recording channel set is: Front Left, Front Right, 
pcm1: Recording channel matrix is: 2.0 (unknown)
hdacc1: <Intel Panther Point HDA CODEC> at cad 3 on hdac0
hdaa1: <Intel Panther Point Audio Function Group> at nid 1 on hdacc1
hdaa1: Subsystem ID: 0x80860101
hdaa1: NumGPIO=0 NumGPO=0 NumGPI=0 GPIWake=0 GPIUnsol=0
hdaa1: Original pins configuration:
hdaa1: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa1:  5 18560010 1  0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa1:  6 18560020 2  0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa1:  7 18560030 3  0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa1: Patched pins configuration:
hdaa1: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa1:  5 18560010 1  0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa1:  6 18560020 2  0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa1:  7 18560030 3  0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa1: 3 associations found:
hdaa1: Association 0 (1) out:
hdaa1:  Pin nid=5 seq=0
hdaa1: Association 1 (2) out:
hdaa1:  Pin nid=6 seq=0
hdaa1: Association 2 (3) out:
hdaa1:  Pin nid=7 seq=0
hdaa1: Tracing association 0 (1)
hdaa1:  Pin 5 traced to DAC 2
hdaa1: Association 0 (1) trace succeeded
hdaa1: Tracing association 1 (2)
hdaa1:  Pin 6 traced to DAC 3
hdaa1: Association 1 (2) trace succeeded
hdaa1: Tracing association 2 (3)
hdaa1:  Pin 7 traced to DAC 4
hdaa1: Association 2 (3) trace succeeded
hdaa1: Looking for additional DAC for association 0 (1)
hdaa1: Looking for additional DAC for association 1 (2)
hdaa1: Looking for additional DAC for association 2 (3)
hdaa1: Tracing input monitor
hdaa1: Tracing other input monitors
hdaa1: Tracing beeper
hdaa1: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref
pcm2: <Intel Panther Point (HDMI/DP 8ch)> at nid 5 on hdaa1
pcm2: Playback:
pcm2:      Stream cap: 0x00000005 AC3 PCM
pcm2:         PCM cap: 0x001e07f0 16 20 24 32 bits, 32 44 48 88 96 176 192 KHz
pcm2:             DAC: 2
pcm2: 
pcm2:     nid=5 [pin: Digital-out (Jack)]
pcm2:       + <- nid=2 [audio output] [src: pcm]
pcm2: 
pcm2: Master Volume (OSS: vol): 0/0dB
pcm2:    +- ctl  1 (nid   5 in ):    mute
pcm2: 
pcm2: PCM Volume (OSS: pcm): 0/0dB
pcm2:    +- ctl  1 (nid   5 in ):    mute
pcm2: 
pcm2: Mixer "vol":
pcm2: Mixer "pcm":
pcm2: Soft PCM mixer ENABLED
pcm2: Playback channel matrix is: unknown, assuming 7.1 (disconnected)
pcm3: <Intel Panther Point (HDMI/DP 8ch)> at nid 6 on hdaa1
pcm3: Playback:
pcm3:      Stream cap: 0x00000005 AC3 PCM
pcm3:         PCM cap: 0x001e07f0 16 20 24 32 bits, 32 44 48 88 96 176 192 KHz
pcm3:             DAC: 3
pcm3: 
pcm3:     nid=6 [pin: Digital-out (Jack)]
pcm3:       + <- nid=3 [audio output] [src: pcm]
pcm3: 
pcm3: Master Volume (OSS: vol): 0/0dB
pcm3:    +- ctl  2 (nid   6 in ):    mute
pcm3: 
pcm3: PCM Volume (OSS: pcm): 0/0dB
pcm3:    +- ctl  2 (nid   6 in ):    mute
pcm3: 
pcm3: Mixer "vol":
pcm3: Mixer "pcm":
pcm3: Soft PCM mixer ENABLED
pcm3: Playback channel matrix is: unknown, assuming 7.1 (disconnected)
pcm4: <Intel Panther Point (HDMI/DP 8ch)> at nid 7 on hdaa1
pcm4: Playback:
pcm4:      Stream cap: 0x00000005 AC3 PCM
pcm4:         PCM cap: 0x001e07f0 16 20 24 32 bits, 32 44 48 88 96 176 192 KHz
pcm4:             DAC: 4
pcm4: 
pcm4:     nid=7 [pin: Digital-out (Jack)]
pcm4:       + <- nid=4 [audio output] [src: pcm]
pcm4: 
pcm4: Master Volume (OSS: vol): 0/0dB
pcm4:    +- ctl  3 (nid   7 in ):    mute
pcm4: 
pcm4: PCM Volume (OSS: pcm): 0/0dB
pcm4:    +- ctl  3 (nid   7 in ):    mute
pcm4: 
pcm4: Mixer "vol":
pcm4: Mixer "pcm":
pcm4: Soft PCM mixer ENABLED
pcm4: Playback channel matrix is: unknown, assuming 7.1 (disconnected)
ugen0.1: <0x8086 XHCI root HUB> at usbus0
ugen2.1: <Intel EHCI root HUB> at usbus2
Trying to mount root from zfs:projectBSD-ssd2/ROOT/master []...
Root mount waiting for: usbus2 usbus1 usbus0
uhub0: <0x8086 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus0
ugen1.1: <Intel EHCI root HUB> at usbus1
uhub1: <Intel EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus2
uhub2: <Intel EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus1
uhub0: 8 ports with 8 removable, self powered
uhub2: 3 ports with 3 removable, self powered
uhub1: 3 ports with 3 removable, self powered
Root mount waiting for: usbus2 usbus1
ugen2.2: <vendor 0x8087 product 0x0024> at usbus2
uhub3 on uhub1
uhub3: <vendor 0x8087 product 0x0024, class 9/0, rev 2.00/0.00, addr 2> on usbus2
ugen1.2: <vendor 0x8087 product 0x0024> at usbus1
uhub4 on uhub2
uhub4: <vendor 0x8087 product 0x0024, class 9/0, rev 2.00/0.00, addr 2> on usbus1
Root mount waiting for: usbus2 usbus1
uhub4: 6 ports with 6 removable, self powered
uhub3: 8 ports with 8 removable, self powered
ugen1.3: <Auth Biometric Coprocessor> at usbus1
atrtc0: providing initial system time
start_init: trying /sbin/init
info: [drm] Initialized drm 1.1.0 20060810
drmn0: =======================================================
drmn0: This code is obsolete abandonware. Install the graphics/drm-legacy-kmod pkg
drmn0: =======================================================
drmn0: Deprecated code (to be removed in FreeBSD 13): drm2 drivers
drmn0: =======================================================
drmn0: This code is obsolete abandonware. Install the graphics/drm-legacy-kmod pkg
drmn0: =======================================================
drmn0: Deprecated code (to be removed in FreeBSD 13): drm2 drivers
drmn0: <Intel IvyBridge (M)> on vgapci0
info: [drm] Memory usable by graphics device = 2048M
intel_iicbb0 on drmn0
iicbus0: <Philips I2C bus> on iicbb0 addr 0xff
iic0: <I2C generic I/O> on iicbus0
iicbus1: <Philips I2C bus> on intel_gmbus0
iic1: <I2C generic I/O> on iicbus1
intel_iicbb1 on drmn0
iicbus2: <Philips I2C bus> on iicbb1 addr 0xff
iic2: <I2C generic I/O> on iicbus2
iicbus3: <Philips I2C bus> on intel_gmbus1
iic3: <I2C generic I/O> on iicbus3
intel_iicbb2 on drmn0
iicbus4: <Philips I2C bus> on iicbb2 addr 0xff
iic4: <I2C generic I/O> on iicbus4
iicbus5: <Philips I2C bus> on intel_gmbus2
iic5: <I2C generic I/O> on iicbus5
intel_iicbb3 on drmn0
iicbus6: <Philips I2C bus> on iicbb3 addr 0xff
iic6: <I2C generic I/O> on iicbus6
iicbus7: <Philips I2C bus> on intel_gmbus3
iic7: <I2C generic I/O> on iicbus7
intel_iicbb4 on drmn0
iicbus8: <Philips I2C bus> on iicbb4 addr 0xff
iic8: <I2C generic I/O> on iicbus8
iicbus9: <Philips I2C bus> on intel_gmbus4
iic9: <I2C generic I/O> on iicbus9
intel_iicbb5 on drmn0
iicbus10: <Philips I2C bus> on iicbb5 addr 0xff
iic10: <I2C generic I/O> on iicbus10
iicbus11: <Philips I2C bus> on intel_gmbus5
iic11: <I2C generic I/O> on iicbus11
vgapci0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 270 to local APIC 0 vector 60
vgapci0: using IRQ 270 for MSI
info: [drm] MSI enabled 1 message(s)
info: [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
info: [drm] Driver supports precise vblank timestamp query.
intel_sdvo_ddc_proxy921920 on drmn0
info: [drm] GMBUS [i915 gmbus dpb] timed out, falling back to bit banging on pin 5
intel_sdvo_ddc_proxy921920: detached
drm_iic_dp_aux0 on drmn0
drm_iic_dp_aux1 on drmn0
drm_iic_dp_aux2 on drmn0
drmn0: taking over the fictitious range 0xd0000000-0xe0000000
info: [drm] Connector LVDS-1: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.LVDS-1
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector VGA-1: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.VGA-1
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector HDMI-A-1: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.HDMI-A-1
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector DP-1: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.DP-1
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector HDMI-A-2: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.HDMI-A-2
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector HDMI-A-3: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.HDMI-A-3
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector DP-2: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.DP-2
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector DP-3: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.DP-3
info: [drm]   - kern.vt.fb.default_mode
fbd0 on drmn0
VT: Replacing driver "vga" with new "fb".
info: [drm] Initialized i915 1.6.0 20080730 for drmn0 on minor 0
aesni0: <AES-CBC,AES-XTS,AES-GCM,AES-ICM> on motherboard
crypto: assign aesni0 driver id 1, flags 0x5000000
crypto: aesni0 registers alg 11 flags 0 maxoplen 0
crypto: aesni0 registers alg 23 flags 0 maxoplen 0
crypto: aesni0 registers alg 25 flags 0 maxoplen 0
crypto: aesni0 registers alg 26 flags 0 maxoplen 0
crypto: aesni0 registers alg 27 flags 0 maxoplen 0
crypto: aesni0 registers alg 28 flags 0 maxoplen 0
crypto: aesni0 registers alg 22 flags 0 maxoplen 0
fuse-freebsd: version 0.4.4, FUSE ABI 7.8
coretemp0: <CPU On-Die Thermal Sensors> on cpu0
coretemp0: Setting TjMax=105
coretemp1: <CPU On-Die Thermal Sensors> on cpu1
coretemp1: Setting TjMax=105
coretemp2: <CPU On-Die Thermal Sensors> on cpu2
coretemp2: Setting TjMax=105
coretemp3: <CPU On-Die Thermal Sensors> on cpu3
coretemp3: Setting TjMax=105
cpuctl: access to MSR registers/cpuid info.
wlan0: bpf attached
wlan0: bpf attached
wlan0: Ethernet address: 1c:4b:d6:78:c2:00
lo0: link state changed to UP
info: [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
wlan0: link state changed to UP

[-- Attachment #5 --]
---<<BOOT>>---
Table 'FACP' at 0x7ff49b00
Table 'SSDT' at 0x7ff49c00
Table 'MCFG' at 0x7ff4b590
Table 'TCPA' at 0x7ff4b5d0
Table 'APIC' at 0x7ff4b610
APIC: Found table at 0x7ff4b610
APIC: Using the MADT enumerator.
Copyright (c) 1992-2018 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 12.0-RELEASE-p1 #4 8b4b86db8ad(r12.0)-dirty: Fri Dec 21 18:39:39 CET 2018
    root@ProjectBSD:/usr/obj/usr/src/amd64.amd64/sys/GENERIC amd64
FreeBSD clang version 6.0.1 (tags/RELEASE_601/final 335540) (based on LLVM 6.0.1)
Table 'FACP' at 0x7ff49b00
Table 'SSDT' at 0x7ff49c00
Table 'MCFG' at 0x7ff4b590
Table 'TCPA' at 0x7ff4b5d0
Table 'APIC' at 0x7ff4b610
Table 'DMAR' at 0x7ff4b680
Table 'HPET' at 0x7ff4d730
ACPI: No SRAT table found
PPIM 0: PA=0xa0000, VA=0xffffffff82c10000, size=0x10000, mode=0
pmap: large map 8 PML4 slots (4096 Gb)
VT(vga): resolution 640x480
Preloaded elf kernel "/boot/kernel/kernel" at 0xffffffff829f6000.
Preloaded elf obj module "/boot/kernel/zfs.ko" at 0xffffffff829ff1f8.
Preloaded elf obj module "/boot/kernel/opensolaris.ko" at 0xffffffff829ffa60.
Preloaded boot_entropy_cache "/boot/entropy" at 0xffffffff82a00090.
Preloaded acpi_dsdt "/boot/dsdt.aml" at 0xffffffff82a000e8.
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
Calibrating TSC clock ... TSC clock: 2893492744 Hz
CPU: Intel(R) Core(TM) i7-3520M CPU @ 2.90GHz (2893.49-MHz K8-class CPU)
  Origin="GenuineIntel"  Id=0x306a9  Family=0x6  Model=0x3a  Stepping=9
  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=0x7fbae3ff<SSE3,PCLMULQDQ,DTES64,MON,DS_CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,TSCDLT,AESNI,XSAVE,OSXSAVE,AVX,F16C,RDRAND>
  AMD Features=0x28100800<SYSCALL,NX,RDTSCP,LM>
  AMD Features2=0x1<LAHF>
  Structured Extended Features=0x281<FSGSBASE,SMEP,ERMS>
  Structured Extended Features3=0xc000000<IBPB,STIBP>
  XSAVE Features=0x1<XSAVEOPT>
  VT-x: Basic Features=0xda0400<SMM,INS/OUTS,TRUE>
        Pin-Based Controls=0x7f<ExtINT,NMI,VNMI,PreTmr>
        Primary Processor Controls=0xfff9fffe<INTWIN,TSCOff,HLT,INVLPG,MWAIT,RDPMC,RDTSC,CR3-LD,CR3-ST,CR8-LD,CR8-ST,TPR,NMIWIN,MOV-DR,IO,IOmap,MTF,MSRmap,MONITOR,PAUSE>
        Secondary Processor Controls=0x8ff<APIC,EPT,DT,RDTSCP,x2APIC,VPID,WBINVD,UG,RDRAND>
        Exit Controls=0xda0400<PAT-LD,EFER-SV,PTMR-SV>
        Entry Controls=0xda0400
        EPT Features=0x6114141<XO,PW4,UC,WB,2M,INVEPT,single,all>
        VPID Features=0xf01<INVVPID,individual,single,all,single-globals>
  TSC: P-state invariant, performance statistics
Data TLB0: 2-MByte or 4 MByte pages, 4-way set associative, 32 entries
Data TLB: 4 KB pages, 4-way set associative, 64 entries
Instruction TLB: 2M/4M pages, fully associative, 8 entries
Instruction TLB: 4KByte pages, 4-way set associative, 64 entries
64-Byte prefetching
Shared 2nd-Level TLB: 4 KByte pages, 4-way associative, 512 entries
L2 cache: 256 kbytes, 8-way associative, 64 bytes/line
real memory  = 8589934592 (8192 MB)
Physical memory chunk(s):
0x0000000000010000 - 0x000000000009efff, 585728 bytes (143 pages)
0x0000000000103000 - 0x00000000001fffff, 1036288 bytes (253 pages)
0x0000000002c00000 - 0x000000007ff21fff, 2100436992 bytes (512802 pages)
0x0000000100000000 - 0x000000026d842fff, 6132346880 bytes (1497155 pages)
avail memory = 8200093696 (7820 MB)
intel stolen mem: base 0x80a00000 size 32 MB
Table 'FACP' at 0x7ff49b00
Table 'SSDT' at 0x7ff49c00
Table 'MCFG' at 0x7ff4b590
Table 'TCPA' at 0x7ff4b5d0
Table 'APIC' at 0x7ff4b610
Table 'DMAR' at 0x7ff4b680
DMAR: Found table at 0x7ff4b680
MADT: Found CPU APIC ID 0 ACPI ID 0: enabled
SMP: Added CPU 0 (AP)
MADT: Found CPU APIC ID 1 ACPI ID 1: enabled
SMP: Added CPU 1 (AP)
MADT: Found CPU APIC ID 2 ACPI ID 2: enabled
SMP: Added CPU 2 (AP)
MADT: Found CPU APIC ID 3 ACPI ID 3: enabled
SMP: Added CPU 3 (AP)
Event timer "LAPIC" quality 600
ACPI APIC Table: <CORE   COREBOOT>
Package ID shift: 4
L3 cache ID shift: 4
L2 cache ID shift: 1
L1 cache ID shift: 1
Core ID shift: 1
INTR: Adding local APIC 2 as a target
FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs
FreeBSD/SMP: 1 package(s) x 2 core(s) x 2 hardware threads
Package HW ID = 0
	Core HW ID = 0
		CPU0 (BSP): APIC ID: 0
		CPU1 (AP/HT): APIC ID: 1
	Core HW ID = 1
		CPU2 (AP): APIC ID: 2
		CPU3 (AP/HT): APIC ID: 3
APIC: CPU 0 has ACPI ID 0
APIC: CPU 1 has ACPI ID 1
APIC: CPU 2 has ACPI ID 2
APIC: CPU 3 has ACPI ID 3
Pentium Pro MTRR support enabled
x86bios:  IVT 0x000000-0x0004ff at 0xfffff80000000000
x86bios: SSEG 0x09e000-0x09efff at 0xfffffe00024bf000
x86bios: EBDA 0x09f000-0x09ffff at 0xfffff8000009f000
x86bios:  ROM 0x0a0000-0x0fefff at 0xfffff800000a0000
lapic0: CMCI unmasked
random: read 3840 bytes from preloaded cache
random: unblocking device.
arc4random: read 32 bytes from preloaded cache
VIMAGE (virtualized network stack) enabled
ULE: setup cpu 0
ULE: setup cpu 1
ULE: setup cpu 2
ULE: setup cpu 3
ACPI: RSDP 0x00000000000F6770 000024 (v02 CORE  )
ACPI: XSDT 0x000000007FF460E0 00005C (v01 CORE   COREBOOT 00000000 CORE 00000000)
ACPI: FACP 0x000000007FF49B00 0000F4 (v04 CORE   COREBOOT 00000000 CORE 00000000)
ACPI: DSDT 0x000000007FF46280 Logical table override, new table: 0xFFFFFFFF829F24F0
ACPI: DSDT 0xFFFFFFFF829F24F0 00387B (v02 COREv4 COREBOOT 20110725 INTL 20180810)
ACPI: FACS 0x000000007FF46240 000040
ACPI: Ignoring installation of SSDT at 000000007FF49C00
ACPI: MCFG 0x000000007FF4B590 00003C (v01 CORE   COREBOOT 00000000 CORE 00000000)
ACPI: TCPA 0x000000007FF4B5D0 000032 (v02 CORE   COREBOOT 00000000 CORE 00000000)
ACPI: APIC 0x000000007FF4B610 00006C (v02 CORE   COREBOOT 00000000 CORE 00000000)
ACPI: DMAR 0x000000007FF4B680 0000A8 (v01 CORE   COREBOOT 00000000 CORE 00000000)
ACPI: HPET 0x000000007FF4D730 000038 (v01 CORE   COREBOOT 00000000 CORE 00000000)
MADT: Found IO APIC ID 2, Interrupt 0 at 0xfec00000
ioapic0: ver 0x20 maxredir 0x17
ioapic0: Routing external 8259A's -> intpin 0
MADT: Interrupt override: source 0, irq 2
ioapic0: Routing IRQ 0 -> intpin 2
MADT: Interrupt override: source 9, irq 9
ioapic0: intpin 9 trigger: level
ioapic0 <Version 2.0> irqs 0-23 on motherboard
lapic: Divisor 2, Frequency 49887813 Hz
lapic: deadline tsc mode, Frequency 2893492744 Hz
cpu0 BSP:
     ID: 0x00000000   VER: 0x01060015 LDR: 0x00000001 DFR: 0x00000000 x2APIC: 1
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   cmci: 0x000000f2
SMP: AP CPU #1 Launched!
cpu1 AP:
     ID: 0x00000001   VER: 0x01060015 LDR: 0x00000002 DFR: 0x00000000 x2APIC: 1
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   cmci: 0x000100f2
lapic2: CMCI unmasked
SMP: AP CPU #2 Launched!
cpu2 AP:
     ID: 0x00000002   VER: 0x01060015 LDR: 0x00000004 DFR: 0x00000000 x2APIC: 1
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   cmci: 0x000000f2
SMP: AP CPU #3 Launched!
cpu3 AP:
     ID: 0x00000003   VER: 0x01060015 LDR: 0x00000008 DFR: 0x00000000 x2APIC: 1
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   cmci: 0x000100f2
SMP: passed TSC synchronization test
TSC timecounter discards lower 1 bit(s)
Timecounter "TSC-low" frequency 1446746372 Hz quality 1000
wlan: <802.11 Link Layer>
random: entropy device external interface
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
EFI systbl not available
kbd: new array size 4
kbd1 at kbdmux0
mem: <memory>
netmap: loaded module
null: <full device, null device, zero device>
nfslock: pseudo-device
[ath_hal] loaded
crypto: <crypto core>
module_register_init: MOD_LOAD (vesa, 0xffffffff810f9770, 0) error 19
io: <I/O>
tcp_log: tcp_log device
random: registering fast source Intel Secure Key RNG
random: fast provider: "Intel Secure Key RNG"
hptnr: R750/DC7280 controller driver v1.1.5
hptrr: RocketRAID 17xx/2xxx SATA controller driver v1.2
hpt27xx: RocketRAID 27xx controller driver v1.2.8
nexus0
vtvga0: <VT VGA driver> on motherboard
cryptosoft0: <software crypto> on motherboard
crypto: assign cryptosoft0 driver id 0, flags 0x6000000
crypto: cryptosoft0 registers alg 1 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 2 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 3 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 4 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 5 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 16 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 6 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 7 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 32 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 18 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 19 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 20 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 8 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 15 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 9 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 10 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 13 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 14 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 34 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 35 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 36 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 37 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 11 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 22 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 23 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 25 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 24 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 26 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 27 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 28 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 21 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 17 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 29 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 30 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 31 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 38 flags 0 maxoplen 0
acpi0: <CORE COREBOOT> on motherboard
ACPI: 1 ACPI AML tables successfully acquired and loaded
PCIe: Memory Mapped configuration base @ 0xf0000000
ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 0 vector 48
acpi0: Power Button (fixed)
acpi0: wakeup code va 0xfffffe00003e8000 pa 0x9c000
ACPI Error: No handler for Region [ERAM] (0xfffff80003580d00) [EmbeddedControl] (20181003/evregion-288)
ACPI Error: Region EmbeddedControl (ID=3) has no handler (20181003/exfldio-428)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.BAT0._STA, AE_NOT_EXIST (20181003/psparse-677)
ACPI Error: No handler for Region [ERAM] (0xfffff80003580d00) [EmbeddedControl] (20181003/evregion-288)
ACPI Error: Region EmbeddedControl (ID=3) has no handler (20181003/exfldio-428)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.BAT1._STA, AE_NOT_EXIST (20181003/psparse-677)
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
hpet0: <High Precision Event Timer> iomem 0xfed00000-0xfed003ff on acpi0
hpet0: vendor 0x8086, rev 0x1, 14318180Hz 64bit, 8 timers, legacy route
hpet0:  t0: irqs 0x00f00000 (0), MSI, 64bit, periodic
hpet0:  t1: irqs 0x00f00000 (0), MSI
hpet0:  t2: irqs 0x00f00800 (0), MSI
hpet0:  t3: irqs 0x00f01000 (0), MSI
hpet0:  t4: irqs 0x00000000 (0), MSI
hpet0:  t5: irqs 0x00000000 (0), MSI
hpet0:  t6: irqs 0x00000000 (0), MSI
hpet0:  t7: irqs 0x00000000 (0), MSI
Timecounter "HPET" frequency 14318180 Hz quality 950
msi: routing MSI-X IRQ 256 to local APIC 2 vector 48
msi: routing MSI-X IRQ 257 to local APIC 0 vector 49
msi: routing MSI-X IRQ 258 to local APIC 2 vector 49
msi: routing MSI-X IRQ 259 to local APIC 0 vector 50
msi: routing MSI-X IRQ 260 to local APIC 2 vector 50
msi: routing MSI-X IRQ 261 to local APIC 0 vector 51
msi: routing MSI-X IRQ 262 to local APIC 2 vector 51
msi: routing MSI-X IRQ 263 to local APIC 0 vector 52
msi: Assigning MSI-X IRQ 256 to local APIC 0 vector 53
msi: Assigning MSI-X IRQ 257 to local APIC 1 vector 48
msi: Assigning MSI-X IRQ 259 to local APIC 3 vector 48
msi: Assigning MSI-X IRQ 260 to local APIC 0 vector 49
msi: Assigning MSI-X IRQ 262 to local APIC 0 vector 50
Event timer "HPET" frequency 14318180 Hz quality 550
Event timer "HPET1" frequency 14318180 Hz quality 440
Event timer "HPET2" frequency 14318180 Hz quality 440
Event timer "HPET3" frequency 14318180 Hz quality 440
Event timer "HPET4" frequency 14318180 Hz quality 440
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
acpi0: reservation of 20000000, 200000 (3) failed
acpi0: reservation of 40000000, 200000 (3) failed
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
atrtc0: <AT realtime clock> port 0x70-0x77 on acpi0
atrtc0: registered as a time-of-day clock, resolution 1.000000s
ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 2 vector 48
ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 0 vector 54
Event timer "RTC" frequency 32768 Hz quality 0
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
attimer0: <AT timer> port 0x40-0x43,0x50-0x53 irq 0 on acpi0
Timecounter "i8254" frequency 1193182 Hz quality 0
ioapic0: routing intpin 2 (ISA IRQ 0) to lapic 0 vector 55
Event timer "i8254" frequency 1193182 Hz quality 100
ACPI timer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 -> 10
Timecounter "ACPI-fast" frequency 3579545 Hz quality 900
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x508-0x50b on acpi0
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
acpi_ec0: <Embedded Controller: GPE 0x11> port 0x62,0x66 on acpi0
pci_link0:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  3 4 5 6 7 10 11 12 14 15
  Validation          0   11   N     0  3 4 5 6 7 10 11 12 14 15
  After Disable       0  255   N     0  3 4 5 6 7 10 11 12 14 15
pci_link1:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  3 4 5 6 7 10 11 12 14 15
  Validation          0   11   N     0  3 4 5 6 7 10 11 12 14 15
  After Disable       0  255   N     0  3 4 5 6 7 10 11 12 14 15
pci_link2:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  3 4 5 6 7 10 11 12 14 15
  Validation          0   11   N     0  3 4 5 6 7 10 11 12 14 15
  After Disable       0  255   N     0  3 4 5 6 7 10 11 12 14 15
pci_link3:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  3 4 5 6 7 10 11 12 14 15
  Validation          0   11   N     0  3 4 5 6 7 10 11 12 14 15
  After Disable       0  255   N     0  3 4 5 6 7 10 11 12 14 15
pci_link4:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  3 4 5 6 7 10 11 12 14 15
  Validation          0   11   N     0  3 4 5 6 7 10 11 12 14 15
  After Disable       0  255   N     0  3 4 5 6 7 10 11 12 14 15
pci_link5:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  3 4 5 6 7 10 11 12 14 15
  Validation          0   11   N     0  3 4 5 6 7 10 11 12 14 15
  After Disable       0  255   N     0  3 4 5 6 7 10 11 12 14 15
pci_link6:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  3 4 5 6 7 10 11 12 14 15
  Validation          0   11   N     0  3 4 5 6 7 10 11 12 14 15
  After Disable       0  255   N     0  3 4 5 6 7 10 11 12 14 15
pci_link7:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  3 4 5 6 7 10 11 12 14 15
  Validation          0   11   N     0  3 4 5 6 7 10 11 12 14 15
  After Disable       0  255   N     0  3 4 5 6 7 10 11 12 14 15
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
pcib0: decoding 5 range 0-0xff
pcib0: decoding 4 range 0-0xcf7
pcib0: decoding 4 range 0xd00-0xffff
pcib0: decoding 3 range 0xa0000-0xbffff
pcib0: decoding 3 range 0xc0000-0xc3fff
pcib0: decoding 3 range 0xc4000-0xc7fff
pcib0: decoding 3 range 0xc8000-0xcbfff
pcib0: decoding 3 range 0xcc000-0xcffff
pcib0: decoding 3 range 0xd0000-0xd3fff
pcib0: decoding 3 range 0xd4000-0xd7fff
pcib0: decoding 3 range 0xd8000-0xdbfff
pcib0: decoding 3 range 0xdc000-0xdffff
pcib0: decoding 3 range 0xe0000-0xe3fff
pcib0: decoding 3 range 0xe4000-0xe7fff
pcib0: decoding 3 range 0xe8000-0xebfff
pcib0: decoding 3 range 0xec000-0xeffff
pcib0: decoding 3 range 0xf0000-0xfffff
pcib0: decoding 3 range 0x82a00001-0xefffffff
pcib0: decoding 3 range 0xfed40000-0xfed44fff
pcib0: could not get PCI interrupt routing table for \134_SB_.PCI0 - AE_NOT_FOUND
pci0: <ACPI PCI bus> on pcib0
pci0: domain=0, physical bus=0
found->	vendor=0x8086, dev=0x0154, revid=0x09
	domain=0, bus=0, slot=0, func=0
	class=06-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0006, statreg=0x2090, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found->	vendor=0x8086, dev=0x0166, revid=0x09
	domain=0, bus=0, slot=2, func=0
	class=03-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0007, statreg=0x0090, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=11
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message
	map[10]: type Memory, range 64, base 0xe1400000, size 22, enabled
pcib0: allocated type 3 (0xe1400000-0xe17fffff) for rid 10 of pci0:0:2:0
	map[18]: type Prefetchable Memory, range 64, base 0xd0000000, size 28, enabled
pcib0: allocated type 3 (0xd0000000-0xdfffffff) for rid 18 of pci0:0:2:0
	map[20]: type I/O Port, range 32, base 0x3000, size  6, enabled
pcib0: allocated type 4 (0x3000-0x303f) for rid 20 of pci0:0:2:0
pcib0: no PRT entry for 0.2.INTA
found->	vendor=0x8086, dev=0x0153, revid=0x09
	domain=0, bus=0, slot=4, func=0
	class=11-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0002, statreg=0x0090, cachelnsz=0 (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
	map[10]: type Memory, range 64, base 0xe1930000, size 15, enabled
pcib0: allocated type 3 (0xe1930000-0xe1937fff) for rid 10 of pci0:0:4:0
pcib0: no PRT entry for 0.4.INTA
found->	vendor=0x8086, dev=0x1e31, revid=0x04
	domain=0, bus=0, slot=20, func=0
	class=0c-03-30, 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=11
	powerspec 2  supports D0 D3  current D0
	MSI supports 8 messages, 64 bit
	map[10]: type Memory, range 64, base 0xe1920000, size 16, enabled
pcib0: allocated type 3 (0xe1920000-0xe192ffff) for rid 10 of pci0:0:20:0
pcib0: no PRT entry for 0.20.INTA
found->	vendor=0x8086, dev=0x1502, revid=0x04
	domain=0, bus=0, slot=25, func=0
	class=02-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0103, statreg=0x0010, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 32, base 0xe1900000, size 17, enabled
pcib0: allocated type 3 (0xe1900000-0xe191ffff) for rid 10 of pci0:0:25:0
	map[14]: type Memory, range 32, base 0xe193c000, size 12, enabled
pcib0: allocated type 3 (0xe193c000-0xe193cfff) for rid 14 of pci0:0:25:0
	map[18]: type I/O Port, range 32, base 0x3040, size  5, enabled
pcib0: allocated type 4 (0x3040-0x305f) for rid 18 of pci0:0:25:0
found->	vendor=0x8086, dev=0x1e2d, revid=0x04
	domain=0, bus=0, slot=26, func=0
	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=11
	powerspec 2  supports D0 D3  current D0
	map[10]: type Memory, range 32, base 0xe193f000, size 10, enabled
pcib0: allocated type 3 (0xe193f000-0xe193f3ff) for rid 10 of pci0:0:26:0
pcib0: no PRT entry for 0.26.INTA
found->	vendor=0x8086, dev=0x1e20, revid=0x04
	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=11
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 64, base 0xe1938000, size 14, enabled
pcib0: allocated type 3 (0xe1938000-0xe193bfff) for rid 10 of pci0:0:27:0
pcib0: no PRT entry for 0.27.INTA
found->	vendor=0x8086, dev=0x1e12, revid=0xc4
	domain=0, bus=0, slot=28, func=0
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0106, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=11
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message
pcib0: no PRT entry for 0.28.INTB
	secbus=1, subbus=1
found->	vendor=0x8086, dev=0x1e14, revid=0xc4
	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=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=11
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message
pcib0: no PRT entry for 0.28.INTC
	secbus=2, subbus=2
found->	vendor=0x8086, dev=0x1e26, revid=0x04
	domain=0, bus=0, slot=29, func=0
	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=11
	powerspec 2  supports D0 D3  current D0
	map[10]: type Memory, range 32, base 0xe1940000, size 10, enabled
pcib0: allocated type 3 (0xe1940000-0xe19403ff) for rid 10 of pci0:0:29:0
pcib0: no PRT entry for 0.29.INTA
found->	vendor=0x8086, dev=0x1e55, revid=0x04
	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=0x1e03, revid=0x04
	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=a, irq=10
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message
	map[10]: type I/O Port, range 32, base 0x3080, size  3, enabled
pcib0: allocated type 4 (0x3080-0x3087) for rid 10 of pci0:0:31:2
	map[14]: type I/O Port, range 32, base 0x3090, size  2, enabled
pcib0: allocated type 4 (0x3090-0x3093) for rid 14 of pci0:0:31:2
	map[18]: type I/O Port, range 32, base 0x3088, size  3, enabled
pcib0: allocated type 4 (0x3088-0x308f) for rid 18 of pci0:0:31:2
	map[1c]: type I/O Port, range 32, base 0x3094, size  2, enabled
pcib0: allocated type 4 (0x3094-0x3097) for rid 1c of pci0:0:31:2
	map[20]: type I/O Port, range 32, base 0x3060, size  5, enabled
pcib0: allocated type 4 (0x3060-0x307f) for rid 20 of pci0:0:31:2
	map[24]: type Memory, range 32, base 0xe193e000, size 11, enabled
pcib0: allocated type 3 (0xe193e000-0xe193e7ff) for rid 24 of pci0:0:31:2
pcib0: no PRT entry for 0.31.INTA
found->	vendor=0x8086, dev=0x1e22, revid=0x04
	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=b, irq=11
	map[10]: type Memory, range 64, base 0xe1941000, size  8, enabled
pcib0: allocated type 3 (0xe1941000-0xe19410ff) for rid 10 of pci0:0:31:3
	map[20]: type I/O Port, range 32, base 0x400, size  5, enabled
pcib0: allocated type 4 (0x400-0x41f) for rid 20 of pci0:0:31:3
pcib0: no PRT entry for 0.31.INTB
found->	vendor=0x8086, dev=0x1e24, revid=0x04
	domain=0, bus=0, slot=31, func=6
	class=11-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0002, statreg=0x0010, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=11
	powerspec 3  supports D0 D3  current D0
	map[10]: type Memory, range 64, base 0xe193d000, size 12, enabled
pcib0: allocated type 3 (0xe193d000-0xe193dfff) for rid 10 of pci0:0:31:6
pcib0: no PRT entry for 0.31.INTC
vgapci0: <VGA-compatible display> port 0x3000-0x303f mem 0xe1400000-0xe17fffff,0xd0000000-0xdfffffff irq 11 at device 2.0 on pci0
vgapci0: Boot video device
pci0: <dasp> at device 4.0 (no driver attached)
xhci0: <Intel Panther Point USB 3.0 controller> mem 0xe1920000-0xe192ffff irq 11 at device 20.0 on pci0
xhci0: 32 bytes context size, 64-bit DMA
xhci0: attempting to allocate 1 MSI vectors (8 supported)
msi: routing MSI IRQ 264 to local APIC 2 vector 48
xhci0: using IRQ 264 for MSI
xhci0: MSI enabled
xhci0: Port routing mask set to 0xffffffff
usbus0 on xhci0
xhci0: usbpf: Attached
usbus0: 5.0Gbps Super Speed USB v3.0
em0: <Intel(R) PRO/1000 Network Connection> port 0x3040-0x305f mem 0xe1900000-0xe191ffff,0xe193c000-0xe193cfff at device 25.0 on pci0
em0: attach_pre capping queues at 1
em0: using 1024 tx descriptors and 1024 rx descriptors
em0: msix_init qsets capped at 1
em0: Unable to map MSIX table 
em0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 265 to local APIC 0 vector 56
em0: using IRQ 265 for MSI
em0: Using an MSI interrupt
em0: allocated for 1 tx_queues
em0: allocated for 1 rx_queues
msi: Assigning MSI IRQ 265 to local APIC 3 vector 49
msi: Assigning MSI IRQ 265 to local APIC 2 vector 50
em0: bpf attached
em0: Ethernet address: 3c:97:0e:b7:35:ea
em0: netmap queues/slots: TX 1/1024, RX 1/1024
ehci0: <Intel Panther Point USB 2.0 controller> mem 0xe193f000-0xe193f3ff irq 11 at device 26.0 on pci0
ioapic0: routing intpin 11 (ISA IRQ 11) to lapic 2 vector 51
usbus1: EHCI version 1.0
usbus1 on ehci0
ehci0: usbpf: Attached
usbus1: 480Mbps High Speed USB v2.0
hdac0: <Intel Panther Point HDA Controller> mem 0xe1938000-0xe193bfff irq 11 at device 27.0 on pci0
hdac0: PCI card vendor: 0x17aa, device: 0x21fb
hdac0: HDA Driver Revision: 20120126_0002
hdac0: Config options: on=0x00000000 off=0x00000000
hdac0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 266 to local APIC 0 vector 56
hdac0: using IRQ 266 for MSI
hdac0: Caps: OSS 4, ISS 4, BSS 0, NSDO 1, 64bit, CORB 256, RIRB 256
pcib1: <ACPI PCI-PCI bridge> irq 11 at device 28.0 on pci0
pcib0: allocated type 3 (0xe1800000-0xe18fffff) for rid 20 of pcib1
pcib1:   domain            0
pcib1:   secondary bus     1
pcib1:   subordinate bus   1
pcib1:   memory decode     0xe1800000-0xe18fffff
pcib1:   special decode    ISA
pci1: <ACPI PCI bus> on pcib1
pcib1: allocated bus range (1-1) for rid 0 of pci1
pci1: domain=0, physical bus=1
found->	vendor=0x168c, dev=0x002b, revid=0x01
	domain=0, bus=1, slot=0, func=0
	class=02-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0002, 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 D1 D3  current D0
	MSI supports 1 message
	map[10]: type Memory, range 64, base 0xe1800000, size 16, enabled
pcib1: allocated memory range (0xe1800000-0xe180ffff) for rid 10 of pci0:1:0:0
pcib1: matched entry for 1.0.INTA
pcib1: slot 0 INTA hardwired to IRQ 17
ath0: <Atheros 9285> mem 0xe1800000-0xe180ffff irq 17 at device 0.0 on pci1
ioapic0: routing intpin 17 (PCI IRQ 17) to lapic 2 vector 52
[ath] AR9285 Main LNA config: LNA2
[ath] AR9285 Alt LNA config: LNA1
[ath] LNA diversity enabled, Diversity enabled
[ath] Enabling diversity for Kite
ath0: RX timestamp: 32 bits
ath0: TX timestamp: 32 bits
ath0: [HT] enabling HT modes
ath0: [HT] 1 stream STBC receive enabled
ath0: [HT] 1 RX streams; 1 TX streams
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
ath0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
ath0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
ath0: 1T1R
ath0: 11ng MCS 20MHz
ath0: MCS 0-7: 6.5Mbps - 65Mbps
ath0: 11ng MCS 40MHz:
ath0: MCS 0-7: 13.5Mbps - 135Mbps
ath0: 11ng MCS 40MHz SGI:
ath0: MCS 0-7: 15Mbps - 150Mbps
ath0: AR9285 mac 192.2 RF5133 phy 14.0
ath0: 2GHz radio: 0x0000; 5GHz radio: 0x00c0
ath0: Use hw queue 1 for WME_AC_BE traffic
ath0: Use hw queue 0 for WME_AC_BK traffic
ath0: Use hw queue 2 for WME_AC_VI traffic
ath0: Use hw queue 3 for WME_AC_VO traffic
ath0: Use hw queue 8 for CAB traffic
ath0: Use hw queue 9 for beacons
ath0: using multicast key search
pcib2: <ACPI PCI-PCI bridge> irq 11 at device 28.1 on pci0
pcib2: allocating non-ISA range 0x2000-0x20ff
pcib0: allocated type 4 (0x2000-0x20ff) for rid 1c of pcib2
pcib2: allocating non-ISA range 0x2400-0x24ff
pcib0: allocated type 4 (0x2400-0x24ff) for rid 1c of pcib2
pcib2: allocating non-ISA range 0x2800-0x28ff
pcib0: allocated type 4 (0x2800-0x28ff) for rid 1c of pcib2
pcib2: allocating non-ISA range 0x2c00-0x2cff
pcib0: allocated type 4 (0x2c00-0x2cff) for rid 1c of pcib2
pcib0: allocated type 3 (0xe0000000-0xe08fffff) for rid 20 of pcib2
pcib0: allocated type 3 (0xe0c00000-0xe13fffff) for rid 24 of pcib2
pcib2: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 267 to local APIC 0 vector 57
pcib2: using IRQ 267 for MSI
pcib2: [GIANT-LOCKED]
pcib2: HotPlug command: 0000 -> 1028
pcib2:   domain            0
pcib2:   secondary bus     2
pcib2:   subordinate bus   2
pcib2:   I/O decode        0x2000-0x2fff
pcib2:   memory decode     0xe0000000-0xe08fffff
pcib2:   prefetched decode 0xe0c00000-0xe13fffff
pcib2:   special decode    ISA
pci2: <ACPI PCI bus> on pcib2
pcib2: allocated bus range (2-2) for rid 0 of pci2
pci2: domain=0, physical bus=2
found->	vendor=0x1180, dev=0xe823, revid=0x04
	domain=0, bus=2, slot=0, func=0
	class=08-05-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, 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 D1 D2 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 32, base 0xe0800000, size  8, enabled
pcib2: allocated memory range (0xe0800000-0xe08000ff) for rid 10 of pci0:2:0:0
pcib2: matched entry for 2.0.INTA
pcib2: slot 0 INTA hardwired to IRQ 18
sdhci_pci0: <RICOH R5CE823 SD> mem 0xe0800000-0xe08000ff irq 18 at device 0.0 on pci2
sdhci_pci0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 268 to local APIC 2 vector 53
sdhci_pci0: using IRQ 268 for MSI
sdhci_pci0-slot0: 50MHz HS 4bits VDD: 3.3V VCCQ: 3.3V 1.8V DRV: BACD DMA removable
sdhci_pci0-slot0: eMMC: HS200
sdhci_pci0-slot0: UHS-I: SDR12 SDR25 SDR50 SDR104
sdhci_pci0-slot0: Re-tuning count 0 secs, mode 3
sdhci_pci0-slot0: ============== REGISTER DUMP ==============
sdhci_pci0-slot0: Sys addr: 0x00000000 | Version:  0x00000502
sdhci_pci0-slot0: Blk size: 0x00000000 | Blk cnt:  0x00000000
sdhci_pci0-slot0: Argument: 0x00000000 | Trn mode: 0x00000000
sdhci_pci0-slot0: Present:  0x01f20000 | Host ctl: 0x00000000
sdhci_pci0-slot0: Power:    0x00000000 | Blk gap:  0x00000000
sdhci_pci0-slot0: Wake-up:  0x00000000 | Clock:    0x00000000
sdhci_pci0-slot0: Timeout:  0x00000000 | Int stat: 0x00000000
sdhci_pci0-slot0: Int enab: 0x00000000 | Sig enab: 0x00000000
sdhci_pci0-slot0: AC12 err: 0x00000000 | Host ctl2:0x00000000
sdhci_pci0-slot0: Caps:     0x21e832b2 | Caps2:    0x00008073
sdhci_pci0-slot0: Max curr: 0x00000040 | ADMA err: 0x00000000
sdhci_pci0-slot0: ADMA addr:0x00000000 | Slot int: 0x00000000
sdhci_pci0-slot0: ===========================================
sdhci_pci0: 1 slot(s) allocated
ehci1: <Intel Panther Point USB 2.0 controller> mem 0xe1940000-0xe19403ff irq 11 at device 29.0 on pci0
usbus2: EHCI version 1.0
usbus2 on ehci1
ehci1: usbpf: Attached
usbus2: 480Mbps High Speed USB v2.0
isab0: <PCI-ISA bridge> at device 31.0 on pci0
isa0: <ISA bus> on isab0
ahci0: <Intel Panther Point AHCI SATA controller> port 0x3080-0x3087,0x3090-0x3093,0x3088-0x308f,0x3094-0x3097,0x3060-0x307f mem 0xe193e000-0xe193e7ff irq 10 at device 31.2 on pci0
ahci0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 269 to local APIC 0 vector 58
ahci0: using IRQ 269 for MSI
ahci0: AHCI v1.30 with 6 6Gbps ports, Port Multiplier not supported
ahci0: Caps: 64bit NCQ SNTF MPS SS ALP AL CLO 6Gbps PMD SSC PSC 32cmd 6ports
ahci0: Caps2: APST
ahcich0: <AHCI channel> at channel 0 on ahci0
ahcich0: Caps:
ahcich1: <AHCI channel> at channel 1 on ahci0
ahcich1: Caps:
ahcich2: <AHCI channel> at channel 2 on ahci0
ahcich2: Caps:
ahcich3: not probed (disabled)
ahcich4: <AHCI channel> at channel 4 on ahci0
ahcich4: Caps:
ahcich5: not probed (disabled)
pci0: <serial bus, SMBus> at device 31.3 (no driver attached)
pci0: <dasp> at device 31.6 (no driver attached)
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
acpi_tz0: <Thermal Zone> on acpi0
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP00 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP01 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP02 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP03 (20181003/dspkginit-579)
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
acpi_tz1: <Thermal Zone> on acpi0
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP00 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP01 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP02 (20181003/dspkginit-579)
ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \134_PR_.CP03 (20181003/dspkginit-579)
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
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 0061
kbdc: RESET_KBD return code:00fa
kbdc: RESET_KBD status:00aa
atkbd: keyboard ID 0x54ab (2)
kbd0 at atkbd0
kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x1d0000
ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 2 vector 54
atkbd0: [GIANT-LOCKED]
psm0: unable to allocate IRQ
psmcpnp0: <PS/2 mouse port> irq 12 on acpi0
psm0: current command byte:0061
kbdc: TEST_AUX_PORT status:0000
kbdc: RESET_AUX return code:00fa
kbdc: RESET_AUX status:00aa
kbdc: RESET_AUX ID:0000
kbdc: RESET_AUX return code:00fa
kbdc: RESET_AUX status:00aa
kbdc: RESET_AUX ID:0000
psm: status 00 02 64
psm: status 00 00 64
psm: status 00 03 64
psm: status 00 03 64
psm: data 08 00 00
psm: status 02 47 17
psm: status 01 c0 b1
psm: status d0 47 b1
psm: status 3c 80 55
psm: status b4 00 00
psm: status 0a 00 00
psm: status aa 9f 8c
psm: status 01 47 40
psm: status 00 02 64
psm0: <PS/2 Mouse> irq 12 on atkbdc0
ioapic0: routing intpin 12 (ISA IRQ 12) to lapic 0 vector 59
psm0: [GIANT-LOCKED]
psm0: model Synaptics Touchpad, device ID 0-00, 3 buttons
psm0: config:00004000, flags:00000008, packet size:6
psm0: syncmask:c0, syncbits:00
acpi_acad0: <AC Adapter> on acpi0
AcpiOsExecute: task queue not started
battery0: <ACPI Control Method Battery> on acpi0
AcpiOsExecute: task queue not started
battery1: <ACPI Control Method Battery> on acpi0
AcpiOsExecute: task queue not started
acpi_button0: <Sleep Button> on acpi0
acpi_lid0: <Control Method Lid Switch> on acpi0
Table 'FACP' at 0x7ff49b00
FACP: Found table at 0x7ff49b00
pcib0: allocated type 3 (0xb0000-0xb07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb0800-0xb0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb1000-0xb17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb1800-0xb1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb2000-0xb27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb2800-0xb2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb3000-0xb37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb3800-0xb3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb4000-0xb47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb4800-0xb4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb5000-0xb57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb5800-0xb5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb6000-0xb67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb6800-0xb6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb7000-0xb77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb7800-0xb7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb8000-0xb87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb8800-0xb8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xb9000-0xb97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xb9800-0xb9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xba000-0xba7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xba800-0xbafff) for rid 0 of orm0
pcib0: allocated type 3 (0xbb000-0xbb7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xbb800-0xbbfff) for rid 0 of orm0
pcib0: allocated type 3 (0xbc000-0xbc7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xbc800-0xbcfff) for rid 0 of orm0
pcib0: allocated type 3 (0xbd000-0xbd7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xbd800-0xbdfff) for rid 0 of orm0
pcib0: allocated type 3 (0xbe000-0xbe7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xbe800-0xbefff) for rid 0 of orm0
pcib0: allocated type 3 (0xbf000-0xbf7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xbf800-0xbffff) for rid 0 of orm0
pcib0: allocated type 3 (0xc0000-0xc07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc0800-0xc0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc1000-0xc17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc1800-0xc1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc2000-0xc27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc2800-0xc2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc3000-0xc37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc3800-0xc3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc4000-0xc47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc4800-0xc4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc5000-0xc57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc5800-0xc5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc6000-0xc67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc6800-0xc6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc7000-0xc77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc7800-0xc7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc8000-0xc87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc8800-0xc8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc9000-0xc97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc9800-0xc9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xca000-0xca7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xca800-0xcafff) for rid 0 of orm0
pcib0: allocated type 3 (0xcb000-0xcb7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcb800-0xcbfff) for rid 0 of orm0
pcib0: allocated type 3 (0xcc000-0xcc7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcc800-0xccfff) for rid 0 of orm0
pcib0: allocated type 3 (0xcd000-0xcd7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcd800-0xcdfff) for rid 0 of orm0
pcib0: allocated type 3 (0xce000-0xce7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xce800-0xcefff) for rid 0 of orm0
pcib0: allocated type 3 (0xcf000-0xcf7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcf800-0xcffff) for rid 0 of orm0
pcib0: allocated type 3 (0xd0000-0xd07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd0800-0xd0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd1000-0xd17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd1800-0xd1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd2000-0xd27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd2800-0xd2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd3000-0xd37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd3800-0xd3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd4000-0xd47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd4800-0xd4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd5000-0xd57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd5800-0xd5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd6000-0xd67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd6800-0xd6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd7000-0xd77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd7800-0xd7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd8000-0xd87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd8800-0xd8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd9000-0xd97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd9800-0xd9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xda000-0xda7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xda800-0xdafff) for rid 0 of orm0
pcib0: allocated type 3 (0xdb000-0xdb7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xdb800-0xdbfff) for rid 0 of orm0
pcib0: allocated type 3 (0xdc000-0xdc7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xdc800-0xdcfff) for rid 0 of orm0
pcib0: allocated type 3 (0xdd000-0xdd7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xdd800-0xddfff) for rid 0 of orm0
pcib0: allocated type 3 (0xde000-0xde7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xde800-0xdefff) for rid 0 of orm0
pcib0: allocated type 3 (0xdf000-0xdf7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xdf800-0xdffff) for rid 0 of orm0
pcib0: allocated type 3 (0xe0000-0xe07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe0800-0xe0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe1000-0xe17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe1800-0xe1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe2000-0xe27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe2800-0xe2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe3000-0xe37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe3800-0xe3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe4000-0xe47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe4800-0xe4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe5000-0xe57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe5800-0xe5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe6000-0xe67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe6800-0xe6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe7000-0xe77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe7800-0xe7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe8000-0xe87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe8800-0xe8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xe9000-0xe97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xe9800-0xe9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xea000-0xea7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xea800-0xeafff) for rid 0 of orm0
pcib0: allocated type 3 (0xeb000-0xeb7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xeb800-0xebfff) for rid 0 of orm0
pcib0: allocated type 3 (0xec000-0xec7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xec800-0xecfff) for rid 0 of orm0
pcib0: allocated type 3 (0xed000-0xed7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xed800-0xedfff) for rid 0 of orm0
pcib0: allocated type 3 (0xed800-0xeffff) for rid 0 of orm0
pcib0: allocated type 3 (0xf0000-0xf07ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf0800-0xf0fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf1000-0xf17ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf1800-0xf1fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf2000-0xf27ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf2800-0xf2fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf3000-0xf37ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf3800-0xf3fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf4000-0xf47ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf4800-0xf4fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf5000-0xf57ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf5800-0xf5fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf6000-0xf67ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf6800-0xf6fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf7000-0xf77ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf7800-0xf7fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf8000-0xf87ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf8800-0xf8fff) for rid 1 of orm0
pcib0: allocated type 3 (0xf9000-0xf97ff) for rid 1 of orm0
pcib0: allocated type 3 (0xf9800-0xf9fff) for rid 1 of orm0
pcib0: allocated type 3 (0xfa000-0xfa7ff) for rid 1 of orm0
pcib0: allocated type 3 (0xfa800-0xfafff) for rid 1 of orm0
pcib0: allocated type 3 (0xfb000-0xfb7ff) for rid 1 of orm0
pcib0: allocated type 3 (0xfb800-0xfbfff) for rid 1 of orm0
pcib0: allocated type 3 (0xfc000-0xfc7ff) for rid 1 of orm0
pcib0: allocated type 3 (0xfc800-0xfcfff) for rid 1 of orm0
pcib0: allocated type 3 (0xfd000-0xfd7ff) for rid 1 of orm0
pcib0: allocated type 3 (0xfd800-0xfdfff) for rid 1 of orm0
pcib0: allocated type 3 (0xfe000-0xfe7ff) for rid 1 of orm0
pcib0: allocated type 3 (0xfe800-0xfefff) for rid 1 of orm0
pcib0: allocated type 3 (0xff000-0xff7ff) for rid 1 of orm0
pcib0: allocated type 3 (0xff800-0xfffff) for rid 1 of orm0
ahc_isa_identify 0: ioport 0xc00 alloc failed
ahc_isa_identify 1: ioport 0x1c00 alloc failed
ahc_isa_identify 2: ioport 0x2c00 alloc failed
ahc_isa_identify 3: ioport 0x3c00 alloc failed
ahc_isa_identify 4: ioport 0x4c00 alloc failed
ahc_isa_identify 5: ioport 0x5c00 alloc failed
ahc_isa_identify 6: ioport 0x6c00 alloc failed
ahc_isa_identify 7: ioport 0x7c00 alloc failed
ahc_isa_identify 8: ioport 0x8c00 alloc failed
ahc_isa_identify 9: ioport 0x9c00 alloc failed
ahc_isa_identify 10: ioport 0xac00 alloc failed
ahc_isa_identify 11: ioport 0xbc00 alloc failed
ahc_isa_identify 12: ioport 0xcc00 alloc failed
ahc_isa_identify 13: ioport 0xdc00 alloc failed
ahc_isa_identify 14: ioport 0xec00 alloc failed
isa_probe_children: disabling PnP devices
atkbdc: atkbdc0 already exists; skipping it
atrtc: atrtc0 already exists; skipping it
attimer: attimer0 already exists; skipping it
sc: sc0 already exists; skipping it
isa_probe_children: probing non-PnP devices
orm0: <ISA Option ROM> at iomem 0xed800-0xeffff pnpid ORM0000 on isa0
sc0 failed to probe on isa0
vga0 failed to probe on isa0
pcib0: allocated type 4 (0x3f0-0x3f5) for rid 0 of fdc0
pcib0: allocated type 4 (0x3f7-0x3f7) for rid 1 of fdc0
fdc0 failed to probe at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0
ppc0: cannot reserve I/O port range
ppc0 failed to probe at irq 7 on isa0
pcib0: allocated type 4 (0x3f8-0x3f8) for rid 0 of uart0
uart0 failed to probe at port 0x3f8 irq 4 on isa0
pcib0: allocated type 4 (0x2f8-0x2f8) for rid 0 of uart1
uart1 failed to probe at port 0x2f8 irq 3 on isa0
isa_probe_children: probing PnP devices
Device configuration finished.
procfs registered
ZFS filesystem version: 5
ZFS storage pool version: features support (5000)
Timecounters tick every 1.000 msec
vlan: initialized, using hash tables with chaining
lo0: bpf attached
tcp_init: net.inet.tcp.tcbhashsize auto tuned to 65536
IPsec: Initialized Security Association Processing.
AcpiOsExecute: enqueue 3 pending tasks
acpi_acad0: battery0: hptnr: no controller detected.
acline initialization start
battery initialization start
battery1: hptrr: no controller detected.
hpt27xx: no controller detected.
battery0: battery initialization done, tried 1 times
ahcich0: battery initialization start
hdacc0: Firmware Error (ACPI): <Realtek ALC269 HDA CODEC> at cad 0 on hdac0
AHCI reset...
ahcich0: SATA connect time=900us status=00000123
Could not resolve [\134_PR.CP00], AE_NOT_FOUNDugen1.1: <Intel EHCI root HUB> at usbus1
ugen0.1: <0x8086 XHCI root HUB> at usbus0
ugen2.1: <Intel EHCI root HUB> at usbus2
ahcich0:  (20181003/psargs-503)
ACPI Error: uhub0: Method parse/execution failed <Intel EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus1
uhub1: <Intel EHCI root HUB, class 9/0, rev 2.00/1.00, addr 1> on usbus2
\134PNOTuhub2: , AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed <0x8086 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus0
hdaa0: \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
<Realtek ALC269 Audio Function Group> at nid 1 on hdacc0
hdaa0: AHCI reset: device found
ahcich0: Subsystem ID: 0x17aa21fb
AHCI reset: device ready after 0ms
hdaa0: NumGPIO=2 NumGPO=0 NumGPI=0 GPIWake=0 GPIUnsol=1
hdaa0:  GPIO0: disabled
hdaa0:  GPIO1: disabled
ahcich1: AHCI reset...
hdaa0: Original pins configuration:
hdaa0: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa0: 18 90a60140 4  0  Mic           Fixed Digital Internal   Unknown 1
hdaa0: 20 90170110 1  0  Speaker       Fixed Analog  Internal   Unknown 1
hdaa0: 21 03211020 2  0  Headphones    Jack  1/8     Left       Black   0
hdaa0: 23 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa0: 24 03a11830 3  0  Mic           Jack  1/8     Left       Black   8
hdaa0: 25 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa0: 26 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa0: 27 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
ahcich1: hdaa0: 29 40138205 0  5  Speaker       None  ATAPI   0x00       Purple  2
hdaa0: 30 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa0: SATA connect timeout time=10000us status=00000000
ahcich1: AHCI reset: device not found
Patching pin config nid=21 0x03211020 -> 0x0321101f
ahcich2: hdaa0: Patching widget caps nid=29 0x00400400 -> 0x00700400
AHCI reset...
hdaa0: Patched pins configuration:
hdaa0: nid   0x    as seq device       conn  jack    loc        color   misc
ahcich2: hdaa0: 18 90a60140 4  0  Mic           Fixed Digital Internal   Unknown 1
hdaa0: 20 90170110 1  0  Speaker       Fixed Analog  Internal   Unknown 1
hdaa0: 21 0321101f 1  15 Headphones    Jack  1/8     Left       Black   0
hdaa0: 23 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa0: 24 03a11830 3  0  Mic           Jack  1/8     Left       Black   8
hdaa0: 25 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa0: 26 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa0: 27 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa0: 30 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa0: 3 associations found:
hdaa0: Association 0 (1) out:
hdaa0:  Pin nid=20 seq=0
hdaa0:  Pin nid=21 seq=15
hdaa0: Association 1 (3) in:
hdaa0:  Pin nid=24 seq=0
hdaa0: Association 2 (4) in:
hdaa0:  Pin nid=18 seq=0
hdaa0: Tracing association 0 (1)
hdaa0:  Pin 20 traced to DAC 2
hdaa0:  Pin 21 traced to DAC 2 and hpredir 0
hdaa0: Association 0 (1) trace succeeded
hdaa0: Tracing association 1 (3)
hdaa0:  Pin 24 traced to ADC 8
hdaa0: Association 1 (3) trace succeeded
hdaa0: Tracing association 2 (4)
hdaa0:  Pin 18 traced to ADC 9
hdaa0: Association 2 (4) trace succeeded
hdaa0: Looking for additional DAC for association 0 (1)
hdaa0: Looking for additional ADC for association 1 (3)
hdaa0: Looking for additional ADC for association 2 (4)
hdaa0: Tracing input monitor
hdaa0:  Tracing nid 11 to out
hdaa0:  nid 11 is input monitor
hdaa0:  Tracing nid 34 to out
hdaa0:  Tracing nid 35 to out
hdaa0: Tracing other input monitors
hdaa0:  Tracing nid 18 to out
hdaa0:  Tracing nid 24 to out
hdaa0: Tracing beeper
hdaa0: Headphones redirection for association 0 nid=21 using unsolicited responses.
hdaa0: Redirect output to: main
hdaa0: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref
SATA connect timeout time=10000us status=00000000
pcm0: ahcich2: <Realtek ALC269 (Analog 2.0+HP/2.0)> at nid 20,21 and 24 on hdaa0
AHCI reset: device not found
pcm0: Playback:
ahcich4: pcm0:      Stream cap: 0x00000001 PCM
pcm0:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm0:             DAC: 2
pcm0: 
pcm0:     nid=20 [pin: Speaker (Fixed)]
pcm0:       + <- nid=12 [audio mixer] [src: pcm, mix]
pcm0:              + <- nid=2 [audio output] [src: pcm]
pcm0:              + <- nid=11 [audio mixer] [src: mix]
pcm0: 
pcm0:     nid=21 [pin: Headphones (Black Jack)]
pcm0: AHCI reset...
      + <- nid=12 [audio mixer] [src: pcm, mix]
pcm0:              + <- nid=2 [audio output] [src: pcm]
pcm0:              + <- nid=11 [audio mixer] [src: mix]
ahcich4: pcm0: 
pcm0: Record:
pcm0:      Stream cap: 0x00000001 PCM
pcm0:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm0:             ADC: 8
pcm0: 
pcm0:     nid=8 [audio input]
pcm0:       + <- nid=35 [audio mixer] [src: speaker, mic, mix]
pcm0:              + <- nid=24 [pin: Mic (Black Jack)] [src: mic]
pcm0:              + <- SATA connect timeout time=10000us status=00000000
ahcich4: AHCI reset: device not found
nid=29 [beep widget]GEOM: new disk ada0
ada0 at ahcich0 bus 0 scbus0 target 0 lun 0
ada0: <INTEL SSDSA2BW160G3L 4PC1LE04> ATA8-ACS SATA 2.x device
ada0: Serial Number BTPR151103EC160DGN
ada0: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes)
ada0: Command Queueing enabled
ada0: 152627MB (312581808 512 byte sectors)
 [src: speaker]
pcm0:              + <- pass0 at ahcich0 bus 0 scbus0 target 0 lun 0
nid=11 [audio mixer]pass0:  [src: mix]
pcm0: 
pcm0: Input Mix:
pcm0: 
pcm0:     nid=11 [audio mixer]
pcm0:       + <- nid=24 [pin: Mic (Black Jack)] [src: mic]
pcm0:       + <- nid=29 [beep widget] [src: speaker]
pcm0: 
pcm0: Master Volume (OSS: vol): -65/0dB
pcm0:    +- ctl  1 (nid   2 out):    -65/0dB (88 steps)
pcm0: <INTEL SSDSA2BW160G3L 4PC1LE04> ATA8-ACS SATA 2.x device
pass0: Serial Number BTPR151103EC160DGN
   +- ctl 10 (nid  12 in   0): mute
pcm0:    +- ctl 11 (nid  12 in   1): mute
pcm0:    +- ctl 17 (nid  20 in ):    mute
pcm0: pass0: 300.000MB/s transfers   +- ctl 18 (nid  21 in ):    mute
pcm0: 
pcm0: PCM Volume (OSS: pcm): -65/0dB
pcm0:    +- ctl  1 (nid   2 out (SATA 2.x, UDMA6, PIO 8192bytes)
pass0: Command Queueing enabled
):    -65/0dB (88 steps)
pcm0:    +- ctl 10 (nid  12 in   0): mute
pcm0: 
pcm0: Microphone Volume (OSS: mic): 0/30dB
pcm0:    +- ctl  5 (nid  11 in   0): -34/12dB (32 steps) + mute
pcm0:    +- ctl 21 (nid  24 out):    0/30dB (4 steps)
pcm0:    +- ctl 35 (nid  35 in   0): mute
pcm0: 
pcm0: Speaker/Beep Volume (OSS: speaker): -34/12dB
pcm0:    +- ctl  9 (nid  11 in   4): -34/12dB (32 steps) + mute
pcm0:    +- ctl 39 (nid  35 in   4): mute
pcm0: 
pcm0: Recording Level (OSS: rec): -17/30dB
pcm0:    +- ctl  3 (nid   8 in   0): -17/30dB (64 steps) + mute
pcm0:    +- ctl 35 (nid  35 in   0): mute
pcm0:    +- ctl 39 (nid  35 in   4): mute
pcm0:    +- ctl 40 (nid  35 in   5): mute
pcm0: 
pcm0: Input Mix Level (OSS: mix): -34/12dB
pcm0:    +- ctl  5 (nid  11 in   0): -34/12dB (32 steps) + mute
pcm0:    +- ctl  9 (nid  11 in   4): -34/12dB (32 steps) + mute
pcm0:    +- ctl 11 (nid  12 in   1): mute
pcm0:    +- ctl 40 (nid  35 in   5): mute
pcm0: 
pcm0: Input Monitoring Level (OSS: igain): 0/0dB
pcm0:    +- ctl 11 (nid  12 in   1): mute
pcm0: 
pcm0: Mixer "vol":
pcm0: Mixer "pcm":
pcm0: Mixer "speaker":
pcm0: Mixer "mic":
pcm0: Mixer "mix":
pcm0: Mixer "rec":
pcm0: Mixer "igain":
pcm0: Mixer "ogain":
pcm0: Playback channel set is: Front Left, Front Right, 
pcm0: Playback channel matrix is: 2.0 (unknown)
pcm0: Recording channel set is: Front Left, Front Right, 
pcm0: Recording channel matrix is: 2.0 (disconnected)
pcm1: <Realtek ALC269 (Internal Analog Mic)> at nid 18 on hdaa0
pcm1: Record:
pcm1:      Stream cap: 0x00000001 PCM
pcm1:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm1:             ADC: 9
pcm1: 
pcm1:     nid=9 [audio input]
pcm1:       + <- nid=34 [audio mixer] [src: speaker, monitor]
pcm1:              + <- nid=29 [beep widget] [src: speaker]
pcm1:              + <- nid=18 [pin: Mic (Fixed)] [src: monitor]
pcm1: 
pcm1: Microphone2 Volume (OSS: monitor): 0/30dB
pcm1:    +- ctl 16 (nid  18 out):    0/30dB (4 steps)
pcm1:    +- ctl 34 (nid  34 in   6): mute
pcm1: 
pcm1: Speaker/Beep Volume (OSS: speaker)
pcm1:    +- ctl 32 (nid  34 in   4): mute
pcm1: 
pcm1: Recording Level (OSS: rec): -17/30dB
pcm1:    +- ctl  4 (nid   9 in   0): -17/30dB (64 steps) + mute
pcm1:    +- ctl 16 (nid  18 out):    0/30dB (4 steps)
pcm1:    +- ctl 32 (nid  34 in   4): mute
pcm1:    +- ctl 34 (nid  34 in   6): mute
pcm1: 
pcm1: Mixer "rec":
pcm1: Mixer "monitor":
pcm1: Automatically set rec source to: monitor
pcm1: Recording channel set is: Front Left, Front Right, 
pcm1: Recording channel matrix is: 2.0 (unknown)
hdacc1: <Intel Panther Point HDA CODEC> at cad 3 on hdac0
hdaa1: <Intel Panther Point Audio Function Group> at nid 1 on hdacc1
hdaa1: Subsystem ID: 0x80860101
hdaa1: NumGPIO=0 NumGPO=0 NumGPI=0 GPIWake=0 GPIUnsol=0
hdaa1: Original pins configuration:
hdaa1: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa1:  5 18560010 1  0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa1:  6 18560020 2  0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa1:  7 18560030 3  0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa1: Patched pins configuration:
hdaa1: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa1:  5 18560010 1  0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa1:  6 18560020 2  0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa1:  7 18560030 3  0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa1: 3 associations found:
hdaa1: Association 0 (1) out:
hdaa1:  Pin nid=5 seq=0
hdaa1: Association 1 (2) out:
hdaa1:  Pin nid=6 seq=0
hdaa1: Association 2 (3) out:
hdaa1:  Pin nid=7 seq=0
hdaa1: Tracing association 0 (1)
hdaa1:  Pin 5 traced to DAC 2
hdaa1: Association 0 (1) trace succeeded
hdaa1: Tracing association 1 (2)
hdaa1:  Pin 6 traced to DAC 3
hdaa1: Association 1 (2) trace succeeded
hdaa1: Tracing association 2 (3)
hdaa1:  Pin 7 traced to DAC 4
hdaa1: Association 2 (3) trace succeeded
hdaa1: Looking for additional DAC for association 0 (1)
hdaa1: Looking for additional DAC for association 1 (2)
hdaa1: Looking for additional DAC for association 2 (3)
hdaa1: Tracing input monitor
hdaa1: Tracing other input monitors
hdaa1: Tracing beeper
hdaa1: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref
pcm2: <Intel Panther Point (HDMI/DP 8ch)> at nid 5 on hdaa1
pcm2: Playback:
pcm2:      Stream cap: 0x00000005 AC3 PCM
pcm2:         PCM cap: 0x001e07f0 16 20 24 32 bits, 32 44 48 88 96 176 192 KHz
pcm2:             DAC: 2
pcm2: 
pcm2:     nid=5 [pin: Digital-out (Jack)]
pcm2:       + <- nid=2 [audio output] [src: pcm]
pcm2: 
pcm2: Master Volume (OSS: vol): 0/0dB
pcm2:    +- ctl  1 (nid   5 in ):    mute
pcm2: 
pcm2: PCM Volume (OSS: pcm): 0/0dB
pcm2:    +- ctl  1 (nid   5 in ):    mute
pcm2: 
pcm2: Mixer "vol":
pcm2: Mixer "pcm":
pcm2: Soft PCM mixer ENABLED
pcm2: Playback channel matrix is: unknown, assuming 7.1 (disconnected)
pcm3: <Intel Panther Point (HDMI/DP 8ch)> at nid 6 on hdaa1
pcm3: Playback:
pcm3:      Stream cap: 0x00000005 AC3 PCM
pcm3:         PCM cap: 0x001e07f0 16 20 24 32 bits, 32 44 48 88 96 176 192 KHz
pcm3:             DAC: 3
pcm3: 
pcm3:     nid=6 [pin: Digital-out (Jack)]
pcm3:       + <- nid=3 [audio output] [src: pcm]
pcm3: 
pcm3: Master Volume (OSS: vol): 0/0dB
pcm3:    +- ctl  2 (nid   6 in ):    mute
pcm3: 
pcm3: PCM Volume (OSS: pcm): 0/0dB
pcm3:    +- ctl  2 (nid   6 in ):    mute
pcm3: 
pcm3: Mixer "vol":
pcm3: Mixer "pcm":
pcm3: Soft PCM mixer ENABLED
pcm3: Playback channel matrix is: unknown, assuming 7.1 (disconnected)
pcm4: <Intel Panther Point (HDMI/DP 8ch)> at nid 7 on hdaa1
pcm4: Playback:
pcm4:      Stream cap: 0x00000005 AC3 PCM
pcm4:         PCM cap: 0x001e07f0 16 20 24 32 bits, 32 44 48 88 96 176 192 KHz
pcm4:             DAC: 4
pcm4: 
pcm4:     nid=7 [pin: Digital-out (Jack)]
pcm4:       + <- nid=4 [audio output] [src: pcm]
pcm4: 
pcm4: Master Volume (OSS: vol): 0/0dB
pcm4:    +- ctl  3 (nid   7 in ):    mute
pcm4: 
pcm4: PCM Volume (OSS: pcm): 0/0dB
pcm4:    +- ctl  3 (nid   7 in ):    mute
pcm4: 
pcm4: Mixer "vol":
pcm4: Mixer "pcm":
pcm4: Soft PCM mixer ENABLED
pcm4: Playback channel matrix is: unknown, assuming 7.1 (disconnected)
Trying to mount root from zfs:projectBSD-ssd2/ROOT/master []...
Root mount waiting for: usbus2 usbus1 usbus0
uhub2: 8 ports with 8 removable, self powered
uhub0: 3 ports with 3 removable, self powered
uhub1: 3 ports with 3 removable, self powered
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
usb_alloc_device: set address 2 failed (USB_ERR_TIMEOUT, ignored)
usb_alloc_device: set address 2 failed (USB_ERR_TIMEOUT, ignored)
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Root mount waiting for: usbus2 usbus1
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
Root mount waiting for: usbus2 usbus1
usbd_req_re_enumerate: addr=2, set address failed! (USB_ERR_TIMEOUT, ignored)
usbd_req_re_enumerate: addr=2, set address failed! (USB_ERR_TIMEOUT, ignored)
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
usbd_req_re_enumerate: addr=2, set address failed! (USB_ERR_TIMEOUT, ignored)
usbd_req_re_enumerate: addr=2, set address failed! (USB_ERR_TIMEOUT, ignored)
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
Root mount waiting for: usbus2 usbus1
usbd_req_re_enumerate: addr=2, set address failed! (USB_ERR_TIMEOUT, ignored)
usbd_req_re_enumerate: addr=2, set address failed! (USB_ERR_TIMEOUT, ignored)
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
usbd_req_re_enumerate: addr=2, set address failed! (USB_ERR_TIMEOUT, ignored)
usbd_req_re_enumerate: addr=2, set address failed! (USB_ERR_TIMEOUT, ignored)
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)
Root mount waiting for: usbus2 usbus1
Root mount waiting for: usbus2 usbus1
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
ugen1.2: <Unknown > at usbus1 (disconnected)
uhub_reattach_port: could not allocate new device
usbd_setup_device_desc: getting device descriptor at addr 2 failed, USB_ERR_TIMEOUT
ugen2.2: <Unknown > at usbus2 (disconnected)
uhub_reattach_port: could not allocate new device
atrtc0: providing initial system time
start_init: trying /sbin/init
info: [drm] Initialized drm 1.1.0 20060810
drmn0: =======================================================
drmn0: This code is obsolete abandonware. Install the graphics/drm-legacy-kmod pkg
drmn0: =======================================================
drmn0: Deprecated code (to be removed in FreeBSD 13): drm2 drivers
drmn0: =======================================================
drmn0: This code is obsolete abandonware. Install the graphics/drm-legacy-kmod pkg
drmn0: =======================================================
drmn0: Deprecated code (to be removed in FreeBSD 13): drm2 drivers
drmn0: <Intel IvyBridge (M)> on vgapci0
info: [drm] Memory usable by graphics device = 2048M
intel_iicbb0 on drmn0
iicbus0: <Philips I2C bus> on iicbb0 addr 0xff
iic0: <I2C generic I/O> on iicbus0
iicbus1: <Philips I2C bus> on intel_gmbus0
iic1: <I2C generic I/O> on iicbus1
intel_iicbb1 on drmn0
iicbus2: <Philips I2C bus> on iicbb1 addr 0xff
iic2: <I2C generic I/O> on iicbus2
iicbus3: <Philips I2C bus> on intel_gmbus1
iic3: <I2C generic I/O> on iicbus3
intel_iicbb2 on drmn0
iicbus4: <Philips I2C bus> on iicbb2 addr 0xff
iic4: <I2C generic I/O> on iicbus4
iicbus5: <Philips I2C bus> on intel_gmbus2
iic5: <I2C generic I/O> on iicbus5
intel_iicbb3 on drmn0
iicbus6: <Philips I2C bus> on iicbb3 addr 0xff
iic6: <I2C generic I/O> on iicbus6
iicbus7: <Philips I2C bus> on intel_gmbus3
iic7: <I2C generic I/O> on iicbus7
intel_iicbb4 on drmn0
iicbus8: <Philips I2C bus> on iicbb4 addr 0xff
iic8: <I2C generic I/O> on iicbus8
iicbus9: <Philips I2C bus> on intel_gmbus4
iic9: <I2C generic I/O> on iicbus9
intel_iicbb5 on drmn0
iicbus10: <Philips I2C bus> on iicbb5 addr 0xff
iic10: <I2C generic I/O> on iicbus10
iicbus11: <Philips I2C bus> on intel_gmbus5
iic11: <I2C generic I/O> on iicbus11
vgapci0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 270 to local APIC 2 vector 55
vgapci0: using IRQ 270 for MSI
info: [drm] MSI enabled 1 message(s)
info: [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
info: [drm] Driver supports precise vblank timestamp query.
intel_sdvo_ddc_proxy921920 on drmn0
info: [drm] GMBUS [i915 gmbus dpb] timed out, falling back to bit banging on pin 5
intel_sdvo_ddc_proxy921920: detached
drm_iic_dp_aux0 on drmn0
drm_iic_dp_aux1 on drmn0
drm_iic_dp_aux2 on drmn0
drmn0: taking over the fictitious range 0xd0000000-0xe0000000
info: [drm] Connector LVDS-1: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.LVDS-1
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector VGA-1: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.VGA-1
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector HDMI-A-1: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.HDMI-A-1
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector DP-1: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.DP-1
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector HDMI-A-2: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.HDMI-A-2
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector HDMI-A-3: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.HDMI-A-3
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector DP-2: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.DP-2
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector DP-3: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.DP-3
info: [drm]   - kern.vt.fb.default_mode
fbd0 on drmn0
VT: Replacing driver "vga" with new "fb".
drmn0: No ACPI video bus found
info: [drm] Initialized i915 1.6.0 20080730 for drmn0 on minor 0
aesni0: <AES-CBC,AES-XTS,AES-GCM,AES-ICM> on motherboard
crypto: assign aesni0 driver id 1, flags 0x5000000
crypto: aesni0 registers alg 11 flags 0 maxoplen 0
crypto: aesni0 registers alg 23 flags 0 maxoplen 0
crypto: aesni0 registers alg 25 flags 0 maxoplen 0
crypto: aesni0 registers alg 26 flags 0 maxoplen 0
crypto: aesni0 registers alg 27 flags 0 maxoplen 0
crypto: aesni0 registers alg 28 flags 0 maxoplen 0
crypto: aesni0 registers alg 22 flags 0 maxoplen 0
fuse-freebsd: version 0.4.4, FUSE ABI 7.8
cpuctl: access to MSR registers/cpuid info.
info: [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
wlan0: bpf attached
wlan0: bpf attached
wlan0: Ethernet address: 1c:4b:d6:78:c2:00
lo0: link state changed to UP
wlan0: link state changed to UP
Firmware Error (ACPI): Could not resolve [\134_PR.CP00], AE_NOT_FOUND (20181003/psargs-503)
ACPI Error: Method parse/execution failed \134PNOT, AE_NOT_FOUND (20181003/psparse-677)
ACPI Error: Method parse/execution failed \134_SB.PCI0.LPCB.EC.AC._PSR, AE_NOT_FOUND (20181003/psparse-677)

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CADxA8SrK4P8Ow7a-sWfshKH1Qxvfv4KFX9D%2BfBtt4_4APTp%2B6Q>