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
| /** @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(RDE0) {
| Name(_HID, "HISI0201")
| Name(_UID, 0)
| Name(_CCA, 1)
| Name (_CRS, ResourceTemplate () {
| //Memory32Fixed (ReadWrite, 0x602E0000, 0x10000)
| QWordMemory (
| ResourceConsumer,
| ,
| MinFixed,
| MaxFixed,
| NonCacheable,
| ReadWrite,
| 0x0,
| 0x209000000,
| 0x209ffffff,
| 0x0,
| 0x01000000
| )
|
| Interrupt (ResourceConsumer, Edge, ActiveHigh, Exclusive, 0, "\\_SB.MBI2")
| { 586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,
| 602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617
| }
| })
| }
| }
|
|