On 1/10/22 02:02, Jonathan Gray wrote:
On Sun, Jan 09, 2022 at 09:27:57PM +0100, Sven Wolf wrote:
Hi list,

in October'21 I successfully installed OpenBSD on this litte fanless latop.
There are following issues, even with -current:

The soundcard (Linux dmesg: snd_hda_codec_realtek hdaudioC0D0: autoconfig
for ALC256) is not detected.

The emmc (Linux dmesg: mmc0: new HS400 Enhanced strobe MMC card at address
0001, mmcblk0: mmc0:0001 DA4128 116 GiB) can't get enabled.
After I insert an nvme into the empty internal port I got OpenBSD installed.

The AX201 is not detected. In October'21 I got the AX201 with following
patch in a stable working state:

cat pcidevs.diff
*** pcidevs     Sun Jan  9 20:02:35 2022
--- pcidevs.swift1      Sun Jan  9 19:35:41 2022
***************
*** 5510,5515 ****
--- 5510,5516 ----
   product INTEL RKL_GT_4               0x4c8c  UHD Graphics
   product INTEL RKL_GT_5               0x4c90  UHD Graphics
   product INTEL RKL_GT_6               0x4c9a  UHD Graphics
+ product INTEL WL_22500_6        0x4df0  Wi-Fi 6 AX201
   product INTEL JSL_GT_1               0x4e51  UHD Graphics
   product INTEL JSL_GT_2               0x4e55  UHD Graphics
   product INTEL JSL_GT_3               0x4e57  UHD Graphics


cat if_iwx.c.diff
*** if_iwx.c    Sun Jan  9 20:02:35 2022
--- if_iwx.c.swift1     Sun Jan  9 19:37:41 2022
***************
*** 9177,9182 ****
--- 9177,9183 ----
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_WL_22500_3 },
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_WL_22500_4,},
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_WL_22500_5,},
+       { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_WL_22500_6,},
   };

   static const struct pci_matchid iwx_subsystem_id_ax201[] = {
***************
*** 9218,9223 ****
--- 9219,9225 ----
        case PCI_PRODUCT_INTEL_WL_22500_3: /* AX201 */
        case PCI_PRODUCT_INTEL_WL_22500_4: /* AX201 */
        case PCI_PRODUCT_INTEL_WL_22500_5: /* AX201 */
+       case PCI_PRODUCT_INTEL_WL_22500_6: /* AX201 */
                for (i = 0; i < nitems(iwx_subsystem_id_ax201); i++) {
                        if (svid == iwx_subsystem_id_ax201[i].pm_vid &&
                            spid == iwx_subsystem_id_ax201[i].pm_pid)

But now I only get following message:
iwx0 at pci0 dev 20 function 3 "Intel Wi-Fi 6 AX201" rev 0x01, msix
iwx0: unknown adapter type

In Linux following firmware is used:
Loading firmware: iwlwifi-QuZ-a0-hr-b0-63.ucode
iwlwifi 0000:00:14.3: loaded firmware version 63.c04f3485.0
QuZ-a0-hr-b0-63.ucode op_mode iwlmvm

I hope that Stefan has an idea, how we can get the iwx on this machine in a
working state.

The azalia and emmc issues are not the highest priority for myself. Maybe
someone will make a patch.

The touchpad only works in PS/2 mode. Fortunately on this machine, the
touchpad mode can be changed in the (hidden) BIOS/UEFI menu (CTRL+s)

The touchpad is likely connected via i2c.

The following diff should make audio and the touchpad work.
inteldrm will require the 5.15 port I'm working on.

Index: sys/dev/pci/azalia.c
===================================================================
RCS file: /cvs/src/sys/dev/pci/azalia.c,v
retrieving revision 1.266
diff -u -p -r1.266 azalia.c
--- sys/dev/pci/azalia.c        30 Oct 2021 03:24:59 -0000      1.266
+++ sys/dev/pci/azalia.c        10 Jan 2022 00:47:51 -0000
@@ -482,6 +482,7 @@ azalia_configure_pci(azalia_t *az)
        case PCI_PRODUCT_INTEL_BAYTRAIL_HDA:
        case PCI_PRODUCT_INTEL_BSW_HDA:
        case PCI_PRODUCT_INTEL_GLK_HDA:
+       case PCI_PRODUCT_INTEL_JSL_HDA:
                reg = azalia_pci_read(az->pc, az->tag,
                    INTEL_PCIE_NOSNOOP_REG);
                reg &= INTEL_PCIE_NOSNOOP_MASK;
@@ -495,7 +496,8 @@ const struct pci_matchid azalia_pci_devi
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_200SERIES_U_HDA },
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_300SERIES_U_HDA },
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_400SERIES_CAVS },
-       { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_500SERIES_LP_HDA }
+       { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_500SERIES_LP_HDA },
+       { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_JSL_HDA },
  };
int
Index: sys/dev/pci/dwiic_pci.c
===================================================================
RCS file: /cvs/src/sys/dev/pci/dwiic_pci.c,v
retrieving revision 1.18
diff -u -p -r1.18 dwiic_pci.c
--- sys/dev/pci/dwiic_pci.c     30 Oct 2021 03:27:35 -0000      1.18
+++ sys/dev/pci/dwiic_pci.c     10 Jan 2022 00:47:08 -0000
@@ -138,6 +138,12 @@ const struct pci_matchid dwiic_pci_ids[]
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_GLK_I2C_6 },
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_GLK_I2C_7 },
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_GLK_I2C_8 },
+       { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_JSL_I2C_0 },
+       { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_JSL_I2C_1 },
+       { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_JSL_I2C_2 },
+       { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_JSL_I2C_3 },
+       { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_JSL_I2C_4 },
+       { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_JSL_I2C_5 },
  };
int
Index: sys/dev/pci/ichiic.c
===================================================================
RCS file: /cvs/src/sys/dev/pci/ichiic.c,v
retrieving revision 1.46
diff -u -p -r1.46 ichiic.c
--- sys/dev/pci/ichiic.c        30 Oct 2021 03:27:35 -0000      1.46
+++ sys/dev/pci/ichiic.c        10 Jan 2022 00:56:27 -0000
@@ -135,6 +135,7 @@ const struct pci_matchid ichiic_ids[] =
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_500SERIES_SMB },
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_500SERIES_LP_SMB },
        { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_600SERIES_SMB },
+       { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_JSL_SMB },
  };
int
Index: sys/dev/pci/pcidevs
===================================================================
RCS file: /cvs/src/sys/dev/pci/pcidevs,v
retrieving revision 1.1983
diff -u -p -r1.1983 pcidevs
--- sys/dev/pci/pcidevs 6 Jan 2022 06:19:11 -0000       1.1983
+++ sys/dev/pci/pcidevs 10 Jan 2022 00:48:58 -0000
@@ -5510,6 +5510,54 @@ product INTEL RKL_GT_3           0x4c8b  UHD Graph
  product INTEL RKL_GT_4                0x4c8c  UHD Graphics
  product INTEL RKL_GT_5                0x4c90  UHD Graphics
  product INTEL RKL_GT_6                0x4c9a  UHD Graphics
+product INTEL JSL_ESPI         0x4d87  Jasper Lake eSPI
+product INTEL JSL_P2SB         0x4da0  Jasper Lake P2SB
+product INTEL JSL_PMC          0x4da1  Jasper Lake PMC
+product INTEL JSL_SMB          0x4da3  Jasper Lake SMBus
+product INTEL JSL_SPI          0x4da4  Jasper Lake SPI
+product INTEL JSL_ITH          0x4da6  Jasper Lake ITH
+product INTEL JSL_UART_0       0x4da8  Jasper Lake UART
+product INTEL JSL_UART_1       0x4da9  Jasper Lake UART
+product INTEL JSL_LPSS_SPI_0   0x4daa  Jasper Lake SPI
+product INTEL JSL_LPSS_SPI_1   0x4dab  Jasper Lake SPI
+product INTEL JSL_PCIE_1       0x4db8  Jasper Lake PCIE
+product INTEL JSL_PCIE_2       0x4db9  Jasper Lake PCIE
+product INTEL JSL_PCIE_3       0x4dba  Jasper Lake PCIE
+product INTEL JSL_PCIE_4       0x4dbb  Jasper Lake PCIE
+product INTEL JSL_PCIE_5       0x4dbc  Jasper Lake PCIE
+product INTEL JSL_PCIE_6       0x4dbd  Jasper Lake PCIE
+product INTEL JSL_PCIE_7       0x4dbe  Jasper Lake PCIE
+product INTEL JSL_PCIE_8       0x4dbf  Jasper Lake PCIE
+product INTEL JSL_EMMC         0x4dc4  Jasper Lake eMMC
+product INTEL JSL_I2C_4                0x4dc5  Jasper Lake I2C
+product INTEL JSL_I2C_5                0x4dc6  Jasper Lake I2C
+product INTEL JSL_LPSS_UART_2  0x4dc7  Jasper Lake UART
+product INTEL JSL_HDA          0x4dc8  Jasper Lake HD Audio
+product INTEL JSL_AHCI_1       0x4dd2  Jasper Lake AHCI
+product INTEL JSL_AHCI_2       0x4dd3  Jasper Lake AHCI
+product INTEL JSL_RAID_1       0x4dd6  Jasper Lake RAID
+product INTEL JSL_RAID_2       0x4dd7  Jasper Lake RAID
+product INTEL JSL_HECI_1       0x4de0  Jasper Lake HECI
+product INTEL JSL_HECI_2       0x4de1  Jasper Lake HECI
+product INTEL JSL_HECI_3       0x4de4  Jasper Lake HECI
+product INTEL JSL_I2C_0                0x4de8  Jasper Lake I2C
+product INTEL JSL_I2C_1                0x4de9  Jasper Lake I2C
+product INTEL JSL_I2C_2                0x4dea  Jasper Lake I2C
+product INTEL JSL_I2C_3                0x4deb  Jasper Lake I2C
+product INTEL JSL_XHCI         0x4ded  Jasper Lake xHCI
+product INTEL JSL_XDCI         0x4dee  Jasper Lake xDCI
+product INTEL JSL_SRAM         0x4def  Jasper Lake Shared SRAM
+product INTEL JSL_SDXC         0x4df8  Jasper Lake SDXC
+product INTEL JSL_LPSS_SPI_2   0x4dfb  Jasper Lake SPI
+product INTEL JSL_DPTF         0x4e03  Jasper Lake DPTF
+product INTEL JSL_GNA          0x4e11  Jasper Lake GNA
+product INTEL JSL_HB_1         0x4e12  Jasper Lake Host
+product INTEL JSL_HB_2         0x4e14  Jasper Lake Host
+product INTEL JSL_HB_3         0x4e22  Jasper Lake Host
+product INTEL JSL_HB_4         0x4e24  Jasper Lake Host
+product INTEL JSL_HB_5         0x4e26  Jasper Lake Host
+product INTEL JSL_HB_6         0x4e28  Jasper Lake Host
+product INTEL JSL_TH           0x4e29  Jasper Lake TH
  product INTEL JSL_GT_1                0x4e51  UHD Graphics
  product INTEL JSL_GT_2                0x4e55  UHD Graphics
  product INTEL JSL_GT_3                0x4e57  UHD Graphics

Hi Jonathan,

thanks for your fast response and the added devices to pcidevs.
I can confirm that the touchpad now also works via i2c and the soundcard is detected and also working. In my opintion the patches can be commited. Also with the wsfb driver the laptop is usable. I look forward to the 5.15 drm driver.


Below is a new dmesg.

Thanks Sven

OpenBSD 7.0-current (GENERIC.MP) #13: Mon Jan 10 19:16:52 CET 2022
    [email protected]:/usr/src/sys/arch/amd64/compile/GENERIC.MP
real mem = 8369795072 (7982MB)
avail mem = 8100126720 (7724MB)
random: good seed from bootblocks
mpath0 at root
scsibus0 at mpath0: 256 targets
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 3.3 @ 0x744c1000 (34 entries)
bios0: vendor Insyde Corp. version "V1.11" date 08/02/2021
bios0: Acer Swift SF114-34
acpi0 at bios0: ACPI 6.1
acpi0: sleep states S0 S3 S4 S5
acpi0: tables DSDT FACP UEFI SSDT SSDT SSDT SSDT SSDT TPM2 SSDT NHLT SSDT LPIT WSMT SSDT SSDT DBGP DBG2 SSDT ECDT HPET APIC MCFG PRAM SSDT DMAR SSDT FPDT BGRT acpi0: wakeup devices 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) RP05(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: Intel(R) Pentium(R) Silver N6000 @ 1.10GHz, 3292.87 MHz, 06-9c-00
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,EST,TM2,SSSE3,SDBG,CX16,xTPR,PDCM,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,RDRAND,NXE,RDTSCP,LONG,LAHF,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,SMEP,ERMS,RDSEED,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu0: 1MB 64b/line 8-way L2 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.2.1.1.1, IBE
cpu1 at mainbus0: apid 2 (application processor)
cpu1: Intel(R) Pentium(R) Silver N6000 @ 1.10GHz, 3292.88 MHz, 06-9c-00
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,EST,TM2,SSSE3,SDBG,CX16,xTPR,PDCM,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,RDRAND,NXE,RDTSCP,LONG,LAHF,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,SMEP,ERMS,RDSEED,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu1: 1MB 64b/line 8-way L2 cache
cpu1: smt 0, core 1, package 0
cpu2 at mainbus0: apid 4 (application processor)
cpu2: Intel(R) Pentium(R) Silver N6000 @ 1.10GHz, 3093.31 MHz, 06-9c-00
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,EST,TM2,SSSE3,SDBG,CX16,xTPR,PDCM,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,RDRAND,NXE,RDTSCP,LONG,LAHF,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,SMEP,ERMS,RDSEED,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu2: 1MB 64b/line 8-way L2 cache
cpu2: smt 0, core 2, package 0
cpu3 at mainbus0: apid 6 (application processor)
cpu3: Intel(R) Pentium(R) Silver N6000 @ 1.10GHz, 3093.31 MHz, 06-9c-00
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,EST,TM2,SSSE3,SDBG,CX16,xTPR,PDCM,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,RDRAND,NXE,RDTSCP,LONG,LAHF,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,SMEP,ERMS,RDSEED,SMAP,CLFLUSHOPT,CLWB,PT,SHA,UMIP,MD_CLEAR,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES
cpu3: 1MB 64b/line 8-way L2 cache
cpu3: smt 0, core 3, 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 (RP01)
acpiprt2 at acpi0: bus -1 (RP02)
acpiprt3 at acpi0: bus -1 (RP03)
acpiprt4 at acpi0: bus -1 (RP04)
acpiprt5 at acpi0: bus 1 (RP05)
acpiprt6 at acpi0: bus -1 (RP06)
acpiprt7 at acpi0: bus -1 (RP07)
acpiprt8 at acpi0: bus -1 (RP08)
acpiprt9 at acpi0: bus -1 (RP09)
acpiprt10 at acpi0: bus -1 (RP10)
acpiprt11 at acpi0: bus -1 (RP11)
acpiprt12 at acpi0: bus -1 (RP12)
acpiprt13 at acpi0: bus -1 (RP13)
acpiprt14 at acpi0: bus -1 (RP14)
acpiprt15 at acpi0: bus -1 (RP15)
acpiprt16 at acpi0: bus -1 (RP16)
acpiprt17 at acpi0: bus -1 (RP17)
acpiprt18 at acpi0: bus -1 (RP18)
acpiprt19 at acpi0: bus -1 (RP19)
acpiprt20 at acpi0: bus -1 (RP20)
acpiprt21 at acpi0: bus -1 (RP21)
acpiprt22 at acpi0: bus -1 (RP22)
acpiprt23 at acpi0: bus -1 (RP23)
acpiprt24 at acpi0: bus -1 (RP24)
acpipci0 at acpi0 PC00: 0x00000000 0x00000011 0x00000001
acpiac0 at acpi0: AC unit online
acpibtn0 at acpi0: LID0
"10251229" at acpi0 not configured
acpibat0 at acpi0: BAT0 model "AP18C4K" serial 891 type LION oem "Murata KT0030401"
"INTC1043" at acpi0 not configured
"INTC1043" at acpi0 not configured
acpicmos0 at acpi0
"SYNA7DAB" at acpi0 not configured
"PNP0C14" at acpi0 not configured
"INT34C8" at acpi0 not configured
acpibtn1 at acpi0: PWRB
acpibtn2 at acpi0: SLPB
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
"INT33A1" at acpi0 not configured
"INTC1040" at acpi0 not configured
tpm0 at acpi0 TPM_ 2.0 (CRB) addr 0xfed40000/0x5000, device 0x00000000 rev 0x0
acpipwrres0 at acpi0: BTPR, resource for HS08
acpipwrres1 at acpi0: WRST
acpipwrres2 at acpi0: PXP_, resource for RP02
acpipwrres3 at acpi0: PXP_, resource for RP03
acpipwrres4 at acpi0: PXP_, resource for RP05
acpipwrres5 at acpi0: PAUD, resource for HDAS
acpicpu0 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x31), C1(1000@1 mwait.1), PSS acpicpu1 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x31), C1(1000@1 mwait.1), PSS acpicpu2 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x31), C1(1000@1 mwait.1), PSS acpicpu3 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x31), C1(1000@1 mwait.1), PSS
acpipwrres6 at acpi0: PIN_
acpidock0 at acpi0: DOCK not docked (0)
acpivideo0 at acpi0: GFX0
acpivout0 at acpivideo0: DD1F
acpivout1 at acpivideo0: DD2F
cpu0: Enhanced SpeedStep 3292 MHz: speeds: 1101, 1100, 1000, 900, 800 MHz
pci0 at mainbus0 bus 0
0:31:5: mem address conflict 0xfe010000/0x1000
pchb0 at pci0 dev 0 function 0 "Intel Jasper Lake Host" rev 0x00
"Intel UHD Graphics" rev 0x01 at pci0 dev 2 function 0 not configured
"Intel Jasper Lake DPTF" rev 0x00 at pci0 dev 4 function 0 not configured
"Intel Jasper Lake GNA" rev 0x00 at pci0 dev 8 function 0 not configured
xhci0 at pci0 dev 20 function 0 "Intel Jasper Lake xHCI" rev 0x01: msi, xHCI 1.10
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 Jasper Lake Shared SRAM" rev 0x01 at pci0 dev 20 function 2 not configured vendor "Intel", unknown product 0x4df0 (class network subclass miscellaneous, rev 0x01) at pci0 dev 20 function 3 not configured dwiic0 at pci0 dev 21 function 0 "Intel Jasper Lake I2C" rev 0x01: apic 2 int 16
iic0 at dwiic0
ihidev0 at iic0 addr 0x2c , can't establish interrupt (polling), vendor 0x6cb product 0xcd40, SYNA7DAB
ihidev0: 14 report ids
imt0 at ihidev0: clickpad, 5 contacts
wsmouse0 at imt0 mux 0
ims0 at ihidev0 reportid 2: 2 buttons
wsmouse1 at ims0 mux 0
hid at ihidev0 reportid 6 not configured
hid at ihidev0 reportid 7 not configured
hid at ihidev0 reportid 9 not configured
hid at ihidev0 reportid 10 not configured
hid at ihidev0 reportid 11 not configured
hid at ihidev0 reportid 12 not configured
hid at ihidev0 reportid 13 not configured
hid at ihidev0 reportid 14 not configured
"Intel Jasper Lake HECI" rev 0x01 at pci0 dev 22 function 0 not configured
sdhc0 at pci0 dev 26 function 0 "Intel Jasper Lake eMMC" rev 0x01: apic 2 int 16
sdhc0: SDHC 3.0, 200 MHz base clock
sdmmc0 at sdhc0: 8-bit, sd high-speed, mmc high-speed, ddr52, dma
ppb0 at pci0 dev 28 function 0 "Intel Jasper Lake PCIE" rev 0x01: msi
pci1 at ppb0 bus 1
nvme0 at pci1 dev 0 function 0 "Kingston A2000" rev 0x03: msix, NVMe 1.3
nvme0: KINGSTON SA2000M81000G, firmware S5Z42109, serial 50026B768429F3BB
scsibus1 at nvme0: 2 targets, initiator 0
sd0 at scsibus1 targ 1 lun 0: <NVMe, KINGSTON SA2000M, S5Z4>
sd0: 953869MB, 512 bytes/sector, 1953525168 sectors
"Intel Jasper Lake UART" rev 0x01 at pci0 dev 30 function 0 not configured
"Intel Jasper Lake SPI" rev 0x01 at pci0 dev 30 function 3 not configured
pcib0 at pci0 dev 31 function 0 "Intel Jasper Lake eSPI" rev 0x01
azalia0 at pci0 dev 31 function 3 "Intel Jasper Lake HD Audio" rev 0x01: msi
azalia0: codecs: Realtek ALC256, Intel/0x281a, using Realtek ALC256
audio0 at azalia0
ichiic0 at pci0 dev 31 function 4 "Intel Jasper Lake SMBus" rev 0x01: apic 2 int 16
iic1 at ichiic0
"Intel Jasper Lake 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
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
vmm0 at mainbus0: VMX/EPT
efifb0 at mainbus0: 1920x1080, 32bpp
wsdisplay0 at efifb0 mux 1: console (std, vt100 emulation), using wskbd0
wsdisplay0: screen 1-5 added (std, vt100 emulation)
uhidev0 at uhub0 port 1 configuration 1 interface 0 "Logitech USB Receiver" rev 2.00/22.01 addr 2
uhidev0: iclass 3/1
ums0 at uhidev0: 16 buttons, Z and W dir
wsmouse2 at ums0 mux 0
uhidev1 at uhub0 port 1 configuration 1 interface 1 "Logitech USB Receiver" rev 2.00/22.01 addr 2
uhidev1: iclass 3/0, 17 report ids
uhidpp0 at uhidev1 device 1 mouse "M315/M235" serial 87-21-36-40
ucc0 at uhidev1 reportid 3: 652 usages, 18 keys, array
wskbd1 at ucc0 mux 1
wskbd1: connecting to wsdisplay0
uvideo0 at uhub0 port 4 configuration 1 interface 0 "SunplusIT Inc HD User Facing" rev 2.01/0.02 addr 3
video0 at uvideo0
ugen0 at uhub0 port 5 "EgisTec EgisTec EH575" rev 2.00/10.72 addr 4
sdmmc0: can't enable card
ugen1 at uhub0 port 8 "Intel Bluetooth" rev 2.01/0.02 addr 5
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: 262143MB, 512 bytes/sector, 536870384 sectors
root on sd1a (43c961ff95d0f602.a) swap on sd1b dump on sd1b

Reply via email to