NetBSD-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: install/57826: NetBSD-10.0_RC2-i386-install.img installer keyboard does not work
The following reply was made to PR install/57826; it has been noted by GNATS.
From: Ramiro Aceves <ea1abz%gmail.com@localhost>
To: gnats-bugs%netbsd.org@localhost, install-manager%netbsd.org@localhost,
gnats-admin%netbsd.org@localhost, netbsd-bugs%netbsd.org@localhost, RVP <rvp%SDF.ORG@localhost>
Cc: Martin Husemann <martin%duskware.de@localhost>, martin%netbsd.org@localhost
Subject: Re: install/57826: NetBSD-10.0_RC2-i386-install.img installer
keyboard does not work
Date: Mon, 8 Jan 2024 14:21:45 +0100
El 8/1/24 a las 8:25, RVP escribió:
> The following reply was made to PR install/57826; it has been noted by GNATS.
>
> From: RVP <rvp%SDF.ORG@localhost>
> To: gnats-bugs%netbsd.org@localhost
> Cc:
> Subject: Re: install/57826: NetBSD-10.0_RC2-i386-install.img installer keyboard
> does not work
> Date: Mon, 8 Jan 2024 07:20:40 +0000 (UTC)
>
> On Sun, 7 Jan 2024, Ramiro Aceves wrote:
>
> > I send you some hardware information commands from the Debian GNU/Linux
> > operating system that is installed on that laptop.
> >
> > root@debian-compal:/home/ramiro/Descargas# dmesg
> > [ 0.000000] Linux version 5.10.0-20-686-pae
> > (debian-kernel%lists.debian.org@localhost) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110,
> > GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.158-2
> > (2022-12-13)
> >
>
> Can you get a dmesg on NetBSD? That will help the people who know this
> stuff better than me.
>
> 1. Write a new i386 USB install image.
>
> 2. Connect this USB drive to any *BSD system (any OS which can write a
> UFS filesystem).
>
> 3. Mount the installer root partition, then apply this patch:
>
> ```
> diff -urN a/etc/rc b/etc/rc
> --- a/etc/rc 2024-01-01 14:04:52.000000000 +0000
> +++ b/etc/rc 2024-01-08 06:50:10.966750234 +0000
> @@ -45,5 +45,11 @@
> stty speed >> /tmp/gettytab
> cp /tmp/gettytab /etc
>
> +# save kernel messages on the USB installer media
> +dmesg > /var/tmp/dmesg.$(date +%s).txt
> +
> +# turn-off key autorepeat (boot with USB KB attached)
> +wsconsctl -w repeat.del1=0
> +
> # done, move on to multiuser mode
> exit 0
> ```
>
> 4. Unmount USB installer root, then boot it on the i386 laptop.
> Make sure the USB wireless KB is connected before powering on so that
> autorepeat can be turned off on it.
>
> See if you're able to install NetBSD.
>
> 5. The dmesg output will be left in: /var/tmp/dmesg.NNN.txt on the install
> disk. Post it.
>
> -RVP
>
Hello RVP!
Thanks for your fast replay with the tips.
I have applied the patch to a fresh pendrive install image using my
other NetBSD system on Intel Nuc- Image is mounted on /root/pincho_USB:
netbsd-nuc# df -h
Filesystem Size Used Avail %Cap Mounted on
/dev/dk5 113G 44G 63G 40% /
tmpfs 4.0G 12K 4.0G 0% /tmp
kernfs 1.0K 1.0K 0B 100% /kern
ptyfs 1.0K 1.0K 0B 100% /dev/pts
procfs 4.0K 4.0K 0B 100% /proc
tmpfs 4.0G 12M 4.0G 0% /var/shm
/dev/sd1a 2.9G 1.4G 1.3G 52% /root/pincho_USB
netbsd-nuc# cd /root/pincho_USB/
netbsd-nuc# cat etc/rc
# $NetBSD: etc.rc,v 1.2 2020/02/26 16:00:48 riastradh Exp $
#
# Copyright (c) 1997 Perry E. Metzger
# Copyright (c) 1994 Christopher G. Demetriou
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
# must display the following acknowledgement:
# This product includes software developed for the
# NetBSD Project. See http://www.NetBSD.org/ for
# information about NetBSD.
# 4. The name of the author may not be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
PATH=/sbin:/bin:/usr/bin:/usr/sbin:/
export PATH
mount -u /
mount -t tmpfs tmpfs /tmp
# create a gettytab to autologin and run sysinst
echo "# Autostart sysinst" > /tmp/gettytab
echo -n "sysinst:al=root:lo=/install.sh:im=:sp#" >> /tmp/gettytab
stty speed >> /tmp/gettytab
cp /tmp/gettytab /etc
# save kernel messages on the USB installer media
dmesg > /var/tmp/dmesg.$(date +%s).txt
# turn-off key autorepeat (boot with USB KB attached)
wsconsctl -w repeat.del1=0
# done, move on to multiuser mode
exit 0
I rebooted the system with "boot -vx" at the bootloader prompt and
keyboard repetitions went away. It was recorded
var/tmp/dmesg.1704705110.txt file.
I started installation but soon appear many errors on wd0 hard drive.
Installation was aborted with:
"Rewrite of MBR failed. I can`t continue"
I rebooted the system and I do not know why, but repeatitions came
again. I recorded this files:
-rw-r--r-- 1 root wheel 38117 Jan 8 12:15 dmesg.1704712519.txt
-rw-r--r-- 1 root wheel 39858 Jan 8 12:19 dmesg.1704712778.txt
Also I entered a manual dmesg and it was recorded in "moredmesg" file.
netbsd-nuc# cat dmesg.1704705110.txt
[ 1.000000] rbus: rbus_min_start set to 0x80000000
[ 1.000000] Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002,
2003,
[ 1.000000] 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
2012, 2013,
[ 1.000000] 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021,
2022, 2023,
[ 1.000000] 2024
[ 1.000000] The NetBSD Foundation, Inc. All rights reserved.
[ 1.000000] Copyright (c) 1982, 1986, 1989, 1991, 1993
[ 1.000000] The Regents of the University of California. All
rights reserved.
[ 1.000000] NetBSD 10.0_RC2 (GENERIC) #0: Mon Jan 1 14:04:52 UTC 2024
[ 1.000000]
mkrepro%mkrepro.NetBSD.org@localhost:/usr/src/sys/arch/i386/compile/GENERIC
[ 1.000000] total memory = 2039 MB
[ 1.000000] avail memory = 1978 MB
[ 1.000000] entropy: no seed from bootloader
[ 1.000000] timecounter: Timecounters tick every 10.000 msec
[ 1.000000] Kernelized RAIDframe activated
[ 1.000000] timecounter: Timecounter "i8254" frequency 1193182 Hz
quality 100
[ 1.000004] efi: missing or invalid systbl
[ 1.000004] BIOS32 rev. 0 found at 0xea510
[ 1.000004] SMBIOS rev. 2.3 @ 0xeb160 (25 entries)
[ 1.000004] mainbus0 (root)
[ 1.000004] ACPI: RSDP 0x00000000000E5010 000014 (v00 INSYDE)
[ 1.000004] ACPI: RSDT 0x000000007F7FB2BB 000034 (v01 INSYDE
RSDT_000 00000100 ABCD 00010200)
[ 1.000004] ACPI: FACP 0x000000007F7FFB00 000074 (v01 INSYDE
FACP_000 00000100 0000 00010200)
[ 1.000004] ACPI: DSDT 0x000000007F7FB920 0041DE (v01 COMPAL DL7x
00000001 INTL 02002036)
[ 1.000004] ACPI: FACS 0x000000007F7FFFC0 000040
[ 1.000004] ACPI: APIC 0x000000007F7FFB90 000068 (v01 STUPID
MAPIC_00 30307830 ABCD 00010200)
[ 1.000004] ACPI: SSDT 0x000000007F7FB4C7 000277 (v01 PmRef Cpu0Ist
00003000 INTL 20030522)
[ 1.000004] ACPI: SSDT 0x000000007F7FB2EF 0001D8 (v01 PmRef Cpu0Cst
00003001 INTL 20030522)
[ 1.000004] ACPI: 3 ACPI AML tables successfully acquired and loaded
[ 1.000004] ioapic0 at mainbus0 apid 1: pa 0xfec00000, version 0x20,
24 pins
[ 1.000004] ioapic0: apid is misconfigured (0 != 1)
[ 1.000004] ioapic0: remapped to apic 1
[ 1.000004] cpu0 at mainbus0 apid 0
[ 1.000004] cpu0: 64 page colors
[ 1.000004] cpu0: Use lfence to serialize rdtsc
[ 1.000004] cpu0: TSC freq from delay 157171270 Hz
[ 1.000004] cpu0: [re]calibrating local timer
[ 1.000004] cpu0: apic clock running at 587 kHz
[ 1.000004] cpu0: Intel(R) Pentium(R) M processor 1.86GHz, id 0x6d8
[ 1.000004] cpu0: node 0, package 0, core 0, smt 0
[ 1.000004] acpi0 at mainbus0: Intel ACPICA 20221020
[ 1.000004] acpi0: X/RSDT: OemId <INSYDE,RSDT_000,00000100>, AslId
<ABCD,00010200>
[ 1.000004] allocated pic ioapic0 type level pin 9 level 6 to cpu0
slot 0 idt entry 96
[ 1.000004] acpi0: SCI interrupting at int 9
[ 1.000004] acpi0: fixed power button present
[ 1.000004] timecounter: Timecounter "ACPI-Fast" frequency 3579545
Hz quality 1000
[ 1.027200] acpi0: ACPI-Fast 24-bit timer
[ 1.027200] acpiec0 at acpi0 (EC0, PNP0C09): io 0x62,0x66
[ 1.027200] acpilid0 at acpi0 (LID0, PNP0C0D): ACPI Lid Switch
[ 1.027200] acpibut0 at acpi0 (PWRB, PNP0C0C): ACPI Power Button
[ 1.027200] acpibut1 at acpi0 (SLPB, PNP0C0E): ACPI Sleep Button
[ 1.027200] acpivga0 at acpi0 (GFX0): ACPI Display Adapter
[ 1.027200] acpivga0: capabilities: _DOS _DOD
[ 1.027200] acpiout0 at acpivga0 (LCD, 0x0400): ACPI Display Output
Device
[ 1.027200] acpiout0: capabilities: _DCS _DGS _DSS
[ 1.027200] acpiout1 at acpivga0 (CRT1, 0x0100): ACPI Display Output
Device
[ 1.027200] acpiout1: capabilities: _DCS _DGS _DSS
[ 1.027200] acpiout2 at acpivga0 (DTV1, 0x0200): ACPI Display Output
Device
[ 1.027200] acpiout2: capabilities: _DCS _DGS _DSS
[ 1.027200] acpivga0: connected output devices:
[ 1.027200] acpivga0: 0x0100 (acpiout1): Ext. Monitor, head 0,
bios detect
[ 1.027200] acpivga0: 0x0400 (acpiout0): Unknown Output Device,
head 0, bios detect
[ 1.027200] acpivga0: 0x0200 (acpiout2): TV, head 0, bios detect
[ 1.027200] FWHD (INT0800) at acpi0 not configured
[ 1.027200] MATH (PNP0C04) at acpi0 not configured
[ 1.027200] attimer1 at acpi0 (TIMR, PNP0100): io
0x40-0x43,0x50-0x53 irq 0
[ 1.027200] acpiacad0 at acpi0 (ACAD, ACPI0003): ACPI AC Adapter
[ 1.027200] acpibat0 at acpi0 (BAT1, PNP0C0A-1): ACPI Battery
[ 1.027200] pckbc1 at acpi0 (PS2K, PNP0303) (kbd port): io 0x60,0x64
irq 1
[ 1.027200] pckbc2 at acpi0 (PS2M, PNP0F13) (aux port): irq 12
[ 1.027200] apm0 at acpi0: Power Management spec V1.2
[ 1.027200] ACPI: Enabled 4 GPEs in block 00 to 1F
[ 1.027200] pckbdprobe: reset error 5
[ 1.027200] pckbd0 at pckbc1 (kbd slot)
[ 1.027200] allocated pic ioapic0 type edge pin 1 level 6 to cpu0
slot 1 idt entry 97
[ 1.027200] pckbc1: using irq 1 for kbd slot
[ 1.027200] wskbd0 at pckbd0: console keyboard
[ 1.027200] autoconfiguration error: pckbc: aux echo error 1
[ 1.027200] autoconfiguration error: pckbc: cmd word write error
[ 1.027200] pci0 at mainbus0 bus 0: configuration mode 1
[ 1.027200] pci0: i/o space, memory space enabled, rd/line, rd/mult,
wr/inv ok
[ 1.027200] pchb0 at pci0 dev 0 function 0: Intel
82915PM/GM/GMS,82910GML Host Bridge (rev. 0x04)
[ 1.027200] agp0 at pchb0: i915-family chipset
[ 1.027200] agp0: detected 7932k stolen memory
[ 1.027200] agp0: aperture at 0xa0000000, size 0x10000000
[ 1.027200] i915drmkms0 at pci0 dev 2 function 0: Intel
82915GM/GMS,82910GML Integrated Graphics Device (rev. 0x04)
[ 1.027200] pci_mem_find: void region
[ 1.027200] pci_mem_find: void region
[ 1.027200] i915drmkms0: WARNING: power management not supported
[ 1.027200] Intel 82915GM/GMS IGD Companion (miscellaneous display,
revision 0x04) at pci0 dev 2 function 1 not configured
[ 1.027200] uhci0 at pci0 dev 29 function 0: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.027200] allocated pic ioapic0 type level pin 23 level 6 to cpu0
slot 2 idt entry 98
[ 1.027200] uhci0: interrupting at ioapic0 pin 23
[ 1.027200] usb0 at uhci0: USB revision 1.0
[ 1.027200] uhci1 at pci0 dev 29 function 1: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.027200] allocated pic ioapic0 type level pin 19 level 6 to cpu0
slot 3 idt entry 99
[ 1.027200] uhci1: interrupting at ioapic0 pin 19
[ 1.027200] usb1 at uhci1: USB revision 1.0
[ 1.027200] uhci2 at pci0 dev 29 function 2: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.027200] allocated pic ioapic0 type level pin 18 level 6 to cpu0
slot 4 idt entry 100
[ 1.027200] uhci2: interrupting at ioapic0 pin 18
[ 1.027200] usb2 at uhci2: USB revision 1.0
[ 1.027200] uhci3 at pci0 dev 29 function 3: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.027200] allocated pic ioapic0 type level pin 16 level 6 to cpu0
slot 5 idt entry 101
[ 1.027200] uhci3: interrupting at ioapic0 pin 16
[ 1.027200] usb3 at uhci3: USB revision 1.0
[ 1.027200] ehci0 at pci0 dev 29 function 7: Intel 82801FB/FR USB
EHCI Controller (rev. 0x04)
[ 1.027200] ehci0: 64-bit DMA - limited
[ 1.027200] allocated pic ioapic0 type level pin 23 level 6 to cpu0
slot 2 idt entry 98
[ 1.027200] ehci0: interrupting at ioapic0 pin 23
[ 1.027200] ehci0: EHCI version 0.0
[ 1.027200] ehci0: wrong number of companions (0 != 4)
[ 1.027200] ehci0: Using DMA subregion for control data structures
[ 1.027200] ehci0: autoconfiguration error: reset timeout
[ 1.027200] ehci0: autoconfiguration error: init failed, error=5
[ 1.027200] ehci0: WARNING: power management not supported
[ 1.027200] ppb0 at pci0 dev 30 function 0: Intel 82801BAM Hub-PCI
Bridge (rev. 0xd4)
[ 1.027200] pci1 at ppb0 bus 1
[ 1.027200] pci1: i/o space, memory space enabled
[ 1.027200] fwohci0 at pci1 dev 0 function 0: VIA Technologies
VT6306 IEEE 1394 Host Controller (rev. 0x80)
[ 1.027200] allocated pic ioapic0 type level pin 20 level 6 to cpu0
slot 6 idt entry 102
[ 1.027200] fwohci0: interrupting at ioapic0 pin 20
[ 1.027200] fwohci0: OHCI version 1.0 (ROM=1)
[ 1.027200] fwohci0: No. of Isochronous channels is 4.
[ 1.027200] fwohci0: EUI64 00:02:3f:59:88:40:01:0f
[ 1.027200] fwohci0: Phy 1394a available S400, 2 ports.
[ 1.027200] fwohci0: Link S400, max_rec 512 bytes.
[ 1.027200] fwohci0: max_rec 512 -> 2048
[ 1.027200] ieee1394if0 at fwohci0: IEEE1394 bus
[ 1.027200] fwip0 at ieee1394if0: IP over IEEE1394
[ 1.027200] fwohci0: Initiate bus reset
[ 1.027200] re0 at pci1 dev 1 function 0: RealTek 8169/8110 Gigabit
Ethernet (rev. 0x10)
[ 1.027200] allocated pic ioapic0 type level pin 21 level 6 to cpu0
slot 7 idt entry 103
[ 1.027200] re0: interrupting at ioapic0 pin 21
[ 1.027200] re0: RTL8169/8110SB (0x1000)
[ 1.027200] re0: Ethernet address 00:0f:b0:93:6f:e1
[ 1.027200] re0: using 256 tx descriptors
[ 1.027200] rgephy0 at re0 phy 7: RTL8211B 1000BASE-T media interface
[ 1.027200] rgephy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX,
1000baseT, 1000baseT-FDX, auto
[ 1.027200] iwi0 at pci1 dev 2 function 0: Intel PRO/Wireless LAN
2200BG Mini-PCI Adapter (rev. 0x05)
[ 1.027200] allocated pic ioapic0 type level pin 22 level 6 to cpu0
slot 8 idt entry 104
[ 1.027200] iwi0: interrupting at ioapic0 pin 22
[ 1.027200] iwi0: 802.11 address 00:13:ce:6b:7d:01
[ 1.027200] iwi0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
[ 1.027200] iwi0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps
12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
[ 1.027200] cbb0 at pci1 dev 4 function 0: ENE Technology CB710
CardBus Controller (rev. 0x00)
[ 1.027200] ENE Technology product 0530 (flash memory) at pci1 dev 4
function 1 not configured
[ 1.027200] sdhc0 at pci1 dev 4 function 2: ENE Technology
CB712/714/810 PCI SD Card Reader Controller (rev. 0x00)
[ 1.027200] allocated pic ioapic0 type level pin 17 level 6 to cpu0
slot 9 idt entry 105
[ 1.027200] sdhc0: interrupting at ioapic0 pin 17
[ 1.027200] sdhc0: SDHC 1.0, rev 0, caps <01e021a1/00000000>, SDMA,
33000 kHz, HS 3.3V, 512 byte blocks
[ 1.027200] sdmmc0 at sdhc0 slot 0
[ 1.027200] cbb0: osock_ctrl 0 sock_ctrl 0
[ 1.027200] cbb0: wait took 0.000181s
[ 1.027200] cbb0: cacheline 0x8 lattimer 0x40
[ 1.027200] cbb0: bhlc 0x824008
[ 1.027200] cbb0: autoconfiguration error: secondary bus number
uninitialized; try PCI_BUS_FIXUP
[ 1.027200] allocated pic ioapic0 type level pin 16 level 6 to cpu0
slot 5 idt entry 101
[ 1.027200] cbb0: interrupting at ioapic0 pin 16
[ 1.027200] cardslot0 at cbb0
[ 1.027200] pcmcia0 at cardslot0
[ 1.027200] auich0 at pci0 dev 30 function 2: i82801FB (ICH6) AC-97
Audio
[ 1.027200] allocated pic ioapic0 type level pin 17 level 7 to cpu0
slot 9 idt entry 105
[ 1.027200] auich0: interrupting at ioapic0 pin 17
[ 1.027200] auich0: ac97: Avance Logic unknown (0x414c4752) codec;
headphone, 20 bit DAC, 18 bit ADC, no 3D stereo
[ 1.027200] auich0: ac97: ext id 0xa07<AC97_23,AMAP,SPDIF,DRA,VRA>
[ 1.027200] Intel 82801FB/FR AC'97 Modem Controller (modem
communications, revision 0x04) at pci0 dev 30 function 3 not configured
[ 1.027200] ichlpcib0 at pci0 dev 31 function 0: Intel 82801FBM
ICH6M LPC Interface Bridge (rev. 0x04)
[ 1.027200] timecounter: Timecounter "ichlpcib0" frequency 3579545
Hz quality 1000
[ 1.027200] ichlpcib0: 24-bit timer
[ 1.027200] tco0 at ichlpcib0: TCO (watchdog) timer configured.
[ 1.027200] tco0: SMI_EN=0x00002033
[ 1.027200] tco0: SMI_EN:=0x00000033
[ 1.027200] tco0: SMI_EN=0x00000033
[ 1.027200] tco0: Min/Max interval 1/367 seconds
[ 1.027200] piixide0 at pci0 dev 31 function 1: Intel 82801FB IDE
Controller (ICH6) (rev. 0x04)
[ 1.027200] piixide0: bus-master DMA support present
[ 1.027200] piixide0: primary channel configured to compatibility mode
[ 1.027200] allocated pic ioapic0 type edge pin 14 level 6 to cpu0
slot 10 idt entry 106
[ 1.027200] piixide0: primary channel interrupting at ioapic0 pin 14
[ 1.027200] atabus0 at piixide0 channel 0
[ 1.027200] piixide0: secondary channel configured to compatibility mode
[ 1.027200] allocated pic ioapic0 type edge pin 15 level 6 to cpu0
slot 11 idt entry 107
[ 1.027200] piixide0: secondary channel interrupting at ioapic0 pin 15
[ 1.027200] atabus1 at piixide0 channel 1
[ 1.027200] ichsmb0 at pci0 dev 31 function 3: Intel 82801FB/FR
SMBus Controller (rev. 0x04)
[ 1.027200] allocated pic ioapic0 type level pin 19 level 6 to cpu0
slot 3 idt entry 99
[ 1.027200] ichsmb0: interrupting at ioapic0 pin 19
[ 1.027200] iic0 at ichsmb0: I2C bus
[ 1.027200] isa0 at ichlpcib0
[ 1.027200] pcppi0 at isa0 port 0x61
[ 1.027200] midi0 at pcppi0: PC speaker
[ 1.027200] sysbeep0 at pcppi0
[ 1.027200] attimer1: attached to pcppi0
[ 1.027200] acpicpu0 at cpu0: ACPI CPU
[ 1.027200] acpicpu0: C1: HLT, lat 0 us, pow 0 mW
[ 1.027200] acpicpu0: C2: I/O, lat 1 us, pow 0 mW
[ 1.027200] acpicpu0: C3: I/O, lat 85 us, pow 0 mW
[ 1.027200] acpicpu0: P0: I/O, lat 110 us, pow 27000 mW, 1867 MHz
[ 1.027200] acpicpu0: P1: I/O, lat 110 us, pow 23000 mW, 1600 MHz
[ 1.027200] acpicpu0: P2: I/O, lat 110 us, pow 20000 mW, 1333 MHz
[ 1.027200] acpicpu0: P3: I/O, lat 110 us, pow 17000 mW, 1067 MHz
[ 1.027200] acpicpu0: P4: I/O, lat 110 us, pow 13000 mW, 800 MHz
[ 1.027200] acpicpu0: T0: I/O, lat 1 us, pow 0 mW, 100 %
[ 1.027200] acpicpu0: T1: I/O, lat 1 us, pow 0 mW, 88 %
[ 1.027200] acpicpu0: T2: I/O, lat 1 us, pow 0 mW, 76 %
[ 1.027200] acpicpu0: T3: I/O, lat 1 us, pow 0 mW, 64 %
[ 1.027200] acpicpu0: T4: I/O, lat 1 us, pow 0 mW, 52 %
[ 1.027200] acpicpu0: T5: I/O, lat 1 us, pow 0 mW, 40 %
[ 1.027200] acpicpu0: T6: I/O, lat 1 us, pow 0 mW, 28 %
[ 1.027200] acpicpu0: T7: I/O, lat 1 us, pow 0 mW, 16 %
[ 1.027200] acpicpu0: id 0, lapic id 0, cap 0x00fd, flags 0x00182ea7
[ 1.027200] SRAT: 0 NUMA nodes
[ 1.027200] fwohci0: BUS reset
[ 1.027200] fwohci0: node_id=0xc000ffc0, gen=1, CYCLEMASTER mode
[ 1.027200] ieee1394if0: 1 nodes, maxhop <= 0 cable IRM irm(0) (me)
[ 1.027200] ieee1394if0: bus manager 0
[ 1.027200] Initializing SSP: WARNING: system needs entropy for
security; see entropy(7)
[ 1.027200] da1bdd25 52c7f484 5e92c629 5d6de0f1 c5b2140a 10fbbd88
f4f6e258 be791033
[ 1.027200] cpu0: TSC freq from delay 16360340 Hz
[ 1.027200] cpu0: [re]calibrating local timer
[ 1.027200] cpu0: apic clock running at 1169 kHz
[ 1.027200] timecounter: Timecounter "lapic" frequency 1169000 Hz
quality -100
[ 1.027200] timecounter: Timecounter "clockinterrupt" frequency 100
Hz quality 0
[ 1.601143] UVM: using package allocation scheme, 1 package(s) per
bucket
[ 1.602218] TSC not known invariant on this CPU
[ 1.602332] timecounter: Timecounter "TSC" frequency 16360340 Hz
quality -100
[ 1.937252] auich0: measured ac97 link rate at 48001 Hz, will use
48000 Hz
[ 1.937515] audio0 at auich0: playback, capture, full duplex,
independent
[ 1.938483] audio0: slinear_le:16 2ch 48000Hz, blk 1920 bytes (10ms)
for playback
[ 1.938688] audio0: slinear_le:16 2ch 48000Hz, blk 1920 bytes (10ms)
for recording
[ 1.939010] acpicpu0: ACPI CPUs started
[ 1.939361] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.939713] uhub0 at usb0: NetBSD (0x0000) UHCI root hub (0x0000),
class 9/0, rev 1.00/1.00, addr 1
[ 1.939987] uhub0: 2 ports with 2 removable, self powered
[ 1.940242] uhub1 at usb1: NetBSD (0x0000) UHCI root hub (0x0000),
class 9/0, rev 1.00/1.00, addr 1
[ 1.940505] uhub1: 2 ports with 2 removable, self powered
[ 1.940768] uhub2 at usb2: NetBSD (0x0000) UHCI root hub (0x0000),
class 9/0, rev 1.00/1.00, addr 1
[ 1.941031] uhub2: 2 ports with 2 removable, self powered
[ 1.941295] uhub3 at usb3: NetBSD (0x0000) UHCI root hub (0x0000),
class 9/0, rev 1.00/1.00, addr 1
[ 1.941559] uhub3: 2 ports with 2 removable, self powered
[ 1.942174] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.942437] acpiacad0: AC adapter online.
[ 1.942527] acpiacad0: AC adapter connected
[ 1.942964] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.943931] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.944723] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.945250] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.945865] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.946304] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.947447] atapibus0 at atabus0: 2 targets
[ 1.948062] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.948502] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.948941] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.949381] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.949733] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.950174] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.950524] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.950875] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.951229] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.951579] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.952018] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.952370] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.952809] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.953161] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.953512] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.953954] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.954304] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.954655] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.955095] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.955533] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.955885] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.956236] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.956588] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.956942] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.957291] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.957643] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.957996] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.958434] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.958874] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.959225] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.959577] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.959928] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.960281] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.960720] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.961071] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.961423] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.961862] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.962215] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.962565] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.963005] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.963357] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.963797] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.965204] IPsec: Initialized Security Association Processing.
[ 1.969509] aes: Intel SSE2 bitsliced
[ 1.969685] chacha: x86 SSE2 ChaCha
[ 1.970652] adiantum: self-test passed
[ 1.972411] aes_ccm: self-test passed
[ 1.973025] blake2s: self-test passed
[ 1.982605] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0
[ 1.991571] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0
[ 2.000536] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0
[ 2.009501] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0
[ 2.010557] uhidev0 at uhub2 port 1 configuration 1 interface 0
[ 2.010732] uhidev0: vendor 1997 (0x1997) mini keyboard (0x2433),
rev 1.10/1.10, addr 2, iclass 3/1
[ 2.018554] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0 uhidev0
[ 2.022597] ukbd0 at uhidev0
[ 2.022774] wskbd1 at ukbd0 mux 1
[ 2.023125] uhidev1 at uhub2 port 1 configuration 1 interface 1
[ 2.023301] uhidev1: vendor 1997 (0x1997) mini keyboard (0x2433),
rev 1.10/1.10, addr 2, iclass 3/1
[ 2.023476] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0 uhidev1
[ 2.031299] umass0 at uhub0 port 1 configuration 1 interface 0
[ 2.032910] umass0: UFD 2.0 (0x13fe) Silicon-Power4G (0x3d00), rev
2.00/1.00, addr 2
[ 2.033057] umass0: using SCSI over Bulk-Only
[ 2.034024] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0 uhidev1 umass0
[ 2.036485] cd0 at atapibus0 drive 1: <TSSTcorpCD/DVDW TS-L632B,
95WK401090, TI33> cdrom removable
[ 2.036754] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0 uhidev1 umass0
[ 2.037805] scsibus0 at umass0: 2 targets, 1 lun per target
[ 2.038067] waiting for devices: usb2 atabus0 atabus1 uhub2
atapibus0 uhidev1 scsibus0
[ 2.044484] cd0: 32-bit data port
[ 2.044581] uhidev1: 3 report ids
[ 2.044923] ums0 at uhidev1 reportid 1: 5 buttons and Z dir
[ 2.045275] wsmouse0 at ums0 mux 0
[ 2.045450] uhid0 at uhidev1 reportid 2: input=1, output=0, feature=0
[ 2.045801] uhid1 at uhidev1 reportid 3: input=2, output=0, feature=0
[ 2.046155] cd0: drive supports PIO mode 4waiting for devices:
atabus0 atabus1 atapibus0 scsibus0
[ 2.047823] , DMA mode 2, Ultra-DMA mode 2 (Ultra/33)
[ 2.048282] wd0 at atabus0 drive 0
[ 2.048450] waiting for devices: atabus0 atabus1 scsibus0 wd0
[ 2.049669] wd0: <IC25N080ATMR04-0>
[ 2.049808] wd0: drive supports 16-sector PIO transfers, LBA48
addressing
[ 2.049933] wd0: 76319 MB, 155061 cyl, 16 head, 63 sec, 512
bytes/sect x 156301488 sectors
[ 2.054240] sd0 at scsibus0 target 0 lun 0: <UFD 2.0,
Silicon-Power4G, PMAP> disk removable
[ 2.057403] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.066369] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.068215] sd0: 3696 MB, 927 cyl, 255 head, 32 sec, 512 bytes/sect
x 7570752 sectors
[ 2.075334] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.084302] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.093266] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.102230] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.111283] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.120161] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.129214] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.138179] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.141256] waiting for devices: atabus0 atabus1 scsibus0 wd0
[ 2.141695] piixide0:0:0: recal timed out
[ 2.141786] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 2.145122] waiting for devices: atabus0 atabus1 wd0
[ 2.154088] waiting for devices: atabus0 atabus1 wd0
[ 2.162965] waiting for devices: atabus0 atabus1 wd0
[ 2.171843] waiting for devices: atabus0 atabus1 wd0
[ 2.180720] waiting for devices: atabus0 atabus1 wd0
[ 2.189598] waiting for devices: atabus0 atabus1 wd0
[ 2.198475] waiting for devices: atabus0 atabus1 wd0
[ 2.207352] waiting for devices: atabus0 atabus1 wd0
[ 2.216232] waiting for devices: atabus0 atabus1 wd0
[ 2.225107] waiting for devices: atabus0 atabus1 wd0
[ 2.233985] waiting for devices: atabus0 atabus1 wd0
[ 2.242862] waiting for devices: atabus0 atabus1 wd0
[ 2.251739] waiting for devices: atabus0 atabus1 wd0
[ 2.260616] waiting for devices: atabus0 atabus1 wd0
[ 2.269494] waiting for devices: atabus0 atabus1 wd0
[ 2.278371] waiting for devices: atabus0 atabus1 wd0
[ 2.287248] waiting for devices: atabus0 atabus1 wd0
[ 2.296126] waiting for devices: atabus0 atabus1 wd0
[ 2.305003] waiting for devices: atabus0 atabus1 wd0
[ 2.313880] waiting for devices: atabus0 atabus1 wd0
[ 2.322758] waiting for devices: atabus0 atabus1 wd0
[ 2.331635] waiting for devices: atabus0 atabus1 wd0
[ 2.340512] waiting for devices: atabus0 atabus1 wd0
[ 2.349390] waiting for devices: atabus0 atabus1 wd0
[ 2.358267] waiting for devices: atabus0 atabus1 wd0
[ 2.367145] waiting for devices: atabus0 atabus1 wd0
[ 2.376022] waiting for devices: atabus0 atabus1 wd0
[ 2.384899] waiting for devices: atabus0 atabus1 wd0
[ 2.393777] waiting for devices: atabus0 atabus1 wd0
[ 2.402654] waiting for devices: atabus0 atabus1 wd0
[ 2.411532] waiting for devices: atabus0 atabus1 wd0
[ 2.420410] waiting for devices: atabus0 atabus1 wd0
[ 2.429286] waiting for devices: atabus0 atabus1 wd0
[ 2.438164] waiting for devices: atabus0 atabus1 wd0
[ 2.447041] waiting for devices: atabus0 atabus1 wd0
[ 2.455919] waiting for devices: atabus0 atabus1 wd0
[ 2.464796] waiting for devices: atabus0 atabus1 wd0
[ 2.473673] waiting for devices: atabus0 atabus1 wd0
[ 2.482550] waiting for devices: atabus0 atabus1 wd0
[ 2.491516] waiting for devices: atabus0 atabus1 wd0
[ 2.500394] waiting for devices: atabus0 atabus1 wd0
[ 2.509270] waiting for devices: atabus0 atabus1 wd0
[ 2.518148] waiting for devices: atabus0 atabus1 wd0
[ 2.527026] waiting for devices: atabus0 atabus1 wd0
[ 2.535905] waiting for devices: atabus0 atabus1 wd0
[ 2.544605] wd0: soft error (corrected) xfer f5c
[ 2.544780] waiting for devices: atabus0 atabus1 wd0
[ 2.553660] waiting for devices: atabus0 atabus1 wd0
[ 2.562535] waiting for devices: atabus0 atabus1 wd0
[ 2.571412] waiting for devices: atabus0 atabus1 wd0
[ 2.580289] waiting for devices: atabus0 atabus1 wd0
[ 2.589167] waiting for devices: atabus0 atabus1 wd0
[ 2.598044] waiting for devices: atabus0 atabus1 wd0
[ 2.612286] waiting for devices: atabus0 atabus1 wd0
[ 2.612724] waiting for devices: atabus0 atabus1
[ 2.615887] wd0: 32-bit data port
[ 2.616239] wd0: drive supports PIO mode 4, DMA mode 2, Ultra-DMA
mode 5 (Ultra/100)
[ 2.617031] wd0(piixide0:0:0): using PIO mode 4, Ultra-DMA mode 5
(Ultra/100) (using DMA)
[ 2.617219] cd0(piixide0:0:1): using PIO mode 4, Ultra-DMA mode 2
(Ultra/33) (using DMA)
[ 2.617733] crypto: assign driver 0, flags 2
[ 2.617849] crypto: driver 0 registers alg 1 flags 0 maxoplen 0
[ 2.617950] crypto: driver 0 registers alg 2 flags 0 maxoplen 0
[ 2.618052] crypto: driver 0 registers alg 3 flags 0 maxoplen 0
[ 2.618152] crypto: driver 0 registers alg 4 flags 0 maxoplen 0
[ 2.618260] crypto: driver 0 registers alg 5 flags 0 maxoplen 0
[ 2.618368] crypto: driver 0 registers alg 26 flags 0 maxoplen 0
[ 2.618470] crypto: driver 0 registers alg 27 flags 0 maxoplen 0
[ 2.618572] crypto: driver 0 registers alg 29 flags 0 maxoplen 0
[ 2.618674] crypto: driver 0 registers alg 33 flags 0 maxoplen 0
[ 2.618788] crypto: driver 0 registers alg 17 flags 0 maxoplen 0
[ 2.618908] crypto: driver 0 registers alg 6 flags 0 maxoplen 0
[ 2.619009] crypto: driver 0 registers alg 19 flags 0 maxoplen 0
[ 2.619111] crypto: driver 0 registers alg 7 flags 0 maxoplen 0
[ 2.619211] crypto: driver 0 registers alg 20 flags 0 maxoplen 0
[ 2.619318] crypto: driver 0 registers alg 15 flags 0 maxoplen 0
[ 2.619420] crypto: driver 0 registers alg 24 flags 0 maxoplen 0
[ 2.619520] crypto: driver 0 registers alg 25 flags 0 maxoplen 0
[ 2.619622] crypto: driver 0 registers alg 8 flags 0 maxoplen 0
[ 2.619723] crypto: driver 0 registers alg 21 flags 0 maxoplen 0
[ 2.619825] crypto: driver 0 registers alg 16 flags 0 maxoplen 0
[ 2.619930] crypto: driver 0 registers alg 9 flags 0 maxoplen 0
[ 2.620031] crypto: driver 0 registers alg 10 flags 0 maxoplen 0
[ 2.620132] crypto: driver 0 registers alg 13 flags 0 maxoplen 0
[ 2.620241] crypto: driver 0 registers alg 14 flags 0 maxoplen 0
[ 2.620343] crypto: driver 0 registers alg 28 flags 0 maxoplen 0
[ 2.620446] crypto: driver 0 registers alg 30 flags 0 maxoplen 0
[ 2.620548] crypto: driver 0 registers alg 31 flags 0 maxoplen 0
[ 2.620650] crypto: driver 0 registers alg 32 flags 0 maxoplen 0
[ 2.620752] crypto: driver 0 registers alg 11 flags 0 maxoplen 0
[ 2.620854] crypto: driver 0 registers alg 18 flags 0 maxoplen 0
[ 2.620956] crypto: driver 0 registers alg 23 flags 0 maxoplen 0
[ 2.621059] crypto: driver 0 registers alg 22 flags 0 maxoplen 0
[ 2.621161] cgd: self-test aes-xts-256
[ 2.621336] cgd: self-test aes-xts-512
[ 2.621513] cgd: self-test aes-cbc-128
[ 2.621688] cgd: self-test aes-cbc-256
[ 2.621865] cgd: self-test 3des-cbc-192
[ 2.621952] cgd: self-test blowfish-cbc-448
[ 2.622215] cgd: self-test aes-cbc-128 (encblkno8)
[ 2.622393] cgd: self-tests passed
[ 2.622743] swwdog0: software watchdog initialized
[ 2.772164] Searching for RAID components...
[ 2.843183] WARNING: 55 errors while detecting hardware; check
system log.
[ 2.843350] boot device: sd0
[ 2.843412] root on sd0a dumps on sd0b
[ 2.930202] root file system type: ffs
[ 2.950150] kern.module.path=/stand/i386/10.0/modules
[ 2.950503] pci_mem_find: void region
[ 2.950595] i915drmkms0: map 4 failed
[ 2.950678] pci_mem_find: void region
[ 2.950767] i915drmkms0: map 5 failed
[ 2.952260] i915drmkms0 {drm:netbsd:intel_uc_init_early+0x8a}
enable_guc=0 (guc:no submission:no huc:no)
[ 2.953315] {drm:netbsd:i915_gem_init__contexts+0x80} fake context
support initialized
[ 2.955337] pci_mem_find: void region
[ 2.955431] pci_mem_find: void region
[ 2.955600] pci_mem_find: void region
[ 2.955691] pci_mem_find: void region
[ 2.955781] pci_mem_find: void region
[ 2.955889] pci_mem_find: void region
[ 2.956128] pci_mem_find: void region
[ 2.956220] pci_mem_find: void region
[ 2.956304] pci_mem_find: void region
[ 2.956394] pci_mem_find: void region
[ 2.956482] pci_mem_find: void region
[ 2.956574] pci_mem_find: void region
[ 2.957447] {drm:netbsd:i915_ggtt_probe_hw+0x3f3} GGTT size = 256M
[ 2.958326] {drm:netbsd:i915_ggtt_probe_hw+0x41c} GMADR size = 256M
[ 2.959204] {drm:netbsd:i915_ggtt_probe_hw+0x44d} DSM size = 0M
[ 2.965708] {drm:netbsd:intel_opregion_setup+0x4e} graphic opregion
physical addr: 0x0
[ 2.968081] {drm:netbsd:intel_opregion_setup+0x6a3} ACPI OpRegion
not supported!
[ 2.968271] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 2.968393] [drm] Driver supports precise vblank timestamp query.
[ 2.968521] pci_mem_find: void region
[ 2.968789] allocated pic ioapic0 type level pin 16 level 6 to cpu0
slot 5 idt entry 101
[ 2.968943] i915drmkms0: interrupting at ioapic0 pin 16 (i915drmkms0)
[ 2.970279] {drm:netbsd:intel_dump_cdclk_state+0x47} Current CDCLK
190000 kHz, VCO 0 kHz, ref 0 kHz, bypass 0 kHz, voltage level 0
[ 2.971245] {drm:netbsd:intel_update_max_cdclk+0x8c} Max CD clock
rate: 190000 kHz
[ 2.972125] {drm:netbsd:intel_update_max_cdclk+0xaa} Max dotclock
rate: 342000 kHz
[ 2.973092] {drm:netbsd:intel_lvds_init+0x399} LVDS PPS:t1+t2 450 t3
500 t4 3000 t5 2000 tx 2000 divider 9999 port 0 powerdown_on_reset 0
[ 3.000338] [drm] Initialized overlay support.
[ 3.001306] {drm:netbsd:intel_engines_driver_register+0x109} renamed
rcs'0 to rcs0
[ 3.001485] [drm] Initialized i915 1.6.0 20200114 for i915drmkms0 on
minor 0
[ 3.018269] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.020466] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.032860] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.037957] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.039012] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.040067] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.062041] intelfb0 at i915drmkms0
[ 3.062217] i915 device info: pciid=0x2592 rev=0x04 platform=I915GM
(subplatform=0x0) gen=3
[ 3.062440] i915 device info: engines: 1
[ 3.062486] i915 device info: gen: 3
[ 3.062573] i915 device info: gt: 0
[ 3.062680] i915 device info: iommu: n/a
[ 3.062762] i915 device info: memory-regions: 5
[ 3.062851] i915 device info: page-sizes: 1000
[ 3.062939] i915 device info: platform: I915GM
[ 3.063026] i915 device info: ppgtt-size: 0
[ 3.063112] i915 device info: ppgtt-type: 0
[ 3.063197] i915 device info: is_mobile: yes
[ 3.063282] i915 device info: is_lp: no
[ 3.063385] i915 device info: require_force_probe: no
[ 3.063485] i915 device info: is_dgfx: no
[ 3.063535] i915 device info: has_64bit_reloc: no
[ 3.063662] i915 device info: gpu_reset_clobbers_display: yes
[ 3.063711] i915 device info: has_reset_engine: no
[ 3.063814] i915 device info: has_fpga_dbg: no
[ 3.063907] i915 device info: has_global_mocs: no
[ 3.063996] i915 device info: has_gt_uc: no
[ 3.064089] i915 device info: has_l3_dpf: no
[ 3.064175] i915 device info: has_llc: no
[ 3.064261] i915 device info: has_logical_ring_contexts: no
[ 3.064415] i915 device info: has_logical_ring_elsq: no
[ 3.064515] i915 device info: has_logical_ring_preemption: no
[ 3.064620] i915 device info: has_pooled_eu: no
[ 3.064709] i915 device info: has_rc6: no
[ 3.064789] i915 device info: has_rc6p: no
[ 3.064871] i915 device info: has_rps: no
[ 3.064952] i915 device info: has_runtime_pm: no
[ 3.065041] i915 device info: has_snoop: yes
[ 3.065132] i915 device info: has_coherent_ggtt: yes
[ 3.065232] i915 device info: unfenced_needs_alignment: yes
[ 3.065335] i915 device info: hws_needs_physical: yes
[ 3.065381] i915 device info: cursor_needs_physical: yes
[ 3.065556] i915 device info: has_csr: no
[ 3.065556] i915 device info: has_ddi: no
[ 3.065683] i915 device info: has_dp_mst: no
[ 3.065766] i915 device info: has_dsb: no
[ 3.065850] i915 device info: has_dsc: no
[ 3.065932] i915 device info: has_fbc: no
[ 3.066013] i915 device info: has_gmch: yes
[ 3.066102] i915 device info: has_hdcp: no
[ 3.066187] i915 device info: has_hotplug: no
[ 3.066270] i915 device info: has_ipc: no
[ 3.066357] i915 device info: has_modular_fia: no
[ 3.066439] i915 device info: has_overlay: yes
[ 3.066533] i915 device info: has_psr: no
[ 3.066619] i915 device info: overlay_needs_physical: yes
[ 3.066700] i915 device info: supports_tv: yes
[ 3.066800] i915 device info: slice total: 0, mask=0000
[ 3.066887] i915 device info: subslice total: 0
[ 3.066990] i915 device info: EU total: 0
[ 3.067079] i915 device info: EU per subslice: 0
[ 3.067161] i915 device info: has slice power gating: no
[ 3.067251] i915 device info: has subslice power gating: no
[ 3.067409] i915 device info: has EU power gating: no
[ 3.067507] i915 device info: CS timestamp frequency: 0 kHz
[ 3.067612] [drm] DRM_I915_DEBUG enabled
[ 3.067686] [drm] DRM_I915_DEBUG_GEM enabled
[ 3.067842] intelfb0: framebuffer at 0xa0009000, size 1280x800,
depth 32, stride 5120
[ 3.070655] {drm:netbsd:i9xx_disable_backlight+0x29} set backlight
PWM = 0
[ 3.535090] acpibat0: workqueue busy: updates stopped
[ 3.662801] {drm:netbsd:i9xx_enable_backlight+0xf6} set backlight
PWM = 3984375
[ 3.677304] max_dotclock according to supported modes: 71000
[ 3.768451] wsdisplay0 at intelfb0 kbdmux 1: console (default, vt100
emulation), using wskbd0
[ 3.771183] wsmux1: connecting to wsdisplay0
[ 3.773549] wskbd1: connecting to wsdisplay0
[ 3.807740] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.814507] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.822858] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.839294] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.845095] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 4.737140] WARNING: consolidating less than full entropy
[ 4.737248] entropy: best effort
netbsd-nuc# cat dmesg.1704712519.txt
[ 1.000000] rbus: rbus_min_start set to 0x80000000
[ 1.000000] Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002,
2003,
[ 1.000000] 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
2012, 2013,
[ 1.000000] 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021,
2022, 2023,
[ 1.000000] 2024
[ 1.000000] The NetBSD Foundation, Inc. All rights reserved.
[ 1.000000] Copyright (c) 1982, 1986, 1989, 1991, 1993
[ 1.000000] The Regents of the University of California. All
rights reserved.
[ 1.000000] NetBSD 10.0_RC2 (GENERIC) #0: Mon Jan 1 14:04:52 UTC 2024
[ 1.000000]
mkrepro%mkrepro.NetBSD.org@localhost:/usr/src/sys/arch/i386/compile/GENERIC
[ 1.000000] total memory = 2039 MB
[ 1.000000] avail memory = 1978 MB
[ 1.000000] entropy: no seed from bootloader
[ 1.000000] timecounter: Timecounters tick every 10.000 msec
[ 1.000000] Kernelized RAIDframe activated
[ 1.000000] timecounter: Timecounter "i8254" frequency 1193182 Hz
quality 100
[ 1.000004] efi: missing or invalid systbl
[ 1.000004] BIOS32 rev. 0 found at 0xea510
[ 1.000004] SMBIOS rev. 2.3 @ 0xeb160 (25 entries)
[ 1.000004] mainbus0 (root)
[ 1.000004] ACPI: RSDP 0x00000000000E5010 000014 (v00 INSYDE)
[ 1.000004] ACPI: RSDT 0x000000007F7FB2BB 000034 (v01 INSYDE
RSDT_000 00000100 ABCD 00010200)
[ 1.000004] ACPI: FACP 0x000000007F7FFB00 000074 (v01 INSYDE
FACP_000 00000100 0000 00010200)
[ 1.000004] ACPI: DSDT 0x000000007F7FB920 0041DE (v01 COMPAL DL7x
00000001 INTL 02002036)
[ 1.000004] ACPI: FACS 0x000000007F7FFFC0 000040
[ 1.000004] ACPI: APIC 0x000000007F7FFB90 000068 (v01 STUPID
MAPIC_00 30307830 ABCD 00010200)
[ 1.000004] ACPI: SSDT 0x000000007F7FB4C7 000277 (v01 PmRef Cpu0Ist
00003000 INTL 20030522)
[ 1.000004] ACPI: SSDT 0x000000007F7FB2EF 0001D8 (v01 PmRef Cpu0Cst
00003001 INTL 20030522)
[ 1.000004] ACPI: 3 ACPI AML tables successfully acquired and loaded
[ 1.000004] ioapic0 at mainbus0 apid 1: pa 0xfec00000, version 0x20,
24 pins
[ 1.000004] ioapic0: apid is misconfigured (0 != 1)
[ 1.000004] ioapic0: remapped to apic 1
[ 1.000004] cpu0 at mainbus0 apid 0
[ 1.000004] cpu0: 64 page colors
[ 1.000004] cpu0: Use lfence to serialize rdtsc
[ 1.000004] cpu0: TSC freq from delay 156709870 Hz
[ 1.000004] cpu0: [re]calibrating local timer
[ 1.000004] cpu0: apic clock running at 584 kHz
[ 1.000004] cpu0: Intel(R) Pentium(R) M processor 1.86GHz, id 0x6d8
[ 1.000004] cpu0: node 0, package 0, core 0, smt 0
[ 1.000004] acpi0 at mainbus0: Intel ACPICA 20221020
[ 1.000004] acpi0: X/RSDT: OemId <INSYDE,RSDT_000,00000100>, AslId
<ABCD,00010200>
[ 1.000004] allocated pic ioapic0 type level pin 9 level 6 to cpu0
slot 0 idt entry 96
[ 1.000004] acpi0: SCI interrupting at int 9
[ 1.000004] acpi0: fixed power button present
[ 1.000004] timecounter: Timecounter "ACPI-Fast" frequency 3579545
Hz quality 1000
[ 1.027821] acpi0: ACPI-Fast 24-bit timer
[ 1.027821] acpiec0 at acpi0 (EC0, PNP0C09): io 0x62,0x66
[ 1.027821] acpilid0 at acpi0 (LID0, PNP0C0D): ACPI Lid Switch
[ 1.027821] acpibut0 at acpi0 (PWRB, PNP0C0C): ACPI Power Button
[ 1.027821] acpibut1 at acpi0 (SLPB, PNP0C0E): ACPI Sleep Button
[ 1.027821] acpivga0 at acpi0 (GFX0): ACPI Display Adapter
[ 1.027821] acpivga0: capabilities: _DOS _DOD
[ 1.027821] acpiout0 at acpivga0 (LCD, 0x0400): ACPI Display Output
Device
[ 1.027821] acpiout0: capabilities: _DCS _DGS _DSS
[ 1.027821] acpiout1 at acpivga0 (CRT1, 0x0100): ACPI Display Output
Device
[ 1.027821] acpiout1: capabilities: _DCS _DGS _DSS
[ 1.027821] acpiout2 at acpivga0 (DTV1, 0x0200): ACPI Display Output
Device
[ 1.027821] acpiout2: capabilities: _DCS _DGS _DSS
[ 1.027821] acpivga0: connected output devices:
[ 1.027821] acpivga0: 0x0100 (acpiout1): Ext. Monitor, head 0,
bios detect
[ 1.027821] acpivga0: 0x0400 (acpiout0): Unknown Output Device,
head 0, bios detect
[ 1.027821] acpivga0: 0x0200 (acpiout2): TV, head 0, bios detect
[ 1.027821] FWHD (INT0800) at acpi0 not configured
[ 1.027821] MATH (PNP0C04) at acpi0 not configured
[ 1.027821] attimer1 at acpi0 (TIMR, PNP0100): io
0x40-0x43,0x50-0x53 irq 0
[ 1.027821] acpiacad0 at acpi0 (ACAD, ACPI0003): ACPI AC Adapter
[ 1.027821] acpibat0 at acpi0 (BAT1, PNP0C0A-1): ACPI Battery
[ 1.027821] pckbc1 at acpi0 (PS2K, PNP0303) (kbd port): io 0x60,0x64
irq 1
[ 1.027821] pckbc2 at acpi0 (PS2M, PNP0F13) (aux port): irq 12
[ 1.027821] apm0 at acpi0: Power Management spec V1.2
[ 1.027821] ACPI: Enabled 4 GPEs in block 00 to 1F
[ 1.027821] pckbdprobe: reset error 5
[ 1.027821] pckbd0 at pckbc1 (kbd slot)
[ 1.027821] allocated pic ioapic0 type edge pin 1 level 6 to cpu0
slot 1 idt entry 97
[ 1.027821] pckbc1: using irq 1 for kbd slot
[ 1.027821] wskbd0 at pckbd0: console keyboard
[ 1.027821] autoconfiguration error: pckbc: aux echo error 1
[ 1.027821] autoconfiguration error: pckbc: cmd word write error
[ 1.027821] pci0 at mainbus0 bus 0: configuration mode 1
[ 1.027821] pci0: i/o space, memory space enabled, rd/line, rd/mult,
wr/inv ok
[ 1.027821] pchb0 at pci0 dev 0 function 0: Intel
82915PM/GM/GMS,82910GML Host Bridge (rev. 0x04)
[ 1.027821] agp0 at pchb0: i915-family chipset
[ 1.027821] agp0: detected 7932k stolen memory
[ 1.027821] agp0: aperture at 0xa0000000, size 0x10000000
[ 1.027821] i915drmkms0 at pci0 dev 2 function 0: Intel
82915GM/GMS,82910GML Integrated Graphics Device (rev. 0x04)
[ 1.027821] pci_mem_find: void region
[ 1.027821] pci_mem_find: void region
[ 1.027821] i915drmkms0: WARNING: power management not supported
[ 1.027821] Intel 82915GM/GMS IGD Companion (miscellaneous display,
revision 0x04) at pci0 dev 2 function 1 not configured
[ 1.027821] uhci0 at pci0 dev 29 function 0: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.027821] allocated pic ioapic0 type level pin 23 level 6 to cpu0
slot 2 idt entry 98
[ 1.027821] uhci0: interrupting at ioapic0 pin 23
[ 1.027821] usb0 at uhci0: USB revision 1.0
[ 1.027821] uhci1 at pci0 dev 29 function 1: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.027821] allocated pic ioapic0 type level pin 19 level 6 to cpu0
slot 3 idt entry 99
[ 1.027821] uhci1: interrupting at ioapic0 pin 19
[ 1.027821] usb1 at uhci1: USB revision 1.0
[ 1.027821] uhci2 at pci0 dev 29 function 2: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.027821] allocated pic ioapic0 type level pin 18 level 6 to cpu0
slot 4 idt entry 100
[ 1.027821] uhci2: interrupting at ioapic0 pin 18
[ 1.027821] usb2 at uhci2: USB revision 1.0
[ 1.027821] uhci3 at pci0 dev 29 function 3: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.027821] allocated pic ioapic0 type level pin 16 level 6 to cpu0
slot 5 idt entry 101
[ 1.027821] uhci3: interrupting at ioapic0 pin 16
[ 1.027821] usb3 at uhci3: USB revision 1.0
[ 1.027821] ehci0 at pci0 dev 29 function 7: Intel 82801FB/FR USB
EHCI Controller (rev. 0x04)
[ 1.027821] ehci0: 64-bit DMA - limited
[ 1.027821] allocated pic ioapic0 type level pin 23 level 6 to cpu0
slot 2 idt entry 98
[ 1.027821] ehci0: interrupting at ioapic0 pin 23
[ 1.027821] ehci0: EHCI version 0.0
[ 1.027821] ehci0: wrong number of companions (0 != 4)
[ 1.027821] ehci0: Using DMA subregion for control data structures
[ 1.027821] ehci0: autoconfiguration error: reset timeout
[ 1.027821] ehci0: autoconfiguration error: init failed, error=5
[ 1.027821] ehci0: WARNING: power management not supported
[ 1.027821] ppb0 at pci0 dev 30 function 0: Intel 82801BAM Hub-PCI
Bridge (rev. 0xd4)
[ 1.027821] pci1 at ppb0 bus 1
[ 1.027821] pci1: i/o space, memory space enabled
[ 1.027821] fwohci0 at pci1 dev 0 function 0: VIA Technologies
VT6306 IEEE 1394 Host Controller (rev. 0x80)
[ 1.027821] allocated pic ioapic0 type level pin 20 level 6 to cpu0
slot 6 idt entry 102
[ 1.027821] fwohci0: interrupting at ioapic0 pin 20
[ 1.027821] fwohci0: OHCI version 1.0 (ROM=1)
[ 1.027821] fwohci0: No. of Isochronous channels is 4.
[ 1.027821] fwohci0: EUI64 00:02:3f:59:88:40:01:0f
[ 1.027821] fwohci0: Phy 1394a available S400, 2 ports.
[ 1.027821] fwohci0: Link S400, max_rec 512 bytes.
[ 1.027821] fwohci0: max_rec 512 -> 2048
[ 1.027821] ieee1394if0 at fwohci0: IEEE1394 bus
[ 1.027821] fwip0 at ieee1394if0: IP over IEEE1394
[ 1.027821] fwohci0: Initiate bus reset
[ 1.027821] re0 at pci1 dev 1 function 0: RealTek 8169/8110 Gigabit
Ethernet (rev. 0x10)
[ 1.027821] allocated pic ioapic0 type level pin 21 level 6 to cpu0
slot 7 idt entry 103
[ 1.027821] re0: interrupting at ioapic0 pin 21
[ 1.027821] re0: RTL8169/8110SB (0x1000)
[ 1.027821] re0: Ethernet address 00:0f:b0:93:6f:e1
[ 1.027821] re0: using 256 tx descriptors
[ 1.027821] rgephy0 at re0 phy 7: RTL8211B 1000BASE-T media interface
[ 1.027821] rgephy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX,
1000baseT, 1000baseT-FDX, auto
[ 1.027821] iwi0 at pci1 dev 2 function 0: Intel PRO/Wireless LAN
2200BG Mini-PCI Adapter (rev. 0x05)
[ 1.027821] allocated pic ioapic0 type level pin 22 level 6 to cpu0
slot 8 idt entry 104
[ 1.027821] iwi0: interrupting at ioapic0 pin 22
[ 1.027821] iwi0: 802.11 address 00:13:ce:6b:7d:01
[ 1.027821] iwi0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
[ 1.027821] iwi0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps
12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
[ 1.027821] cbb0 at pci1 dev 4 function 0: ENE Technology CB710
CardBus Controller (rev. 0x00)
[ 1.027821] ENE Technology product 0530 (flash memory) at pci1 dev 4
function 1 not configured
[ 1.027821] sdhc0 at pci1 dev 4 function 2: ENE Technology
CB712/714/810 PCI SD Card Reader Controller (rev. 0x00)
[ 1.027821] allocated pic ioapic0 type level pin 17 level 6 to cpu0
slot 9 idt entry 105
[ 1.027821] sdhc0: interrupting at ioapic0 pin 17
[ 1.027821] sdhc0: SDHC 1.0, rev 0, caps <01e021a1/00000000>, SDMA,
33000 kHz, HS 3.3V, 512 byte blocks
[ 1.027821] sdmmc0 at sdhc0 slot 0
[ 1.027821] sdhc0: Clear PME# now
[ 1.027821] cbb0: osock_ctrl 0 sock_ctrl 0
[ 1.027821] cbb0: wait took 0.000180s
[ 1.027821] cbb0: cacheline 0x8 lattimer 0x40
[ 1.027821] cbb0: bhlc 0x824008
[ 1.027821] cbb0: autoconfiguration error: secondary bus number
uninitialized; try PCI_BUS_FIXUP
[ 1.027821] allocated pic ioapic0 type level pin 16 level 6 to cpu0
slot 5 idt entry 101
[ 1.027821] cbb0: interrupting at ioapic0 pin 16
[ 1.027821] cardslot0 at cbb0
[ 1.027821] pcmcia0 at cardslot0
[ 1.027821] auich0 at pci0 dev 30 function 2: i82801FB (ICH6) AC-97
Audio
[ 1.027821] allocated pic ioapic0 type level pin 17 level 7 to cpu0
slot 9 idt entry 105
[ 1.027821] auich0: interrupting at ioapic0 pin 17
[ 1.027821] auich0: ac97: Avance Logic unknown (0x414c4752) codec;
headphone, 20 bit DAC, 18 bit ADC, no 3D stereo
[ 1.027821] auich0: ac97: ext id 0xa07<AC97_23,AMAP,SPDIF,DRA,VRA>
[ 1.027821] Intel 82801FB/FR AC'97 Modem Controller (modem
communications, revision 0x04) at pci0 dev 30 function 3 not configured
[ 1.027821] ichlpcib0 at pci0 dev 31 function 0: Intel 82801FBM
ICH6M LPC Interface Bridge (rev. 0x04)
[ 1.027821] timecounter: Timecounter "ichlpcib0" frequency 3579545
Hz quality 1000
[ 1.027821] ichlpcib0: 24-bit timer
[ 1.027821] tco0 at ichlpcib0: TCO (watchdog) timer configured.
[ 1.027821] tco0: SMI_EN=0x00002033
[ 1.027821] tco0: SMI_EN:=0x00000033
[ 1.027821] tco0: SMI_EN=0x00000033
[ 1.027821] tco0: Min/Max interval 1/367 seconds
[ 1.027821] piixide0 at pci0 dev 31 function 1: Intel 82801FB IDE
Controller (ICH6) (rev. 0x04)
[ 1.027821] piixide0: bus-master DMA support present
[ 1.027821] piixide0: primary channel configured to compatibility mode
[ 1.027821] allocated pic ioapic0 type edge pin 14 level 6 to cpu0
slot 10 idt entry 106
[ 1.027821] piixide0: primary channel interrupting at ioapic0 pin 14
[ 1.027821] atabus0 at piixide0 channel 0
[ 1.027821] piixide0: secondary channel configured to compatibility mode
[ 1.027821] allocated pic ioapic0 type edge pin 15 level 6 to cpu0
slot 11 idt entry 107
[ 1.027821] piixide0: secondary channel interrupting at ioapic0 pin 15
[ 1.027821] atabus1 at piixide0 channel 1
[ 1.027821] ichsmb0 at pci0 dev 31 function 3: Intel 82801FB/FR
SMBus Controller (rev. 0x04)
[ 1.027821] allocated pic ioapic0 type level pin 19 level 6 to cpu0
slot 3 idt entry 99
[ 1.027821] ichsmb0: interrupting at ioapic0 pin 19
[ 1.027821] iic0 at ichsmb0: I2C bus
[ 1.027821] isa0 at ichlpcib0
[ 1.027821] pcppi0 at isa0 port 0x61
[ 1.027821] midi0 at pcppi0: PC speaker
[ 1.027821] sysbeep0 at pcppi0
[ 1.027821] attimer1: attached to pcppi0
[ 1.027821] acpicpu0 at cpu0: ACPI CPU
[ 1.027821] acpicpu0: C1: HLT, lat 0 us, pow 0 mW
[ 1.027821] acpicpu0: C2: I/O, lat 1 us, pow 0 mW
[ 1.027821] acpicpu0: C3: I/O, lat 85 us, pow 0 mW
[ 1.027821] acpicpu0: P0: I/O, lat 110 us, pow 27000 mW, 1867 MHz
[ 1.027821] acpicpu0: P1: I/O, lat 110 us, pow 23000 mW, 1600 MHz
[ 1.027821] acpicpu0: P2: I/O, lat 110 us, pow 20000 mW, 1333 MHz
[ 1.027821] acpicpu0: P3: I/O, lat 110 us, pow 17000 mW, 1067 MHz
[ 1.027821] acpicpu0: P4: I/O, lat 110 us, pow 13000 mW, 800 MHz
[ 1.027821] acpicpu0: T0: I/O, lat 1 us, pow 0 mW, 100 %
[ 1.027821] acpicpu0: T1: I/O, lat 1 us, pow 0 mW, 88 %
[ 1.027821] acpicpu0: T2: I/O, lat 1 us, pow 0 mW, 76 %
[ 1.027821] acpicpu0: T3: I/O, lat 1 us, pow 0 mW, 64 %
[ 1.027821] acpicpu0: T4: I/O, lat 1 us, pow 0 mW, 52 %
[ 1.027821] acpicpu0: T5: I/O, lat 1 us, pow 0 mW, 40 %
[ 1.027821] acpicpu0: T6: I/O, lat 1 us, pow 0 mW, 28 %
[ 1.027821] acpicpu0: T7: I/O, lat 1 us, pow 0 mW, 16 %
[ 1.027821] acpicpu0: id 0, lapic id 0, cap 0x00fd, flags 0x00182ea7
[ 1.027821] SRAT: 0 NUMA nodes
[ 1.027821] fwohci0: BUS reset
[ 1.027821] fwohci0: node_id=0xc000ffc0, gen=1, CYCLEMASTER mode
[ 1.027821] ieee1394if0: 1 nodes, maxhop <= 0 cable IRM irm(0) (me)
[ 1.027821] ieee1394if0: bus manager 0
[ 1.027821] Initializing SSP: WARNING: system needs entropy for
security; see entropy(7)
[ 1.027821] 60886c86 6af9888c e5eb1fba 920b2da3 557396a 2e916378
ca7e6bd6 bc724c8a
[ 1.027821] cpu0: TSC freq from delay 16347060 Hz
[ 1.027821] cpu0: [re]calibrating local timer
[ 1.027821] cpu0: apic clock running at 1168 kHz
[ 1.027821] timecounter: Timecounter "lapic" frequency 1168000 Hz
quality -100
[ 1.027821] timecounter: Timecounter "clockinterrupt" frequency 100
Hz quality 0
[ 1.599643] UVM: using package allocation scheme, 1 package(s) per
bucket
[ 1.600710] TSC not known invariant on this CPU
[ 1.600829] timecounter: Timecounter "TSC" frequency 16347060 Hz
quality -100
[ 1.935903] auich0: measured ac97 link rate at 48001 Hz, will use
48000 Hz
[ 1.936254] audio0 at auich0: playback, capture, full duplex,
independent
[ 1.937221] audio0: slinear_le:16 2ch 48000Hz, blk 1920 bytes (10ms)
for playback
[ 1.937371] audio0: slinear_le:16 2ch 48000Hz, blk 1920 bytes (10ms)
for recording
[ 1.937748] acpicpu0: ACPI CPUs started
[ 1.938011] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.938451] uhub0 at usb0: NetBSD (0x0000) UHCI root hub (0x0000),
class 9/0, rev 1.00/1.00, addr 1
[ 1.938714] uhub0: 2 ports with 2 removable, self powered
[ 1.938978] uhub1 at usb1: NetBSD (0x0000) UHCI root hub (0x0000),
class 9/0, rev 1.00/1.00, addr 1
[ 1.939210] uhub1: 2 ports with 2 removable, self powered
[ 1.939505] uhub2 at usb2: NetBSD (0x0000) UHCI root hub (0x0000),
class 9/0, rev 1.00/1.00, addr 1
[ 1.939724] uhub2: 2 ports with 2 removable, self powered
[ 1.940031] uhub3 at usb3: NetBSD (0x0000) UHCI root hub (0x0000),
class 9/0, rev 1.00/1.00, addr 1
[ 1.940233] uhub3: 2 ports with 2 removable, self powered
[ 1.940996] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.941260] acpiacad0: AC adapter online.
[ 1.941349] acpiacad0: AC adapter connected
[ 1.942138] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.942665] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.943192] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.943632] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.944158] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.944598] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.945564] atapibus0 at atabus0: 2 targets
[ 1.946178] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.946793] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.947320] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.948198] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.948637] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.949254] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.949691] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.950657] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.951096] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.951447] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.951801] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.952150] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.952590] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.952940] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.953379] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.953818] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.954170] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.954521] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.954873] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.955223] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.955662] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.956014] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.956366] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.956717] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.957156] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.957506] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.957858] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.958209] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.958561] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.959000] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.959351] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.959703] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.960054] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.960493] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.960845] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.961195] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.961547] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.961986] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.962338] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.962688] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.963127] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.963479] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.964884] IPsec: Initialized Security Association Processing.
[ 1.969977] aes: Intel SSE2 bitsliced
[ 1.970154] chacha: x86 SSE2 ChaCha
[ 1.971031] adiantum: self-test passed
[ 1.972788] aes_ccm: self-test passed
[ 1.973402] blake2s: self-test passed
[ 1.983062] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0
[ 1.992021] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0
[ 2.000977] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0
[ 2.005810] uhidev0 at uhub2 port 1 configuration 1 interface 0
[ 2.005983] uhidev0: vendor 1997 (0x1997) mini keyboard (0x2433),
rev 1.10/1.10, addr 2, iclass 3/1
[ 2.009935] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0 uhidev0
[ 2.017840] ukbd0 at uhidev0
[ 2.018015] wskbd1 at ukbd0 mux 1
[ 2.018366] uhidev1 at uhub2 port 1 configuration 1 interface 1
[ 2.018542] uhidev1: vendor 1997 (0x1997) mini keyboard (0x2433),
rev 1.10/1.10, addr 2, iclass 3/1
[ 2.018727] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0 uhidev1
[ 2.027499] umass0 at uhub0 port 1 configuration 1 interface 0
[ 2.027675] umass0: UFD 2.0 (0x13fe) Silicon-Power4G (0x3d00), rev
2.00/1.00, addr 2
[ 2.029305] umass0: using SCSI over Bulk-Only
[ 2.029433] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0 uhidev1 umass0
[ 2.033998] scsibus0 at umass0: 2 targets, 1 lun per target
[ 2.034261] waiting for devices: usb2 atabus0 atabus1 uhub2
atapibus0 uhidev1 scsibus0
[ 2.034963] cd0 at atapibus0 drive 1: <TSSTcorpCD/DVDW TS-L632B,
95WK401090, TI33> cdrom removable
[ 2.035228] waiting for devices: usb2 atabus0 atabus1 uhub2
atapibus0 uhidev1 scsibus0
[ 2.039882] uhidev1: 3 report ids
[ 2.040145] ums0 at uhidev1 reportid 1: 5 buttons and Z dir
[ 2.040408] wsmouse0 at ums0 mux 0
[ 2.040762] uhid0 at uhidev1 reportid 2: input=1, output=0, feature=0
[ 2.041112] uhid1 at uhidev1 reportid 3: input=2, output=0, feature=0
[ 2.041374] waiting for devices: atabus0 atabus1 atapibus0 scsibus0
[ 2.045502] cd0: 32-bit data port
[ 2.045941] cd0: drive supports PIO mode 4, DMA mode 2, Ultra-DMA
mode 2 (Ultra/33)
[ 2.046908] wd0 at atabus0 drive 0
[ 2.047083] waiting for devices: atabus0 atabus1 scsibus0 wd0
[ 2.048312] wd0: <IC25N080ATMR04-0>
[ 2.048422] wd0: drive supports 16-sector PIO transfers, LBA48
addressing
[ 2.048498] wd0: 76319 MB, 155061 cyl, 16 head, 63 sec, 512
bytes/sect x 156301488 sectors
[ 2.051562] sd0 at scsibus0 target 0 lun 0: <UFD 2.0,
Silicon-Power4G, PMAP> disk removable
[ 2.056041] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.064998] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.066493] sd0: 3696 MB, 927 cyl, 255 head, 32 sec, 512 bytes/sect
x 7570752 sectors
[ 2.073955] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.082913] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.091870] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.100829] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.109786] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.118743] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.127702] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.136659] waiting for devices: atabus0 atabus1 scsibus0 wd0 sd0
[ 2.137452] waiting for devices: atabus0 atabus1 scsibus0 wd0
[ 2.140084] piixide0:0:0: recal timed out
[ 2.140173] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 2.141402] waiting for devices: atabus0 atabus1 wd0
[ 2.150359] waiting for devices: atabus0 atabus1 wd0
[ 2.159228] waiting for devices: atabus0 atabus1 wd0
[ 2.168098] waiting for devices: atabus0 atabus1 wd0
[ 2.176968] waiting for devices: atabus0 atabus1 wd0
[ 2.185838] waiting for devices: atabus0 atabus1 wd0
[ 2.194707] waiting for devices: atabus0 atabus1 wd0
[ 2.203577] waiting for devices: atabus0 atabus1 wd0
[ 2.212447] waiting for devices: atabus0 atabus1 wd0
[ 2.221318] waiting for devices: atabus0 atabus1 wd0
[ 2.230187] waiting for devices: atabus0 atabus1 wd0
[ 2.239057] waiting for devices: atabus0 atabus1 wd0
[ 2.247926] waiting for devices: atabus0 atabus1 wd0
[ 2.256796] waiting for devices: atabus0 atabus1 wd0
[ 2.265666] waiting for devices: atabus0 atabus1 wd0
[ 2.274535] waiting for devices: atabus0 atabus1 wd0
[ 2.283405] waiting for devices: atabus0 atabus1 wd0
[ 2.292275] waiting for devices: atabus0 atabus1 wd0
[ 2.301144] waiting for devices: atabus0 atabus1 wd0
[ 2.310015] waiting for devices: atabus0 atabus1 wd0
[ 2.318884] waiting for devices: atabus0 atabus1 wd0
[ 2.327756] waiting for devices: atabus0 atabus1 wd0
[ 2.336624] waiting for devices: atabus0 atabus1 wd0
[ 2.345496] waiting for devices: atabus0 atabus1 wd0
[ 2.354365] waiting for devices: atabus0 atabus1 wd0
[ 2.363233] waiting for devices: atabus0 atabus1 wd0
[ 2.372103] waiting for devices: atabus0 atabus1 wd0
[ 2.380973] waiting for devices: atabus0 atabus1 wd0
[ 2.389842] waiting for devices: atabus0 atabus1 wd0
[ 2.398712] waiting for devices: atabus0 atabus1 wd0
[ 2.407582] waiting for devices: atabus0 atabus1 wd0
[ 2.416452] waiting for devices: atabus0 atabus1 wd0
[ 2.425322] waiting for devices: atabus0 atabus1 wd0
[ 2.434191] waiting for devices: atabus0 atabus1 wd0
[ 2.443062] waiting for devices: atabus0 atabus1 wd0
[ 2.452019] waiting for devices: atabus0 atabus1 wd0
[ 2.460889] waiting for devices: atabus0 atabus1 wd0
[ 2.469761] waiting for devices: atabus0 atabus1 wd0
[ 2.478628] waiting for devices: atabus0 atabus1 wd0
[ 2.487499] waiting for devices: atabus0 atabus1 wd0
[ 2.496367] waiting for devices: atabus0 atabus1 wd0
[ 2.505062] wd0: soft error (corrected) xfer f5c
[ 2.505238] waiting for devices: atabus0 atabus1 wd0
[ 2.514109] waiting for devices: atabus0 atabus1 wd0
[ 2.522977] waiting for devices: atabus0 atabus1 wd0
[ 2.531848] waiting for devices: atabus0 atabus1 wd0
[ 2.548621] waiting for devices: atabus0 atabus1 wd0
[ 2.549150] waiting for devices: atabus0 atabus1
[ 2.552221] wd0: 32-bit data port
[ 2.552573] wd0: drive supports PIO mode 4, DMA mode 2, Ultra-DMA
mode 5 (Ultra/100)
[ 2.553451] wd0(piixide0:0:0): using PIO mode 4, Ultra-DMA mode 5
(Ultra/100) (using DMA)
[ 2.553630] cd0(piixide0:0:1): using PIO mode 4, Ultra-DMA mode 2
(Ultra/33) (using DMA)
[ 2.554065] crypto: assign driver 0, flags 2
[ 2.554209] crypto: driver 0 registers alg 1 flags 0 maxoplen 0
[ 2.554309] crypto: driver 0 registers alg 2 flags 0 maxoplen 0
[ 2.554417] crypto: driver 0 registers alg 3 flags 0 maxoplen 0
[ 2.554513] crypto: driver 0 registers alg 4 flags 0 maxoplen 0
[ 2.554614] crypto: driver 0 registers alg 5 flags 0 maxoplen 0
[ 2.554715] crypto: driver 0 registers alg 26 flags 0 maxoplen 0
[ 2.554823] crypto: driver 0 registers alg 27 flags 0 maxoplen 0
[ 2.554925] crypto: driver 0 registers alg 29 flags 0 maxoplen 0
[ 2.555032] crypto: driver 0 registers alg 33 flags 0 maxoplen 0
[ 2.555133] crypto: driver 0 registers alg 17 flags 0 maxoplen 0
[ 2.555258] crypto: driver 0 registers alg 6 flags 0 maxoplen 0
[ 2.555359] crypto: driver 0 registers alg 19 flags 0 maxoplen 0
[ 2.555462] crypto: driver 0 registers alg 7 flags 0 maxoplen 0
[ 2.555562] crypto: driver 0 registers alg 20 flags 0 maxoplen 0
[ 2.555666] crypto: driver 0 registers alg 15 flags 0 maxoplen 0
[ 2.555774] crypto: driver 0 registers alg 24 flags 0 maxoplen 0
[ 2.555875] crypto: driver 0 registers alg 25 flags 0 maxoplen 0
[ 2.555977] crypto: driver 0 registers alg 8 flags 0 maxoplen 0
[ 2.556077] crypto: driver 0 registers alg 21 flags 0 maxoplen 0
[ 2.556179] crypto: driver 0 registers alg 16 flags 0 maxoplen 0
[ 2.556280] crypto: driver 0 registers alg 9 flags 0 maxoplen 0
[ 2.556381] crypto: driver 0 registers alg 10 flags 0 maxoplen 0
[ 2.556484] crypto: driver 0 registers alg 13 flags 0 maxoplen 0
[ 2.556586] crypto: driver 0 registers alg 14 flags 0 maxoplen 0
[ 2.556700] crypto: driver 0 registers alg 28 flags 0 maxoplen 0
[ 2.556798] crypto: driver 0 registers alg 30 flags 0 maxoplen 0
[ 2.556900] crypto: driver 0 registers alg 31 flags 0 maxoplen 0
[ 2.557002] crypto: driver 0 registers alg 32 flags 0 maxoplen 0
[ 2.557105] crypto: driver 0 registers alg 11 flags 0 maxoplen 0
[ 2.557207] crypto: driver 0 registers alg 18 flags 0 maxoplen 0
[ 2.557316] crypto: driver 0 registers alg 23 flags 0 maxoplen 0
[ 2.557419] crypto: driver 0 registers alg 22 flags 0 maxoplen 0
[ 2.557578] cgd: self-test aes-xts-256
[ 2.557666] cgd: self-test aes-xts-512
[ 2.557842] cgd: self-test aes-cbc-128
[ 2.558018] cgd: self-test aes-cbc-256
[ 2.558193] cgd: self-test 3des-cbc-192
[ 2.558282] cgd: self-test blowfish-cbc-448
[ 2.558544] cgd: self-test aes-cbc-128 (encblkno8)
[ 2.558808] cgd: self-tests passed
[ 2.559071] swwdog0: software watchdog initialized
[ 2.731461] Searching for RAID components...
[ 2.804439] WARNING: 55 errors while detecting hardware; check
system log.
[ 2.804579] boot device: sd0
[ 2.804641] root on sd0a dumps on sd0b
[ 2.890414] root file system type: ffs
[ 2.910437] kern.module.path=/stand/i386/10.0/modules
[ 2.910790] pci_mem_find: void region
[ 2.910922] i915drmkms0: map 4 failed
[ 2.910994] pci_mem_find: void region
[ 2.911109] i915drmkms0: map 5 failed
[ 2.912545] i915drmkms0 {drm:netbsd:intel_uc_init_early+0x8a}
enable_guc=0 (guc:no submission:no huc:no)
[ 2.913686] {drm:netbsd:i915_gem_init__contexts+0x80} fake context
support initialized
[ 2.915625] pci_mem_find: void region
[ 2.915706] pci_mem_find: void region
[ 2.915806] pci_mem_find: void region
[ 2.915972] pci_mem_find: void region
[ 2.916057] pci_mem_find: void region
[ 2.916156] pci_mem_find: void region
[ 2.916323] pci_mem_find: void region
[ 2.916466] pci_mem_find: void region
[ 2.916558] pci_mem_find: void region
[ 2.916672] pci_mem_find: void region
[ 2.916764] pci_mem_find: void region
[ 2.916849] pci_mem_find: void region
[ 2.917726] {drm:netbsd:i915_ggtt_probe_hw+0x3f3} GGTT size = 256M
[ 2.918604] {drm:netbsd:i915_ggtt_probe_hw+0x41c} GMADR size = 256M
[ 2.919485] {drm:netbsd:i915_ggtt_probe_hw+0x44d} DSM size = 0M
[ 2.925981] {drm:netbsd:intel_opregion_setup+0x4e} graphic opregion
physical addr: 0x0
[ 2.926950] {drm:netbsd:intel_opregion_setup+0x6a3} ACPI OpRegion
not supported!
[ 2.927123] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 2.927238] [drm] Driver supports precise vblank timestamp query.
[ 2.927341] pci_mem_find: void region
[ 2.927653] allocated pic ioapic0 type level pin 16 level 6 to cpu0
slot 5 idt entry 101
[ 2.927798] i915drmkms0: interrupting at ioapic0 pin 16 (i915drmkms0)
[ 2.930635] {drm:netbsd:intel_dump_cdclk_state+0x47} Current CDCLK
190000 kHz, VCO 0 kHz, ref 0 kHz, bypass 0 kHz, voltage level 0
[ 2.931514] {drm:netbsd:intel_update_max_cdclk+0x8c} Max CD clock
rate: 190000 kHz
[ 2.932483] {drm:netbsd:intel_update_max_cdclk+0xaa} Max dotclock
rate: 342000 kHz
[ 2.933446] {drm:netbsd:intel_lvds_init+0x399} LVDS PPS:t1+t2 450 t3
500 t4 3000 t5 2000 tx 2000 divider 9999 port 0 powerdown_on_reset 0
[ 2.967080] [drm] Initialized overlay support.
[ 2.967960] {drm:netbsd:intel_engines_driver_register+0x109} renamed
rcs'0 to rcs0
[ 2.968173] [drm] Initialized i915 1.6.0 20200114 for i915drmkms0 on
minor 0
[ 2.984996] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 2.987191] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 2.999398] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.004580] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.005633] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.006687] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.029785] intelfb0 at i915drmkms0
[ 3.029959] i915 device info: pciid=0x2592 rev=0x04 platform=I915GM
(subplatform=0x0) gen=3
[ 3.030184] i915 device info: engines: 1
[ 3.030229] i915 device info: gen: 3
[ 3.030311] i915 device info: gt: 0
[ 3.030417] i915 device info: iommu: n/a
[ 3.030499] i915 device info: memory-regions: 5
[ 3.030589] i915 device info: page-sizes: 1000
[ 3.030663] i915 device info: platform: I915GM
[ 3.030753] i915 device info: ppgtt-size: 0
[ 3.030839] i915 device info: ppgtt-type: 0
[ 3.030928] i915 device info: is_mobile: yes
[ 3.031014] i915 device info: is_lp: no
[ 3.031101] i915 device info: require_force_probe: no
[ 3.031230] i915 device info: is_dgfx: no
[ 3.031277] i915 device info: has_64bit_reloc: no
[ 3.031403] i915 device info: gpu_reset_clobbers_display: yes
[ 3.031453] i915 device info: has_reset_engine: no
[ 3.031555] i915 device info: has_fpga_dbg: no
[ 3.031652] i915 device info: has_global_mocs: no
[ 3.031738] i915 device info: has_gt_uc: no
[ 3.031835] i915 device info: has_l3_dpf: no
[ 3.031921] i915 device info: has_llc: no
[ 3.032009] i915 device info: has_logical_ring_contexts: no
[ 3.032091] i915 device info: has_logical_ring_elsq: no
[ 3.032247] i915 device info: has_logical_ring_preemption: no
[ 3.032353] i915 device info: has_pooled_eu: no
[ 3.032443] i915 device info: has_rc6: no
[ 3.032528] i915 device info: has_rc6p: no
[ 3.032612] i915 device info: has_rps: no
[ 3.032701] i915 device info: has_runtime_pm: no
[ 3.032790] i915 device info: has_snoop: yes
[ 3.032862] i915 device info: has_coherent_ggtt: yes
[ 3.032947] i915 device info: unfenced_needs_alignment: yes
[ 3.033042] i915 device info: hws_needs_physical: yes
[ 3.033145] i915 device info: cursor_needs_physical: yes
[ 3.033298] i915 device info: has_csr: no
[ 3.033385] i915 device info: has_ddi: no
[ 3.033472] i915 device info: has_dp_mst: no
[ 3.033560] i915 device info: has_dsb: no
[ 3.033560] i915 device info: has_dsc: no
[ 3.033683] i915 device info: has_fbc: no
[ 3.033764] i915 device info: has_gmch: yes
[ 3.033845] i915 device info: has_hdcp: no
[ 3.033928] i915 device info: has_hotplug: no
[ 3.034011] i915 device info: has_ipc: no
[ 3.034098] i915 device info: has_modular_fia: no
[ 3.034181] i915 device info: has_overlay: yes
[ 3.034272] i915 device info: has_psr: no
[ 3.034361] i915 device info: overlay_needs_physical: yes
[ 3.034448] i915 device info: supports_tv: yes
[ 3.034550] i915 device info: slice total: 0, mask=0000
[ 3.034637] i915 device info: subslice total: 0
[ 3.034736] i915 device info: EU total: 0
[ 3.034824] i915 device info: EU per subslice: 0
[ 3.034906] i915 device info: has slice power gating: no
[ 3.035075] i915 device info: has subslice power gating: no
[ 3.035178] i915 device info: has EU power gating: no
[ 3.035228] i915 device info: CS timestamp frequency: 0 kHz
[ 3.035333] [drm] DRM_I915_DEBUG enabled
[ 3.035464] [drm] DRM_I915_DEBUG_GEM enabled
[ 3.035580] intelfb0: framebuffer at 0xa0009000, size 1280x800,
depth 32, stride 5120
[ 3.038742] {drm:netbsd:i9xx_disable_backlight+0x29} set backlight
PWM = 0
[ 3.272780] acpibat0: workqueue busy: updates stopped
[ 3.576900] {drm:netbsd:i9xx_enable_backlight+0xf6} set backlight
PWM = 3984375
[ 3.594112] max_dotclock according to supported modes: 71000
[ 3.683951] wsdisplay0 at intelfb0 kbdmux 1: console (default, vt100
emulation), using wskbd0
[ 3.686706] wsmux1: connecting to wsdisplay0
[ 3.689069] wskbd1: connecting to wsdisplay0
[ 3.723294] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.730057] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.738312] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.759741] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.766502] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 4.657610] WARNING: consolidating less than full entropy
[ 4.657794] entropy: best effort
netbsd-nuc#
netbsd-nuc# cat dmesg.1704712778.txt
[ 1.000000] rbus: rbus_min_start set to 0x80000000
[ 1.000000] Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002,
2003,
[ 1.000000] 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
2012, 2013,
[ 1.000000] 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021,
2022, 2023,
[ 1.000000] 2024
[ 1.000000] The NetBSD Foundation, Inc. All rights reserved.
[ 1.000000] Copyright (c) 1982, 1986, 1989, 1991, 1993
[ 1.000000] The Regents of the University of California. All
rights reserved.
[ 1.000000] NetBSD 10.0_RC2 (GENERIC) #0: Mon Jan 1 14:04:52 UTC 2024
[ 1.000000]
mkrepro%mkrepro.NetBSD.org@localhost:/usr/src/sys/arch/i386/compile/GENERIC
[ 1.000000] total memory = 2039 MB
[ 1.000000] avail memory = 1978 MB
[ 1.000000] entropy: no seed from bootloader
[ 1.000000] timecounter: Timecounters tick every 10.000 msec
[ 1.000000] Kernelized RAIDframe activated
[ 1.000000] timecounter: Timecounter "i8254" frequency 1193182 Hz
quality 100
[ 1.000004] efi: missing or invalid systbl
[ 1.000004] BIOS32 rev. 0 found at 0xea510
[ 1.000004] SMBIOS rev. 2.3 @ 0xeb160 (25 entries)
[ 1.000004] mainbus0 (root)
[ 1.000004] ACPI: RSDP 0x00000000000E5010 000014 (v00 INSYDE)
[ 1.000004] ACPI: RSDT 0x000000007F7FB2BB 000034 (v01 INSYDE
RSDT_000 00000100 ABCD 00010200)
[ 1.000004] ACPI: FACP 0x000000007F7FFB00 000074 (v01 INSYDE
FACP_000 00000100 0000 00010200)
[ 1.000004] ACPI: DSDT 0x000000007F7FB920 0041DE (v01 COMPAL DL7x
00000001 INTL 02002036)
[ 1.000004] ACPI: FACS 0x000000007F7FFFC0 000040
[ 1.000004] ACPI: APIC 0x000000007F7FFB90 000068 (v01 STUPID
MAPIC_00 30307830 ABCD 00010200)
[ 1.000004] ACPI: SSDT 0x000000007F7FB4C7 000277 (v01 PmRef Cpu0Ist
00003000 INTL 20030522)
[ 1.000004] ACPI: SSDT 0x000000007F7FB2EF 0001D8 (v01 PmRef Cpu0Cst
00003001 INTL 20030522)
[ 1.000004] ACPI: 3 ACPI AML tables successfully acquired and loaded
[ 1.000004] ioapic0 at mainbus0 apid 1: pa 0xfec00000, version 0x20,
24 pins
[ 1.000004] ioapic0: apid is misconfigured (0 != 1)
[ 1.000004] ioapic0: remapped to apic 1
[ 1.000004] cpu0 at mainbus0 apid 0
[ 1.000004] cpu0: 64 page colors
[ 1.000004] cpu0: Use lfence to serialize rdtsc
[ 1.000004] cpu0: TSC freq from delay 110650190 Hz
[ 1.000004] cpu0: [re]calibrating local timer
[ 1.000004] cpu0: apic clock running at 576 kHz
[ 1.000004] cpu0: Intel(R) Pentium(R) M processor 1.86GHz, id 0x6d8
[ 1.000004] cpu0: node 0, package 0, core 0, smt 0
[ 1.000004] acpi0 at mainbus0: Intel ACPICA 20221020
[ 1.000004] acpi0: X/RSDT: OemId <INSYDE,RSDT_000,00000100>, AslId
<ABCD,00010200>
[ 1.000004] allocated pic ioapic0 type level pin 9 level 6 to cpu0
slot 0 idt entry 96
[ 1.000004] acpi0: SCI interrupting at int 9
[ 1.000004] acpi0: fixed power button present
[ 1.000004] timecounter: Timecounter "ACPI-Fast" frequency 3579545
Hz quality 1000
[ 1.028086] acpi0: ACPI-Fast 24-bit timer
[ 1.028086] acpiec0 at acpi0 (EC0, PNP0C09): io 0x62,0x66
[ 1.028086] acpilid0 at acpi0 (LID0, PNP0C0D): ACPI Lid Switch
[ 1.028086] acpibut0 at acpi0 (PWRB, PNP0C0C): ACPI Power Button
[ 1.028086] acpibut1 at acpi0 (SLPB, PNP0C0E): ACPI Sleep Button
[ 1.028086] acpivga0 at acpi0 (GFX0): ACPI Display Adapter
[ 1.028086] acpivga0: capabilities: _DOS _DOD
[ 1.028086] acpiout0 at acpivga0 (LCD, 0x0400): ACPI Display Output
Device
[ 1.028086] acpiout0: capabilities: _DCS _DGS _DSS
[ 1.028086] acpiout1 at acpivga0 (CRT1, 0x0100): ACPI Display Output
Device
[ 1.028086] acpiout1: capabilities: _DCS _DGS _DSS
[ 1.028086] acpiout2 at acpivga0 (DTV1, 0x0200): ACPI Display Output
Device
[ 1.028086] acpiout2: capabilities: _DCS _DGS _DSS
[ 1.028086] acpivga0: connected output devices:
[ 1.028086] acpivga0: 0x0100 (acpiout1): Ext. Monitor, head 0,
bios detect
[ 1.028086] acpivga0: 0x0400 (acpiout0): Unknown Output Device,
head 0, bios detect
[ 1.028086] acpivga0: 0x0200 (acpiout2): TV, head 0, bios detect
[ 1.028086] FWHD (INT0800) at acpi0 not configured
[ 1.028086] MATH (PNP0C04) at acpi0 not configured
[ 1.028086] attimer1 at acpi0 (TIMR, PNP0100): io
0x40-0x43,0x50-0x53 irq 0
[ 1.028086] acpiacad0 at acpi0 (ACAD, ACPI0003): ACPI AC Adapter
[ 1.028086] acpibat0 at acpi0 (BAT1, PNP0C0A-1): ACPI Battery
[ 1.028086] pckbc1 at acpi0 (PS2K, PNP0303) (kbd port): io 0x60,0x64
irq 1
[ 1.028086] pckbc2 at acpi0 (PS2M, PNP0F13) (aux port): irq 12
[ 1.028086] apm0 at acpi0: Power Management spec V1.2
[ 1.028086] ACPI: Enabled 4 GPEs in block 00 to 1F
[ 1.028086] pckbdprobe: reset error 5
[ 1.028086] pckbd0 at pckbc1 (kbd slot)
[ 1.028086] allocated pic ioapic0 type edge pin 1 level 6 to cpu0
slot 1 idt entry 97
[ 1.028086] pckbc1: using irq 1 for kbd slot
[ 1.028086] wskbd0 at pckbd0: console keyboard
[ 1.028086] autoconfiguration error: pckbc: aux echo error 1
[ 1.028086] autoconfiguration error: pckbc: cmd word write error
[ 1.028086] pci0 at mainbus0 bus 0: configuration mode 1
[ 1.028086] pci0: i/o space, memory space enabled, rd/line, rd/mult,
wr/inv ok
[ 1.028086] pchb0 at pci0 dev 0 function 0: Intel
82915PM/GM/GMS,82910GML Host Bridge (rev. 0x04)
[ 1.028086] agp0 at pchb0: i915-family chipset
[ 1.028086] agp0: detected 7932k stolen memory
[ 1.028086] agp0: aperture at 0xa0000000, size 0x10000000
[ 1.028086] i915drmkms0 at pci0 dev 2 function 0: Intel
82915GM/GMS,82910GML Integrated Graphics Device (rev. 0x04)
[ 1.028086] pci_mem_find: void region
[ 1.028086] pci_mem_find: void region
[ 1.028086] i915drmkms0: WARNING: power management not supported
[ 1.028086] Intel 82915GM/GMS IGD Companion (miscellaneous display,
revision 0x04) at pci0 dev 2 function 1 not configured
[ 1.028086] uhci0 at pci0 dev 29 function 0: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.028086] allocated pic ioapic0 type level pin 23 level 6 to cpu0
slot 2 idt entry 98
[ 1.028086] uhci0: interrupting at ioapic0 pin 23
[ 1.028086] usb0 at uhci0: USB revision 1.0
[ 1.028086] uhci1 at pci0 dev 29 function 1: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.028086] allocated pic ioapic0 type level pin 19 level 6 to cpu0
slot 3 idt entry 99
[ 1.028086] uhci1: interrupting at ioapic0 pin 19
[ 1.028086] usb1 at uhci1: USB revision 1.0
[ 1.028086] uhci2 at pci0 dev 29 function 2: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.028086] allocated pic ioapic0 type level pin 18 level 6 to cpu0
slot 4 idt entry 100
[ 1.028086] uhci2: interrupting at ioapic0 pin 18
[ 1.028086] usb2 at uhci2: USB revision 1.0
[ 1.028086] uhci3 at pci0 dev 29 function 3: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.028086] allocated pic ioapic0 type level pin 16 level 6 to cpu0
slot 5 idt entry 101
[ 1.028086] uhci3: interrupting at ioapic0 pin 16
[ 1.028086] usb3 at uhci3: USB revision 1.0
[ 1.028086] ehci0 at pci0 dev 29 function 7: Intel 82801FB/FR USB
EHCI Controller (rev. 0x04)
[ 1.028086] ehci0: 64-bit DMA - limited
[ 1.028086] allocated pic ioapic0 type level pin 23 level 6 to cpu0
slot 2 idt entry 98
[ 1.028086] ehci0: interrupting at ioapic0 pin 23
[ 1.028086] ehci0: EHCI version 0.0
[ 1.028086] ehci0: wrong number of companions (0 != 4)
[ 1.028086] ehci0: Using DMA subregion for control data structures
[ 1.028086] ehci0: autoconfiguration error: reset timeout
[ 1.028086] ehci0: autoconfiguration error: init failed, error=5
[ 1.028086] ehci0: WARNING: power management not supported
[ 1.028086] ppb0 at pci0 dev 30 function 0: Intel 82801BAM Hub-PCI
Bridge (rev. 0xd4)
[ 1.028086] pci1 at ppb0 bus 1
[ 1.028086] pci1: i/o space, memory space enabled
[ 1.028086] fwohci0 at pci1 dev 0 function 0: VIA Technologies
VT6306 IEEE 1394 Host Controller (rev. 0x80)
[ 1.028086] allocated pic ioapic0 type level pin 20 level 6 to cpu0
slot 6 idt entry 102
[ 1.028086] fwohci0: interrupting at ioapic0 pin 20
[ 1.028086] fwohci0: OHCI version 1.0 (ROM=1)
[ 1.028086] fwohci0: No. of Isochronous channels is 4.
[ 1.028086] fwohci0: EUI64 00:02:3f:59:88:40:01:0f
[ 1.028086] fwohci0: Phy 1394a available S400, 2 ports.
[ 1.028086] fwohci0: Link S400, max_rec 512 bytes.
[ 1.028086] fwohci0: max_rec 512 -> 2048
[ 1.028086] ieee1394if0 at fwohci0: IEEE1394 bus
[ 1.028086] fwip0 at ieee1394if0: IP over IEEE1394
[ 1.028086] fwohci0: Initiate bus reset
[ 1.028086] re0 at pci1 dev 1 function 0: RealTek 8169/8110 Gigabit
Ethernet (rev. 0x10)
[ 1.028086] allocated pic ioapic0 type level pin 21 level 6 to cpu0
slot 7 idt entry 103
[ 1.028086] re0: interrupting at ioapic0 pin 21
[ 1.028086] re0: RTL8169/8110SB (0x1000)
[ 1.028086] re0: Ethernet address 00:0f:b0:93:6f:e1
[ 1.028086] re0: using 256 tx descriptors
[ 1.028086] rgephy0 at re0 phy 7: RTL8211B 1000BASE-T media interface
[ 1.028086] rgephy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX,
1000baseT, 1000baseT-FDX, auto
[ 1.028086] iwi0 at pci1 dev 2 function 0: Intel PRO/Wireless LAN
2200BG Mini-PCI Adapter (rev. 0x05)
[ 1.028086] allocated pic ioapic0 type level pin 22 level 6 to cpu0
slot 8 idt entry 104
[ 1.028086] iwi0: interrupting at ioapic0 pin 22
[ 1.028086] iwi0: 802.11 address 00:13:ce:6b:7d:01
[ 1.028086] iwi0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
[ 1.028086] iwi0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps
12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
[ 1.028086] cbb0 at pci1 dev 4 function 0: ENE Technology CB710
CardBus Controller (rev. 0x00)
[ 1.028086] ENE Technology product 0530 (flash memory) at pci1 dev 4
function 1 not configured
[ 1.028086] sdhc0 at pci1 dev 4 function 2: ENE Technology
CB712/714/810 PCI SD Card Reader Controller (rev. 0x00)
[ 1.028086] allocated pic ioapic0 type level pin 17 level 6 to cpu0
slot 9 idt entry 105
[ 1.028086] sdhc0: interrupting at ioapic0 pin 17
[ 1.028086] sdhc0: SDHC 1.0, rev 0, caps <01e021a1/00000000>, SDMA,
33000 kHz, HS 3.3V, 512 byte blocks
[ 1.028086] sdmmc0 at sdhc0 slot 0
[ 1.028086] sdhc0: Clear PME# now
[ 1.028086] cbb0: osock_ctrl 0 sock_ctrl 0
[ 1.028086] cbb0: wait took 0.000176s
[ 1.028086] cbb0: cacheline 0x8 lattimer 0x40
[ 1.028086] cbb0: bhlc 0x824008
[ 1.028086] cbb0: autoconfiguration error: secondary bus number
uninitialized; try PCI_BUS_FIXUP
[ 1.028086] allocated pic ioapic0 type level pin 16 level 6 to cpu0
slot 5 idt entry 101
[ 1.028086] cbb0: interrupting at ioapic0 pin 16
[ 1.028086] cardslot0 at cbb0
[ 1.028086] pcmcia0 at cardslot0
[ 1.028086] auich0 at pci0 dev 30 function 2: i82801FB (ICH6) AC-97
Audio
[ 1.028086] allocated pic ioapic0 type level pin 17 level 7 to cpu0
slot 9 idt entry 105
[ 1.028086] auich0: interrupting at ioapic0 pin 17
[ 1.028086] auich0: ac97: Avance Logic unknown (0x414c4752) codec;
headphone, 20 bit DAC, 18 bit ADC, no 3D stereo
[ 1.028086] auich0: ac97: ext id 0xa07<AC97_23,AMAP,SPDIF,DRA,VRA>
[ 1.028086] Intel 82801FB/FR AC'97 Modem Controller (modem
communications, revision 0x04) at pci0 dev 30 function 3 not configured
[ 1.028086] ichlpcib0 at pci0 dev 31 function 0: Intel 82801FBM
ICH6M LPC Interface Bridge (rev. 0x04)
[ 1.028086] timecounter: Timecounter "ichlpcib0" frequency 3579545
Hz quality 1000
[ 1.028086] ichlpcib0: 24-bit timer
[ 1.028086] tco0 at ichlpcib0: TCO (watchdog) timer configured.
[ 1.028086] tco0: SMI_EN=0x00002033
[ 1.028086] tco0: SMI_EN:=0x00000033
[ 1.028086] tco0: SMI_EN=0x00000033
[ 1.028086] tco0: Min/Max interval 1/367 seconds
[ 1.028086] piixide0 at pci0 dev 31 function 1: Intel 82801FB IDE
Controller (ICH6) (rev. 0x04)
[ 1.028086] piixide0: bus-master DMA support present
[ 1.028086] piixide0: primary channel configured to compatibility mode
[ 1.028086] allocated pic ioapic0 type edge pin 14 level 6 to cpu0
slot 10 idt entry 106
[ 1.028086] piixide0: primary channel interrupting at ioapic0 pin 14
[ 1.028086] atabus0 at piixide0 channel 0
[ 1.028086] piixide0: secondary channel configured to compatibility mode
[ 1.028086] allocated pic ioapic0 type edge pin 15 level 6 to cpu0
slot 11 idt entry 107
[ 1.028086] piixide0: secondary channel interrupting at ioapic0 pin 15
[ 1.028086] atabus1 at piixide0 channel 1
[ 1.028086] ichsmb0 at pci0 dev 31 function 3: Intel 82801FB/FR
SMBus Controller (rev. 0x04)
[ 1.028086] allocated pic ioapic0 type level pin 19 level 6 to cpu0
slot 3 idt entry 99
[ 1.028086] ichsmb0: interrupting at ioapic0 pin 19
[ 1.028086] iic0 at ichsmb0: I2C bus
[ 1.028086] isa0 at ichlpcib0
[ 1.028086] pcppi0 at isa0 port 0x61
[ 1.028086] midi0 at pcppi0: PC speaker
[ 1.028086] sysbeep0 at pcppi0
[ 1.028086] attimer1: attached to pcppi0
[ 1.028086] acpicpu0 at cpu0: ACPI CPU
[ 1.028086] acpicpu0: C1: HLT, lat 0 us, pow 0 mW
[ 1.028086] acpicpu0: C2: I/O, lat 1 us, pow 0 mW
[ 1.028086] acpicpu0: C3: I/O, lat 85 us, pow 0 mW
[ 1.028086] acpicpu0: P0: I/O, lat 110 us, pow 27000 mW, 1867 MHz
[ 1.028086] acpicpu0: P1: I/O, lat 110 us, pow 23000 mW, 1600 MHz
[ 1.028086] acpicpu0: P2: I/O, lat 110 us, pow 20000 mW, 1333 MHz
[ 1.028086] acpicpu0: P3: I/O, lat 110 us, pow 17000 mW, 1067 MHz
[ 1.028086] acpicpu0: P4: I/O, lat 110 us, pow 13000 mW, 800 MHz
[ 1.028086] acpicpu0: T0: I/O, lat 1 us, pow 0 mW, 100 %
[ 1.028086] acpicpu0: T1: I/O, lat 1 us, pow 0 mW, 88 %
[ 1.028086] acpicpu0: T2: I/O, lat 1 us, pow 0 mW, 76 %
[ 1.028086] acpicpu0: T3: I/O, lat 1 us, pow 0 mW, 64 %
[ 1.028086] acpicpu0: T4: I/O, lat 1 us, pow 0 mW, 52 %
[ 1.028086] acpicpu0: T5: I/O, lat 1 us, pow 0 mW, 40 %
[ 1.028086] acpicpu0: T6: I/O, lat 1 us, pow 0 mW, 28 %
[ 1.028086] acpicpu0: T7: I/O, lat 1 us, pow 0 mW, 16 %
[ 1.028086] acpicpu0: id 0, lapic id 0, cap 0x00fd, flags 0x00182ea7
[ 1.028086] SRAT: 0 NUMA nodes
[ 1.028086] fwohci0: BUS reset
[ 1.028086] fwohci0: node_id=0xc000ffc0, gen=1, CYCLEMASTER mode
[ 1.028086] ieee1394if0: 1 nodes, maxhop <= 0 cable IRM irm(0) (me)
[ 1.028086] ieee1394if0: bus manager 0
[ 1.028086] Initializing SSP: WARNING: system needs entropy for
security; see entropy(7)
[ 1.028086] a0a159cb 64c3578e b69d9c3e c45df27a c4a30298 4de1cdac
8da15aaf b652f047
[ 1.028086] cpu0: TSC freq from delay 11790940 Hz
[ 1.028086] cpu0: [re]calibrating local timer
[ 1.028086] cpu0: apic clock running at 842 kHz
[ 1.028086] timecounter: Timecounter "lapic" frequency 842000 Hz
quality -100
[ 1.028086] timecounter: Timecounter "clockinterrupt" frequency 100
Hz quality 0
[ 1.603245] UVM: using package allocation scheme, 1 package(s) per
bucket
[ 1.604318] TSC not known invariant on this CPU
[ 1.604422] timecounter: Timecounter "TSC" frequency 11790940 Hz
quality -100
[ 1.939599] auich0: measured ac97 link rate at 48002 Hz, will use
48000 Hz
[ 1.939915] audio0 at auich0: playback, capture, full duplex,
independent
[ 1.940927] audio0: slinear_le:16 2ch 48000Hz, blk 1920 bytes (10ms)
for playback
[ 1.941074] audio0: slinear_le:16 2ch 48000Hz, blk 1920 bytes (10ms)
for recording
[ 1.941434] acpicpu0: ACPI CPUs started
[ 1.941687] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.942320] uhub0 at usb0: NetBSD (0x0000) UHCI root hub (0x0000),
class 9/0, rev 1.00/1.00, addr 1
[ 1.942550] uhub0: 2 ports with 2 removable, self powered
[ 1.942827] uhub1 at usb1: NetBSD (0x0000) UHCI root hub (0x0000),
class 9/0, rev 1.00/1.00, addr 1
[ 1.943080] uhub1: 2 ports with 2 removable, self powered
[ 1.943397] uhub2 at usb2: NetBSD (0x0000) UHCI root hub (0x0000),
class 9/0, rev 1.00/1.00, addr 1
[ 1.943594] uhub2: 2 ports with 2 removable, self powered
[ 1.943904] uhub3 at usb3: NetBSD (0x0000) UHCI root hub (0x0000),
class 9/0, rev 1.00/1.00, addr 1
[ 1.944100] uhub3: 2 ports with 2 removable, self powered
[ 1.944916] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.945106] acpiacad0: AC adapter online.
[ 1.945234] acpiacad0: AC adapter connected
[ 1.945614] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.946055] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.946688] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.947449] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.948081] atapibus0 at atabus0: 2 targets
[ 1.948904] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.949473] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.950551] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.950867] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.951246] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.951563] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.951879] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.952197] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.952577] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.952893] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.953209] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.953589] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.953906] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.954285] acpicpu0: autoconfiguration error: failed to set
frequency to 1600 (err 35)
[ 1.954602] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.954918] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.955299] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.955741] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.956058] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.956374] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.956754] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.957071] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.957387] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.957704] acpicpu0: autoconfiguration error: failed to set
frequency to 1333 (err 35)
[ 1.958021] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.958337] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.958717] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.959033] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.959350] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.959730] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.960047] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.960363] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.960743] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.961060] acpicpu0: autoconfiguration error: failed to set
frequency to 1067 (err 35)
[ 1.961376] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.961756] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.962073] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.962389] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.962768] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.963149] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.963465] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.963845] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.964161] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.964541] acpicpu0: autoconfiguration error: failed to set
frequency to 800 (err 35)
[ 1.965935] IPsec: Initialized Security Association Processing.
[ 1.970302] aes: Intel SSE2 bitsliced
[ 1.970555] chacha: x86 SSE2 ChaCha
[ 1.971442] adiantum: self-test passed
[ 1.973278] aes_ccm: self-test passed
[ 1.973911] blake2s: self-test passed
[ 1.981001] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0
[ 1.987523] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0
[ 1.994043] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0
[ 2.000564] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0
[ 2.006831] uhidev0 at uhub2 port 1 configuration 1 interface 0
[ 2.007039] uhidev0: vendor 1997 (0x1997) mini keyboard (0x2433),
rev 1.10/1.10, addr 2, iclass 3/1
[ 2.007218] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0 uhidev0
[ 2.013732] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 atapibus0 uhidev0
[ 2.015567] autoconfiguration error: piixide0:0:1: lost interrupt
[ 2.015567] type: ata tc_bcount: 512 tc_skip: 0
[ 2.015758] wd0 at atabus0 drive 0
[ 2.016012] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 uhidev0 wd0
[ 2.018923] ukbd0 at uhidev0
[ 2.020569] wskbd1 at ukbd0 mux 1
[ 2.020886] uhidev1 at uhub2 port 1 configuration 1 interface 1
[ 2.021078] uhidev1: vendor 1997 (0x1997) mini keyboard (0x2433),
rev 1.10/1.10, addr 2, iclass 3/1
[ 2.021330] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 wd0 uhidev1
[ 2.027852] waiting for devices: usb0 usb2 atabus0 atabus1 uhub0
uhub2 wd0 uhidev1
[ 2.028609] umass0 at uhub0 port 1 configuration 1 interface 0
[ 2.028736] umass0: UFD 2.0 (0x13fe) Silicon-Power4G (0x3d00), rev
2.00/1.00, addr 2
[ 2.028928] umass0: using SCSI over Bulk-Only
[ 2.034118] scsibus0 at umass0: 2 targets, 1 lun per target
[ 2.034497] waiting for devices: usb2 atabus0 atabus1 uhub2 wd0
uhidev1 scsibus0
[ 2.041018] waiting for devices: usb2 atabus0 atabus1 uhub2 wd0
uhidev1 scsibus0
[ 2.041714] uhidev1: 3 report ids
[ 2.041967] ums0 at uhidev1 reportid 1: 5 buttons and Z dir
[ 2.042347] wsmouse0 at ums0 mux 0
[ 2.042602] uhid0 at uhidev1 reportid 2: input=1, output=0, feature=0
[ 2.042917] uhid1 at uhidev1 reportid 3: input=2, output=0, feature=0
[ 2.043170] waiting for devices: atabus0 atabus1 wd0 scsibus0
[ 2.049627] waiting for devices: atabus0 atabus1 wd0 scsibus0
[ 2.051527] sd0 at scsibus0 target 0 lun 0: <UFD 2.0,
Silicon-Power4G, PMAP> disk removable
[ 2.056148] waiting for devices: atabus0 atabus1 wd0 scsibus0 sd0
[ 2.062670] waiting for devices: atabus0 atabus1 wd0 scsibus0 sd0
[ 2.065454] sd0: 3696 MB, 927 cyl, 255 head, 32 sec, 512 bytes/sect
x 7570752 sectors
[ 2.069126] waiting for devices: atabus0 atabus1 wd0 scsibus0 sd0
[ 2.075647] waiting for devices: atabus0 atabus1 wd0 scsibus0 sd0
[ 2.082105] waiting for devices: atabus0 atabus1 wd0 scsibus0 sd0
[ 2.083751] wd0: <IC25N080ATMR04-0>
[ 2.083861] wd0: drive supports 16-sector PIO transfers, LBA48
addressing
[ 2.083942] wd0: 76319 MB, 155061 cyl, 16 head, 63 sec, 512
bytes/sect x 156301488 sectors
[ 2.088689] waiting for devices: atabus0 atabus1 wd0 scsibus0 sd0
[ 2.095147] waiting for devices: atabus0 atabus1 wd0 scsibus0 sd0
[ 2.101668] waiting for devices: atabus0 atabus1 wd0 scsibus0 sd0
[ 2.108190] waiting for devices: atabus0 atabus1 wd0 scsibus0 sd0
[ 2.114708] waiting for devices: atabus0 atabus1 wd0 scsibus0 sd0
[ 2.121229] waiting for devices: atabus0 atabus1 wd0 scsibus0 sd0
[ 2.127751] waiting for devices: atabus0 atabus1 wd0 scsibus0 sd0
[ 2.134271] waiting for devices: atabus0 atabus1 wd0 scsibus0 sd0
[ 2.134588] waiting for devices: atabus0 atabus1 wd0 scsibus0
[ 2.138513] waiting for devices: atabus0 atabus1 wd0
[ 2.145097] waiting for devices: atabus0 atabus1 wd0
[ 2.151490] waiting for devices: atabus0 atabus1 wd0
[ 2.152567] piixide0:0:0: recal timed out
[ 2.152657] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 2.158075] waiting for devices: atabus0 atabus1 wd0
[ 2.164468] waiting for devices: atabus0 atabus1 wd0
[ 2.170926] waiting for devices: atabus0 atabus1 wd0
[ 2.177383] waiting for devices: atabus0 atabus1 wd0
[ 2.183842] waiting for devices: atabus0 atabus1 wd0
[ 2.190299] waiting for devices: atabus0 atabus1 wd0
[ 2.196756] waiting for devices: atabus0 atabus1 wd0
[ 2.203213] waiting for devices: atabus0 atabus1 wd0
[ 2.209671] waiting for devices: atabus0 atabus1 wd0
[ 2.216128] waiting for devices: atabus0 atabus1 wd0
[ 2.222586] waiting for devices: atabus0 atabus1 wd0
[ 2.229043] waiting for devices: atabus0 atabus1 wd0
[ 2.235500] waiting for devices: atabus0 atabus1 wd0
[ 2.241958] waiting for devices: atabus0 atabus1 wd0
[ 2.248415] waiting for devices: atabus0 atabus1 wd0
[ 2.254873] waiting for devices: atabus0 atabus1 wd0
[ 2.261330] waiting for devices: atabus0 atabus1 wd0
[ 2.267788] waiting for devices: atabus0 atabus1 wd0
[ 2.274245] waiting for devices: atabus0 atabus1 wd0
[ 2.280703] waiting for devices: atabus0 atabus1 wd0
[ 2.287160] waiting for devices: atabus0 atabus1 wd0
[ 2.293618] waiting for devices: atabus0 atabus1 wd0
[ 2.300075] waiting for devices: atabus0 atabus1 wd0
[ 2.306533] waiting for devices: atabus0 atabus1 wd0
[ 2.312929] waiting for devices: atabus0 atabus1 wd0
[ 2.319384] waiting for devices: atabus0 atabus1 wd0
[ 2.325842] waiting for devices: atabus0 atabus1 wd0
[ 2.332300] waiting for devices: atabus0 atabus1 wd0
[ 2.338693] waiting for devices: atabus0 atabus1 wd0
[ 2.345151] waiting for devices: atabus0 atabus1 wd0
[ 2.351608] waiting for devices: atabus0 atabus1 wd0
[ 2.358003] waiting for devices: atabus0 atabus1 wd0
[ 2.364396] waiting for devices: atabus0 atabus1 wd0
[ 2.370854] waiting for devices: atabus0 atabus1 wd0
[ 2.377311] waiting for devices: atabus0 atabus1 wd0
[ 2.383769] waiting for devices: atabus0 atabus1 wd0
[ 2.390226] waiting for devices: atabus0 atabus1 wd0
[ 2.396684] waiting for devices: atabus0 atabus1 wd0
[ 2.403141] waiting for devices: atabus0 atabus1 wd0
[ 2.409598] waiting for devices: atabus0 atabus1 wd0
[ 2.416057] waiting for devices: atabus0 atabus1 wd0
[ 2.422514] waiting for devices: atabus0 atabus1 wd0
[ 2.428970] waiting for devices: atabus0 atabus1 wd0
[ 2.435429] waiting for devices: atabus0 atabus1 wd0
[ 2.441886] waiting for devices: atabus0 atabus1 wd0
[ 2.448343] waiting for devices: atabus0 atabus1 wd0
[ 2.454801] waiting for devices: atabus0 atabus1 wd0
[ 2.461258] waiting for devices: atabus0 atabus1 wd0
[ 2.467715] waiting for devices: atabus0 atabus1 wd0
[ 2.474173] waiting for devices: atabus0 atabus1 wd0
[ 2.480631] waiting for devices: atabus0 atabus1 wd0
[ 2.487027] waiting for devices: atabus0 atabus1 wd0
[ 2.493482] waiting for devices: atabus0 atabus1 wd0
[ 2.499939] waiting for devices: atabus0 atabus1 wd0
[ 2.506399] waiting for devices: atabus0 atabus1 wd0
[ 2.512918] waiting for devices: atabus0 atabus1 wd0
[ 2.519312] waiting for devices: atabus0 atabus1 wd0
[ 2.525769] waiting for devices: atabus0 atabus1 wd0
[ 2.532226] waiting for devices: atabus0 atabus1 wd0
[ 2.538684] waiting for devices: atabus0 atabus1 wd0
[ 2.545079] waiting for devices: atabus0 atabus1 wd0
[ 2.551535] waiting for devices: atabus0 atabus1 wd0
[ 2.557993] waiting for devices: atabus0 atabus1 wd0
[ 2.563184] wd0: soft error (corrected) xfer f5c
[ 2.564894] waiting for devices: atabus0 atabus1 wd0
[ 2.571351] waiting for devices: atabus0 atabus1 wd0
[ 2.577808] waiting for devices: atabus0 atabus1 wd0
[ 2.584266] waiting for devices: atabus0 atabus1 wd0
[ 2.590724] waiting for devices: atabus0 atabus1 wd0
[ 2.607184] waiting for devices: atabus0 atabus1
[ 2.610286] wd0: 32-bit data port
[ 2.610666] wd0: drive supports PIO mode 4, DMA mode 2, Ultra-DMA
mode 5 (Ultra/100)
[ 2.611493] wd0(piixide0:0:0): using PIO mode 4, Ultra-DMA mode 5
(Ultra/100) (using DMA)
[ 2.611932] crypto: assign driver 0, flags 2
[ 2.612064] crypto: driver 0 registers alg 1 flags 0 maxoplen 0
[ 2.612166] crypto: driver 0 registers alg 2 flags 0 maxoplen 0
[ 2.612268] crypto: driver 0 registers alg 3 flags 0 maxoplen 0
[ 2.612375] crypto: driver 0 registers alg 4 flags 0 maxoplen 0
[ 2.612479] crypto: driver 0 registers alg 5 flags 0 maxoplen 0
[ 2.612580] crypto: driver 0 registers alg 26 flags 0 maxoplen 0
[ 2.612681] crypto: driver 0 registers alg 27 flags 0 maxoplen 0
[ 2.612783] crypto: driver 0 registers alg 29 flags 0 maxoplen 0
[ 2.612885] crypto: driver 0 registers alg 33 flags 0 maxoplen 0
[ 2.612990] crypto: driver 0 registers alg 17 flags 0 maxoplen 0
[ 2.613090] crypto: driver 0 registers alg 6 flags 0 maxoplen 0
[ 2.613188] crypto: driver 0 registers alg 19 flags 0 maxoplen 0
[ 2.613288] crypto: driver 0 registers alg 7 flags 0 maxoplen 0
[ 2.613390] crypto: driver 0 registers alg 20 flags 0 maxoplen 0
[ 2.613514] crypto: driver 0 registers alg 15 flags 0 maxoplen 0
[ 2.613628] crypto: driver 0 registers alg 24 flags 0 maxoplen 0
[ 2.613729] crypto: driver 0 registers alg 25 flags 0 maxoplen 0
[ 2.613837] crypto: driver 0 registers alg 8 flags 0 maxoplen 0
[ 2.613937] crypto: driver 0 registers alg 21 flags 0 maxoplen 0
[ 2.614040] crypto: driver 0 registers alg 16 flags 0 maxoplen 0
[ 2.614141] crypto: driver 0 registers alg 9 flags 0 maxoplen 0
[ 2.614243] crypto: driver 0 registers alg 10 flags 0 maxoplen 0
[ 2.614344] crypto: driver 0 registers alg 13 flags 0 maxoplen 0
[ 2.614446] crypto: driver 0 registers alg 14 flags 0 maxoplen 0
[ 2.614549] crypto: driver 0 registers alg 28 flags 0 maxoplen 0
[ 2.614655] crypto: driver 0 registers alg 30 flags 0 maxoplen 0
[ 2.614761] crypto: driver 0 registers alg 31 flags 0 maxoplen 0
[ 2.614865] crypto: driver 0 registers alg 32 flags 0 maxoplen 0
[ 2.614971] crypto: driver 0 registers alg 11 flags 0 maxoplen 0
[ 2.615071] crypto: driver 0 registers alg 18 flags 0 maxoplen 0
[ 2.615173] crypto: driver 0 registers alg 23 flags 0 maxoplen 0
[ 2.615277] crypto: driver 0 registers alg 22 flags 0 maxoplen 0
[ 2.615380] cgd: self-test aes-xts-256
[ 2.615540] cgd: self-test aes-xts-512
[ 2.615730] cgd: self-test aes-cbc-128
[ 2.615857] cgd: self-test aes-cbc-256
[ 2.616047] cgd: self-test 3des-cbc-192
[ 2.616173] cgd: self-test blowfish-cbc-448
[ 2.616427] cgd: self-test aes-cbc-128 (encblkno8)
[ 2.616680] cgd: self-tests passed
[ 2.616934] swwdog0: software watchdog initialized
[ 2.777483] Searching for RAID components...
[ 2.847502] WARNING: 56 errors while detecting hardware; check
system log.
[ 2.847619] boot device: sd0
[ 2.847692] root on sd0a dumps on sd0b
[ 2.936450] root file system type: ffs
[ 2.956456] kern.module.path=/stand/i386/10.0/modules
[ 2.956777] pci_mem_find: void region
[ 2.956869] i915drmkms0: map 4 failed
[ 2.956967] pci_mem_find: void region
[ 2.957038] i915drmkms0: map 5 failed
[ 2.958545] i915drmkms0 {drm:netbsd:intel_uc_init_early+0x8a}
enable_guc=0 (guc:no submission:no huc:no)
[ 2.961014] {drm:netbsd:i915_gem_init__contexts+0x80} fake context
support initialized
[ 2.963047] pci_mem_find: void region
[ 2.963170] pci_mem_find: void region
[ 2.963293] pci_mem_find: void region
[ 2.963362] pci_mem_find: void region
[ 2.963486] pci_mem_find: void region
[ 2.963620] pci_mem_find: void region
[ 2.963799] pci_mem_find: void region
[ 2.963895] pci_mem_find: void region
[ 2.963989] pci_mem_find: void region
[ 2.964077] pci_mem_find: void region
[ 2.964179] pci_mem_find: void region
[ 2.964268] pci_mem_find: void region
[ 2.965255] {drm:netbsd:i915_ggtt_probe_hw+0x3f3} GGTT size = 256M
[ 2.966142] {drm:netbsd:i915_ggtt_probe_hw+0x41c} GMADR size = 256M
[ 2.967028] {drm:netbsd:i915_ggtt_probe_hw+0x44d} DSM size = 0M
[ 2.973615] {drm:netbsd:intel_opregion_setup+0x4e} graphic opregion
physical addr: 0x0
[ 2.974562] {drm:netbsd:intel_opregion_setup+0x6a3} ACPI OpRegion
not supported!
[ 2.974730] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 2.974850] [drm] Driver supports precise vblank timestamp query.
[ 2.974954] pci_mem_find: void region
[ 2.975258] allocated pic ioapic0 type level pin 16 level 6 to cpu0
slot 5 idt entry 101
[ 2.975408] i915drmkms0: interrupting at ioapic0 pin 16 (i915drmkms0)
[ 2.976778] {drm:netbsd:intel_dump_cdclk_state+0x47} Current CDCLK
190000 kHz, VCO 0 kHz, ref 0 kHz, bypass 0 kHz, voltage level 0
[ 2.977791] {drm:netbsd:intel_update_max_cdclk+0x8c} Max CD clock
rate: 190000 kHz
[ 2.978676] {drm:netbsd:intel_update_max_cdclk+0xaa} Max dotclock
rate: 342000 kHz
[ 2.979690] {drm:netbsd:intel_lvds_init+0x399} LVDS PPS:t1+t2 450 t3
500 t4 3000 t5 2000 tx 2000 divider 9999 port 0 powerdown_on_reset 0
[ 3.005519] [drm] Initialized overlay support.
[ 3.006406] {drm:netbsd:intel_engines_driver_register+0x109} renamed
rcs'0 to rcs0
[ 3.006596] [drm] Initialized i915 1.6.0 20200114 for i915drmkms0 on
minor 0
[ 3.023182] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.025145] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.037680] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.042874] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.043694] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.044454] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.068068] intelfb0 at i915drmkms0
[ 3.068195] i915 device info: pciid=0x2592 rev=0x04 platform=I915GM
(subplatform=0x0) gen=3
[ 3.068408] i915 device info: engines: 1
[ 3.068460] i915 device info: gen: 3
[ 3.068576] i915 device info: gt: 0
[ 3.068659] i915 device info: iommu: n/a
[ 3.068705] i915 device info: memory-regions: 5
[ 3.068832] i915 device info: page-sizes: 1000
[ 3.068921] i915 device info: platform: I915GM
[ 3.069036] i915 device info: ppgtt-size: 0
[ 3.069091] i915 device info: ppgtt-type: 0
[ 3.069216] i915 device info: is_mobile: yes
[ 3.069302] i915 device info: is_lp: no
[ 3.069348] i915 device info: require_force_probe: no
[ 3.069481] i915 device info: is_dgfx: no
[ 3.069527] i915 device info: has_64bit_reloc: no
[ 3.069657] i915 device info: gpu_reset_clobbers_display: yes
[ 3.069768] i915 device info: has_reset_engine: no
[ 3.069863] i915 device info: has_fpga_dbg: no
[ 3.069909] i915 device info: has_global_mocs: no
[ 3.070045] i915 device info: has_gt_uc: no
[ 3.070095] i915 device info: has_l3_dpf: no
[ 3.070223] i915 device info: has_llc: no
[ 3.070307] i915 device info: has_logical_ring_contexts: no
[ 3.070417] i915 device info: has_logical_ring_elsq: no
[ 3.070537] i915 device info: has_logical_ring_preemption: no
[ 3.070644] i915 device info: has_pooled_eu: no
[ 3.070737] i915 device info: has_rc6: no
[ 3.070821] i915 device info: has_rc6p: no
[ 3.070867] i915 device info: has_rps: no
[ 3.070998] i915 device info: has_runtime_pm: no
[ 3.071045] i915 device info: has_snoop: yes
[ 3.071174] i915 device info: has_coherent_ggtt: yes
[ 3.071270] i915 device info: unfenced_needs_alignment: yes
[ 3.071374] i915 device info: hws_needs_physical: yes
[ 3.071424] i915 device info: cursor_needs_physical: yes
[ 3.071574] i915 device info: has_csr: no
[ 3.071624] i915 device info: has_ddi: no
[ 3.071745] i915 device info: has_dp_mst: no
[ 3.071833] i915 device info: has_dsb: no
[ 3.071879] i915 device info: has_dsc: no
[ 3.072001] i915 device info: has_fbc: no
[ 3.072085] i915 device info: has_gmch: yes
[ 3.072195] i915 device info: has_hdcp: no
[ 3.072246] i915 device info: has_hotplug: no
[ 3.072373] i915 device info: has_ipc: no
[ 3.072454] i915 device info: has_modular_fia: no
[ 3.072500] i915 device info: has_overlay: yes
[ 3.072635] i915 device info: has_psr: no
[ 3.072717] i915 device info: overlay_needs_physical: yes
[ 3.072820] i915 device info: supports_tv: yes
[ 3.072914] i915 device info: slice total: 0, mask=0000
[ 3.073015] i915 device info: subslice total: 0
[ 3.073104] i915 device info: EU total: 0
[ 3.073150] i915 device info: EU per subslice: 0
[ 3.073276] i915 device info: has slice power gating: no
[ 3.073323] i915 device info: has subslice power gating: no
[ 3.073480] i915 device info: has EU power gating: no
[ 3.073583] i915 device info: CS timestamp frequency: 0 kHz
[ 3.073703] [drm] DRM_I915_DEBUG enabled
[ 3.073789] [drm] DRM_I915_DEBUG_GEM enabled
[ 3.073957] intelfb0: framebuffer at 0xa0009000, size 1280x800,
depth 32, stride 5120
[ 3.076804] {drm:netbsd:i9xx_disable_backlight+0x29} set backlight
PWM = 0
[ 3.288318] acpibat0: workqueue busy: updates stopped
[ 3.645882] {drm:netbsd:i9xx_enable_backlight+0xf6} set backlight
PWM = 3984375
[ 3.648984] max_dotclock according to supported modes: 71000
[ 3.746099] wsdisplay0 at intelfb0 kbdmux 1: console (default, vt100
emulation), using wskbd0
[ 3.748840] wsmux1: connecting to wsdisplay0
[ 3.751228] wskbd1: connecting to wsdisplay0
[ 3.786110] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.792821] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.801051] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.817575] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 3.823335] warning:
/usr/src/sys/external/bsd/drm2/dist/drm/drm_vblank.c:1206: vblank wait
timed out on crtc 0
[ 4.706930] WARNING: consolidating less than full entropy
[ 4.707058] entropy: best effort
[ 6.276659] /dev/sd0a: file system not clean (fs_clean=0); please
fsck(8)
netbsd-nuc#
netbsd-nuc# cat moredmesg
(only last lines...)
[ 186.506906] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 186.506906] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 186.600690] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 186.600690] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 186.600690] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 192.187279] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 192.187279] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 192.283436] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 192.283436] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 192.378362] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 192.378362] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 192.473289] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 192.473289] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 192.567161] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 192.567161] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 192.660681] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 192.660681] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 192.660681] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 208.498878] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 208.498878] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 208.592922] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 208.592922] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 208.686881] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 208.686881] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 208.780578] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 208.780578] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 208.874801] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 208.874801] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 208.968848] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 208.968848] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 208.968848] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 209.059731] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 209.059731] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 209.154218] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 209.154218] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 209.186651] umass0: BBB reset failed, TIMEOUT
[ 209.248617] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 209.248617] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 209.343015] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 209.343015] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 209.436975] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 209.436975] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 209.530935] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 209.530935] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 209.531023] wd0d: error writing fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 209.807452] umass0: BBB reset failed, TIMEOUT
[ 209.889897] umass0: Invalid CSW: sig 0x43425355 should be 0x53425355
[ 211.106536] umass0: BBB reset failed, TIMEOUT
[ 211.133873] umass0: Invalid CSW: sig 0x43425355 should be 0x53425355
[ 211.142924] sd0a: error writing fsbn 2848 of 2848-2879 (sd0 bn 4896;
cn 2 tn 25 sn 0)
[ 212.226403] wd0: autoconfiguration error: wd_flushcache:
status=0x5128<TIMEOU>
[ 212.350510] umass0: BBB reset failed, TIMEOUT
[ 212.377933] umass0: Invalid CSW: sig 0x000161a0 should be 0x53425355
[ 213.594572] umass0: BBB reset failed, TIMEOUT
[ 213.620941] umass0: Invalid CSW: sig 0x000161a0 should be 0x53425355
[ 214.837581] umass0: BBB reset failed, TIMEOUT
[ 214.843030] sd0a: error writing fsbn 2816 of 2816-2847 (sd0 bn 4864;
cn 2 tn 24 sn 0)
[ 216.036641] umass0: BBB reset failed, TIMEOUT
[ 399.842490] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 399.842490] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 399.936800] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 399.936800] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 400.031111] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 400.031111] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 400.125423] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 400.125423] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 400.219734] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 400.219734] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 400.314133] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 400.314133] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 400.314133] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 411.205436] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 411.205436] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 411.299569] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 411.299569] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 411.393793] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 411.393793] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 411.488015] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 411.488015] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 411.581537] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 411.581537] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 411.675055] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 411.675055] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 411.675055] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 411.765676] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 411.765676] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 411.859461] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 411.859461] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 411.953069] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 411.953069] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 412.046851] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 412.046851] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 412.140722] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 412.140722] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 412.234506] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 412.234506] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 412.234506] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 412.325652] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 412.325652] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 412.419789] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 412.419789] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 412.514099] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 412.514099] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 412.608146] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 412.608146] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 412.702194] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 412.702194] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 412.796065] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 412.796065] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 412.796065] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 412.887212] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 412.887212] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 412.981787] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 412.981787] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 413.084009] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 413.084009] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 413.178410] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 413.178410] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 413.272631] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 413.272631] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 413.367557] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 413.367557] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 413.371513] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 413.473646] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 413.485425] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 413.587382] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 413.587382] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 413.681693] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 413.681693] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 413.776092] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 413.776092] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 413.870491] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 413.870627] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 413.964978] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 413.964978] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 413.965109] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 414.072299] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 414.072299] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 0
[ 414.166784] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 414.166784] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 1
[ 414.261183] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 414.261183] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 2
[ 414.355846] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 414.355846] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 3
[ 414.449717] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 414.449717] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 4
[ 414.544116] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 414.544116] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2)
[ 414.544248] wd0d: error reading fsbn 128 of 128-143 (wd0 bn 128; cn
0 tn 2 sn 2)
[ 414.646692] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 414.646783] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 0
[ 414.741176] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 414.753658] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 1
[ 414.856494] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 414.856494] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 2
[ 414.951244] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 414.951244] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 3
[ 415.045908] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 415.045908] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 4
[ 415.141979] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 415.141979] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16)
[ 415.145757] wd0d: error reading fsbn 16 of 16-31 (wd0 bn 16; cn 0 tn
0 sn 16)
[ 415.248856] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 415.248856] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 0
[ 415.343343] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 415.343343] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 1
[ 415.437919] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 415.437919] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 2
[ 415.532404] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 415.532404] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 3
[ 415.626803] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 415.626803] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 4
[ 415.721203] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 415.721203] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0)
[ 415.724631] wd0d: error reading fsbn 0 of 0-15 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 415.828259] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 415.828259] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 0
[ 415.922657] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 415.922745] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 1
[ 416.017232] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 416.017232] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 2
[ 416.111633] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 416.111633] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 3
[ 416.205942] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 416.206038] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 4
[ 416.300694] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 416.300694] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8)
[ 416.300825] wd0d: error reading fsbn 512 of 512-527 (wd0 bn 512; cn
0 tn 8 sn 8)
[ 416.408451] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 416.408451] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 0
[ 416.502940] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 416.516741] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 1
[ 416.620893] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 416.620893] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 2
[ 416.715643] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 416.715643] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 3
[ 416.810042] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 416.810042] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 4
[ 416.904444] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 416.904444] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2)
[ 416.904583] wd0d: error reading fsbn 128 of 128-143 (wd0 bn 128; cn
0 tn 2 sn 2)
[ 417.013255] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 417.013255] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 0
[ 417.108006] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 417.108006] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 1
[ 417.202405] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 417.202405] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 2
[ 417.296804] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 417.296893] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 3
[ 417.391115] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 417.391115] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 4
[ 417.485516] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 417.485516] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16)
[ 417.485653] wd0d: error reading fsbn 16 of 16-31 (wd0 bn 16; cn 0 tn
0 sn 16)
[ 417.593185] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 417.593185] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 0
[ 417.687409] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 417.687409] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 1
[ 417.781807] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 417.781807] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 2
[ 417.876206] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 417.876326] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 3
[ 417.970606] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 417.970693] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 4
[ 418.065092] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 418.065092] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0)
[ 418.065225] wd0d: error reading fsbn 0 of 0-15 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 418.173817] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 418.173817] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 0
[ 418.268304] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 418.268304] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 1
[ 418.362703] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 418.362703] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 2
[ 418.457278] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 418.457278] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 3
[ 418.551765] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 418.551765] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 4
[ 418.645725] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 418.645725] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8)
[ 418.649153] wd0d: error reading fsbn 512 of 512-527 (wd0 bn 512; cn
0 tn 8 sn 8)
[ 418.878207] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 418.878316] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 418.972341] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 418.972341] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 419.068147] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 419.068147] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 419.161755] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 419.161755] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 419.256241] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 419.256241] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 419.350819] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 419.350819] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 419.350949] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 419.457785] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 419.457785] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 419.552623] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 419.552623] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 419.647198] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 419.647198] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 419.741596] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 419.741596] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 419.835644] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 419.835644] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 419.930043] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 419.930043] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 419.930169] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 420.032441] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 420.032441] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 0
[ 420.126926] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 420.127063] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 1
[ 420.221326] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 420.221326] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 2
[ 420.316780] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 420.316780] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 3
[ 420.410651] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 420.410651] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 4
[ 420.505138] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 420.505138] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0)
[ 420.505266] wd0d: error reading fsbn 0 of 0-15 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 445.835173] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 445.835173] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 445.928694] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 445.928694] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 446.022477] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 446.022477] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 446.116085] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 446.116085] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 446.209605] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 446.209605] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 446.303125] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 446.303125] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 446.303125] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 459.267603] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 459.267603] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 459.361385] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 459.361385] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 459.455432] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 459.455432] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 459.549127] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 459.549127] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 459.643087] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 459.643087] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 459.737046] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 459.737046] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 459.737046] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 459.827754] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 459.827754] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 459.922065] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 459.922065] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 460.016027] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 460.016027] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 460.109632] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 460.109632] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 460.204120] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 460.204120] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 460.298606] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 460.298606] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 460.298606] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 474.780056] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 474.780056] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 474.873577] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 474.873577] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 474.967097] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 474.967097] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 475.060617] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 475.060617] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 475.154137] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 475.154137] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 475.247745] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 475.247745] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 475.247745] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 486.893626] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 486.893626] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 486.987759] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 486.987759] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 487.082069] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 487.082069] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 487.175853] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 487.175853] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 487.270516] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 487.270516] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 487.364914] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 487.364914] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 487.364914] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 487.915575] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 487.915575] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 488.009359] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 488.009359] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 488.103232] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 488.103232] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 488.197190] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 488.197190] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 488.290886] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 488.290886] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 488.384846] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 488.384846] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 488.384846] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 488.475553] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 488.475553] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 488.570127] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 488.570127] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 488.664615] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 488.664615] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 488.758486] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 488.758486] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 488.852182] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 488.852182] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 488.952821] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 488.952821] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 488.956953] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 493.982862] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 493.982862] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 494.077261] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 494.077261] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 494.171749] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 494.171749] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 494.266236] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 494.266236] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 494.360546] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 494.360546] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 494.454945] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 494.454945] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 494.454945] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 496.406736] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 496.406736] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 496.500255] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 496.500255] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 496.593951] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 496.593951] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 496.687735] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 496.687735] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 496.781430] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 496.781430] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 496.875391] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 496.875391] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 496.875391] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 496.966449] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 496.966449] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 497.060936] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 497.060936] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 497.155423] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 497.155423] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 497.249558] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 497.249558] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 497.343254] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 497.343254] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 497.437301] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 497.437301] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 497.437301] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 497.528536] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 497.528536] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 497.622496] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 497.622496] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 497.716455] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 497.716455] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 497.812085] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 497.812085] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 497.907099] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 497.907099] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 498.001497] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 498.001497] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 498.001497] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 498.092556] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 498.092556] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 498.186956] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 498.186956] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 498.288562] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 498.288562] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 498.382962] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 498.382962] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 498.477624] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 498.477624] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 498.572286] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 498.572286] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 498.572412] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 498.674772] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 498.674772] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 498.768906] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 498.768906] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 498.863218] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 498.863218] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 498.957616] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 498.957616] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 499.052016] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 499.052016] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 499.148349] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 499.148349] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 499.148476] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 499.250307] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 499.250307] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 0
[ 499.344969] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 499.344969] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 1
[ 499.439368] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 499.439368] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 2
[ 499.533766] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 499.533766] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 3
[ 499.628078] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 499.628078] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 4
[ 499.722391] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 499.722391] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2)
[ 499.722525] wd0d: error reading fsbn 128 of 128-143 (wd0 bn 128; cn
0 tn 2 sn 2)
[ 499.824962] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 499.824962] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 0
[ 499.919449] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 499.931930] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 1
[ 500.034591] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 500.034680] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 2
[ 500.130398] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 500.130398] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 3
[ 500.224886] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 500.224886] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 4
[ 500.319283] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 500.319283] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16)
[ 500.319412] wd0d: error reading fsbn 16 of 16-31 (wd0 bn 16; cn 0 tn
0 sn 16)
[ 500.422383] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 500.422383] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 0
[ 500.516606] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 500.516698] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 1
[ 500.611181] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 500.611181] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 2
[ 500.705931] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 500.705931] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 3
[ 500.799715] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 500.799715] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 4
[ 500.894204] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 500.894204] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0)
[ 500.894336] wd0d: error reading fsbn 0 of 0-15 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 500.997126] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 500.997126] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 0
[ 501.091526] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 501.091526] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 1
[ 501.186013] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 501.186013] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 2
[ 501.280412] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 501.280412] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 3
[ 501.374371] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 501.374371] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 4
[ 501.469561] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 501.469561] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8)
[ 501.469692] wd0d: error reading fsbn 512 of 512-527 (wd0 bn 512; cn
0 tn 8 sn 8)
[ 501.577408] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 501.590856] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 0
[ 501.694484] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 501.694572] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 1
[ 501.789058] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 501.789189] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 2
[ 501.883457] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 501.883457] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 3
[ 501.977857] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 501.977857] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2), xfer f5c, retry 4
[ 502.071552] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 502.071552] wd0d: device timeout reading fsbn 128 of 128-143 (wd0 bn
128; cn 0 tn 2 sn 2)
[ 502.071681] wd0d: error reading fsbn 128 of 128-143 (wd0 bn 128; cn
0 tn 2 sn 2)
[ 502.179750] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 502.179750] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 0
[ 502.274413] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 502.274413] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 1
[ 502.369076] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 502.369076] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 2
[ 502.463387] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 502.463387] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 3
[ 502.556906] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 502.556906] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16), xfer f5c, retry 4
[ 502.651306] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 502.651306] wd0d: device timeout reading fsbn 16 of 16-31 (wd0 bn
16; cn 0 tn 0 sn 16)
[ 502.651440] wd0d: error reading fsbn 16 of 16-31 (wd0 bn 16; cn 0 tn
0 sn 16)
[ 502.758890] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 502.758890] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 0
[ 502.853288] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 502.853288] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 1
[ 502.947862] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 502.947862] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 2
[ 503.042702] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 503.042702] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 3
[ 503.137100] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 503.137100] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 4
[ 503.231411] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 503.231411] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0)
[ 503.231544] wd0d: error reading fsbn 0 of 0-15 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 503.334687] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 503.334687] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 0
[ 503.429175] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 503.442974] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 1
[ 503.548096] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 503.548096] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 2
[ 503.642583] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 503.642583] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 3
[ 503.737158] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 503.737158] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8), xfer f5c, retry 4
[ 503.831557] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 503.831557] wd0d: device timeout reading fsbn 512 of 512-527 (wd0 bn
512; cn 0 tn 8 sn 8)
[ 503.834899] wd0d: error reading fsbn 512 of 512-527 (wd0 bn 512; cn
0 tn 8 sn 8)
[ 503.963399] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 503.963509] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 504.058852] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 504.058852] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 504.153603] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 504.153603] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 504.248003] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 504.248003] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 504.342050] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 504.342050] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 504.436449] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 504.436449] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 504.436576] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 504.540515] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 504.540515] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 504.635091] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 504.635091] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 504.729489] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 504.729489] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 504.824152] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 504.824152] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 504.918024] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 504.918024] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 505.012422] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 505.012422] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 505.012549] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 505.114822] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 505.114822] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 0
[ 505.209131] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 505.209131] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 1
[ 505.303530] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 505.303530] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 2
[ 505.398192] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 505.398192] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 3
[ 505.492855] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 505.492855] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0), xfer f5c, retry 4
[ 505.587254] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 505.587254] wd0d: device timeout reading fsbn 0 of 0-15 (wd0 bn 0;
cn 0 tn 0 sn 0)
[ 505.590506] wd0d: error reading fsbn 0 of 0-15 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 517.149544] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 517.149544] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 517.243064] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 517.243064] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 517.336585] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 517.336585] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 517.430192] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 517.430192] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 517.523888] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 517.523888] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 517.617585] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 517.617585] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 517.617585] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 535.377157] umass0: BBB reset failed, TIMEOUT
[ 535.942409] umass0: Invalid CSW: sig 0x43425355 should be 0x53425355
[ 537.159047] umass0: BBB reset failed, TIMEOUT
[ 537.185504] umass0: Invalid CSW: sig 0x43425355 should be 0x53425355
[ 538.402055] umass0: BBB reset failed, TIMEOUT
[ 538.407505] sd0a: error writing fsbn 2848 of 2848-2879 (sd0 bn 4896;
cn 2 tn 25 sn 0)
[ 539.601116] umass0: BBB reset failed, TIMEOUT
[ 541.759107] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 541.759107] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 541.853507] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 541.853507] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 541.947995] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 541.947995] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 542.042304] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 542.042304] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 542.135912] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 542.135912] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 542.230311] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 542.230311] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 542.230311] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 542.321369] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 542.321369] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 542.415768] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 542.415768] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 542.510255] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 542.510255] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 542.604742] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 542.604742] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 542.699141] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 542.699141] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 542.793452] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 542.793452] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 542.793452] wd0d: error writing fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 545.473100] wd0: autoconfiguration error: wd_flushcache:
status=0x5128<TIMEOU>
[ 547.774360] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 547.774360] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 547.867880] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 547.867880] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 547.961312] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 547.961312] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 548.054920] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 548.054920] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 548.148440] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 548.148440] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 548.241961] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 548.241961] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 548.241961] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 558.375785] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 558.375785] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 558.469832] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 558.469832] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 558.563704] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 558.563704] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 558.657841] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 558.657841] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 558.751535] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 558.751535] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 558.845318] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 558.845318] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 558.845318] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 575.646839] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 575.646839] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 575.740887] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 575.740887] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 575.834758] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 575.834758] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 575.928630] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 575.928630] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 576.022413] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 576.022413] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 576.116373] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 576.116373] wd0d: device timeout reading fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 576.116373] wd0d: error reading fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 576.206992] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 576.206992] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 0
[ 576.300865] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 576.300865] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 1
[ 576.395263] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 576.395263] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 2
[ 576.489486] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 576.489486] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 3
[ 576.583269] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 576.583269] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0), xfer f5c, retry 4
[ 576.677229] piixide0:0:0: not ready, st=0xd0, err=0x00
[ 576.677229] wd0d: device timeout writing fsbn 0 (wd0 bn 0; cn 0 tn 0
sn 0)
[ 576.677229] wd0d: error writing fsbn 0 (wd0 bn 0; cn 0 tn 0 sn 0)
[ 579.371028] wd0: autoconfiguration error: wd_flushcache:
status=0x5128<TIMEOU>
[ 719.910071] umass0: BBB reset failed, TIMEOUT
[ 720.293380] umass0: Invalid CSW: sig 0x43425355 should be 0x53425355
[ 721.512041] umass0: BBB reset failed, TIMEOUT
[ 721.542452] umass0: Invalid CSW: sig 0x43425355 should be 0x53425355
[ 722.762082] umass0: BBB reset failed, TIMEOUT
[ 722.769463] sd0a: error writing fsbn 2848 of 2848-2879 (sd0 bn 4896;
cn 2 tn 25 sn 0)
[ 723.968084] umass0: BBB reset failed, TIMEOUT
[ 7056.647474] umass0: BBB reset failed, TIMEOUT
[ 7057.025772] umass0: Invalid CSW: sig 0x43425355 should be 0x53425355
[ 7058.248388] umass0: BBB reset failed, TIMEOUT
[ 7058.281788] umass0: Invalid CSW: sig 0x43425355 should be 0x53425355
[ 7059.504404] umass0: BBB reset failed, TIMEOUT
[ 7059.516886] sd0a: error writing fsbn 2848 of 2848-2879 (sd0 bn 4896;
cn 2 tn 25 sn 0)
[ 7060.719462] umass0: BBB reset failed, TIMEOUT
netbsd-nuc#
Thanks so much
Regards.
Ramiro.
Home |
Main Index |
Thread Index |
Old Index