NetBSD-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: install/58932: NetBSD-10.99.12-i386-install.img ACPI problems Compal DL-75 laptop
The following reply was made to PR install/58932; it has been noted by GNATS.
From: Ramiro Aceves <ea1abz%gmail.com@localhost>
To: Taylor R Campbell <riastradh%NetBSD.org@localhost>
Cc: gnats-bugs%netbsd.org@localhost, install-manager%netbsd.org@localhost,
gnats-admin%netbsd.org@localhost, netbsd-bugs%netbsd.org@localhost
Subject: Re: install/58932: NetBSD-10.99.12-i386-install.img ACPI problems
Compal DL-75 laptop
Date: Tue, 24 Dec 2024 08:57:59 +0100
El 23/12/24 a las 22:58, Taylor R Campbell escribió:
>> Date: Mon, 23 Dec 2024 09:10:01 +0000 (UTC)
>> From: ea1abz%gmail.com@localhost
>>
>> The dmesg booting and panic screen (I do not know a way to record
>> that in a file, sorry):
>
> You may be able to:
>
> 1. boot in the way that crashes
> 2. type `reboot' (or `sync') at the ddb prompt
> 3. boot in the way that works
> 4. run `dmesg' (or check /var/run/dmesg.boot)
>
> This should have the previous boot's dmesg at the beginning, as long
> as it is a reboot or reset and not power-off and power-on.
Oh, thanks so much Taylor. I have pasted dmesg obtained that way at the
end of this report (first with the crash with ACPI ON and second the
good one with ACPI OFF).
Now I have some doubts as NetBSD newbie before I can continue. In order
to do patching to the installer kernel on the USB flash drive, having in
mind that the installed system in the hard disk on the i386 machine is
NetBSD-10.1 (ACPI off to be usable) and we are trying to fix the
installer that is 10.99.12 on a USB dongle:
-Get the NetBSD-current source code on the i386 and compile a kernel.
Then replace the kernel on the USB dongle. Seems to me the most
straightforward, but slower.
-Get the NeBSD-current source code my intel i7 amd64 NetBSD machine and
crosscompile a kernel. Then replace the kernel on the USB dongle.
Quicker but more effort.
When getting the source, should I get the exact version of
NetBSD-current source code that was used in the installer?
Please, tell me if it will work or wether there is a better way.
Thanks so much for your time.
Regards.
Ramiro.
>
>> https://ea4nz.cloudns.cc/hamradio/20241223_084701.jpg
>> [...]
>
> Here's the panic, summarized:
>
> [ 1.7092374] panic: cpu0: time has not advanced in 1501 heartbeats
> [ 1.7092374] cpu0: Begin traceback...
> [ 1.7092374] [...]
> [ 1.7092374] panic
> [ 1.7092374] heartbeat
> [ 1.7092374] hardclock
> [ 1.7092374] --- switch to interrupt stack ---
> [ 1.7092374] Xresume_lapic_timer
> [ 1.7092374] --- interrupt ---
> [ 1.7092374] inl
> [ 1.7092374] AcpiHwRead
> [ 1.7092374] AcpiGetTimer
> [ 1.7092374] acpitimer_read_fast
> [ 1.7092374] binuptime
> [ 1.7092374] microtime
> [ 1.7092374] auich_finish_attach
> [ 1.7092374] config_interrupts_thread
>
> The panic shows that the system timecounter state has not advanced in
> about 15sec. This is weird because the hardclock interrupt seems to
> be firing on cpu0, and that normally advances the system timecounter
> state.
>
> When the heartbeat timer timed out, it was probably in this loop in
> the auich(4) PCI audio driver:
>
> 1646 /* start */
> 1647 kpreempt_disable();
> 1648 microtime(&t1);
> 1649 bus_space_write_1(sc->iot, sc->aud_ioh, ICH_PCMI + ICH_CTRL, ICH_RPBM);
> 1650
> 1651 /* wait */
> 1652 nciv = ociv;
> 1653 do {
> 1654 microtime(&t2);
> 1655 if (t2.tv_sec - t1.tv_sec > 1)
> 1656 break;
> 1657 nciv = bus_space_read_1(sc->iot, sc->aud_ioh,
> 1658 ICH_PCMI + ICH_CIV);
> 1659 } while (nciv == ociv);
> 1660 microtime(&t2);
> 1661
> 1662 /* stop */
> 1663 bus_space_write_1(sc->iot, sc->aud_ioh, ICH_PCMI + ICH_CTRL, 0);
> 1664 kpreempt_enable();
>
> https://nxr.netbsd.org/xref/src/sys/dev/pci/auich.c?r=1.161#1646
>
> Specifically, it was probably in one of the microtime() calls, reading
> out the ACPI timecounter register. I also note that the dmesg
> timestamps have not advanced.
>
> The available timecounters appear to be:
>
> timecounter: Timecounter "i8254" frequency 1193182 Hz quality 100
> timecounter: Timecounter "ACPI-Fast" frequency 3579545 Hz quality 1000
> timecounter: Timecounter "ichlpcib0" frequency 3579545 Hz quality 1000
> timecounter: Timecounter "clockinterrupt" frequency 100 Hz quality 0
>
> This makes me suspect that, in spite of acpi_timer.c's attempts to
> test the ACPI hardware timer before committing to use it, that timer
> is broken -- it's not advancing the timecounter and it's not letting
> auich(4) break out of that loop and it's not moving the dmesg
> timestamps forward.
>
> Unfortunately, there's no userconf(4) trick to disabling the ACPI
> timecounter at boot, but I would be curious to see what happens if you
> patch acpitimer_init in sys/dev/acpi/acpi_timer.c to just return -1
> unconditionally without doing anything to attach a timecounter.
>
> If that produces the same results, you could try additionally patching
> acpipmtimer_attach in sys/dev/ic/acpipmtimer.c to just return NULL
> unconditionally without doing anything to attach a timecounter. Then
> your system might boot with i8254 -- suboptimal, but better than not
> booting, and it would help to confirm this hypothesis about what's
> happening.
>
> I would also be curious to see output of `acpidump -dt' on this system
> (whether from NetBSD, if you can get it that way, or even from Linux
> if you can't, with the caveat I'm not 100% sure the command-line
> options are the same).
************************DMESG ACPI ON *********************************
[ 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.99.12 (GENERIC) #0: Sat Dec 21 07:31:23 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 = 1977 MB
[ 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] 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] cpu0 at mainbus0 apid 0
[ 1.000004] cpu0: Use lfence to serialize rdtsc
[ 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 20240827
[ 1.000004] acpi0: X/RSDT: OemId <INSYDE,RSDT_000,00000100>, AslId
<ABCD,00010200>
[ 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.030545] acpiec0 at acpi0 (EC0, PNP0C09): io 0x62,0x66
[ 1.030545] acpilid0 at acpi0 (LID0, PNP0C0D): ACPI Lid Switch
[ 1.030545] acpibut0 at acpi0 (PWRB, PNP0C0C): ACPI Power Button
[ 1.030545] acpibut1 at acpi0 (SLPB, PNP0C0E): ACPI Sleep Button
[ 1.030545] acpivga0 at acpi0 (GFX0): ACPI Display Adapter
[ 1.030545] acpiout0 at acpivga0 (LCD, 0x0400): ACPI Display Output
Device
[ 1.030545] acpiout1 at acpivga0 (CRT1, 0x0100): ACPI Display Output
Device
[ 1.030545] acpiout2 at acpivga0 (DTV1, 0x0200): ACPI Display Output
Device
[ 1.030545] acpivga0: connected output devices:
[ 1.030545] acpivga0: 0x0100 (acpiout1): Ext. Monitor, head 0,
bios detect
[ 1.030545] acpivga0: 0x0400 (acpiout0): Unknown Output Device,
head 0, bios detect
[ 1.030545] acpivga0: 0x0200 (acpiout2): TV, head 0, bios detect
[ 1.030545] FWHD (INT0800) at acpi0 not configured
[ 1.030545] MATH (PNP0C04) at acpi0 not configured
[ 1.030545] attimer1 at acpi0 (TIMR, PNP0100): io
0x40-0x43,0x50-0x53 irq 0
[ 1.030545] acpiacad0 at acpi0 (ACAD, ACPI0003): ACPI AC Adapter
[ 1.030545] acpibat0 at acpi0 (BAT1, PNP0C0A-1): ACPI Battery
[ 1.030545] pckbc1 at acpi0 (PS2K, PNP0303) (kbd port): io 0x60,0x64
irq 1
[ 1.030545] pckbc2 at acpi0 (PS2M, PNP0F13) (aux port): irq 12
[ 1.030545] apm0 at acpi0: Power Management spec V1.2
[ 1.030545] ACPI: Enabled 4 GPEs in block 00 to 1F
[ 1.030545] pckbd0 at pckbc1 (kbd slot)
[ 1.030545] pckbport_cmd: send error
[ 1.030545] pckbc1: using irq 1 for kbd slot
[ 1.030545] wskbd0 at pckbd0: console keyboard
[ 1.030545] autoconfiguration error: pckbc: aux echo error 1
[ 1.030545] pci0 at mainbus0 bus 0: configuration mode 1
[ 1.030545] pci0: i/o space,ory M^?M^?M^?M^?e enabled, rd/line,
rd/mult, wr/inv ok
[ 1.030545] pchb0 at pci0 dev 0 function 0: Intel
82915PM/GM/GMS,82910GML Host Bridge (rev. 0x04)
[ 1.030545] agp0 at pchb0: i915-family chipset
[ 1.030545] agp0: detected 7932k stolen memory
[ 1.030545] agp0: aperture at 0xa0000000, size 0x10000000
[ 1.030545] i915drmkms0 at pci0 dev 2 function 0: Intel
82915GM/GMS,82910GML Integrated Graphics Device (rev. 0x04)
[ 1.030545] Intel 82915GM/GMS IGD Companion (miscellaneous display,
revision 0x04) at pci0 dev 2 function 1 not configured
[ 1.030545] uhci0 at pci0 dev 29 function 0: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.030545] uhci0: interrupting at ioapic0 pin 23
[ 1.030545] usb0 at uhci0: USB revision 1.0
[ 1.030545] uhci1 at pci0 dev 29 function 1: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.030545] uhci1: interrupting at ioapic0 pin 19
[ 1.030545] usb1 at uhci1: USB revision 1.0
[ 1.030545] uhci2 at pci0 dev 29 function 2: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.030545] uhci2: interrupting at ioapic0 pin 18
[ 1.030545] usb2 at uhci2: USB revision 1.0
[ 1.030545] uhci3 at pci0 dev 29 function 3: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.030545] uhci3: interrupting at ioapic0 pin 16
[ 1.030545] usb3 at uhci3: USB revision 1.0
[ 1.030545] ehci0 at pci0 dev 29 function 7: Intel 82801FB/FR USB
EHCI Controller (rev. 0x04)
[ 1.030545] ehci0: 64-bit DMA - limited
[ 1.030545] ehci0: interrupting at ioapic0 pin 23
[ 1.030545] ehci0: EHCI version 0.0
[ 1.030545] ehci0: wrong number of companions (0 != 4)
[ 1.030545] ehci0: Using DMA subregion for control data structures
[ 1.030545] ehci0: autoconfiguration error: reset timeout
[ 1.030545] ehci0: autoconfiguration error: init failed, error=5
[ 1.030545] ppb0 at pci0 dev 30 function 0: Intel 82801BAM Hub-PCI
Bridge (rev. 0xd4)
[ 1.030545] pci1 at ppb0 bus 1
[ 1.030545] pci1: i/o space, memory space enabled
[ 1.030545] fwohci0 at pci1 dev 0 function 0: VIA Technologies
VT6306 IEEE 1394 Host Controller (rev. 0x80)
[ 1.030545] fwohci0: interrupting at ioapic0 pin 20
[ 1.030545] fwohci0: OHCI version 1.0 (ROM=1)
[ 1.030545] fwohci0: No. of Isochronous channels is 4.
[ 1.030545] fwohci0: EUI64 00:02:3f:59:88:40:01:0f
[ 1.030545] fwohci0: Phy 1394a available S400, 2 ports.
[ 1.030545] fwohci0: Link S400, max_rec 512 bytes.
[ 1.030545] fwohci0: max_rec 512 -> 2048
[ 1.030545] ieee1394if0 at fwohci0: IEEE1394 bus
[ 1.030545] fwip0 at ieee1394if0: IP over IEEE1394
[ 1.030545] fwohci0: Initiate bus reset
[ 1.030545] re0 at pci1 dev 1 function 0: RealTek 8169/8110 Gigabit
Ethernet (rev. 0x10)
[ 1.030545] re0: interrupting at ioapic0 pin 21
[ 1.030545] re0: RTL8169/8110SB (0x1000)
[ 1.030545] re0: Ethernet address 00:0f:b0:93:6f:e1
[ 1.030545] re0: using 256 tx descriptors
[ 1.030545] rgephy0 at re0 phy 7: RTL8211B 1000BASE-T media interface
[ 1.030545] rgephy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX,
1000baseT, 1000baseT-FDX, auto
[ 1.030545] iwi0 at pci1 dev 2 function 0: Intel PRO/Wireless LAN
2200BG Mini-PCI Adapter (rev. 0x05)
[ 1.030545] iwi0: interrupting at ioapic0 pin 22
[ 1.030545] iwi0: 802.11 address 00:13:ce:6b:7d:01
[ 1.030545] cbb0 at pci1 dev 4 function 0: ENE Technology CB710
CardBus Controller (rev. 0x00)
[ 1.030545] ENE Technology product 0530 (flash memory) at pci1 dev 4
function 1 not configured
[ 1.030545] sdhc0 at pci1 dev 4 function 2: ENE Technology
CB712/714/810 PCI SD Card Reader Controller (rev. 0x00)
[ 1.030545] sdhc0: interrupting at ioapic0 pin 17
[ 1.030545] sdhc0: SDHC 1.0, rev 0, caps <01e021a1/00000000>, SDMA,
33000 kHz, HS 3.3V, 512 byte blocks
[ 1.030545] sdmmc0 at sdhc0 slot 0
[ 1.030545] sdhc0: Clear PME# now
[ 1.030545] cbb0: cacheline 0x8 lattimer 0x40
[ 1.030545] cbb0: bhlc 0x824008
[ 1.030545] cbb0: autoconfiguration error: secondary bus number
uninitialized; try PCI_BUS_FIXUP
[ 1.030545] cbb0: interrupting at ioapic0 pin 16
[ 1.030545] cardslot0 at cbb0
[ 1.030545] pcmcia0 at cardslot0
[ 1.030545] auich0 at pci0 dev 30 function 2: i82801FB (ICH6) AC-97
Audio
[ 1.030545] auich0: interrupting at ioapic0 pin 17
[ 1.030545] auich0: ac97: Avance Logic unknown (0x414c4752) codec;
headphone, 20 bit DAC, 18 bit ADC, no 3D stereo
[ 1.030545] auich0: ac97: ext id 0xa07<AC97_23,AMAP,SPDIF,DRA,VRA>
[ 1.030545] Intel 82801FB/FR AC'97 Modem Controller (modem
communications, revision 0x04) at pci0 dev 30 function 3 not configured
[ 1.030545] ichlpcib0 at pci0 dev 31 function 0: Intel 82801FBM
ICH6M LPC Interface Bridge (rev. 0x04)
[ 1.030545] timecounter: Timecounter "ichlpcib0" frequency 3579545
Hz quality 1000
[ 1.030545] ichlpcib0: 24-bit timer
[ 1.030545] tco0 at ichlpcib0: TCO (watchdog) timer configured.
[ 1.030545] tco0: Min/Max interval 1/367 seconds
[ 1.030545] piixide0 at pci0 dev 31 function 1: Intel 82801FB IDE
Controller (ICH6) (rev. 0x04)
[ 1.030545] piixide0: bus-master DMA support present
[ 1.030545] piixide0: primary channel configured to compatibility mode
[ 1.030545] piixide0: primary channel interrupting at ioapic0 pin 14
[ 1.030545] atabus0 at piixide0 channel 0
[ 1.030545] piixide0: secondary channel configured to compatibility mode
[ 1.030545] piixide0: secondary channel interrupting at ioapic0 pin 15
[ 1.030545] atabus1 at piixide0 channel 1
[ 1.030545] ichsmb0 at pci0 dev 31 function 3: Intel 82801FB/FR
SMBus Controller (rev. 0x04)
[ 1.030545] ichsmb0: interrupting at ioapic0 pin 19
[ 1.030545] iic0 at ichsmb0: I2C bus
[ 1.030545] isa0 at ichlpcib0
[ 1.030545] pcppi0 at isa0 port 0x61
[ 1.030545] midi0 at pcppi0: PC speaker
[ 1.030545] sysbeep0 at pcppi0
[ 1.030545] attimer1: attached to pcppi0
[ 1.030545] acpicpu0 at cpu0: ACPI CPU
[ 1.030545] acpicpu0: C1: HLT, lat 0 us, pow 0 mW
[ 1.030545] acpicpu0: C2: I/O, lat 1 us, pow 0 mW
[ 1.030545] acpicpu0: C3: I/O, lat 85 us, pow 0 mW
[ 1.030545] acpicpu0: P0: I/O, lat 110 us, pow 27000 mW, 1867 MHz
[ 1.030545] acpicpu0: P1: I/O, lat 110 us, pow 23000 mW, 1600 MHz
[ 1.030545] acpicpu0: P2: I/O, lat 110 us, pow 20000 mW, 1333 MHz
[ 1.030545] acpicpu0: P3: I/O, lat 110 us, pow 17000 mW, 1067 MHz
[ 1.030545] acpicpu0: P4: I/O, lat 110 us, pow 13000 mW, 800 MHz
[ 1.030545] acpicpu0: T0: I/O, lat 1 us, pow 0 mW, 100 %
[ 1.030545] acpicpu0: T1: I/O, lat 1 us, pow 0 mW, 88 %
[ 1.030545] acpicpu0: T2: I/O, lat 1 us, pow 0 mW, 76 %
[ 1.030545] acpicpu0: T3: I/O, lat 1 us, pow 0 mW, 64 %
[ 1.030545] acpicpu0: T4: I/O, lat 1 us, pow 0 mW, 52 %
[ 1.030545] acpicpu0: T5: I/O, lat 1 us, pow 0 mW, 40 %
[ 1.030545] acpicpu0: T6: I/O, lat 1 us, pow 0 mW, 28 %
[ 1.030545] acpicpu0: T7: I/O, lat 1 us, pow 0 mW, 16 %
[ 1.030545] fwohci0: BUS reset
[ 1.030545] fwohci0: node_id=0xc000ffc0, gen=1, CYCLEMASTER mode
[ 1.030545] ieee1394if0: 1 nodes, maxhop <= 0 cable IRM irm(0) (me)
[ 1.030545] ieee1394if0: bus manager 0
[ 1.030545] WARNING: system needs entropy for security; see entropy(7)
[ 1.030545] timecounter: Timecounter "clockinterrupt" frequency 100
Hz quality 0
[ 1.800550] panic: cpu0: time has not advanced in 1501 heartbeats
[ 1.800550] cpu0: Begin traceback...
[ 1.800550]
vpanic(c14353b4,db76cf04,db76cf4c,c0d71922,c14353b4,c16517a4,5dd,db76cf58,c04c573f,c44bb4c0)
at netbsd:vpanic+0x176
[ 1.800550]
panic(c14353b4,c16517a4,5dd,db76cf58,c04c573f,c44bb4c0,0,5dc,5dc,f) at
netbsd:panic+0x18
[ 1.800550]
heartbeat(dc9a3ee4,0,5dd,0,c44ab100,dc9a3f60,dc9a3f78,c0102fd4,dc9a3ee4,dc9a3ee4)
at netbsd:heartbeat+0x292
[ 1.800550] hardclock(dc9a3ee4,dc9a3ee4,0,0,0,0,0,0,0,0) at
netbsd:hardclock+0x79
[ 1.800550] --- switch to interrupt stack ---
[ 1.800550] Xresume_lapic_ltimer() at netbsd:Xresume_lapic_ltimer+0x24
[ 1.800550] --- interrupt ---
[ 1.800550]
bus_space_read_1(c44a5400,10,c01020f3,c44bb4c0,c44bb4c0,c44bb4c0,c0db660b,0,c0102011,c44bb4c0)
at netbsd:bus_space_read_1+0x14
[ 1.800550]
config_interrupts_thread(c44bb4c0,1a2b000,1a37000,0,c01005a8,0,0,0,0,0)
at netbsd:config_interrupts_thread+0x7f
[ 1.800550] cpu0: End traceback...
[ 1.800550] fatal breakpoint trap in supervisor mode
[ 1.800550] trap type 1 code 0 eip 0xc0128094 cs 0x8 eflags 0x202
cr2 0 ilevel 0x7 esp 0xdb76cee8
[ 1.800550] curlwp 0xc44bb4c0 pid 0 lid 103 lowest kstack 0xdc9a12c0
rebooting...
************************DMESG ACPI OFF *********************************
[ 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.99.12 (GENERIC) #0: Sat Dec 21 07:31:23 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 = 1977 MB
[ 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] mainbus0 (root)
[ 1.000004] cpu0 at mainbus0
[ 1.000004] ACPI Error: AE_BAD_PARAMETER, Thread 3244851456 could
not acquire Mutex [ACPI_MTX_Tables] (0x2) (20240827/utmutex-326)
[ 1.000004] cpu0: Use lfence to serialize rdtsc
[ 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] pci0 at mainbus0 bus 0: configuration mode 1
[ 1.000004] pci0: i/o space, memory space enabled, rd/line, rd/mult,
wr/inv ok
[ 1.000004] pchb0 at pci0 dev 0 function 0: Intel
82915PM/GM/GMS,82910GML Host Bridge (rev. 0x04)
[ 1.000004] agp0 at pchb0: i915-family chipset
[ 1.000004] agp0: detected 7932k stolen memory
[ 1.000004] agp0: aperture at 0xa0000000, size 0x10000000
[ 1.000004] i915drmkms0 at pci0 dev 2 function 0: Intel
82915GM/GMS,82910GML Integrated Graphics Device (rev. 0x04)
[ 1.000004] Intel 82915GM/GMS IGD Companion (miscellaneous display,
revision 0x04) at pci0 dev 2 function 1 not configured
[ 1.000004] uhci0 at pci0 dev 29 function 0: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.000004] uhci0: interrupting at irq 7
[ 1.000004] usb0 at uhci0: USB revision 1.0
[ 1.000004] uhci1 at pci0 dev 29 function 1: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.000004] uhci1: interrupting at irq 3
[ 1.000004] usb1 at uhci1: USB revision 1.0
[ 1.000004] uhci2 at pci0 dev 29 function 2: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.000004] uhci2: interrupting at irq 11
[ 1.000004] usb2 at uhci2: USB revision 1.0
[ 1.000004] uhci3 at pci0 dev 29 function 3: Intel 82801FB/FR USB
UHCI Controller (rev. 0x04)
[ 1.000004] uhci3: interrupting at irq 11
[ 1.000004] usb3 at uhci3: USB revision 1.0
[ 1.000004] ehci0 at pci0 dev 29 function 7: Intel 82801FB/FR USB
EHCI Controller (rev. 0x04)
[ 1.000004] ehci0: 64-bit DMA - limited
[ 1.000004] ehci0: interrupting at irq 7
[ 1.000004] ehci0: EHCI version 1.0
[ 1.000004] ehci0: 4 companion controllers, 2 ports each: uhci0
uhci1 uhci2 uhci3
[ 1.000004] ehci0: Using DMA subregion for control data structures
[ 1.000004] usb4 at ehci0: USB revision 2.0
[ 1.000004] ppb0 at pci0 dev 30 function 0: Intel 82801BAM Hub-PCI
Bridge (rev. 0xd4)
[ 1.000004] pci1 at ppb0 bus 1
[ 1.000004] pci1: i/o space, memory space enabled
[ 1.000004] fwohci0 at pci1 dev 0 function 0: VIA Technologies
VT6306 IEEE 1394 Host Controller (rev. 0x80)
[ 1.000004] fwohci0: interrupting at irq 10
[ 1.000004] fwohci0: OHCI version 1.0 (ROM=1)
[ 1.000004] fwohci0: No. of Isochronous channels is 4.
[ 1.000004] fwohci0: EUI64 00:02:3f:59:88:40:01:0f
[ 1.000004] fwohci0: Phy 1394a available S400, 2 ports.
[ 1.000004] fwohci0: Link S400, max_rec 512 bytes.
[ 1.000004] fwohci0: max_rec 512 -> 2048
[ 1.000004] ieee1394if0 at fwohci0: IEEE1394 bus
[ 1.000004] fwip0 at ieee1394if0: IP over IEEE1394
[ 1.000004] fwohci0: Initiate bus reset
[ 1.000004] re0 at pci1 dev 1 function 0: RealTek 8169/8110 Gigabit
Ethernet (rev. 0x10)
[ 1.000004] re0: interrupting at irq 11
[ 1.000004] re0: RTL8169/8110SB (0x1000)
[ 1.000004] re0: Ethernet address 00:0f:b0:93:6f:e1
[ 1.000004] re0: using 256 tx descriptors
[ 1.000004] rgephy0 at re0 phy 7: RTL8211B 1000BASE-T media interface
[ 1.000004] rgephy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX,
1000baseT, 1000baseT-FDX, auto
[ 1.000004] iwi0 at pci1 dev 2 function 0: Intel PRO/Wireless LAN
2200BG Mini-PCI Adapter (rev. 0x05)
[ 1.000004] iwi0: interrupting at irq 11
[ 1.000004] iwi0: 802.11 address 00:13:ce:6b:7d:01
[ 1.000004] cbb0 at pci1 dev 4 function 0: ENE Technology CB710
CardBus Controller (rev. 0x00)
[ 1.000004] ENE Technology product 0530 (flash memory) at pci1 dev 4
function 1 not configured
[ 1.000004] sdhc0 at pci1 dev 4 function 2: ENE Technology
CB712/714/810 PCI SD Card Reader Controller (rev. 0x00)
[ 1.000004] sdhc0: interrupting at irq 5
[ 1.000004] sdhc0: SDHC 1.0, rev 0, caps <01e021a1/00000000>, SDMA,
33000 kHz, HS 3.3V, 512 byte blocks
[ 1.000004] sdmmc0 at sdhc0 slot 0
[ 1.000004] cbb0: cacheline 0x8 lattimer 0x40
[ 1.000004] cbb0: bhlc 0x824008
[ 1.000004] cbb0: autoconfiguration error: secondary bus number
uninitialized; try PCI_BUS_FIXUP
[ 1.000004] pci_intr_map: no mapping for pin A (line=ff)
[ 1.000004] cbb0: autoconfiguration error: couldn't map interrupt
[ 1.000004] cardslot0 at cbb0
[ 1.000004] pcmcia0 at cardslot0
[ 1.000004] auich0 at pci0 dev 30 function 2: i82801FB (ICH6) AC-97
Audio
[ 1.000004] auich0: interrupting at irq 5
[ 1.000004] auich0: ac97: Avance Logic unknown (0x414c4752) codec;
headphone, 20 bit DAC, 18 bit ADC, no 3D stereo
[ 1.000004] auich0: ac97: ext id 0xa07<AC97_23,AMAP,SPDIF,DRA,VRA>
[ 1.000004] Intel 82801FB/FR AC'97 Modem Controller (modem
communications, revision 0x04) at pci0 dev 30 function 3 not configured
[ 1.000004] ichlpcib0 at pci0 dev 31 function 0: Intel 82801FBM
ICH6M LPC Interface Bridge (rev. 0x04)
[ 1.000004] timecounter: Timecounter "ichlpcib0" frequency 3579545
Hz quality 1000
[ 1.009861] ichlpcib0: 24-bit timer
[ 1.009861] tco0 at ichlpcib0: TCO (watchdog) timer configured.
[ 1.009861] tco0: Min/Max interval 1/367 seconds
[ 1.009861] piixide0 at pci0 dev 31 function 1: Intel 82801FB IDE
Controller (ICH6) (rev. 0x04)
[ 1.009861] piixide0: bus-master DMA support present
[ 1.009861] piixide0: primary channel configured to compatibility mode
[ 1.009861] piixide0: primary channel interrupting at irq 14
[ 1.009861] atabus0 at piixide0 channel 0
[ 1.009861] piixide0: secondary channel configured to compatibility mode
[ 1.009861] piixide0: secondary channel interrupting at irq 15
[ 1.009861] atabus1 at piixide0 channel 1
[ 1.009861] ichsmb0 at pci0 dev 31 function 3: Intel 82801FB/FR
SMBus Controller (rev. 0x04)
[ 1.009861] ichsmb0: interrupting at irq 3
[ 1.009861] iic0 at ichsmb0: I2C bus
[ 1.009861] isa0 at ichlpcib0
[ 1.009861] pckbc0 at isa0 port 0x60-0x64
[ 1.009861] pckbd0 at pckbc0 (kbd slot)
[ 1.009861] pckbc0: using irq 1 for kbd slot
[ 1.009861] wskbd0 at pckbd0: console keyboard
[ 1.009861] pms0 at pckbc0 (aux slot)
[ 1.009861] pms0: ALPS PS/2 V2 pointing device
[ 1.009861] pckbc0: using irq 12 for aux slot
[ 1.009861] wsmouse0 at pms0 mux 0
[ 1.009861] attimer0 at isa0 port 0x40-0x43
[ 1.009861] pcppi0 at isa0 port 0x61
[ 1.009861] midi0 at pcppi0: PC speaker
[ 1.009861] sysbeep0 at pcppi0
[ 1.009861] attimer0: attached to pcppi0
[ 1.009861] est0 at cpu0: Enhanced SpeedStep
[ 1.009861] fwohci0: BUS reset
[ 1.009861] fwohci0: node_id=0xc000ffc0, gen=1, CYCLEMASTER mode
[ 1.009861] ieee1394if0: 1 nodes, maxhop <= 0 cable IRM irm(0) (me)
[ 1.009861] ieee1394if0: bus manager 0
[ 1.009861] WARNING: system needs entropy for security; see entropy(7)
[ 1.249203] timecounter: Timecounter "clockinterrupt" frequency 100
Hz quality 0
[ 1.587272] auich0: measured ac97 link rate at 48000 Hz
[ 1.587272] audio0 at auich0: playback, capture, full duplex,
independent
[ 1.587272] audio0: slinear_le:16 2ch 48000Hz, blk 1920 bytes (10ms)
for playback
[ 1.587272] audio0: slinear_le:16 2ch 48000Hz, blk 1920 bytes (10ms)
for recording
[ 1.587272] uhub0 at usb0: NetBSD (0x0000) UHCI root hub (0x0000),
class 9/0, rev 1.00/1.00, addr 1
[ 1.587272] uhub0: 2 ports with 2 removable, self powered
[ 1.587272] uhub1 at usb1: NetBSD (0x0000) UHCI root hub (0x0000),
class 9/0, rev 1.00/1.00, addr 1
[ 1.587272] uhub1: 2 ports with 2 removable, self powered
[ 1.587272] uhub2 at usb2: NetBSD (0x0000) UHCI root hub (0x0000),
class 9/0, rev 1.00/1.00, addr 1
[ 1.587272] uhub2: 2 ports with 2 removable, self powered
[ 1.587272] uhub3 at usb3: NetBSD (0x0000) UHCI root hub (0x0000),
class 9/0, rev 1.00/1.00, addr 1
[ 1.587272] uhub3: 2 ports with 2 removable, self powered
[ 1.587272] uhub4 at usb4: NetBSD (0x0000) EHCI root hub (0x0000),
class 9/0, rev 2.00/1.00, addr 1
[ 1.587272] uhub4: 8 ports with 8 removable, self powered
[ 1.597273] IPsec: Initialized Security Association Processing.
[ 1.607273] atapibus0 at atabus0: 2 targets
[ 1.687273] cd0 at atapibus0 drive 1: <TSSTcorpCD/DVDW TS-L632B,
95WK401090, TI33> cdrom removable
[ 1.697274] cd0: 32-bit data port
[ 1.697274] cd0: drive supports PIO mode 4, DMA mode 2, Ultra-DMA
mode 2 (Ultra/33)
[ 1.697274] wd0 at atabus0 drive 0
[ 1.697274] wd0: <IC25N080ATMR04-0>
[ 1.697274] wd0: drive supports 16-sector PIO transfers, LBA48
addressing
[ 1.697274] wd0: 76319 MB, 155061 cyl, 16 head, 63 sec, 512
bytes/sect x 156301488 sectors
[ 2.147282] wd0: 32-bit data port
[ 2.147282] wd0: drive supports PIO mode 4, DMA mode 2, Ultra-DMA
mode 5 (Ultra/100)
[ 2.157281] wd0(piixide0:0:0): using PIO mode 4, Ultra-DMA mode 5
(Ultra/100) (using DMA)
[ 2.157281] cd0(piixide0:0:1): using PIO mode 4, Ultra-DMA mode 2
(Ultra/33) (using DMA)
[ 2.667288] umass0 at uhub4 port 1 configuration 1 interface 0
[ 2.667288] umass0: USB (0x0781) SanDisk 3.2Gen1 (0x5591), rev
2.10/1.00, addr 2
[ 2.667288] umass0: using SCSI over Bulk-Only
[ 2.667288] scsibus0 at umass0: 2 targets, 1 lun per target
[ 2.667288] sd0 at scsibus0 target 0 lun 0: <USB, SanDisk 3.2Gen1,
1.00> disk removable
[ 2.677292] sd0: 58674 MB, 65535 cyl, 16 head, 63 sec, 512
bytes/sect x 120164352 sectors
[ 2.687289] sd0: 114020352 trailing sectors not covered by disklabel
[ 2.977293] ehci0: handing over low speed device on port 5 to uhci2
[ 3.037294] swwdog0: software watchdog initialized
[ 3.127296] sd0: 114020352 trailing sectors not covered by disklabel
[ 3.137296] sd0: 114020352 trailing sectors not covered by disklabel
[ 3.137296] sd0: 114020352 trailing sectors not covered by disklabel
[ 3.147296] sd0: 114020352 trailing sectors not covered by disklabel
[ 3.147296] WARNING: 2 errors while detecting hardware; check system
log.
[ 3.147296] boot device: sd0
[ 3.147296] root on sd0a dumps on sd0b
[ 3.157296] sd0: 114020352 trailing sectors not covered by disklabel
[ 3.157296] root file system type: ffs
[ 3.157296] kern.module.path=/stand/i386/10.99.12/modules
[ 3.167306] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 3.167306] [drm] Driver supports precise vblank timestamp query.
[ 3.167306] i915drmkms0: interrupting at irq 11 (i915drmkms0)
[ 3.197297] [drm] Initialized overlay support.
[ 3.197297] [drm] Initialized i915 1.6.0 20200114 for i915drmkms0 on
minor 0
[ 3.337301] intelfb0 at i915drmkms0
[ 3.337301] [drm] DRM_I915_DEBUG enabled
[ 3.347314] [drm] DRM_I915_DEBUG_GEM enabled
[ 3.347314] intelfb0: framebuffer at 0xa0009000, size 1280x800,
depth 32, stride 5120
[ 4.017310] wsdisplay0 at intelfb0 kbdmux 1: console (default, vt100
emulation), using wskbd0
[ 4.017310] wsmux1: connecting to wsdisplay0
[ 4.357316] entropy: best effort
[ 4.977324] uhidev0 at uhub2 port 1 configuration 1 interface 0
[ 4.977324] uhidev0: Alcor Micro (0x0566) product 3004 (0x3004), rev
1.10/1.00, addr 2, iclass 3/1
[ 4.987324] ukbd0 at uhidev0
[ 4.987324] wskbd1 at ukbd0 mux 1
[ 4.987324] wskbd1: connecting to wsdisplay0
[ 4.987324] uhidev1 at uhub2 port 1 configuration 1 interface 1
[ 4.987324] uhidev1: Alcor Micro (0x0566) product 3004 (0x3004), rev
1.10/1.00, addr 2, iclass 3/0
[ 5.027324] uhidev1: 4 report ids
[ 5.027324] uhid0 at uhidev1 reportid 2: input=1, output=0, feature=0
[ 5.027324] uhid1 at uhidev1 reportid 3: input=3, output=0, feature=0
[ 5.027324] uhid2 at uhidev1 reportid 4: input=1, output=0, feature=0
Home |
Main Index |
Thread Index |
Old Index