Skip to content

Commit

Permalink
update to oc0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xa1st committed Apr 22, 2022
1 parent a4ffeb4 commit cd26d3c
Show file tree
Hide file tree
Showing 124 changed files with 1,373 additions and 2,885 deletions.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-ALS0.aml
Binary file not shown.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-AWAC-DISABLE.aml
Binary file not shown.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-BRG0.aml
Binary file not shown.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-EC-USBX.aml
Binary file not shown.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-EC.aml
Binary file not shown.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-EHCx-DISABLE.aml
Binary file not shown.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-HV-CPU.aml
Binary file not shown.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-HV-PLUG.aml
Binary file not shown.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-HV-VMBUS.aml
Binary file not shown.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-IMEI.aml
Binary file not shown.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-PLUG.aml
Binary file not shown.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-PMC.aml
Binary file not shown.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-PNLF.aml
Binary file not shown.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-PNLFCFL.aml
Binary file not shown.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-RTC0-RANGE.aml
Binary file not shown.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-RTC0.aml
Binary file not shown.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-SBUS-MCHC.aml
Binary file not shown.
Binary file removed Docs/AcpiSamples/Binaries/SSDT-UNC.aml
Binary file not shown.
File renamed without changes.
4 changes: 2 additions & 2 deletions .../AcpiSamples/Source/SSDT-AWAC-DISABLE.dsl → Docs/AcpiSamples/SSDT-AWAC.dsl
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
* and allows the implementation of the time source to be abstracted from the OSPM.
*/

DefinitionBlock ("", "SSDT", 2, "ACDT", "NOAWAC", 0x00000000)
DefinitionBlock ("", "SSDT", 2, "ACDT", "AWAC", 0x00000000)
{
External (STAS, IntObj)

Scope (\)
Scope (_SB)
{
Method (_INI, 0, NotSerialized) // _INI: Initialize
{
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion .../AcpiSamples/Source/SSDT-EHCx-DISABLE.dsl → Docs/AcpiSamples/SSDT-EHCx_OFF.dsl
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* WARN: for some motherboards you need to use either "EH1D = One" or "EH2D = One" but not both!
* This is because for some motherboards, device (EHC1 or EHC2) is used by macOS. Check the IOReg.
*/
DefinitionBlock ("", "SSDT", 2, "ACDT", "NOEHCx", 0x00001000)
DefinitionBlock ("", "SSDT", 2, "ACDT", "EHCx_OFF", 0x00001000)
{
Scope (\)
{
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
29 changes: 29 additions & 0 deletions Docs/AcpiSamples/Source/SSDT-SBUS-MCHC.dsl → Docs/AcpiSamples/SSDT-SBUS-MCHC.dsl
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,33 @@ DefinitionBlock ("", "SSDT", 2, "ACDT", "MCHCSBUS", 0x00000000)
}
}
}

Method (DTGP, 5, NotSerialized)
{
If ((Arg0 == ToUUID ("a0b5b7c6-1318-441c-b0c9-fe695eaf949b")))
{
If ((Arg1 == One))
{
If ((Arg2 == Zero))
{
Arg4 = Buffer (One)
{
0x03 // .
}
Return (One)
}

If ((Arg2 == One))
{
Return (One)
}
}
}

Arg4 = Buffer (One)
{
0x00 // .
}
Return (Zero)
}
}
File renamed without changes.
Loading

0 comments on commit cd26d3c

Please sign in to comment.