-
Notifications
You must be signed in to change notification settings - Fork 1
/
SSDT-ARPT.dsl
50 lines (47 loc) · 1.27 KB
/
SSDT-ARPT.dsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
* Intel ACPI Component Architecture
* AML/ASL+ Disassembler version 20200925 (64-bit version)
* Copyright (c) 2000 - 2020 Intel Corporation
*
* Disassembling to symbolic ASL+ operators
*
* Disassembly of iASLbYT62M.aml, Sun May 19 13:57:10 2024
*
* Original Table Header:
* Signature "SSDT"
* Length 0x000000B1 (177)
* Revision 0x02
* Checksum 0xC1
* OEM ID "ArTosh"
* OEM Table ID "ARPT"
* OEM Revision 0x00001000 (4096)
* Compiler ID "INTL"
* Compiler Version 0x20200925 (538970405)
*/
DefinitionBlock ("", "SSDT", 2, "ArTosh", "ARPT", 0x00001000)
{
External (_SB_.PCI0, DeviceObj)
External (_SB_.PCI0.RP01, DeviceObj)
External (_SB_.PCI0.RP01.PXSX, DeviceObj)
If (_OSI ("Darwin"))
{
Scope (\_SB.PCI0.RP01.PXSX)
{
Method (_STA, 0, NotSerialized) // _STA: Status
{
Return (Zero)
}
}
Scope (\_SB.PCI0.RP01)
{
Device (ARPT)
{
Name (_ADR, Zero) // _ADR: Address
Method (_STA, 0, NotSerialized) // _STA: Status
{
Return (0x0F)
}
}
}
}
}