What do 'fdisk -v' and 'disklabel -d' say?

.... Ken

On Tue, Jun 25, 2024, 2:24 PM joshua stein <j...@jcs.org> wrote:

> This gets the NVMe and Wi-Fi recognized on the MacMini8,1 but fdisk
> can't see any partition table and doing 'dd if=/dev/rsd0c' results
> in an error.
>
>     nvme0 at pci14 dev 0 function 0 "Apple NVMe" rev 0x01: msi, NVMe 1.1
>     nvme0: APPLE SSD AP1024M, firmware 1306, serial H281022006AJRWLD8
>     scsibus1 at nvme0: 2 targets, initiator 0
>     sd0 at scsibus1 targ 1 lun 0: <NVMe, APPLE SSD AP1024, 1306>
>     sd0: 954204MB, 4096 bytes/sector, 244276265 sectors
>
>     $ doas fdisk sd0
>     $ doas dd if=/dev/rsd0c
>     dd: /dev/rsd0c: Invalid argument
>
> bge reports a firmware timeout that takes a few seconds to produce
> when bringing the interface up but it seems to work fine after that.
>
>     bge0 at pci16 dev 0 function 0 "Broadcom BCM57766" rev 0x01, BCM57766
> A1 (0x57766001)
>     bge0: firmware handshake timed out
>
> The Broadcom firmware was copied from the macOS partition to
> brcmfmac4364b2-pcie.bin but it doesn't come up.
>
>     bwfm0 at pci15 dev 0 function 0 "Broadcom 4464" rev 0x03: msi
>     bwfm0: firmware did not come up
>     bwfm0: could not load microcode
>
>
> diff --git a/sys/dev/pci/if_bwfm_pci.c b/sys/dev/pci/if_bwfm_pci.c
> index 476f89a38ee..43db7cb0f3d 100644
> --- a/sys/dev/pci/if_bwfm_pci.c
> +++ b/sys/dev/pci/if_bwfm_pci.c
> @@ -340,6 +340,7 @@ static const struct pci_matchid bwfm_pci_devices[] = {
>         { PCI_VENDOR_BROADCOM, PCI_PRODUCT_BROADCOM_BCM4371 },
>         { PCI_VENDOR_BROADCOM, PCI_PRODUCT_BROADCOM_BCM4378 },
>         { PCI_VENDOR_BROADCOM, PCI_PRODUCT_BROADCOM_BCM4387 },
> +       { PCI_VENDOR_BROADCOM, PCI_PRODUCT_BROADCOM_4464 },
>  };
>
>  int
> diff --git a/sys/dev/pci/nvme_pci.c b/sys/dev/pci/nvme_pci.c
> index 5e0ba65cb6b..1876447a7f6 100644
> --- a/sys/dev/pci/nvme_pci.c
> +++ b/sys/dev/pci/nvme_pci.c
> @@ -67,7 +67,8 @@ nvme_pci_match(struct device *parent, void *match, void
> *aux)
>
>         if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_APPLE &&
>             (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_APPLE_NVME1 ||
> -           PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_APPLE_NVME2))
> +           PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_APPLE_NVME2 ||
> +           PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_APPLE_NVME3))
>                 return (1);
>
>         return (0);
> diff --git a/sys/dev/pci/pcidevs b/sys/dev/pci/pcidevs
> index e148333f755..e3d26d17ae1 100644
> --- a/sys/dev/pci/pcidevs
> +++ b/sys/dev/pci/pcidevs
> @@ -1170,6 +1170,7 @@ product APPLE M1_PCIE             0x100c  M1 PCIe
>  product APPLE BCM5701          0x1645  BCM5701
>  product APPLE NVME1            0x2001  NVMe
>  product APPLE NVME2            0x2003  NVMe
> +product APPLE NVME3            0x2005  NVMe
>
>  /* Aquantia Corp. */
>  product AQUANTIA AQC100                0x00b1  AQC100
> @@ -2683,6 +2684,7 @@ product BROADCOM BCM4378  0x4425  BCM4378
>  product BROADCOM BCM4387       0x4433  BCM4387
>  product BROADCOM BCM4388       0x4434  BCM4388
>  product BROADCOM BCM4313       0x4727  BCM4313
> +product BROADCOM 4464          0x4464  4464
>  product BROADCOM 5801          0x5801  5801
>  product BROADCOM 5802          0x5802  5802
>  product BROADCOM 5805          0x5805  5805
> diff --git a/sys/dev/pci/pcidevs.h b/sys/dev/pci/pcidevs.h
> index b07d6b96599..99afd2ce308 100644
> --- a/sys/dev/pci/pcidevs.h
> +++ b/sys/dev/pci/pcidevs.h
> @@ -1175,6 +1175,7 @@
>  #define        PCI_PRODUCT_APPLE_BCM5701       0x1645          /* BCM5701
> */
>  #define        PCI_PRODUCT_APPLE_NVME1 0x2001          /* NVMe */
>  #define        PCI_PRODUCT_APPLE_NVME2 0x2003          /* NVMe */
> +#define        PCI_PRODUCT_APPLE_NVME3 0x2005          /* NVMe */
>
>  /* Aquantia Corp. */
>  #define        PCI_PRODUCT_AQUANTIA_AQC100     0x00b1          /* AQC100
> */
> @@ -2688,6 +2689,7 @@
>  #define        PCI_PRODUCT_BROADCOM_BCM4387    0x4433          /* BCM4387
> */
>  #define        PCI_PRODUCT_BROADCOM_BCM4388    0x4434          /* BCM4388
> */
>  #define        PCI_PRODUCT_BROADCOM_BCM4313    0x4727          /* BCM4313
> */
> +#define        PCI_PRODUCT_BROADCOM_4464       0x4464          /* 4464 */
>  #define        PCI_PRODUCT_BROADCOM_5801       0x5801          /* 5801 */
>  #define        PCI_PRODUCT_BROADCOM_5802       0x5802          /* 5802 */
>  #define        PCI_PRODUCT_BROADCOM_5805       0x5805          /* 5805 */
> diff --git a/sys/dev/pci/pcidevs_data.h b/sys/dev/pci/pcidevs_data.h
> index 74de782f41b..9a7fce28d0a 100644
> --- a/sys/dev/pci/pcidevs_data.h
> +++ b/sys/dev/pci/pcidevs_data.h
> @@ -2887,6 +2887,10 @@ static const struct pci_known_product
> pci_known_products[] = {
>             PCI_VENDOR_APPLE, PCI_PRODUCT_APPLE_NVME2,
>             "NVMe",
>         },
> +       {
> +           PCI_VENDOR_APPLE, PCI_PRODUCT_APPLE_NVME3,
> +           "NVMe",
> +       },
>         {
>             PCI_VENDOR_AQUANTIA, PCI_PRODUCT_AQUANTIA_AQC100,
>             "AQC100",
> @@ -8731,6 +8735,10 @@ static const struct pci_known_product
> pci_known_products[] = {
>             PCI_VENDOR_BROADCOM, PCI_PRODUCT_BROADCOM_BCM4313,
>             "BCM4313",
>         },
> +       {
> +           PCI_VENDOR_BROADCOM, PCI_PRODUCT_BROADCOM_4464,
> +           "4464",
> +       },
>         {
>             PCI_VENDOR_BROADCOM, PCI_PRODUCT_BROADCOM_5801,
>             "5801",
>
>
> OpenBSD 7.5-current (GENERIC.MP) #2: Tue Jun 25 13:11:36 CDT 2024
>     j...@dolch.my.domain:/usr/src/sys/arch/amd64/compile/GENERIC.MP
> real mem = 16986939392 (16200MB)
> avail mem = 16448831488 (15686MB)
> random: good seed from bootblocks
> mpath0 at root
> scsibus0 at mpath0: 256 targets
> mainbus0 at root
> bios0 at mainbus0: SMBIOS rev. 3.3 @ 0x78ecf000 (35 entries)
> bios0: vendor Apple Inc. version "2022.100.22.0.0 (iBridge:
> 21.16.5077.0.0,0)" date 04/17/2024
> bios0: Apple Inc. Macmini8,1
> efi0 at bios0: UEFI 2.4
> efi0: Apple rev 0x10000
> acpi0 at bios0: ACPI 5.0
> acpi0: sleep states S0 S3 S4 S5
> acpi0: tables DSDT FACP SSDT SSDT SSDT SSDT SSDT SSDT ECDT HPET APIC SBST
> SSDT SSDT SSDT SSDT SSDT SSDT DMAR MCFG
> acpi0: wakeup devices PEG0(S3) XGBE(S4) PEG1(S3) XHC2(S3) PEG2(S3)
> XHC3(S3) RP01(S4) ARPT(S4) RP02(S4) GIGE(S4) RP17(S3) EC__(S3) BLTH(S3)
> XHC1(S3)
> acpitimer0 at acpi0: 3579545 Hz, 24 bits
> acpiec0 at acpi0
> acpihpet0 at acpi0: 23999999 Hz
> acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
> cpu0 at mainbus0: apid 0 (boot processor)
> cpu0: Intel(R) Core(TM) i7-8700B CPU @ 3.20GHz, 4589.31 MHz, 06-9e-0a,
> patch 000000f6
> 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=7ffafbff<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,OSXSAVE,AVX,F16C,RDRAND>
> cpu0: cpuid 6 eax=26f7<SENSOR,ARAT> ecx=9<EFFFREQ>
> cpu0: cpuid 7.0
> ebx=29c6fbf<FSGSBASE,TSC_ADJUST,SGX,BMI1,HLE,AVX2,SMEP,BMI2,ERMS,INVPCID,RTM,MPX,RDSEED,ADX,SMAP,CLFLUSHOPT,PT>
> ecx=40000000
> edx=bc002e00<SRBDS_CTRL,MD_CLEAR,TSXFA,IBRS,IBPB,STIBP,L1DF,SSBD>
> cpu0: cpuid a vers=4, gp=4, 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=2000c04<RSBA,MISC_PKG_CT,ENERGY_FILT,GDS_CTRL>
> cpu0: MELTDOWN
> cpu0: 32KB 64b/line 8-way D-cache, 32KB 64b/line 8-way I-cache, 256KB
> 64b/line 4-way L2 cache, 12MB 64b/line 16-way L3 cache
> cpu0: smt 0, core 0, package 0
> mtrr: Pentium Pro MTRR support, 10 var ranges, 88 fixed ranges
> cpu0: apic clock running at 24MHz
> cpu0: mwait min=64, max=64, C-substates=0.2.1.2.4.1.1.1, IBE
> cpu1 at mainbus0: apid 2 (application processor)
> cpu1: Intel(R) Core(TM) i7-8700B CPU @ 3.20GHz, 4489.54 MHz, 06-9e-0a,
> patch 000000f6
> cpu1: cpuid 1 ecx=-8000000<OSXSAVE>
> cpu1: smt 0, core 1, package 0
> cpu2 at mainbus0: apid 4 (application processor)
> cpu2: Intel(R) Core(TM) i7-8700B CPU @ 3.20GHz, 4389.77 MHz, 06-9e-0a,
> patch 000000f6
> cpu2: smt 0, core 2, package 0
> cpu3 at mainbus0: apid 6 (application processor)
> cpu3: Intel(R) Core(TM) i7-8700B CPU @ 3.20GHz, 4290.01 MHz, 06-9e-0a,
> patch 000000f6
> cpu3: smt 0, core 3, package 0
> cpu4 at mainbus0: apid 8 (application processor)
> cpu4: Intel(R) Core(TM) i7-8700B CPU @ 3.20GHz, 4290.01 MHz, 06-9e-0a,
> patch 000000f6
> cpu4: smt 0, core 4, package 0
> cpu5 at mainbus0: apid 10 (application processor)
> cpu5: Intel(R) Core(TM) i7-8700B CPU @ 3.20GHz, 4290.01 MHz, 06-9e-0a,
> patch 000000f6
> cpu5: smt 0, core 5, package 0
> cpu6 at mainbus0: apid 1 (application processor)
> cpu6: Intel(R) Core(TM) i7-8700B CPU @ 3.20GHz, 4290.01 MHz, 06-9e-0a,
> patch 000000f6
> cpu6: smt 1, core 0, package 0
> cpu7 at mainbus0: apid 3 (application processor)
> cpu7: Intel(R) Core(TM) i7-8700B CPU @ 3.20GHz, 4290.01 MHz, 06-9e-0a,
> patch 000000f6
> cpu7: smt 1, core 1, package 0
> cpu8 at mainbus0: apid 5 (application processor)
> cpu8: Intel(R) Core(TM) i7-8700B CPU @ 3.20GHz, 4290.01 MHz, 06-9e-0a,
> patch 000000f6
> cpu8: smt 1, core 2, package 0
> cpu9 at mainbus0: apid 7 (application processor)
> cpu9: Intel(R) Core(TM) i7-8700B CPU @ 3.20GHz, 4290.01 MHz, 06-9e-0a,
> patch 000000f6
> cpu9: smt 1, core 3, package 0
> cpu10 at mainbus0: apid 9 (application processor)
> cpu10: Intel(R) Core(TM) i7-8700B CPU @ 3.20GHz, 4290.01 MHz, 06-9e-0a,
> patch 000000f6
> cpu10: smt 1, core 4, package 0
> cpu11 at mainbus0: apid 11 (application processor)
> cpu11: Intel(R) Core(TM) i7-8700B CPU @ 3.20GHz, 4290.01 MHz, 06-9e-0a,
> patch 000000f6
> cpu11: smt 1, core 5, package 0
> ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins
> acpimcfg0 at acpi0
> acpimcfg0: addr 0xe0000000, bus 0-240
> acpiprt0 at acpi0: bus 0 (PCI0)
> acpiprt1 at acpi0: bus 1 (PEG0)
> acpiprt2 at acpi0: bus 5 (PEG1)
> acpiprt3 at acpi0: bus 123 (PEG2)
> acpiprt4 at acpi0: bus 3 (RP01)
> acpiprt5 at acpi0: bus 4 (RP02)
> acpiprt6 at acpi0: bus 2 (RP17)
> acpipci0 at acpi0 PCI0
> "ACPI000E" at acpi0 not configured
> asmc0 at acpi0: SMC_ (smc-huronriver) addr 0x300/0x20: revision failed
> (0xff)
> "APP9876" at acpi0 not configured
> "BCM2E7C" at acpi0 not configured
> "INT34BA" at acpi0 not configured
> acpibtn0 at acpi0: PWRB
> acpibtn1 at acpi0: SLPB
> acpicpu0 at acpi0: C3(200@1034 mwait.1@0x60), C2(200@151 mwait.1@0x33),
> C1(1000@1 mwait.1), PSS
> acpicpu1 at acpi0: C3(200@1034 mwait.1@0x60), C2(200@151 mwait.1@0x33),
> C1(1000@1 mwait.1), PSS
> acpicpu2 at acpi0: C3(200@1034 mwait.1@0x60), C2(200@151 mwait.1@0x33),
> C1(1000@1 mwait.1), PSS
> acpicpu3 at acpi0: C3(200@1034 mwait.1@0x60), C2(200@151 mwait.1@0x33),
> C1(1000@1 mwait.1), PSS
> acpicpu4 at acpi0: C3(200@1034 mwait.1@0x60), C2(200@151 mwait.1@0x33),
> C1(1000@1 mwait.1), PSS
> acpicpu5 at acpi0: C3(200@1034 mwait.1@0x60), C2(200@151 mwait.1@0x33),
> C1(1000@1 mwait.1), PSS
> acpicpu6 at acpi0: C3(200@1034 mwait.1@0x60), C2(200@151 mwait.1@0x33),
> C1(1000@1 mwait.1), PSS
> acpicpu7 at acpi0: C3(200@1034 mwait.1@0x60), C2(200@151 mwait.1@0x33),
> C1(1000@1 mwait.1), PSS
> acpicpu8 at acpi0: C3(200@1034 mwait.1@0x60), C2(200@151 mwait.1@0x33),
> C1(1000@1 mwait.1), PSS
> acpicpu9 at acpi0: C3(200@1034 mwait.1@0x60), C2(200@151 mwait.1@0x33),
> C1(1000@1 mwait.1), PSS
> acpicpu10 at acpi0: C3(200@1034 mwait.1@0x60), C2(200@151 mwait.1@0x33),
> C1(1000@1 mwait.1), PSS
> acpicpu11 at acpi0: C3(200@1034 mwait.1@0x60), C2(200@151 mwait.1@0x33),
> C1(1000@1 mwait.1), PSS
> acpivideo0 at acpi0: IGPU
> acpivout0 at acpivideo0: DD1F
> cpu0: using VERW MDS workaround (except on vmm entry)
> cpu0: Enhanced SpeedStep 4589 MHz: speeds: 3201, 3200, 3000, 2900, 2700,
> 2500, 2300, 2200, 2000, 1800, 1700, 1500, 1300, 1100, 1000, 800 MHz
> pci0 at mainbus0 bus 0
> pchb0 at pci0 dev 0 function 0 "Intel Core 8G Host" rev 0x07
> ppb0 at pci0 dev 1 function 0 "Intel Core 6G PCIE" rev 0x07: msi
> pci1 at ppb0 bus 1
> ppb1 at pci0 dev 1 function 1 "Intel Core 6G PCIE" rev 0x07: msi
> pci2 at ppb1 bus 5
> ppb2 at pci2 dev 0 function 0 vendor "Intel", unknown product 0x1578 rev
> 0x06
> pci3 at ppb2 bus 6
> ppb3 at pci3 dev 0 function 0 "Intel JHL7540 Thunderbolt 3" rev 0x06: msi
> pci4 at ppb3 bus 7
> "Intel JHL7540 Thunderbolt 3" rev 0x06 at pci4 dev 0 function 0 not
> configured
> ppb4 at pci3 dev 1 function 0 "Intel JHL7540 Thunderbolt 3" rev 0x06: msi
> pci5 at ppb4 bus 9
> ppb5 at pci3 dev 2 function 0 "Intel JHL7540 Thunderbolt 3" rev 0x06: msi
> pci6 at ppb5 bus 8
> xhci0 at pci6 dev 0 function 0 "Intel JHL7540 Thunderbolt 3" rev 0x06:
> 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
> ppb6 at pci3 dev 4 function 0 "Intel JHL7540 Thunderbolt 3" rev 0x06: msi
> pci7 at ppb6 bus 66
> ppb7 at pci0 dev 1 function 2 "Intel Core 6G PCIE" rev 0x07: msi
> pci8 at ppb7 bus 123
> ppb8 at pci8 dev 0 function 0 vendor "Intel", unknown product 0x1578 rev
> 0x06
> pci9 at ppb8 bus 124
> ppb9 at pci9 dev 0 function 0 "Intel JHL7540 Thunderbolt 3" rev 0x06: msi
> pci10 at ppb9 bus 125
> "Intel JHL7540 Thunderbolt 3" rev 0x06 at pci10 dev 0 function 0 not
> configured
> ppb10 at pci9 dev 1 function 0 "Intel JHL7540 Thunderbolt 3" rev 0x06: msi
> pci11 at ppb10 bus 127
> ppb11 at pci9 dev 2 function 0 "Intel JHL7540 Thunderbolt 3" rev 0x06: msi
> pci12 at ppb11 bus 126
> xhci1 at pci12 dev 0 function 0 "Intel JHL7540 Thunderbolt 3" rev 0x06:
> msi, xHCI 1.10
> 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
> ppb12 at pci9 dev 4 function 0 "Intel JHL7540 Thunderbolt 3" rev 0x06: msi
> pci13 at ppb12 bus 184
> inteldrm0 at pci0 dev 2 function 0 "Intel UHD Graphics 630" rev 0x00
> drm0 at inteldrm0
> inteldrm0: msi, COFFEELAKE, gen 9
> pchtemp0 at pci0 dev 18 function 0 "Intel 300 Series Thermal" rev 0x10
> xhci2 at pci0 dev 20 function 0 "Intel 300 Series xHCI" rev 0x10: msi,
> xHCI 1.10
> usb2 at xhci2: USB revision 3.0
> uhub2 at usb2 configuration 1 interface 0 "Intel xHCI root hub" rev
> 3.00/1.00 addr 1
> "Intel 300 Series Shared SRAM" rev 0x10 at pci0 dev 20 function 2 not
> configured
> "Intel 300 Series HECI" rev 0x10 at pci0 dev 22 function 0 not configured
> ppb13 at pci0 dev 27 function 0 "Intel 300 Series PCIE" rev 0xf0: msi
> pci14 at ppb13 bus 2
> nvme0 at pci14 dev 0 function 0 "Apple NVMe" rev 0x01: msi, NVMe 1.1
> nvme0: APPLE SSD AP1024M, firmware 1306, serial H281022006AJRWLD8
> scsibus1 at nvme0: 2 targets, initiator 0
> sd0 at scsibus1 targ 1 lun 0: <NVMe, APPLE SSD AP1024, 1306>
> sd0: 954204MB, 4096 bytes/sector, 244276265 sectors
> vendor "Apple", unknown product 0x1801 (class prehistoric subclass
> miscellaneous, rev 0x01) at pci14 dev 0 function 1 not configured
> vendor "Apple", unknown product 0x1802 (class prehistoric subclass
> miscellaneous, rev 0x01) at pci14 dev 0 function 2 not configured
> vendor "Apple", unknown product 0x1803 (class multimedia subclass audio,
> rev 0x01) at pci14 dev 0 function 3 not configured
> ppb14 at pci0 dev 28 function 0 "Intel 300 Series PCIE" rev 0xf0: msi
> pci15 at ppb14 bus 3
> bwfm0 at pci15 dev 0 function 0 "Broadcom 4464" rev 0x03: msi
> ppb15 at pci0 dev 28 function 1 "Intel 300 Series PCIE" rev 0xf0: msi
> pci16 at ppb15 bus 4
> bge0 at pci16 dev 0 function 0 "Broadcom BCM57766" rev 0x01, BCM57766 A1
> (0x57766001)bge0: firmware handshake timed out
> : msi, address 28:ec:95:05:a6:6d
> brgphy0 at bge0 phy 1: BCM57765 10/100/1000baseT PHY, rev. 1
> "Intel 300 Series UART" rev 0x10 at pci0 dev 30 function 0 not configured
> pcib0 at pci0 dev 31 function 0 "Intel CM246 LPC" rev 0x10
> azalia0 at pci0 dev 31 function 3 "Intel 300 Series cAVS" rev 0x10: msi
> azalia0: no supported codecs
> ichiic0 at pci0 dev 31 function 4 "Intel 300 Series SMBus" rev 0x10: apic
> 2 int 16
> iic0 at ichiic0
> spdmem0 at iic0 addr 0x50: 8GB DDR4 SDRAM PC4-21300 SO-DIMM
> spdmem1 at iic0 addr 0x52: 8GB DDR4 SDRAM PC4-21300 SO-DIMM
> "Intel 300 Series SPI" rev 0x10 at pci0 dev 31 function 5 not configured
> isa0 at pcib0
> isadma0 at isa0
> pcppi0 at isa0 port 0x61
> spkr0 at pcppi0
> vmm0 at mainbus0: VMX/EPT
> efifb at mainbus0 not configured
> uhub3 at uhub1 port 3 configuration 1 interface 0 "VIA Labs, Inc. USB3.0
> Hub" rev 3.00/90.11 addr 2
> umass0 at uhub3 port 2 configuration 1 interface 0 "USB SanDisk 3.2Gen1"
> rev 3.20/1.00 addr 3
> umass0: using SCSI over Bulk-Only
> scsibus2 at umass0: 2 targets, initiator 0
> sd1 at scsibus2 targ 1 lun 0: <USB, SanDisk 3.2Gen1, 1.00> removable
> serial.078155ab8107712cf658
> sd1: 942480MB, 512 bytes/sector, 1930199040 sectors
> uhub4 at uhub2 port 5 configuration 1 interface 0 "VIA Labs, Inc. USB2.0
> Hub" rev 2.10/90.11 addr 2
> uhidev0 at uhub4 port 1 configuration 1 interface 0 "Lenovo ThinkPad
> Compact USB Keyboard with TrackPoint" rev 2.00/3.30 addr 3
> uhidev0: iclass 3/1
> ukbd0 at uhidev0: 8 variable keys, 6 key codes
> wskbd0 at ukbd0: console keyboard
> uhidev1 at uhub4 port 1 configuration 1 interface 1 "Lenovo ThinkPad
> Compact USB Keyboard with TrackPoint" rev 2.00/3.30 addr 3
> uhidev1: iclass 3/1, 22 report ids
> ums0 at uhidev1 reportid 1: 5 buttons, Z and W dir
> wsmouse0 at ums0 mux 0
> ucc0 at uhidev1 reportid 16: 573 usages, 20 keys, array
> wskbd1 at ucc0 mux 1
> uhid0 at uhidev1 reportid 17: input=2, output=0, feature=0
> uhid1 at uhidev1 reportid 19: input=8, output=8, feature=8
> uhid2 at uhidev1 reportid 21: input=2, output=0, feature=0
> uhid3 at uhidev1 reportid 22: input=2, output=0, feature=0
> uplcom0 at uhub4 port 4 configuration 1 interface 0 "ATEN International
> UC232A Serial" rev 1.10/0.01 addr 4
> ucom0 at uplcom0: usb2.5.00004.0
> uhub2: device problem, disabling port 7
> uhidev2 at uhub2 port 8 configuration 1 interface 0 "Soarer Soarer's
> Keyboard Converter" rev 2.00/1.00 addr 5
> uhidev2: iclass 3/1
> ukbd1 at uhidev2: no usable key codes array
> uhidev3 at uhub2 port 8 configuration 1 interface 1 "Soarer Soarer's
> Keyboard Converter" rev 2.00/1.00 addr 5
> uhidev3: iclass 3/0, 3 report ids
> ukbd2 at uhidev3 reportid 1: 128 variable keys, 0 key codes
> wskbd2 at ukbd2 mux 1
> uhid4 at uhidev3 reportid 2: input=1, output=0, feature=0
> ucc1 at uhidev3 reportid 3: 24 usages, 13 keys, enum
> wskbd3 at ucc1 mux 1
> uhidev4 at uhub2 port 8 configuration 1 interface 2 "Soarer Soarer's
> Keyboard Converter" rev 2.00/1.00 addr 5
> uhidev4: iclass 3/0
> uhid5 at uhidev4: input=32, output=0, feature=0
> uhidev5 at uhub2 port 8 configuration 1 interface 3 "Soarer Soarer's
> Keyboard Converter" rev 2.00/1.00 addr 5
> uhidev5: iclass 3/0
> uhid6 at uhidev5: input=64, output=64, feature=0
> vscsi0 at root
> scsibus3 at vscsi0: 256 targets
> softraid0 at root
> scsibus4 at softraid0: 256 targets
> root on sd1a (cf806446436feb1a.a) swap on sd1b dump on sd1b
> drm:pid0:intel_ddi_sanitize_encoder_pll_mapping *NOTICE* [drm]
> [ENCODER:94:DDI B/PHY B] is disabled/in DSI mode with an ungated DDI clock,
> gate it
> drm:pid0:intel_ddi_sanitize_encoder_pll_mapping *NOTICE* [drm]
> [ENCODER:109:DDI C/PHY C] is disabled/in DSI mode with an ungated DDI
> clock, gate it
> inteldrm0: 2560x1600, 32bpp
> wsdisplay0 at inteldrm0 mux 1: console (std, vt100 emulation), using wskbd0
> wskbd1: connecting to wsdisplay0
> wskbd2: connecting to wsdisplay0
> wskbd3: connecting to wsdisplay0
> wsdisplay0: screen 1-5 added (std, vt100 emulation)
> bwfm0: firmware did not come up
> bwfm0: could not load microcode
> bge0: firmware handshake timed out
> bge0: firmware handshake timed out
>
>

Reply via email to