Contribute
Register

[SOLVED]Shutdown,reboot and sleep,wake up issue

Status
Not open for further replies.
I already patch this in DSDT..
Code:
into method label _REG parent_hid PNP0C09 insert
begin
//added to turn nvidia/radeon off\n
If (LAnd(LEqual(Arg0,3),LEqual(Arg1,1)))\n
{\n
    External(\_SB.PCI0.PEG0.PEGP._OFF, MethodObj)\n
    \_SB.PCI0.PEG0.PEGP._OFF()\n
}\n
end;

CPU temperature may be high..
View attachment 346954

What is _OFF or HGOF?

You cannot call _OFF from _REG.
Refer to the guide:
https://www.tonymacx86.com/threads/guide-disabling-discrete-graphics-in-dual-gpu-laptops.163772/
 

But GPU is disable.....

Can I edit/replace_REG and modify with this in DSDT.....
Code:
Method (_REG, 2, NotSerialized)  // _REG: Region Availability
            {
                If (LEqual (Arg0, 0x03))
                {
                    Store (Arg1, ECFL)
                }
                //added to turn nvidia/radeon off
                If (LAnd(LEqual(Arg0,3),LEqual(Arg1,1)))
                {
                    \_SB.PCI0.LPCB.EC0.SPIN (0x96, Zero)
                }
            }
 
But GPU is disable.....

Can I edit/replace_REG and modify with this in DSDT.....
Code:
Method (_REG, 2, NotSerialized)  // _REG: Region Availability
            {
                If (LEqual (Arg0, 0x03))
                {
                    Store (Arg1, ECFL)
                }
                //added to turn nvidia/radeon off
                If (LAnd(LEqual(Arg0,3),LEqual(Arg1,1)))
                {
                    \_SB.PCI0.LPCB.EC0.SPIN (0x96, Zero)
                }
            }

You must read the guide carefully:
https://www.tonymacx86.com/threads/guide-disabling-discrete-graphics-in-dual-gpu-laptops.163772/

If you have an issue, you must attach PR files as per FAQ and describe the problem clearly.
 

Attachments

  • Problem Report-Update.zip
    2 MB · Views: 50
The patch you did to DSDT.aml ECDV._REG is wrong.
No need at all.
Just call _OFF from _INI in SSDT-7.

Thanks for your awesome reply.

You mean, no need patch for disabling the GPU in DSDT.just need ssd-7 patch for disabling the GPU.
 
Status
Not open for further replies.
Back
Top