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
50
51
| /** @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) 2018, Linaro Limited. All rights reserved.<BR>
| SPDX-License-Identifier: BSD-2-Clause-Patent
|
| Based on the files under ArmPlatformPkg/ArmJunoPkg/AcpiTables/
|
| **/
|
| Scope(_SB)
| {
| Device(SEC0) {
| Name (_HID, "HISI0200")
| Name(_UID, 0)
| Name(_CCA, 1)
| Name (_CRS, ResourceTemplate () {
| //Memory32Fixed (ReadWrite, 0x602E0000, 0x10000)
| QWordMemory (
| ResourceConsumer,
| ,
| MinFixed,
| MaxFixed,
| NonCacheable,
| ReadWrite,
| 0x0,
| 0x141000000,
| 0x141ffffff,
| 0x0,
| 0x01000000
| )
| Interrupt (ResourceConsumer, Edge, ActiveHigh, Exclusive, 0, "\\_SB.MBI3")
| {
| 624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,
| 640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655
| }
| })
| }
|
| Device(SEC1) {
| Name(_HID, "HISI0200")
| Name(_UID, 1)
| Name (_CRS, ResourceTemplate () {
| Interrupt(ResourceConsumer, Level, ActiveHigh, Exclusive)
| { 466,467
| }
| })
| }
| }
|
|