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
| /** @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) 2015, Linaro Limited. All rights reserved.<BR>
| SPDX-License-Identifier: BSD-2-Clause-Patent
|
| Based on the files under ArmPlatformPkg/ArmJunoPkg/AcpiTables/
|
| **/
| Scope(_SB)
| {
| Device(LOC0) {
| Name(_HID, "HISI02F1")
| Name(_UID, 0)
| Name (_CRS, ResourceTemplate () {
| Interrupt(ResourceConsumer, Level, ActiveHigh, Exclusive)
| {
| 488,489
| }
| })
| }
|
| Device(MCT0) {
| Name(_HID, "HISI0301")
| Name(_UID, 0)
| Name (_CRS, ResourceTemplate () {
| Interrupt (ResourceConsumer, Edge, ActiveHigh, Exclusive, 0, "\\_SB.MBI4")
| {
| 656
| }
| })
| }
| }
|
|