mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
52 lines
1.6 KiB
Plaintext
52 lines
1.6 KiB
Plaintext
/*
|
|
* Intel ACPI Component Architecture
|
|
* AML/ASL+ Disassembler version 20190215 (64-bit version)
|
|
* Copyright (c) 2000 - 2019 Intel Corporation
|
|
*
|
|
* Disassembling to symbolic ASL+ operators
|
|
*
|
|
* Disassembly of iASLTMpFbq.aml, Wed Apr 10 11:34:45 2019
|
|
*
|
|
* Original Table Header:
|
|
* Signature "SSDT"
|
|
* Length 0x0000008C (140)
|
|
* Revision 0x02
|
|
* Checksum 0x46
|
|
* OEM ID "APPLE "
|
|
* OEM Table ID "SsdtEC"
|
|
* OEM Revision 0x00001000 (4096)
|
|
* Compiler ID "INTL"
|
|
* Compiler Version 0x20161210 (538317328)
|
|
*/
|
|
DefinitionBlock ("", "SSDT", 2, "APPLE ", "SsdtEC", 0x00001000)
|
|
{
|
|
External (_SB_.PCI0.LPCB, DeviceObj)
|
|
External (UMAP, IntObj)
|
|
|
|
Scope (\_SB.PCI0.LPCB)
|
|
{
|
|
Device (EC)
|
|
{
|
|
Name (_HID, EisaId ("PNP0C09") /* Embedded Controller Device */) // _HID: Hardware ID
|
|
Name (_UID, Zero) // _UID: Unique ID
|
|
Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings
|
|
{
|
|
IO (Decode16,
|
|
0x0062, // Range Minimum
|
|
0x0062, // Range Maximum
|
|
0x00, // Alignment
|
|
0x01, // Length
|
|
)
|
|
IO (Decode16,
|
|
0x0066, // Range Minimum
|
|
0x0066, // Range Maximum
|
|
0x00, // Alignment
|
|
0x01, // Length
|
|
)
|
|
})
|
|
Name (_GPE, 0x17) // _GPE: General Purpose Events
|
|
}
|
|
}
|
|
}
|
|
|