Sorry for the last email which was a mess.
Mike Larkin <[email protected]> wrote:
> On Fri, Apr 10, 2026 at 02:51:44AM -0700, Mike Larkin wrote:
> > On Fri, Apr 10, 2026 at 09:32:26AM +0000, Ali Farzanrad wrote:
> > > Hello all,
> > >
> > > In my Minisforum UM790 Pro Mini PC, after running llama-cli it stuck at
> > > loading stage and my system gets very slow (it takes 4-5 seconds until I
> > > see the character after I press a key in xterm). However after
> > > disabling the amdgpu in /etc/bsd.re-config file I have no such problem.
> > >
> > > How can I debug the problem?
> > >
> >
> > what model are you using and what quantization? also please paste the
> > llama-cli/llama-server output.
I have these models:
Meta-Llama-3-8B-Instruct-Q4_K_M.gguf 4.6G
Meta-Llama-3.1-8B-Instruct-Q5_K_M.gguf 5.3G
I don't know how to check the parameters, but I hope they are correct.
Here are the outputs from llama-cli when AMDGPU is disabled:
$ (ulimit -d $(ulimit -Hd) && llama-cli -m Meta-Llama-3-8B-Instruct-Q4_K_M.gguf
-c 0)
load_backend: loaded CPU backend from /usr/local/lib/libggml-cpu-zen4.so
Loading model...
...LLAMA MARK...
build : b0-unknown
model : Meta-Llama-3-8B-Instruct-Q4_K_M.gguf
modalities : text
available commands:
/exit or Ctrl+C stop or exit
/regen regenerate the last response
/clear clear the chat history
/read <file> add a text file
/glob <pattern> add text files using globbing pattern
> /exit
Exiting...
llama_memory_breakdown_print: | memory breakdown [MiB] | total free self
model context compute unaccounted |
llama_memory_breakdown_print: | - Host | 5983 =
4685 + 1024 + 274 |
llama_memory_breakdown_print: | - CPU_REPACK | 3204 =
3204 + 0 + 0 |
$ (ulimit -d $(ulimit -Hd) && llama-cli -m
Meta-Llama-3.1-8B-Instruct-Q5_K_M.gguf -c 0)
load_backend: loaded CPU backend from /usr/local/lib/libggml-cpu-zen4.so
Loading model...
...LLAMA MARK...
build : b0-unknown
model : Meta-Llama-3.1-8B-Instruct-Q5_K_M.gguf
modalities : text
available commands:
/exit or Ctrl+C stop or exit
/regen regenerate the last response
/clear clear the chat history
/read <file> add a text file
/glob <pattern> add text files using globbing pattern
> /exit
Exiting...
llama_memory_breakdown_print: | memory breakdown [MiB] | total free self
model context compute unaccounted |
llama_memory_breakdown_print: | - Host | 22267
= 5459 + 16384 + 424 |
And here are outputs when AMDGPU is enabled:
$ (ulimit -d $(ulimit -Hd) && llama-cli -m Meta-Llama-3-8B-Instruct-Q4_K_M.gguf
-c 0)
load_backend: loaded Vulkan backend from /usr/local/lib/libggml-vulkan.so
load_backend: loaded CPU backend from /usr/local/lib/libggml-cpu-zen4.so
Loading model...
...LLAMA MARK...
build : b0-unknown
model : Meta-Llama-3-8B-Instruct-Q4_K_M.gguf
modalities : text
available commands:
/exit or Ctrl+C stop or exit
/regen regenerate the last response
/clear clear the chat history
/read <file> add a text file
/glob <pattern> add text files using globbing pattern
> /exit
Exiting...
llama_memory_breakdown_print: | memory breakdown [MiB] | total
free self model context compute unaccounted |
llama_memory_breakdown_print: | - Vulkan0 (780M (RADV PHOENIX)) | 17263 =
11002 + (5693 = 4403 + 1024 + 266) + 567 |
llama_memory_breakdown_print: | - Host |
313 = 281 + 0 + 32 |
$ (ulimit -d $(ulimit -Hd) && llama-cli -m
Meta-Llama-3.1-8B-Instruct-Q5_K_M.gguf -c 0)
load_backend: loaded Vulkan backend from /usr/local/lib/libggml-vulkan.so
load_backend: loaded CPU backend from /usr/local/lib/libggml-cpu-zen4.so
Loading model... \
^C^Z^Z^Z[1] + Suspended ulimit -d $(ulimit -Hd) && llama-cli -m
Meta-Ll
I was lucky that time to be able to suspend the job; most of the time I
couldn't (even `pkill -9 llama-cli` couldn't stop the job).
However eventhough I managed suspending the job that time, my system was
still too slow.
> > I have basically the same machine and it sometimes does lock up like this
> > sometimes if I attempt to use Q8 GGUFs ; only Q4_K_M seem to work reliably
> > but my machine does have 128GB RAM.
> >
> > Also note you'll need to set your ulimit VERY high, like > 32GB for most
> > larger sized models (or for any model with large context windows).
> >
> > >From my notes, on my similar amdgpu hardware (with 128GB), these models
> > had the following results:
> >
> > nemotron-3-nano-30B-q4_K_M : 19.6
> > tok/s
> > unsloth/Nemotron-3-Nano-30B-A3B-GGUF:Q4_K_M : 22.1
> > tok/s
> > unsloth/Nemotron-3-Nano-30B-A3B-GGUF:Q8_0 : 12.0
> > tok/s (good accuracy)
> > AdrienBrault/Nemotron-Cascade-2-30B-A3B-Q5_1-GGUF : 22.2
> > tok/s
> > unsloth/gpt-oss-120b-GGUF:Q4_K_M : fail
> > (hang 100% cpu)
> > unsloth/gpt-oss-20b-GGUF:Q4_K_M
> > : 23.5 tok/s
> > unsloth/GLM-4.7-Flash-GGUF:Q4_K_M : 17.7
> > tok/s
> > Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q8_0 : 2.0
> > tok/s
> > Jackrong/Qwen3.5-27B-Claude-4.6-Opus-Reasoning-Distilled-GGUF:Q4_K_M
> > : 3.0 tok/s (hallu)
> > unsloth/Qwen3.5-35B-A3B-GGUF:Q4_K_M : 12.5
> > tok/s (hallu)
> > unsloth/Qwen3.5-35B-A3B-GGUF:Q8_0 : fail
> > (hang 100% cpu)
> >
> > (hallu == model had mild hallucination)
> >
> > A couple more notes -
> >
> > 1. The Ryzen AI MAX 395 is a much better machine for this sort of thing.
> > It generally gets 2-3x the tok/s rate and tends to work well with a wider
> > variety of models.
> >
> > 2. llama.cpp is under rapid continual development; I found that building my
> > own from github usually makes better executables. It builds cleanly under
> > OpenBSD just make sure to enable Vulkan when you build it.
> >
>
> one more thing - you will be MUCH happier with MoE models on this hardware
> than
> dense models. Dense models will get you pathetic tok/s .
>
> > -ml
> >
> >
> > > Here is top output when amdgpu is enabled:
> > A>
> > > $ top > top1; cat top1
> > > load averages: 6.37, 2.63, 1.06 home.arpa 10:51:41
> > > 57 processes: 53 idle, 4 on processor up 0 days 00:03:27
> > > CPU00 states: 0.1% user, 0.0% nice, 8.6% sys, 62.0% spin, 0.4% intr,
> > > 29.0% idle
> > > CPU01 states: 3.2% user, 0.0% nice, 14.9% sys, 48.9% spin, 0.0% intr,
> > > 33.0% idle
> > > CPU02 states: 3.9% user, 0.0% nice, 18.8% sys, 45.9% spin, 0.0% intr,
> > > 31.4% idle
> > > CPU03 states: 2.3% user, 0.0% nice, 7.4% sys, 48.9% spin, 0.0% intr,
> > > 41.4% idle
> > > CPU04 states: 0.3% user, 0.0% nice, 14.4% sys, 40.5% spin, 0.0% intr,
> > > 44.8% idle
> > > CPU05 states: 0.3% user, 0.0% nice, 2.9% sys, 45.8% spin, 0.0% intr,
> > > 51.0% idle
> > > CPU06 states: 0.2% user, 0.0% nice, 11.6% sys, 42.7% spin, 0.0% intr,
> > > 45.5% idle
> > > CPU07 states: 0.0% user, 0.0% nice, 6.4% sys, 36.4% spin, 0.0% intr,
> > > 57.2% idle
> > > Memory: Real: 4428M/20G act/tot Free: 8766M Cache: 114M Swap: 0K/0K
> > >
> > > PID USERNAME PRI NICE SIZE RES STATE WAIT TIME CPU
> > > COMMAND
> > > 87249 ali 28 0 2852K 3228K onproc/0 - 2:12 106.05% tmux
> > > 28478 _x11 2 0 80M 16M sleep/0 kqread 1:21 60.64% Xorg
> > > 38874 ali 2 0 8772K 3672K sleep/1 kqread 1:09 56.05% xterm
> > > 57329 ali 28 0 968K 1816K onproc/1 - 0:13 49.17% top
> > > 15017 ali -18 0 74M 418M onproc/1 pmrwait 1:23 48.54%
> > > llama-cli
> > > 60103 root 2 0 1084K 968K sleep/6 kqread 0:35 25.20% slaacd
> > > 18391 _slaacd 2 0 1096K 1032K sleep/4 kqread 0:35 25.10% slaacd
> > > 16227 _slaacd 10 0 1084K 1084K sleep/5 sysctll 0:13 9.52% slaacd
> > > 71257 ali 18 0 1400K 980K sleep/7 sigsusp 0:07 6.05% ksh
> > > 64698 _ntp -12 -20 1172K 1312K onproc/6 - 0:04 1.95% ntpd
> > > 72402 _syslogd 2 0 1524K 1240K sleep/2 kqread 0:01 1.81%
> > > syslogd
> > > 76871 _tor 2 0 222M 112M sleep/1 kqread 0:16 1.46% tor
> > > 92864 _pflogd 4 0 1024K 876K sleep/5 bpf 0:01 1.17% pflogd
> > > 76148 root 2 0 1140K 964K idle kqread 0:02 0.73% cron
> > > 81357 _unwind 2 0 6720K 952K sleep/6 kqread 0:00 0.00% unwind
> > > 29984 root 10 0 3176K 684K idle wait 0:00 0.00% xenodm
> > > 16171 ali 2 0 2320K 640K idle kqread 0:00 0.00% cwm
> > > 39599 _smtpq 2 0 1752K 692K idle kqread 0:00 0.00% smtpd
> > >
> > > Here is top output when amdgpu is disabled:
> > >
> > > $ top > top2; cat top2
> > > load averages: 0.25, 0.21, 0.09 home.arpa 11:17:58
> > > 57 processes: 55 idle, 2 on processor up 0 days 00:03:29
> > > CPU00 states: 2.0% user, 0.0% nice, 2.2% sys, 1.5% spin, 1.4% intr,
> > > 93.0% idle
> > > CPU01 states: 7.5% user, 0.0% nice, 5.1% sys, 1.8% spin, 0.0% intr,
> > > 85.6% idle
> > > CPU02 states: 8.7% user, 0.0% nice, 6.1% sys, 1.3% spin, 0.0% intr,
> > > 83.8% idle
> > > CPU03 states: 3.9% user, 0.0% nice, 1.4% sys, 0.4% spin, 0.0% intr,
> > > 94.3% idle
> > > CPU04 states: 2.2% user, 0.0% nice, 0.6% sys, 0.2% spin, 0.0% intr,
> > > 96.9% idle
> > > CPU05 states: 1.4% user, 0.0% nice, 0.4% sys, 0.2% spin, 0.0% intr,
> > > 97.9% idle
> > > CPU06 states: 1.4% user, 0.0% nice, 0.3% sys, 0.1% spin, 0.0% intr,
> > > 98.2% idle
> > > CPU07 states: 1.2% user, 0.0% nice, 0.3% sys, 0.0% spin, 0.0% intr,
> > > 98.5% idle
> > > Memory: Real: 450M/11G act/tot Free: 17G Cache: 4373M Swap: 0K/0K
> > >
> > > PID USERNAME PRI NICE SIZE RES STATE WAIT TIME CPU
> > > COMMAND
> > > 54658 ali 37 0 63M 78M onproc/4 - 0:00 1.07%
> > > llama-cli
> > > 30980 _tor 2 0 424M 315M sleep/1 kqread 0:35 0.00% tor
> > > 77278 _x11 2 0 55M 71M sleep/3 kqread 0:01 0.00% Xorg
> > > 89227 ali 2 0 2876K 3412K sleep/1 kqread 0:00 0.00% tmux
> > > 62992 ali 2 0 11M 13M sleep/1 kqread 0:00 0.00% xterm
> > > 12433 _unwind 2 0 7004K 4864K sleep/1 kqread 0:00 0.00% unwind
> > > 9823 root 10 0 3128K 896K idle wait 0:00 0.00% xenodm
> > > 18811 _smtpq 2 0 1752K 860K idle kqread 0:00 0.00% smtpd
> > > 68709 _syslogd 2 0 1524K 1244K sleep/4 kqread 0:00 0.00%
> > > syslogd
> > > 76502 ali 2 0 2296K 896K idle kqread 0:00 0.00% cwm
> > > 65311 ali 18 0 1600K 992K sleep/1 sigsusp 0:00 0.00% ksh
> > > 46678 _slaacd 2 0 1100K 1092K sleep/1 kqread 0:00 0.00% slaacd
> > > 18231 ali 18 0 1532K 984K sleep/5 sigsusp 0:00 0.00% ksh
> > > 39048 _slaacd 2 0 1084K 1064K sleep/2 kqread 0:00 0.00% slaacd
> > > 11499 root 2 0 1080K 940K sleep/2 kqread 0:00 0.00% slaacd
> > > 73630 _ntp 2 -20 1168K 1464K sleep/5 kqread 0:00 0.00% ntpd
> > > 86117 _smtpd 2 0 2056K 860K idle kqread 0:00 0.00% smtpd
> > > 38526 ali 2 0 2412K 1240K idle kqread 0:00 0.00% tmux
> > >
> > > And here is my dmesg:
> > >
> > > $ dmesg
> > > OpenBSD 7.9-beta (GENERIC.MP) #409: Thu Apr 9 12:43:09 MDT 2026
> > > [email protected]:/usr/src/sys/arch/amd64/compile/GENERIC.MP
> > > real mem = 31909883904 (30431MB)
> > > avail mem = 30914834432 (29482MB)
> > > random: good seed from bootblocks
> > > mpath0 at root
> > > scsibus0 at mpath0: 256 targets
> > > mainbus0 at root
> > > bios0 at mainbus0: SMBIOS rev. 3.5 @ 0x9ab7f000 (45 entries)
> > > bios0: vendor American Megatrends International, LLC. version "1.01" date
> > > 06/05/2023
> > > bios0: Micro Computer (HK) Tech Limited F7BSC
> > > efi0 at bios0: UEFI 2.8
> > > efi0: American Megatrends rev 0x5001d
> > > acpi0 at bios0: ACPI 6.4
> > > acpi0: sleep states S0ix S4 S5
> > > acpi0: tables DSDT FACP SSDT SSDT FIDT MCFG FPDT VFCT BGRT TPM2 SSDT CRAT
> > > CDIT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT WSMT APIC IVRS SSDT
> > > SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT
> > > acpi0: wakeup devices GPP1(S4) GPP0(S4) GPP5(S4) GPP7(S4) GP11(S4)
> > > SWUS(S4) GP12(S4) SWUS(S4)
> > > acpitimer0 at acpi0: 3579545 Hz, 32 bits
> > > acpimcfg0 at acpi0
> > > acpimcfg0: addr 0xe0000000, bus 0-255
> > > acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
> > > cpu0 at mainbus0: apid 0 (boot processor)
> > > cpu0: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.01 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu0: cpuid 1
> > > edx=178bfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT>
> > >
> > > ecx=76f8320b<SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND>
> > > cpu0: cpuid 6 eax=4<ARAT> ecx=1<EFFFREQ>
> > > cpu0: cpuid 7.0
> > > ebx=f1bf97a9<FSGSBASE,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,PQM,AVX512F,AVX512DQ,RDSEED,ADX,SMAP,AVX512IFMA,CLFLUSHOPT,CLWB,AVX512CD,SHA,AVX512BW,AVX512VL>
> > > ecx=405fce<AVX512VBMI,UMIP,PKU> edx=10000000<L1DF>
> > > cpu0: cpuid d.1 eax=f<XSAVEOPT,XSAVEC,XGETBV1,XSAVES>
> > > cpu0: cpuid 80000001 edx=2fd3fbff<NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG>
> > > ecx=75c237ff<LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX>
> > > cpu0: cpuid 80000007 edx=e799<HWPSTATE,ITSC>
> > > cpu0: cpuid 80000008
> > > ebx=791ef257<IBPB,IBRS,STIBP,STIBP_ALL,IBRS_PREF,IBRS_SM,SSBD>
> > > cpu0: cpuid 8000001F eax=1<SME>
> > > cpu0: 32KB 64b/line 8-way D-cache, 32KB 64b/line 8-way I-cache, 1MB
> > > 64b/line 8-way L2 cache, 16MB 64b/line 16-way L3 cache
> > > cpu0: smt 0, core 0, package 0, type P
> > > mtrr: Pentium Pro MTRR support, 8 var ranges, 88 fixed ranges
> > > cpu0: apic clock running at 24MHz
> > > cpu0: mwait min=64, max=64, C-substates=1.1, IBE
> > > cpu1 at mainbus0: apid 2 (application processor)
> > > cpu1: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu1: smt 0, core 1, package 0, type P
> > > cpu2 at mainbus0: apid 4 (application processor)
> > > cpu2: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu2: smt 0, core 2, package 0, type P
> > > cpu3 at mainbus0: apid 6 (application processor)
> > > cpu3: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu3: smt 0, core 3, package 0, type P
> > > cpu4 at mainbus0: apid 8 (application processor)
> > > cpu4: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu4: smt 0, core 4, package 0, type P
> > > cpu5 at mainbus0: apid 10 (application processor)
> > > cpu5: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu5: smt 0, core 5, package 0, type P
> > > cpu6 at mainbus0: apid 12 (application processor)
> > > cpu6: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu6: smt 0, core 6, package 0, type P
> > > cpu7 at mainbus0: apid 14 (application processor)
> > > cpu7: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu7: smt 0, core 7, package 0, type P
> > > cpu8 at mainbus0: apid 1 (application processor)
> > > cpu8: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.01 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu8: smt 1, core 0, package 0, type SP
> > > cpu9 at mainbus0: apid 3 (application processor)
> > > cpu9: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.01 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu9: smt 1, core 1, package 0, type SP
> > > cpu10 at mainbus0: apid 5 (application processor)
> > > cpu10: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.01 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu10: smt 1, core 2, package 0, type SP
> > > cpu11 at mainbus0: apid 7 (application processor)
> > > cpu11: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.01 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu11: smt 1, core 3, package 0, type SP
> > > cpu12 at mainbus0: apid 9 (application processor)
> > > cpu12: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.01 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu12: smt 1, core 4, package 0, type SP
> > > cpu13 at mainbus0: apid 11 (application processor)
> > > cpu13: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.01 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu13: smt 1, core 5, package 0, type SP
> > > cpu14 at mainbus0: apid 13 (application processor)
> > > cpu14: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.01 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu14: smt 1, core 6, package 0, type SP
> > > cpu15 at mainbus0: apid 15 (application processor)
> > > cpu15: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.01 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu15: smt 1, core 7, package 0, type SP
> > > ioapic0 at mainbus0: apid 33 pa 0xfec00000, version 21, 24 pins, can't
> > > remap
> > > ioapic1 at mainbus0: apid 34 pa 0xfec01000, version 21, 32 pins, can't
> > > remap
> > > acpiprt0 at acpi0: bus 0 (PCI0)
> > > acpiprt1 at acpi0: bus 1 (GPP1)
> > > acpiprt2 at acpi0: bus -1 (GPP2)
> > > acpiprt3 at acpi0: bus -1 (GPP0)
> > > acpiprt4 at acpi0: bus -1 (GPP3)
> > > acpiprt5 at acpi0: bus -1 (GPP4)
> > > acpiprt6 at acpi0: bus 2 (GPP5)
> > > acpiprt7 at acpi0: bus -1 (GPP6)
> > > acpiprt8 at acpi0: bus -1 (GPP7)
> > > acpiprt9 at acpi0: bus -1 (GPP8)
> > > acpiprt10 at acpi0: bus -1 (GPP9)
> > > acpiprt11 at acpi0: bus -1 (GPPA)
> > > acpiprt12 at acpi0: bus 3 (GP11)
> > > acpiprt13 at acpi0: bus 99 (GP12)
> > > acpiprt14 at acpi0: bus 195 (GP17)
> > > acpiprt15 at acpi0: bus 196 (GP18)
> > > acpiprt16 at acpi0: bus 197 (GP19)
> > > acpiec0 at acpi0
> > > amdpmc0 at acpi0: PEP_
> > > amdpmc0: SMU program 4 version 76.11.0
> > > acpipci0 at acpi0 PCI0: 0x00000010 0x00000011 0x00000000
> > > acpicmos0 at acpi0
> > > acpibtn0 at acpi0: PWRB
> > > amdgpio0 at acpi0 GPIO uid 0 addr 0xfed81500/0x400 irq 7, 184 pins
> > > tpm0 at acpi0 TPM_: unsupported TPM2 start method 2
> > > "ACPI0010" at acpi0 not configured
> > > acpicpu0 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu1 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu2 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu3 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu4 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu5 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu6 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu7 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu8 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu9 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu10 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu11 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu12 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu13 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu14 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu15 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpipwrres0 at acpi0: P0NV, resource for NVME
> > > acpipwrres1 at acpi0: PWRS, resource for GP11
> > > acpipwrres2 at acpi0: PWRS, resource for SWUS
> > > acpipwrres3 at acpi0: PWRS, resource for GP12
> > > acpipwrres4 at acpi0: PWRS, resource for SWUS
> > > acpipwrres5 at acpi0: PWRS, resource for VGA_
> > > acpipwrres6 at acpi0: PWRS, resource for HDAU
> > > acpipwrres7 at acpi0: PWRS, resource for ACP_
> > > acpipwrres8 at acpi0: PWRS, resource for AZAL
> > > acpipwrres9 at acpi0: PWRS, resource for XHC0
> > > acpipwrres10 at acpi0: PWRS, resource for XHC1
> > > acpipwrres11 at acpi0: PWRS, resource for GP17
> > > acpipwrres12 at acpi0: PWRS, resource for XHC2
> > > acpipwrres13 at acpi0: PWRS, resource for XHC3
> > > acpipwrres14 at acpi0: PWRS, resource for XHC4
> > > acpipwrres15 at acpi0: PWRS, resource for NHI0
> > > acpipwrres16 at acpi0: PWRS, resource for NHI1
> > > acpitz0 at acpi0
> > > acpitz0: critical temperature is 110 degC
> > > acpivideo0 at acpi0: VGA_
> > > acpivout0 at acpivideo0: LCD_
> > > cpu0: 4000 MHz: speeds: 4000 2200 1600 MHz
> > > pci0 at mainbus0 bus 0
> > > ksmn0 at pci0 dev 0 function 0 "AMD 19h/7xh Root Complex" rev 0x00
> > > "AMD 19h/7xh IOMMU" rev 0x00 at pci0 dev 0 function 2 not configured
> > > pchb0 at pci0 dev 1 function 0 "AMD 19h/7xh Host" rev 0x00
> > > ppb0 at pci0 dev 1 function 2 "AMD 19h/7xh PCIE" rev 0x00: msi
> > > pci1 at ppb0 bus 1
> > > nvme0 at pci1 dev 0 function 0 "Samsung PM9A1" rev 0x00: msix, NVMe 1.3
> > > nvme0: Samsung SSD 980 PRO 2TB, firmware 5B2QGXA7, serial S69ENX0W408371F
> > > scsibus1 at nvme0: 2 targets, initiator 0
> > > sd0 at scsibus1 targ 1 lun 0: <NVMe, Samsung SSD 980, 5B2Q>
> > > sd0: 1907729MB, 512 bytes/sector, 3907029168 sectors
> > > pchb1 at pci0 dev 2 function 0 "AMD 19h/7xh Host" rev 0x00
> > > ppb1 at pci0 dev 2 function 1 "AMD 19h/7xh PCIE" rev 0x00: msi
> > > pci2 at ppb1 bus 2
> > > rge0 at pci2 dev 0 function 0 "Realtek RTL8125" rev 0x05: msix: RTL8125B,
> > > address 58:47:ca:71:65:72
> > > pchb2 at pci0 dev 3 function 0 "AMD 19h/7xh Host" rev 0x00
> > > ppb2 at pci0 dev 3 function 1 "AMD 19h/7xh PCIE" rev 0x00: msi
> > > pci3 at ppb2 bus 3
> > > pchb3 at pci0 dev 4 function 0 "AMD 19h/7xh Host" rev 0x00
> > > ppb3 at pci0 dev 4 function 1 "AMD 19h/7xh PCIE" rev 0x00: msi
> > > pci4 at ppb3 bus 99
> > > pchb4 at pci0 dev 8 function 0 "AMD 19h/7xh Host" rev 0x00
> > > ppb4 at pci0 dev 8 function 1 "AMD 19h/7xh PCIE" rev 0x00
> > > pci5 at ppb4 bus 195
> > > amdgpu0 at pci5 dev 0 function 0 "ATI Phoenix" rev 0xc1
> > > drm0 at amdgpu0
> > > amdgpu0: msi
> > > azalia0 at pci5 dev 0 function 1 "ATI Van Gogh HD Audio" rev 0x00: msi
> > > azalia0: no supported codecs
> > > "AMD 19h/7xh PSP" rev 0x00 at pci5 dev 0 function 2 not configured
> > > xhci0 at pci5 dev 0 function 3 "AMD 19h/7xh xHCI" rev 0x00: msix, xHCI
> > > 1.20
> > > usb0 at xhci0: USB revision 3.0
> > > uhub0 at usb0 configuration 1 interface 0 "AMD xHCI root hub" rev
> > > 3.00/1.00 addr 1
> > > xhci1 at pci5 dev 0 function 4 "AMD 19h/7xh xHCI" rev 0x00: msix, xHCI
> > > 1.20
> > > usb1 at xhci1: USB revision 3.0
> > > uhub1 at usb1 configuration 1 interface 0 "AMD xHCI root hub" rev
> > > 3.00/1.00 addr 1
> > > "AMD 17h/1xh I2S Audio" rev 0x63 at pci5 dev 0 function 5 not configured
> > > azalia1 at pci5 dev 0 function 6 "AMD 17h/1xh HD Audio" rev 0x00: msi
> > > azalia1: codecs: Realtek ALC269
> > > audio0 at azalia1
> > > ppb5 at pci0 dev 8 function 2 "AMD 19h/7xh PCIE" rev 0x00
> > > pci6 at ppb5 bus 196
> > > vendor "AMD", unknown product 0x14ec (class instrumentation unknown
> > > subclass 0x00, rev 0x00) at pci6 dev 0 function 0 not configured
> > > "AMD 19h/7xh IPU" rev 0x00 at pci6 dev 0 function 1 not configured
> > > ppb6 at pci0 dev 8 function 3 "AMD 19h/7xh PCIE" rev 0x00
> > > pci7 at ppb6 bus 197
> > > vendor "AMD", unknown product 0x14ec (class instrumentation unknown
> > > subclass 0x00, rev 0x00) at pci7 dev 0 function 0 not configured
> > > xhci2 at pci7 dev 0 function 3 "AMD 19h/7xh xHCI" rev 0x00: msix, xHCI
> > > 1.20
> > > usb2 at xhci2: USB revision 3.0
> > > uhub2 at usb2 configuration 1 interface 0 "AMD xHCI root hub" rev
> > > 3.00/1.00 addr 1
> > > xhci3 at pci7 dev 0 function 4 "AMD 19h/7xh xHCI" rev 0x00: msix, xHCI
> > > 1.20
> > > usb3 at xhci3: USB revision 3.0
> > > uhub3 at usb3 configuration 1 interface 0 "AMD xHCI root hub" rev
> > > 3.00/1.00 addr 1
> > > nhi0 at pci7 dev 0 function 5 "AMD 19h/7xh USB4" rev 0x00: msix, USB4 1.0
> > > nhi1 at pci7 dev 0 function 6 "AMD 19h/7xh USB4" rev 0x00: msix, USB4 1.0
> > > piixpm0 at pci0 dev 20 function 0 "AMD FCH SMBus" rev 0x71: polling
> > > iic0 at piixpm0
> > > iic1 at piixpm0
> > > pcib0 at pci0 dev 20 function 3 "AMD FCH LPC" rev 0x51
> > > pchb5 at pci0 dev 24 function 0 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb6 at pci0 dev 24 function 1 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb7 at pci0 dev 24 function 2 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb8 at pci0 dev 24 function 3 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb9 at pci0 dev 24 function 4 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb10 at pci0 dev 24 function 5 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb11 at pci0 dev 24 function 6 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb12 at pci0 dev 24 function 7 "AMD 19h/7xh Data Fabric" rev 0x00
> > > isa0 at pcib0
> > > isadma0 at isa0
> > > pckbc0 at isa0 port 0x60/5 irq 1 irq 12
> > > pckbd0 at pckbc0 (kbd slot)
> > > wskbd0 at pckbd0: console keyboard
> > > pcppi0 at isa0 port 0x61
> > > spkr0 at pcppi0
> > > vmm0 at mainbus0: SVM/RVI
> > > efifb at mainbus0 not configured
> > > uhub4 at uhub0 port 1 configuration 1 interface 0 "VIA Labs, Inc. USB2.0
> > > Hub" rev 2.10/90.13 addr 2
> > > uhub5 at uhub0 port 2 configuration 1 interface 0 "VIA Labs, Inc. USB2.0
> > > Hub" rev 2.10/90.13 addr 3
> > > uhidev0 at uhub5 port 1 configuration 1 interface 0 "CHERRY CHERRY
> > > Keyboard" rev 2.00/1.02 addr 4
> > > uhidev0: iclass 3/1
> > > ukbd0 at uhidev0: 8 variable keys, 6 key codes
> > > wskbd1 at ukbd0 mux 1
> > > uhidev1 at uhub5 port 1 configuration 1 interface 1 "CHERRY CHERRY
> > > Keyboard" rev 2.00/1.02 addr 4
> > > uhidev1: iclass 3/1, 5 report ids
> > > ukbd1 at uhidev1 reportid 1: 120 variable keys, 0 key codes
> > > wskbd2 at ukbd1 mux 1
> > > uhid0 at uhidev1 reportid 2: input=1, output=0, feature=0
> > > ucc0 at uhidev1 reportid 3: 8192 usages, 20 keys, array
> > > wskbd3 at ucc0 mux 1
> > > uhid1 at uhidev1 reportid 4: input=63, output=63, feature=0
> > > ums0 at uhidev1 reportid 5: 5 buttons, Z and W dir
> > > wsmouse0 at ums0 mux 0
> > > uhidev2 at uhub5 port 2 configuration 1 interface 0 "INSTANT USB GAMING
> > > MOUSE" rev 1.10/1.00 addr 5
> > > uhidev2: iclass 3/1, 1 report id
> > > ums1 at uhidev2 reportid 1: 5 buttons, Z dir
> > > wsmouse1 at ums1 mux 0
> > > uhidev3 at uhub5 port 2 configuration 1 interface 1 "INSTANT USB GAMING
> > > MOUSE" rev 1.10/1.00 addr 5
> > > uhidev3: iclass 3/0, 8 report ids
> > > ucc1 at uhidev3 reportid 2: 669 usages, 20 keys, array
> > > wskbd4 at ucc1 mux 1
> > > ukbd2 at uhidev3 reportid 3: 8 variable keys, 6 key codes
> > > wskbd5 at ukbd2 mux 1
> > > uhid2 at uhidev3 reportid 6: input=2, output=0, feature=0
> > > uhid3 at uhidev3 reportid 7: input=0, output=0, feature=7
> > > uhid4 at uhidev3 reportid 8: input=1, output=0, feature=0
> > > uhub6 at uhub0 port 6 configuration 1 interface 0 "VIA Labs, Inc. USB3.1
> > > Hub" rev 3.20/90.13 addr 6
> > > uhub7 at uhub0 port 7 configuration 1 interface 0 "VIA Labs, Inc. USB3.1
> > > Hub" rev 3.20/90.13 addr 7
> > > uhub8 at uhub2 port 1 configuration 1 interface 0 "Generic USB2.1 Hub"
> > > rev 2.10/2.03 addr 2
> > > uhidev4 at uhub8 port 3 configuration 1 interface 0 "LG Electronics Inc.
> > > LG Monitor Controls" rev 2.00/4.11 addr 3
> > > uhidev4: iclass 3/0
> > > uhid5 at uhidev4: input=64, output=64, feature=64
> > > umodem0 at uhub8 port 3 configuration 1 interface 1 "LG Electronics Inc.
> > > LG Monitor Controls" rev 2.00/4.11 addr 3
> > > umodem0: data interface 2, has no CM over data, has no break
> > > umodem0: status change notification available
> > > ucom0 at umodem0: usb2.1.00003.2
> > > vscsi0 at root
> > > scsibus2 at vscsi0: 256 targets
> > > softraid0 at root
> > > scsibus3 at softraid0: 256 targets
> > > sd1 at scsibus3 targ 1 lun 0: <OPENBSD, SR CRYPTO, 006>
> > > sd1: 409599MB, 512 bytes/sector, 838860272 sectors
> > > root on sd1a (4632fa6cdc48db67.a) swap on sd1b dump on sd1b
> > > amdgpu0: IP DISCOVERY GC 11.0.1 12 CU rev 0x07
> > > amdgpu0: 3840x2160, 32bpp
> > > wsdisplay0 at amdgpu0 mux 1: console (std, vt100 emulation), using wskbd0
> > > wskbd1: connecting to wsdisplay0
> > > wskbd2: connecting to wsdisplay0
> > > wskbd3: connecting to wsdisplay0
> > > wskbd4: connecting to wsdisplay0
> > > wskbd5: connecting to wsdisplay0
> > > wsdisplay0: screen 1-5 added (std, vt100 emulation)
> > > syncing disks... done
> > > r
> > > OpenBSD 7.9-beta (GENERIC.MP) #409: Thu Apr 9 12:43:09 MDT 2026
> > > [email protected]:/usr/src/sys/arch/amd64/compile/GENERIC.MP
> > > real mem = 31909883904 (30431MB)
> > > avail mem = 30914895872 (29482MB)
> > > random: good seed from bootblocks
> > > mpath0 at root
> > > scsibus0 at mpath0: 256 targets
> > > mainbus0 at root
> > > bios0 at mainbus0: SMBIOS rev. 3.5 @ 0x9ab7f000 (45 entries)
> > > bios0: vendor American Megatrends International, LLC. version "1.01" date
> > > 06/05/2023
> > > bios0: Micro Computer (HK) Tech Limited F7BSC
> > > efi0 at bios0: UEFI 2.8
> > > efi0: American Megatrends rev 0x5001d
> > > acpi0 at bios0: ACPI 6.4
> > > acpi0: sleep states S0ix S4 S5
> > > acpi0: tables DSDT FACP SSDT SSDT FIDT MCFG FPDT VFCT BGRT TPM2 SSDT CRAT
> > > CDIT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT WSMT APIC IVRS SSDT
> > > SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT
> > > acpi0: wakeup devices GPP1(S4) GPP0(S4) GPP5(S4) GPP7(S4) GP11(S4)
> > > SWUS(S4) GP12(S4) SWUS(S4)
> > > acpitimer0 at acpi0: 3579545 Hz, 32 bits
> > > acpimcfg0 at acpi0
> > > acpimcfg0: addr 0xe0000000, bus 0-255
> > > acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
> > > cpu0 at mainbus0: apid 0 (boot processor)
> > > cpu0: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu0: cpuid 1
> > > edx=178bfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT>
> > >
> > > ecx=76f8320b<SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND>
> > > cpu0: cpuid 6 eax=4<ARAT> ecx=1<EFFFREQ>
> > > cpu0: cpuid 7.0
> > > ebx=f1bf97a9<FSGSBASE,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,PQM,AVX512F,AVX512DQ,RDSEED,ADX,SMAP,AVX512IFMA,CLFLUSHOPT,CLWB,AVX512CD,SHA,AVX512BW,AVX512VL>
> > > ecx=405fce<AVX512VBMI,UMIP,PKU> edx=10000000<L1DF>
> > > cpu0: cpuid d.1 eax=f<XSAVEOPT,XSAVEC,XGETBV1,XSAVES>
> > > cpu0: cpuid 80000001 edx=2fd3fbff<NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG>
> > > ecx=75c237ff<LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX>
> > > cpu0: cpuid 80000007 edx=e799<HWPSTATE,ITSC>
> > > cpu0: cpuid 80000008
> > > ebx=791ef257<IBPB,IBRS,STIBP,STIBP_ALL,IBRS_PREF,IBRS_SM,SSBD>
> > > cpu0: cpuid 8000001F eax=1<SME>
> > > cpu0: 32KB 64b/line 8-way D-cache, 32KB 64b/line 8-way I-cache, 1MB
> > > 64b/line 8-way L2 cache, 16MB 64b/line 16-way L3 cache
> > > cpu0: smt 0, core 0, package 0, type P
> > > mtrr: Pentium Pro MTRR support, 8 var ranges, 88 fixed ranges
> > > cpu0: apic clock running at 24MHz
> > > cpu0: mwait min=64, max=64, C-substates=1.1, IBE
> > > cpu1 at mainbus0: apid 2 (application processor)
> > > cpu1: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu1: smt 0, core 1, package 0, type P
> > > cpu2 at mainbus0: apid 4 (application processor)
> > > cpu2: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu2: smt 0, core 2, package 0, type P
> > > cpu3 at mainbus0: apid 6 (application processor)
> > > cpu3: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu3: smt 0, core 3, package 0, type P
> > > cpu4 at mainbus0: apid 8 (application processor)
> > > cpu4: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu4: smt 0, core 4, package 0, type P
> > > cpu5 at mainbus0: apid 10 (application processor)
> > > cpu5: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu5: smt 0, core 5, package 0, type P
> > > cpu6 at mainbus0: apid 12 (application processor)
> > > cpu6: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu6: smt 0, core 6, package 0, type P
> > > cpu7 at mainbus0: apid 14 (application processor)
> > > cpu7: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu7: smt 0, core 7, package 0, type P
> > > cpu8 at mainbus0: apid 1 (application processor)
> > > cpu8: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu8: smt 1, core 0, package 0, type SP
> > > cpu9 at mainbus0: apid 3 (application processor)
> > > cpu9: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.01 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu9: smt 1, core 1, package 0, type SP
> > > cpu10 at mainbus0: apid 5 (application processor)
> > > cpu10: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu10: smt 1, core 2, package 0, type SP
> > > cpu11 at mainbus0: apid 7 (application processor)
> > > cpu11: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu11: smt 1, core 3, package 0, type SP
> > > cpu12 at mainbus0: apid 9 (application processor)
> > > cpu12: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.01 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu12: smt 1, core 4, package 0, type SP
> > > cpu13 at mainbus0: apid 11 (application processor)
> > > cpu13: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.01 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu13: smt 1, core 5, package 0, type SP
> > > cpu14 at mainbus0: apid 13 (application processor)
> > > cpu14: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.01 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu14: smt 1, core 6, package 0, type SP
> > > cpu15 at mainbus0: apid 15 (application processor)
> > > cpu15: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.01 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu15: smt 1, core 7, package 0, type SP
> > > ioapic0 at mainbus0: apid 33 pa 0xfec00000, version 21, 24 pins, can't
> > > remap
> > > ioapic1 at mainbus0: apid 34 pa 0xfec01000, version 21, 32 pins, can't
> > > remap
> > > acpiprt0 at acpi0: bus 0 (PCI0)
> > > acpiprt1 at acpi0: bus 1 (GPP1)
> > > acpiprt2 at acpi0: bus -1 (GPP2)
> > > acpiprt3 at acpi0: bus -1 (GPP0)
> > > acpiprt4 at acpi0: bus -1 (GPP3)
> > > acpiprt5 at acpi0: bus -1 (GPP4)
> > > acpiprt6 at acpi0: bus 2 (GPP5)
> > > acpiprt7 at acpi0: bus -1 (GPP6)
> > > acpiprt8 at acpi0: bus -1 (GPP7)
> > > acpiprt9 at acpi0: bus -1 (GPP8)
> > > acpiprt10 at acpi0: bus -1 (GPP9)
> > > acpiprt11 at acpi0: bus -1 (GPPA)
> > > acpiprt12 at acpi0: bus 3 (GP11)
> > > acpiprt13 at acpi0: bus 99 (GP12)
> > > acpiprt14 at acpi0: bus 195 (GP17)
> > > acpiprt15 at acpi0: bus 196 (GP18)
> > > acpiprt16 at acpi0: bus 197 (GP19)
> > > acpiec0 at acpi0
> > > amdpmc0 at acpi0: PEP_
> > > amdpmc0: SMU program 4 version 76.11.0
> > > acpipci0 at acpi0 PCI0: 0x00000010 0x00000011 0x00000000
> > > acpicmos0 at acpi0
> > > acpibtn0 at acpi0: PWRB
> > > amdgpio0 at acpi0 GPIO uid 0 addr 0xfed81500/0x400 irq 7, 184 pins
> > > tpm0 at acpi0 TPM_: unsupported TPM2 start method 2
> > > "ACPI0010" at acpi0 not configured
> > > acpicpu0 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu1 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu2 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu3 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu4 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu5 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu6 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu7 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu8 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu9 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu10 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu11 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu12 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu13 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu14 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu15 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpipwrres0 at acpi0: P0NV, resource for NVME
> > > acpipwrres1 at acpi0: PWRS, resource for GP11
> > > acpipwrres2 at acpi0: PWRS, resource for SWUS
> > > acpipwrres3 at acpi0: PWRS, resource for GP12
> > > acpipwrres4 at acpi0: PWRS, resource for SWUS
> > > acpipwrres5 at acpi0: PWRS, resource for VGA_
> > > acpipwrres6 at acpi0: PWRS, resource for HDAU
> > > acpipwrres7 at acpi0: PWRS, resource for ACP_
> > > acpipwrres8 at acpi0: PWRS, resource for AZAL
> > > acpipwrres9 at acpi0: PWRS, resource for XHC0
> > > acpipwrres10 at acpi0: PWRS, resource for XHC1
> > > acpipwrres11 at acpi0: PWRS, resource for GP17
> > > acpipwrres12 at acpi0: PWRS, resource for XHC2
> > > acpipwrres13 at acpi0: PWRS, resource for XHC3
> > > acpipwrres14 at acpi0: PWRS, resource for XHC4
> > > acpipwrres15 at acpi0: PWRS, resource for NHI0
> > > acpipwrres16 at acpi0: PWRS, resource for NHI1
> > > acpitz0 at acpi0
> > > acpitz0: critical temperature is 110 degC
> > > acpivideo0 at acpi0: VGA_
> > > acpivout0 at acpivideo0: LCD_
> > > cpu0: 4000 MHz: speeds: 4000 2200 1600 MHz
> > > pci0 at mainbus0 bus 0
> > > ksmn0 at pci0 dev 0 function 0 "AMD 19h/7xh Root Complex" rev 0x00
> > > "AMD 19h/7xh IOMMU" rev 0x00 at pci0 dev 0 function 2 not configured
> > > pchb0 at pci0 dev 1 function 0 "AMD 19h/7xh Host" rev 0x00
> > > ppb0 at pci0 dev 1 function 2 "AMD 19h/7xh PCIE" rev 0x00: msi
> > > pci1 at ppb0 bus 1
> > > nvme0 at pci1 dev 0 function 0 "Samsung PM9A1" rev 0x00: msix, NVMe 1.3
> > > nvme0: Samsung SSD 980 PRO 2TB, firmware 5B2QGXA7, serial S69ENX0W408371F
> > > scsibus1 at nvme0: 2 targets, initiator 0
> > > sd0 at scsibus1 targ 1 lun 0: <NVMe, Samsung SSD 980, 5B2Q>
> > > sd0: 1907729MB, 512 bytes/sector, 3907029168 sectors
> > > pchb1 at pci0 dev 2 function 0 "AMD 19h/7xh Host" rev 0x00
> > > ppb1 at pci0 dev 2 function 1 "AMD 19h/7xh PCIE" rev 0x00: msi
> > > pci2 at ppb1 bus 2
> > > rge0 at pci2 dev 0 function 0 "Realtek RTL8125" rev 0x05: msix: RTL8125B,
> > > address 58:47:ca:71:65:72
> > > pchb2 at pci0 dev 3 function 0 "AMD 19h/7xh Host" rev 0x00
> > > ppb2 at pci0 dev 3 function 1 "AMD 19h/7xh PCIE" rev 0x00: msi
> > > pci3 at ppb2 bus 3
> > > pchb3 at pci0 dev 4 function 0 "AMD 19h/7xh Host" rev 0x00
> > > ppb3 at pci0 dev 4 function 1 "AMD 19h/7xh PCIE" rev 0x00: msi
> > > pci4 at ppb3 bus 99
> > > pchb4 at pci0 dev 8 function 0 "AMD 19h/7xh Host" rev 0x00
> > > ppb4 at pci0 dev 8 function 1 "AMD 19h/7xh PCIE" rev 0x00
> > > pci5 at ppb4 bus 195
> > > amdgpu0 at pci5 dev 0 function 0 "ATI Phoenix" rev 0xc1
> > > drm0 at amdgpu0
> > > amdgpu0: msi
> > > azalia0 at pci5 dev 0 function 1 "ATI Van Gogh HD Audio" rev 0x00: msi
> > > azalia0: no supported codecs
> > > "AMD 19h/7xh PSP" rev 0x00 at pci5 dev 0 function 2 not configured
> > > xhci0 at pci5 dev 0 function 3 "AMD 19h/7xh xHCI" rev 0x00: msix, xHCI
> > > 1.20
> > > usb0 at xhci0: USB revision 3.0
> > > uhub0 at usb0 configuration 1 interface 0 "AMD xHCI root hub" rev
> > > 3.00/1.00 addr 1
> > > xhci1 at pci5 dev 0 function 4 "AMD 19h/7xh xHCI" rev 0x00: msix, xHCI
> > > 1.20
> > > usb1 at xhci1: USB revision 3.0
> > > uhub1 at usb1 configuration 1 interface 0 "AMD xHCI root hub" rev
> > > 3.00/1.00 addr 1
> > > "AMD 17h/1xh I2S Audio" rev 0x63 at pci5 dev 0 function 5 not configured
> > > azalia1 at pci5 dev 0 function 6 "AMD 17h/1xh HD Audio" rev 0x00: msi
> > > azalia1: codecs: Realtek ALC269
> > > audio0 at azalia1
> > > ppb5 at pci0 dev 8 function 2 "AMD 19h/7xh PCIE" rev 0x00
> > > pci6 at ppb5 bus 196
> > > vendor "AMD", unknown product 0x14ec (class instrumentation unknown
> > > subclass 0x00, rev 0x00) at pci6 dev 0 function 0 not configured
> > > "AMD 19h/7xh IPU" rev 0x00 at pci6 dev 0 function 1 not configured
> > > ppb6 at pci0 dev 8 function 3 "AMD 19h/7xh PCIE" rev 0x00
> > > pci7 at ppb6 bus 197
> > > vendor "AMD", unknown product 0x14ec (class instrumentation unknown
> > > subclass 0x00, rev 0x00) at pci7 dev 0 function 0 not configured
> > > xhci2 at pci7 dev 0 function 3 "AMD 19h/7xh xHCI" rev 0x00: msix, xHCI
> > > 1.20
> > > usb2 at xhci2: USB revision 3.0
> > > uhub2 at usb2 configuration 1 interface 0 "AMD xHCI root hub" rev
> > > 3.00/1.00 addr 1
> > > xhci3 at pci7 dev 0 function 4 "AMD 19h/7xh xHCI" rev 0x00: msix, xHCI
> > > 1.20
> > > usb3 at xhci3: USB revision 3.0
> > > uhub3 at usb3 configuration 1 interface 0 "AMD xHCI root hub" rev
> > > 3.00/1.00 addr 1
> > > nhi0 at pci7 dev 0 function 5 "AMD 19h/7xh USB4" rev 0x00: msix, USB4 1.0
> > > nhi1 at pci7 dev 0 function 6 "AMD 19h/7xh USB4" rev 0x00: msix, USB4 1.0
> > > piixpm0 at pci0 dev 20 function 0 "AMD FCH SMBus" rev 0x71: polling
> > > iic0 at piixpm0
> > > iic1 at piixpm0
> > > pcib0 at pci0 dev 20 function 3 "AMD FCH LPC" rev 0x51
> > > pchb5 at pci0 dev 24 function 0 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb6 at pci0 dev 24 function 1 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb7 at pci0 dev 24 function 2 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb8 at pci0 dev 24 function 3 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb9 at pci0 dev 24 function 4 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb10 at pci0 dev 24 function 5 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb11 at pci0 dev 24 function 6 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb12 at pci0 dev 24 function 7 "AMD 19h/7xh Data Fabric" rev 0x00
> > > isa0 at pcib0
> > > isadma0 at isa0
> > > pckbc0 at isa0 port 0x60/5 irq 1 irq 12
> > > pckbd0 at pckbc0 (kbd slot)
> > > wskbd0 at pckbd0: console keyboard
> > > pcppi0 at isa0 port 0x61
> > > spkr0 at pcppi0
> > > vmm0 at mainbus0: SVM/RVI
> > > efifb at mainbus0 not configured
> > > uhub4 at uhub0 port 1 configuration 1 interface 0 "VIA Labs, Inc. USB2.0
> > > Hub" rev 2.10/90.13 addr 2
> > > uhub5 at uhub0 port 2 configuration 1 interface 0 "VIA Labs, Inc. USB2.0
> > > Hub" rev 2.10/90.13 addr 3
> > > uhidev0 at uhub5 port 1 configuration 1 interface 0 "CHERRY CHERRY
> > > Keyboard" rev 2.00/1.02 addr 4
> > > uhidev0: iclass 3/1
> > > ukbd0 at uhidev0: 8 variable keys, 6 key codes
> > > wskbd1 at ukbd0 mux 1
> > > uhidev1 at uhub5 port 1 configuration 1 interface 1 "CHERRY CHERRY
> > > Keyboard" rev 2.00/1.02 addr 4
> > > uhidev1: iclass 3/1, 5 report ids
> > > ukbd1 at uhidev1 reportid 1: 120 variable keys, 0 key codes
> > > wskbd2 at ukbd1 mux 1
> > > uhid0 at uhidev1 reportid 2: input=1, output=0, feature=0
> > > ucc0 at uhidev1 reportid 3: 8192 usages, 20 keys, array
> > > wskbd3 at ucc0 mux 1
> > > uhid1 at uhidev1 reportid 4: input=63, output=63, feature=0
> > > ums0 at uhidev1 reportid 5: 5 buttons, Z and W dir
> > > wsmouse0 at ums0 mux 0
> > > uhidev2 at uhub5 port 2 configuration 1 interface 0 "INSTANT USB GAMING
> > > MOUSE" rev 1.10/1.00 addr 5
> > > uhidev2: iclass 3/1, 1 report id
> > > ums1 at uhidev2 reportid 1: 5 buttons, Z dir
> > > wsmouse1 at ums1 mux 0
> > > uhidev3 at uhub5 port 2 configuration 1 interface 1 "INSTANT USB GAMING
> > > MOUSE" rev 1.10/1.00 addr 5
> > > uhidev3: iclass 3/0, 8 report ids
> > > ucc1 at uhidev3 reportid 2: 669 usages, 20 keys, array
> > > wskbd4 at ucc1 mux 1
> > > ukbd2 at uhidev3 reportid 3: 8 variable keys, 6 key codes
> > > wskbd5 at ukbd2 mux 1
> > > uhid2 at uhidev3 reportid 6: input=2, output=0, feature=0
> > > uhid3 at uhidev3 reportid 7: input=0, output=0, feature=7
> > > uhid4 at uhidev3 reportid 8: input=1, output=0, feature=0
> > > uhub6 at uhub0 port 6 configuration 1 interface 0 "VIA Labs, Inc. USB3.1
> > > Hub" rev 3.20/90.13 addr 6
> > > uhub7 at uhub0 port 7 configuration 1 interface 0 "VIA Labs, Inc. USB3.1
> > > Hub" rev 3.20/90.13 addr 7
> > > uhub8 at uhub2 port 1 configuration 1 interface 0 "Generic USB2.1 Hub"
> > > rev 2.10/2.03 addr 2
> > > uhidev4 at uhub8 port 3 configuration 1 interface 0 "LG Electronics Inc.
> > > LG Monitor Controls" rev 2.00/4.11 addr 3
> > > uhidev4: iclass 3/0
> > > uhid5 at uhidev4: input=64, output=64, feature=64
> > > umodem0 at uhub8 port 3 configuration 1 interface 1 "LG Electronics Inc.
> > > LG Monitor Controls" rev 2.00/4.11 addr 3
> > > umodem0: data interface 2, has no CM over data, has no break
> > > umodem0: status change notification available
> > > ucom0 at umodem0: usb2.1.00003.2
> > > vscsi0 at root
> > > scsibus2 at vscsi0: 256 targets
> > > softraid0 at root
> > > scsibus3 at softraid0: 256 targets
> > > sd1 at scsibus3 targ 1 lun 0: <OPENBSD, SR CRYPTO, 006>
> > > sd1: 409599MB, 512 bytes/sector, 838860272 sectors
> > > root on sd1a (4632fa6cdc48db67.a) swap on sd1b dump on sd1b
> > > amdgpu0: IP DISCOVERY GC 11.0.1 12 CU rev 0x07
> > > amdgpu0: 3840x2160, 32bpp
> > > wsdisplay0 at amdgpu0 mux 1: console (std, vt100 emulation), using wskbd0
> > > wskbd1: connecting to wsdisplay0
> > > wskbd2: connecting to wsdisplay0
> > > wskbd3: connecting to wsdisplay0
> > > wskbd4: connecting to wsdisplay0
> > > wskbd5: connecting to wsdisplay0
> > > wsdisplay0: screen 1-5 added (std, vt100 emulation)
> > > syncing disks... done
> > > r
> > > OpenBSD 7.9-beta (GENERIC.MP) #409: Thu Apr 9 12:43:09 MDT 2026
> > > [email protected]:/usr/src/sys/arch/amd64/compile/GENERIC.MP
> > > real mem = 31909883904 (30431MB)
> > > avail mem = 30914842624 (29482MB)
> > > random: good seed from bootblocks
> > > mpath0 at root
> > > scsibus0 at mpath0: 256 targets
> > > mainbus0 at root
> > > bios0 at mainbus0: SMBIOS rev. 3.5 @ 0x9ab7f000 (45 entries)
> > > bios0: vendor American Megatrends International, LLC. version "1.01" date
> > > 06/05/2023
> > > bios0: Micro Computer (HK) Tech Limited F7BSC
> > > efi0 at bios0: UEFI 2.8
> > > efi0: American Megatrends rev 0x5001d
> > > acpi0 at bios0: ACPI 6.4
> > > acpi0: sleep states S0ix S4 S5
> > > acpi0: tables DSDT FACP SSDT SSDT FIDT MCFG FPDT VFCT BGRT TPM2 SSDT CRAT
> > > CDIT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT WSMT APIC IVRS SSDT
> > > SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT
> > > acpi0: wakeup devices GPP1(S4) GPP0(S4) GPP5(S4) GPP7(S4) GP11(S4)
> > > SWUS(S4) GP12(S4) SWUS(S4)
> > > acpitimer0 at acpi0: 3579545 Hz, 32 bits
> > > acpimcfg0 at acpi0
> > > acpimcfg0: addr 0xe0000000, bus 0-255
> > > acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
> > > cpu0 at mainbus0: apid 0 (boot processor)
> > > cpu0: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.01 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu0: cpuid 1
> > > edx=178bfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT>
> > >
> > > ecx=76f8320b<SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND>
> > > cpu0: cpuid 6 eax=4<ARAT> ecx=1<EFFFREQ>
> > > cpu0: cpuid 7.0
> > > ebx=f1bf97a9<FSGSBASE,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,PQM,AVX512F,AVX512DQ,RDSEED,ADX,SMAP,AVX512IFMA,CLFLUSHOPT,CLWB,AVX512CD,SHA,AVX512BW,AVX512VL>
> > > ecx=405fce<AVX512VBMI,UMIP,PKU> edx=10000000<L1DF>
> > > cpu0: cpuid d.1 eax=f<XSAVEOPT,XSAVEC,XGETBV1,XSAVES>
> > > cpu0: cpuid 80000001 edx=2fd3fbff<NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG>
> > > ecx=75c237ff<LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX>
> > > cpu0: cpuid 80000007 edx=e799<HWPSTATE,ITSC>
> > > cpu0: cpuid 80000008
> > > ebx=791ef257<IBPB,IBRS,STIBP,STIBP_ALL,IBRS_PREF,IBRS_SM,SSBD>
> > > cpu0: cpuid 8000001F eax=1<SME>
> > > cpu0: 32KB 64b/line 8-way D-cache, 32KB 64b/line 8-way I-cache, 1MB
> > > 64b/line 8-way L2 cache, 16MB 64b/line 16-way L3 cache
> > > cpu0: smt 0, core 0, package 0, type P
> > > mtrr: Pentium Pro MTRR support, 8 var ranges, 88 fixed ranges
> > > cpu0: apic clock running at 24MHz
> > > cpu0: mwait min=64, max=64, C-substates=1.1, IBE
> > > cpu1 at mainbus0: apid 2 (application processor)
> > > cpu1: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu1: smt 0, core 1, package 0, type P
> > > cpu2 at mainbus0: apid 4 (application processor)
> > > cpu2: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu2: smt 0, core 2, package 0, type P
> > > cpu3 at mainbus0: apid 6 (application processor)
> > > cpu3: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu3: smt 0, core 3, package 0, type P
> > > cpu4 at mainbus0: apid 8 (application processor)
> > > cpu4: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu4: smt 0, core 4, package 0, type P
> > > cpu5 at mainbus0: apid 10 (application processor)
> > > cpu5: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu5: smt 0, core 5, package 0, type P
> > > cpu6 at mainbus0: apid 12 (application processor)
> > > cpu6: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu6: smt 0, core 6, package 0, type P
> > > cpu7 at mainbus0: apid 14 (application processor)
> > > cpu7: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu7: smt 0, core 7, package 0, type P
> > > cpu8 at mainbus0: apid 1 (application processor)
> > > cpu8: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu8: smt 1, core 0, package 0, type SP
> > > cpu9 at mainbus0: apid 3 (application processor)
> > > cpu9: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu9: smt 1, core 1, package 0, type SP
> > > cpu10 at mainbus0: apid 5 (application processor)
> > > cpu10: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu10: smt 1, core 2, package 0, type SP
> > > cpu11 at mainbus0: apid 7 (application processor)
> > > cpu11: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu11: smt 1, core 3, package 0, type SP
> > > cpu12 at mainbus0: apid 9 (application processor)
> > > cpu12: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu12: smt 1, core 4, package 0, type SP
> > > cpu13 at mainbus0: apid 11 (application processor)
> > > cpu13: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu13: smt 1, core 5, package 0, type SP
> > > cpu14 at mainbus0: apid 13 (application processor)
> > > cpu14: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu14: smt 1, core 6, package 0, type SP
> > > cpu15 at mainbus0: apid 15 (application processor)
> > > cpu15: AMD Ryzen 9 7940HS w/ Radeon 780M Graphics, 4000.00 MHz, 19-74-01,
> > > patch 0a704108
> > > cpu15: smt 1, core 7, package 0, type SP
> > > ioapic0 at mainbus0: apid 33 pa 0xfec00000, version 21, 24 pins, can't
> > > remap
> > > ioapic1 at mainbus0: apid 34 pa 0xfec01000, version 21, 32 pins, can't
> > > remap
> > > acpiprt0 at acpi0: bus 0 (PCI0)
> > > acpiprt1 at acpi0: bus 1 (GPP1)
> > > acpiprt2 at acpi0: bus -1 (GPP2)
> > > acpiprt3 at acpi0: bus -1 (GPP0)
> > > acpiprt4 at acpi0: bus -1 (GPP3)
> > > acpiprt5 at acpi0: bus -1 (GPP4)
> > > acpiprt6 at acpi0: bus 2 (GPP5)
> > > acpiprt7 at acpi0: bus -1 (GPP6)
> > > acpiprt8 at acpi0: bus -1 (GPP7)
> > > acpiprt9 at acpi0: bus -1 (GPP8)
> > > acpiprt10 at acpi0: bus -1 (GPP9)
> > > acpiprt11 at acpi0: bus -1 (GPPA)
> > > acpiprt12 at acpi0: bus 3 (GP11)
> > > acpiprt13 at acpi0: bus 99 (GP12)
> > > acpiprt14 at acpi0: bus 195 (GP17)
> > > acpiprt15 at acpi0: bus 196 (GP18)
> > > acpiprt16 at acpi0: bus 197 (GP19)
> > > acpiec0 at acpi0
> > > amdpmc0 at acpi0: PEP_
> > > amdpmc0: SMU program 4 version 76.11.0
> > > acpipci0 at acpi0 PCI0: 0x00000010 0x00000011 0x00000000
> > > acpicmos0 at acpi0
> > > acpibtn0 at acpi0: PWRB
> > > amdgpio0 at acpi0 GPIO uid 0 addr 0xfed81500/0x400 irq 7, 184 pins
> > > tpm0 at acpi0 TPM_: unsupported TPM2 start method 2
> > > "ACPI0010" at acpi0 not configured
> > > acpicpu0 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu1 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu2 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu3 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu4 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu5 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu6 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu7 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu8 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu9 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu10 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu11 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu12 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu13 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu14 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpicpu15 at acpi0: C3(0@350 io@0x415), C2(0@18 io@0x414), C1(0@1 mwait),
> > > PSS
> > > acpipwrres0 at acpi0: P0NV, resource for NVME
> > > acpipwrres1 at acpi0: PWRS, resource for GP11
> > > acpipwrres2 at acpi0: PWRS, resource for SWUS
> > > acpipwrres3 at acpi0: PWRS, resource for GP12
> > > acpipwrres4 at acpi0: PWRS, resource for SWUS
> > > acpipwrres5 at acpi0: PWRS, resource for VGA_
> > > acpipwrres6 at acpi0: PWRS, resource for HDAU
> > > acpipwrres7 at acpi0: PWRS, resource for ACP_
> > > acpipwrres8 at acpi0: PWRS, resource for AZAL
> > > acpipwrres9 at acpi0: PWRS, resource for XHC0
> > > acpipwrres10 at acpi0: PWRS, resource for XHC1
> > > acpipwrres11 at acpi0: PWRS, resource for GP17
> > > acpipwrres12 at acpi0: PWRS, resource for XHC2
> > > acpipwrres13 at acpi0: PWRS, resource for XHC3
> > > acpipwrres14 at acpi0: PWRS, resource for XHC4
> > > acpipwrres15 at acpi0: PWRS, resource for NHI0
> > > acpipwrres16 at acpi0: PWRS, resource for NHI1
> > > acpitz0 at acpi0
> > > acpitz0: critical temperature is 110 degC
> > > acpivideo0 at acpi0: VGA_
> > > acpivout0 at acpivideo0: LCD_
> > > cpu0: 4000 MHz: speeds: 4000 2200 1600 MHz
> > > pci0 at mainbus0 bus 0
> > > ksmn0 at pci0 dev 0 function 0 "AMD 19h/7xh Root Complex" rev 0x00
> > > "AMD 19h/7xh IOMMU" rev 0x00 at pci0 dev 0 function 2 not configured
> > > pchb0 at pci0 dev 1 function 0 "AMD 19h/7xh Host" rev 0x00
> > > ppb0 at pci0 dev 1 function 2 "AMD 19h/7xh PCIE" rev 0x00: msi
> > > pci1 at ppb0 bus 1
> > > nvme0 at pci1 dev 0 function 0 "Samsung PM9A1" rev 0x00: msix, NVMe 1.3
> > > nvme0: Samsung SSD 980 PRO 2TB, firmware 5B2QGXA7, serial S69ENX0W408371F
> > > scsibus1 at nvme0: 2 targets, initiator 0
> > > sd0 at scsibus1 targ 1 lun 0: <NVMe, Samsung SSD 980, 5B2Q>
> > > sd0: 1907729MB, 512 bytes/sector, 3907029168 sectors
> > > pchb1 at pci0 dev 2 function 0 "AMD 19h/7xh Host" rev 0x00
> > > ppb1 at pci0 dev 2 function 1 "AMD 19h/7xh PCIE" rev 0x00: msi
> > > pci2 at ppb1 bus 2
> > > rge0 at pci2 dev 0 function 0 "Realtek RTL8125" rev 0x05: msix: RTL8125B,
> > > address 58:47:ca:71:65:72
> > > pchb2 at pci0 dev 3 function 0 "AMD 19h/7xh Host" rev 0x00
> > > ppb2 at pci0 dev 3 function 1 "AMD 19h/7xh PCIE" rev 0x00: msi
> > > pci3 at ppb2 bus 3
> > > pchb3 at pci0 dev 4 function 0 "AMD 19h/7xh Host" rev 0x00
> > > ppb3 at pci0 dev 4 function 1 "AMD 19h/7xh PCIE" rev 0x00: msi
> > > pci4 at ppb3 bus 99
> > > pchb4 at pci0 dev 8 function 0 "AMD 19h/7xh Host" rev 0x00
> > > ppb4 at pci0 dev 8 function 1 "AMD 19h/7xh PCIE" rev 0x00
> > > pci5 at ppb4 bus 195
> > > "ATI Phoenix" rev 0xc1 at pci5 dev 0 function 0 not configured
> > > azalia0 at pci5 dev 0 function 1 "ATI Van Gogh HD Audio" rev 0x00: msi
> > > azalia0: no supported codecs
> > > "AMD 19h/7xh PSP" rev 0x00 at pci5 dev 0 function 2 not configured
> > > xhci0 at pci5 dev 0 function 3 "AMD 19h/7xh xHCI" rev 0x00: msix, xHCI
> > > 1.20
> > > usb0 at xhci0: USB revision 3.0
> > > uhub0 at usb0 configuration 1 interface 0 "AMD xHCI root hub" rev
> > > 3.00/1.00 addr 1
> > > xhci1 at pci5 dev 0 function 4 "AMD 19h/7xh xHCI" rev 0x00: msix, xHCI
> > > 1.20
> > > usb1 at xhci1: USB revision 3.0
> > > uhub1 at usb1 configuration 1 interface 0 "AMD xHCI root hub" rev
> > > 3.00/1.00 addr 1
> > > "AMD 17h/1xh I2S Audio" rev 0x63 at pci5 dev 0 function 5 not configured
> > > azalia1 at pci5 dev 0 function 6 "AMD 17h/1xh HD Audio" rev 0x00: msi
> > > azalia1: codecs: Realtek ALC269
> > > audio0 at azalia1
> > > ppb5 at pci0 dev 8 function 2 "AMD 19h/7xh PCIE" rev 0x00
> > > pci6 at ppb5 bus 196
> > > vendor "AMD", unknown product 0x14ec (class instrumentation unknown
> > > subclass 0x00, rev 0x00) at pci6 dev 0 function 0 not configured
> > > "AMD 19h/7xh IPU" rev 0x00 at pci6 dev 0 function 1 not configured
> > > ppb6 at pci0 dev 8 function 3 "AMD 19h/7xh PCIE" rev 0x00
> > > pci7 at ppb6 bus 197
> > > vendor "AMD", unknown product 0x14ec (class instrumentation unknown
> > > subclass 0x00, rev 0x00) at pci7 dev 0 function 0 not configured
> > > xhci2 at pci7 dev 0 function 3 "AMD 19h/7xh xHCI" rev 0x00: msix, xHCI
> > > 1.20
> > > usb2 at xhci2: USB revision 3.0
> > > uhub2 at usb2 configuration 1 interface 0 "AMD xHCI root hub" rev
> > > 3.00/1.00 addr 1
> > > xhci3 at pci7 dev 0 function 4 "AMD 19h/7xh xHCI" rev 0x00: msix, xHCI
> > > 1.20
> > > usb3 at xhci3: USB revision 3.0
> > > uhub3 at usb3 configuration 1 interface 0 "AMD xHCI root hub" rev
> > > 3.00/1.00 addr 1
> > > nhi0 at pci7 dev 0 function 5 "AMD 19h/7xh USB4" rev 0x00: msix, USB4 1.0
> > > nhi1 at pci7 dev 0 function 6 "AMD 19h/7xh USB4" rev 0x00: msix, USB4 1.0
> > > piixpm0 at pci0 dev 20 function 0 "AMD FCH SMBus" rev 0x71: polling
> > > iic0 at piixpm0
> > > iic1 at piixpm0
> > > pcib0 at pci0 dev 20 function 3 "AMD FCH LPC" rev 0x51
> > > pchb5 at pci0 dev 24 function 0 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb6 at pci0 dev 24 function 1 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb7 at pci0 dev 24 function 2 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb8 at pci0 dev 24 function 3 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb9 at pci0 dev 24 function 4 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb10 at pci0 dev 24 function 5 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb11 at pci0 dev 24 function 6 "AMD 19h/7xh Data Fabric" rev 0x00
> > > pchb12 at pci0 dev 24 function 7 "AMD 19h/7xh Data Fabric" rev 0x00
> > > isa0 at pcib0
> > > isadma0 at isa0
> > > pckbc0 at isa0 port 0x60/5 irq 1 irq 12
> > > pckbd0 at pckbc0 (kbd slot)
> > > wskbd0 at pckbd0: console keyboard
> > > pcppi0 at isa0 port 0x61
> > > spkr0 at pcppi0
> > > vmm0 at mainbus0: SVM/RVI
> > > efifb0 at mainbus0: 3840x2160, 32bpp
> > > wsdisplay0 at efifb0 mux 1: console (std, vt100 emulation), using wskbd0
> > > wsdisplay0: screen 1-5 added (std, vt100 emulation)
> > > uhub4 at uhub0 port 1 configuration 1 interface 0 "VIA Labs, Inc. USB2.0
> > > Hub" rev 2.10/90.13 addr 2
> > > uhub5 at uhub0 port 2 configuration 1 interface 0 "VIA Labs, Inc. USB2.0
> > > Hub" rev 2.10/90.13 addr 3
> > > uhidev0 at uhub5 port 1 configuration 1 interface 0 "CHERRY CHERRY
> > > Keyboard" rev 2.00/1.02 addr 4
> > > uhidev0: iclass 3/1
> > > ukbd0 at uhidev0: 8 variable keys, 6 key codes
> > > wskbd1 at ukbd0 mux 1
> > > wskbd1: connecting to wsdisplay0
> > > uhidev1 at uhub5 port 1 configuration 1 interface 1 "CHERRY CHERRY
> > > Keyboard" rev 2.00/1.02 addr 4
> > > uhidev1: iclass 3/1, 5 report ids
> > > ukbd1 at uhidev1 reportid 1: 120 variable keys, 0 key codes
> > > wskbd2 at ukbd1 mux 1
> > > wskbd2: connecting to wsdisplay0
> > > uhid0 at uhidev1 reportid 2: input=1, output=0, feature=0
> > > ucc0 at uhidev1 reportid 3: 8192 usages, 20 keys, array
> > > wskbd3 at ucc0 mux 1
> > > wskbd3: connecting to wsdisplay0
> > > uhid1 at uhidev1 reportid 4: input=63, output=63, feature=0
> > > ums0 at uhidev1 reportid 5: 5 buttons, Z and W dir
> > > wsmouse0 at ums0 mux 0
> > > uhidev2 at uhub5 port 2 configuration 1 interface 0 "INSTANT USB GAMING
> > > MOUSE" rev 1.10/1.00 addr 5
> > > uhidev2: iclass 3/1, 1 report id
> > > ums1 at uhidev2 reportid 1: 5 buttons, Z dir
> > > wsmouse1 at ums1 mux 0
> > > uhidev3 at uhub5 port 2 configuration 1 interface 1 "INSTANT USB GAMING
> > > MOUSE" rev 1.10/1.00 addr 5
> > > uhidev3: iclass 3/0, 8 report ids
> > > ucc1 at uhidev3 reportid 2: 669 usages, 20 keys, array
> > > wskbd4 at ucc1 mux 1
> > > wskbd4: connecting to wsdisplay0
> > > ukbd2 at uhidev3 reportid 3: 8 variable keys, 6 key codes
> > > wskbd5 at ukbd2 mux 1
> > > wskbd5: connecting to wsdisplay0
> > > uhid2 at uhidev3 reportid 6: input=2, output=0, feature=0
> > > uhid3 at uhidev3 reportid 7: input=0, output=0, feature=7
> > > uhid4 at uhidev3 reportid 8: input=1, output=0, feature=0
> > > uhub6 at uhub0 port 6 configuration 1 interface 0 "VIA Labs, Inc. USB3.1
> > > Hub" rev 3.20/90.13 addr 6
> > > uhub7 at uhub0 port 7 configuration 1 interface 0 "VIA Labs, Inc. USB3.1
> > > Hub" rev 3.20/90.13 addr 7
> > > uhub8 at uhub2 port 1 configuration 1 interface 0 "Generic USB2.1 Hub"
> > > rev 2.10/2.03 addr 2
> > > uhidev4 at uhub8 port 3 configuration 1 interface 0 "LG Electronics Inc.
> > > LG Monitor Controls" rev 2.00/4.11 addr 3
> > > uhidev4: iclass 3/0
> > > uhid5 at uhidev4: input=64, output=64, feature=64
> > > umodem0 at uhub8 port 3 configuration 1 interface 1 "LG Electronics Inc.
> > > LG Monitor Controls" rev 2.00/4.11 addr 3
> > > umodem0: data interface 2, has no CM over data, has no break
> > > umodem0: status change notification available
> > > ucom0 at umodem0: usb2.1.00003.2
> > > vscsi0 at root
> > > scsibus2 at vscsi0: 256 targets
> > > softraid0 at root
> > > scsibus3 at softraid0: 256 targets
> > > sd1 at scsibus3 targ 1 lun 0: <OPENBSD, SR CRYPTO, 006>
> > > sd1: 409599MB, 512 bytes/sector, 838860272 sectors
> > > root on sd1a (4632fa6cdc48db67.a) swap on sd1b dump on sd1b
> > >
> >