Contribute
Register

HP EliteBook 8740w sleep and wake not working.

Status
Not open for further replies.
Ideally you rename GFX0 to IGPU. Then rename DGFX to GFX0.
I can rename GFX0 to IGPU.
There is no DGFX, only PEGP.DGFX. Should I rename PEGP.DGFX to GFX0 or to PEGP.GFX0?
 
I can rename GFX0 to IGPU.
There is no DGFX, only PEGP.DGFX. Should I rename PEGP.DGFX to GFX0 or to PEGP.GFX0?

PEGP.DGFX is DGFX in subscope PEGP. You should keep the subscope, rename just DGFX.

Names in ACPI are 4-characters max. ACPI spec: http://acpi.info/spec.htm
 
PEGP.DGFX is DGFX in subscope PEGP. You should keep the subscope, rename just DGFX.

Names in ACPI are 4-characters max. ACPI spec: http://acpi.info/spec.htm
Thanks, that's good to know.
Well, I did the renames with this patch
Code:
into_all all code_regex GFX0 replaceall_matched begin IGPU end;
into_all all label GFX0 set_label begin IGPU end;
into_all all code_regex DGFX replaceall_matched begin GFX0 end;
into_all all label PEGP.DGFX set_label begin PEGP.GFX0 end;
but the behaviour is the same.
The system logs show it trying to sleep (19:18:07) and to wake (19:18:24) but there's no error that I recognise.
Code:
26.10.2014 19:18:07,591 WindowServer[96]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x7fcfe2747e20(2001)
26.10.2014 19:18:07,704 WindowServer[96]: device_generate_lock_screen_screenshot: authw 0x0(0), shield 0x7fcfe2747e20(2001)
26.10.2014 19:18:24,000 kernel[0]: full wake (reason 1) 104946 ms
26.10.2014 19:18:24,000 kernel[0]: IOPMrootDomain: idle cancel, state 2
26.10.2014 19:18:24,716 WindowServer[96]: CGXDisplayDidWakeNotification [104985607817]: posting kCGSDisplayDidWake
26.10.2014 19:18:24,717 WindowServer[96]: handle_will_sleep_auth_and_shield_windows: Deferring.
 
Status
Not open for further replies.
Back
Top