1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| /** @file
| Differentiated System Description Table Fields (DSDT)
|
| Copyright (c) 2014, ARM Ltd. All rights reserved.<BR>
| Copyright (c) 2018, Hisilicon Limited. All rights reserved.<BR>
| Copyright (c) 2016, Linaro Limited. All rights reserved.<BR>
| SPDX-License-Identifier: BSD-2-Clause-Patent
|
| Based on the files under ArmPlatformPkg/ArmJunoPkg/AcpiTables/
|
| **/
|
| Scope(_SB)
| {
| Device(PWRB) {
| Name(_HID, "PNP0C0C")
| Name(_UID, Zero)
| Method(_STA, 0x0, NotSerialized) {
| Return(0xF)
| }
| }
| }
|
|