> Date: Sat, 21 Dec 2024 11:04:52 +0100
> From: Kirill A. Korinsky <kir...@korins.ky>
> 
> On Fri, 20 Dec 2024 23:26:35 +0100,
> Kirill A. Korinsky <kir...@korins.ky> wrote:
> > 
> > On Fri, 20 Dec 2024 14:02:38 +0100,
> > Kirill A. Korinsky <kir...@korins.ky> wrote:
> > > 
> > > Sorry for misslead you. Indeed bsd.mp leads to ddb. I can't use keyboard 
> > > in
> > > it, but I can share a picture of the screen [1] and here is OCR of trace:
> > > 
> > >         panic: attempt to access user address 0x0 from EL1
> > >         Stopped at panic+0x140: cmp w21, #0x0
> > > 
> > >         TID PID UID PRFLAGS PFLAGS CPU COMMAND
> > >         db_enter() at panic+0x13c
> > >         panic() at kdata_abort+0x180
> > >         do_el0_sync() at handle_el1h_sync+0x68
> > >         handle_el1h_sync() at qciic_exec+0x2d4
> > >         qciic_exec() at ihidev_intr+0x70
> > >         ihidev_intr() at qcgpio_intr+0xac
> > >         qcgpio_intr() at agintc_irq_handler+0x2bc
> > > 
> > >         ddb{0}>
> > > 
> > > 
> > 
> > After removing ihidev I was able to boot this machine to finally obtain
> > dmesg.
> >
> 
> The issue is created by touchpad only. When I disable it, like this:
> 
> Index: sys/dev/i2c/ihidev.c
> ===================================================================
> RCS file: /cvs/src/sys/dev/i2c/ihidev.c,v
> retrieving revision 1.33
> diff -u -p -r1.33 ihidev.c
> --- sys/dev/i2c/ihidev.c      18 Oct 2024 12:53:49 -0000      1.33
> +++ sys/dev/i2c/ihidev.c      21 Dec 2024 09:56:53 -0000
> @@ -115,6 +115,14 @@ ihidev_attach(struct device *parent, str
>       if (ihidev_hid_command(sc, I2C_HID_CMD_DESCR, NULL) ||
>           ihidev_hid_desc_parse(sc)) {
>               printf(", failed fetching initial HID descriptor\n");
> +             return;
> +     }
> +
> +     if (letoh16(sc->hid_desc.wVendorID) == 0x35cc) {
> +             printf(", %s vendor 0x%x product 0x%x, %s, ignored\n",
> +                 iic_intr_string(sc->sc_tag, ia->ia_intr),
> +                 letoh16(sc->hid_desc.wVendorID), 
> letoh16(sc->hid_desc.wProductID),
> +                 (char *)ia->ia_cookie);
>               return;
>       }
>  
> I was able to use keyboard and touchscreen.
> 
> Interesting that the kernel reads only 0xff as report from this device, and
> crashes at iic_intr_establish.
> 
> But, device continues to send some packages, probably full of 0xff, because
> I see debug log like: invalid packet size (65535 vs ...)
> 
> If anyone interested, here dmesg with enabled ihidev debug:

Interesting.  Linux seems to define some quirks for this particular
touchpad; see the code in drivers/hid/hid-multitouch.c.  Especially
the MT_QUIRK_FORCE_GET_FEATURE might be interesting although I'm not
sure you get far enough for that to matter.

> OpenBSD 7.6-current (GENERIC.MP) #11: Sat Dec 21 10:45:09 CET 2024
>     ca...@honor.sa31-cbt.catap.net:/usr/src/sys/arch/arm64/compile/GENERIC.MP
> real mem  = 33856348160 (32287MB)
> avail mem = 32674095104 (31160MB)
> random: good seed from bootblocks
> mainbus0 at root: ACPI
> psci0 at mainbus0: PSCI 1.1, SMCCC 1.3, SYSTEM_SUSPEND
> efi0 at mainbus0: UEFI 2.9
> efi0: INSYDE Corp. rev 0x0
> smbios0 at efi0: SMBIOS 3.6.0
> smbios0: vendor HONOR version "1.12" date 11/07/2024
> smbios0: HONOR MRO-XXX
> cpu0 at mainbus0 mpidr 0: Qualcomm Oryon r2p1
> cpu0: 192KB 64b/line 6-way L1 PIPT I-cache, 96KB 64b/line 6-way L1 D-cache
> cpu0: 12288KB 64b/line 12-way L2 cache
> cpu0: 
> RNDR,TLBIOS+IRANGE,TS+AXFLAG,FHM,DP,SM4,SM3,SHA3,RDM,Atomic,CRC32,SHA2+SHA512,SHA1,AES+PMULL,I8MM,BF16,SPECRES,SB,FRINTTS,GPA,LRCPC+LDAPUR,FCMA,JSCVT,APA+PAC,DPB+DCCVADP,CLRBHB,RPRES,ECV+CNTHCTL,ASID16,AFP,SpecSEI,PAN+ATS1E1+EPAN,LO,HPDS,VH,IDS,AT,CSV3,CSV2,DIT,AdvSIMD+HP,FP+HP,BT,SSBS+MSR
> cpu1 at mainbus0 mpidr 100: Qualcomm Oryon r2p1
> cpu1: 192KB 64b/line 6-way L1 PIPT I-cache, 96KB 64b/line 6-way L1 D-cache
> cpu1: 12288KB 64b/line 12-way L2 cache
> cpu2 at mainbus0 mpidr 200: Qualcomm Oryon r2p1
> cpu2: 192KB 64b/line 6-way L1 PIPT I-cache, 96KB 64b/line 6-way L1 D-cache
> cpu2: 12288KB 64b/line 12-way L2 cache
> cpu3 at mainbus0 mpidr 300: Qualcomm Oryon r2p1
> cpu3: 192KB 64b/line 6-way L1 PIPT I-cache, 96KB 64b/line 6-way L1 D-cache
> cpu3: 12288KB 64b/line 12-way L2 cache
> cpu4 at mainbus0 mpidr 10000: Qualcomm Oryon r1p1
> cpu4: 192KB 64b/line 6-way L1 PIPT I-cache, 96KB 64b/line 6-way L1 D-cache
> cpu4: 12288KB 64b/line 12-way L2 cache
> cpu5 at mainbus0 mpidr 10100: Qualcomm Oryon r1p1
> cpu5: 192KB 64b/line 6-way L1 PIPT I-cache, 96KB 64b/line 6-way L1 D-cache
> cpu5: 12288KB 64b/line 12-way L2 cache
> cpu6 at mainbus0 mpidr 10200: Qualcomm Oryon r1p1
> cpu6: 192KB 64b/line 6-way L1 PIPT I-cache, 96KB 64b/line 6-way L1 D-cache
> cpu6: 12288KB 64b/line 12-way L2 cache
> cpu7 at mainbus0 mpidr 10300: Qualcomm Oryon r1p1
> cpu7: 192KB 64b/line 6-way L1 PIPT I-cache, 96KB 64b/line 6-way L1 D-cache
> cpu7: 12288KB 64b/line 12-way L2 cache
> cpu8 at mainbus0 mpidr 20000: Qualcomm Oryon r1p1
> cpu8: 192KB 64b/line 6-way L1 PIPT I-cache, 96KB 64b/line 6-way L1 D-cache
> cpu8: 12288KB 64b/line 12-way L2 cache
> cpu9 at mainbus0 mpidr 20100: Qualcomm Oryon r1p1
> cpu9: 192KB 64b/line 6-way L1 PIPT I-cache, 96KB 64b/line 6-way L1 D-cache
> cpu9: 12288KB 64b/line 12-way L2 cache
> cpu10 at mainbus0 mpidr 20200: Qualcomm Oryon r1p1
> cpu10: 192KB 64b/line 6-way L1 PIPT I-cache, 96KB 64b/line 6-way L1 D-cache
> cpu10: 12288KB 64b/line 12-way L2 cache
> cpu11 at mainbus0 mpidr 20300: Qualcomm Oryon r1p1
> cpu11: 192KB 64b/line 6-way L1 PIPT I-cache, 96KB 64b/line 6-way L1 D-cache
> cpu11: 12288KB 64b/line 12-way L2 cache
> apm0 at mainbus0
> agintc0 at mainbus0 shift 4:4 nirq 1024 nredist 12 ipi: 0, 1, 2: 
> "interrupt-controller"
> "gic-its" at agintc0 not configured
> agtimer0 at mainbus0: 19200 kHz
> acpi0 at mainbus0: ACPI 5.0
> acpi0: sleep states
> acpi0: tables DSDT FACP UEFI FFT_ SSDT FPDT CSRT DBG2 GTDT IORT APIC MCFG 
> PPTT SDEV SPCR TPM2 MSDM FPDT BGRT
> acpi0: wakeup devices BTH0(S0)
> acpiiort0 at acpi0
> smmu0 at acpiiort0 addr 0x15000000/0x100000: disabled
> smmu1 at acpiiort0 addr 0x3da0000/0x40000: disabled
> acpimcfg0 at acpi0
> acpimcfg0: addr 0x400000000, bus 0-255
> acpimcfg0: addr 0x500000000, bus 0-255
> acpimcfg0: addr 0x6000000000, bus 0-255
> acpimcfg0: addr 0x740000000, bus 0-1
> acpimcfg0: addr 0x7c000000, bus 0-1
> acpimcfg0: addr 0x7e000000, bus 0-1
> acpimcfg0: addr 0x70000000, bus 0-1
> acpimcfg0: addr 0x74000000, bus 0-1
> "QCOM06C2" at acpi0 not configured
> "QCOM0C17" at acpi0 not configured
> qcgpio0 at acpi0 GIO0 addr 0xf100000/0xf00000 irq 240
> "QCOM0C0B" at acpi0 not configured
> "QCOM0C2B" at acpi0 not configured
> "QCOM0427" at acpi0 not configured
> "QCOM04DD" at acpi0 not configured
> "QCOM06E1" at acpi0 not configured
> "QCOM0C84" at acpi0 not configured
> "QCOM0C8E" at acpi0 not configured
> "QCOM06E0" at acpi0 not configured
> "QCOM0C0D" at acpi0 not configured
> "QCOM06DF" at acpi0 not configured
> "QCOM06DC" at acpi0 not configured
> "QCOM0C20" at acpi0 not configured
> "QCOM0C09" at acpi0 not configured
> "QCOM068F" at acpi0 not configured
> "QCOM0C5C" at acpi0 not configured
> "QCOM0D0A" at acpi0 not configured
> "QCOM0CB0" at acpi0 not configured
> "QCOM06E5" at acpi0 not configured
> "QCOM0C09" at acpi0 not configured
> "QCOM068F" at acpi0 not configured
> "QCOM04DE" at acpi0 not configured
> "QCOM0C96" at acpi0 not configured
> "QCOM0C1B" at acpi0 not configured
> "QCOM06DD" at acpi0 not configured
> "QCOM0C8D" at acpi0 not configured
> qciic0 at acpi0 I2C6 addr 0xb94000/0x4000
> iic0 at qciic0
> "QCOM0C98" at acpi0 not configured
> "QCOM0C06" at acpi0 not configured
> "QCOM0693" at acpi0 not configured
> qciic1 at acpi0 IC10 addr 0xa84000/0x4000
> iic1 at qciic1
> ihidev0 at iic1 addr 0x3aihidev0: HID command I2C_HID_CMD_DESCR at 0x1
> ihidev0: HID descriptor: 1e 00 00 01 95 00 02 00 03 00 20 00 04 00 20 00 05 
> 00 06 00 9f 04 43 53 01 01 00 00 00 00
> ihidev0: resetting
> ihidev0: HID command I2C_HID_CMD_SET_POWER(0)
> ihidev0: HID command I2C_HID_CMD_RESET
> ihidev0: HID command I2C_HID_REPORT_DESCR at 0x2 with size 149
> ihidev0: HID report descriptor: 05 01 09 06 a1 01 85 01 05 07 19 e0 29 e7 15 
> 00 25 01 75 01 95 08 81 02 75 08 95 01 81 01 19 00 29 8f 15 00 25 8f 95 06 75 
> 08 95 06 81 00 05 08 09 01 09 02 09 03 09 06 09 09 15 00 25 01 75 01 95 05 91 
> 02 95 01 75 03 95 01 91 03 c0 06 a0 ff 09 01 a1 01 85 05 09 02 15 00 25 ff 75 
> 08 95 9f 81 02 09 03 15 00 25 ff 75 08 95 9f 91 02 09 04 15 00 26 ff 00 75 08 
> 95 9f b1 02 c0 05 0c 09 01 a1 01 85 03 19 00 2a 3c 02 15 00 26 3c 02 75 10 95 
> 01 81 00 c0
>  gpio 384, vendor 0x49f product 0x5343, QTEC0001
> ihidev0: 5 report ids
> ihidev0: repid 1 size 8
> ihidev0: repid 3 size 2
> ihidev0: repid 5 size 159
> ikbd0 at ihidev0 reportid 1: 8 variable keys, 6 key codes
> ihidev0: ihidev_open: state=0 refcnt=0
> ihidev0: resetting
> ihidev0: HID command I2C_HID_CMD_SET_POWER(0)
> wskbd0 at ikbd0: console keyboard
> icc0 at ihidev0 reportid 3: 573 usages, 20 keys, array
> wskbd1 at icc0 mux 1
> hid at ihidev0 reportid 5 not configured
> qciic2 at acpi0 I2C1 addr 0xb80000/0x4000
> iic2 at qciic2
> qciic3 at acpi0 I2C2 addr 0xb84000/0x4000
> iic3 at qciic3
> ihidev1 at iic3 addr 0x5dihidev1: HID command I2C_HID_CMD_DESCR at 0x1
> ihidev1: HID descriptor: 1e 00 00 01 df 02 02 00 03 00 2a 00 04 00 20 00 05 
> 00 06 00 cc 35 04 01 01 01 00 00 00 00
> ihidev1: resetting
> ihidev1: HID command I2C_HID_CMD_SET_POWER(0)
> ihidev1: HID command I2C_HID_CMD_RESET
> ihidev1: HID command I2C_HID_REPORT_DESCR at 0x2 with size 735
> ihidev1: HID report descriptor: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 
> , gpio 896 vendor 0x35cc product 0x104, QTEC0002, ignored
> qciic4 at acpi0 I2C9 addr 0xa80000/0x4000
> iic4 at qciic4
> ihidev2 at iic4 addr 0x38ihidev2: HID command I2C_HID_CMD_DESCR at 0x1
> ihidev2: HID descriptor: 1e 00 00 01 dd 01 02 00 03 00 42 00 04 00 42 00 05 
> 00 06 00 08 28 62 56 02 45 00 00 00 00
> ihidev2: resetting
> ihidev2: HID command I2C_HID_CMD_SET_POWER(0)
> ihidev2: HID command I2C_HID_CMD_RESET
> ihidev2: HID command I2C_HID_REPORT_DESCR at 0x2 with size 477
> ihidev2: HID report descriptor: 05 0d 09 04 a1 01 85 01 09 22 a1 02 09 42 15 
> 00 25 01 75 01 95 01 81 02 95 01 81 03 95 06 81 03 75 08 09 51 95 01 81 02 05 
> 01 26 30 0c 75 10 55 0e 65 11 09 30 35 00 46 06 0c 95 02 81 02 35 01 35 00 46 
> 05 08 26 20 08 09 31 81 02 35 01 35 00 05 0d 26 ff 00 46 ff 00 95 01 09 48 81 
> 02 09 49 81 02 c0 09 22 a1 02 09 42 15 00 25 01 75 01 95 01 81 02 95 01 81 03 
> 95 06 81 03 75 08 09 51 95 01 81 02 05 01 26 30 0c 75 10 55 0e 65 11 09 30 35 
> 00 46 06 0c 95 02 81 02 35 01 35 00 46 05 08 26 20 08 09 31 81 02 35 01 35 00 
> 05 0d 26 ff 00 46 ff 00 95 01 09 48 81 02 09 49 81 02 c0 09 22 a1 02 09 42 15 
> 00 25 01 75 01 95 01 81 02 95 01 81 03 95 06 81 03 75 08 09 51 95 01 81 02 05 
> 01 26 30 0c 75 10 55 0e 65 11 09 30 35 00 46 06 0c 95 02 81 02 35 01 35 00 46 
> 05 08 26 20 08 09 31 81 02 35 01 35 00 05 0d 26 ff 00 46 ff 00 95 01 09 48 81 
> 02 09 49 81 02 c0 09 22 a1 02 09 42 15 00 25 01 75 01 95 01 81 02 95 01 81 03 
> 95 06 81 03 75 08 09 51 95 01 81 02 05 01 26 30 0c 75 10 55 0e 65 11 09 30 35 
> 00 46 06 0c 95 02 81 02 35 01 35 00 46 05 08 26 20 08 09 31 81 02 35 01 35 00 
> 05 0d 26 ff 00 46 ff 00 95 01 09 48 81 02 09 49 81 02 c0 05 0d 27 ff ff 00 00 
> 75 10 95 01 09 56 81 02 09 54 25 10 95 01 75 08 81 02 85 02 09 55 95 01 25 0a 
> b1 02 06 00 ff 09 c5 85 05 15 00 26 ff 00 75 08 96 00 01 b1 02 c0 06 00 ff 09 
> 01 a1 01 15 00 26 ff 00 75 08 85 06 95 3f 09 01 81 02 09 01 91 02 c0 06 01 ff 
> 09 01 a1 01 15 00 26 ff 00 75 08 95 3b 85 10 09 01 81 02 c0
>  gpio 51, vendor 0x2808 product 0x5662, MSFT0001
> ihidev2: 16 report ids
> ihidev2: repid 1 size 59
> ihidev2: repid 6 size 63
> ihidev2: repid 16 size 59
> ims0 at ihidev2 reportid 1: 1 button, tip
> wsmouse0 at ims0 mux 0
> hid at ihidev2 reportid 2 not configured
> hid at ihidev2 reportid 5 not configured
> hid at ihidev2 reportid 6 not configured
> hid at ihidev2 reportid 16 not configured
> ihidev2: HID command I2C_HID_CMD_SET_POWER(1)
> qciic5 at acpi0 IC14 addr 0xa94000/0x4000
> iic5 at qciic5
> "NTAG0001" at iic5 addr 0x57 not configured
> "QCOM0CA4" at acpi0 not configured
> "QCOM0D05" at acpi0 not configured
> "QCOM0C11" at acpi0 not configured
> "QCOM0C16" at acpi0 not configured
> ufshci0 at acpi0 UFS0 addr 0x1d84000/0x1c000 irq 297, UFSHCI 4.00
> scsibus0 at ufshci0: 2 targets, initiator 0
> sd0 at scsibus0 targ 1 lun 0: <MICRON, MT001TAYAX8U40, 0106>
> sd0: 973048MB, 4096 bytes/sector, 249100288 sectors
> "QCOM2466" at acpi0 not configured
> "QCOM0C2D" at acpi0 not configured
> "QCOM0C2C" at acpi0 not configured
> "ACPI000E" at acpi0 not configured
> "QCOM0C2A" at acpi0 not configured
> "QCOM0C77" at acpi0 not configured
> "QCOM06D0" at acpi0 not configured
> "QCOM0C0A" at acpi0 not configured
> "QCOM0C0A" at acpi0 not configured
> qciic6 at acpi0 I2C3 addr 0xb88000/0x4000
> iic6 at qciic6
> qciic7 at acpi0 I2C4 addr 0xb8c000/0x4000
> iic7 at qciic7
> qciic8 at acpi0 I2C5 addr 0xb90000/0x4000
> iic8 at qciic8
> "QCOM0C16" at acpi0 not configured
> qciic9 at acpi0 I2C8 addr 0xb9c000/0x4000
> iic9 at qciic9
> "QCOM0C16" at acpi0 not configured
> "QCOM0C2F" at acpi0 not configured
> "QCOM0CC3" at acpi0 not configured
> "QCOM0CAC" at acpi0 not configured
> "QCOM0C83" at acpi0 not configured
> "QCOM0C36" at acpi0 not configured
> "QCOM0CE4" at acpi0 not configured
> "QCOM0C85" at acpi0 not configured
> acpipci0 at acpi0 PCI4
> pci0 at acpipci0
> ppb0 at pci0 dev 0 function 0 "Qualcomm X1E80100 PCIe" rev 0x00
> pci1 at ppb0 bus 1
> "Qualcomm WCN7850" rev 0x01 at pci1 dev 0 function 0 not configured
> "QCOM0C82" at acpi0 not configured
> "QCOM0C87" at acpi0 not configured
> "PNP0C0B" at acpi0 not configured
> "QCOM0C13" at acpi0 not configured
> "ACPI0010" at acpi0 not configured
> "ACPI0010" at acpi0 not configured
> "ACPI0010" at acpi0 not configured
> "ACPI0010" at acpi0 not configured
> "QCOM0C88" at acpi0 not configured
> "QCOM0C88" at acpi0 not configured
> "QCOM0C88" at acpi0 not configured
> "QCOM0CA8" at acpi0 not configured
> "QCOM0CD5" at acpi0 not configured
> "QCOM06D8" at acpi0 not configured
> "QCOM06E7" at acpi0 not configured
> "HNM0001" at acpi0 not configured
> "QCOM0C99" at acpi0 not configured
> "QCOM0C27" at acpi0 not configured
> "QCOM0C33" at acpi0 not configured
> "QCOM0C25" at acpi0 not configured
> "QCOM0D06" at acpi0 not configured
> "QCOM0CCC" at acpi0 not configured
> "QCOM0CF1" at acpi0 not configured
> "QCOM0694" at acpi0 not configured
> acpibtn0 at acpi0: LID0
> "QCOM06D9" at acpi0 not configured
> "PNP0C14" at acpi0 not configured
> "PNP0A05" at acpi0 not configured
> "PNP0A05" at acpi0 not configured
> xhci0 at acpi0 URS0 addr 0xa600000/0xfffff irq 387, xHCI 1.10
> usb0 at xhci0: USB revision 3.0
> uhub0 at usb0 configuration 1 interface 0 "Generic xHCI root hub" rev 
> 3.00/1.00 addr 1
> xhci1 at acpi0 URS1 addr 0xa800000/0xfffff irq 389, xHCI 1.10
> usb1 at xhci1: USB revision 3.0
> uhub1 at usb1 configuration 1 interface 0 "Generic xHCI root hub" rev 
> 3.00/1.00 addr 1
> xhci2 at acpi0 URS2 addr 0xa000000/0xfffff irq 385, xHCI 1.10
> usb2 at xhci2: USB revision 3.0
> uhub2 at usb2 configuration 1 interface 0 "Generic xHCI root hub" rev 
> 3.00/1.00 addr 1
> xhci3 at acpi0 USB3 addr 0xa400000/0xfffff irq 339, xHCI 1.10
> usb3 at xhci3: USB revision 3.0
> uhub3 at usb3 configuration 1 interface 0 "Generic xHCI root hub" rev 
> 3.00/1.00 addr 1
> xhci4 at acpi0 USB4 addr 0xa200000/0xfffff irq 272, xHCI 1.10
> usb4 at xhci4: USB revision 3.0
> uhub4 at usb4 configuration 1 interface 0 "Generic xHCI root hub" rev 
> 3.00/1.00 addr 1
> "QCOM0C6D" at acpi0 not configured
> "OEM2UPDX65TS01" at acpi0 not configured
> "ACPI000C" at acpi0 not configured
> "QCOM0C58" at acpi0 not configured
> "QCOM0C58" at acpi0 not configured
> "QCOM0C59" at acpi0 not configured
> "QCOM0C59" at acpi0 not configured
> "QCOM0D01" at acpi0 not configured
> "QCOM0D01" at acpi0 not configured
> "QCOM0C91" at acpi0 not configured
> "QCOM0CBF" at acpi0 not configured
> "QCOM0CF2" at acpi0 not configured
> "QCOM0CF3" at acpi0 not configured
> "QCOM0CF4" at acpi0 not configured
> "QCOM0CF5" at acpi0 not configured
> "QCOM0CF6" at acpi0 not configured
> "QCOM0CF7" at acpi0 not configured
> "QCOM0CF8" at acpi0 not configured
> "QCOM0CFB" at acpi0 not configured
> "QCOM0CF9" at acpi0 not configured
> "QCOM0CFC" at acpi0 not configured
> "QCOM0C5A" at acpi0 not configured
> "QCOM0C5A" at acpi0 not configured
> "QCOM0C5E" at acpi0 not configured
> "QCOM0C5F" at acpi0 not configured
> "QCOM0C60" at acpi0 not configured
> "QCOM0C61" at acpi0 not configured
> "QCOM0C62" at acpi0 not configured
> "QCOM0C63" at acpi0 not configured
> "QCOM0C64" at acpi0 not configured
> "ACPI0011" at acpi0 not configured
> "QCOM0D04" at acpi0 not configured
> "QCOM0C6B" at acpi0 not configured
> "PNP0C14" at acpi0 not configured
> acpipwrres0 at acpi0: R3RR
> acpipwrres1 at acpi0: R4RR
> acpipwrres2 at acpi0: R5RR
> acpipwrres3 at acpi0: R6RR
> acpipwrres4 at acpi0: R7RR
> acpitz0 at acpi0
> acpitz1 at acpi0
> acpitz2 at acpi0
> acpitz3 at acpi0
> acpitz4 at acpi0
> acpitz5 at acpi0
> acpitz6 at acpi0
> acpitz7 at acpi0
> acpitz8 at acpi0
> acpitz9 at acpi0
> acpitz10 at acpi0
> acpitz11 at acpi0
> acpitz12 at acpi0
> acpitz13 at acpi0
> acpitz14 at acpi0
> acpitz15 at acpi0
> acpitz16 at acpi0
> acpitz17 at acpi0
> acpitz18 at acpi0
> acpitz19 at acpi0
> acpitz20 at acpi0
> acpitz21 at acpi0
> acpitz22 at acpi0
> acpitz23 at acpi0
> acpitz24 at acpi0
> acpitz25 at acpi0
> acpitz26 at acpi0
> acpitz27 at acpi0
> acpitz28 at acpi0: critical temperature is 99 degC
> ure0 at uhub1 port 2 configuration 1 interface 0 "Realtek USB 10/100/1000 
> LAN" rev 3.00/30.00 addr 2
> ure0: RTL8153 (0x5c30), address 00:e0:4c:01:16:4d
> rgephy0 at ure0 phy 0: RTL8251, rev. 0
> umass0 at uhub3 port 1 configuration 1 interface 0 "SSK Corporation USB3.2 
> Flash Drive" rev 2.10/2.00 addr 2
> umass0: using SCSI over Bulk-Only
> scsibus1 at umass0: 2 targets, initiator 0
> sd1 at scsibus1 targ 1 lun 0: <SSK, USB3.2, > removable
> sd1: 119275MB, 512 bytes/sector, 244275200 sectors
> ugen0 at uhub3 port 2 "FPC FPC L:2407 FW:3334143" rev 2.00/1.43 addr 3
> vscsi0 at root
> scsibus2 at vscsi0: 256 targets
> softraid0 at root
> scsibus3 at softraid0: 256 targets
> root on sd1a (8de18473f5716cc3.a) swap on sd1b dump on sd1b
> WARNING: CHECK AND RESET THE DATE!
> simplefb0 at mainbus0: 2880x1920, 32bpp
> wsdisplay0 at simplefb0 mux 1: console (std, vt100 emulation), using wskbd0
> ihidev0: ihidev_open: state=0 refcnt=1
> wskbd1: connecting to wsdisplay0
> wsdisplay0: screen 1-5 added (std, vt100 emulation)
> 
> -- 
> wbr, Kirill
> 
> 

Reply via email to