Contribute
Register

[GUIDE] Intel UHD Graphics 630 Coffee Lake headless mode / main card

Joined
Dec 10, 2010
Messages
1,367
Motherboard
Gigabyte Z390 Aorus Elite
CPU
i9-9900K
Graphics
RX 6600 XT
Mobile Phone
  1. iOS
How to set the integrated graphics card Intel UHD Graphics 630 Coffee Lake Refresh (9 generation) in headless mode (without cable) to be used in video encoding tasks, bringing the image to the monitor with Radeon RX 580, adding hardware video encoding and decoding to the system, or as main card.

Note
: based on the excellent article "[GUIDE] General Framebuffer Patching Guide (HDMI Black Screen Problem)" by @CaseySJ, on the "Framebuffer patch" functionality of @headkaze Hackintool app and on the Desktop Coffee Lake Dortania's guide. Instructions for OpenCore.

Macs with an integrated graphics card (iGPU) and a dedicated one (dGPU) use the integrated one for video encoding and decoding. When building a Hackintosh with both types of GPU we can find that, although the dGPU is much more powerful than the iGPU, if it is not properly installed and recognized by the system, the video encoding will fail. When this happens but we do not want to have the iGPU as the primary card, we must configure the iGPU as headless mode (it is called like that when it is active but without cable to the display) so that the dGPU shows the image but the integrated one is available for encoding / decoding video.

The iGPU installation depends on 2 factors:
  • motherboard because each manufacturer places 1-2-3 output ports on the iGPU
  • Intel processor generation, different Intel processor generations carry different iGPU models.
My PC has Z390 Aorus Elite board with an Intel 9 generation CPU (Coffee Lake Refresh, it is configured as Coffee Lake) with Intel UHD Graphics 630 which is in PciRoot(0x0)/Pci(0x2,0x0) whose Plattorm ID is 3E9B0007. The dGPU is Radeon RX 580. On this board there is only one connector on the iGPU, it is HDMI v1.4 and corresponds to index 3 in the theoretical list of 3 connectors at most that this model of iGPU can carry:
  • Index 1, BusID 0x00, Type HDMI (type does not matter on this port)
  • Index 2, BusID 0x00, Type HDMI (type does not matter on this port)
  • Index 3, BusID 0x04, Type HDMI (this is the active port, the only one existing).
This can be important when using the iGPU as a primary or single card but not when using it in headless mode.

Headless mode
  • iGPU and dGPU must be enabled in BIOS with dGPU as primary.
  • There should be no cable between iGPU port and any type of display.
  • Lilu and WhatEverGreen properly installed.
  • SMBIOS iMac19.1
  • You have to add in DeviceProperties section of OC:
XML:
            <key>PciRoot(0x0)/Pci(0x2,0x0)</key>
            <dict>
                <key>AAPL,ig-platform-id</key>
                <data>AwCRPg==</data>
                <key>device-id</key>
                <data>mz4AAA==</data>
                <key>enable-metal</key>
                <data>AQAAAA==</data>
                <key>rps-control</key>
                <data>AQAAAA==</data>
            </dict>
This code shows data values in Base64, they can also be seen as hexadecimal values although with the inverted bytes (reverse byte order), you can check it with a converter: AwCRPg== in Base64 (device-id) equals 0300913e in hexadecimal (3E910000).

With these changes I can boot from the dGPU with the iGPU well recognized by macOS. To check if the VDA Decoder function is activated you can see it in Hackintool (Fully Supported or Failed in the first System tab) or in the VideoProc app (Hardware acceleration preferences> Option> Enabled or Not available). In my case, with the proposed configuration, both applications detect hardware video encoding.

Notes:
  • device-id=9B3E000 to be displayed as Intel UHD Graphics 630 instead of Kabylake Unknown
  • enable-metal=01 to enable Metal 3 in Ventura
  • force-online=01 to force online status on all displays (mandatory)
  • rps-control=01 to enable RPS control patch (improves IGPU performance).
iGPU as main card

This card can also be configured to be the primary or main, so that it outputs a signal to the monitor and also encodes video. Here's what to do to make it work like this.
  • Enable it on the mother board as main: Initial Display Output IGFX instead of PCIe 1 Slot (this would be the final step)
  • Lilu and WhatEverGreen properly installed
  • SMBIOS iMac19.1
  • Add in config.plist: in DeviceProperties section of config.plist the code below:
XML:
            <key>PciRoot(0x0)/Pci(0x2,0x0)</key>
            <dict>
                <key>AAPL,ig-platform-id</key>
                <data>BwCbPg==</data>
                <key>device-id</key>
                <data>mz4AAA==</data>
                <key>device_type</key>
                <string>VGA compatible controller</string>
                <key>enable-hdmi20</key>
                <data>AQAAAA==</data>
                <key>enable-metal</key>
                <data>AQAAAA==</data>
                <key>framebuffer-con0-busid</key>
                <data>AAAAAA==</data>
                <key>framebuffer-con0-enable</key>
                <data>AQAAAA==</data>
                <key>framebuffer-con0-pipe</key>
                <data>EgAAAA==</data>
                <key>framebuffer-con1-busid</key>
                <data>AAAAAA==</data>
                <key>framebuffer-con1-enable</key>
                <data>AQAAAA==</data>
                <key>framebuffer-con1-pipe</key>
                <data>EgAAAA==</data>
                <key>framebuffer-con2-busid</key>
                <data>BAAAAA==</data>
                <key>framebuffer-con2-enable</key>
                <data>AQAAAA==</data>
                <key>framebuffer-con2-pipe</key>
                <data>EgAAAA==</data>
                <key>framebuffer-con2-type</key>
                <data>AAgAAA==</data>
                <key>framebuffer-patch-enable</key>
                <data>AQAAAA==</data>
                <key>framebuffer-stolenmem</key>
                <data>AAAwAQ==</data>
                <key>hda-gfx</key>
                <string>onboard-1</string>
                <key>igfxfw</key>
                <data>AgAAAA==</data>
                <key>force-online</key>
                <data>AQAAAA==</data>
                <key>rps-control</key>
                <data>AQAAAA==</data>
            </dict>

Notes:
  • force-online=01 to force online status on all displays (mandatory).
In this way, Intel UHD 630 is well installed and works fine on macOS.

If you have KP or black screen when you leave sleep, you have to replace hda-gfx property with No-hda-gfx, this usually fixes those failures when leaving sleep but audio through HDMI is lost. Replace these 2 lines:
XML:
                <key>hda-gfx</key>
                <string>onboard-1</string>
for these other 2:
XML:
                <key>No-hda-gfx</key>
                <data>AAAAAAAAAAA=</data>
 
Last edited:
Hello, thanks for the fantastic guide.

I have a big problem configuring the integrated iGPU of my system in headless mode. My system is: Intel HD 630 iGPU (Intel Core i7 7700k CPU), Gigabyte Z270X Gaming 5 motherboard and AMD Radeon RX580 GPU as dGPU. I have 3 monitors connected directly to the dGPU. When the iGPU is configured in headless mode (compute only) the OS can use the iGPU perfectly (hardware encoding and decoding are working perfectly), but after sometime of using the machine (10 to 30 minutes) the system reboots itself with a kernel panic. I am using OpenCore 0.6.1, iGPU platformID is 59120003 and deviceID is 59120000. If I configure the iGPU in non-headless mode with platformID 59120000 and deviceID 59120000, I experience no kernel panics. In both configurations I can use the iGPU for hardware encoding and decoding successfully. Could you please help me to resolve this issue?

Thank you

Kernel panic
panic(cpu 0 caller 0xffffff800cc469aa): Kernel trap at 0xffffff7f8f5ba16b, type 14=page fault, registers:
CR0: 0x000000008001003b, CR2: 0x00000000000001dc, CR3: 0x0000000010cc1000, CR4: 0x00000000003626e0
RAX: 0x35dce4c5835400a8, RBX: 0x0000000000000001, RCX: 0x0000000000020003, RDX: 0x0000000000000001
RSP: 0xffffffa3d501be20, RBP: 0xffffffa3d501bea0, RSI: 0x0000000000000002, RDI: 0xffffff8047dad440
R8: 0x0000000000000001, R9: 0x0000000000000003, R10: 0x0000000000000000, R11: 0xffffff804b2a4fc0
R12: 0xffffff80488cf000, R13: 0x0000000000000000, R14: 0x0000000000000001, R15: 0x0000000000000000
RFL: 0x0000000000010202, RIP: 0xffffff7f8f5ba16b, CS: 0x0000000000000008, SS: 0x0000000000000010
Fault CR2: 0x00000000000001dc, Error code: 0x0000000000000000, Fault CPU: 0x0, PL: 0, VF: 1

Backtrace (CPU 0), Frame : Return Address
0xffffffa3d501b880 : 0xffffff800cb1a65d
0xffffffa3d501b8d0 : 0xffffff800cc54a75
0xffffffa3d501b910 : 0xffffff800cc465fe
0xffffffa3d501b960 : 0xffffff800cac0a40
0xffffffa3d501b980 : 0xffffff800cb19d27
0xffffffa3d501ba80 : 0xffffff800cb1a117
0xffffffa3d501bad0 : 0xffffff800d2c1abc
0xffffffa3d501bb40 : 0xffffff800cc469aa
0xffffffa3d501bcc0 : 0xffffff800cc466a8
0xffffffa3d501bd10 : 0xffffff800cac0a40
0xffffffa3d501bd30 : 0xffffff7f8f5ba16b
0xffffffa3d501bea0 : 0xffffff7f8f59773f
0xffffffa3d501bee0 : 0xffffff800d22d54d
0xffffffa3d501bf30 : 0xffffff800d22be1e
0xffffffa3d501bf70 : 0xffffff800d22b416
0xffffffa3d501bfa0 : 0xffffff800cac013e
Kernel Extensions in backtrace:
com.apple.driver.AppleIntelKBLGraphicsFramebuffer(14.0.7)[A0F02E8D-D211-316E-A1AA-782D33CB8C95]@0xffffff7f8f563000->0xffffff7f8f794fff
dependency: com.apple.iokit.IOPCIFamily(2.9)[DF219CC1-366A-31FC-B8ED-17C584BA2549]@0xffffff7f8d701000
dependency: com.apple.iokit.IOACPIFamily(1.4)[68557A36-4EE1-372A-983B-BB2769FDB8E0]@0xffffff7f8d6ef000
dependency: com.apple.iokit.IOAcceleratorFamily2(438.7.3)[9D052246-9911-3EB3-89E9-BDF771949C45]@0xffffff7f8f495000
dependency: com.apple.iokit.IOReportFamily(47)[8F7948CF-5C25-33F4-A687-67F8A5B7906E]@0xffffff7f8d62f000
dependency: com.apple.AppleGraphicsDeviceControl(5.2.6)[372B091D-3A52-3749-AE17-E8A5103D8DB0]@0xffffff7f8f559000
dependency: com.apple.iokit.IOGraphicsFamily(576.1)[92A3DAC1-1745-37AC-88DE-FA87B5EB2526]@0xffffff7f8f444000
 
Hello, thanks for the fantastic guide.

I have a big problem configuring the integrated iGPU of my system in headless mode. My system is: Intel HD 630 iGPU (Intel Core i7 7700k CPU), Gigabyte Z270X Gaming 5 motherboard and AMD Radeon RX580 GPU as dGPU. I have 3 monitors connected directly to the dGPU. When the iGPU is configured in headless mode (compute only) the OS can use the iGPU perfectly (hardware encoding and decoding are working perfectly), but after sometime of using the machine (10 to 30 minutes) the system reboots itself with a kernel panic. I am using OpenCore 0.6.1, iGPU platformID is 59120003 and deviceID is 59120000. If I configure the iGPU in non-headless mode with platformID 59120000 and deviceID 59120000, I experience no kernel panics. In both configurations I can use the iGPU for hardware encoding and decoding successfully. Could you please help me to resolve this issue?

Thank you.

Hi. What SMBIOS do you use? If you leave DeviceProperties for the iGPU in config.plist blank but keep it enabled in BIOS with SMBIOS iMacPro1,1, what happens? Do you have video encoding / decoding without kernel panic?
 
Hi, I am using SMBIOS iMac18,3. I will try your suggestion and post back the results. Thanks a lot.
 
Hi, I am using SMBIOS iMac18,3. I will try your suggestion and post back the results. Thanks a lot.

I believed that the desktop i7-7700k microprocessors lacked integrated graphics, whereas the laptop ones did have integrated graphics. But you have Intel HD 630 as iGPU.
When you say headless-mode: do you mean iGPU not connected by cable to monitor and also platformID 59120003 and deviceID 59120000 in DeviceProperties?
When you say non-headless mode: do you mean platformID 59120000 and deviceID 59120000 in DeviceProperties and iGPU without cable to monitor? Or does non-headless mode mean iGPU connected to monitor?
The best SMBIOS for your PC are iMac18,1, iMac18,2 and iMac18,3, especially the latter. You can try iMacPro1,1 but save your EFI folder just in case it doesn't work with the new model. If you put iMacPro1,1 remember to erase the iGPU from DeviceProperties so that the system boots in this way: iGPU enabled in BIOS, DeviceProperties blank and iMacPro1,1.
 
Hi, yes, it's exactly as you mention above - in non-headless mode I'm using platformID 59120000 and deviceID 59120000 in DeviceProperties and in headless mode I'm using platformID 59120003 and deviceID 59120000 in DeviceProperties. In both cases no monitor is connected to the iGPU. All the monitors are connected to the RX580 dGPU. I tried to connect a monitor to the iGPU just to see what happens, but the macOS instantly reboots itself with the same kernel panic (may be it's connected). I tried with the iMacPro SMBIOS, but the system is unstable (freezes). I don't know how to fix this issue. For now I'm using it in non-headless mode since I have no kernel panics. I wanted to make it in headless mode as it should be, but if there is no chance I can leave it in non-headless.
 
... I don't know how to fix this issue. For now I'm using it in non-headless mode since I have no kernel panics. I wanted to make it in headless mode as it should be, but if there is no chance I can leave it in non-headless.

Sorry to read this. If I think someting new about this, I’ll write it here.
 
do you have the config file for me for the i3-8100/0x3E9B0007
gigabyte b365M Aorus Elite
10.14 is working smooth
10.15.7 installer get black screen for gpu

whatevergreen 1.4.1 should solve this?

10/15/2020: updated lilu.kext en whatsevergreen.kext and that worked
i used 0x3E9B0007 was not working
 
Last edited:
do you have the config file for me for the i3-8100/0x3E9B0007
gigabyte b365M Aorus Elite
10.14 is working smooth
10.15.7 installer get black screen for gpu

whatevergreen 1.4.1 should solve this?
Hello. I ask for some questions.
How do you have the card configured? I mean if you use Clover or OC, is it the only card or is it accompanied by a dGPU, what do you have in the config.plist file relative to the iGPU, if you are using Lilu y WEG, if it works well in Mojave and with the same configuration it does not work well in Catalina, etc.
Put the config.plist file here to have a good look.
 
Hello, a symbolicate kernel panic log of my problem with the headless mode of HD630 (7700K) on Z270

Those rows are strange:

com.apple.driver.AppleIntelKBLGraphicsFramebuffer:

__ZN31AppleIntelFramebufferController20invokeHotplugHandlerEj
__ZN31AppleIntelFramebufferController18SWInterruptHandlerEP8OSObjectP22IOInterruptEventSourcei
__ZN22IOInterruptEventSource12checkForWorkEv
__ZN10IOWorkLoop15runEventSourcesEv
__ZN10IOWorkLoop10threadMainEv

This is the OC config of HD Audio and the iGPU as well.
XML:
<key>PciRoot(0x0)/Pci(0x1F,0x3)</key>
<dict>
    <key>#hda-gfx</key>
    <string>onboard-1</string>
    <key>AAPL,slot-name</key>
    <string>Internal@0,31,3</string>
    <key>No-hda-gfx</key>
    <data>
    AAAAAAAAAAA=
    </data>
    <key>device_type</key>
    <string>Audio device</string>
    <key>layout-id</key>
    <data>
    AQAAAA==
    </data>
    <key>model</key>
    <string>200 Series PCH HD Audio</string>
</dict>
<key>PciRoot(0x0)/Pci(0x2,0x0)</key>
<dict>
    <key>#hda-gfx</key>
    <string>onboard-2</string>
    <key>AAPL,GfxYTile</key>
    <data>
    AQAAAA==
    </data>
    <key>AAPL,ig-platform-id</key>
    <data>
    AwASWQ==
    </data>
    <key>AAPL,slot-name</key>
    <string>Internal@0,2,0</string>
    <key>No-hda-gfx</key>
    <data>
    AAAAAAAAAAA=
    </data>
    <key>device-id</key>
    <data>
    ElkAAA==
    </data>
    <key>device_type</key>
    <string>Display controller</string>
    <key>model</key>
    <string>Intel HD Graphics 630</string>
</dict>


Kernel panic Log:
panic(cpu 0 caller 0xffffff800fe469aa): Kernel trap at 0xffffff7f943e016b, type 14=page fault, registers:
CR0: 0x000000008001003b, CR2: 0x00000000000001dc, CR3: 0x000000001e742000, CR4: 0x00000000003626e0
RAX: 0xb642280d88b200ad, RBX: 0x0000000000000002, RCX: 0x0000000000010002, RDX: 0x0000000000000001
RSP: 0xffffff83c7e23e20, RBP: 0xffffff83c7e23ea0, RSI: 0x0000000000000001, RDI: 0xffffff80562a8e20
R8: 0x0000000000000001, R9: 0x0000000000000002, R10: 0x0000000000000000, R11: 0x0000000000000000
R12: 0xffffff805740a000, R13: 0x0000000000000000, R14: 0x0000000000000002, R15: 0x0000000000000000
RFL: 0x0000000000010202, RIP: 0xffffff7f943e016b, CS: 0x0000000000000008, SS: 0x0000000000000010
Fault CR2: 0x00000000000001dc, Error code: 0x0000000000000000, Fault CPU: 0x0, PL: 0, VF: 1

Backtrace (CPU 0), Frame : Return Address
0xffffff83c7e23880 : 0xffffff800fd1a65d mach_kernel : _handle_debugger_trap + 0x49d
0xffffff83c7e238d0 : 0xffffff800fe54a75 mach_kernel : _kdp_i386_trap + 0x155
0xffffff83c7e23910 : 0xffffff800fe465fe mach_kernel : _kernel_trap + 0x4ee
0xffffff83c7e23960 : 0xffffff800fcc0a40 mach_kernel : _return_from_trap + 0xe0
0xffffff83c7e23980 : 0xffffff800fd19d27 mach_kernel : _DebuggerTrapWithState + 0x17
0xffffff83c7e23a80 : 0xffffff800fd1a117 mach_kernel : _panic_trap_to_debugger + 0x227
0xffffff83c7e23ad0 : 0xffffff80104c1a6c mach_kernel : _panic + 0x54
0xffffff83c7e23b40 : 0xffffff800fe469aa mach_kernel : _sync_iss_to_iks + 0x2aa
0xffffff83c7e23cc0 : 0xffffff800fe466a8 mach_kernel : _kernel_trap + 0x598
0xffffff83c7e23d10 : 0xffffff800fcc0a40 mach_kernel : _return_from_trap + 0xe0
0xffffff83c7e23d30 : 0xffffff7f943e016b com.apple.driver.AppleIntelKBLGraphicsFramebuffer : __ZN31AppleIntelFramebufferController20invokeHotplugHandlerEj + 0x62f
0xffffff83c7e23ea0 : 0xffffff7f943bd75a com.apple.driver.AppleIntelKBLGraphicsFramebuffer : __ZN31AppleIntelFramebufferController18SWInterruptHandlerEP8OSObjectP22IOInterruptEventSourcei + 0x198
0xffffff83c7e23ee0 : 0xffffff801042d4fd mach_kernel : __ZN22IOInterruptEventSource12checkForWorkEv + 0x17d
0xffffff83c7e23f30 : 0xffffff801042bdce mach_kernel : __ZN10IOWorkLoop15runEventSourcesEv + 0x11e
0xffffff83c7e23f70 : 0xffffff801042b3c6 mach_kernel : __ZN10IOWorkLoop10threadMainEv + 0x36
0xffffff83c7e23fa0 : 0xffffff800fcc013e mach_kernel : _call_continuation + 0x2e
Kernel Extensions in backtrace:
com.apple.driver.AppleIntelKBLGraphicsFramebuffer(14.0.7)[069C9DB9-B70A-3B17-A15E-D22CA5DDAC0C]@0xffffff7f94389000->0xffffff7f945ebfff
dependency: com.apple.iokit.IOPCIFamily(2.9)[44472E6F-8DA0-3B46-ADEF-AFF76EC6C6DB]@0xffffff7f90712000
dependency: com.apple.iokit.IOACPIFamily(1.4)[2956198D-24F2-3790-A9B2-1EAB9434B906]@0xffffff7f90709000
dependency: com.apple.iokit.IOAcceleratorFamily2(438.7.3)[B263A05C-9992-3742-AD6C-295E68E22576]@0xffffff7f942c5000
dependency: com.apple.iokit.IOReportFamily(47)[72B53B80-5713-30C1-BAD8-9D55FD718DA2]@0xffffff7f90649000
dependency: com.apple.AppleGraphicsDeviceControl(5.2.6)[E04CD680-EC03-39ED-99C6-902C8495543F]@0xffffff7f93f2b000
dependency: com.apple.iokit.IOGraphicsFamily(576.1)[1279CBF9-88F1-3EB4-9566-1085DBF6DF8B]@0xffffff7f93eda000

BSD process name corresponding to current thread: kernel_task
Boot args: alcid=11 keepsyms=1 darkwake=0 chunklist-security-epoch=0 -chunklist-no-rev2-dev

Mac OS version:
19H2

Kernel version:
Darwin Kernel Version 19.6.0: Mon Aug 31 22:12:52 PDT 2020; root:xnu-6153.141.2~1/RELEASE_X86_64
Kernel UUID: 05D51A3D-3A87-3FF0-98C3-9CF3827A3EDD
Kernel slide: 0x000000000fa00000
Kernel text base: 0xffffff800fc00000
__HIB text base: 0xffffff800fb00000
System model name: iMac18,3 (Mac-BE088AF8C5EB4FA2)
System shutdown begun: NO
Panic diags file available: YES (0x0)

System uptime in nanoseconds: 30514307813
last loaded kext at 21788632012: >!AUpstreamUserClient 3.6.8 (addr 0xffffff7f96cb9000, size 28672)
loaded kexts:
com.eset.kext.esets-pfw 6100.33.30f01
com.eset.kext.esets-kac 6100.33.30f01
com.intel.driver.EnergyDriver 3.7.0
com.realtek.driver.RtWlanU 1830.32.b13
com.paragon-software.filesystems.ntfs 143.5.15
as.acidanthera.BrcmPatchRAM3 2.5.5
com.insanelymac.AtherosE2200Ethernet 2.3.0
ru.joedm.SMCSuperIO 1.1.7
as.acidanthera.mieze.!IMausi 1.0.4
as.vit9696.SMCProcessor 1.1.7
as.vit9696.VirtualSMC 1.1.7
org.tw.CodecCommander 2.7.2
as.lvs1974.AirportBrcmFixup 2.1.0
as.acidanthera.BrcmFirmwareStore 2.5.5
as.vit9696.!AALC 1.5.3
as.vit9696.WhateverGreen 1.4.3
as.vit9696.Lilu 1.4.8
>!AUpstreamUserClient 3.6.8
>!AMCCSControl 1.14
@kext.AMDFramebuffer 3.1.0
@kext.AMDRadeonX4000 3.1.0
@kext.AMDRadeonServiceManager 3.1.0
@fileutil 20.036.15
>!AGraphicsDevicePolicy 5.2.6
@AGDCPluginDisplayMetrics 5.2.6
>!AHV 1
|IOUserEthernet 1.0.1
|IO!BSerialManager 7.0.6f7
>pmtelemetry 1
>!AHDAHardwareConfigDriver 283.15
@Dont_Steal_Mac_OS_X 7.0.0
>!APlatformEnabler 2.7.0d0
>AGPM 111.4.4
>X86PlatformShim 1.0.0
>AudioAUUC 1.70
>!A!IKBLGraphics 14.0.7
>!AHDA 283.15
@kext.AMD9500!C 3.1.0
>ACPI_SMC_PlatformPlugin 1.0.0
>!A!BMultitouch 97
>!A!IKBLGraphicsFramebuffer 14.0.7
>!A!IPCHPMC 2.0.1
>!AGFXHDA 100.1.429
>!A!ISlowAdaptiveClocking 4.0.0
>!AFIVRDriver 4.1.0
@filesystems.autofs 3.0
@private.KextAudit 1.0
>!UODD 489.120.1
|SCSITaskUserClient 422.120.3
>!AFileSystemDriver 3.0.1
@filesystems.hfs.kext 522.100.5
@BootCache 40
@!AFSCompression.!AFSCompressionTypeDataless 1.0.0d1
@!AFSCompression.!AFSCompressionTypeZlib 1.0.0
>!AVirtIO 1.0
@filesystems.apfs 1412.141.1
>!AAHCIPort 341.140.1
>!AACPIButtons 6.1
>!ARTC 2.0
>!AHPET 1.8
>!ASMBIOS 2.1
>!AAPIC 1.7
$!AImage4 1
@nke.applicationfirewall 303
$TMSafetyNet 8
@!ASystemPolicy 2.0.0
|EndpointSecurity 1
>!ASMBus!C 1.0.18d1
|IOSMBus!F 1.1
@kext.AMDRadeonX4000HWLibs 1.0
@kext.AMDRadeonX4000HWServices 3.1.0
>!AGraphicsControl 5.2.6
|IOAVB!F 850.1
@!AGPUWrangler 5.2.6
>DspFuncLib 283.15
@kext.OSvKernDSPLib 529
>IOPlatformPluginLegacy 1.0.0
>!UAudio 323.4
>!AMultitouchDriver 3440.1
>!AInputDeviceSupport 3440.8
>IO!BHIDDriver 7.0.6f7
|IOAccelerator!F2 438.7.3
@plugin.IOgPTPPlugin 840.3
|IOEthernetAVB!C 1.1.0
|IOSkywalk!F 1
>!AHDA!C 283.15
|IOHDA!F 283.15
>!AHIDKeyboard 209
|IONDRVSupport 576.1
>!ASMBusPCI 1.0.14d1
@kext.AMDSupport 3.1.0
@!AGraphicsDeviceControl 5.2.6
|IOGraphics!F 576.1
|IOSlowAdaptiveClocking!F 1.0.0
>X86PlatformPlugin 1.0.0
>IOPlatformPlugin!F 6.0.0d8
@kext.triggers 1.0
|IOSCSIMultimediaCommandsDevice 422.120.3
|IOBD!S!F 1.8
|IODVD!S!F 1.8
|IOCD!S!F 1.8
|IOAHCISerialATAPI 268
|IOAHCIBlock!S 316.100.5
>usb.IOUSBHostHIDDevice 1.2
>usb.cdc 5.0.0
>usb.networking 5.0.0
>usb.!UHostCompositeDevice 1.2
|Broadcom!BHost!CUSBTransport 7.0.6f7
|IO!BHost!CUSBTransport 7.0.6f7
|IO!BHost!CTransport 7.0.6f7
>usb.!UHub 1.2
>!UMergeNub 900.4.2
|IOSurface 269.11
@filesystems.hfs.encodings.kext 1
|IOSerial!F 11
>!AXsanScheme 3
>usb.!UHostPacketFilter 1.0
|IOUSB!F 900.4.2
|IONVMe!F 2.1.0
>!AEFINVRAM 2.1
|IOAHCI!F 290.0.1
>usb.!UXHCIPCI 1.2
>usb.!UXHCI 1.2
>!AEFIRuntime 2.1
|IOHID!F 2.0.0
$quarantine 4
$sandbox 300.0
@kext.!AMatch 1.0.0d1
|IOAudio!F 300.2
@vecLib.kext 1.2.0
>!AKeyStore 2
>!UTDM 489.120.1
|IOSCSIBlockCommandsDevice 422.120.3
>!ACredentialManager 1.0
>!AFDEKeyStore 28.30
>!AEffaceable!S 1.0
>!AMobileFileIntegrity 1.0.5
@kext.CoreTrust 1
|CoreAnalytics!F 1
|IOTimeSync!F 840.3
|IONetworking!F 3.4
>DiskImages 493.0.0
|IO!B!F 7.0.6f7
|IO!BPacketLogger 7.0.6f7
>!ASSE 1.0
>KernelRelayHost 1
>!ASEPManager 1.0.1
>IOSlaveProcessor 1
|IOUSBMass!SDriver 157.140.1
|IOSCSIArchitectureModel!F 422.120.3
|IO!S!F 2.1
|IOUSBHost!F 1.2
>usb.!UCommon 1.0
>!UHostMergeProperties 1.2
>!ABusPower!C 1.0
|IOReport!F 47
>!AACPIPlatform 6.1
>!ASMC 3.1.9
>watchdog 1
|IOPCI!F 2.9
|IOACPI!F 1.4
@kec.pthread 1
@kec.corecrypto 1.0
@kec.Libm 1
 
Back
Top