Jump to content

[Acer PT14-51 Laptop] HowTo


Stezza88
 Share

361 posts in this topic

Recommended Posts

Just now, jalavoui said:

the icl sku check depends on ig-platform. i think you need to patch it. focus on framebuffer as graph kext only matter if framebuffer kexts loads

 

Never have a framebuffer loaded in all of this tests...

Link to comment
Share on other sites

I found, for example, that all of these three patches f2, f2b, f1 cannot be found on IDA Pro byte searching in my appleinteliclgraphics binary

void IGFX::ForceCompleteModeset::processFramebufferKext(KernelPatcher &patcher, size_t index, mach_vm_address_t address, size_t size) {
	
	// AppleIntelFramebufferController::hwSetMode skip hwRegsNeedUpdate
	static const uint8_t f2[] = {0xE8, 0x31, 0xE5, 0xFF, 0xFF, 0x84, 0xC0, 0x74, 0x3D};
	static const uint8_t r2[] = {0xE8, 0x31, 0xE5, 0xFF, 0xFF, 0x84, 0xC0, 0xEB, 0x3D};
	
	// AppleIntelFramebufferController::hwSetMode skip hwRegsNeedUpdate - macOS Sonoma 14.x
	static const uint8_t f2b[] = {0xE8, 0x54, 0xEA, 0xFF, 0xFF, 0x84, 0xC0, 0x74, 0x5C};
	static const uint8_t r2b[] = {0xE8, 0x54, 0xEA, 0xFF, 0xFF, 0x84, 0xC0, 0xeb, 0x5C};

	// writeReg32(SOUTH_DSPCLK_GATE_D,PCH_GMBUSUNIT_CLOCK_GATE_DISABLE); Wa_14011294188:ehl,jsl,tgl,rkl,adl-s
	static const uint8_t f1[] = {0x74, 0x28, 0x48, 0xFF, 0x05, 0x9E, 0x65, 0x0B, 0x00, 0xBE, 0x20, 0x20, 0x0C, 0x00, 0x4C, 0x89, 0xEF, 0xE8, 0x3F, 0xE2, 0xFF, 0xFF, 0x0D, 0x00, 0x10, 0x00, 0x00};
	static const uint8_t r1[] = {0x90, 0x90, 0x48, 0xFF, 0x05, 0x9E, 0x65, 0x0B, 0x00, 0xBE, 0x20, 0x20, 0x0C, 0x00, 0x4C, 0x89, 0xEF, 0xE8, 0x3F, 0xE2, 0xFF, 0xFF, 0xb8, 0x00, 0x00, 0x00, 0x80};
	...
}

now the point is ... what the developer should have intention to do? How can I replace all of this absence of occurrency? You have a method ?

Edited by ASUS Vivobook
Link to comment
Share on other sites

don't look at all those patches they were research work in ventura.

 

check the enabled patches as they work for some cards

 

system icl as only 1 active patch -  this changes card id check to match card id 0x9a49

 

Capturadeecra2024-11-05as18_43_59.png.7b395e13151f49811c512d4ab55cbb8b.png

 

+ the hwRegsNeedUpdate() patches which works for sonoma,etc

 

next you have some functions that are disabled and others that do simple things

 

maybe they work for your card but i think extra work will be needed

 

for your card maybe watch uint8_t f6[] = its the connectors patch

 

so the idea of nblue is do research and disable things that are no longer need but giving some tips to other devs

 

hope you can test all those framebuffers and make it work for you

 

btw the hwRegsNeedUpdate() in nblue as function name comment so search ghidra for function named hwRegsNeedUpdate

 

make sure you use PANIC_COND - this helps if you do a wrong patch or mistake

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

37 minutes ago, ASUS Vivobook said:

I found, for example, that all of these three patches f2, f2b, f1 cannot be found on IDA Pro byte searching in my appleinteliclgraphics binary

void IGFX::ForceCompleteModeset::processFramebufferKext(KernelPatcher &patcher, size_t index, mach_vm_address_t address, size_t size) {
	
	// AppleIntelFramebufferController::hwSetMode skip hwRegsNeedUpdate
	static const uint8_t f2[] = {0xE8, 0x31, 0xE5, 0xFF, 0xFF, 0x84, 0xC0, 0x74, 0x3D};
	static const uint8_t r2[] = {0xE8, 0x31, 0xE5, 0xFF, 0xFF, 0x84, 0xC0, 0xEB, 0x3D};
	
	// AppleIntelFramebufferController::hwSetMode skip hwRegsNeedUpdate - macOS Sonoma 14.x
	static const uint8_t f2b[] = {0xE8, 0x54, 0xEA, 0xFF, 0xFF, 0x84, 0xC0, 0x74, 0x5C};
	static const uint8_t r2b[] = {0xE8, 0x54, 0xEA, 0xFF, 0xFF, 0x84, 0xC0, 0xeb, 0x5C};

	// writeReg32(SOUTH_DSPCLK_GATE_D,PCH_GMBUSUNIT_CLOCK_GATE_DISABLE); Wa_14011294188:ehl,jsl,tgl,rkl,adl-s
	static const uint8_t f1[] = {0x74, 0x28, 0x48, 0xFF, 0x05, 0x9E, 0x65, 0x0B, 0x00, 0xBE, 0x20, 0x20, 0x0C, 0x00, 0x4C, 0x89, 0xEF, 0xE8, 0x3F, 0xE2, 0xFF, 0xFF, 0x0D, 0x00, 0x10, 0x00, 0x00};
	static const uint8_t r1[] = {0x90, 0x90, 0x48, 0xFF, 0x05, 0x9E, 0x65, 0x0B, 0x00, 0xBE, 0x20, 0x20, 0x0C, 0x00, 0x4C, 0x89, 0xEF, 0xE8, 0x3F, 0xE2, 0xFF, 0xFF, 0xb8, 0x00, 0x00, 0x00, 0x80};
	...
}

now the point is ... what the developer should have intention to do? How can I replace all of this absence of occurrency? You have a method ?

 

These were from weg.. this Is a mixture topic XD

 

Btw i understand the principles of nblue.. Hope to have some more luck too..

Edited by ASUS Vivobook
Link to comment
Share on other sites

Should be useful to have also the boot [IGPU] logs in system log files.. they are too fast sometimes and cannot see those in system logs.. uff

Edited by ASUS Vivobook
Link to comment
Share on other sites

2 hours ago, jalavoui said:

don't look at all those patches they were research work in ventura.

 

check the enabled patches as they work for some cards

 

system icl as only 1 active patch -  this changes card id check to match card id 0x9a49

 

Capturadeecra2024-11-05as18_43_59.png.7b395e13151f49811c512d4ab55cbb8b.png

 

+ the hwRegsNeedUpdate() patches which works for sonoma,etc

 

next you have some functions that are disabled and others that do simple things

 

maybe they work for your card but i think extra work will be needed

 

for your card maybe watch uint8_t f6[] = its the connectors patch

 

so the idea of nblue is do research and disable things that are no longer need but giving some tips to other devs

 

hope you can test all those framebuffers and make it work for you

 

btw the hwRegsNeedUpdate() in nblue as function name comment so search ghidra for function named hwRegsNeedUpdate

 

make sure you use PANIC_COND - this helps if you do a wrong patch or mistake

 

These patches are for ICLLP.. ICLLP not works to me... boot stall and gpu goes in overheat..

Link to comment
Share on other sites

i think this register is what works for your card edp conn 0x6f400 (get register dump from linux)

your best opt is test icl debug version or tgl debug but tgl doesnt uses this (need patches).

 

image.png.35c4a4b30e3117f05858abd8098913ae.png

 

also watch

image.png.f1c317c51d78c329a8c11d1ef2af0a6b.png

 

and probably other functions that might help if using tgl debug

 

as for the hangs only opt is use the kernel debugger if you have a apple ethernet card or

by putting some PANIC_COND on calls like start(), etc

or

by using NETDBG log messages. code is disabled in nblue (kern_netdbg.cpp) i dont remenber howto setup network or the console tool to get online logs from the network

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

On 11/5/2024 at 5:31 PM, ASUS Vivobook said:

[WEG] I'm understanding now that "-disablegfxfirmware" boot arg disable the possible scheduler selection so i cannot change scheduler.. but if i toggle this boot arg i obtain the consequent scheme :

 

------------ Resume ------------

Without boot arg -disablegfxfirmware

- boot arg igfxfw=2, kp "Firmware Load failed boot hash check!"

- boot arg igfxfw=1, kp "guc binary load failure"

- boot arg igfxfw=0 / igfxfw=-1, gpu stall

---------------------------------

With -disablegfxfirmware

- gpu stall and no scheduler selection

---------------------------------

 

In weg src code we've got these cases, so i think i tryed everything.. with bad results.. I don't know what to choose as "the best of" XD

/**
*  GuC firmware loading scheme
*/
enum FirmwareLoad {
	FW_AUTO    = -1 /* Use as is for Apple, disable for others */,
	FW_DISABLE = 0, /* Use host scheduler without GuC */
	FW_GENERIC = 1, /* Use reference scheduler with GuC */
	FW_APPLE   = 2, /* Use Apple GuC scheduler */
};

 

[WEG] The NBlue Gen7ICL GraphicSchedulerSelect = 0, at which scheduler correspond with the igfxfw= ? boot arg for weg in this scheme?

Edited by ASUS Vivobook
Link to comment
Share on other sites

[NBlue] I saw now that I get this message

(AppleIntelICLLPGraphicsFramebuffer) [IGFB][ERROR][DISPLAY   ] Failing probe: Undefined platform ID

Maybe it's related to this, I know

 

image.png.7136b5a81ade78b4926508b3443e03c3.png

Edited by ASUS Vivobook
Link to comment
Share on other sites

[NBlue] With AppleIntelICLGraphics (Gen7ICL), GraphicSchedulerSelect = 0, that is the only one that works to me, with always no loaded fb i got this logs : 

(AppleIntelICLGraphics) [IGPU] Could not register with IOFB! Working standalone (IONDRVSupport)
(AppleIntelICLGraphics) [IGPU] HWCAPS - GPU Sku: 0
(AppleIntelICLGraphics) [IGPU] HWCAPS - VEDBOXEnableFuses:0xf00ff  VEBox units enabled:4   VDBox units enabled:8ts enabled:4   VDBox units enabled:8
(AppleIntelICLGraphics) [IGPU] HWCAPS - NumSlices:0      SliceCountFuse:0x0
(AppleIntelICLGraphics) [IGPU] HWCAPS - NumSubSlices:32   SubSliceCountFuse:0x0
(AppleIntelICLGraphics) [IGPU] HWCAPS - MaxEUPerSubSlice:8   EUDisableFuses:0x0  ExecutionUnitCount:256
(AppleIntelICLGraphics) [IGPU] HWCAPS - ERROR: GPU Sku (2069685576) is invalid for 1 Slice x 6 SubSlice configuration!
(AppleIntelICLGraphics) [IGPU] HWCAPS - TEMP HACK: Forcing GPU Sku to 9
(AppleIntelICLGraphics) [IGPU] HWCAPS - GPU Sku: ICL 1x6x8 LP
(AppleIntelICLGraphics) [IGPU] HWCAPS - L3BankCount: 8
(AppleIntelICLGraphics) [IGPU] Ring Size: 32 KB
(AppleIntelICLGraphics) [IGPU] Graphics Scheduler Preemption Enabled!
(AppleIntelICLGraphics) [IGPU] Setting preemptionDelayIntervalUS to 160 microseconds
(AppleIntelICLGraphics) [IGPU] Setting preemptionTimerIntervalUS to 2000 microseconds
(AppleIntelICLGraphics) [IGPU] Will NOT fallback to host-side scheduling if graphics firmware fails to load
(AppleIntelICLGraphics) [IGPU] Scheduler Tail Coalescing Enabled.
(AppleIntelICLGraphics) [IGPU] Scheduler Page Fault Handling Enabled.
(AppleIntelICLGraphics) [IGPU] Scheduler Single Channel Index Disabled
(AppleIntelICLGraphics) [IGPU] Scheduler Channel Wait For Complete Disabled
(AppleIntelICLGraphics) [IGPU] Scheduler: Process CSB using HWS.
(AppleIntelICLGraphics) [IGPU] Scheduler: PM notify enabled
(AppleIntelICLGraphics) [IGPU] Selected Apple Firmware Scheduler
(AppleIntelICLGraphics) [IGPU] Detecting Emulator Mode ... [False]
(AppleIntelICLGraphics) [IGPU] Scheduler: Multiple channel indexes per command streamer
(AppleIntelICLGraphics) [IGPU] Scheduler: Process CSB using HWS.
(AppleIntelICLGraphics) [IGPU] Scheduler: PM notify enabled
(AppleIntelICLGraphics) [IGPU] Graphics Address: PPGTT, Separate Address Space
(AppleIntelICLGraphics) [IGPU] MultiForceWake Enabled: Using 3D Driver
(AppleIntelICLGraphics) [IGPU] POSH Disabled
(AppleIntelICLGraphics) [IGPU] Render Compression Enabled.
(AppleIntelICLGraphics) [IGPU] Render Compression for IOSurface is Enabled.
(AppleIntelICLGraphics) [IGPU] Failed to register with service. Using Local Filter Interrupt Source!
(AppleIntelICLGraphics) [IGPU] Begin Gfx firmware load process
(AppleIntelICLGraphics) [IGPU]    ForceWake Multithread = 0x30002
(AppleIntelICLGraphics) [IGPU]    CONFIG0 (0xD00)       = 0x80000014
(AppleIntelICLGraphics) [IGPU]    GT_THREAD_STATUS      = 0x40030000
(AppleIntelICLGraphics) [IGPU]    Doing retry #0
(AppleIntelICLGraphics) [IGPU] Graphics Firmware Version: 0.0.0.0
(AppleIntelICLGraphics) [IGPU] Failed to load graphics firmware binary, STATUS = 0x840000EC
(AppleIntelICLGraphics) [IGPU] Failed to initialize graphics firmware.
(AppleIntelICLGraphics) [IGPU] Failed to start graphics engine
(AppleIntelICLGraphics) [IGPU] Request to send Host -> Gfx firmware message when the firmware channel is not active!
(AppleIntelICLGraphics) [IGPU] Failed to send wait-for-idle request to firmware

 

Edited by ASUS Vivobook
Link to comment
Share on other sites

[NBlue] With ICLLP I applied the patch f6 r6 llike you said and it booted with no hang and no gpu overheat!! ...but still no fb loaded!

But I got still this message :

(AppleIntelICLLPGraphicsFramebuffer) [IGFB][ERROR][DISPLAY   ] Failing probe: Undefined platform ID

Patches used :

LookupPatchPlus const patches[] = {
	{&kextG11FB, f6, r6, arrsize(f6),1},
	{&kextG11FB, f15, r15, arrsize(f15),1},		
};

Buil-in used

static uint8_t builtin2[] = {0x02, 0x00, 0x5c, 0x8A};
static uint8_t builtin3[] = {0x5c, 0x8A,0x00,0x00};
Edited by ASUS Vivobook
Link to comment
Share on other sites

On 11/5/2024 at 5:31 PM, ASUS Vivobook said:

[WEG] I'm understanding now that "-disablegfxfirmware" boot arg disable the possible scheduler selection so i cannot change scheduler.. but if i toggle this boot arg i obtain the consequent scheme :

 

------------ Resume ------------

Without boot arg -disablegfxfirmware

- boot arg igfxfw=2, kp "Firmware Load failed boot hash check!"

- boot arg igfxfw=1,

                       SCHEDULER 5 => gpu stall

                       SCHEDULER 4 => kp "guc binary load failure"

                       SCHEDULER 3 => kp "Firmware Load failed boot hash check!"

                       SCHEDULER 1 => kp "unsupported graphic scheduler select"

                       SCHEDULER 0 => kp "Firmware Load failed boot hash check!"

- boot arg igfxfw=0 / igfxfw=-1, gpu stall

---------------------------------

With -disablegfxfirmware

- gpu stall and no scheduler selection

---------------------------------

 

In weg src code we've got these cases, so i think i tryed everything.. with bad results.. I don't know what to choose as "the best of" XD

/**
*  GuC firmware loading scheme
*/
enum FirmwareLoad {
	FW_AUTO    = -1 /* Use as is for Apple, disable for others */,
	FW_DISABLE = 0, /* Use host scheduler without GuC */
	FW_GENERIC = 1, /* Use reference scheduler with GuC */
	FW_APPLE   = 2, /* Use Apple GuC scheduler */
};

 

[WEG forked] By adding your patch

//gen11
static const uint8_t f7[] = {
	0x80, 0xc1, 0x00, 0x00
};
static const uint8_t r7[] = {
	0x40, 0x02, 0x19, 0x00
};

i obtain the bypassing of kp "Firmware Load failed boot hash check!"! with the consequent failed loading after booting successful

(AppleIntelICLGraphics) [IGPU] Graphics Firmware Version: 0.0.0.0
(AppleIntelICLGraphics) [IGPU] Failed to load graphics firmware binary, STATUS = 0x840000EC
(AppleIntelICLGraphics) [IGPU] Failed to initialize graphics firmware.
(AppleIntelICLGraphics) [IGPU] Failed to start graphics engine
(AppleIntelICLGraphics) [IGPU] Request to send Host -> Gfx firmware message when the firmware channel is not active!
(AppleIntelICLGraphics) [IGPU] Failed to send wait-for-idle request to firmware

pairing the NBlue result... I'm at a blocking point

Edited by ASUS Vivobook
Link to comment
Share on other sites

But I noticed that your patch is too much general as you said, there are many occurrence of

0x80, 0xc1, 0x00, 0x00

 what did you have in mind with this patch?

 

Screenshot 2024-11-08 alle 10.20.38.png

Edited by ASUS Vivobook
Link to comment
Share on other sites

that was a test for this. with wrong byte chain lenght. guess didnt finish it

 

image.png.d831ef9749a4fa51d3b784964ba96869.png

 

image.png.f34874db6f7839ff90837490de77519d.png

 

better check tgl kexts - icl is just 2 old

 

anyway u still can't load a framebuffer so focus on tgl framebuffer cause it is now working.

did u get a dump of linux registers like this?

 

trying to get graph kext to work before having a frame kext is kinda like

you are trying to run before you have learned howto walk

 

irq.txt

Edited by jalavoui
Link to comment
Share on other sites

now that you have this. i think your chances are better

go work on tgl framebuffer !

 

image.thumb.png.8b33a582113e34898709e124b1cc45c8.png

 

hope you realize your card is not using edp address. so chances are good

 

Edited by jalavoui
Link to comment
Share on other sites

- You mean com.xxxxx.driver.AppleIntelTGLGraphicsFramebuffer, don't you?

 

- How can i translate this register dumping into code in NBlue? In NBlue gen11 core there are solving requests and IDA pro patches, where are written these registers?

Tell me a method..

Edited by ASUS Vivobook
Link to comment
Share on other sites

yes com.xxxxx.driver.AppleIntelTGLGraphicsFramebuffer

 

the method i use is search in linux code for this registers so i can understand the code.

 

next u search in the binary for the address. 

example: 0x00060400 = 0x60400

in bytes 06 04 00

reverted 00 04 06

 

so you search inside the binary for 00 04 06

 

found here

image.png.de88ade5b8cee0c97d1118ba6297c745.png

 

with AppleIntelTGLGraphicsFramebuffer all patches will work cause it's from DTK - we don't have nothing else

 

there's no magic here, this is hard finding and try/retry until the driver works

that is how tgl driver started to work in nblue

Edited by jalavoui
Link to comment
Share on other sites

I've got a kp at the end of booting, quite booted after applying some changes..

 

I enabled these solving requests (after a fast look on Ghidra) (in the last nootedblue master

{"__ZN24AppleIntelBaseController16hwUpdateRegCacheEP21AppleIntelFramebufferP21AppleIntelDisplayPath",releaseDoorbell},

{"__ZN19AppleIntelPowerWell21hwSetPowerWellStatePGEbj.cold.1",releaseDoorbell},
{"__ZN19AppleIntelPowerWell21hwSetPowerWellStatePGEbj.cold.2",releaseDoorbell},
{"__ZN19AppleIntelPowerWell21hwSetPowerWellStatePGEbj.cold.3",releaseDoorbell},
{"__ZN19AppleIntelPowerWell21hwSetPowerWellStatePGEbj.cold.4",releaseDoorbell},
{"__ZN19AppleIntelPowerWell21hwSetPowerWellStatePGEbj.cold.5",releaseDoorbell},
{"__ZN19AppleIntelPowerWell21hwSetPowerWellStatePGEbj.cold.6",releaseDoorbell},
{"__ZN19AppleIntelPowerWell21hwSetPowerWellStatePGEbj.cold.7",releaseDoorbell},
{"__ZN19AppleIntelPowerWell21hwSetPowerWellStatePGEbj.cold.8",releaseDoorbell},
{"__ZN19AppleIntelPowerWell21hwSetPowerWellStatePGEbj.cold.9",releaseDoorbell},
{"__ZN19AppleIntelPowerWell21hwSetPowerWellStatePGEbj.cold.10",releaseDoorbell},
{"__ZN19AppleIntelPowerWell21hwSetPowerWellStatePGEbj.cold.11",releaseDoorbell},
{"__ZN19AppleIntelPowerWell21hwSetPowerWellStatePGEbj.cold.12",releaseDoorbell},
{"__ZN19AppleIntelPowerWell22hwSetPowerWellStateAuxEbj.cold.1",releaseDoorbell},

{"__ZN19AppleIntelPowerWell4initEP24AppleIntelBaseController",releaseDoorbell},

{"__ZN24AppleIntelBaseController5startEP9IOService",tgstart,this->otgstart},

Patches used :

{&kextG11FBT, f2, r2, arrsize(f2),	1},
{&kextG11FBT, f2b, r2b, arrsize(f2b),	1},
{&kextG11FBT, f2c, r2c, arrsize(f2c),	1},
{&kextG11FBT, f2d, r2d, arrsize(f2d),	1},
{&kextG11FBT, f2e, r2e, arrsize(f2e),	1},				
{&kextG11FBT, f3, r3, arrsize(f3),	1},
{&kextG11FBT, f7, r7, arrsize(f7),	1},		
{&kextG11FBT, f13, r13, arrsize(f13),	1},
{&kextG11FBT, f13b, r13b, arrsize(f13b),	1},				
{&kextG11FBT, f14, r14, arrsize(f14),	1},
{&kextG11FBT, f15, r15, arrsize(f15),	1},
{&kextG11FBT, f18, r18, arrsize(f18),	1},
{&kextG11FBT, f18b, r18b, arrsize(f18b),	1},			
{&kextG11FBT, f19, r19, arrsize(f19),	1},			
{&kextG11FBT, f20, r20, arrsize(f20),	1},

 

And gotten some logs :

(AppleIntelTGLGraphicsFramebuffer) [IGFB][INFO ][DEFAULT   ][AppleIntelController.cpp : 1494 ][initializeLogging   ] IGLogLevel = 0x8
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4892 ][getPlatformID       ]   AAPL,ig-platform-id = 0x9a490000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1557 ][start               ]     fBootFlags = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1560 ][start               ]     fAGPMLogBits = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1563 ][start               ]     fAGPMLogMaskprintf = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1590 ][start               ]     fPCIDeviceID = 0x9a498086
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1593 ][start               ]     fPCIConfigRevisionID = 0x4
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1596 ][start               ]     fPCISubSystemID = 0x166d1025
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1661 ][start               ]     Range[0] 0x4012000000:01000000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1661 ][start               ]     Range[1] 0x4000000000:10000000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1661 ][start               ]     Range[2] 0x4000:00000040
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1680 ][start               ]     MMIO range@0x10 (0x4012000000) mapped to kernel virtual address 0xffffffd532a7c000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4892 ][getPlatformID       ]     AAPL,ig-platform-id = 0x9a490000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4965 ][getOSInformation    ]     -------------------------------------------
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4966 ][getOSInformation    ]     PlatformInformation
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4967 ][getOSInformation    ]     fInfoPlatformID              : 0x9a490000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4968 ][getOSInformation    ]     fInfoModelName               : Intel HD Graphics TGL CRB
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4969 ][getOSInformation    ]     fInfoHasLid                  : 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4970 ][getOSInformation    ]     fInfoPipeCount               : 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4971 ][getOSInformation    ]     fInfoPortCount               : 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4972 ][getOSInformation    ]     fInfoFramebufferCount        : 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4973 ][getOSInformation    ]     fInfoFramebufferMemorySize   : 67108864
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4974 ][getOSInformation    ]     fInfoFBCompressionMemorySize : 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4975 ][getOSInformation    ]     fInfoUnifiedMemorySize       : 1610612736
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4976 ][getOSInformation    ]     fInfoFlags                   : 0x8005
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4977 ][getOSInformation    ]     fInfoDynamicFBCThreshold     : 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4978 ][getOSInformation    ]     fInfoVideoTurbo              : 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4979 ][getOSInformation    ]     fMaxSliceCount               : 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4980 ][getOSInformation    ]     fMaxEUCount                  : 5
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4981 ][getOSInformation    ]     -------------------------------------------
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :12333 ][registerWithAICPM   ]     PMIOCRINGTABLEINIT(GTVA=0xffffffd532a7c000, PCUVA=0xffffffd532bbc000, minFreq=100, maxFreq=1500, freqStep=50, count=29):ret=-1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :12338 ][registerWithAICPM   ]     PMIOCCURRENTGTFREQFN(func=0xffffff7f96a5926a):ret=-1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5131 ][getFeatureControl   ]       FeatureControl found in plist
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5150 ][getFeatureControl   ]       fFBCBypassEnable set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5160 ][getFeatureControl   ]       fAGCOverlayCacheEDIDDisable set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5171 ][getFeatureControl   ]       DynamicRingTables set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5189 ][getFeatureControl   ]       fEnableSliceShutdown set to 1, fEnableSliceShutdownOld set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5197 ][getFeatureControl   ]       fEnableSubliceShutdown set to 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5205 ][getFeatureControl   ]       fEnableSliceShutdown set to 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5216 ][getFeatureControl   ]       fIgnoreHMDSetting set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5228 ][getFeatureControl   ]       fLoadRingOverridePerSlice set to 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5236 ][getFeatureControl   ]       fEnableDynamicFBC set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5247 ][getFeatureControl   ]       fBusyTimerValue set to 3000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5257 ][getFeatureControl   ]       fFastDisplayDetectDisable set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5268 ][getFeatureControl   ]       fDitherMode set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5278 ][getFeatureControl   ]       fDitherDisable set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5289 ][getFeatureControl   ]       DynamicFBCFrameCount set to 3
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5300 ][getFeatureControl   ]       DeltaFlipThreshold set to 18000000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5311 ][getFeatureControl   ]       TransactionCountTime set to 1000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5318 ][getFeatureControl   ]       fNumTransactionsThreshold set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5334 ][getFeatureControl   ]       fEnableMultipipeScaler set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5343 ][getFeatureControl   ]       EnableMultipipeScaler set to 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5353 ][getFeatureControl   ]       fEnableGamma set to 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5363 ][getFeatureControl   ]       fPowerStatesEnable set to 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5369 ][getFeatureControl   ]       fRenderStandbyEnable set to 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5392 ][getFeatureControl   ]       fDisableInternalPanel set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5402 ][getFeatureControl   ]       fRCxEIModeEnable set to 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5415 ][getFeatureControl   ]       fGPUInterruptHandlingEnable set to 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5426 ][getFeatureControl   ]       DPM set to 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5491 ][getFeatureControl   ]       [GFXPMFB] fDynamicSliceSwitch = 0 fGFMPPFMSupport = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5501 ][getFeatureControl   ]       fMessageAGPMTimerValue = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5521 ][getFeatureControl   ]       Threading Mode: 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5531 ][getFeatureControl   ]       fEnableSetRC6Voltage set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5541 ][getFeatureControl   ]       fEnableDeepDisplay set to false
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5551 ][getFeatureControl   ]       fDisableDFB set to 0x00000000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5561 ][getFeatureControl   ]       fEnableDFB set to 0x00000000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5571 ][getFeatureControl   ]       fEDPDownSpreadDisable set to false
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5588 ][getFeatureControl   ]       fDPDownSpreadDisable set to false
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5598 ][getFeatureControl   ]       fASRDisable set to false
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5608 ][getFeatureControl   ]       fPStateOccupancyReportUsed set to true
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5618 ][getFeatureControl   ]       fLogSyncAsyncFlipChanges set to false
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5628 ][getFeatureControl   ]       fEnable8kMode set to 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5638 ][getFeatureControl   ]       fNoApertureAccess set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5648 ][getFeatureControl   ]       EnableTconScaler set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5757 ][getFeatureControl   ]       TracePointEnable set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5789 ][getFeatureControl   ]       VRR supported: 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5797 ][getFeatureControl   ]       Double buffer update supported with VRR : 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5805 ][getFeatureControl   ]       ASYNC flip supported with VRR : 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5817 ][getFeatureControl   ]       ASFU supported: 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5826 ][getFeatureControl   ]       DSC supported: 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5835 ][getFeatureControl   ]       DSC Caps Reporting enabled: 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5844 ][getFeatureControl   ]       FEC supported: 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5865 ][getFeatureControl   ]       GPU 420 subsampling supported: 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5880 ][getFeatureControl   ]       FP16 format support: 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5890 ][getFeatureControl   ]       fPStateResidencyWAEnable set to true
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5112 ][getPMTControl       ]     PMTControl found in plist
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 5122 ][getPMTControl       ]     fDisplayEngineCounting set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1812 ][start               ]     FB range@0x18 0x4000000000:10000000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1819 ][start               ]     mggc: 0x2c1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1822 ][start               ]     GTT Length = 4194304
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 6296 ][getFBCControl       ]     FBCControl found in plist
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 6314 ][getFBCControl       ]     fFBCEnabled set to 0 fFBCEnableOverride set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 6319 ][getFBCControl       ]     fFBCCompression set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 6326 ][getFBCControl       ]     fStolenMemoryOverride set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :14565 ][FBMemMgr_Init       ]       StolenMemoryBase = 0x0, StolenMemorySize = 67108864
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :14594 ][FBMemMgr_Init       ]       fCursorBytes = 1048576, fCursorOffset = 67108864
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :14598 ][FBMemMgr_Init       ]       fDSBBufferBytes = 73728, fDSBBufferBaseOffset = 68157440
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :14603 ][FBMemMgr_Init       ]       fConnectionStatusBytes = 8192, fConnectionStatusOffset = 68231168
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :14606 ][FBMemMgr_Init       ]       fReservedApertureSize = 68239360
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :14626 ][FBMemMgr_Init       ]       stolenReserved     = 4096
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :14627 ][FBMemMgr_Init       ]       stolenFBSize       = 67108864
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :14628 ][FBMemMgr_Init       ]       stolenFBCSize      = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :14629 ][FBMemMgr_Init       ]       stolenTotalLowSize = 67112960
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :14630 ][FBMemMgr_Init       ]       stolenWOPCMSize    = 2097152
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :14631 ][FBMemMgr_Init       ]       stolenTotalSize    = 69210112
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4892 ][getPlatformID       ]     AAPL,ig-platform-id = 0x9a490000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][SIM       ][AppleIntelSimulator.cpp  :   39 ][init                ]       ret = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelClocks.cpp     :  370 ][initCDClock         ]     CD clock reference frequency = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 7451 ][readEDIDOverrideProp]     (provider=0xffffff86a0448040)
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 7543 ][readEDIDOverrideProp]     return
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][PORT      ][AppleIntelPort.cpp       :   34 ][allocatePorts       ]       portCount = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][PORT      ][AppleIntelPort.cpp       :   77 ][allocatePorts       ]       ret = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][PORT      ][AppleIntelPort.cpp       :  116 ][resetSoftwareState  ]             DDI = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][PORT      ][AppleIntelPort.cpp       :  108 ][init                ]           PortIndex = 0, DDI = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][PORT      ][AppleIntelPortHAL.cpp    :  452 ][init                ]         ret = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DIAGS     ][AppleIntelDiags.cpp      : 2066 ][init                ]       DDI = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DIAGS     ][AppleIntelDiags.cpp      : 2078 ][init                ]       ret = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][PORT      ][AppleIntelPort.cpp       :  116 ][resetSoftwareState  ]             DDI = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][PORT      ][AppleIntelPort.cpp       :  108 ][init                ]           PortIndex = 1, DDI = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][PORT      ][AppleIntelPortHAL.cpp    :  452 ][init                ]         ret = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DIAGS     ][AppleIntelDiags.cpp      : 2066 ][init                ]       DDI = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DIAGS     ][AppleIntelDiags.cpp      : 2078 ][init                ]       ret = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelDisplayPath.cpp:   28 ][allocatePaths       ]       pathCount = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelDisplayPath.cpp:   66 ][allocatePaths       ]       ret = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelDisplayPath.cpp:  380 ][getPathByIndex      ]       pathIndex = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelDisplayPath.cpp:  137 ][init                ]       PathIndex = 0, pipe = A
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelDisplayPath.cpp:  380 ][getPathByIndex      ]       pathIndex = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelDisplayPath.cpp:  137 ][init                ]       PathIndex = 1, pipe = B
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][PORT      ][AppleIntelPort.cpp       :  233 ][getBuiltInPort      ]       Built-in port not found
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelFB.cpp         :  107 ][init                ]       FB0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelFB.cpp         :  107 ][init                ]       FB1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 2885 ][probeBootPipe       ]         Boot pipe = A
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 2840 ][setupBootDisplay    ]       FB0: Boot pipe found - DDI0, pipe A
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  : 2654 ][commitResourceConfig]           count = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :   94 ][allocateDisplayResou]             FB0: managed = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][PORT      ][AppleIntelPort.cpp       :  233 ][getBuiltInPort      ]                 Built-in port not found
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelDisplayPath.cpp:  228 ][getFreeJoinablePathC]               count = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DIAGS     ][AppleIntelDiags.cpp      : 2154 ][isDSCSupported      ]               DDI = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][PORT      ][AppleIntelPort.cpp       : 3517 ][isDSCSupported      ]                 DDI = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][PORT      ][AppleIntelPort.cpp       : 3531 ][isDSCSupported      ]                 bRet = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DIAGS     ][AppleIntelDiags.cpp      : 2163 ][isDSCSupported      ]               bRet = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :  151 ][allocateDisplayResou]             FB0: set[0] is single-link
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  : 2747 ][dumpAGDCDetailedTimi]             HActive = 0, HBlanking = 0, HScaled = 0, VActive = 0, VBlanking = 0, VScaled = 0, PixelClock = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :  400 ][getReservedDisplayPa]               FB0: portIndex = 0, stream = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :  415 ][getReservedDisplayPa]               FB0: count = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :  771 ][addDisplayPath      ]                 FB0: Reserved pathCount = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelDisplayPath.cpp:  276 ][allocatePath        ]                   Pipe = A
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :  802 ][addDisplayPath      ]                 FB0: Pipe = A
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :  810 ][addDisplayPath      ]                 FB0: Reserved pathCount = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :  855 ][attachDisplayPath   ]                 FB0: Attached pathCount = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :  873 ][attachDisplayPath   ]                 FB0: Attached pathCount = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :15156 ][allocateScaler      ]                 FB0: Assigning scalar 0 for pipe A
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :15156 ][allocateScaler      ]                   FB0: Assigning scalar 1 for pipe A
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :15216 ][allocatePlane       ]                 FB0: Assigning plane 0 for pipe A
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 7889 ][hwGetCRTC           ]               (fb0:0xffffffc8bcb13000)
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 7914 ][hwGetCRTC           ]               return
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :  711 ][allocateDisplayPathR]               FB0: ret = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 2124 ][evaluateSliceExterna]                evaluateSliceExternalDisplay ENTRY
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 2151 ][updateSliceConfig   ]                updateSliceConfig ENTRY
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 2162 ][updateSliceConfig   ]               ERROR: Invalid fRingTables, check if AGPM driver is loaded
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :13864 ][hwUpdateCursorMemory]               FB0: fCursorBaseAddress[0] = 0x4000000, fCursorBaseAddress[1] = 0x4040000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  : 1013 ][isApertureMemoryRequ]                 FB0: fWSAAState = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  : 1030 ][isApertureMemoryRequ]                 FB0: ret = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 7263 ][setupFBMemory       ]                 FB0: FBMemoryIndex:0, fFBMemoryUsedCount:1, fFBMemoryStatus:0x1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :  256 ][allocateDisplayResou]             hasMultiPipeConfig = 0, hasMultiLinkConfig = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :  266 ][allocateDisplayResou]             FB0: ret = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  : 2702 ][commitResourceConfig]           ret = 0x0
2024-11-08 23:00:36.303606+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :  879 ][detachDisplayPath   ]             FB0: Pipe = A
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :  905 ][detachDisplayPath   ]             FB0: Attached pathCount = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :  855 ][attachDisplayPath   ]             FB0: Attached pathCount = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :  873 ][attachDisplayPath   ]             FB0: Attached pathCount = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :  314 ][setupDisplayResource]           FB0: Attached path count = 1 of 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  :   69 ][allocateBootDisplayR]         FB0: ret = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 2857 ][setupBootDisplay    ]       ret = 0x0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3364 ][hwReadMailbox       ]       command = 0x6, data = 0x0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3426 ][hwReadMailbox       ]       status = 0x63503300
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3364 ][hwReadMailbox       ]       command = 0x6, data = 0x1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3426 ][hwReadMailbox       ]       status = 0x9b9b9b9b
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :10024 ][hwInitializeLatencyV]     Latencies for plane WM calculation: level 0=0x2, level 1=0x35, level 2=0x52, level 3=0x65
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :10025 ][hwInitializeLatencyV]     level 4=0x9d, level 5=0x9d, level 6=0x9d and level 7=0x9d
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :15000 ][hwInitializeCState  ]       Using B+ stepping CSR of size 3217
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :15028 ][hwConfigureCustomAUX]         Custom AUX enable
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :13896 ][hwSetupCursorMemory ]       err = 0x0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 2214 ][start               ]     Cursor physical address = 0x4004000000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 2252 ][start               ]     fStolenMemoryBase = 0, fStolenMemorySize = 4000000, fDSBBufferBytes = 12000, fDSBOffset = 4100000, fDSBVirtualAddrBase = 0xffffffd0cb12c000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 2324 ][start               ]     MSI Disabled
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 4378 ][getRCxControl       ]     RCxControl not found in plist
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 4329 ][getCPGControl       ]     getCPGControl: FeatureControl found in plist
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 4359 ][getCPGControl       ]     fCoarsePowerGatingSelect set to 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 4892 ][getPlatformID       ]     AAPL,ig-platform-id = 0x9a490000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       :  214 ][initPMRegisters     ]     [FBCONTROLLER::initPMRegisters] fMaxFreqSupported = 30 fMinFreqSupported = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1312 ][SafeForceWake       ]     2D ForceWakeValue: 1, fForceWakeCount[Default] 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1359 ][SafeForceWake       ]     2D Default ForceWake reg 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1312 ][SafeForceWake       ]     2D ForceWakeValue: 0, fForceWakeCount[Default] 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1359 ][SafeForceWake       ]     2D Default ForceWake reg 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       :  284 ][initPMRegisters     ]      fMinFreqSupported = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       :  298 ][initPMRegisters     ]     initPMRegisters: frequencyStep = <50>, init:0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5743 ][initThreshold       ]     frequencyStep = <50>	minFrequency = <2>	maxFrequency = <30>
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 3
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 4
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 5
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 6
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 7
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 8
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 9
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 10
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 11
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307485+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 12
2024-11-08 23:00:36.307488+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307491+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307494+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307497+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.307501+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307504+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307507+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307510+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 13
2024-11-08 23:00:36.307513+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307516+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307520+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307523+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.307526+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307529+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307532+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307537+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 14
2024-11-08 23:00:36.307540+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307544+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307547+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307551+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.307555+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307558+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307561+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307565+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 15
2024-11-08 23:00:36.307568+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307571+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307574+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307577+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.307581+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307584+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307587+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307590+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 16
2024-11-08 23:00:36.307594+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307597+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307600+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307603+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.307608+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307611+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307614+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307618+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 17
2024-11-08 23:00:36.307621+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307624+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307627+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307631+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.307634+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307638+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307641+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307644+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 18
2024-11-08 23:00:36.307648+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307651+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307655+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307658+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.307662+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307665+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307668+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307672+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 19
2024-11-08 23:00:36.307675+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307679+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307682+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307685+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.307689+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307692+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307696+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307699+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 20
2024-11-08 23:00:36.307703+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307706+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307709+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307713+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.307716+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307720+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307723+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307727+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 21
2024-11-08 23:00:36.307730+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307734+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307737+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307741+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.307744+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307748+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307751+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307754+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 22
2024-11-08 23:00:36.307758+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307761+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307764+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307768+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.307771+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307775+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307778+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307783+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 23
2024-11-08 23:00:36.307786+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307789+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307793+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307796+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.307799+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307803+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307806+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307809+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 24
2024-11-08 23:00:36.307813+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307816+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307819+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307823+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.307826+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307829+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307833+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307837+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 25
2024-11-08 23:00:36.307841+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307844+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307848+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307851+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.307854+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307857+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307861+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307864+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 26
2024-11-08 23:00:36.307867+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307871+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307874+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307877+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.307880+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307884+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307887+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307890+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 27
2024-11-08 23:00:36.307894+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307897+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307900+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307904+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.307907+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307910+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307913+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307917+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 28
2024-11-08 23:00:36.307921+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307925+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307928+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307933+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.307936+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307939+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307943+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 0
2024-11-08 23:00:36.307947+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5771 ][initThreshold       ]     upStep = 1, downStep = 1, upThresholdLimit = 80, downThresholdLimit = 60, upTimer = 31250, downTimer = 31250
2024-11-08 23:00:36.307951+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5743 ][initThreshold       ]     frequencyStep = <50>	minFrequency = <2>	maxFrequency = <30>
2024-11-08 23:00:36.307955+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 0
2024-11-08 23:00:36.307958+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307962+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307965+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307968+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 0
2024-11-08 23:00:36.307972+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.307976+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.307980+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.307983+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 1
2024-11-08 23:00:36.307987+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.307990+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.307993+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.307997+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.308000+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.308003+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.308007+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.308010+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 2
2024-11-08 23:00:36.308013+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.308017+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.308020+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.308023+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.308026+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.308030+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.308033+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.308036+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 3
2024-11-08 23:00:36.308040+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.308043+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.308046+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.308050+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.308053+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.308056+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.308060+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.308063+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 4
2024-11-08 23:00:36.308067+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.308071+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.308074+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.308078+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.308082+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.308086+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.308089+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.308093+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 5
2024-11-08 23:00:36.308096+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.308099+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.308103+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.308106+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.308109+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.308113+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.308116+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.308119+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 6
2024-11-08 23:00:36.308123+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.308126+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.308131+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.308134+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.308138+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5714 ][updateTableEntry    ]     	downTimer = 31250
2024-11-08 23:00:36.308141+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5715 ][updateTableEntry    ]     	downThresholdLimit = 18750
2024-11-08 23:00:36.308145+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5716 ][updateTableEntry    ]     	downStep = 1
2024-11-08 23:00:36.308148+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5709 ][updateTableEntry    ]     entry = 7
2024-11-08 23:00:36.308151+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5710 ][updateTableEntry    ]     	frequency = 2
2024-11-08 23:00:36.308155+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5711 ][updateTableEntry    ]     	upTimer = 31250
2024-11-08 23:00:36.308158+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5712 ][updateTableEntry    ]     	upThresholdLimit = 25000
2024-11-08 23:00:36.308161+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 5713 ][updateTableEntry    ]     	upStep = 1
2024-11-08 23:00:36.308875+0100  localhost kernel[0]: (apfs) apfs_mount:29352: disk1s4 EALREADY; rooted from snap, apfs <private>
2024-11-08 23:00:36.308882+0100  localhost kernel[0]: (apfs) apfs_log_op_with_proc:3091: disk1s4 mounting volume MacOSX, requested by: mount_apfs (pid 326); parent: com.apple.Mobile (pid 302)
2024-11-08 23:00:36.308887+0100  localhost kernel[0]: (apfs) authapfs_seal_break:502: disk1s4 integrity protection will be disabled (from xid: 91025)
2024-11-08 23:00:36.310199+0100  localhost kernel[0]: (AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x100003
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x100004
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x100005
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x100006
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x100007
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x100008
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x100009
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x10000b
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x10000c
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x10000e
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x10000f
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x100010
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x100011
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x100012
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x100013
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x100014
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x100015
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x100016
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x100017
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x100018
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x100019
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x10001a
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x10001b
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x10001c
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x10001d
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3437 ][hwWriteMailbox      ]       command = 0x8, data = 0x10001e
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       :  477 ][initPMRegisters     ]     initPMRegisters: GT_PERF_STATUS = 603067
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       :  490 ][initPMRegisters     ]     initPMRegisters: fCurrentPState = 1c ratio 2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1302 ][SafeForceWake       ]     2D ForceWakeValue: 0, fForceWakeCount[Render] 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1307 ][SafeForceWake       ]     2D ForceWakeValue: 0, fForceWakeCount[Media] 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1312 ][SafeForceWake       ]     2D ForceWakeValue: 0, fForceWakeCount[Default] 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1312 ][SafeForceWake       ]     2D ForceWakeValue: 1, fForceWakeCount[Default] 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1359 ][SafeForceWake       ]     2D Default ForceWake reg 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       : 4464 ][enableRenderStandbyF]     enableRenderStandbyFlow 88040000
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1312 ][SafeForceWake       ]     2D ForceWakeValue: 0, fForceWakeCount[Default] 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 7330 ][hwGetMemoryLayoutEFI]     FB0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 7357 ][hwGetMemoryLayoutEFI]     FB0: UpperFence 0 LowerFence 0 baseAddress 0 endAddress 0 stride 0 valid 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 7366 ][hwGetMemoryLayoutEFI]     FB0: err = 0x0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 7330 ][hwGetMemoryLayoutEFI]     FB1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 7366 ][hwGetMemoryLayoutEFI]     FB1: err = 0xe00002c7
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :11570 ][SMCNotificationHandl]     AppleSMC driver found
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp :11584 ][SMCNotificationHandl]     SMC backlight color enable key 0x4c445345 not found 0x84
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 2411 ][start               ]     Starting FB: 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelFB.cpp         : 1853 ][initTimingRange     ]     (minClock=0, maxClock=0)
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 2411 ][start               ]     Starting FB: 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       :  547 ][setAggressiveness   ] (type=3, newLevel=0)
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       :  547 ][setAggressiveness   ] (type=2, newLevel=a)
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       :  547 ][setAggressiveness   ] (type=1, newLevel=0)
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       :  547 ][setAggressiveness   ] (type=4, newLevel=1)
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       :  547 ][setAggressiveness   ] (type=6, newLevel=2)
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelFB.cpp         : 1853 ][initTimingRange     ]     (minClock=0, maxClock=0)
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       :  547 ][setAggressiveness   ] (type=3, newLevel=0)
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelAGDCClient.cpp :   95 ][doAttribute         ]     cmd = 0x1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       :  547 ][setAggressiveness   ] (type=2, newLevel=a)
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelAGDCClient.cpp :   95 ][doAttribute         ]     cmd = 0x980
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       :  547 ][setAggressiveness   ] (type=1, newLevel=0)
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       :  547 ][setAggressiveness   ] (type=4, newLevel=1)
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelGTPM.cpp       :  547 ][setAggressiveness   ] (type=6, newLevel=2)
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3158 ][procGPUBinding      ]     active 0 -> 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 3164 ][procGPUBinding      ]     active 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1307 ][SafeForceWake       ]     2D ForceWakeValue: 1, fForceWakeCount[Media] 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1312 ][SafeForceWake       ]     2D ForceWakeValue: 1, fForceWakeCount[Default] 1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1307 ][SafeForceWake       ]     2D ForceWakeValue: 0, fForceWakeCount[Media] 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelController.cpp : 1312 ][SafeForceWake       ]     2D ForceWakeValue: 0, fForceWakeCount[Default] 0
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][POWER     ][AppleIntelPM.cpp         : 2678 ][_createReporters    ]     IOReporting:
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelAGDCClient.cpp :   95 ][doAttribute         ] cmd = 0x1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelAGDCClient.cpp :   95 ][doAttribute         ] cmd = 0x3
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DIAGS     ][AppleIntelDiags.cpp      :  286 ][processCmd          ]   cmd = 0x3
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelAGDCClient.cpp :  530 ][processCmd          ]   Unsupported command (cmd:0x3)
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DIAGS     ][AppleIntelDiags.cpp      :  331 ][processCmd          ]   ret = 0xe00002c2
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][PORT      ][AppleIntelPort.cpp       :  233 ][getBuiltInPort      ]     Built-in port not found
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelAGDCClient.cpp :   95 ][doAttribute         ] cmd = 0x1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelAGDCClient.cpp :   95 ][doAttribute         ] cmd = 0x980
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelAGDCClient.cpp :   95 ][doAttribute         ] cmd = 0x980
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelAGDCClient.cpp :   95 ][doAttribute         ] cmd = 0x941
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelAGDCClient.cpp :   95 ][doAttribute         ] cmd = 0x1
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelAGDCClient.cpp :   95 ][doAttribute         ] cmd = 0x923
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelMultiLink.cpp  : 1376 ][RegisterAGDCCallback]   Registering with AGDC
(AppleIntelTGLGraphicsFramebuffer) [IGFB][DEBUG][DISPLAY   ][AppleIntelAGDCClient.cpp :   95 ][doAttribute         ] cmd = 0x2

 

Kernel-2024-11-08-230404.panicx.log kern_gen11.cpp

Edited by ASUS Vivobook
Link to comment
Share on other sites

 Share

×
×
  • Create New...