Boots fine, dmesg below.
> Index: arch/hppa/dev/com_dino.c
> ===================================================================
> RCS file: /cvs/src/sys/arch/hppa/dev/com_dino.c,v
> retrieving revision 1.4
> diff -u -r1.4 com_dino.c
> --- arch/hppa/dev/com_dino.c 15 Jul 2007 19:25:49 -0000 1.4
> +++ arch/hppa/dev/com_dino.c 18 Jan 2022 18:22:56 -0000
> @@ -77,7 +77,7 @@
> return (0);
>
> return (1);
> - /* HOZER comprobe1(ca->ca_iot, ca->ca_hpa + IOMOD_DEVOFFSET); */
> + /* HOZER comprobe1(ca->ca_iot, ca->ca_hpa + IOMOD_DEVOFFSET, 1, 0); */
> }
>
> void
> Index: arch/hppa/gsc/com_gsc.c
> ===================================================================
> RCS file: /cvs/src/sys/arch/hppa/gsc/com_gsc.c,v
> retrieving revision 1.21
> diff -u -r1.21 com_gsc.c
> --- arch/hppa/gsc/com_gsc.c 15 Jul 2007 19:25:49 -0000 1.21
> +++ arch/hppa/gsc/com_gsc.c 18 Jan 2022 18:22:53 -0000
> @@ -69,7 +69,7 @@
> return (0);
>
> return (1);
> - /* HOZER comprobe1(ga->ga_iot, ga->ga_hpa + IOMOD_DEVOFFSET); */
> + /* HOZER comprobe1(ga->ga_iot, ga->ga_hpa + IOMOD_DEVOFFSET, 1, 0); */
> }
>
> void
> Index: dev/acpi/com_acpi.c
> ===================================================================
> RCS file: /cvs/src/sys/dev/acpi/com_acpi.c,v
> retrieving revision 1.6
> diff -u -r1.6 com_acpi.c
> --- dev/acpi/com_acpi.c 26 Dec 2021 13:55:36 -0000 1.6
> +++ dev/acpi/com_acpi.c 18 Jan 2022 18:19:37 -0000
> @@ -61,14 +61,32 @@
> com_acpi_match(struct device *parent, void *match, void *aux)
> {
> struct acpi_attach_args *aaa = aux;
> + bus_space_handle_t ioh;
> + bus_space_tag_t iot;
> struct cfdata *cf = match;
> + int width = 0, shift = 0, rv;
>
> if (aaa->aaa_naddr < 1 || aaa->aaa_nirq < 1)
> return 0;
> if (cf->acpidevcf_addr != aaa->aaa_addr[0] &&
> cf->acpidevcf_addr != ACPIDEVCF_ADDR_UNK)
> return 0;
> - return acpi_matchhids(aaa, com_hids, cf->cf_driver->cd_name);
> + if (acpi_matchhids(aaa, com_hids, cf->cf_driver->cd_name) == 0)
> + return 0;
> +
> + iot = aaa->aaa_bst[0];
> + if (com_acpi_is_designware(aaa->aaa_dev)) {
> + width = acpi_getpropint(aaa->aaa_node,
> + "reg-io-width", 4);
> + shift = acpi_getpropint(aaa->aaa_node,
> + "reg-shift", 2);
> + }
> +
> + if (bus_space_map(iot, aaa->aaa_addr[0], aaa->aaa_size[0], 0, &ioh))
> + return (0);
> + rv = comprobe1(iot, ioh, width, shift);
> + bus_space_unmap(iot, ioh, aaa->aaa_size[0]);
> + return (rv);
> }
>
> void
> Index: dev/ic/com.c
> ===================================================================
> RCS file: /cvs/src/sys/dev/ic/com.c,v
> retrieving revision 1.175
> diff -u -r1.175 com.c
> --- dev/ic/com.c 11 Jan 2022 11:51:14 -0000 1.175
> +++ dev/ic/com.c 18 Jan 2022 18:19:10 -0000
> @@ -144,19 +144,34 @@
>
> #ifdef COM_CONSOLE
> int
> -comprobe1(bus_space_tag_t iot, bus_space_handle_t ioh)
> +comprobe1(bus_space_tag_t iot, bus_space_handle_t ioh, int width, int shift)
> {
> int i, k;
>
> - /* force access to id reg */
> - bus_space_write_1(iot, ioh, com_lcr, 0);
> - bus_space_write_1(iot, ioh, com_iir, 0);
> - for (i = 0; i < 32; i++) {
> - k = bus_space_read_1(iot, ioh, com_iir);
> - if (k & 0x38) {
> - bus_space_read_1(iot, ioh, com_data); /* cleanup */
> - } else
> - break;
> + if (width == 4) {
> + /* force access to id reg */
> + bus_space_write_4(iot, ioh, (com_lcr) << shift, 0);
> + bus_space_write_4(iot, ioh, (com_iir) << shift , 0);
> + for (i = 0; i < 32; i++) {
> + k = bus_space_read_4(iot, ioh, (com_iir) << shift);
> + if (k & 0x38) {
> + bus_space_read_4(iot, ioh,
> + (com_data) << shift); /* cleanup */
> + } else
> + break;
> + }
> + } else {
> + /* force access to id reg */
> + bus_space_write_1(iot, ioh, (com_lcr) << shift, 0);
> + bus_space_write_1(iot, ioh, (com_iir) << shift, 0);
> + for (i = 0; i < 32; i++) {
> + k = bus_space_read_1(iot, ioh, (com_iir) << shift );
> + if (k & 0x38) {
> + bus_space_read_1(iot, ioh,
> + (com_data) << shift); /* cleanup */
> + } else
> + break;
> + }
> }
> if (i >= 32)
> return 0;
> @@ -1173,7 +1188,7 @@
>
> if (bus_space_map(comconsiot, comconsaddr, COM_NPORTS, 0, &ioh))
> return;
> - found = comprobe1(comconsiot, ioh);
> + found = comprobe1(comconsiot, ioh, 1, 0);
> bus_space_unmap(comconsiot, ioh, COM_NPORTS);
> if (!found)
> return;
> Index: dev/ic/comvar.h
> ===================================================================
> RCS file: /cvs/src/sys/dev/ic/comvar.h,v
> retrieving revision 1.59
> diff -u -r1.59 comvar.h
> --- dev/ic/comvar.h 11 Jan 2022 11:51:14 -0000 1.59
> +++ dev/ic/comvar.h 18 Jan 2022 18:16:58 -0000
> @@ -138,7 +138,7 @@
> uint8_t com_read_reg(struct com_softc *, bus_size_t);
> void com_write_reg(struct com_softc *, bus_size_t, uint8_t);
>
> -int comprobe1(bus_space_tag_t, bus_space_handle_t);
> +int comprobe1(bus_space_tag_t, bus_space_handle_t, int width, int shift);
> int comstop(struct tty *, int);
> int comintr(void *);
> int com_detach(struct device *, int);
> Index: dev/isa/addcom_isa.c
> ===================================================================
> RCS file: /cvs/src/sys/dev/isa/addcom_isa.c,v
> retrieving revision 1.6
> diff -u -r1.6 addcom_isa.c
> --- dev/isa/addcom_isa.c 14 Mar 2002 01:26:56 -0000 1.6
> +++ dev/isa/addcom_isa.c 18 Jan 2022 18:20:13 -0000
> @@ -149,7 +149,7 @@
> rv = 0;
> goto out;
> }
> - rv = comprobe1(iot, ioh);
> + rv = comprobe1(iot, ioh, 1, 0);
> bus_space_unmap(iot, ioh, COM_NPORTS);
> if (rv == 0)
> goto out;
> Index: dev/isa/ast.c
> ===================================================================
> RCS file: /cvs/src/sys/dev/isa/ast.c,v
> retrieving revision 1.19
> diff -u -r1.19 ast.c
> --- dev/isa/ast.c 7 Mar 2021 06:17:03 -0000 1.19
> +++ dev/isa/ast.c 18 Jan 2022 18:20:16 -0000
> @@ -97,7 +97,7 @@
> rv = 0;
> goto out;
> }
> - rv = comprobe1(iot, ioh);
> + rv = comprobe1(iot, ioh, 1, 0);
> bus_space_unmap(iot, ioh, COM_NPORTS);
> if (rv == 0)
> goto out;
> Index: dev/isa/boca.c
> ===================================================================
> RCS file: /cvs/src/sys/dev/isa/boca.c,v
> retrieving revision 1.16
> diff -u -r1.16 boca.c
> --- dev/isa/boca.c 14 Mar 2002 01:26:56 -0000 1.16
> +++ dev/isa/boca.c 18 Jan 2022 18:20:18 -0000
> @@ -100,7 +100,7 @@
> rv = 0;
> goto out;
> }
> - rv = comprobe1(iot, ioh);
> + rv = comprobe1(iot, ioh, 1, 0);
> bus_space_unmap(iot, ioh, COM_NPORTS);
> if (rv == 0)
> goto out;
> Index: dev/isa/com_commulti.c
> ===================================================================
> RCS file: /cvs/src/sys/dev/isa/com_commulti.c,v
> retrieving revision 1.5
> diff -u -r1.5 com_commulti.c
> --- dev/isa/com_commulti.c 30 Apr 2017 13:04:49 -0000 1.5
> +++ dev/isa/com_commulti.c 18 Jan 2022 18:20:20 -0000
> @@ -99,7 +99,7 @@
> if (iobase == comconsaddr && !comconsattached)
> return (1);
>
> - return (comprobe1(iot, ioh));
> + return (comprobe1(iot, ioh, 1, 0));
> }
>
> void
> Index: dev/isa/com_isa.c
> ===================================================================
> RCS file: /cvs/src/sys/dev/isa/com_isa.c,v
> retrieving revision 1.9
> diff -u -r1.9 com_isa.c
> --- dev/isa/com_isa.c 30 Apr 2017 13:04:49 -0000 1.9
> +++ dev/isa/com_isa.c 18 Jan 2022 18:19:27 -0000
> @@ -97,7 +97,7 @@
> if (bus_space_map(iot, iobase, COM_NPORTS, 0, &ioh))
> return (0);
>
> - rv = comprobe1(iot, ioh);
> + rv = comprobe1(iot, ioh, 1, 0);
>
> bus_space_unmap(iot, ioh, COM_NPORTS);
>
> Index: dev/isa/com_isapnp.c
> ===================================================================
> RCS file: /cvs/src/sys/dev/isa/com_isapnp.c,v
> retrieving revision 1.5
> diff -u -r1.5 com_isapnp.c
> --- dev/isa/com_isapnp.c 30 Apr 2017 13:04:49 -0000 1.5
> +++ dev/isa/com_isapnp.c 18 Jan 2022 18:20:05 -0000
> @@ -95,7 +95,7 @@
> if (iobase == comconsaddr && !comconsattached)
> return (1);
>
> - return comprobe1(iot, ioh);
> + return comprobe1(iot, ioh, 1, 0);
> }
>
> void
> Index: dev/isa/hsq.c
> ===================================================================
> RCS file: /cvs/src/sys/dev/isa/hsq.c,v
> retrieving revision 1.6
> diff -u -r1.6 hsq.c
> --- dev/isa/hsq.c 9 Jan 2022 05:42:42 -0000 1.6
> +++ dev/isa/hsq.c 18 Jan 2022 18:20:01 -0000
> @@ -148,7 +148,7 @@
> goto out;
> }
>
> - rv = comprobe1(iot, ioh);
> + rv = comprobe1(iot, ioh, 1, 0);
> bus_space_unmap(iot, ioh, COM_NPORTS);
> if (rv == 0)
> goto out;
OpenBSD 7.0-current (GENERIC.MP) #0: Wed Jan 19 13:32:50 CET 2022
[email protected]:/usr/src/sys/arch/amd64/compile/GENERIC.MP
real mem = 4276822016 (4078MB)
avail mem = 4130017280 (3938MB)
random: good seed from bootblocks
mpath0 at root
scsibus0 at mpath0: 256 targets
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 2.5 @ 0xcff9c000 (46 entries)
bios0: vendor Dell Inc. version "1.4.3" date 05/15/2009
bios0: Dell Inc. PowerEdge R200
acpi0 at bios0: ACPI 3.0
acpi0: sleep states S0 S4 S5
acpi0: tables DSDT FACP APIC SPCR HPET MCFG WD__ SLIC ERST HEST BERT EINJ SSDT
SSDT SSDT
acpi0: wakeup devices PCI0(S5)
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: Intel(R) Xeon(R) CPU E3120 @ 3.16GHz, 2000.44 MHz, 06-17-0a
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,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,SSE4.1,XSAVE,NXE,LONG,LAHF,PERF,SENSOR,MELTDOWN
cpu0: 6MB 64b/line 16-way L2 cache
cpu0: smt 0, core 0, package 0
mtrr: Pentium Pro MTRR support, 8 var ranges, 88 fixed ranges
cpu0: apic clock running at 333MHz
cpu0: mwait min=64, max=64, C-substates=0.2.2.2.2, IBE
cpu1 at mainbus0: apid 1 (application processor)
cpu1: Intel(R) Xeon(R) CPU E3120 @ 3.16GHz, 2000.15 MHz, 06-17-0a
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,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,SSE4.1,XSAVE,NXE,LONG,LAHF,PERF,SENSOR,MELTDOWN
cpu1: 6MB 64b/line 16-way L2 cache
cpu1: smt 0, core 1, package 0
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins, remapped
acpihpet0 at acpi0: 14318179 Hz
acpimcfg0 at acpi0
acpimcfg0: addr 0xe0000000, bus 0-255
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus 1 (PEX1)
acpiprt2 at acpi0: bus 2 (SBE0)
acpiprt3 at acpi0: bus 3 (SBE4)
acpiprt4 at acpi0: bus 4 (SBE5)
acpiprt5 at acpi0: bus 5 (COMP)
acpipci0 at acpi0 PCI0: 0x00000010 0x00000011 0x00000000
acpicmos0 at acpi0
com0 at acpi0 COMA addr 0x3f8/0x8 irq 4: ns16550a, 16 byte fifo
"PNP0501" at acpi0 not configured
acpicpu0 at acpi0: C1(@1 halt!), PSS
acpicpu1 at acpi0: C1(@1 halt!), PSS
ipmi at mainbus0 not configured
cpu0: Enhanced SpeedStep 2000 MHz: speeds: 3166, 2667, 2333, 2000 MHz
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel 3200/3210 Host" rev 0x01
ppb0 at pci0 dev 1 function 0 "Intel 3200/3210 PCIE" rev 0x01: msi
pci1 at ppb0 bus 1
mpi0 at pci1 dev 0 function 0 "Symbios Logic SAS1068E" rev 0x08: msi
mpi0: SAS6IR, firmware 0.25.47.0
scsibus1 at mpi0: 112 targets
sd0 at scsibus1 targ 0 lun 0: <Dell, VIRTUAL DISK, 1028>
naa.600508e0000000009ed329b65835f206
sd0: 69376MB, 512 bytes/sector, 142082048 sectors
ppb1 at pci0 dev 28 function 0 "Intel 82801I PCIE" rev 0x02: msi
pci2 at ppb1 bus 2
ppb2 at pci0 dev 28 function 4 "Intel 82801I PCIE" rev 0x02
pci3 at ppb2 bus 3
bge0 at pci3 dev 0 function 0 "Broadcom BCM5721" rev 0x21, BCM5750 C1 (0x4201):
msi, address 00:22:19:d6:32:bf
brgphy0 at bge0 phy 1: BCM5750 10/100/1000baseT PHY, rev. 0
ppb3 at pci0 dev 28 function 5 "Intel 82801I PCIE" rev 0x02
pci4 at ppb3 bus 4
bge1 at pci4 dev 0 function 0 "Broadcom BCM5721" rev 0x21, BCM5750 C1 (0x4201):
msi, address 00:22:19:d6:32:c0
brgphy1 at bge1 phy 1: BCM5750 10/100/1000baseT PHY, rev. 0
uhci0 at pci0 dev 29 function 0 "Intel 82801I USB" rev 0x02: apic 2 int 21
uhci1 at pci0 dev 29 function 1 "Intel 82801I USB" rev 0x02: apic 2 int 20
uhci2 at pci0 dev 29 function 2 "Intel 82801I USB" rev 0x02: apic 2 int 21
ehci0 at pci0 dev 29 function 7 "Intel 82801I USB" rev 0x02: apic 2 int 21
usb0 at ehci0: USB revision 2.0
uhub0 at usb0 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00
addr 1
ppb4 at pci0 dev 30 function 0 "Intel 82801BA Hub-to-PCI" rev 0x92
pci5 at ppb4 bus 5
radeondrm0 at pci5 dev 5 function 0 "ATI ES1000" rev 0x02
drm0 at radeondrm0
radeondrm0: apic 2 int 19
pcib0 at pci0 dev 31 function 0 "Intel 82801IR LPC" rev 0x02
usb1 at uhci0: USB revision 1.0
uhub1 at usb1 configuration 1 interface 0 "Intel UHCI root hub" rev 1.00/1.00
addr 1
usb2 at uhci1: USB revision 1.0
uhub2 at usb2 configuration 1 interface 0 "Intel UHCI root hub" rev 1.00/1.00
addr 1
usb3 at uhci2: USB revision 1.0
uhub3 at usb3 configuration 1 interface 0 "Intel UHCI root hub" rev 1.00/1.00
addr 1
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 (using slow L1TF mitigation)
uhub4 at uhub0 port 5 configuration 1 interface 0 "Cypress Semiconductor USB2
Hub" rev 2.00/0.0b addr 2
vscsi0 at root
scsibus2 at vscsi0: 256 targets
softraid0 at root
scsibus3 at softraid0: 256 targets
root on sd0a (39682c121cba2ea4.a) swap on sd0b dump on sd0b
radeondrm0: RV100
[drm] *ERROR* radeon: ring test failed (scratch(0x15E4)=0xCAFEDEAD)
[drm] *ERROR* radeon: cp isn't working (-22).
drm:pid0:r100_startup *ERROR* failed initializing CP (-22).
drm:pid0:r100_init *ERROR* Disabling GPU acceleration
radeondrm0: 1280x1024, 16bpp
wsdisplay0 at radeondrm0 mux 1: console (std, vt100 emulation), using wskbd0
wsdisplay0: screen 1-5 added (std, vt100 emulation)