Jump to content

[80% Solved] Iris Xe iGPU on Tiger Lake successfully loaded ICLLP Frambuffer and VRAM also recognizes 1536MB! + However, some issues.


shl628
117 posts in this topic

Recommended Posts

Hello. 🙂

I recently modified the WhateverGreen source code directly with Xcode and tried several things.
And, Oh, my God! 🫢


Finally, I succeeded in loading ICLLP Framebuffer on Intel Iris Xe iGPU.
Additionally, in the system information, the iGPU's VRAM was recognized as 1536MB.
So, I am writing this topic to share information about this.

However, there are still some issues remaining, please refer to the bottom of this topic.

 

image.png.f98e298eca48e058e5df44bbb37645a3.png

 

image.thumb.png.65eef4afc8ebcadeb5c43ccaee014391.png

 

There is an issue where the laptop's built-in display turns into a black screen after booting is complete.
Thankfully, I was able to use macOS's screen sharing feature to capture screenshots, dump IORegs, and more via another macOS Hackintosh computer on the same network.

 

 

Modifications from WhateverGreen source code

The files modified from WhateverGreen's source code with Xcode are as follows.

  • kern_igfx.cpp

In the Switch statement, specify the ICLLP Framebuffer for Intel 11th Gen Tiger Lake the same as Ice Lake, and set the modDVMTCalcFix.available value to True.

		case CPUInfo::CpuGeneration::IceLake:
			supportsGuCFirmware = true;
			currentGraphics = &kextIntelICL;
			currentFramebuffer = &kextIntelICLLPFb;
			currentFramebufferOpt = &kextIntelICLHPFb;
			modDVMTCalcFix.available = true;
			break;
		case CPUInfo::CpuGeneration::TigerLake:
			supportsGuCFirmware = true;
			currentGraphics = &kextIntelICL;
			currentFramebuffer = &kextIntelICLLPFb;
			currentFramebufferOpt = &kextIntelICLHPFb;
			modDVMTCalcFix.available = true;
			break;

 

https://github.com/lshbluesky/WhateverGreen/commit/a091c30109209265245b9bd2f85f38bcf6e9e158

 

  • kern_model.cpp

Add the value 0x9A49 corresponding to the Device ID of the Intel Iris Xe iGPU of the Intel 11th Gen Tiger Lake Core i5-1135G7 CPU.

	{ 0x8A51, 0x0000, "Intel Iris Plus Graphics" },
	{ 0x8A52, 0x0000, "Intel Iris Plus Graphics" },
	{ 0x8A53, 0x0000, "Intel Iris Plus Graphics" },
	{ 0x8A5A, 0x0000, "Intel Iris Plus Graphics" },
	{ 0x8A5C, 0x0000, "Intel Iris Plus Graphics" },
	// Reserved/unused/generic Ice Lake },
	{ 0x9A49, 0x8A52, "Intel Iris Xe Graphics" },
	{ 0x9A40, 0x8A52, "Intel Iris Xe Graphics" },
	{ 0x9A60, 0x8A5A, "Intel Iris Xe Graphics" },
	{ 0x9A68, 0x8A5A, "Intel Iris Xe Graphics" },
	{ 0x9A70, 0x8A5A, "Intel Iris Xe Graphics" },
	{ 0x9A78, 0x8A5A, "Intel Iris Xe Graphics" },
	// Reserved/unused/generic Tiger Lake },
};

 

https://github.com/lshbluesky/WhateverGreen/commit/f757d2866abc1559bab750948b4ea667c5eb89fb

https://github.com/lshbluesky/WhateverGreen/commit/0119aa85860271370f914935b38082fed117760d

 

Additionally, I forked the WhateverGreen repository on Acidanthera's official GitHub, modified the source code as above, and uploaded the Debug version of WhateverGreen.kext that I built myself.

If you need it or want to use it, you can download it from my GitHub site below.

https://github.com/lshbluesky/WhateverGreen/releases

 

image.thumb.png.cf296c60b8fa256e356f24560f79ac73.png

 

 

macOS Boot Logs

 

image.thumb.jpeg.39a518b810282f6fffccbf94ed2e9cf0.jpeg

localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Failing probe (-allow3d is NOT set in boot-arg)!

"[IGPU] Failing probe (-allow3d is NOT set in boot-arg)" seems that the log is related to Metal acceleration.

Also, -allow3d is a boot arg in AppleIntelICLGraphics.kext itself, not a boot arg in WhateverGreen.

 

So, I tried adding -allow3d boot arg, but an Unsupported ICL Sku kernel panic occurred in macOS Catalina 10.15.7 version.

 

image.thumb.jpeg.1eb5d9c6eb497e8934190fc6da5b03b6.jpeg

 

In macOS Big Sur 11.x and later, booting stops at the point where graphics-related drivers are loaded.
(Perhaps, an Unsupported ICL Sku kernel panic occurred, but it does not appear as a log on the screen.)

 

 

macOS System Logs

 

image.png.2ca5c1a74282256182db0f8548822c1c.png

image.thumb.png.2daa55162234eaa7a01308a1051d7fc3.png

image.thumb.png.088a57739fbd94ec752f2308a5272d8c.png

 

And, the log “[IGFB][ERROR][DISPLAY ] FB1: is not enabled” continues to be displayed indefinitely from a certain time.
Please refer to the system log file attached below for other logs.

System Logs - Iris Xe iGPU.txt

 

 

Observe the IOReg dump

 

-igfxcdc boot arg worked and the Unsupported CD Clock Frequency kernel panic was resolved, so the ICLLP Framebuffer was loaded on the IGPU device.

 

image.thumb.png.6915ff7db949670131aca5aa05760d0b.png

 

However, compared to the IOReg of other Ice Lake laptops, the IntelAccelerator item does not exist under the IGPU device.
Perhaps, this is because Metal acceleration does not work because the -allow3d boot arg mentioned above is not applied.

 

Also, there is something a little strange about IOReg.

  1. The laptop's built-in display is recognized as AppleDisplay, not AppleBacklightDisplay.
  2. It is connected to the second connector (AppleIntelFramebuffer@1) of ICLLP Framebuffer, not the first connector (AppleIntelFramebuffer@0).

 

Additionally, I confirmed in Linux that this laptop's built-in display connector is eDP, not LVDS.

 

If you would like to look at IOReg, please refer to the IOReg dump file attached below.

MacBook Pro-TigerLake-shl.ioreg.zip

 

 

Still, remaining issues

 

1. An issue where the Blur effect does not work because actual QE/CI and Metal graphics acceleration do not work.
Applying -allow3d boot arg causes Unsupported ICL Sku kernel panic.
I guess I'll have to find a way to circumvent this.

 

2. The laptop's built-in display turns into a black screen after booting is complete.
I tried using -igfxblr, -igfxblt boot args, but it didn't work.

 

3. An issue where the laptop’s built-in display is recognized as AppleDisplay rather than AppleBacklightDisplay.
EDID injection and PNLF Device's _UID value were not resolved by directly modifying it to 0x13.

 

4. Problem connecting to the second connector (AppleIntelFramebuffer@1) of ICLLP Framebuffer rather than the first connector (AppleIntelFramebuffer@0).
Patching the connector using the Connector Patch property in Device Properties did not resolve the issue.

 

I am not sure if solving problem 1 of the above problems will solve the remaining problems 2, 3, and 4 as well.
If I can solve problem 1 by bypassing the Unsupported ICL Sku kernel panic, I think I will be closer to success. 🍀

Edited by shl628
  • Like 4
Link to comment
Share on other sites

1. Currently, the settings changed using RU.efi in the BIOS of this laptop are as follows.

 

- CpuSetup (VarStore : 0x2)

  • CFG Lock (Variable : 0x43) : Disabled (Value : 0x0)

- SaSetup (VarStore : 0x5)

  • DVMT Pre-Allocated Memory (Variable : 0x84) : 64 MB (Value : 0x2)
  • CD Clock Frequency (Variable : 0x47) : 648 MHz (Value : 0x7) / 652.8 MHz (Value : 0x8)

 

However, even if the CD Clock Frequency item is set to 648 MHz or higher,

if the -igfxcdc boot arg is not used, Unsupported CD Clock Frequency kernel panic occurs.

 

On the other hand, DVMT Pre Allocated Memory was recognized normally as 64 MB.
In the boot logs, WhateverGreen's DVMT patch module output a log indicating that DVMT is already set to 64 MB, so the -igfxdvmt patch is not needed.
Additionally, I confirmed that the value of the fw-dvmt-preallocated-memory property is displayed as 0x40(=Decimal 64) in IOReg.

 


[Solved] 2. framebuffer-unifiedmem property is not working. (Of course, it doesn't seem to be related to the Unsupported ICL Sku kernel panic.)

 

Even if I set framebuffer-unifiedmem = 00000080 (Data), the VRAM is displayed as 1536 MB instead of 2048 MB.

 

+ I used WhateverGreen (Ver 1.6.7-d4) that I patched and changed Platform ID = 0x8A710000, Device ID = 0x8A71 and it was resolved.

 

 

3. What I am going to try to resolve Unsupported ICL Sku kernel panic

 

-allow3d is a boot arg in AppleIntelICLGraphics.kext

So, I looked for other boot args.

I'm trying to check if there are any changes in the boot log using the boot args of the ICL Driver and ICLLP Framebuffer itself below.

 

Boot args in AppleIntelICLGraphics.kext

-noig (External display can only have maximum resolution 2560x1600,built-in display black screen)
-allow3d
-disablegfxpreemption
-disablegfxfirmware

 

Boot args in AppleIntelICLLPGraphicsFramebuffer.kext

auxDelay (default is 100)
-10bpc
ig
-nodisplaysleepDC6
-noDC9
-linp0
dither=[0/1]
-yTileDisable (panic with an empty log)
-nocam
-disable3d
dc6config=[0/1/2/3/5]
-forceDSC
forceRenderStandby=[0/1] (default is 0)
-disablegfxfirmware
-nossc
EnableLPVPonExternal=[0/1] (default is 0)
-disableDynamicCDClk
-noasfu
GPU420Support=[0/1] (default is 0)
EnableGPUSubSamplingForHDR=[0/1] (default is 0)
enablefp16=[0/1] (default is 0)
-2dsim (2D GPU simulation)
-DisableIOFB
-panic_on_unload
-noCustomAux
meibootarg=[0/1] (default is 0)
tcncontrol (default is 0)
-nopsr
-nopsrexit
-novrr
-nodpb
-sfu
-forcepsr
dpbmode

Edited by shl628
  • Like 1
Link to comment
Share on other sites

[Solved] 4. Insufficient stolen memory was displayed in the system log.

 

Typically, the cause of Unsupported ICL Sku kernel panic on Intel 10th Gen Ice Lake systems is related to DVMT and is resolved using -igfxdvmt boot arg.
However, I have already set DVMT Pre-Allocated Memory to 64MB using RU.efi, but an Unsupported ICL Sku kernel panic occurs.

I tried setting DVMT Pre-Allocated Memory to a higher value of 128 MB, but it's the same.

 

I found information about the error log in the General Discussion: Intel Ice Lake Graphics Topic article.

 

image.thumb.png.e84143fbf427c81bbb1de77e63815cc1.png


I'm going to try adjusting the framebuffer and cursor memory.

 

+ When I changed the DVMT Pre Allocated Memory from 64MB to 160 MB, the [IGFB][ERROR][DISPLAY] Insufficient stolen memory log disappeared.
The Insufficient stolen memory error seems to have been resolved.
But, Unsupported ICL Sku kernel panic still occurs when applying -allow3d boot arg.

 


5. -igfxsku boot arg?

 

In the General Discussion: Intel Ice Lake Graphics Topic above, Austere.J (0xFireWolf) mentioned -igfxsku boot arg.

I am not sure if the boot arg called -igfxsku is a separate patch from -igfxdvmt, or if it was originally -igfxsku but only the name was changed to -igfxdvmt.

 

If -igfxsku boot arg is a separate patch from -igfxdvmt, I wonder if it is possible to resolve the Unsupported ICL Sku kernel panic that occurs when -allow3d boot arg is applied to the current Iris Xe iGPU.

The problem is that Austere.J (0xFireWolf) said that he removed -igfxsku boot arg.

 

I searched all the old versions of WhateverGreen source code, but I couldn't find anything about -igfxsku boot arg.
I can download WhateverGreen.kext built from the past v1.4.2 version, but I haven't modified the source code for Tiger Lake, so -igfxcdc boot arg doesn't work.

Edited by shl628
  • Like 1
Link to comment
Share on other sites

Someone explained the Unsupported ICL Sku kernel panic as follows.

image.png.60f6686854ca905887200837c2fe7b53.png

 

https://github.com/lshbluesky/Samsung-NT750XDA-KF59U-Hackintosh/discussions/15#discussioncomment-7948599

 

Does anyone know how to get the Intel Accelerator.cpp source code file for macOS?

 

image.thumb.jpeg.b58c1e1ed39eb3f5809abd6298f2d326.jpeg

 

I looked it up on Apple's macOS open source site, but I can't find the IntelAccelerator.cpp source code file. 🥹

https://opensource.apple.com/releases/

https://github.com/apple-oss-distributions

Edited by shl628
  • Like 1
Link to comment
Share on other sites

2 hours ago, shl628 said:

Does anyone know how to get the Intel Accelerator.cpp source code file for macOS?

 

image.thumb.jpeg.b58c1e1ed39eb3f5809abd6298f2d326.jpeg

 

 

The source code for video card drivers, like many other things, is a closed development, Hopper disassembler or IDA Pro

  • Like 1
Link to comment
Share on other sites

32 minutes ago, HmO said:

The source code for video card drivers, like many other things, is a closed development, Hopper disassembler or IDA Pro

 

Thanks for your reply.

I opened the AppleIntelICLGraphics binary file with IDA Free and found the part that caused the Unsupported ICL Sku kernel panic.

 

I don't know the details, but I am attaching a screenshot of the assembly language and pseudo code of the related function.

image.thumb.png.8460ad58e37b255e99e71a3dc5358de5.png

 

image.thumb.png.0fb4dcfcff1a622dd84c16f12b17bb22.png

 

image.thumb.png.91e7820b909c098871f7ede7d75f8243.png

__int64 __fastcall IntelAccelerator::appsPavpSessionMgmt(
        __int64 a1,
        int a2,
        int a3,
        unsigned int a4,
        __int64 a5,
        __int64 *a6,
        char a7,
        char a8)
{
  __int64 v10; // r12
  IGHardwareRingBuffer *v11; // rdi
  char v12; // r15
  int v13; // eax
  unsigned int v14; // edx
  unsigned __int64 v15; // rcx
  __int64 v16; // rdx
  unsigned int v17; // r14d
  __int64 v18; // rax
  unsigned __int64 v19; // rcx
  int *v21; // [rsp+8h] [rbp-C8h]
  unsigned int v24[32]; // [rsp+20h] [rbp-B0h] BYREF
  __int64 v25; // [rsp+A0h] [rbp-30h]

  v10 = a4;
  memset(v24, 0, 0x7CuLL);
  v21 = *(int **)(*(_QWORD *)(a1 + 4776) + 176LL);
  v11 = (IGHardwareRingBuffer *)*((_QWORD *)v21 + 38);
  v12 = a2 + 3;
  if ( !(unsigned __int8)IGHardwareRingBuffer::waitForSpace(v11, a2 + 3) )
  {
    v17 = -536870210;
    if ( a7 )
      goto LABEL_14;
    IntelAccelerator::appsPavpSessionMgmt();
LABEL_8:
    *((_DWORD *)a6 + 1) = *((_DWORD *)a6 + 1) & 0x1FFFFFFE | 0x40000001;
    goto LABEL_10;
  }
  v12 = a7;
  v24[2] = 1744830976;
  v24[8] = 1744830976;
  v24[18] = 1744830976;
  v24[24] = 1744830976;
  v24[0] = 0x4000000;
  v24[1] = v10 & 0x8F | 0x7000000;
  v13 = *(_DWORD *)(a5 + 8);
  v14 = *(_DWORD *)(a5 + 16);
  v10 = ((unsigned int)v10 >> 1) & 0x40;
  v15 = (*(_QWORD *)a5 & 0xFFFFFFFFFFBFFFBFLL) + v10 + 0x400000;
  *(_QWORD *)a5 = v15;
  v24[7] = v14;
  *(_QWORD *)&v24[5] = *(_QWORD *)(a5 + 8);
  *(_QWORD *)&v24[3] = v15;
  if ( !a3 )
  {
    *(_DWORD *)a6 = *((unsigned __int16 *)a6 + 1) << 16;
    *((_BYTE *)a6 + 7) &= 0x1Fu;
    goto LABEL_10;
  }
  if ( a3 == 1 )
    goto LABEL_8;
  if ( a3 != 2 )
  {
LABEL_10:
    *(_QWORD *)&v24[13] = a6[2];
    v18 = *a6;
    *(_QWORD *)&v24[11] = a6[1];
    *(_QWORD *)&v24[9] = v18;
    v15 = *(_QWORD *)a5;
    v13 = *(_DWORD *)(a5 + 8);
    goto LABEL_11;
  }
  v24[17] = *((_DWORD *)a6 + 8);
  *(_QWORD *)&v24[15] = a6[3];
  *(_QWORD *)&v24[13] = a6[2];
  v16 = *a6;
  *(_QWORD *)&v24[11] = a6[1];
  *(_QWORD *)&v24[9] = v16;
LABEL_11:
  v19 = v10 | v15 & 0xFFFFFFFFFFBFFFBFLL;
  *(_DWORD *)(a5 + 8) = v13;
  *(_QWORD *)a5 = v19;
  v24[23] = *(_DWORD *)(a5 + 16);
  *(_QWORD *)&v24[19] = v19;
  *(_QWORD *)&v24[21] = *(_QWORD *)(a5 + 8);
  *(_QWORD *)a5 = v19;
  *(_DWORD *)(a5 + 8) = v13;
  *(_QWORD *)&v24[25] = v19;
  v24[29] = *(_DWORD *)(a5 + 16);
  *(_QWORD *)&v24[27] = *(_QWORD *)(a5 + 8);
  v24[30] = 67108865;
  (*(void (__fastcall **)(int *))(*(_QWORD *)v21 + 328LL))(v21);
  v11 = (IGHardwareRingBuffer *)v21;
  IGAccelFIFOChannel::submitRingCommands((IGAccelFIFOChannel *)v21, v24, 0x1Fu, 7u);
  v17 = 0;
  if ( v12 && a8 )
  {
    v11 = *(IGHardwareRingBuffer **)(a1 + 896);
    IGAccelEventMachine::finishStamp(v11, v21[8], 0x2Bu);
  }
LABEL_14:
  if ( __stack_chk_guard == v25 )
    return v17;
  else
    return IntelAccelerator::DisplaySleepCallback(v11);
}
Edited by shl628
Link to comment
Share on other sites

29 minutes ago, LockDown said:

So this is Ice and not Tiger?

 

I think it's because I applied the Fake CPU ID from Kernel - Emulate - Cpuid1Data to Ice Lake CPU ID 0x0706E5.

  • Cpuid1Data E5060700 00000000 00000000 00000000
  • Cpuid1Mask : FFFFFFFF 00000000 00000000 00000000
  • Like 1
Link to comment
Share on other sites

When I changed the DVMT Pre Allocated Memory from 64MB to 160 MB, the [IGFB][ERROR][DISPLAY] Insufficient stolen memory log disappeared.
The Insufficient stolen memory error seems to have been resolved.
But, Unsupported ICL Sku kernel panic still occurs when applying -allow3d boot arg.

 

And, I modified -igfxmlr boot arg to work on Tiger Lake systems as well.

https://github.com/lshbluesky/WhateverGreen/commit/01a7be2e34c2033a7358d230ad2d24c00550fd01

 

However, there is a boot args that doesn't work yet.

image.thumb.jpeg.838df9765bd7966452b7d054cdbdbd24.jpeg

void IGFX::ForceOnlineDisplay::processFramebufferKext(KernelPatcher &patcher, size_t index, mach_vm_address_t address, size_t size) {
	KernelPatcher::RouteRequest request = {
		"__ZN21AppleIntelFramebuffer16getDisplayStatusEP21AppleIntelDisplayPath",
		wrapGetDisplayStatus,
		orgGetDisplayStatus
	};
	
	if (!patcher.routeMultiple(index, &request, 1, address, size))
		SYSLOG("igfx", "FOD: Failed to route the function getDisplayStatus.");
}
void IGFX::MaxPixelClockOverride::processFramebufferKext(KernelPatcher &patcher, size_t index, mach_vm_address_t address, size_t size) {
	KernelPatcher::RouteRequest routeRequest = {
		"__ZN21AppleIntelFramebuffer15connectionProbeEjj",
		wrapConnectionProbe,
		orgConnectionProbe
	};

	if (!patcher.routeMultiple(index, &routeRequest, 1, address, size))
		SYSLOG("igfx", "MPC: Failed to route the function.");
}

 

The boot args that have been verified to work so far are as follows.

 

Boot Args that works (with modifications) on Tiger Lake

-igfxcdc
-igfxdvmt
-igfxdbeo

-igfxblr (But, it doesn't solve the Black Screen issue.)
-igfxmlr
igfxagdc=0

 

Boot Args that not working in Tiger Lake

-igfxmpc
igfxonln=1

Edited by shl628
  • Like 1
Link to comment
Share on other sites

I modified WhateverGreen so that the Framebuffer Patching Properties also work on Tiger Lake systems.

  • Add CPUInfo::CpuGeneration::TigerLake in IGFX::applyFramebufferPatches() of kern_igfx.cpp
  • Add CPUInfo::CpuGeneration::TigerLake in IGFX::applyHdmiAutopatch() of kern_igfx.cpp

https://github.com/lshbluesky/WhateverGreen/commit/0635b7c5ef2350948ec9b37f242fb584e1517acd

 

Also, I used WhateverGreen (Ver 1.6.7-d4) that I patched above and changed Platform ID = 0x8A710000 or 0x8A710001, Device ID = 0x8A71.
As a result, the issue where VRAM cannot be changed with the framebuffer-unifiedmem property has been resolved.

 

image.png.10fef2ccd47c7323346741ded2a275a8.png

 

[   35.108640]: WhateverGreen      igfx: @ (DBG) patching framebufferId 0x8A710001
[   35.108642]: WhateverGreen      igfx: @ (DBG) mobile: 0x00000001
[   35.108644]: WhateverGreen      igfx: @ (DBG) pipeCount: 3
[   35.108646]: WhateverGreen      igfx: @ (DBG) portCount: 5
[   35.108648]: WhateverGreen      igfx: @ (DBG) fbMemoryCount: 3
[   35.108650]: WhateverGreen      igfx: @ (DBG) stolenMemorySize: 0x04000000
[   35.108654]: WhateverGreen      igfx: @ (DBG) framebufferMemorySize: 0x00000000
[   35.108656]: WhateverGreen      igfx: @ (DBG) unifiedMemorySize: 0xC0000000
[   35.108659]: WhateverGreen      igfx: @ (DBG) patching framebufferId 0x8A710001 successful

Properties related to the connector patch, such as framebuffer-conX-type, also seem to work.
However, the strange thing is that when I apply Platform ID = 0x8A510002 and Device ID = 0x8A51, the framebuffer-unifiedmem patch property does not work and the VRAM returns to 1536 MB.

 

And, all logs containing [IGFB][ERROR] ~ have disappeared from the system logs.
The issue of the log “[IGFB][ERROR][DISPLAY] FB1: is not enabled” being displayed infinitely has also been resolved.

 

Additionally, -igfxblr boot arg also seems to work.

But, it did not solve the Black Screen issue after booting was completed.

[   35.080149]: WhateverGreen      igfx: @ (DBG) BLR: [CFL+] Will setup the fix for CFL/ICL platform.
[   41.948226]: WhateverGreen      igfx: @ (DBG) BLR: [CFL+] WriteRegister32<BXT_BLC_PWM_DUTY1>: Called with register 0xc8258 and value 0x0.
[   41.948229]: WhateverGreen      igfx: @ BLR: [CFL+] WriteRegister32<BXT_BLC_PWM_DUTY1>: Write PWM_DUTY1 has zero frequency driver (0) target (0).
[   41.948230]: WhateverGreen      igfx: @ (DBG) BLR: [CFL+] Will pass the rescaled value 0x00000000 to the original version.
[   42.019296]: WhateverGreen      igfx: @ (DBG) RWS: Found a replacer injector triggered by the register value 0xc8254.
[   42.019323]: WhateverGreen      igfx: @ (DBG) BLR: [CFL+] WriteRegister32<BXT_BLC_PWM_FREQ1>: Called with register 0xc8254 and value 0x4571.
[   42.019350]: WhateverGreen      igfx: @ (DBG) BLR: [CFL+] WriteRegister32<BXT_BLC_PWM_FREQ1>: Driver requested BXT_BLC_PWM_FREQ1 = 0x4571.
[   42.019390]: WhateverGreen      igfx: @ (DBG) BLR: [CFL+] WriteRegister32<BXT_BLC_PWM_FREQ1>: System initialized with BXT_BLC_PWM_FREQ1 = 0x17700.
[   42.019427]: WhateverGreen      igfx: @ (DBG) RWS: Found a replacer injector triggered by the register value 0xc8258.
[   42.019435]: WhateverGreen      igfx: @ (DBG) BLR: [CFL+] WriteRegister32<BXT_BLC_PWM_DUTY1>: Called with register 0xc8258 and value 0x0.
[   42.019445]: WhateverGreen      igfx: @ (DBG) BLR: [CFL+] WriteRegister32<BXT_BLC_PWM_DUTY1>: Write PWM_DUTY1 0x0/0x4571, rescaled to 0x0/0x17700.
[   42.019454]: WhateverGreen      igfx: @ (DBG) BLR: [CFL+] Will pass the rescaled value 0x00000000 to the original version.

 

I have attached WhateverGreen's Dmesg logs and [IGFB] system logs below.

[Dmesg] WhateverGreen Debug Logs.txt

[IGFB] System Logs - 0x8A710000.txt

Edited by shl628
Link to comment
Share on other sites

I modified and replaced the binary file of AppleIntelICLGraphics.kext with the IDA Free app.
And, I succeeded in bypassing the Unsupported ICL Sku kernel panic.


Note, I'm trying this on macOS Catalina version 10.15.7.
In macOS Big Sur 11.x and later, it is difficult to directly replace Kext's binary file in the /S/L/E directory.
Additionally, for macOS Monterey 12.x and later, binary files are not provided in /S/L/E, and binary modifications can only be patched through Lilu.
Because GPU-related drivers exist in the Auxiliary Kernel Collection (AuxKC).

https://github.com/acidanthera/bugtracker/issues/1244#issuecomment-717998779

 

A function that causes Unsupported ICL Sku kernel panic is defined, and the address is def_26885.

 

image.thumb.png.c16126bf39e3b253001ca63f86f8fe4c.png

__text:0000000000026BBA def_26885:                              ; CODE XREF: __text:0000000000026866j
__text:0000000000026BBA                                         ; __text:0000000000026871j ...
__text:0000000000026BBA                 call    __ZN16IntelAccelerator10getGPUInfoEv_cold_1 ; jumptable 0000000000026885 default case, cases 2,3,5,7
__text:0000000000026BBF                 nop

Also, I checked the code of the part that initializes the IGPU in the getGPUInfo function, and found that it appears that Switch and Case syntax was used.

 

image.png.b7d7e89da27eb08bf30c5e83a925bae4.png

 

Perhaps, cases are divided by GPU Sku value.

 

So, I found the address of the log that says "[IGPU] HWCAPS - GPU Sku: ICL GT2 LP", which is normally displayed on an actual Ice Lake laptop.
The address is loc_269FB.

__text:00000000000269FB loc_269FB:                              ; CODE XREF: __text:0000000000026885j
__text:00000000000269FB                                         ; DATA XREF: __text:jpt_26885o
__text:00000000000269FB                 mov     eax, 8          ; jumptable 0000000000026885 case 8
__text:0000000000026A00                 mov     [r15+11A0h], eax
__text:0000000000026A07                 mov     esi, [r15+1158h]
__text:0000000000026A0E                 lea     r14, aIgpuHwcapsGpuS_3 ; "[IGPU] HWCAPS - GPU Sku: ICL GT2 LP\n"
__text:0000000000026A15                 cmp     esi, eax
__text:0000000000026A17                 jz      loc_26AE1
__text:0000000000026A1D                 lea     rbx, aIgpuHwcapsErro_2 ; "[IGPU] HWCAPS - ERROR: GPU Sku (%u) is "...
__text:0000000000026A24                 mov     rdi, rbx
__text:0000000000026A27                 xor     eax, eax
__text:0000000000026A29                 call    _IOLog
__text:0000000000026A2E                 mov     esi, [r15+1158h]
__text:0000000000026A35                 mov     rdi, rbx
__text:0000000000026A38                 xor     eax, eax
__text:0000000000026A3A                 call    _kprintf
__text:0000000000026A3F                 lea     rbx, aIgpuHwcapsTemp ; "[IGPU] HWCAPS - TEMP HACK: Forcing GPU "...
__text:0000000000026A46                 mov     rdi, rbx
__text:0000000000026A49                 mov     esi, 8
__text:0000000000026A4E                 xor     eax, eax
__text:0000000000026A50                 call    _IOLog
__text:0000000000026A55                 mov     rdi, rbx
__text:0000000000026A58                 mov     esi, 8
__text:0000000000026A5D                 xor     eax, eax
__text:0000000000026A5F                 call    _kprintf
__text:0000000000026A64                 mov     dword ptr [r15+1158h], 8
__text:0000000000026A6F                 jmp     short loc_26AE1

 

Now, I modified all assembly code that causes a jump to def_26885 to jmp loc_269FB.

 

image.thumb.png.a30d9f257ccb5ac0f161fe6eb52960dc.png

 

Then, I patched it using IDA's Edit - Patch Program - Assemble menu and saved it by clicking the Apply patches to input file button.
And, I replaced the binary file of AppleIntelICLGraphics.kext with the one I modified, restored Permissions, and rebuild Kernel Cache.

 

 

The results are as follows:

 

The logs output after bypassing the Unsupported ICL Sku kernel panic are similar to the logs output from an actual Ice Lake laptop.

 

image.thumb.jpeg.765bc76cff2f80ee1c2da94b9ba51770.jpeg

 

The log of kernel panics varies depending on whether the igfxfw=2 boot arg is applied.

 

If igfxfw=2 boot arg is not applied :

 

image.thumb.jpeg.cec79ac966e1860320f450462035a5b3.jpeg


If igfxfw=2 boot arg is applied :

 

image.thumb.jpeg.939998f7c7a0e9bf2438dfd03e9116ec.jpeg

 

If anyone wants to try patching the AppleIntelICLGraphics.kext binary file by opening it with IDA, please refer to the original, unmodified binary file I attached below.

AppleIntelICLGraphics.zip

Edited by shl628
  • Like 2
Link to comment
Share on other sites

  • 5 weeks later...

Hi Master Shl628, May I consult if your webcam and built-in audio IN enabled? what tricky had you taken for them? I suppose they are going the same USB channel.

My Hac has same platform as yours, but camera and touchpad not work yet.

Link to comment
Share on other sites

9 hours ago, daxia tst said:

Hi Master shl628, May I consult if your webcam and built-in audio IN enabled? what tricky had you taken for them? I suppose they are going the same USB channel.

My Hac has same platform as yours, but camera and touchpad not work yet.

 

1. If the Codec connected to the built-in microphone is recognized as a Microphone Array item of Intel Smart Sound Technology rather than Realtek, it cannot be used in macOS.
The built-in microphone on my laptop doesn't work either.
You can check this in Windows' sound settings.

 

2. When performing USB Port Mapping for the built-in WebCam, the USB port connected to the built-in WebCam must be set to Internal (255) type.
And, if the built-in WebCam is IR (infrared), it cannot be used in macOS.

 

3. Open the Info.plist of VoodooI2C.kext and add the PCI ID below under VoodooI2CPCILakeController.
0xa0e88086&amp;0xFFFCFFFF

		<key>VoodooI2CPCILakeController</key>
		<dict>
			<key>CFBundleIdentifier</key>
			<string>com.alexandred.VoodooI2C</string>
			<key>IOClass</key>
			<string>VoodooI2CPCILakeController</string>
			<key>IOPCIMatch</key>
			<string>0x06e88086&amp;0xFFFCFFFF 0x02e88086&amp;0xFFFCFFFF 0x34e88086&amp;0xFFFCFFFF 0xa0e88086&amp;0xFFFCFFFF</string>
			<key>IOProbeScore</key>
			<integer>9999</integer>
			<key>IOProviderClass</key>
			<string>IOPCIDevice</string>
		</dict>

Then, add -vi2c-force-polling boot arg to operate the touchpad in polling mode.

Link to comment
Share on other sites

hi @shl628,

 

Have you tried setting the edid of your monitor via the System/Library/Displays/Contents/Resources/Overrides? this usually changes macos to attempt loading the applebacklightexpert on LVDS, which would be your EDP in this case. This would stop the initialization of the edp via frambebuffer1 in the ioreg and put it on framebuffer0, use the old SSDT-PNLF, your _UID should be 19 in ioreg before attempting, if you use the new icelake SSDT-PNLF (the 1KB file), it usually attaches with a UID of 16 (which you dont want), icelake drivers work under _UID 19.

 

Screenshot2024-01-30at12_36_05PM.thumb.png.8bd079801886353d6c474f5f6b9cc3be.png

 

 

What i found was that when i use hackintool and ticked the internal checkbox on the displays tab, then went down to the export option below where its says inject edid (my EDID) I would then replace the display edid, and give it a random name so that when you go to displays you can verify it, this usually forces my lvds to have the red overlay in the patch connectors tab in hackintool.

 

 

Screenshot2024-01-30at12_39_13PM.thumb.png.7c9cbf385a944dc2561ac183008a2b10.png

 

 

Do a backup of the edid file first in case you need to put it back.

Edited by Mastachief
added SSDT PNLF info
Link to comment
Share on other sites

Hi @Mastachief,

 Nice to read your post on this Hac. Your EDP marked in below image  seems exactly the same model shown in my Hac with named Unknown display,  its actual model is Len 819B.  May I verify with you whether you tried the WEG from @shl628,  and had it resolved the black screen issue?

 

 

Screenshot2024-01-30at12_36_05PM.thumb.png.8bd079801886353d6c474f5f6b9cc3be.png

Link to comment
Share on other sites

The WEG is not supposed to remove the black screen issue, seeing the black screen means that the frame-buffer is loaded. thats all. I believe we should be focused on getting QE/CI more than a display out because the main issues is on the PCH, its in Intel documentation about the difference between PCH between 400 vs 500, but seeing that the framebuffer could be loaded, there are ways to go around that, but it has to do with routing. GO and watch the youtube video with teh VP of intel explaining how computers work, its a two part series, then you will understand what shl628 is trying to do.

Link to comment
Share on other sites

this is the  acer a315-58 specfic config for bios advanced settings 

source + other bios https://github.com/Maxinator500/SREP-Patches

 

if you get a hang at boot just remove the usb pen after 10 seconds. this is caused by a delay while writting log file

 

i've changed NootedBlue and add some patches cause i got issues with link training/black screen etc

idk if will work for others - atm framebuffer only mode

must disable WhateverGreen for it to work

UMAF_BETA.zip

 

some boot log

2024-03-15 23:43:27.499711+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) Entry to probe function\
2024-03-15 23:43:27.499714+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) PlatformID found: 8a520000\
2024-03-15 23:43:27.499775+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][INFO ][DISPLAY   ] ProAudio - Starting FB driver\
2024-03-15 23:43:27.499889+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] VRRTimeStampConfig status - fUseVBL = 0, fLegacyVBLPath = 0, fNotifyCalculatedTimestamp = 1, fReturnFromGamma = 0\
2024-03-15 23:43:27.499893+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] IsVRRSupported = 1\
2024-03-15 23:43:27.499895+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] IsHDMI_2_1Supported = 0\
2024-03-15 23:43:27.499896+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] IsHDMIVRRSupported = 0\
2024-03-15 23:43:27.500785+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][ERROR][DISPLAY   ] Insufficient stolen memory\
2024-03-15 23:43:27.500803+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] CD clock reference frequency = 2\
2024-03-15 23:43:27.500875+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][ERROR][POWER_WELL] EFI should not enable PG4 power well - overriding\
2024-03-15 23:43:27.502043+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] PathIndex = 0, pipe = A\
2024-03-15 23:43:27.502046+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] PathIndex = 1, pipe = B\
2024-03-15 23:43:27.502048+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] PathIndex = 2, pipe = C\
2024-03-15 23:43:27.502088+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Registering for addFrameBufferNotificationWithOptions :: GroupID = 16 Event = 801 fb is 0\
2024-03-15 23:43:27.502112+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Registering for addFrameBufferNotificationWithOptions :: GroupID = 16 Event = 801 fb is 1\
2024-03-15 23:43:27.502134+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Registering for addFrameBufferNotificationWithOptions :: GroupID = 16 Event = 801 fb is 2\
2024-03-15 23:43:27.502139+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: Boot pipe found - DDI0, pipe A\
2024-03-15 23:43:27.502141+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Boot plane config: enable 1 pipe gamma enable 0 source pixel format 8 pipe csc 0 tiling 0\
2024-03-15 23:43:27.502143+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Boot plane size: 1919 x 1079\
2024-03-15 23:43:27.502147+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: Commiting resource set\
2024-03-15 23:43:27.502150+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: Commiting resource set, sleepState 2.\
2024-03-15 23:43:27.502196+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][ERROR][GTPM_SLICESWITCH] : Invalid fRingTables, check if AGPM driver is loaded\
2024-03-15 23:43:27.505574+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Value read from Mailbox for MEM_SS_INFO = 0x120\
2024-03-15 23:43:27.505578+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] RAM = 0x0\
2024-03-15 23:43:27.505579+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Populated Channels = 0x2\
2024-03-15 23:43:27.505580+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Number of GV points = 0x1\
2024-03-15 23:43:27.506596+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At index (plane) 0 h24_maxplanes = 3\
2024-03-15 23:43:27.506600+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 0 and for number of planes(0) totalbw = 9907\
2024-03-15 23:43:27.506602+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 1 and for number of planes(0) totalbw = 0\
2024-03-15 23:43:27.506603+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 2 and for number of planes(0) totalbw = 0\
2024-03-15 23:43:27.506604+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 3 and for number of planes(0) totalbw = 0\
2024-03-15 23:43:27.506606+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At index (plane) 1 h24_maxplanes = 1\
2024-03-15 23:43:27.506607+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 0 and for number of planes(1) totalbw = 16164\
2024-03-15 23:43:27.506611+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 1 and for number of planes(1) totalbw = 0\
2024-03-15 23:43:27.506612+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 2 and for number of planes(1) totalbw = 0\
2024-03-15 23:43:27.506614+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 3 and for number of planes(1) totalbw = 0\
2024-03-15 23:43:27.506615+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At index (plane) 2 h24_maxplanes = 0\
2024-03-15 23:43:27.506616+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 0 and for number of planes(2) totalbw = 22749\
2024-03-15 23:43:27.506618+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 1 and for number of planes(2) totalbw = 0\
2024-03-15 23:43:27.506619+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 2 and for number of planes(2) totalbw = 0\
2024-03-15 23:43:27.506621+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 3 and for number of planes(2) totalbw = 0\
2024-03-15 23:43:27.506622+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At index (plane) 3 h24_maxplanes = 134217727\
2024-03-15 23:43:27.506624+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 0 and for number of planes(3) totalbw = 25000\
2024-03-15 23:43:27.506625+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 1 and for number of planes(3) totalbw = 0\
2024-03-15 23:43:27.506626+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 2 and for number of planes(3) totalbw = 0\
2024-03-15 23:43:27.506628+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 3 and for number of planes(3) totalbw = 0\
2024-03-15 23:43:27.506629+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At index (plane) 4 h24_maxplanes = 67108863\
2024-03-15 23:43:27.506631+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 0 and for number of planes(4) totalbw = 25000\
2024-03-15 23:43:27.506632+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 1 and for number of planes(4) totalbw = 0\
2024-03-15 23:43:27.506634+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 2 and for number of planes(4) totalbw = 0\
2024-03-15 23:43:27.506635+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 3 and for number of planes(4) totalbw = 0\
2024-03-15 23:43:27.506636+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At index (plane) 5 h24_maxplanes = 33554431\
2024-03-15 23:43:27.506638+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 0 and for number of planes(5) totalbw = 25000\
2024-03-15 23:43:27.506639+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 1 and for number of planes(5) totalbw = 0\
2024-03-15 23:43:27.506641+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 2 and for number of planes(5) totalbw = 0\
2024-03-15 23:43:27.506642+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] At Sagv point 3 and for number of planes(5) totalbw = 0\
2024-03-15 23:43:27.536608+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][INFO ][GTPM_SLEEPWAKE] initForPM - fGPUIsAwake init to 1\
2024-03-15 23:43:37.536971+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][ERROR][MEI       ] ME PCI ACPI device not found - PAVP services will be disabled - add IMEI to EFI / ACPI device list\
2024-03-15 23:43:37.537077+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][ERROR][MEI       ] Failed to create MEI service\
2024-03-15 23:43:37.538994+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][POWER     ] External power connected\
2024-03-15 23:43:37.540268+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VRR       ] FB1: IsVRRSupported = 0 IsASFUSupported = 0 IsPairingSupported = 0 IsRampSupported = 0 IsBurstModeSupported = 0 IsTimingStampSupported = 0\
2024-03-15 23:43:37.540506+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][POWER     ] External power connected\
2024-03-15 23:43:37.541462+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VRR       ] FB2: IsVRRSupported = 0 IsASFUSupported = 0 IsPairingSupported = 0 IsRampSupported = 0 IsBurstModeSupported = 0 IsTimingStampSupported = 0\
2024-03-15 23:43:37.541543+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:37.541547+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:43:37.541633+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][POWER     ] External power connected\
2024-03-15 23:43:37.541846+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:37.542127+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:37.542135+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:43:37.542157+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:43:37.542160+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:43:37.542163+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port -1\
2024-03-15 23:43:37.542167+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:37.542187+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Register AGDC callback\
2024-03-15 23:43:37.542197+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Enable controller\
2024-03-15 23:43:37.875163+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] frameBufferNotificationcallback notification received on Fb 0 at time 60560227\
2024-03-15 23:43:37.875165+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] kIOFBNotifyDisplayModeWillChange notification received on fb 0\
2024-03-15 23:43:37.875166+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] TxnHang1: FB0: FrameBufferNotificationCallback received. Event = 1. fTransactionState = kTransComplete, fLiveState = kTransLive\
2024-03-15 23:43:37.875184+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] ProAudio register PMRoot callback\
2024-03-15 23:43:37.888231+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][ERROR][DISPLAY   ] DRMStatus - iTunes/Apple Store Content Access Problem. Content playback may be disabled on this computer. You can continue to use the machine, but you should contact an Apple support representative. ErrorCode: 8877652\
2024-03-15 23:43:37.888296+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][INFO ][DISPLAY   ] Setting the fClosedclamshell to true and calling connectionChanged()\
2024-03-15 23:43:37.888317+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][INFO ][VRR       ] Registering for VBL Interrupt - fLegacyVBLPath = 0, Proc = IOG Handler!!\
2024-03-15 23:43:37.888419+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] frameBufferNotificationcallback notification received on Fb 1 at time 60573484\
2024-03-15 23:43:37.888421+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] kIOFBNotifyDisplayModeWillChange notification received on fb 1\
2024-03-15 23:43:37.889577+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Reporting Fake VBL for pipe 0 on Fb 1\
2024-03-15 23:43:37.889615+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: Online info for DDI = 0, PortType = 0\
2024-03-15 23:43:37.893580+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] DPCD_REV: 1.1\
2024-03-15 23:43:37.894017+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] MAX_LINK_RATE: 0XA\
2024-03-15 23:43:37.894018+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] MAX_LANE_COUNT: 2\
2024-03-15 23:43:37.894018+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] TP3 Supported: 0\
2024-03-15 23:43:37.894019+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] TP4 Supported: 0\
2024-03-15 23:43:37.894020+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] Enhanced Framing: 1\
2024-03-15 23:43:37.894020+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] Does NOT require AUX CH handshake?: 1\
2024-03-15 23:43:37.894021+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] Number of Receive Ports: 1\
2024-03-15 23:43:37.894021+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] Has downstream Port(s): 0\
2024-03-15 23:43:37.894022+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] Downstream detailed capability available: 0\
2024-03-15 23:43:37.894022+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] Has Main Link channel ANSI coding: 1\
2024-03-15 23:43:37.894023+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] Number of downstream ports: 0\
2024-03-15 23:43:37.894023+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] OUI Supported?: 1\
2024-03-15 23:43:37.894024+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] DDI=0 MSATimingParamsIgnoreSupport = 0\
2024-03-15 23:43:37.894461+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] MST Capable: 0\
2024-03-15 23:43:37.895006+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] Sink Count 1\
2024-03-15 23:43:37.895224+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] eDP Configuration 3\
2024-03-15 23:43:37.895225+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DPCD      ] Link Training Interval 0\
2024-03-15 23:43:37.895225+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: fIsHDMI = 0, fEnableAudio = 0, newOnline = 1, fOnline = 1, fMaxPixelClock = 720000000\
2024-03-15 23:43:37.895227+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: newOnline: 1, fOnline: 1\
2024-03-15 23:43:37.895228+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: edid != fEDID\
2024-03-15 23:43:37.895230+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][ERROR][DISPLAY   ] FB1: Invalid port type\
2024-03-15 23:43:37.895359+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][INFO ][VRR       ] Registering for VBL Interrupt - fLegacyVBLPath = 0, Proc = IOG Handler!!\
2024-03-15 23:43:37.895657+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] frameBufferNotificationcallback notification received on Fb 1 at time 60580721\
2024-03-15 23:43:37.895658+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] kIOFBNotifyDisplayModeDidChange notification received on fb 1\
2024-03-15 23:43:37.896828+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Reporting Fake VBL for pipe 0 on Fb 1\
2024-03-15 23:43:37.896905+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] frameBufferNotificationcallback notification received on Fb 2 at time 60581969\
2024-03-15 23:43:37.896906+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] kIOFBNotifyDisplayModeWillChange notification received on fb 2\
2024-03-15 23:43:37.896907+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] TxnHang1: FB2: FrameBufferNotificationCallback received. Event = 1. fTransactionState = kTransComplete, fLiveState = kTransLive\
2024-03-15 23:43:37.896925+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:43:37.896946+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:43:37.896948+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:43:37.896949+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:43:37.896951+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Test resource set config\
2024-03-15 23:43:37.896952+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0: Testing resource set config\
2024-03-15 23:43:37.896962+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0: set[0] is single-link\
2024-03-15 23:43:37.896964+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Commit resource set config\
2024-03-15 23:43:37.896964+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0: Commiting resource set\
2024-03-15 23:43:37.896966+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0: Commiting resource set, sleepState 2.\
2024-03-15 23:43:37.896968+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][ERROR][DISPLAY   ] FB0: Display path resource allocation failed for single-link\
2024-03-15 23:43:37.896969+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][ERROR][DISPLAY   ] Wrong index\
2024-03-15 23:43:37.896971+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][ERROR][DISPLAY   ] FB0: Resources allocation failed\
2024-03-15 23:43:37.896972+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:43:37.896973+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:43:37.896983+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:43:38.023891+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Test resource set config\
2024-03-15 23:43:38.023917+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: Testing resource set config\
2024-03-15 23:43:38.023924+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: set[0] is single-link\
2024-03-15 23:43:38.023930+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Commit resource set config\
2024-03-15 23:43:38.023934+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: Commiting resource set\
2024-03-15 23:43:38.023945+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: Commiting resource set, sleepState 2.\
2024-03-15 23:43:38.023951+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:43:38.023954+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:43:38.024065+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][INFO ][VRR       ] Registering for VBL Interrupt - fLegacyVBLPath = 0, Proc = IOG Handler!!\
2024-03-15 23:43:38.024278+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] frameBufferNotificationcallback notification received on Fb 2 at time 60709341\
2024-03-15 23:43:38.024285+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] kIOFBNotifyDisplayModeDidChange notification received on fb 2\
2024-03-15 23:43:38.024290+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] TxnHang1: FB2: FrameBufferNotificationCallback received. Event = 2. fTransactionState = kTransComplete, fLiveState = kTransLive\
2024-03-15 23:43:38.024965+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] frameBufferNotificationcallback notification received on Fb 0 at time 60710029\
2024-03-15 23:43:38.024978+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] kIOFBNotifyDisplayModeDidChange notification received on fb 0\
2024-03-15 23:43:38.024983+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] TxnHang1: FB0: FrameBufferNotificationCallback received. Event = 2. fTransactionState = kTransComplete, fLiveState = kTransLive\
2024-03-15 23:43:38.039338+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:38.039735+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:38.039797+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:43:38.040684+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:38.052859+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0xfffffffb fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.052866+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0xfffffffb and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.053271+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Requesting VDT: Online:1 Mode:0 Depth:1 Active:1920x1080 Scaled:0x0 PixelClock:142000000 ScalerFlags:0 SignalConfig:0 Requested pixel encoding 1 Colorimetry 1 dynamic range 1\
2024-03-15 23:43:38.053301+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Detailed timing validated by AGDC (response = 0x2)\
2024-03-15 23:43:38.053303+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Mode:0 Depth:1 Active:1920x1080 Scaled:0x0 PixelClock:142000000 ScalerFlags:0 SignalConfig:0: Requested pixel encoding 1 dynamic range 1\
2024-03-15 23:43:38.053307+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: fEnablePlaneRotation = 1, fittable = 1\
2024-03-15 23:43:38.053338+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Requesting VDT: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:640x480 PixelClock:142000000 ScalerFlags:0 SignalConfig:0 Requested pixel encoding 1 Colorimetry 1 dynamic range 1\
2024-03-15 23:43:38.053367+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Detailed timing validated by AGDC (response = 0x2)\
2024-03-15 23:43:38.053369+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:640x480 PixelClock:142000000 ScalerFlags:0 SignalConfig:0: Requested pixel encoding 1 dynamic range 1\
2024-03-15 23:43:38.053372+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: fEnablePlaneRotation = 1, fittable = 1\
2024-03-15 23:43:38.053384+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Requesting VDT: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:800x600 PixelClock:142000000 ScalerFlags:0 SignalConfig:0 Requested pixel encoding 1 Colorimetry 1 dynamic range 1\
2024-03-15 23:43:38.053404+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Detailed timing validated by AGDC (response = 0x2)\
2024-03-15 23:43:38.053406+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:800x600 PixelClock:142000000 ScalerFlags:0 SignalConfig:0: Requested pixel encoding 1 dynamic range 1\
2024-03-15 23:43:38.053408+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: fEnablePlaneRotation = 1, fittable = 1\
2024-03-15 23:43:38.053417+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Requesting VDT: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1024x768 PixelClock:142000000 ScalerFlags:0 SignalConfig:0 Requested pixel encoding 1 Colorimetry 1 dynamic range 1\
2024-03-15 23:43:38.053439+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Detailed timing validated by AGDC (response = 0x2)\
2024-03-15 23:43:38.053441+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1024x768 PixelClock:142000000 ScalerFlags:0 SignalConfig:0: Requested pixel encoding 1 dynamic range 1\
2024-03-15 23:43:38.053444+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: fEnablePlaneRotation = 1, fittable = 1\
2024-03-15 23:43:38.053454+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Requesting VDT: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1024x576 PixelClock:142000000 ScalerFlags:0 SignalConfig:0 Requested pixel encoding 1 Colorimetry 1 dynamic range 1\
2024-03-15 23:43:38.053476+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Detailed timing validated by AGDC (response = 0x2)\
2024-03-15 23:43:38.053477+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1024x576 PixelClock:142000000 ScalerFlags:0 SignalConfig:0: Requested pixel encoding 1 dynamic range 1\
2024-03-15 23:43:38.053480+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: fEnablePlaneRotation = 1, fittable = 1\
2024-03-15 23:43:38.053490+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Requesting VDT: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1280x720 PixelClock:142000000 ScalerFlags:0 SignalConfig:0 Requested pixel encoding 1 Colorimetry 1 dynamic range 1\
2024-03-15 23:43:38.053516+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Detailed timing validated by AGDC (response = 0x2)\
2024-03-15 23:43:38.053517+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1280x720 PixelClock:142000000 ScalerFlags:0 SignalConfig:0: Requested pixel encoding 1 dynamic range 1\
2024-03-15 23:43:38.053520+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: fEnablePlaneRotation = 1, fittable = 1\
2024-03-15 23:43:38.053530+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Requesting VDT: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1280x960 PixelClock:142000000 ScalerFlags:0 SignalConfig:0 Requested pixel encoding 1 Colorimetry 1 dynamic range 1\
2024-03-15 23:43:38.053552+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Detailed timing validated by AGDC (response = 0x2)\
2024-03-15 23:43:38.053554+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1280x960 PixelClock:142000000 ScalerFlags:0 SignalConfig:0: Requested pixel encoding 1 dynamic range 1\
2024-03-15 23:43:38.053557+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: fEnablePlaneRotation = 1, fittable = 1\
2024-03-15 23:43:38.053567+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Requesting VDT: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1280x720 PixelClock:142000000 ScalerFlags:0 SignalConfig:0 Requested pixel encoding 1 Colorimetry 1 dynamic range 1\
2024-03-15 23:43:38.053586+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Detailed timing validated by AGDC (response = 0x2)\
2024-03-15 23:43:38.053588+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1280x720 PixelClock:142000000 ScalerFlags:0 SignalConfig:0: Requested pixel encoding 1 dynamic range 1\
2024-03-15 23:43:38.053590+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: fEnablePlaneRotation = 1, fittable = 1\
2024-03-15 23:43:38.053597+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Requesting VDT: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1344x1008 PixelClock:142000000 ScalerFlags:0 SignalConfig:0 Requested pixel encoding 1 Colorimetry 1 dynamic range 1\
2024-03-15 23:43:38.053616+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Detailed timing validated by AGDC (response = 0x2)\
2024-03-15 23:43:38.053618+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1344x1008 PixelClock:142000000 ScalerFlags:0 SignalConfig:0: Requested pixel encoding 1 dynamic range 1\
2024-03-15 23:43:38.053623+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: fEnablePlaneRotation = 1, fittable = 1\
2024-03-15 23:43:38.053633+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Requesting VDT: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1344x756 PixelClock:142000000 ScalerFlags:0 SignalConfig:0 Requested pixel encoding 1 Colorimetry 1 dynamic range 1\
2024-03-15 23:43:38.053656+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Detailed timing validated by AGDC (response = 0x2)\
2024-03-15 23:43:38.053658+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1344x756 PixelClock:142000000 ScalerFlags:0 SignalConfig:0: Requested pixel encoding 1 dynamic range 1\
2024-03-15 23:43:38.053660+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: fEnablePlaneRotation = 1, fittable = 1\
2024-03-15 23:43:38.053669+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Requesting VDT: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1440x900 PixelClock:142000000 ScalerFlags:0 SignalConfig:0 Requested pixel encoding 1 Colorimetry 1 dynamic range 1\
2024-03-15 23:43:38.053689+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Detailed timing validated by AGDC (response = 0x2)\
2024-03-15 23:43:38.053690+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1440x900 PixelClock:142000000 ScalerFlags:0 SignalConfig:0: Requested pixel encoding 1 dynamic range 1\
2024-03-15 23:43:38.053692+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: fEnablePlaneRotation = 1, fittable = 1\
2024-03-15 23:43:38.053700+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Requesting VDT: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1680x1050 PixelClock:142000000 ScalerFlags:0 SignalConfig:0 Requested pixel encoding 1 Colorimetry 1 dynamic range 1\
2024-03-15 23:43:38.053722+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Detailed timing validated by AGDC (response = 0x2)\
2024-03-15 23:43:38.053723+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1680x1050 PixelClock:142000000 ScalerFlags:0 SignalConfig:0: Requested pixel encoding 1 dynamic range 1\
2024-03-15 23:43:38.053726+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: fEnablePlaneRotation = 1, fittable = 1\
2024-03-15 23:43:38.053736+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Requesting VDT: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1600x900 PixelClock:142000000 ScalerFlags:0 SignalConfig:0 Requested pixel encoding 1 Colorimetry 1 dynamic range 1\
2024-03-15 23:43:38.053755+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Detailed timing validated by AGDC (response = 0x2)\
2024-03-15 23:43:38.053757+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1600x900 PixelClock:142000000 ScalerFlags:0 SignalConfig:0: Requested pixel encoding 1 dynamic range 1\
2024-03-15 23:43:38.053759+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: fEnablePlaneRotation = 1, fittable = 1\
2024-03-15 23:43:38.053768+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Requesting VDT: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1920x1080 PixelClock:142000000 ScalerFlags:0 SignalConfig:0 Requested pixel encoding 1 Colorimetry 1 dynamic range 1\
2024-03-15 23:43:38.053791+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Detailed timing validated by AGDC (response = 0x2)\
2024-03-15 23:43:38.053792+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1920x1080 PixelClock:142000000 ScalerFlags:0 SignalConfig:0: Requested pixel encoding 1 dynamic range 1\
2024-03-15 23:43:38.053795+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: fEnablePlaneRotation = 1, fittable = 1\
2024-03-15 23:43:38.053802+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Requesting VDT: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1920x1200 PixelClock:142000000 ScalerFlags:0 SignalConfig:0 Requested pixel encoding 1 Colorimetry 1 dynamic range 1\
2024-03-15 23:43:38.053821+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Detailed timing validated by AGDC (response = 0x2)\
2024-03-15 23:43:38.053822+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:1920x1200 PixelClock:142000000 ScalerFlags:0 SignalConfig:0: Requested pixel encoding 1 dynamic range 1\
2024-03-15 23:43:38.053825+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: fEnablePlaneRotation = 1, fittable = 1\
2024-03-15 23:43:38.053833+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Requesting VDT: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:2560x1440 PixelClock:142000000 ScalerFlags:0 SignalConfig:0 Requested pixel encoding 1 Colorimetry 1 dynamic range 1\
2024-03-15 23:43:38.053853+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Detailed timing validated by AGDC (response = 0x2)\
2024-03-15 23:43:38.053854+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:2560x1440 PixelClock:142000000 ScalerFlags:0 SignalConfig:0: Requested pixel encoding 1 dynamic range 1\
2024-03-15 23:43:38.053857+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: fEnablePlaneRotation = 1, fittable = 1\
2024-03-15 23:43:38.053865+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Requesting VDT: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:2560x1600 PixelClock:142000000 ScalerFlags:0 SignalConfig:0 Requested pixel encoding 1 Colorimetry 1 dynamic range 1\
2024-03-15 23:43:38.053884+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Detailed timing validated by AGDC (response = 0x2)\
2024-03-15 23:43:38.053885+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: Online:1 Mode:0x80001000 Depth:1 Active:1920x1080 Scaled:2560x1600 PixelClock:142000000 ScalerFlags:0 SignalConfig:0: Requested pixel encoding 1 dynamic range 1\
2024-03-15 23:43:38.053888+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][VDT       ] FB1: fEnablePlaneRotation = 1, fittable = 1\
2024-03-15 23:43:38.054085+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0xfffffffb fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.054089+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Current hardware mode is set for active h=0, v=0 scaled h=0, v=0 pixelClock 0 scalerFlags 0signalConfig 0\
2024-03-15 23:43:38.054096+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][ERROR][DISPLAY   ] Not able to get the current timing info\
2024-03-15 23:43:38.058277+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0xfffffffb fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.058281+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Current hardware mode is set for active h=0, v=0 scaled h=0, v=0 pixelClock 0 scalerFlags 0signalConfig 0\
2024-03-15 23:43:38.058284+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][ERROR][DISPLAY   ] Not able to get the current timing info\
2024-03-15 23:43:38.058333+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] frameBufferNotificationcallback notification received on Fb 1 at time 60743397\
2024-03-15 23:43:38.058335+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] kIOFBNotifyDisplayModeWillChange notification received on fb 1\
2024-03-15 23:43:38.059575+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  Transaction  completed in 1 milliseconds\
2024-03-15 23:43:38.059588+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Reporting Fake VBL for pipe 0 on Fb 1\
2024-03-15 23:43:38.066407+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Reporting Fake VBL for pipe 0 on Fb 1\
2024-03-15 23:43:38.066439+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: displayMode=80001000, depth=0, fOnline=1\
2024-03-15 23:43:38.066448+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: fOnline=1 aw=1920, ah=1080, sw=0, sh=0, iw=0, ih=0 pixelClock=142000000 VBLextention=0 pixelEncoding=1 BPC=2 colorimetry=1 dynamicRange=1\
2024-03-15 23:43:38.066454+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: Set display mode for first boot\
2024-03-15 23:43:38.066500+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Computing transform\
2024-03-15 23:43:38.066502+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fFitterWidth = 0x0\
2024-03-15 23:43:38.066504+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkScanoutWidth = 0x780\
2024-03-15 23:43:38.066506+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkScanoutHeight = 0x438\
2024-03-15 23:43:38.066508+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkTimingWidth = 0x780\
2024-03-15 23:43:38.066510+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkTimingHeight = 0x438\
2024-03-15 23:43:38.066512+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkVerticalOffset = 0x0\
2024-03-15 23:43:38.066514+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkHorizontalOffset = 0x0\
2024-03-15 23:43:38.066517+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][INFO ][MODESET   ]  FB1: Setting hardware mode pipe A\
2024-03-15 23:43:38.066519+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][INFO ][MODESET   ]  FB1: Enable GPU sub sampling: True\
2024-03-15 23:43:38.066522+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] hwDisableUnderrunInterrupts:Disabling Underrun Interrupts\
2024-03-15 23:43:38.066529+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: Setting up clocks\
2024-03-15 23:43:38.066531+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting up clocks for DDI = 0\
2024-03-15 23:43:38.066534+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] (FB1:<private>, timing=<private>, params=<private>)\
2024-03-15 23:43:38.066537+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] timing ha=1920, va=1080\
2024-03-15 23:43:38.066539+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] timing hs=0, vs=0\
2024-03-15 23:43:38.066541+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] scalerFlags=0\
2024-03-15 23:43:38.066543+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] signalConfig=0\
2024-03-15 23:43:38.066544+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] vSyncConfig=0\
2024-03-15 23:43:38.066545+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] hSyncConfig=0\
2024-03-15 23:43:38.066547+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_HTOTAL     = 0x833077f\
2024-03-15 23:43:38.066549+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_HBLANK     = 0x833077f\
2024-03-15 23:43:38.066550+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_HSYNC      = 0x81b07eb\
2024-03-15 23:43:38.066552+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_VTOTAL     = 0x4650437\
2024-03-15 23:43:38.066553+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_VBLANK     = 0x4650437\
2024-03-15 23:43:38.066555+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_VSYNC      = 0x44b0441\
2024-03-15 23:43:38.066556+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_VSYNCSHIFT = 0x0\
2024-03-15 23:43:38.066558+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] FB1: setting up params for pipe A\
2024-03-15 23:43:38.066561+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] TRANS_CLK_SEL = 0x0\
2024-03-15 23:43:38.066562+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] PIPE_SRCSZ = 0x77f0437\
2024-03-15 23:43:38.066564+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] Encoder bits per color is 8\
2024-03-15 23:43:38.066565+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] Pixel encoding is RGB\
2024-03-15 23:43:38.066567+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] TRANS_MSA_MISC = 0x21\
2024-03-15 23:43:38.066569+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] Dither is enabled in pipe misc\
2024-03-15 23:43:38.066572+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: pixelClock=142000000, linkSymbolClock=270000000, colorDepth=24, noLanes=2\
2024-03-15 23:43:38.066577+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] DataM value: 0x64fa4f\
2024-03-15 23:43:38.066578+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] LinkM value: 0x43518\
2024-03-15 23:43:38.066580+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Calculated -> DataM1=0x7e64fa4f, DataN1=0x800000, LinkM1=0x43518, LinkN1=0x80000\
2024-03-15 23:43:38.066584+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] TRANS_CONF 0->0x80000024, TRANS_DDI_FUNC_CTL 0->0x82000002\
2024-03-15 23:43:38.066587+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] FB1: Change in h/w environment, needs full modeset for pipe 0\
2024-03-15 23:43:38.066590+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] Panel Fitter Enable OFF->OFF\
2024-03-15 23:43:38.066596+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] PLANE_STRIDE 0x78->0xf\
2024-03-15 23:43:38.066599+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] FB1: Partial modeset by updating scaler\
2024-03-15 23:43:38.066618+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] hwEnableUnderrunInterrupts: Enabling underrun interrupts\
2024-03-15 23:43:38.066624+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] FB1: Setting display mode 1920 x 1080 -> 0 x 0 at 142000000 Hz encoded with 0x1 2 bpc with color 1 and range 1\
2024-03-15 23:43:38.066655+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.066658+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.066946+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] frameBufferNotificationcallback notification received on Fb 1 at time 60752011\
2024-03-15 23:43:38.066949+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] kIOFBNotifyDisplayModeDidChange notification received on fb 1\
2024-03-15 23:43:38.066952+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] TxnHang1: FB1: FrameBufferNotificationCallback received. Event = 2. fTransactionState = kTransComplete, fLiveState = kTransLive\
2024-03-15 23:43:38.066956+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Reporting Fake VBL for pipe 0 on Fb 1\
2024-03-15 23:43:38.066969+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.066972+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.070252+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.070256+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.070315+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.070318+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.070382+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.070385+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.070944+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.070949+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.071691+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.071696+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.072889+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:38.073171+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:38.073225+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:43:38.073969+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:38.075746+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.075752+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.076220+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.076224+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.076275+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.076277+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.076284+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] frameBufferNotificationcallback notification received on Fb 1 at time 60761349\
2024-03-15 23:43:38.076287+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] kIOFBNotifyDisplayModeWillChange notification received on fb 1\
2024-03-15 23:43:38.077448+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Reporting Fake VBL for pipe 0 on Fb 1\
2024-03-15 23:43:38.077482+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: displayMode=80001000, depth=0, fOnline=1\
2024-03-15 23:43:38.077487+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: fOnline=1 aw=1920, ah=1080, sw=0, sh=0, iw=0, ih=0 pixelClock=142000000 VBLextention=0 pixelEncoding=1 BPC=2 colorimetry=1 dynamicRange=1\
2024-03-15 23:43:38.077530+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Computing transform\
2024-03-15 23:43:38.077531+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fFitterWidth = 0x0\
2024-03-15 23:43:38.077533+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkScanoutWidth = 0x780\
2024-03-15 23:43:38.077535+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkScanoutHeight = 0x438\
2024-03-15 23:43:38.077537+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkTimingWidth = 0x780\
2024-03-15 23:43:38.077538+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkTimingHeight = 0x438\
2024-03-15 23:43:38.077540+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkVerticalOffset = 0x0\
2024-03-15 23:43:38.077542+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkHorizontalOffset = 0x0\
2024-03-15 23:43:38.077544+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][INFO ][MODESET   ]  FB1: Setting hardware mode pipe A\
2024-03-15 23:43:38.077546+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][INFO ][MODESET   ]  FB1: Enable GPU sub sampling: True\
2024-03-15 23:43:38.077549+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] hwDisableUnderrunInterrupts:Disabling Underrun Interrupts\
2024-03-15 23:43:38.077555+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: Setting up clocks\
2024-03-15 23:43:38.077563+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting up clocks for DDI = 0\
2024-03-15 23:43:38.077569+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] (FB1:<private>, timing=<private>, params=<private>)\
2024-03-15 23:43:38.077571+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] timing ha=1920, va=1080\
2024-03-15 23:43:38.077573+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] timing hs=0, vs=0\
2024-03-15 23:43:38.077574+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] scalerFlags=0\
2024-03-15 23:43:38.077576+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] signalConfig=0\
2024-03-15 23:43:38.077577+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] vSyncConfig=0\
2024-03-15 23:43:38.077578+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] hSyncConfig=0\
2024-03-15 23:43:38.077579+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_HTOTAL     = 0x833077f\
2024-03-15 23:43:38.077581+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_HBLANK     = 0x833077f\
2024-03-15 23:43:38.077582+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_HSYNC      = 0x81b07eb\
2024-03-15 23:43:38.077584+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_VTOTAL     = 0x4650437\
2024-03-15 23:43:38.077585+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_VBLANK     = 0x4650437\
2024-03-15 23:43:38.077586+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_VSYNC      = 0x44b0441\
2024-03-15 23:43:38.077588+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_VSYNCSHIFT = 0x0\
2024-03-15 23:43:38.077590+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] FB1: setting up params for pipe A\
2024-03-15 23:43:38.077592+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] TRANS_CLK_SEL = 0x0\
2024-03-15 23:43:38.077593+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] PIPE_SRCSZ = 0x77f0437\
2024-03-15 23:43:38.077594+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] Encoder bits per color is 8\
2024-03-15 23:43:38.077596+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] Pixel encoding is RGB\
2024-03-15 23:43:38.077597+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] TRANS_MSA_MISC = 0x21\
2024-03-15 23:43:38.077599+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] Dither is enabled in pipe misc\
2024-03-15 23:43:38.077601+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: pixelClock=142000000, linkSymbolClock=270000000, colorDepth=24, noLanes=2\
2024-03-15 23:43:38.077605+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] DataM value: 0x64fa4f\
2024-03-15 23:43:38.077607+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] LinkM value: 0x43518\
2024-03-15 23:43:38.077608+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Calculated -> DataM1=0x7e64fa4f, DataN1=0x800000, LinkM1=0x43518, LinkN1=0x80000\
2024-03-15 23:43:38.077611+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] Panel Fitter Enable OFF->OFF\
2024-03-15 23:43:38.077613+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] FB1: Partial modeset by updating plane\
2024-03-15 23:43:38.077624+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] hwEnableUnderrunInterrupts: Enabling underrun interrupts\
2024-03-15 23:43:38.077629+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] FB1: Setting display mode 1920 x 1080 -> 0 x 0 at 142000000 Hz encoded with 0x1 2 bpc with color 1 and range 1\
2024-03-15 23:43:38.077654+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.077657+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.077909+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] frameBufferNotificationcallback notification received on Fb 1 at time 60762973\
2024-03-15 23:43:38.077912+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] kIOFBNotifyDisplayModeDidChange notification received on fb 1\
2024-03-15 23:43:38.077913+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] TxnHang1: FB1: FrameBufferNotificationCallback received. Event = 2. fTransactionState = kTransComplete, fLiveState = kTransLive\
2024-03-15 23:43:38.077917+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Reporting Fake VBL for pipe 0 on Fb 1\
2024-03-15 23:43:38.081354+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:38.081735+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:38.081791+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:43:38.082732+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:38.087664+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:38.098504+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.098510+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.098839+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.098842+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.099616+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.099619+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.099634+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.099635+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.099888+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.099890+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.100306+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.100308+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.100649+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.100651+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.100920+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.100922+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.102025+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.102029+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.226032+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.226036+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.226064+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] frameBufferNotificationcallback notification received on Fb 1 at time 60911129\
2024-03-15 23:43:38.226067+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] kIOFBNotifyDisplayModeWillChange notification received on fb 1\
2024-03-15 23:43:38.227294+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Reporting Fake VBL for pipe 0 on Fb 1\
2024-03-15 23:43:38.227307+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: displayMode=80001000, depth=0, fOnline=1\
2024-03-15 23:43:38.227313+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: fOnline=1 aw=1920, ah=1080, sw=0, sh=0, iw=0, ih=0 pixelClock=142000000 VBLextention=0 pixelEncoding=1 BPC=2 colorimetry=1 dynamicRange=1\
2024-03-15 23:43:38.227341+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Computing transform\
2024-03-15 23:43:38.227342+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fFitterWidth = 0x0\
2024-03-15 23:43:38.227343+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkScanoutWidth = 0x780\
2024-03-15 23:43:38.227344+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkScanoutHeight = 0x438\
2024-03-15 23:43:38.227345+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkTimingWidth = 0x780\
2024-03-15 23:43:38.227345+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkTimingHeight = 0x438\
2024-03-15 23:43:38.227346+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkVerticalOffset = 0x0\
2024-03-15 23:43:38.227347+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Pipe A: displayPath->fLinkHorizontalOffset = 0x0\
2024-03-15 23:43:38.227348+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][INFO ][MODESET   ]  FB1: Setting hardware mode pipe A\
2024-03-15 23:43:38.227350+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][INFO ][MODESET   ]  FB1: Enable GPU sub sampling: True\
2024-03-15 23:43:38.227351+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] hwDisableUnderrunInterrupts:Disabling Underrun Interrupts\
2024-03-15 23:43:38.227355+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: Setting up clocks\
2024-03-15 23:43:38.227355+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting up clocks for DDI = 0\
2024-03-15 23:43:38.227357+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] (FB1:<private>, timing=<private>, params=<private>)\
2024-03-15 23:43:38.227358+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] timing ha=1920, va=1080\
2024-03-15 23:43:38.227359+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] timing hs=0, vs=0\
2024-03-15 23:43:38.227359+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] scalerFlags=0\
2024-03-15 23:43:38.227360+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] signalConfig=0\
2024-03-15 23:43:38.227361+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] vSyncConfig=0\
2024-03-15 23:43:38.227361+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] hSyncConfig=0\
2024-03-15 23:43:38.227362+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_HTOTAL     = 0x833077f\
2024-03-15 23:43:38.227363+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_HBLANK     = 0x833077f\
2024-03-15 23:43:38.227364+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_HSYNC      = 0x81b07eb\
2024-03-15 23:43:38.227364+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_VTOTAL     = 0x4650437\
2024-03-15 23:43:38.227365+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_VBLANK     = 0x4650437\
2024-03-15 23:43:38.227366+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_VSYNC      = 0x44b0441\
2024-03-15 23:43:38.227366+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ]  TRANS_VSYNCSHIFT = 0x0\
2024-03-15 23:43:38.227367+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] FB1: setting up params for pipe A\
2024-03-15 23:43:38.227368+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] TRANS_CLK_SEL = 0x0\
2024-03-15 23:43:38.227369+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] PIPE_SRCSZ = 0x77f0437\
2024-03-15 23:43:38.227370+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] Encoder bits per color is 8\
2024-03-15 23:43:38.227370+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] Pixel encoding is RGB\
2024-03-15 23:43:38.227371+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] TRANS_MSA_MISC = 0x21\
2024-03-15 23:43:38.227372+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] Dither is enabled in pipe misc\
2024-03-15 23:43:38.227373+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1: pixelClock=142000000, linkSymbolClock=270000000, colorDepth=24, noLanes=2\
2024-03-15 23:43:38.227376+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] DataM value: 0x64fa4f\
2024-03-15 23:43:38.227377+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] LinkM value: 0x43518\
2024-03-15 23:43:38.227378+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Calculated -> DataM1=0x7e64fa4f, DataN1=0x800000, LinkM1=0x43518, LinkN1=0x80000\
2024-03-15 23:43:38.227380+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] Panel Fitter Enable OFF->OFF\
2024-03-15 23:43:38.227381+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] FB1: Partial modeset by updating plane\
2024-03-15 23:43:38.227387+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] hwEnableUnderrunInterrupts: Enabling underrun interrupts\
2024-03-15 23:43:38.227390+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][MODESET   ] FB1: Setting display mode 1920 x 1080 -> 0 x 0 at 142000000 Hz encoded with 0x1 2 bpc with color 1 and range 1\
2024-03-15 23:43:38.227411+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.227412+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.227569+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] frameBufferNotificationcallback notification received on Fb 1 at time 60912633\
2024-03-15 23:43:38.227570+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] kIOFBNotifyDisplayModeDidChange notification received on fb 1\
2024-03-15 23:43:38.227571+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] TxnHang1: FB1: FrameBufferNotificationCallback received. Event = 2. fTransactionState = kTransComplete, fLiveState = kTransLive\
2024-03-15 23:43:38.227573+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Reporting Fake VBL for pipe 0 on Fb 1\
2024-03-15 23:43:38.262275+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.262285+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.266855+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.266860+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.267362+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.267364+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.267592+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] getCurrentDisplayMode: FB=1 fCurrentMode = 0x80001000 fCurrentDepth = 0, fBootDisplay = 1.\
2024-03-15 23:43:38.267594+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Setting current mode to 0x80001000 and depth=0, bPortraitMode 0, bAnotherRun 0.\
2024-03-15 23:43:38.285216+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:43:38.285311+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:38.285324+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:43:38.286334+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:43:38.286340+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:43:38.286343+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:43:38.286351+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:43:38.286352+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:43:38.286355+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:43:38.286452+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:43:38.286454+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:43:38.287344+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:43:38.287348+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:43:38.287455+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:43:38.287457+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:43:38.949144+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:43:38.949150+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:43:39.479148+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:43:39.479273+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:39.479282+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:43:39.480071+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:43:39.480075+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:43:39.480078+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:43:39.480082+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:43:39.480083+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:43:39.480084+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:43:39.480172+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:43:39.480173+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:43:39.480754+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:43:39.480757+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:43:39.480840+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:43:39.480843+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:43:40.885918+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:43:40.885926+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:43:41.427760+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][ERROR][DISPLAY   ] Display Pipe Underrun occurred on pipe(s) A\
2024-03-15 23:43:41.427778+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][ERROR][DISPLAY   ] Display pipe underrun occurred on pipe(s) A\
2024-03-15 23:43:41.443730+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] FB1: Setting gamma ramp of 1024 points as below with transaction state 0\
2024-03-15 23:43:41.443743+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] Red Channel : 0 ... 341 ... 682 ... 1023\
2024-03-15 23:43:41.443747+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] Green Channel : 0 ... 341 ... 682 ... 1023\
2024-03-15 23:43:41.443749+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] Blue Channel : 0 ... 341 ... 682 ... 1023\
2024-03-15 23:43:42.011870+0000  localhost kernel[0]: (Sandbox) Sandbox: com.apple.quicklook.ThumbnailsA(409) deny(1) file-read-xattr /Users/mr/Downloads/AppleIntelICLLPGraphicsFramebuffer.kext\
2024-03-15 23:43:42.050469+0000  localhost kernel[0]: (Sandbox) Sandbox: com.apple.quicklook.ThumbnailsA(409) deny(1) file-read-data /Users/mr/Downloads/AppleIntelICLLPGraphicsFramebuffer.kext\
2024-03-15 23:43:48.404388+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] FB1: Setting gamma ramp of 1024 points as below with transaction state 0\
2024-03-15 23:43:48.404393+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] Red Channel : 0 ... 341 ... 682 ... 1023\
2024-03-15 23:43:48.404394+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] Green Channel : 0 ... 341 ... 682 ... 1023\
2024-03-15 23:43:48.404395+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] Blue Channel : 0 ... 341 ... 682 ... 1023\
2024-03-15 23:43:48.421355+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] FB1: Setting gamma ramp of 1024 points as below with transaction state 0\
2024-03-15 23:43:48.421365+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] Red Channel : 0 ... 341 ... 682 ... 1023\
2024-03-15 23:43:48.421368+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] Green Channel : 0 ... 341 ... 682 ... 1023\
2024-03-15 23:43:48.421370+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] Blue Channel : 0 ... 341 ... 682 ... 1023\
2024-03-15 23:43:49.221448+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] FB1: Setting gamma ramp of 1024 points as below with transaction state 0\
2024-03-15 23:43:49.221463+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] Red Channel : 0 ... 341 ... 682 ... 1023\
2024-03-15 23:43:49.221470+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] Green Channel : 0 ... 341 ... 682 ... 1023\
2024-03-15 23:43:49.221474+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] Blue Channel : 0 ... 341 ... 682 ... 1023\
2024-03-15 23:43:49.757136+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:43:49.757197+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:49.757205+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:43:49.758164+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:43:49.758169+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:43:49.758174+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:43:49.758183+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:43:49.758185+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:43:49.758188+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:43:49.758353+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:43:49.758356+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:43:49.759271+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:43:49.759276+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:43:49.759356+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:43:49.759359+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:43:50.202824+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] FB1: Setting gamma ramp of 1024 points as below with transaction state 0\
2024-03-15 23:43:50.202840+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] Red Channel : 0 ... 341 ... 682 ... 1023\
2024-03-15 23:43:50.202846+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] Green Channel : 0 ... 341 ... 682 ... 1023\
2024-03-15 23:43:50.202851+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][TRANSACTION] [Gamma_Transaction] Blue Channel : 0 ... 341 ... 682 ... 1023\
2024-03-15 23:43:50.416509+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:43:50.416524+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:43:59.936522+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:43:59.936554+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:43:59.936559+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:43:59.937101+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:43:59.937104+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:43:59.937107+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:43:59.937112+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:43:59.937113+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:43:59.937115+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:43:59.937196+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:43:59.937198+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:43:59.937674+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:43:59.937676+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:43:59.937719+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:43:59.937720+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:44:00.592534+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:44:00.592549+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:44:10.064436+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:44:10.064496+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:44:10.064501+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:44:10.065410+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:44:10.065421+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:44:10.065425+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:44:10.065430+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:44:10.065432+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:44:10.065434+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:44:10.065572+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:44:10.065574+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:44:10.066169+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:44:10.066172+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:44:10.066224+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:44:10.066226+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:44:10.645150+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:44:10.645157+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:44:20.134575+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:44:20.134615+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:44:20.134620+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:44:20.135256+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:44:20.135260+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:44:20.135263+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:44:20.135270+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:44:20.135271+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:44:20.135273+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:44:20.135370+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:44:20.135372+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:44:20.135941+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:44:20.135943+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:44:20.135994+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:44:20.135995+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:44:20.708763+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:44:20.708775+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:44:30.189389+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:44:30.189468+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:44:30.189475+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:44:30.190248+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:44:30.190252+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:44:30.190256+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:44:30.190262+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:44:30.190264+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:44:30.190266+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:44:30.190378+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:44:30.190380+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:44:30.191034+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:44:30.191037+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:44:30.191094+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:44:30.191096+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:44:30.707648+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:44:30.707653+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:44:40.185235+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:44:40.185262+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:44:40.185266+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:44:40.185987+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:44:40.185993+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:44:40.185997+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:44:40.186004+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:44:40.186006+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:44:40.186008+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:44:40.186114+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:44:40.186116+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:44:40.186819+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:44:40.186822+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:44:40.186928+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:44:40.186931+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:44:40.735567+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:44:40.735575+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:44:50.209754+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:44:50.209798+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:44:50.209804+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:44:50.210527+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:44:50.210531+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:44:50.210534+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:44:50.210540+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:44:50.210541+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:44:50.210544+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:44:50.210647+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:44:50.210648+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:44:50.211226+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:44:50.211229+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:44:50.211281+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:44:50.211283+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:44:50.730777+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:44:50.730784+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:45:01.218456+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:45:01.218530+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:45:01.218541+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:45:01.219808+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:01.219816+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:45:01.219822+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:45:01.219835+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:01.219837+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:45:01.219842+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:45:01.220066+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:01.220072+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:45:01.221388+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:45:01.221394+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:45:01.221500+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:45:01.221503+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:45:01.740722+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:45:01.740729+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:45:11.221073+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:45:11.221114+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:45:11.221119+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:45:11.221778+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:11.221782+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:45:11.221786+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:45:11.221792+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:11.221793+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:45:11.221795+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:45:11.221909+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:11.221917+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:45:11.222532+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:45:11.222536+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:45:11.222589+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:45:11.222591+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:45:11.773671+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:45:11.773677+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:45:21.290687+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:45:21.290767+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:45:21.290778+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:45:21.292258+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:21.292267+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:45:21.292273+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:45:21.292285+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:21.292288+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:45:21.292292+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:45:21.292503+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:21.292506+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:45:21.293661+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:45:21.293666+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:45:21.293768+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:45:21.293772+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:45:21.898853+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:45:21.898858+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:45:31.385997+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:45:31.386123+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:45:31.386133+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:45:31.387296+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:31.387302+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:45:31.387307+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:45:31.387317+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:31.387319+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:45:31.387322+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:45:31.387489+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:31.387491+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:45:31.388414+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:45:31.388418+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:45:31.388497+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:45:31.388500+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:45:31.921528+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:45:31.921533+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:45:41.419810+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:45:41.419862+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:45:41.419868+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:45:41.420969+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:41.420975+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:45:41.420981+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:45:41.420993+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:41.420996+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:45:41.421001+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:45:41.421180+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:41.421183+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:45:41.422349+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:45:41.422355+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:45:41.422455+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:45:41.422458+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:45:41.968476+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:45:41.968483+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:45:51.473477+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:45:51.473571+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:45:51.473585+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:45:51.475026+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:51.475033+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:45:51.475038+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:45:51.475051+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:51.475053+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:45:51.475057+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:45:51.475257+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:45:51.475261+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:45:51.476440+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:45:51.476445+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:45:51.476535+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:45:51.476538+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:45:52.053014+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:45:52.053020+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:46:01.524317+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:46:01.524357+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:46:01.524363+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:46:01.525030+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:01.525034+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:46:01.525038+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:46:01.525044+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:01.525045+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:46:01.525047+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:46:01.525151+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:01.525153+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:46:01.525743+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:46:01.525746+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:46:01.525811+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:46:01.525812+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:46:02.173118+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:46:02.173139+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:46:11.668169+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:46:11.668247+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:46:11.668258+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:46:11.669548+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:11.669555+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:46:11.669561+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:46:11.669574+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:11.669576+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:46:11.669580+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:46:11.669787+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:11.669791+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:46:11.671203+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:46:11.671211+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:46:11.671326+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:46:11.671329+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:46:12.209098+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:46:12.209105+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:46:21.718491+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:46:21.718530+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:46:21.718535+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:46:21.719180+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:21.719187+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:46:21.719191+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:46:21.719196+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:21.719197+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:46:21.719199+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:46:21.719326+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:21.719328+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:46:21.719879+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:46:21.719882+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:46:21.719929+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:46:21.719930+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:46:22.322535+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:46:22.322547+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:46:31.818553+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:46:31.818626+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:46:31.818636+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:46:31.820149+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:31.820156+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:46:31.820161+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:46:31.820173+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:31.820176+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:46:31.820180+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:46:31.820373+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:31.820377+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:46:31.821454+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:46:31.821459+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:46:31.821526+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:46:31.821528+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:46:32.365256+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:46:32.365261+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:46:41.857201+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:46:41.857247+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:46:41.857252+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:46:41.858359+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:41.858372+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:46:41.858378+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:46:41.858420+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:41.858427+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:46:41.858432+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:46:41.858605+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:41.858608+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:46:41.860345+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:46:41.860349+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:46:41.860448+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:46:41.860450+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:46:42.537749+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:46:42.537756+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:46:52.017436+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:46:52.017480+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:46:52.017486+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:46:52.018496+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:52.018508+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:46:52.018511+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:46:52.018526+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:52.018527+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:46:52.018529+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:46:52.018711+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:46:52.018712+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:46:52.019516+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:46:52.019520+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:46:52.019577+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:46:52.019579+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:46:52.649447+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:46:52.649466+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:47:02.158698+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:47:02.158788+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:47:02.158800+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:47:02.160098+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:02.160105+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:47:02.160111+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:47:02.160123+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:02.160126+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:47:02.160137+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:47:02.160330+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:02.160334+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:47:02.161635+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:47:02.161642+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:47:02.161762+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:47:02.161766+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:47:02.791831+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:47:02.791842+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:47:04.585786+0000  localhost kernel[0]: (Sandbox) Sandbox: com.apple.quicklook.ThumbnailsA(409) deny(1) file-read-xattr /Users/mr/Downloads/AppleIntelICLLPGraphicsFramebuffer.kext\
2024-03-15 23:47:04.587132+0000  localhost kernel[0]: (Sandbox) Sandbox: com.apple.quicklook.ThumbnailsA(409) deny(1) file-read-data /Users/mr/Downloads/AppleIntelICLLPGraphicsFramebuffer.kext\
2024-03-15 23:47:12.269901+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:47:12.269937+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:47:12.269942+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:47:12.270560+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:12.270564+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:47:12.270568+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:47:12.270575+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:12.270577+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:47:12.270580+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:47:12.270764+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:12.270772+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:47:12.271932+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:47:12.271938+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:47:12.272130+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:47:12.272136+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:47:12.841988+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:47:12.842001+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:47:22.344429+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:47:22.344542+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:47:22.344551+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:47:22.345674+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:22.345683+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:47:22.345689+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:47:22.345703+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:22.345706+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:47:22.345710+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:47:22.345870+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:22.345873+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:47:22.347193+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:47:22.347199+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:47:22.347294+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:47:22.347297+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:47:22.948502+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:47:22.948517+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:47:32.473572+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:47:32.473736+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:47:32.473779+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:47:32.476877+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:32.476887+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:47:32.476895+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:47:32.476913+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:32.476917+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:47:32.476923+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:47:32.477202+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:32.477207+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:47:32.479220+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:47:32.479240+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:47:32.479551+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:47:32.479557+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:47:33.105266+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:47:33.105286+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:47:42.597880+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:47:42.597920+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:47:42.597988+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:47:42.598834+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:42.598838+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:47:42.598841+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:47:42.598847+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:42.598850+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:47:42.598853+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:47:42.599105+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:42.599110+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:47:42.600357+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:47:42.600363+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:47:42.600425+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:47:42.600427+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:47:43.218173+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:47:43.218190+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:47:52.724390+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get callback caps\
2024-03-15 23:47:52.724501+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Vendor info\
2024-03-15 23:47:52.724522+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get GPU caps\
2024-03-15 23:47:52.726009+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:52.726016+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB0 fOnline = 0 bootdisplay = 0\
2024-03-15 23:47:52.726023+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB0 reported as online to AGDC\
2024-03-15 23:47:52.726037+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:52.726040+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB1 fOnline = 1 bootdisplay = 1\
2024-03-15 23:47:52.726045+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] FB1 reported as online to AGDC\
2024-03-15 23:47:52.726288+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get link config\
2024-03-15 23:47:52.726292+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] AGDC FB2 fOnline = 0 bootdisplay = 0\
2024-03-15 23:47:52.727953+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Port enable\
2024-03-15 23:47:52.727962+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Port Enable for port index 0 with state = 1\
2024-03-15 23:47:52.728128+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:47:52.728132+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\
2024-03-15 23:47:53.308604+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][AGDC      ] Get port caps\
2024-03-15 23:47:53.308624+0000  localhost kernel[0]: (AppleIntelICLLPGraphicsFramebuffer) [IGFB][LOG  ][DISPLAY   ] Getting port caps for port 0\

 

accel log

 

2024-03-16 00:35:59.879389+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] virtual IOService *IntelAccelerator::probe(IOService *, SInt32 *): Found device with ID 0x9a498086, revision 0x1, PCH id 0x0, PCH rev 0x0 at PCI 0:2:0
2024-03-16 00:35:59.879395+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] virtual IOService *IntelAccelerator::probe(IOService *, SInt32 *): Found device with ID 0x9a498086, revision 0x1, PCH id 0x0, PCH rev 0x0 at PCI 0:2:0
2024-03-16 00:36:09.919415+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Detecting Pre-Si/Si Mode ... [Si]
2024-03-16 00:36:09.919424+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Detecting Pre-Si/Si Mode ... [Si]
2024-03-16 00:36:10.166010+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - GPU Sku: 9
2024-03-16 00:36:10.166015+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - GPU Sku: 9
2024-03-16 00:36:10.166015+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - VEDBOXEnableFuses:0x10005  VEBox units enabled:1   VDBox units enabled:2
2024-03-16 00:36:10.166017+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - VEDBOXEnableFuses:0x10005  VEBox units enabled:1   VDBox units enabled:2
2024-03-16 00:36:10.166018+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - NumSlices:1      SliceCountFuse:0x1
2024-03-16 00:36:10.166020+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - NumSlices:1      SliceCountFuse:0x1
2024-03-16 00:36:10.166020+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - NumSubSlices:27   SubSliceCountFuse:0x1f
2024-03-16 00:36:10.166022+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - NumSubSlices:27   SubSliceCountFuse:0x1f
2024-03-16 00:36:10.166027+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - MaxEUPerSubSlice:8   EUDisableFuses:0x0  ExecutionUnitCount:216
2024-03-16 00:36:10.166029+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - MaxEUPerSubSlice:8   EUDisableFuses:0x0  ExecutionUnitCount:216
2024-03-16 00:36:10.166030+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - ERROR: GPU Sku (9) is invalid for 2 Slices x 8 SubSlice configuration!
2024-03-16 00:36:10.166032+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - ERROR: GPU Sku (9) is invalid for 2 Slices x 8 SubSlice configuration!
2024-03-16 00:36:10.166032+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - TEMP HACK: Forcing GPU Sku to 1
2024-03-16 00:36:10.166033+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - TEMP HACK: Forcing GPU Sku to 1
2024-03-16 00:36:10.166034+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - GPU Sku: ICL GT2 HP
2024-03-16 00:36:10.166035+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - GPU Sku: ICL GT2 HP
2024-03-16 00:36:10.166035+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - L3BankCount: 8
2024-03-16 00:36:10.166036+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] HWCAPS - L3BankCount: 8
2024-03-16 00:36:10.166291+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Ring Size: 32 KB
2024-03-16 00:36:10.166293+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Ring Size: 32 KB
2024-03-16 00:36:10.166302+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Graphics Scheduler Preemption Enabled!
2024-03-16 00:36:10.166303+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Graphics Scheduler Preemption Enabled!
2024-03-16 00:36:10.166304+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Setting preemptionDelayIntervalUS to 160 microseconds
2024-03-16 00:36:10.166305+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Setting preemptionDelayIntervalUS to 160 microseconds
2024-03-16 00:36:10.166306+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Setting preemptionTimerIntervalUS to 2000 microseconds
2024-03-16 00:36:10.166307+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Setting preemptionTimerIntervalUS to 2000 microseconds
2024-03-16 00:36:10.166308+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Will NOT fallback to host-side scheduling if graphics firmware fails to load
2024-03-16 00:36:10.166309+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Will NOT fallback to host-side scheduling if graphics firmware fails to load
2024-03-16 00:36:10.166310+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler Tail Coalescing Enabled.
2024-03-16 00:36:10.166311+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler Tail Coalescing Enabled.
2024-03-16 00:36:10.166311+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler Page Fault Handling Enabled.
2024-03-16 00:36:10.166312+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler Page Fault Handling Enabled.
2024-03-16 00:36:10.166312+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler Single Channel Index Disabled
2024-03-16 00:36:10.166313+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler Single Channel Index Disabled
2024-03-16 00:36:10.166314+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler Channel Wait For Complete Disabled
2024-03-16 00:36:10.166315+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler Channel Wait For Complete Disabled
2024-03-16 00:36:10.166316+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler: Process CSB using HWS.
2024-03-16 00:36:10.166317+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler: Process CSB using HWS.
2024-03-16 00:36:10.166318+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler: PM notify enabled
2024-03-16 00:36:10.166319+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler: PM notify enabled
2024-03-16 00:36:10.166323+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Selected Apple Firmware Scheduler
2024-03-16 00:36:10.166324+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Selected Apple Firmware Scheduler
2024-03-16 00:36:10.181834+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Detecting Emulator Mode ... [False]
2024-03-16 00:36:10.181837+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Detecting Emulator Mode ... [False]
2024-03-16 00:36:10.181841+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler: Multiple channel indexes per command streamer
2024-03-16 00:36:10.181843+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler: Multiple channel indexes per command streamer
2024-03-16 00:36:10.181843+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler: Process CSB using HWS.
2024-03-16 00:36:10.181844+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler: Process CSB using HWS.
2024-03-16 00:36:10.181845+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler: PM notify enabled
2024-03-16 00:36:10.181846+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Scheduler: PM notify enabled
2024-03-16 00:36:10.181847+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Graphics Address: PPGTT, Separate Address Space
2024-03-16 00:36:10.181848+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Graphics Address: PPGTT, Separate Address Space
2024-03-16 00:36:10.181848+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] MultiForceWake Enabled: Using 3D Driver
2024-03-16 00:36:10.181849+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] MultiForceWake Enabled: Using 3D Driver
2024-03-16 00:36:10.181850+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] POSH Disabled
2024-03-16 00:36:10.181851+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] POSH Disabled
2024-03-16 00:36:10.181851+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Render Compression Enabled.
2024-03-16 00:36:10.181852+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Render Compression Enabled.
2024-03-16 00:36:10.181852+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Render Compression for IOSurface is Enabled.
2024-03-16 00:36:10.181853+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Render Compression for IOSurface is Enabled.
2024-03-16 00:36:10.188184+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Begin Gfx firmware load process
2024-03-16 00:36:10.188186+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Begin Gfx firmware load process
2024-03-16 00:36:10.188188+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU]    ForceWake Multithread = 0x30002
2024-03-16 00:36:10.188190+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU]    ForceWake Multithread = 0x30002
2024-03-16 00:36:10.188192+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU]    CONFIG0 (0xD00)       = 0x80000014
2024-03-16 00:36:10.188194+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU]    CONFIG0 (0xD00)       = 0x80000014
2024-03-16 00:36:10.188195+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU]    GT_THREAD_STATUS      = 0x40030000
2024-03-16 00:36:10.188196+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU]    GT_THREAD_STATUS      = 0x40030000
2024-03-16 00:36:10.188197+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU]    Doing retry #0
2024-03-16 00:36:10.188198+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU]    Doing retry #0
2024-03-16 00:36:11.967529+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Graphics Firmware Version: 0.0.0.0
2024-03-16 00:36:11.967559+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Graphics Firmware Version: 0.0.0.0
2024-03-16 00:36:11.967619+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Failed to load graphics firmware binary, STATUS = 0x840000EC
2024-03-16 00:36:11.967639+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Failed to load graphics firmware binary, STATUS = 0x840000EC
2024-03-16 00:36:11.967901+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Failed to initialize graphics firmware.
2024-03-16 00:36:11.967926+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Failed to initialize graphics firmware.
2024-03-16 00:36:11.967955+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Failed to start graphics engine
2024-03-16 00:36:11.967960+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Failed to start graphics engine
2024-03-16 00:36:11.967980+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Request to send Host -> Gfx firmware message when the firmware channel is not active!
2024-03-16 00:36:11.967988+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Request to send Host -> Gfx firmware message when the firmware channel is not active!
2024-03-16 00:36:11.967992+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Failed to send wait-for-idle request to firmware
2024-03-16 00:36:11.967997+0000  localhost kernel[0]: (AppleIntelICLGraphics) [IGPU] Failed to send wait-for-idle request to firmware

 

this patches were tested on ventura 13.3 maybe they need update for latest ventura

Edited by jalavoui
  • Thanks 1
Link to comment
Share on other sites

  • 1 month later...
Posted (edited)

@jalavoui Thank you for the NootedBlue modification and help. 🙂 
Previously, macOS was deleted on my Tiger Lake laptop, so I just installed the macOS Ventura 13.6.5 version and tested it by applying the NootedBlue you attached.


Test 1
- WhenverGreen : Disabled
- IGPU Device Properties : do not inject
- boot-args : -nbluedbg

 

image.thumb.jpeg.e5540720202da12651ab6230a370a122.jpeg

 

Result : Stopped during boot
Perhaps, an Unsupported CD Clock Frequency kernel panic has occurred.


Test 2
- WhenverGreen : Disabled
- IGPU Device Properties : do not inject
- boot-args : -nbluedbg -allow3d

 

image.thumb.jpeg.82ca8ee74080254c4e7486d3df370b4c.jpeg

 

Result : Stopped during boot
It is presumed that Unsupported CD Clock Frequency kernel panic occurred the same as Test1 result.


Test 3
- WhenverGreen : Enabled
- IGPU Device Properties : do not inject
- boot-args : -nbluedbg -igfxcdc


Results : Boot success, black screen issues have been resolved.
The ICLLP Framebuffer is loaded, and the VRAM is also recognized as 1536MB.
However, when I check Ioreg, the display is still connected to the second connector, and it is not recognized as a backlight display.
Also, graphics acceleration did not work.

System Logs - Test3.txt.zip

MacBook Pro-NBlue.ioreg.zip

Edited by shl628
Link to comment
Share on other sites

hey guys,

 

1-2 months ago i got an asus f15 fx506heb laptop 11th gen 11400h with the dreaded intel iris xe igpu also, g1 however and to no surprise it doesnt work for me too. ALSO my keyboard does work but not trackpad. I've been following this thread and would love to help try stuff to make our igpu work, and if anyone can post OR dm me a possible fix for the trackpad please do it's  a elan 1200 according to windows and linux. and IF i wanna help with the igpu stuff how do i best to do so. IF anyone wants to hmu on discord dm me.

Link to comment
Share on other sites

you guys can try change in NBlue the code for AAPL,ig-platform-id. it's set to {0x01, 0x00, 0x52, 0x8A};

maybe disable and add manual id to opencore ?

 

i'm sure crashes depend a lot on the kind of laptop display that you use

i forgot to say that i'm not using any SSDT-PNLF - it means no backlight support for now

my boot args are debug=0x100 keepsyms=1 -vi2c-force-polling -allow3d

my bios settings: reset to defaults and disable secure boot

 

shl628

can you check the panic log with NBlue ? maybe patches are wrong for latest ventura or your hardware needs something specific to work

do not use whatevergreen with nblue

in nblue i only changed in info.plist the SupportDynamicCDClk setting

 

this are the lilu debug and kernel sdk that i'm using (can get them elsewhere anyway)

 

Arquivo.zip

 

so i reverted the SupportDynamicCDClk to 1 and disable 1 patch in nblue. working fine for me (the screen flicks a bit during boot)

if you guys wanna test other cards ids just edit the info.plist of nblue

 

 

Edited by jalavoui
  • Like 2
Link to comment
Share on other sites

Posted (edited)

@jalavoui 

 

Test 4
- WhenverGreen : Disabled
- IGPU Device Properties : do not inject
- boot-args : -nbluedbg -allow3d
- SSDT-PNLF.aml : Disabled

 

image.thumb.jpeg.f77df8df1c01a9577fdee35d7909bc92.jpeg

 

Boot stops in the picture above.
The kernel panic log is not visible.

 

I don't know why I don't see kernel panic logs... 🥲
I checked the /Library/Logs/DiagnosticReports path, but there was no kernel panic log file.
In macOS Big Sur 11 and later versions, kernel panic logs are not visible during boot, and in macOS Catalina 10.15.x versions, kernel panic logs are visible.

 

I'm going to install the macOS Catalina 10.15.7 version and test it again.
Additionally, the display on my laptop is eDP, not LVDS.

Edited by shl628
Link to comment
Share on other sites

×
×
  • Create New...