On Fri, May 22, 2026 at 06:33:06PM +0000, Mikolaj Kucharski wrote:
> Hi Jonathan.
>
> On Sat, May 23, 2026 at 12:37:30AM +1000, Jonathan Gray wrote:
> > On Fri, May 22, 2026 at 12:26:05PM +0000, Mikolaj Kucharski wrote:
> > > >Synopsis: Fresh install ends up with blank screen, disabling
> > > >inteldrm brings console back.
> > > >Category: kernel
> > > >Environment:
> > > System : OpenBSD 7.9
> > > Details : OpenBSD 7.9-current (GENERIC.MP) #501: Thu May 21
> > > 19:28:37 MDT 2026
> > >
> > > [email protected]:/usr/src/sys/arch/amd64/compile/GENERIC.MP
> > >
> > > Architecture: OpenBSD.amd64
> > > Machine : amd64
> > > >Description:
> > > OpenBSD fresh install, every boot with non-modified GENERIC.MP. Initial
> > > dmesg is visible. Blue
> > > background, white font progresses with boot up. The moment filesystem is
> > > mounted and firmware files are
> > > fetchable screen goes dark pitch black. System boots up as I can SSH into
> > > the laptop and from inside all
> > > seems to be good. Except no glass console.
> > > >How-To-Repeat:
> > > Fresh install of OpenBSD/amd64 on ThinkPad X1 Carbon Gen 13 Aurora
> > > Edition.
> > > >Fix:
> > > Unknown. Workaround is to boot -c and `disable inteldrm*`. Below are
> > > details fetched over SSH with
> >
> > Does this diff to disable GuC submission (and low power states)
> > make the screen light up?
> >
> > Index: sys/dev/pci/drm/i915/i915_driver.c
> > ===================================================================
> > RCS file: /cvs/src/sys/dev/pci/drm/i915/i915_driver.c,v
> > diff -u -p -r1.30 i915_driver.c
> > --- sys/dev/pci/drm/i915/i915_driver.c 30 Apr 2026 04:33:06 -0000
> > 1.30
> > +++ sys/dev/pci/drm/i915/i915_driver.c 22 May 2026 14:27:18 -0000
> > @@ -2322,12 +2322,10 @@ inteldrm_attach(struct device *parent, s
> >
> > dev_priv->display = display;
> >
> > - /*
> > - * with GuC submission, init sometimes fails on Alder Lake-P
> > - * and Raptor Lake-S, too early for IS_ALDERLAKE
> > - */
> > - if (info->platform == INTEL_ALDERLAKE_P ||
> > - info->platform == INTEL_ALDERLAKE_S)
> > + /* uc_expand_default_options() with no GuC submission */
> > + if (GRAPHICS_VER(dev_priv) >= 12 &&
> > + (INTEL_INFO(dev_priv)->platform != INTEL_TIGERLAKE) &&
> > + (INTEL_INFO(dev_priv)->platform != INTEL_ROCKETLAKE))
> > dev_priv->params.enable_guc = ENABLE_GUC_LOAD_HUC;
> >
> > mmio_bar = (GRAPHICS_VER(dev_priv) == 2) ? 0x14 : 0x10;
> > Index: sys/dev/pci/drm/i915/i915_pci.c
> > ===================================================================
> > RCS file: /cvs/src/sys/dev/pci/drm/i915/i915_pci.c,v
> > diff -u -p -r1.25 i915_pci.c
> > --- sys/dev/pci/drm/i915/i915_pci.c 9 Mar 2026 23:58:01 -0000 1.25
> > +++ sys/dev/pci/drm/i915/i915_pci.c 22 May 2026 14:21:40 -0000
> > @@ -771,7 +771,7 @@ static const struct intel_device_info mt
> > .has_flat_ccs = 0,
> > .has_gmd_id = 1,
> > .has_guc_deprivilege = 1,
> > - .has_guc_tlb_invalidation = 1,
> > + .has_guc_tlb_invalidation = 0,
> > .has_llc = 0,
> > .has_mslice_steering = 0,
> > .has_snoop = 1,
> >
>
> Above diff didn't help.
>
> After booting with your diff, I then did following change:
>
> Index: sys/dev/pci/drm/i915/i915_driver.c
> ===================================================================
> RCS file: /cvs/src/sys/dev/pci/drm/i915/i915_driver.c,v
> diff -u -p -u -r1.30 i915_driver.c
> --- sys/dev/pci/drm/i915/i915_driver.c 30 Apr 2026 04:33:06 -0000
> 1.30
> +++ sys/dev/pci/drm/i915/i915_driver.c 22 May 2026 18:31:12 -0000
> @@ -2322,13 +2322,16 @@ inteldrm_attach(struct device *parent, s
>
> dev_priv->display = display;
>
> - /*
> - * with GuC submission, init sometimes fails on Alder Lake-P
> - * and Raptor Lake-S, too early for IS_ALDERLAKE
> - */
> - if (info->platform == INTEL_ALDERLAKE_P ||
> - info->platform == INTEL_ALDERLAKE_S)
> + printf("MMM %s: drm graphics_ver=%d platform=%d\n", __func__,
> GRAPHICS_VER(dev_priv), INTEL_INFO(dev_priv)->platform);
> + /* uc_expand_default_options() with no GuC submission */
> + if (GRAPHICS_VER(dev_priv) >= 12 &&
> + (INTEL_INFO(dev_priv)->platform != INTEL_TIGERLAKE) &&
> + (INTEL_INFO(dev_priv)->platform != INTEL_ROCKETLAKE)) {
> dev_priv->params.enable_guc = ENABLE_GUC_LOAD_HUC;
> + printf("MMM %s: drm enable_guc=%d (inside if-statment)\n",
> __func__, dev_priv->params.enable_guc);
> + } else {
> + printf("MMM %s: drm enable_guc=%d (outside if-statment)\n",
> __func__, dev_priv->params.enable_guc);
> + }
>
> mmio_bar = (GRAPHICS_VER(dev_priv) == 2) ? 0x14 : 0x10;
>
> Index: sys/dev/pci/drm/i915/i915_pci.c
> ===================================================================
> RCS file: /cvs/src/sys/dev/pci/drm/i915/i915_pci.c,v
> diff -u -p -u -r1.25 i915_pci.c
> --- sys/dev/pci/drm/i915/i915_pci.c 9 Mar 2026 23:58:01 -0000 1.25
> +++ sys/dev/pci/drm/i915/i915_pci.c 22 May 2026 18:31:12 -0000
> @@ -771,7 +771,7 @@ static const struct intel_device_info mt
> .has_flat_ccs = 0,
> .has_gmd_id = 1,
> .has_guc_deprivilege = 1,
> - .has_guc_tlb_invalidation = 1,
> + .has_guc_tlb_invalidation = 0,
> .has_llc = 0,
> .has_mslice_steering = 0,
> .has_snoop = 1,
>
>
> dmesg says with above patch:
>
> drm0 at inteldrm0
> MMM inteldrm_attach: drm graphics_ver=12 platform=37
> MMM inteldrm_attach: drm enable_guc=2 (inside if-statment)
> inteldrm0: msi, METEORLAKE, gen 12
>
dmesh with two reboots:
OpenBSD 7.9-current (GENERIC.MP) #7: Fri May 22 15:55:31 UTC 2026
[email protected]:/home/mkucharski/openbsd/src/sys/arch/amd64/compile/GENERIC.MP
real mem = 68088438784 (64934MB)
avail mem = 65996308480 (62938MB)
random: good seed from bootblocks
mpath0 at root
scsibus0 at mpath0: 256 targets
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 3.8 @ 0x7bf84000 (85 entries)
bios0: vendor LENOVO version "N4MET24W (1.11 )" date 06/23/2025
bios0: LENOVO 21NXCTO1WW
efi0 at bios0: UEFI 2.7
efi0: Lenovo rev 0x10b0
acpi0 at bios0: ACPI 6.3
acpi0: sleep states S0ix S4 S5
acpi0: tables DSDT FACP SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT
SSDT DTPR SSDT SSDT TPM2 SSDT SSDT SSDT ECDT HPET APIC MCFG SSDT SSDT SSDT SSDT
LPIT WSMT SSDT DBGP DBG2 NHLT POAT SSDT BATB DMAR FPDT SSDT SSDT SSDT SDEV ASF!
PHAT BGRT UEFI SPCR
acpi0: wakeup devices AWAC(S4) XDCI(S4) XHCI(S3) HDAS(S4) I3C0(S4) CNVW(S4)
RP01(S4) PXSX(S4) RP02(S4) PXSX(S4) PXSX(S4) RP04(S4) PXSX(S4) RP05(S4)
PXSX(S4) RP06(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 16 (boot processor)
cpu0: Intel(R) Core(TM) Ultra 7 265U, 1995.68 MHz, 06-b5-00, patch 0000000d
cpu0: cpuid 1
edx=bfebfbff<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>
ecx=77fafbff<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>
cpu0: cpuid 6 eax=df8ff7<SENSOR,ARAT,PTS> ecx=409<EFFFREQ>
cpu0: cpuid 7.0
ebx=239c27eb<FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA>
ecx=994027ac<UMIP,PKU,WAITPKG,PKS>
edx=fc1cc410<MD_CLEAR,IBT,IBRS,IBPB,STIBP,L1DF,SSBD>
cpu0: cpuid a vers=5, gp=8, gpwidth=48, ff=3, ffwidth=48
cpu0: cpuid d.1 eax=f<XSAVEOPT,XSAVEC,XGETBV1,XSAVES>
cpu0: cpuid 80000001 edx=2c100800<NXE,PAGE1GB,RDTSCP,LONG>
ecx=121<LAHF,ABM,3DNOWP>
cpu0: cpuid 80000007 edx=100<ITSC>
cpu0: msr
10a=de9fd6b<IBRS_ALL,SKIP_L1DFL,MDS_NO,IF_PSCHANGE,TAA_NO,MISC_PKG_CT,ENERGY_FILT,DOITM,SBDR_SSDP_N,FBSDP_NO,PSDP_NO,RRSBA,XAPIC_DIS,OVERCLOCK,PBRSB_NO,GDS_NO,RFDS_NO>
cpu0: 48KB 64b/line 12-way D-cache, 64KB 64b/line 16-way I-cache, 2MB 64b/line
16-way L2 cache, 12MB 64b/line 12-way L3 cache
cpu0: smt 0, core 8, package 0, type P
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.1.1.1.1, IBE
cpu1 at mainbus0: apid 17 (application processor)
cpu1: Intel(R) Core(TM) Ultra 7 265U, 1995.68 MHz, 06-b5-00, patch 0000000d
cpu1: smt 1, core 8, package 0, type SP
cpu2 at mainbus0: apid 24 (application processor)
cpu2: Intel(R) Core(TM) Ultra 7 265U, 1955.30 MHz, 06-b5-00, patch 0000000d
cpu2: smt 0, core 12, package 0, type P
cpu3 at mainbus0: apid 25 (application processor)
cpu3: Intel(R) Core(TM) Ultra 7 265U, 1995.66 MHz, 06-b5-00, patch 0000000d
cpu3: smt 1, core 12, package 0, type SP
cpu4 at mainbus0: apid 0 (application processor)
cpu4: Intel(R) Core(TM) Ultra 7 265U, 1995.62 MHz, 06-b5-00, patch 0000000d
cpu4: 32KB 64b/line 8-way D-cache, 64KB 64b/line 8-way I-cache, 2MB 64b/line
16-way L2 cache, 12MB 64b/line 12-way L3 cache
cpu4: smt 0, core 0, package 0, type E
cpu5 at mainbus0: apid 2 (application processor)
cpu5: Intel(R) Core(TM) Ultra 7 265U, 1995.62 MHz, 06-b5-00, patch 0000000d
cpu5: smt 0, core 1, package 0, type E
cpu6 at mainbus0: apid 4 (application processor)
cpu6: Intel(R) Core(TM) Ultra 7 265U, 1991.19 MHz, 06-b5-00, patch 0000000d
cpu6: smt 0, core 2, package 0, type E
cpu7 at mainbus0: apid 6 (application processor)
cpu7: Intel(R) Core(TM) Ultra 7 265U, 1993.38 MHz, 06-b5-00, patch 0000000d
cpu7: smt 0, core 3, package 0, type E
cpu8 at mainbus0: apid 8 (application processor)
cpu8: Intel(R) Core(TM) Ultra 7 265U, 1992.89 MHz, 06-b5-00, patch 0000000d
cpu8: smt 0, core 4, package 0, type E
cpu9 at mainbus0: apid 10 (application processor)
cpu9: Intel(R) Core(TM) Ultra 7 265U, 1976.34 MHz, 06-b5-00, patch 0000000d
cpu9: smt 0, core 5, package 0, type E
cpu10 at mainbus0: apid 12 (application processor)
cpu10: Intel(R) Core(TM) Ultra 7 265U, 1990.98 MHz, 06-b5-00, patch 0000000d
cpu10: smt 0, core 6, package 0, type E
cpu11 at mainbus0: apid 14 (application processor)
cpu11: Intel(R) Core(TM) Ultra 7 265U, 1989.58 MHz, 06-b5-00, patch 0000000d
cpu11: smt 0, core 7, package 0, type E
cpu12 at mainbus0: apid 64 (application processor)
cpu12: Intel(R) Core(TM) Ultra 7 265U, 1995.14 MHz, 06-b5-00, patch 0000000d
cpu12: 32KB 64b/line 8-way D-cache, 64KB 64b/line 8-way I-cache, 2MB 64b/line
16-way L2 cache
cpu12: smt 0, core 32, package 0, type L
cpu13 at mainbus0: apid 66 (application processor)
cpu13: Intel(R) Core(TM) Ultra 7 265U, 1995.14 MHz, 06-b5-00, patch 0000000d
cpu13: smt 0, core 33, package 0, type L
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 29 (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 8 (RP07)
acpiprt8 at acpi0: bus -1 (RP08)
acpiprt9 at acpi0: bus 28 (RP09)
acpiprt10 at acpi0: bus -1 (RP10)
acpiprt11 at acpi0: bus 5 (RP11)
acpiprt12 at acpi0: bus -1 (RP12)
acpiprt13 at acpi0: bus 32 (TRP0)
acpiprt14 at acpi0: bus 80 (TRP2)
acpipci0 at acpi0 PC00: 0x00000000 0x00000011 0x00000001
"ACPI000E" at acpi0 not configured
acpithinkpad0 at acpi0: version 2.0
acpiac0 at acpi0: AC unit online
acpibat0 at acpi0: BAT0 model "5B11M90097" serial 3609 type LiP oem "SMP"
"INT33D3" at acpi0 not configured
"LEN0111" at acpi0 not configured
"LEN0100" at acpi0 not configured
"LEN0130" at acpi0 not configured
"LEN0113" at acpi0 not configured
"INTC1062" at acpi0 not configured
"INTC1062" at acpi0 not configured
"INTC1062" at acpi0 not configured
"INTC1062" at acpi0 not configured
"INTC1062" at acpi0 not configured
"INTC1062" at acpi0 not configured
"LEN0071" at acpi0 not configured
"LEN0310" at acpi0 not configured
"INTC10B2" at acpi0 not configured
"INTC10B3" at acpi0 not configured
"INTC10B3" at acpi0 not configured
"ELAN06D5" at acpi0 not configured
"ELAN901C" at acpi0 not configured
"NXP1001" at acpi0 not configured
"INT3472" at acpi0 not configured
"INT3472" at acpi0 not configured
"SMO55F0" at acpi0 not configured
"OVTI08F4" at acpi0 not configured
"INT347D" at acpi0 not configured
"INTC10E0" at acpi0 not configured
pchgpio0 at acpi0 GPI0 addr 0xe0d10000/0x10000 0xe0d20000/0x10000
0xe0d30000/0x10000 0xe0d40000/0x10000 0xe0d50000/0x10000 irq 14, 416 pins
acpibtn0 at acpi0: SLPB(wakeup)
acpicpu0 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu1 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu2 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu3 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu4 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu5 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu6 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu7 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu8 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu9 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu10 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu11 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu12 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu13 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
intelpmc0 at acpi0: PEPD
state 0: 0x7f:1:2:0x00:0x0000000000000060
counter: 0x7f:64:0:0x00:0x0000000000000632
frequency: 0
state 1: 0x7f:1:2:0x00:0x0000000000000060
counter: 0x00:32:0:0x03:0x00000000fe00193c
frequency: 8197
"INTC1070" at acpi0 not configured
acpibtn1 at acpi0: LID_(wakeup)
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
acpibtn2 at acpi0: PWRB
"PNP0C0B" at acpi0 not configured
"INTC1025" at acpi0 not configured
"PNP0A05" at acpi0 not configured
tpm0 at acpi0 TPM_ 2.0 (TIS) addr 0xfed40000/0x5000, device 0x0003104a rev 0x1
"ELASEB08" at acpi0 not configured
"ELASE550" at acpi0 not configured
"INTC1042" at acpi0 not configured
"USBC000" at acpi0 not configured
acpipwrres0 at acpi0: PUBS, resource for XHCI
acpipwrres1 at acpi0: WWPR, resource for HS08
acpipwrres2 at acpi0: BTRT
acpipwrres3 at acpi0: DBTR
acpipwrres4 at acpi0: WRST
acpipwrres5 at acpi0: PXP_, resource for RP01, PXSX
acpipwrres6 at acpi0: PXP_, resource for RP06
acpipwrres7 at acpi0: MRST
acpipwrres8 at acpi0: PXP5, resource for RP07
acpipwrres9 at acpi0: PXP_, resource for RP10, PXSX
acpipwrres10 at acpi0: TBT0, resource for TDM0, TRP0, TRP1
acpipwrres11 at acpi0: TBT1, resource for TDM1, TRP2, TRP3
acpipwrres12 at acpi0: D3C_, resource for TXHC, TDM0, TDM1, TRP0, TRP1, TRP2,
TRP3
acpitz0 at acpi0
acpitz0: critical temperature is 109 degC
acpipwrres13 at acpi0: PIN_
acpipwrres14 at acpi0: PINP
acpivideo0 at acpi0: GFX0
acpivout0 at acpivideo0: DD1F
acpivout1 at acpivideo0: DD2F
cpu0: Enhanced SpeedStep 1995 MHz: speeds: 3401, 3400, 3200, 3000, 2800, 2500,
2100, 2000, 1800, 1700, 1500, 1300, 1000, 800, 600, 400 MHz
pci0 at mainbus0 bus 0
0:31:5: mem address conflict 0xfe010000/0x1000
pchb0 at pci0 dev 0 function 0 "Intel Core Ultra Host" rev 0x05
inteldrm0 at pci0 dev 2 function 0 "Intel Graphics" rev 0x00
drm0 at inteldrm0
inteldrm0: msi, METEORLAKE, gen 12
"Intel Core Ultra DTT" rev 0x05 at pci0 dev 4 function 0 not configured
"Intel Core Ultra IPU" rev 0x05 at pci0 dev 5 function 0 not configured
ppb0 at pci0 dev 6 function 0 "Intel Core Ultra PCIE" rev 0x00: msi
pci1 at ppb0 bus 28
ppb1 at pci0 dev 6 function 2 "Intel Core Ultra PCIE" rev 0x10: msi
pci2 at ppb1 bus 5
nvme0 at pci2 dev 0 function 0 vendor "Samsung", unknown product 0xa810 rev
0x00: msix, NVMe 2.0
nvme0: SAMSUNG MZVLC2T0HBLD-00BLL, firmware 3L2QNXH7, serial S7SFNE0Y800943
scsibus1 at nvme0: 2 targets, initiator 0
sd0 at scsibus1 targ 1 lun 0: <NVMe, SAMSUNG MZVLC2T0, 3L2Q>
sd0: 1953514MB, 512 bytes/sector, 4000797360 sectors
ppb2 at pci0 dev 7 function 0 "Intel Core Ultra PCIE" rev 0x02: msi
pci3 at ppb2 bus 32
ppb3 at pci0 dev 7 function 2 "Intel Core Ultra PCIE" rev 0x02: msi
pci4 at ppb3 bus 80
"Intel Core Ultra GNA" rev 0x00 at pci0 dev 8 function 0 not configured
"Intel Core Ultra PMT" rev 0x01 at pci0 dev 10 function 0 not configured
"Intel Core Ultra NPU" rev 0x05 at pci0 dev 11 function 0 not configured
xhci0 at pci0 dev 13 function 0 "Intel Core Ultra 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 Ultra TBT" rev 0x02 at pci0 dev 13 function 2 not configured
"Intel Core Ultra TBT" rev 0x02 at pci0 dev 13 function 3 not configured
"Intel Core Ultra ISH" rev 0x00 at pci0 dev 18 function 0 not configured
xhci1 at pci0 dev 20 function 0 "Intel Core Ultra xHCI" rev 0x00: 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 Core Ultra SRAM" rev 0x00 at pci0 dev 20 function 2 not configured
"Intel Wi-Fi AX211" rev 0x00 at pci0 dev 20 function 3 not configured
dwiic0 at pci0 dev 21 function 0 "Intel Core Ultra I2C" rev 0x00: apic 2 int 32
iic0 at dwiic0
ihidev0 at iic0 addr 0x15 gpio 171, vendor 0x4f3 product 0x32b7, ELAN06D5
ihidev0: 92 report ids
imt0 at ihidev0: clickpad, 5 contacts
wsmouse0 at imt0 mux 0
ims0 at ihidev0 reportid 1: 2 buttons
wsmouse1 at ims0 mux 0
hid at ihidev0 reportid 5 not configured
hid at ihidev0 reportid 6 not configured
hid at ihidev0 reportid 7 not configured
hid at ihidev0 reportid 11 not configured
hid at ihidev0 reportid 12 not configured
hid at ihidev0 reportid 13 not configured
ims1 at ihidev0 reportid 14: 0 buttons
wsmouse2 at ims1 mux 0
hid at ihidev0 reportid 92 not configured
dwiic1 at pci0 dev 21 function 1 "Intel Core Ultra I2C" rev 0x00: apic 2 int 33
iic1 at dwiic1
ihidev1 at iic1 addr 0x10 irq 65, vendor 0x4f3 product 0x4406, ELAN901C
ihidev1: 68 report ids
ims2 at ihidev1 reportid 1: 1 button, tip
wsmouse3 at ims2 mux 0
hid at ihidev1 reportid 2 not configured
hid at ihidev1 reportid 3 not configured
hid at ihidev1 reportid 10 not configured
hid at ihidev1 reportid 68 not configured
dwiic2 at pci0 dev 21 function 2 "Intel Core Ultra I2C" rev 0x00: apic 2 int 34
iic2 at dwiic2
"NXP1001" at iic2 addr 0x29 not configured
"Intel Core Ultra HECI" rev 0x00 at pci0 dev 22 function 0 not configured
"Intel Core Ultra KT" rev 0x00 at pci0 dev 22 function 3 not configured
ppb4 at pci0 dev 28 function 0 "Intel Core Ultra PCIE" rev 0x00: msi
pci5 at ppb4 bus 29
ppb5 at pci0 dev 28 function 6 "Intel Core Ultra PCIE" rev 0x00: msi
pci6 at ppb5 bus 8
vendor "Quectel", unknown product 0x1007 (class undefined unknown subclass
0x00, rev 0x00) at pci6 dev 0 function 0 not configured
pcib0 at pci0 dev 31 function 0 "Intel Core Ultra eSPI" rev 0x00
azalia0 at pci0 dev 31 function 3 "Intel Core Ultra HD Audio" rev 0x00: msi
azalia0: codecs: Realtek ALC287
audio0 at azalia0
ichiic0 at pci0 dev 31 function 4 "Intel Core Ultra SMBus" rev 0x00: apic 2 int
18
iic3 at ichiic0
"Intel Core Ultra SPI" rev 0x00 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)
wsmouse4 at pms0 mux 0
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
vmm0 at mainbus0: VMX/EPT
efifb at mainbus0 not configured
ure0 at uhub1 port 1 configuration 1 interface 0 "Realtek USB 10/100/1000 LAN"
rev 2.10/30.00 addr 2
ure0: RTL8153 (0x5c30), address 00:e0:4c:68:04:6d
rgephy0 at ure0 phy 0: RTL8251, rev. 0
ugen0 at uhub1 port 7 "Goodix Technology Co., Ltd. Goodix USB2.0 MISC" rev
2.00/1.00 addr 3
ugen1 at uhub1 port 9 "SLS Lattice AI USB 2.0" rev 2.10/45.23 addr 4
ugen2 at uhub1 port 10 "Intel product 0x0037" rev 2.00/0.00 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: 1953007MB, 512 bytes/sector, 3999758399 sectors
root on sd1a (e2f97c22ff385cdf.a) swap on sd1b dump on sd1b
drm:pid69413:gsc_fw_load *ERROR* [drm] *ERROR* GT1: Request submission for GSC
load failed 0xffffffffffffffc4e
drm:pid69413:intel_uc_fw_mark_load_failed *ERROR* [drm] *ERROR* GT1: Failed to
load GSC firmware i915/mtl_gsc_1.bin 0xffffffffffffffc4e
inteldrm0: 2880x1800, 32bpp
wsdisplay0 at inteldrm0 mux 1: console (std, vt100 emulation), using wskbd0
wsdisplay0: screen 1-5 added (std, vt100 emulation)
i915_capture_error_state: stub
drm:pid20635:__intel_engine_reset_bh *NOTICE* [drm] Resetting other0 for
stopped heartbeat on other0
drm:pid20635:gen8_engine_reset_prepare *ERROR* [drm] *ERROR* GT1: other0 reset
request timed out: {request: 00000001, RESET_CTL: 00000001}
drm:pid20635:intel_gt_reset *NOTICE* [drm] GT1: Resetting chip for stopped
heartbeat on other0
drm:pid20635:gen8_engine_reset_prepare *ERROR* [drm] *ERROR* GT1: other0 reset
request timed out: {request: 00000001, RESET_CTL: 00000001}
drm:pid20635:gen8_engine_reset_prepare *ERROR* [drm] *ERROR* GT1: other0 reset
request timed out: {request: 00000001, RESET_CTL: 00000001}
syncing disks... done
rebooting...
OpenBSD 7.9-current (GENERIC.MP) #9: Fri May 22 18:21:43 UTC 2026
[email protected]:/home/mkucharski/openbsd/src/sys/arch/amd64/compile/GENERIC.MP
real mem = 68088438784 (64934MB)
avail mem = 65996288000 (62938MB)
random: good seed from bootblocks
mpath0 at root
scsibus0 at mpath0: 256 targets
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 3.8 @ 0x7bf84000 (85 entries)
bios0: vendor LENOVO version "N4MET24W (1.11 )" date 06/23/2025
bios0: LENOVO 21NXCTO1WW
efi0 at bios0: UEFI 2.7
efi0: Lenovo rev 0x10b0
acpi0 at bios0: ACPI 6.3
acpi0: sleep states S0ix S4 S5
acpi0: tables DSDT FACP SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT SSDT
SSDT DTPR SSDT SSDT TPM2 SSDT SSDT SSDT ECDT HPET APIC MCFG SSDT SSDT SSDT SSDT
LPIT WSMT SSDT DBGP DBG2 NHLT POAT SSDT BATB DMAR FPDT SSDT SSDT SSDT SDEV ASF!
PHAT BGRT UEFI SPCR
acpi0: wakeup devices AWAC(S4) XDCI(S4) XHCI(S3) HDAS(S4) I3C0(S4) CNVW(S4)
RP01(S4) PXSX(S4) RP02(S4) PXSX(S4) PXSX(S4) RP04(S4) PXSX(S4) RP05(S4)
PXSX(S4) RP06(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 16 (boot processor)
cpu0: Intel(R) Core(TM) Ultra 7 265U, 5285.85 MHz, 06-b5-00, patch 0000000d
cpu0: cpuid 1
edx=bfebfbff<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>
ecx=77fafbff<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>
cpu0: cpuid 6 eax=df8ff7<SENSOR,ARAT,PTS> ecx=409<EFFFREQ>
cpu0: cpuid 7.0
ebx=239c27eb<FSGSBASE,TSC_ADJUST,BMI1,AVX2,SMEP,BMI2,ERMS,INVPCID,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PT,SHA>
ecx=994027ac<UMIP,PKU,WAITPKG,PKS>
edx=fc1cc410<MD_CLEAR,IBT,IBRS,IBPB,STIBP,L1DF,SSBD>
cpu0: cpuid a vers=5, gp=8, gpwidth=48, ff=3, ffwidth=48
cpu0: cpuid d.1 eax=f<XSAVEOPT,XSAVEC,XGETBV1,XSAVES>
cpu0: cpuid 80000001 edx=2c100800<NXE,PAGE1GB,RDTSCP,LONG>
ecx=121<LAHF,ABM,3DNOWP>
cpu0: cpuid 80000007 edx=100<ITSC>
cpu0: msr
10a=de9fd6b<IBRS_ALL,SKIP_L1DFL,MDS_NO,IF_PSCHANGE,TAA_NO,MISC_PKG_CT,ENERGY_FILT,DOITM,SBDR_SSDP_N,FBSDP_NO,PSDP_NO,RRSBA,XAPIC_DIS,OVERCLOCK,PBRSB_NO,GDS_NO,RFDS_NO>
cpu0: 48KB 64b/line 12-way D-cache, 64KB 64b/line 16-way I-cache, 2MB 64b/line
16-way L2 cache, 12MB 64b/line 12-way L3 cache
cpu0: smt 0, core 8, package 0, type P
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.1.1.1.1, IBE
cpu1 at mainbus0: apid 17 (application processor)
cpu1: Intel(R) Core(TM) Ultra 7 265U, 5146.98 MHz, 06-b5-00, patch 0000000d
cpu1: smt 1, core 8, package 0, type SP
cpu2 at mainbus0: apid 24 (application processor)
cpu2: Intel(R) Core(TM) Ultra 7 265U, 5288.62 MHz, 06-b5-00, patch 0000000d
cpu2: smt 0, core 12, package 0, type P
cpu3 at mainbus0: apid 25 (application processor)
cpu3: Intel(R) Core(TM) Ultra 7 265U, 5291.11 MHz, 06-b5-00, patch 0000000d
cpu3: smt 1, core 12, package 0, type SP
cpu4 at mainbus0: apid 0 (application processor)
cpu4: Intel(R) Core(TM) Ultra 7 265U, 1692.88 MHz, 06-b5-00, patch 0000000d
cpu4: 32KB 64b/line 8-way D-cache, 64KB 64b/line 8-way I-cache, 2MB 64b/line
16-way L2 cache, 12MB 64b/line 12-way L3 cache
cpu4: smt 0, core 0, package 0, type E
cpu5 at mainbus0: apid 2 (application processor)
cpu5: Intel(R) Core(TM) Ultra 7 265U, 1687.90 MHz, 06-b5-00, patch 0000000d
cpu5: smt 0, core 1, package 0, type E
cpu6 at mainbus0: apid 4 (application processor)
cpu6: Intel(R) Core(TM) Ultra 7 265U, 1696.03 MHz, 06-b5-00, patch 0000000d
cpu6: smt 0, core 2, package 0, type E
cpu7 at mainbus0: apid 6 (application processor)
cpu7: Intel(R) Core(TM) Ultra 7 265U, 1694.50 MHz, 06-b5-00, patch 0000000d
cpu7: smt 0, core 3, package 0, type E
cpu8 at mainbus0: apid 8 (application processor)
cpu8: Intel(R) Core(TM) Ultra 7 265U, 1694.10 MHz, 06-b5-00, patch 0000000d
cpu8: smt 0, core 4, package 0, type E
cpu9 at mainbus0: apid 10 (application processor)
cpu9: Intel(R) Core(TM) Ultra 7 265U, 1695.85 MHz, 06-b5-00, patch 0000000d
cpu9: smt 0, core 5, package 0, type E
cpu10 at mainbus0: apid 12 (application processor)
cpu10: Intel(R) Core(TM) Ultra 7 265U, 1692.20 MHz, 06-b5-00, patch 0000000d
cpu10: smt 0, core 6, package 0, type E
cpu11 at mainbus0: apid 14 (application processor)
cpu11: Intel(R) Core(TM) Ultra 7 265U, 1695.09 MHz, 06-b5-00, patch 0000000d
cpu11: smt 0, core 7, package 0, type E
cpu12 at mainbus0: apid 64 (application processor)
cpu12: Intel(R) Core(TM) Ultra 7 265U, 1031.09 MHz, 06-b5-00, patch 0000000d
cpu12: 32KB 64b/line 8-way D-cache, 64KB 64b/line 8-way I-cache, 2MB 64b/line
16-way L2 cache
cpu12: smt 0, core 32, package 0, type L
cpu13 at mainbus0: apid 66 (application processor)
cpu13: Intel(R) Core(TM) Ultra 7 265U, 837.66 MHz, 06-b5-00, patch 0000000d
cpu13: smt 0, core 33, package 0, type L
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 29 (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 8 (RP07)
acpiprt8 at acpi0: bus -1 (RP08)
acpiprt9 at acpi0: bus 28 (RP09)
acpiprt10 at acpi0: bus -1 (RP10)
acpiprt11 at acpi0: bus 5 (RP11)
acpiprt12 at acpi0: bus -1 (RP12)
acpiprt13 at acpi0: bus 32 (TRP0)
acpiprt14 at acpi0: bus 80 (TRP2)
acpipci0 at acpi0 PC00: 0x00000000 0x00000011 0x00000001
"ACPI000E" at acpi0 not configured
acpithinkpad0 at acpi0: version 2.0
acpiac0 at acpi0: AC unit online
acpibat0 at acpi0: BAT0 model "5B11M90097" serial 3609 type LiP oem "SMP"
"INT33D3" at acpi0 not configured
"LEN0111" at acpi0 not configured
"LEN0100" at acpi0 not configured
"LEN0130" at acpi0 not configured
"LEN0113" at acpi0 not configured
"INTC1062" at acpi0 not configured
"INTC1062" at acpi0 not configured
"INTC1062" at acpi0 not configured
"INTC1062" at acpi0 not configured
"INTC1062" at acpi0 not configured
"INTC1062" at acpi0 not configured
"LEN0071" at acpi0 not configured
"LEN0310" at acpi0 not configured
"INTC10B2" at acpi0 not configured
"INTC10B3" at acpi0 not configured
"INTC10B3" at acpi0 not configured
"ELAN06D5" at acpi0 not configured
"ELAN901C" at acpi0 not configured
"NXP1001" at acpi0 not configured
"INT3472" at acpi0 not configured
"INT3472" at acpi0 not configured
"SMO55F0" at acpi0 not configured
"OVTI08F4" at acpi0 not configured
"INT347D" at acpi0 not configured
"INTC10E0" at acpi0 not configured
pchgpio0 at acpi0 GPI0 addr 0xe0d10000/0x10000 0xe0d20000/0x10000
0xe0d30000/0x10000 0xe0d40000/0x10000 0xe0d50000/0x10000 irq 14, 416 pins
acpibtn0 at acpi0: SLPB(wakeup)
acpicpu0 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu1 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu2 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu3 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu4 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu5 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu6 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu7 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu8 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu9 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu10 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu11 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu12 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
acpicpu13 at acpi0: C3(200@1048 mwait.1@0x60), C2(200@253 mwait.1@0x30),
C1(1000@1 mwait.1), PSS
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
intelpmc0 at acpi0: PEPD
state 0: 0x7f:1:2:0x00:0x0000000000000060
counter: 0x7f:64:0:0x00:0x0000000000000632
frequency: 0
state 1: 0x7f:1:2:0x00:0x0000000000000060
counter: 0x00:32:0:0x03:0x00000000fe00193c
frequency: 8197
"INTC1070" at acpi0 not configured
acpibtn1 at acpi0: LID_(wakeup)
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
acpibtn2 at acpi0: PWRB
"PNP0C0B" at acpi0 not configured
"INTC1025" at acpi0 not configured
"PNP0A05" at acpi0 not configured
tpm0 at acpi0 TPM_ 2.0 (TIS) addr 0xfed40000/0x5000, device 0x0003104a rev 0x1
"ELASEB08" at acpi0 not configured
"ELASE550" at acpi0 not configured
"INTC1042" at acpi0 not configured
"USBC000" at acpi0 not configured
acpipwrres0 at acpi0: PUBS, resource for XHCI
acpipwrres1 at acpi0: WWPR, resource for HS08
acpipwrres2 at acpi0: BTRT
acpipwrres3 at acpi0: DBTR
acpipwrres4 at acpi0: WRST
acpipwrres5 at acpi0: PXP_, resource for RP01, PXSX
acpipwrres6 at acpi0: PXP_, resource for RP06
acpipwrres7 at acpi0: MRST
acpipwrres8 at acpi0: PXP5, resource for RP07
acpipwrres9 at acpi0: PXP_, resource for RP10, PXSX
acpipwrres10 at acpi0: TBT0, resource for TDM0, TRP0, TRP1
acpipwrres11 at acpi0: TBT1, resource for TDM1, TRP2, TRP3
acpipwrres12 at acpi0: D3C_, resource for TXHC, TDM0, TDM1, TRP0, TRP1, TRP2,
TRP3
acpitz0 at acpi0
acpitz0: critical temperature is 109 degC
acpipwrres13 at acpi0: PIN_
acpipwrres14 at acpi0: PINP
acpivideo0 at acpi0: GFX0
acpivout0 at acpivideo0: DD1F
acpivout1 at acpivideo0: DD2F
cpu0: Enhanced SpeedStep 5285 MHz: speeds: 3401, 3400, 3200, 3000, 2800, 2500,
2100, 2000, 1800, 1700, 1500, 1300, 1000, 800, 600, 400 MHz
pci0 at mainbus0 bus 0
0:31:5: mem address conflict 0xfe010000/0x1000
pchb0 at pci0 dev 0 function 0 "Intel Core Ultra Host" rev 0x05
inteldrm0 at pci0 dev 2 function 0 "Intel Graphics" rev 0x00
drm0 at inteldrm0
MMM inteldrm_attach: drm graphics_ver=12 platform=37
MMM inteldrm_attach: drm enable_guc=2 (inside if-statment)
inteldrm0: msi, METEORLAKE, gen 12
"Intel Core Ultra DTT" rev 0x05 at pci0 dev 4 function 0 not configured
"Intel Core Ultra IPU" rev 0x05 at pci0 dev 5 function 0 not configured
ppb0 at pci0 dev 6 function 0 "Intel Core Ultra PCIE" rev 0x00: msi
pci1 at ppb0 bus 28
ppb1 at pci0 dev 6 function 2 "Intel Core Ultra PCIE" rev 0x10: msi
pci2 at ppb1 bus 5
nvme0 at pci2 dev 0 function 0 vendor "Samsung", unknown product 0xa810 rev
0x00: msix, NVMe 2.0
nvme0: SAMSUNG MZVLC2T0HBLD-00BLL, firmware 3L2QNXH7, serial S7SFNE0Y800943
scsibus1 at nvme0: 2 targets, initiator 0
sd0 at scsibus1 targ 1 lun 0: <NVMe, SAMSUNG MZVLC2T0, 3L2Q>
sd0: 1953514MB, 512 bytes/sector, 4000797360 sectors
ppb2 at pci0 dev 7 function 0 "Intel Core Ultra PCIE" rev 0x02: msi
pci3 at ppb2 bus 32
ppb3 at pci0 dev 7 function 2 "Intel Core Ultra PCIE" rev 0x02: msi
pci4 at ppb3 bus 80
"Intel Core Ultra GNA" rev 0x00 at pci0 dev 8 function 0 not configured
"Intel Core Ultra PMT" rev 0x01 at pci0 dev 10 function 0 not configured
"Intel Core Ultra NPU" rev 0x05 at pci0 dev 11 function 0 not configured
xhci0 at pci0 dev 13 function 0 "Intel Core Ultra 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 Ultra TBT" rev 0x02 at pci0 dev 13 function 2 not configured
"Intel Core Ultra TBT" rev 0x02 at pci0 dev 13 function 3 not configured
"Intel Core Ultra ISH" rev 0x00 at pci0 dev 18 function 0 not configured
xhci1 at pci0 dev 20 function 0 "Intel Core Ultra xHCI" rev 0x00: 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 Core Ultra SRAM" rev 0x00 at pci0 dev 20 function 2 not configured
"Intel Wi-Fi AX211" rev 0x00 at pci0 dev 20 function 3 not configured
dwiic0 at pci0 dev 21 function 0 "Intel Core Ultra I2C" rev 0x00: apic 2 int 32
iic0 at dwiic0
ihidev0 at iic0 addr 0x15 gpio 171, vendor 0x4f3 product 0x32b7, ELAN06D5
ihidev0: 92 report ids
imt0 at ihidev0: clickpad, 5 contacts
wsmouse0 at imt0 mux 0
ims0 at ihidev0 reportid 1: 2 buttons
wsmouse1 at ims0 mux 0
hid at ihidev0 reportid 5 not configured
hid at ihidev0 reportid 6 not configured
hid at ihidev0 reportid 7 not configured
hid at ihidev0 reportid 11 not configured
hid at ihidev0 reportid 12 not configured
hid at ihidev0 reportid 13 not configured
ims1 at ihidev0 reportid 14: 0 buttons
wsmouse2 at ims1 mux 0
hid at ihidev0 reportid 92 not configured
dwiic1 at pci0 dev 21 function 1 "Intel Core Ultra I2C" rev 0x00: apic 2 int 33
iic1 at dwiic1
ihidev1 at iic1 addr 0x10 irq 65, vendor 0x4f3 product 0x4406, ELAN901C
ihidev1: 68 report ids
ims2 at ihidev1 reportid 1: 1 button, tip
wsmouse3 at ims2 mux 0
hid at ihidev1 reportid 2 not configured
hid at ihidev1 reportid 3 not configured
hid at ihidev1 reportid 10 not configured
hid at ihidev1 reportid 68 not configured
dwiic2 at pci0 dev 21 function 2 "Intel Core Ultra I2C" rev 0x00: apic 2 int 34
iic2 at dwiic2
"NXP1001" at iic2 addr 0x29 not configured
"Intel Core Ultra HECI" rev 0x00 at pci0 dev 22 function 0 not configured
"Intel Core Ultra KT" rev 0x00 at pci0 dev 22 function 3 not configured
ppb4 at pci0 dev 28 function 0 "Intel Core Ultra PCIE" rev 0x00: msi
pci5 at ppb4 bus 29
ppb5 at pci0 dev 28 function 6 "Intel Core Ultra PCIE" rev 0x00: msi
pci6 at ppb5 bus 8
vendor "Quectel", unknown product 0x1007 (class undefined unknown subclass
0x00, rev 0x00) at pci6 dev 0 function 0 not configured
pcib0 at pci0 dev 31 function 0 "Intel Core Ultra eSPI" rev 0x00
azalia0 at pci0 dev 31 function 3 "Intel Core Ultra HD Audio" rev 0x00: msi
azalia0: codecs: Realtek ALC287
audio0 at azalia0
ichiic0 at pci0 dev 31 function 4 "Intel Core Ultra SMBus" rev 0x00: apic 2 int
18
iic3 at ichiic0
"Intel Core Ultra SPI" rev 0x00 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)
wsmouse4 at pms0 mux 0
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
vmm0 at mainbus0: VMX/EPT
efifb at mainbus0 not configured
ure0 at uhub1 port 1 configuration 1 interface 0 "Realtek USB 10/100/1000 LAN"
rev 2.10/30.00 addr 2
ure0: RTL8153 (0x5c30), address 00:e0:4c:68:04:6d
rgephy0 at ure0 phy 0: RTL8251, rev. 0
ugen0 at uhub1 port 7 "Goodix Technology Co., Ltd. Goodix USB2.0 MISC" rev
2.00/1.00 addr 3
ugen1 at uhub1 port 9 "SLS Lattice AI USB 2.0" rev 2.10/45.23 addr 4
ugen2 at uhub1 port 10 "Intel product 0x0037" rev 2.00/0.00 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: 1953007MB, 512 bytes/sector, 3999758399 sectors
root on sd1a (e2f97c22ff385cdf.a) swap on sd1b dump on sd1b
drm:pid0:ct_send *ERROR* [drm] *ERROR* GT1: GUC: CT: No response for request
0x4000 (fence 1)
drm:pid0:intel_guc_ct_send *ERROR* [drm] *ERROR* GT1: GUC: CT: Sending action
0x4000 failed (0xffffffffffffffc4e) status=0
drm:pid0:intel_huc_auth *ERROR* [drm] *ERROR* GT1: HuC: clear media
authentication failed 0xffffffffffffffc4e
drm:pid55923:ct_handle_response *ERROR* [drm] *ERROR* GT1: GUC: CT: Unsolicited
response message: len 1, data 0xf0000000 (fence 1, last 1)
drm:pid55923:ct_handle_hxg *ERROR* [drm] *ERROR* GT1: GUC: CT: Failed to handle
HXG message (0xfffffffffffffffee) 0xffff80000004d178h
drm:pid55923:ct_handle_msg *ERROR* [drm] *ERROR* GT1: GUC: CT: Failed to
process CT message (0xfffffffffffffffee) 0xffff80000004d174h
drm:pid46446:gsc_fw_load *ERROR* [drm] *ERROR* GT1: Request submission for GSC
load failed 0xffffffffffffffc4e
drm:pid46446:intel_uc_fw_mark_load_failed *ERROR* [drm] *ERROR* GT1: Failed to
load GSC firmware i915/mtl_gsc_1.bin 0xffffffffffffffc4e
inteldrm0: 2880x1800, 32bpp
wsdisplay0 at inteldrm0 mux 1: console (std, vt100 emulation), using wskbd0
wsdisplay0: screen 1-5 added (std, vt100 emulation)
i915_capture_error_state: stub
drm:pid18308:__intel_engine_reset_bh *NOTICE* [drm] Resetting other0 for
stopped heartbeat on other0
drm:pid18308:gen8_engine_reset_prepare *ERROR* [drm] *ERROR* GT1: other0 reset
request timed out: {request: 00000001, RESET_CTL: 00000001}
drm:pid18308:intel_gt_reset *NOTICE* [drm] GT1: Resetting chip for stopped
heartbeat on other0
drm:pid18308:gen8_engine_reset_prepare *ERROR* [drm] *ERROR* GT1: other0 reset
request timed out: {request: 00000001, RESET_CTL: 00000001}
drm:pid18308:gen8_engine_reset_prepare *ERROR* [drm] *ERROR* GT1: other0 reset
request timed out: {request: 00000001, RESET_CTL: 00000001}
--
Regards,
Mikolaj