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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
| /** @file
| * Secondary System Description Table (SSDT)
| *
| * Copyright (c) 2018 - 2021, ARM Limited. All rights reserved.
| *
| * SPDX-License-Identifier: BSD-2-Clause-Patent
| *
| **/
|
| #include "SgiAcpiHeader.h"
|
| DefinitionBlock("SsdtPci.aml", "SSDT", 2, "ARMLTD", "ARMSGI", EFI_ACPI_ARM_OEM_REVISION) {
| Scope (_SB) {
| // PCI Root Complex
| Device (PCI0) {
| Name (_HID, EISAID("PNP0A08")) // PCI Express Root Bridge
| Name (_CID, EISAID("PNP0A03")) // Compatible PCI Root Bridge
| Name (_SEG, Zero) // PCI Segment Group number
| Name (_BBN, Zero) // PCI Base Bus Number
| Name (_CCA, 1) // Cache Coherency Attribute
|
| // Root complex resources
| Method (_CRS, 0, Serialized) {
| Name (RBUF, ResourceTemplate () {
| WordBusNumber ( // Bus numbers assigned to this root
| ResourceProducer,
| MinFixed,
| MaxFixed,
| PosDecode,
| 0, // AddressGranularity
| 0, // AddressMinimum - Minimum Bus Number
| 255, // AddressMaximum - Maximum Bus Number
| 0, // AddressTranslation - Set to 0
| 256 // RangeLength - Number of Busses
| )
|
| DWordMemory ( // 32-bit BAR Windows
| ResourceProducer,
| PosDecode,
| MinFixed,
| MaxFixed,
| Cacheable,
| ReadWrite,
| 0x00000000, // Granularity
| 0x70000000, // Min Base Address
| 0x777FFFFF, // Max Base Address
| 0x00000000, // Translate
| 0x07800000 // Length
| )
|
| QWordMemory ( // 64-bit BAR Windows
| ResourceProducer,
| PosDecode,
| MinFixed,
| MaxFixed,
| Cacheable,
| ReadWrite,
| 0x00000000, // Granularity
| 0x500000000, // Min Base Address
| 0x7FFFFFFFF, // Max Base Address
| 0x00000000, // Translate
| 0x300000000 // Length
| )
|
| DWordIo ( // IO window
| ResourceProducer,
| MinFixed,
| MaxFixed,
| PosDecode,
| EntireRange,
| 0x00000000, // Granularity
| 0x00000000, // Min Base Address
| 0x007FFFFF, // Max Base Address
| 0x77800000, // Translate
| 0x00800000, // Length
| ,
| ,
| ,
| TypeTranslation
| )
| }) // Name (RBUF)
|
| Return (RBUF)
| } // Method (_CRS)
| }
| }
| }
|
|