blob: 2a8a1377264127936434e282f7cd1e2f3bf793da [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Damien Zammit43a1f782015-08-19 15:16:59 +10002
3#include <arch/ioapic.h>
4
5Name(_HID,EISAID("PNP0A08")) // PCIe
6Name(_CID,EISAID("PNP0A03")) // PCI
7
Damien Zammit43a1f782015-08-19 15:16:59 +10008Name(_BBN, 0)
9
10Device (MCHC)
11{
Angel Pons0b5673d2020-07-07 03:17:28 +020012 Name(_ADR, 0x00000000) /* 0:0.0 */
Damien Zammit43a1f782015-08-19 15:16:59 +100013
14 OperationRegion(MCHP, PCI_Config, 0x00, 0x100)
15 Field (MCHP, DWordAcc, NoLock, Preserve)
16 {
Angel Pons0b5673d2020-07-07 03:17:28 +020017 Offset (0x40), /* EPBAR */
18 EPEN, 1, /* Enable */
19 , 11,
20 EPBR, 24, /* EPBAR */
Damien Zammit43a1f782015-08-19 15:16:59 +100021
Angel Pons0b5673d2020-07-07 03:17:28 +020022 Offset (0x48), /* MCHBAR */
23 MHEN, 1, /* Enable */
24 , 13,
25 MHBR, 22, /* MCHBAR */
Damien Zammit43a1f782015-08-19 15:16:59 +100026
Angel Pons0b5673d2020-07-07 03:17:28 +020027 Offset (0x60), /* PCIec BAR */
28 PXEN, 1, /* Enable */
29 PXSZ, 2, /* BAR size */
30 , 23,
31 PXBR, 10, /* PCIe BAR */
Damien Zammit43a1f782015-08-19 15:16:59 +100032
Angel Pons0b5673d2020-07-07 03:17:28 +020033 Offset (0x68), /* DMIBAR */
34 DMEN, 1, /* Enable */
35 , 11,
36 DMBR, 24, /* DMIBAR */
Damien Zammit43a1f782015-08-19 15:16:59 +100037
Angel Pons0b5673d2020-07-07 03:17:28 +020038 /* ... */
Damien Zammit43a1f782015-08-19 15:16:59 +100039
Angel Pons0b5673d2020-07-07 03:17:28 +020040 Offset (0x90), /* PAM0 */
Damien Zammit43a1f782015-08-19 15:16:59 +100041 , 4,
42 PM0H, 2,
43 , 2,
Angel Pons0b5673d2020-07-07 03:17:28 +020044 Offset (0x91), /* PAM1 */
Damien Zammit43a1f782015-08-19 15:16:59 +100045 PM1L, 2,
46 , 2,
47 PM1H, 2,
48 , 2,
Angel Pons0b5673d2020-07-07 03:17:28 +020049 Offset (0x92), /* PAM2 */
Damien Zammit43a1f782015-08-19 15:16:59 +100050 PM2L, 2,
51 , 2,
52 PM2H, 2,
53 , 2,
Angel Pons0b5673d2020-07-07 03:17:28 +020054 Offset (0x93), /* PAM3 */
Damien Zammit43a1f782015-08-19 15:16:59 +100055 PM3L, 2,
56 , 2,
57 PM3H, 2,
58 , 2,
Angel Pons0b5673d2020-07-07 03:17:28 +020059 Offset (0x94), /* PAM4 */
Damien Zammit43a1f782015-08-19 15:16:59 +100060 PM4L, 2,
61 , 2,
62 PM4H, 2,
63 , 2,
Angel Pons0b5673d2020-07-07 03:17:28 +020064 Offset (0x95), /* PAM5 */
Damien Zammit43a1f782015-08-19 15:16:59 +100065 PM5L, 2,
66 , 2,
67 PM5H, 2,
68 , 2,
Angel Pons0b5673d2020-07-07 03:17:28 +020069 Offset (0x96), /* PAM6 */
Damien Zammit43a1f782015-08-19 15:16:59 +100070 PM6L, 2,
71 , 2,
72 PM6H, 2,
73 , 2,
74
Angel Pons0b5673d2020-07-07 03:17:28 +020075 Offset (0xa0), /* Top of Memory */
Damien Zammit43a1f782015-08-19 15:16:59 +100076 TOM, 8,
77
Angel Pons0b5673d2020-07-07 03:17:28 +020078 Offset (0xb0), /* Top of Low Used Memory */
Damien Zammit43a1f782015-08-19 15:16:59 +100079 , 4,
80 TLUD, 12,
81 }
Damien Zammit43a1f782015-08-19 15:16:59 +100082}
83
84Name (MCRS, ResourceTemplate()
85{
Angel Pons0b5673d2020-07-07 03:17:28 +020086 /* Bus Numbers */
Damien Zammit43a1f782015-08-19 15:16:59 +100087 WordBusNumber (ResourceProducer, MinFixed, MaxFixed, PosDecode,
88 0x0000, 0x0000, 0x00ff, 0x0000, 0x0100,,, PB00)
89
Angel Pons0b5673d2020-07-07 03:17:28 +020090 /* IO Region 0 */
Damien Zammit43a1f782015-08-19 15:16:59 +100091 DWordIO (ResourceProducer, MinFixed, MaxFixed, PosDecode, EntireRange,
92 0x0000, 0x0000, 0x0cf7, 0x0000, 0x0cf8,,, PI00)
93
Angel Pons0b5673d2020-07-07 03:17:28 +020094 /* PCI Config Space */
Damien Zammit43a1f782015-08-19 15:16:59 +100095 Io (Decode16, 0x0cf8, 0x0cf8, 0x0001, 0x0008)
96
Angel Pons0b5673d2020-07-07 03:17:28 +020097 /* IO Region 1 */
Damien Zammit43a1f782015-08-19 15:16:59 +100098 DWordIO (ResourceProducer, MinFixed, MaxFixed, PosDecode, EntireRange,
99 0x0000, 0x0d00, 0xffff, 0x0000, 0xf300,,, PI01)
100
Angel Pons0b5673d2020-07-07 03:17:28 +0200101 /* VGA memory (0xa0000-0xbffff) */
Damien Zammit43a1f782015-08-19 15:16:59 +1000102 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
103 Cacheable, ReadWrite,
104 0x00000000, 0x000a0000, 0x000bffff, 0x00000000,
105 0x00020000,,, ASEG)
106
Angel Pons0b5673d2020-07-07 03:17:28 +0200107 /* OPROM reserved (0xc0000-0xc3fff) */
Damien Zammit43a1f782015-08-19 15:16:59 +1000108 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
109 Cacheable, ReadWrite,
110 0x00000000, 0x000c0000, 0x000c3fff, 0x00000000,
111 0x00004000,,, OPR0)
112
Angel Pons0b5673d2020-07-07 03:17:28 +0200113 /* OPROM reserved (0xc4000-0xc7fff) */
Damien Zammit43a1f782015-08-19 15:16:59 +1000114 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
115 Cacheable, ReadWrite,
116 0x00000000, 0x000c4000, 0x000c7fff, 0x00000000,
117 0x00004000,,, OPR1)
118
Angel Pons0b5673d2020-07-07 03:17:28 +0200119 /* OPROM reserved (0xc8000-0xcbfff) */
Damien Zammit43a1f782015-08-19 15:16:59 +1000120 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
121 Cacheable, ReadWrite,
122 0x00000000, 0x000c8000, 0x000cbfff, 0x00000000,
123 0x00004000,,, OPR2)
124
Angel Pons0b5673d2020-07-07 03:17:28 +0200125 /* OPROM reserved (0xcc000-0xcffff) */
Damien Zammit43a1f782015-08-19 15:16:59 +1000126 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
127 Cacheable, ReadWrite,
128 0x00000000, 0x000cc000, 0x000cffff, 0x00000000,
129 0x00004000,,, OPR3)
130
Angel Pons0b5673d2020-07-07 03:17:28 +0200131 /* OPROM reserved (0xd0000-0xd3fff) */
Damien Zammit43a1f782015-08-19 15:16:59 +1000132 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
133 Cacheable, ReadWrite,
134 0x00000000, 0x000d0000, 0x000d3fff, 0x00000000,
135 0x00004000,,, OPR4)
136
Angel Pons0b5673d2020-07-07 03:17:28 +0200137 /* OPROM reserved (0xd4000-0xd7fff) */
Damien Zammit43a1f782015-08-19 15:16:59 +1000138 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
139 Cacheable, ReadWrite,
140 0x00000000, 0x000d4000, 0x000d7fff, 0x00000000,
141 0x00004000,,, OPR5)
142
Angel Pons0b5673d2020-07-07 03:17:28 +0200143 /* OPROM reserved (0xd8000-0xdbfff) */
Damien Zammit43a1f782015-08-19 15:16:59 +1000144 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
145 Cacheable, ReadWrite,
146 0x00000000, 0x000d8000, 0x000dbfff, 0x00000000,
147 0x00004000,,, OPR6)
148
Angel Pons0b5673d2020-07-07 03:17:28 +0200149 /* OPROM reserved (0xdc000-0xdffff) */
Damien Zammit43a1f782015-08-19 15:16:59 +1000150 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
151 Cacheable, ReadWrite,
152 0x00000000, 0x000dc000, 0x000dffff, 0x00000000,
153 0x00004000,,, OPR7)
154
Angel Pons0b5673d2020-07-07 03:17:28 +0200155 /* BIOS Extension (0xe0000-0xe3fff) */
Damien Zammit43a1f782015-08-19 15:16:59 +1000156 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
157 Cacheable, ReadWrite,
158 0x00000000, 0x000e0000, 0x000e3fff, 0x00000000,
159 0x00004000,,, ESG0)
160
Angel Pons0b5673d2020-07-07 03:17:28 +0200161 /* BIOS Extension (0xe4000-0xe7fff) */
Damien Zammit43a1f782015-08-19 15:16:59 +1000162 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
163 Cacheable, ReadWrite,
164 0x00000000, 0x000e4000, 0x000e7fff, 0x00000000,
165 0x00004000,,, ESG1)
166
Angel Pons0b5673d2020-07-07 03:17:28 +0200167 /* BIOS Extension (0xe8000-0xebfff) */
Damien Zammit43a1f782015-08-19 15:16:59 +1000168 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
169 Cacheable, ReadWrite,
170 0x00000000, 0x000e8000, 0x000ebfff, 0x00000000,
171 0x00004000,,, ESG2)
172
Angel Pons0b5673d2020-07-07 03:17:28 +0200173 /* BIOS Extension (0xec000-0xeffff) */
Damien Zammit43a1f782015-08-19 15:16:59 +1000174 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
175 Cacheable, ReadWrite,
176 0x00000000, 0x000ec000, 0x000effff, 0x00000000,
177 0x00004000,,, ESG3)
178
Angel Pons0b5673d2020-07-07 03:17:28 +0200179 /* System BIOS (0xf0000-0xfffff) */
Damien Zammit43a1f782015-08-19 15:16:59 +1000180 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
181 Cacheable, ReadWrite,
182 0x00000000, 0x000f0000, 0x000fffff, 0x00000000,
183 0x00010000,,, FSEG)
184
Angel Pons0b5673d2020-07-07 03:17:28 +0200185 /* PCI Memory Region (Top of memory-0xfebfffff) */
Damien Zammit43a1f782015-08-19 15:16:59 +1000186 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
187 Cacheable, ReadWrite,
188 0x00000000, 0x00000000, 0xfebfffff, 0x00000000,
189 IO_APIC_ADDR,,, PM01)
190
Angel Pons0b5673d2020-07-07 03:17:28 +0200191 /* TPM Area (0xfed40000-0xfed44fff) */
Damien Zammit43a1f782015-08-19 15:16:59 +1000192 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
193 Cacheable, ReadWrite,
194 0x00000000, 0xfed40000, 0xfed44fff, 0x00000000,
195 0x00005000,,, TPMR)
196})
197
Angel Pons0b5673d2020-07-07 03:17:28 +0200198/* Current Resource Settings */
Damien Zammit43a1f782015-08-19 15:16:59 +1000199Method (_CRS, 0, Serialized)
200{
Angel Pons0b5673d2020-07-07 03:17:28 +0200201 /* Find PCI resource area in MCRS */
Damien Zammit43a1f782015-08-19 15:16:59 +1000202 CreateDwordField(MCRS, ^PM01._MIN, PMIN)
203 CreateDwordField(MCRS, ^PM01._MAX, PMAX)
204 CreateDwordField(MCRS, ^PM01._LEN, PLEN)
205
Angel Pons0b5673d2020-07-07 03:17:28 +0200206 /*
207 * Fix up PCI memory region:
208 * Enter actual TOLUD. The TOLUD register contains bits 20-31 of
209 * the top of memory address.
210 */
Angel Pons7c71f7d2020-07-07 03:24:41 +0200211 PMIN = ^MCHC.TLUD << 20
212 PLEN = PMAX - PMIN + 1
Damien Zammit43a1f782015-08-19 15:16:59 +1000213
214 Return (MCRS)
215}