0
0
mirror of https://github.com/edk2-porting/edk2-msm synced 2025-06-07 23:11:32 +00:00
Files
Xilin Wu 934a951950 Upload msm8998 files
for someone else to test, my system seems to be broken
2022-10-14 21:26:10 +08:00

27 lines
517 B
C
Executable File

//
// This file contains ASL Bridge Device definitions
//
//
// ASL Bridge Device
//
Device (ABD)
{
Name (_HID, "QCOM003F") // _HID: Hardware ID
Name (_UID, Zero) // _UID: Unique ID
OperationRegion (ROP1, GenericSerialBus, Zero, 0x0100)
Name (AVBL, Zero)
Method (_REG, 2, NotSerialized) // _REG: Region Availability
{
If ((Arg0 == 0x09))
{
AVBL = Arg1
}
}
Method (_STA, 0, NotSerialized) // _STA: Status
{
Return (0xF)
}
}