On Tue, Aug 02, 2022 at 11:54:48AM +1000, Jonathan Gray wrote:

Hello Jonathan,

>> I've just got my sticky mits on a Framework 12th Gen Intel laptop. It
>> somewhat works, but regularly hits kernel panics and other oddities on
>> -current. I haven't worked out why yet, but uvm_faults seem to be frequent.
>> For example setting the keyboard encoding causes a uvm_fault.
>> 
>>   $ doas wsconsctl keyboard.encoding=uk
>>   uvm_fault(0xfffffd87b4e6a780, 0x8, 0, 1) -> e
>> 
>> Screenshot of this particular panic at https://postimg.cc/nM5rLGY6
> wskbd_load_keymap+0x33: movl 0x8(%rax),%ecx
> wskbd_displayioctl_sc+0x76c
> wskbd_do_ioctl_sc+0xbb
> wskbd_ioctl+0x4a
> VOP_IOCTL+0x5c
> vn_ioctl+0x75
> sys_ioctl+0x2c4
> 
>    0xffffffff81017abe <+46>:    je     0xffffffff81017b3e 
> <wskbd_load_keymap+174>
>    0xffffffff81017ac0 <+48>:    mov    (%rdi),%rax
>    0xffffffff81017ac3 <+51>:    mov    0x8(%rax),%ecx
>    0xffffffff81017ac6 <+54>:    xor    %r13d,%r13d
>    0xffffffff81017ac9 <+57>:    mov    $0x16,%r15d
>    0xffffffff81017acf <+63>:    test   %ecx,%ecx
>    0xffffffff81017ad1 <+65>:    jle    0xffffffff81017bba 
> <wskbd_load_keymap+298>
> 
> info line *0xffffffff81017ac3
> Line 405 of "/sys/dev/wscons/wskbdutil.c"
>    starts at address 0xffffffff81017abe <wskbd_load_keymap+46>
>    and ends at 0xffffffff81017ad1 <wskbd_load_keymap+65>.
> 
>    395  int
>    396  wskbd_load_keymap(const struct wskbd_mapdata *mapdata, kbd_t layout,
>    397      struct wscons_keymap **map, int *maplen)
>    398  {
>    399          int i, s, kc, stack_ptr;
>    400          const keysym_t *kp;
>    401          const struct wscons_keydesc *mp, *stack[10];
>    402          kbd_t cur;
>    403          keysym_t ksg;
>    404  
>    405          for (cur = layout & ~KB_HANDLEDBYWSKBD, stack_ptr = 0;
>    406               cur != 0; stack_ptr++) {
>    407                  mp = mapdata->keydesc;
>    408                  while (mp->map_size > 0) {
>    409                          if (cur == 0 || mp->name == cur) {
>    410                                  break;
>    411                          }
>    412                          mp++;
>    413                  }
>    414  
>    415                  if (stack_ptr == nitems(stack))
>    416                          panic("wskbd_load_keymap: %d: recursion too 
> deep",
>    417                                mapdata->layout);
>    418                  if (mp->map_size <= 0)
>    419                          return(EINVAL);
>    420  
>    421                  stack[stack_ptr] = mp;
>    422                  cur = mp->base;
>    423          }

Thanks for expanding this (and duly noted!).

I also noted your commit to add some devices. The salient part of the dmesg
diff (ignoring all the CPU frequencies changing) is:

  --- dmesg1    Tue Aug  2 10:26:22 2022
  +++ dmesg2    Tue Aug  2 10:34:02 2022
  @@ -1,7 +1,7 @@
  -OpenBSD 7.2-beta (GENERIC.MP) #658: Mon Aug  1 10:06:39 MDT 2022
  -    dera...@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP
  +OpenBSD 7.2-beta (GENERIC.MP) #0: Tue Aug  2 10:16:12 BST 2022
  +    ltr...@phase.tratt.net:/usr/src/sys/arch/amd64/compile/GENERIC.MP
   real mem = 34006142976 (32430MB)
  -avail mem = 32958144512 (31431MB)
  +avail mem = 32958132224 (31431MB)
   random: good seed from bootblocks
   mpath0 at root
   scsibus0 at mpath0: 256 targets
  @@ -251,18 +251,18 @@
   "Intel Core 12G DTT" rev 0x02 at pci0 dev 4 function 0 not configured
   ppb0 at pci0 dev 6 function 0 "Intel Core 12G PCIE" rev 0x02: msi
   pci1 at ppb0 bus 1
  -nvme0 at pci1 dev 0 function 0 vendor "SanDisk", unknown product 0x5011 rev 
0x01: msix, NVMe 1.4
  +nvme0 at pci1 dev 0 function 0 "SanDisk SN850" rev 0x01: msix, NVMe 1.4
   nvme0: WDS100T1X0E-00AFY0, firmware 614900WD, serial XYZ
   scsibus1 at nvme0: 2 targets, initiator 0
   sd0 at scsibus1 targ 1 lun 0: <NVMe, WDS100T1X0E-00AF, 6149>
   sd0: 953869MB, 512 bytes/sector, 1953525168 sectors
   ppb1 at pci0 dev 7 function 0 "Intel Core 12G PCIE" rev 0x02: msi
   pci2 at ppb1 bus 2
  -ppb2 at pci0 dev 7 function 1 vendor "Intel", unknown product 0x463f rev 
0x02: msi
  +ppb2 at pci0 dev 7 function 1 "Intel Core 12G PCIE" rev 0x02: msi
   pci3 at ppb2 bus 43
   ppb3 at pci0 dev 7 function 2 "Intel Core 12G PCIE" rev 0x02: msi
   pci4 at ppb3 bus 84
  -ppb4 at pci0 dev 7 function 3 vendor "Intel", unknown product 0x461f rev 
0x02: msi
  +ppb4 at pci0 dev 7 function 3 "Intel Core 12G PCIE" rev 0x02: msi
   pci5 at ppb4 bus 125
   "Intel Core 12G GNA" rev 0x02 at pci0 dev 8 function 0 not configured
   "Intel Core 12G CL" rev 0x01 at pci0 dev 10 function 0 not configured
  @@ -288,7 +288,7 @@
   iic2 at dwiic2
   ihidev1 at iic2 addr 0x2c gpio 3, vendor 0x93a product 0x274, PIXA3854
   ihidev1: 67 report ids
  -imt0 at ihidev1: clickpad, 5 contacts
  +imt0 at ihidev1: touchpad, 5 contacts
   wsmouse0 at imt0 mux 0
   ims0 at ihidev1 reportid 2: 2 buttons
   wsmouse1 at ims0 mux 0
  @@ -300,8 +300,9 @@
   hid at ihidev1 reportid 66 not configured
   hid at ihidev1 reportid 67 not configured
   "Intel 600 Series HECI" rev 0x01 at pci0 dev 22 function 0 not configured
  -vendor "Intel", unknown product 0x51e3 (class communications subclass 
serial, rev 0x01) at pci0 dev 22 function 3 not configured
  -ppb5 at pci0 dev 29 function 0 vendor "Intel", unknown product 0x51b0 rev 
0x01: msi
  +puc0 at pci0 dev 22 function 3 "Intel 600 Series KT" rev 0x01: ports: 16 com
  +com4 at puc0 port 0 apic 2 int 19: ns16550a, 16 byte fifo
  +ppb5 at pci0 dev 29 function 0 "Intel 600 Series PCIE" rev 0x01: msi
   pci6 at ppb5 bus 166
   iwx0 at pci6 dev 0 function 0 "Intel Wi-Fi 6 AX210" rev 0x1a, msix
   pcib0 at pci0 dev 31 function 0 "Intel 600 Series eSPI" rev 0x01

I'm not quite sure why imt has gone from clickpad -> touchpad -- right-hand
mouse button clicking no longer works, presumably because of this. Full
dmesg at the bottom of this email.

I'm also starting to understand a bit more about some of the random panics:
they seem to happen very soon after X starts. Sometimes the mouse appears as
a two inch square of weird colours (!) -- things only last for a few seconds
after that. Only once have I got a visible panic out of this which said
solely:

  uvm_fault(0xffffffff822f0400, 0xfff80001660014, 0, 1) -> e
  drm: Global state not read locked
  drm: Global state not read locked

That particular panic was on my custom compiled kernel, not the most recent
snapshot.


Laurie


OpenBSD 7.2-beta (GENERIC.MP) #0: Tue Aug  2 10:16:12 BST 2022
    ltr...@phase.tratt.net:/usr/src/sys/arch/amd64/compile/GENERIC.MP
real mem = 34006142976 (32430MB)
avail mem = 32958132224 (31431MB)
random: good seed from bootblocks
mpath0 at root
scsibus0 at mpath0: 256 targets
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 3.3 @ 0x3f085000 (54 entries)
bios0: vendor INSYDE Corp. version "03.04" date 07/15/2022
bios0: Framework Laptop (12th Gen Intel Core)
acpi0 at bios0: ACPI 6.3
acpi0: sleep states S0 S3 S4 S5
acpi0: tables DSDT FACP UEFI SSDT SSDT SSDT SSDT SSDT SSDT SSDT LPIT WSMT SSDT 
SSDT DBGP DBG2 NHLT ECDT HPET APIC MCFG SSDT DMAR SSDT SSDT SSDT SSDT FPDT ASF! 
PHAT BGRT
acpi0: wakeup devices PEG0(S4) PEGP(S4) PEGP(S4) PEGP(S4) XHCI(S4) XDCI(S4) 
HDAS(S4) CNVW(S4) RP01(S4) PXSX(S4) RP02(S4) PXSX(S4) RP03(S4) PXSX(S4) 
RP04(S4) PXSX(S4) [...]
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpiec0 at acpi0
acpihpet0 at acpi0: 19200000 Hz
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: 12th Gen Intel(R) Core(TM) i7-1260P, 4689.86 MHz, 06-9a-03
cpu0: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,PKU,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu0: 48KB 64b/line 12-way D-cache, 32KB 64b/line 8-way I-cache, 1MB 64b/line 
10-way L2 cache, 18MB 64b/line 12-way L3 cache
cpu0: smt 0, core 0, package 0
mtrr: Pentium Pro MTRR support, 10 var ranges, 88 fixed ranges
cpu0: apic clock running at 38MHz
cpu0: mwait min=64, max=64, C-substates=0.2.0.2.0.1.0.1, IBE
cpu1 at mainbus0: apid 1 (application processor)
cpu1: 12th Gen Intel(R) Core(TM) i7-1260P, 4689.87 MHz, 06-9a-03
cpu1: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,PKU,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu1: 48KB 64b/line 12-way D-cache, 32KB 64b/line 8-way I-cache, 1MB 64b/line 
10-way L2 cache, 18MB 64b/line 12-way L3 cache
cpu1: smt 1, core 0, package 0
cpu2 at mainbus0: apid 8 (application processor)
cpu2: 12th Gen Intel(R) Core(TM) i7-1260P, 4689.89 MHz, 06-9a-03
cpu2: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,PKU,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu2: 48KB 64b/line 12-way D-cache, 32KB 64b/line 8-way I-cache, 1MB 64b/line 
10-way L2 cache, 18MB 64b/line 12-way L3 cache
cpu2: smt 0, core 4, package 0
cpu3 at mainbus0: apid 9 (application processor)
cpu3: 12th Gen Intel(R) Core(TM) i7-1260P, 4689.87 MHz, 06-9a-03
cpu3: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,PKU,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu3: 48KB 64b/line 12-way D-cache, 32KB 64b/line 8-way I-cache, 1MB 64b/line 
10-way L2 cache, 18MB 64b/line 12-way L3 cache
cpu3: smt 1, core 4, package 0
cpu4 at mainbus0: apid 16 (application processor)
cpu4: 12th Gen Intel(R) Core(TM) i7-1260P, 3991.44 MHz, 06-9a-03
cpu4: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,PKU,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu4: 48KB 64b/line 12-way D-cache, 32KB 64b/line 8-way I-cache, 1MB 64b/line 
10-way L2 cache, 18MB 64b/line 12-way L3 cache
cpu4: smt 0, core 8, package 0
cpu5 at mainbus0: apid 17 (application processor)
cpu5: 12th Gen Intel(R) Core(TM) i7-1260P, 3991.45 MHz, 06-9a-03
cpu5: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,PKU,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu5: 48KB 64b/line 12-way D-cache, 32KB 64b/line 8-way I-cache, 1MB 64b/line 
10-way L2 cache, 18MB 64b/line 12-way L3 cache
cpu5: smt 1, core 8, package 0
cpu6 at mainbus0: apid 24 (application processor)
cpu6: 12th Gen Intel(R) Core(TM) i7-1260P, 3791.88 MHz, 06-9a-03
cpu6: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,PKU,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu6: 48KB 64b/line 12-way D-cache, 32KB 64b/line 8-way I-cache, 1MB 64b/line 
10-way L2 cache, 18MB 64b/line 12-way L3 cache
cpu6: smt 0, core 12, package 0
cpu7 at mainbus0: apid 25 (application processor)
cpu7: 12th Gen Intel(R) Core(TM) i7-1260P, 3791.88 MHz, 06-9a-03
cpu7: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,PKU,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu7: 48KB 64b/line 12-way D-cache, 32KB 64b/line 8-way I-cache, 1MB 64b/line 
10-way L2 cache, 18MB 64b/line 12-way L3 cache
cpu7: smt 1, core 12, package 0
cpu8 at mainbus0: apid 32 (application processor)
cpu8: 12th Gen Intel(R) Core(TM) i7-1260P, 3389.26 MHz, 06-9a-03
cpu8: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,PKU,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu8: 32KB 64b/line 8-way D-cache, 64KB 64b/line 8-way I-cache, 2MB 64b/line 
16-way L2 cache, 18MB 64b/line 12-way L3 cache
cpu8: smt 0, core 16, package 0
cpu9 at mainbus0: apid 34 (application processor)
cpu9: 12th Gen Intel(R) Core(TM) i7-1260P, 3192.64 MHz, 06-9a-03
cpu9: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,PKU,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu9: 32KB 64b/line 8-way D-cache, 64KB 64b/line 8-way I-cache, 2MB 64b/line 
16-way L2 cache, 18MB 64b/line 12-way L3 cache
cpu9: smt 0, core 17, package 0
cpu10 at mainbus0: apid 36 (application processor)
cpu10: 12th Gen Intel(R) Core(TM) i7-1260P, 2993.10 MHz, 06-9a-03
cpu10: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,PKU,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu10: 32KB 64b/line 8-way D-cache, 64KB 64b/line 8-way I-cache, 2MB 64b/line 
16-way L2 cache, 18MB 64b/line 12-way L3 cache
cpu10: smt 0, core 18, package 0
cpu11 at mainbus0: apid 38 (application processor)
cpu11: 12th Gen Intel(R) Core(TM) i7-1260P, 2993.10 MHz, 06-9a-03
cpu11: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,PKU,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu11: 32KB 64b/line 8-way D-cache, 64KB 64b/line 8-way I-cache, 2MB 64b/line 
16-way L2 cache, 18MB 64b/line 12-way L3 cache
cpu11: smt 0, core 19, package 0
cpu12 at mainbus0: apid 40 (application processor)
cpu12: 12th Gen Intel(R) Core(TM) i7-1260P, 2793.56 MHz, 06-9a-03
cpu12: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,PKU,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu12: 32KB 64b/line 8-way D-cache, 64KB 64b/line 8-way I-cache, 2MB 64b/line 
16-way L2 cache, 18MB 64b/line 12-way L3 cache
cpu12: smt 0, core 20, package 0
cpu13 at mainbus0: apid 42 (application processor)
cpu13: 12th Gen Intel(R) Core(TM) i7-1260P, 2693.79 MHz, 06-9a-03
cpu13: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,PKU,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu13: 32KB 64b/line 8-way D-cache, 64KB 64b/line 8-way I-cache, 2MB 64b/line 
16-way L2 cache, 18MB 64b/line 12-way L3 cache
cpu13: smt 0, core 21, package 0
cpu14 at mainbus0: apid 44 (application processor)
cpu14: 12th Gen Intel(R) Core(TM) i7-1260P, 2693.79 MHz, 06-9a-03
cpu14: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,PKU,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu14: 32KB 64b/line 8-way D-cache, 64KB 64b/line 8-way I-cache, 2MB 64b/line 
16-way L2 cache, 18MB 64b/line 12-way L3 cache
cpu14: smt 0, core 22, package 0
cpu15 at mainbus0: apid 46 (application processor)
cpu15: 12th Gen Intel(R) Core(TM) i7-1260P, 2661.39 MHz, 06-9a-03
cpu15: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,PKU,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu15: 32KB 64b/line 8-way D-cache, 64KB 64b/line 8-way I-cache, 2MB 64b/line 
16-way L2 cache, 18MB 64b/line 12-way L3 cache
cpu15: smt 0, core 23, package 0
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 120 pins
acpimcfg0 at acpi0
acpimcfg0: addr 0xc0000000, bus 0-255
acpiprt0 at acpi0: bus 0 (PC00)
acpiprt1 at acpi0: bus 1 (PEG0)
acpiprt2 at acpi0: bus -1 (RP01)
acpiprt3 at acpi0: bus -1 (RP02)
acpiprt4 at acpi0: bus -1 (RP03)
acpiprt5 at acpi0: bus -1 (RP04)
acpiprt6 at acpi0: bus -1 (RP05)
acpiprt7 at acpi0: bus -1 (RP06)
acpiprt8 at acpi0: bus -1 (RP07)
acpiprt9 at acpi0: bus -1 (RP08)
acpiprt10 at acpi0: bus 166 (RP09)
acpiprt11 at acpi0: bus -1 (RP10)
acpiprt12 at acpi0: bus -1 (RP11)
acpiprt13 at acpi0: bus -1 (RP12)
acpiprt14 at acpi0: bus -1 (RP13)
acpiprt15 at acpi0: bus -1 (RP14)
acpiprt16 at acpi0: bus -1 (RP15)
acpiprt17 at acpi0: bus -1 (RP16)
acpiprt18 at acpi0: bus -1 (RP17)
acpiprt19 at acpi0: bus -1 (RP18)
acpiprt20 at acpi0: bus -1 (RP19)
acpiprt21 at acpi0: bus -1 (RP20)
acpiprt22 at acpi0: bus -1 (RP21)
acpiprt23 at acpi0: bus -1 (RP22)
acpiprt24 at acpi0: bus -1 (RP23)
acpiprt25 at acpi0: bus -1 (RP24)
acpiprt26 at acpi0: bus -1 (RP25)
acpiprt27 at acpi0: bus -1 (RP26)
acpiprt28 at acpi0: bus -1 (RP27)
acpiprt29 at acpi0: bus -1 (RP28)
acpiprt30 at acpi0: bus 2 (TRP0)
acpiprt31 at acpi0: bus 43 (TRP1)
acpiprt32 at acpi0: bus 84 (TRP2)
acpiprt33 at acpi0: bus 125 (TRP3)
acpipci0 at acpi0 PC00: 0x00000000 0x00000011 0x00000001
acpicmos0 at acpi0
acpibtn0 at acpi0: LID0
"INTC1046" at acpi0 not configured
"INTC1046" at acpi0 not configured
"INTC1046" at acpi0 not configured
"INTC1046" at acpi0 not configured
acpiac0 at acpi0: AC unit offline
acpibat0 at acpi0: BAT1 model "f" serial c8 type LION oem "0"
"FRMW0001" at acpi0 not configured
"PIXA3854" at acpi0 not configured
pchgpio0 at acpi0 GPI0 addr 0xfd6e0000/0x10000 0xfd6d0000/0x10000 
0xfd6a0000/0x10000 0xfd690000/0x10000 irq 14, 360 pins
acpicpu0 at acpi0: C3(200@1048 mwait.1@0x60), C2(350@127 mwait.1@0x21), 
C1(1000@1 mwait.1), PSS
acpicpu1 at acpi0: C3(200@1048 mwait.1@0x60), C2(350@127 mwait.1@0x21), 
C1(1000@1 mwait.1), PSS
acpicpu2 at acpi0: C3(200@1048 mwait.1@0x60), C2(350@127 mwait.1@0x21), 
C1(1000@1 mwait.1), PSS
acpicpu3 at acpi0: C3(200@1048 mwait.1@0x60), C2(350@127 mwait.1@0x21), 
C1(1000@1 mwait.1), PSS
acpicpu4 at acpi0: C3(200@1048 mwait.1@0x60), C2(350@127 mwait.1@0x21), 
C1(1000@1 mwait.1), PSS
acpicpu5 at acpi0: C3(200@1048 mwait.1@0x60), C2(350@127 mwait.1@0x21), 
C1(1000@1 mwait.1), PSS
acpicpu6 at acpi0: C3(200@1048 mwait.1@0x60), C2(350@127 mwait.1@0x21), 
C1(1000@1 mwait.1), PSS
acpicpu7 at acpi0: C3(200@1048 mwait.1@0x60), C2(350@127 mwait.1@0x21), 
C1(1000@1 mwait.1), PSS
acpicpu8 at acpi0: C3(200@1048 mwait.1@0x60), C2(350@127 mwait.1@0x21), 
C1(1000@1 mwait.1), PSS
acpicpu9 at acpi0: C3(200@1048 mwait.1@0x60), C2(350@127 mwait.1@0x21), 
C1(1000@1 mwait.1), PSS
acpicpu10 at acpi0: C3(200@1048 mwait.1@0x60), C2(350@127 mwait.1@0x21), 
C1(1000@1 mwait.1), PSS
acpicpu11 at acpi0: C3(200@1048 mwait.1@0x60), C2(350@127 mwait.1@0x21), 
C1(1000@1 mwait.1), PSS
acpicpu12 at acpi0: C3(200@1048 mwait.1@0x60), C2(350@127 mwait.1@0x21), 
C1(1000@1 mwait.1), PSS
acpicpu13 at acpi0: C3(200@1048 mwait.1@0x60), C2(350@127 mwait.1@0x21), 
C1(1000@1 mwait.1), PSS
acpicpu14 at acpi0: C3(200@1048 mwait.1@0x60), C2(350@127 mwait.1@0x21), 
C1(1000@1 mwait.1), PSS
acpicpu15 at acpi0: C3(200@1048 mwait.1@0x60), C2(350@127 mwait.1@0x21), 
C1(1000@1 mwait.1), PSS
acpicpu16 at acpi0: no cpu matching ACPI ID 16
acpicpu17 at acpi0: no cpu matching ACPI ID 17
acpicpu18 at acpi0: no cpu matching ACPI ID 18
acpicpu19 at acpi0: no cpu matching ACPI ID 19
acpicpu20 at acpi0: no cpu matching ACPI ID 20
acpicpu21 at acpi0: no cpu matching ACPI ID 21
acpicpu22 at acpi0: no cpu matching ACPI ID 22
acpicpu23 at acpi0: no cpu matching ACPI ID 23
acpicpu24 at acpi0: no cpu matching ACPI ID 24
acpicpu25 at acpi0: no cpu matching ACPI ID 25
acpicpu26 at acpi0: no cpu matching ACPI ID 26
acpicpu27 at acpi0: no cpu matching ACPI ID 27
acpicpu28 at acpi0: no cpu matching ACPI ID 28
acpicpu29 at acpi0: no cpu matching ACPI ID 29
acpicpu30 at acpi0: no cpu matching ACPI ID 30
acpicpu31 at acpi0: no cpu matching ACPI ID 31
acpicpu32 at acpi0: no cpu matching ACPI ID 32
acpicpu33 at acpi0: no cpu matching ACPI ID 33
acpicpu34 at acpi0: no cpu matching ACPI ID 34
acpicpu35 at acpi0: no cpu matching ACPI ID 35
acpicpu36 at acpi0: no cpu matching ACPI ID 36
acpicpu37 at acpi0: no cpu matching ACPI ID 37
acpicpu38 at acpi0: no cpu matching ACPI ID 38
acpicpu39 at acpi0: no cpu matching ACPI ID 39
acpicpu40 at acpi0: no cpu matching ACPI ID 40
acpicpu41 at acpi0: no cpu matching ACPI ID 41
acpicpu42 at acpi0: no cpu matching ACPI ID 42
acpicpu43 at acpi0: no cpu matching ACPI ID 43
acpicpu44 at acpi0: no cpu matching ACPI ID 44
acpicpu45 at acpi0: no cpu matching ACPI ID 45
acpicpu46 at acpi0: no cpu matching ACPI ID 46
acpicpu47 at acpi0: no cpu matching ACPI ID 47
acpicpu48 at acpi0: no cpu matching ACPI ID 48
acpicpu49 at acpi0: no cpu matching ACPI ID 49
acpicpu50 at acpi0: no cpu matching ACPI ID 50
acpicpu51 at acpi0: no cpu matching ACPI ID 51
acpicpu52 at acpi0: no cpu matching ACPI ID 52
acpicpu53 at acpi0: no cpu matching ACPI ID 53
acpicpu54 at acpi0: no cpu matching ACPI ID 54
acpicpu55 at acpi0: no cpu matching ACPI ID 55
acpicpu56 at acpi0: no cpu matching ACPI ID 56
acpicpu57 at acpi0: no cpu matching ACPI ID 57
acpicpu58 at acpi0: no cpu matching ACPI ID 58
acpicpu59 at acpi0: no cpu matching ACPI ID 59
acpicpu60 at acpi0: no cpu matching ACPI ID 60
acpicpu61 at acpi0: no cpu matching ACPI ID 61
acpicpu62 at acpi0: no cpu matching ACPI ID 62
acpicpu63 at acpi0: no cpu matching ACPI ID 63
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
"INT33A1" at acpi0 not configured
acpibtn1 at acpi0: PWRB
"INTC1041" at acpi0 not configured
"USBC000" at acpi0 not configured
acpipwrres0 at acpi0: PXP_, resource for PEG0, PEGP, MINI
acpipwrres1 at acpi0: PXP_, resource for PEG1, PEGP, MINI
acpipwrres2 at acpi0: PXP_, resource for PEG2, PEGP, MINI
acpipwrres3 at acpi0: BTRT
acpipwrres4 at acpi0: WRST
acpipwrres5 at acpi0: PXP_, resource for RP06
acpipwrres6 at acpi0: PXP_, resource for RP08
acpipwrres7 at acpi0: WRST
acpipwrres8 at acpi0: DRST
acpipwrres9 at acpi0: TBT0, resource for TDM0, TRP0, TRP1
acpipwrres10 at acpi0: TBT1, resource for TDM1, TRP2, TRP3
acpipwrres11 at acpi0: D3C_, resource for TXHC, TDM0, TDM1, TRP0, TRP1, TRP2, 
TRP3
acpipwrres12 at acpi0: PAUD, resource for HDAS
acpitz0 at acpi0: critical temperature is 210 degC
acpitz1 at acpi0: critical temperature is 210 degC
acpitz2 at acpi0: critical temperature is 210 degC
acpitz3 at acpi0: critical temperature is 210 degC
acpitz4 at acpi0: critical temperature is 210 degC
acpipwrres13 at acpi0: PIN_
acpivideo0 at acpi0: GFX0
acpivout0 at acpivideo0: DD1F
acpivout1 at acpivideo0: DD2F
cpu0: Enhanced SpeedStep 4689 MHz: speeds: 2501, 2500, 2300, 2100, 2000, 1900, 
1600, 1500, 1400, 1300, 1100, 1000, 800, 700, 500, 400 MHz
pci0 at mainbus0 bus 0
0:31:5: mem address conflict 0xfe010000/0x1000
pchb0 at pci0 dev 0 function 0 "Intel Core 12G Host" rev 0x02
inteldrm0 at pci0 dev 2 function 0 "Intel Graphics" rev 0x0c
drm0 at inteldrm0
inteldrm0: msi, ALDERLAKE_P, gen 12
"Intel Core 12G DTT" rev 0x02 at pci0 dev 4 function 0 not configured
ppb0 at pci0 dev 6 function 0 "Intel Core 12G PCIE" rev 0x02: msi
pci1 at ppb0 bus 1
nvme0 at pci1 dev 0 function 0 "SanDisk SN850" rev 0x01: msix, NVMe 1.4
nvme0: WDS100T1X0E-00AFY0, firmware 614900WD, serial XYZ
scsibus1 at nvme0: 2 targets, initiator 0
sd0 at scsibus1 targ 1 lun 0: <NVMe, WDS100T1X0E-00AF, 6149>
sd0: 953869MB, 512 bytes/sector, 1953525168 sectors
ppb1 at pci0 dev 7 function 0 "Intel Core 12G PCIE" rev 0x02: msi
pci2 at ppb1 bus 2
ppb2 at pci0 dev 7 function 1 "Intel Core 12G PCIE" rev 0x02: msi
pci3 at ppb2 bus 43
ppb3 at pci0 dev 7 function 2 "Intel Core 12G PCIE" rev 0x02: msi
pci4 at ppb3 bus 84
ppb4 at pci0 dev 7 function 3 "Intel Core 12G PCIE" rev 0x02: msi
pci5 at ppb4 bus 125
"Intel Core 12G GNA" rev 0x02 at pci0 dev 8 function 0 not configured
"Intel Core 12G CL" rev 0x01 at pci0 dev 10 function 0 not configured
xhci0 at pci0 dev 13 function 0 "Intel Core 12G xHCI" rev 0x02: msi, xHCI 1.20
usb0 at xhci0: USB revision 3.0
uhub0 at usb0 configuration 1 interface 0 "Intel xHCI root hub" rev 3.00/1.00 
addr 1
"Intel Core 12G TBT" rev 0x02 at pci0 dev 13 function 2 not configured
"Intel Core 12G TBT" rev 0x02 at pci0 dev 13 function 3 not configured
xhci1 at pci0 dev 20 function 0 "Intel 600 Series xHCI" rev 0x01: msi, xHCI 1.20
usb1 at xhci1: USB revision 3.0
uhub1 at usb1 configuration 1 interface 0 "Intel xHCI root hub" rev 3.00/1.00 
addr 1
"Intel 600 Series SRAM" rev 0x01 at pci0 dev 20 function 2 not configured
dwiic0 at pci0 dev 21 function 0 "Intel 600 Series I2C" rev 0x01: apic 2 int 27
iic0 at dwiic0
dwiic1 at pci0 dev 21 function 1 "Intel 600 Series I2C" rev 0x01: apic 2 int 40
iic1 at dwiic1
ihidev0 at iic1 addr 0x50 gpio 163, vendor 0x32ac product 0x6, FRMW0001
ihidev0: 3 report ids
hid at ihidev0 reportid 1 not configured
hid at ihidev0 reportid 2 not configured
hid at ihidev0 reportid 3 not configured
dwiic2 at pci0 dev 21 function 3 "Intel 600 Series I2C" rev 0x01: apic 2 int 43
iic2 at dwiic2
ihidev1 at iic2 addr 0x2c gpio 3, vendor 0x93a product 0x274, PIXA3854
ihidev1: 67 report ids
imt0 at ihidev1: touchpad, 5 contacts
wsmouse0 at imt0 mux 0
ims0 at ihidev1 reportid 2: 2 buttons
wsmouse1 at ims0 mux 0
hid at ihidev1 reportid 4 not configured
hid at ihidev1 reportid 5 not configured
hid at ihidev1 reportid 7 not configured
hid at ihidev1 reportid 8 not configured
hid at ihidev1 reportid 65 not configured
hid at ihidev1 reportid 66 not configured
hid at ihidev1 reportid 67 not configured
"Intel 600 Series HECI" rev 0x01 at pci0 dev 22 function 0 not configured
puc0 at pci0 dev 22 function 3 "Intel 600 Series KT" rev 0x01: ports: 16 com
com4 at puc0 port 0 apic 2 int 19: ns16550a, 16 byte fifo
ppb5 at pci0 dev 29 function 0 "Intel 600 Series PCIE" rev 0x01: msi
pci6 at ppb5 bus 166
iwx0 at pci6 dev 0 function 0 "Intel Wi-Fi 6 AX210" rev 0x1a, msix
pcib0 at pci0 dev 31 function 0 "Intel 600 Series eSPI" rev 0x01
azalia0 at pci0 dev 31 function 3 "Intel 600 Series HD Audio" rev 0x01: msi
azalia0: codecs: IDT/0x7695
audio0 at azalia0
ichiic0 at pci0 dev 31 function 4 "Intel 600 Series SMBus" rev 0x01: apic 2 int 
16
iic3 at ichiic0
spdmem0 at iic3 addr 0x50: 16GB DDR4 SDRAM PC4-25600 SO-DIMM
spdmem1 at iic3 addr 0x52: 16GB DDR4 SDRAM PC4-25600 SO-DIMM
"Intel 600 Series SPI" rev 0x01 at pci0 dev 31 function 5 not configured
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
pms0 at pckbc0 (aux slot)
wsmouse2 at pms0 mux 0
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
vmm0 at mainbus0: VMX/EPT
efifb at mainbus0 not configured
uhidev0 at uhub1 port 3 configuration 1 interface 1 "Framework HDMI Expansion 
Card" rev 2.01/0.00 addr 2
uhidev0: iclass 3/0, 228 report ids
uhid0 at uhidev0 reportid 224: input=0, output=0, feature=63
uhid1 at uhidev0 reportid 225: input=0, output=7, feature=0
uhid2 at uhidev0 reportid 226: input=0, output=131, feature=0
uhid3 at uhidev0 reportid 227: input=0, output=0, feature=131
uhid4 at uhidev0 reportid 228: input=0, output=0, feature=7
ugen0 at uhub1 port 3 configuration 1 "Framework HDMI Expansion Card" rev 
2.01/0.00 addr 2
ugen1 at uhub1 port 9 "Goodix Technology Co., Ltd. Goodix USB2.0 MISC" rev 
2.00/1.00 addr 3
ugen2 at uhub1 port 10 "Intel Bluetooth" rev 2.01/0.00 addr 4
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: 953868MB, 512 bytes/sector, 1953523583 sectors
root on sd1a (5aef072adbe989e7.a) swap on sd1b dump on sd1b
inteldrm0: 2256x1504, 32bpp
wsdisplay0 at inteldrm0 mux 1: console (std, vt100 emulation), using wskbd0
wsdisplay0: screen 1-5 added (std, vt100 emulation)
iwx0: hw rev 0x420, fw 67.8f59b80b.0, pnvm dda57f4f, address 8c:f8:c5:56:ff:9a

Reply via email to