Jump to content

AGPM Patch


Meowthra
 Share

1 post in this topic

Recommended Posts

#####################################
### AGPM X86PlatformPlugin
#####################################
Clover New Version:

    <key>ACPI</key>
    <dict>
        <key>SSDT</key>
        <dict>
            <key>Generate</key>
            <dict>
                <key>PluginType</key>
                <true/>
            </dict>
            <key>PluginType</key>
            <string>1</string>
        </dict>
    </dict>

or Using SSDT
Clover setting:

    <key>ACPI</key>
    <dict>
        <key>DropTables</key>
        <array>
            <dict>
                <key>Signature</key>
                <string>SSDT</string>
                <key>TableId</key>
                <string>CpuPm</string>
            </dict>
        </array>
    </dict>

SSDT:

DefinitionBlock ("iASLoFN85L.aml", "SSDT", 1, "PmRef", "CpuPm", 0x00003000)
{
    External (\_PR_.CPU0, DeviceObj)
    Scope (\_PR.CPU0)
    {
        Method (_DSM, 4, NotSerialized)
        {
            If (LEqual (Arg2, Zero))
            {
                Return (Buffer (One)
                {
                    0x03
                })
            }
            Return (Package (0x02)
            {
                "plugin-type", 
                One
            })
        }
    }
}

Compile as SSDT.aml

copy SSDT.aml to EFI/CLOVER/ACPI/patched/

 

5yxuWVw.png

 

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

 Share

×
×
  • Create New...