Skip to content

Commit

Permalink
Update SSDT-PLUG.dsl
Browse files Browse the repository at this point in the history
\_SB.PR00 for i5 9300H on Nitro 5 AN517-51-55NT
  • Loading branch information
Tiago-Egas authored Oct 21, 2023
1 parent 5a7edbe commit 56c224d
Showing 1 changed file with 0 additions and 112 deletions.
112 changes: 0 additions & 112 deletions Docs/AcpiSamples/Source/SSDT-PLUG.dsl
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,6 @@
DefinitionBlock ("", "SSDT", 2, "ACDT", "CpuPlug", 0x00003000)
{
External (_SB_.CPU0, ProcessorObj)
External (_PR_.CPU0, ProcessorObj)
External (_PR_.CP00, ProcessorObj)
External (_PR_.C000, ProcessorObj)
External (_PR_.P000, ProcessorObj)
External (_SB_.PR00, ProcessorObj)
External (_PR_.PR00, ProcessorObj)
External (_SB_.SCK0.CP00, ProcessorObj)
External (_SB_.SCK0.PR00, ProcessorObj)

Method (PMPM, 4, NotSerialized) {
If (LEqual (Arg2, Zero)) {
Expand All @@ -32,32 +24,6 @@ DefinitionBlock ("", "SSDT", 2, "ACDT", "CpuPlug", 0x00003000)
})
}

If (CondRefOf (\_SB.CPU0)) {
If ((ObjectType (\_SB.CPU0) == 0x0C)) {
Scope (\_SB.CPU0) {
If (_OSI ("Darwin")) {
Method (_DSM, 4, NotSerialized)
{
Return (PMPM (Arg0, Arg1, Arg2, Arg3))
}
}
}
}
}

If (CondRefOf (\_PR.CPU0)) {
If ((ObjectType (\_PR.CPU0) == 0x0C)) {
Scope (\_PR.CPU0) {
If (_OSI ("Darwin")) {
Method (_DSM, 4, NotSerialized)
{
Return (PMPM (Arg0, Arg1, Arg2, Arg3))
}
}
}
}
}

If (CondRefOf (\_SB.PR00)) {
If ((ObjectType (\_SB.PR00) == 0x0C)) {
Scope (\_SB.PR00) {
Expand All @@ -70,82 +36,4 @@ DefinitionBlock ("", "SSDT", 2, "ACDT", "CpuPlug", 0x00003000)
}
}
}

If (CondRefOf (\_PR.CP00)) {
If ((ObjectType (\_PR.CP00) == 0x0C)) {
Scope (\_PR.CP00) {
If (_OSI ("Darwin")) {
Method (_DSM, 4, NotSerialized)
{
Return (PMPM (Arg0, Arg1, Arg2, Arg3))
}
}
}
}
}

If (CondRefOf (\_PR.C000)) {
If ((ObjectType (\_PR.C000) == 0x0C)) {
Scope (\_PR.C000) {
If (_OSI ("Darwin")) {
Method (_DSM, 4, NotSerialized)
{
Return (PMPM (Arg0, Arg1, Arg2, Arg3))
}
}
}
}
}

If (CondRefOf (\_PR.P000)) {
If ((ObjectType (\_PR.P000) == 0x0C)) {
Scope (\_PR.P000) {
If (_OSI ("Darwin")) {
Method (_DSM, 4, NotSerialized)
{
Return (PMPM (Arg0, Arg1, Arg2, Arg3))
}
}
}
}
}

If (CondRefOf (\_PR.PR00)) {
If ((ObjectType (\_PR.PR00) == 0x0C)) {
Scope (\_PR.PR00) {
If (_OSI ("Darwin")) {
Method (_DSM, 4, NotSerialized)
{
Return (PMPM (Arg0, Arg1, Arg2, Arg3))
}
}
}
}
}

If (CondRefOf (\_SB.SCK0.CP00)) {
If ((ObjectType (\_SB.SCK0.CP00) == 0x0C)) {
Scope (\_SB.SCK0.CP00) {
If (_OSI ("Darwin")) {
Method (_DSM, 4, NotSerialized)
{
Return (PMPM (Arg0, Arg1, Arg2, Arg3))
}
}
}
}
}

If (CondRefOf (\_SB.SCK0.PR00)) {
If ((ObjectType (\_SB.SCK0.PR00) == 0x0C)) {
Scope (\_SB.SCK0.PR00) {
If (_OSI ("Darwin")) {
Method (_DSM, 4, NotSerialized)
{
Return (PMPM (Arg0, Arg1, Arg2, Arg3))
}
}
}
}
}
}

0 comments on commit 56c224d

Please sign in to comment.