blob: 2a8a1377264127936434e282f7cd1e2f3bf793da [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Patrick Georgi2efc8802012-11-06 11:03:53 +01002
3#include <arch/ioapic.h>
4
5Name(_HID,EISAID("PNP0A08")) // PCIe
6Name(_CID,EISAID("PNP0A03")) // PCI
7
Patrick Georgi2efc8802012-11-06 11:03:53 +01008Name(_BBN, 0)
9
10Device (MCHC)
11{
Angel Ponsd85d7e22020-07-07 12:51:57 +020012 Name(_ADR, 0x00000000) /* 0:0.0 */
Patrick Georgi2efc8802012-11-06 11:03:53 +010013
14 OperationRegion(MCHP, PCI_Config, 0x00, 0x100)
15 Field (MCHP, DWordAcc, NoLock, Preserve)
16 {
Angel Ponsd85d7e22020-07-07 12:51:57 +020017 Offset (0x40), /* EPBAR */
18 EPEN, 1, /* Enable */
19 , 11,
20 EPBR, 24, /* EPBAR */
Patrick Georgi2efc8802012-11-06 11:03:53 +010021
Angel Ponsd85d7e22020-07-07 12:51:57 +020022 Offset (0x48), /* MCHBAR */
23 MHEN, 1, /* Enable */
24 , 13,
25 MHBR, 22, /* MCHBAR */
Patrick Georgi2efc8802012-11-06 11:03:53 +010026
Angel Ponsd85d7e22020-07-07 12:51:57 +020027 Offset (0x60), /* PCIec BAR */
28 PXEN, 1, /* Enable */
29 PXSZ, 2, /* BAR size */
30 , 23,
31 PXBR, 10, /* PCIe BAR */
Patrick Georgi2efc8802012-11-06 11:03:53 +010032
Angel Ponsd85d7e22020-07-07 12:51:57 +020033 Offset (0x68), /* DMIBAR */
34 DMEN, 1, /* Enable */
35 , 11,
36 DMBR, 24, /* DMIBAR */
Patrick Georgi2efc8802012-11-06 11:03:53 +010037
Angel Ponsd85d7e22020-07-07 12:51:57 +020038 /* ... */
Patrick Georgi2efc8802012-11-06 11:03:53 +010039
Angel Ponsd85d7e22020-07-07 12:51:57 +020040 Offset (0x90), /* PAM0 */
Patrick Georgi2efc8802012-11-06 11:03:53 +010041 , 4,
42 PM0H, 2,
43 , 2,
Angel Ponsd85d7e22020-07-07 12:51:57 +020044 Offset (0x91), /* PAM1 */
Patrick Georgi2efc8802012-11-06 11:03:53 +010045 PM1L, 2,
46 , 2,
47 PM1H, 2,
48 , 2,
Angel Ponsd85d7e22020-07-07 12:51:57 +020049 Offset (0x92), /* PAM2 */
Patrick Georgi2efc8802012-11-06 11:03:53 +010050 PM2L, 2,
51 , 2,
52 PM2H, 2,
53 , 2,
Angel Ponsd85d7e22020-07-07 12:51:57 +020054 Offset (0x93), /* PAM3 */
Patrick Georgi2efc8802012-11-06 11:03:53 +010055 PM3L, 2,
56 , 2,
57 PM3H, 2,
58 , 2,
Angel Ponsd85d7e22020-07-07 12:51:57 +020059 Offset (0x94), /* PAM4 */
Patrick Georgi2efc8802012-11-06 11:03:53 +010060 PM4L, 2,
61 , 2,
62 PM4H, 2,
63 , 2,
Angel Ponsd85d7e22020-07-07 12:51:57 +020064 Offset (0x95), /* PAM5 */
Patrick Georgi2efc8802012-11-06 11:03:53 +010065 PM5L, 2,
66 , 2,
67 PM5H, 2,
68 , 2,
Angel Ponsd85d7e22020-07-07 12:51:57 +020069 Offset (0x96), /* PAM6 */
Patrick Georgi2efc8802012-11-06 11:03:53 +010070 PM6L, 2,
71 , 2,
72 PM6H, 2,
73 , 2,
74
Angel Ponsd85d7e22020-07-07 12:51:57 +020075 Offset (0xa0), /* Top of Memory */
Patrick Georgi2efc8802012-11-06 11:03:53 +010076 TOM, 8,
77
Angel Ponsd85d7e22020-07-07 12:51:57 +020078 Offset (0xb0), /* Top of Low Used Memory */
Patrick Georgi2efc8802012-11-06 11:03:53 +010079 , 4,
80 TLUD, 12,
81 }
Patrick Georgi2efc8802012-11-06 11:03:53 +010082}
83
Martin Rothfc706432015-08-18 16:56:05 -060084Name (MCRS, ResourceTemplate()
85{
Angel Ponsd85d7e22020-07-07 12:51:57 +020086 /* Bus Numbers */
Martin Rothfc706432015-08-18 16:56:05 -060087 WordBusNumber (ResourceProducer, MinFixed, MaxFixed, PosDecode,
88 0x0000, 0x0000, 0x00ff, 0x0000, 0x0100,,, PB00)
89
Angel Ponsd85d7e22020-07-07 12:51:57 +020090 /* IO Region 0 */
Martin Rothfc706432015-08-18 16:56:05 -060091 DWordIO (ResourceProducer, MinFixed, MaxFixed, PosDecode, EntireRange,
92 0x0000, 0x0000, 0x0cf7, 0x0000, 0x0cf8,,, PI00)
93
Angel Ponsd85d7e22020-07-07 12:51:57 +020094 /* PCI Config Space */
Martin Rothfc706432015-08-18 16:56:05 -060095 Io (Decode16, 0x0cf8, 0x0cf8, 0x0001, 0x0008)
96
Angel Ponsd85d7e22020-07-07 12:51:57 +020097 /* IO Region 1 */
Martin Rothfc706432015-08-18 16:56:05 -060098 DWordIO (ResourceProducer, MinFixed, MaxFixed, PosDecode, EntireRange,
99 0x0000, 0x0d00, 0xffff, 0x0000, 0xf300,,, PI01)
100
Angel Ponsd85d7e22020-07-07 12:51:57 +0200101 /* VGA memory (0xa0000-0xbffff) */
Martin Rothfc706432015-08-18 16:56:05 -0600102 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
103 Cacheable, ReadWrite,
104 0x00000000, 0x000a0000, 0x000bffff, 0x00000000,
105 0x00020000,,, ASEG)
106
Angel Ponsd85d7e22020-07-07 12:51:57 +0200107 /* OPROM reserved (0xc0000-0xc3fff) */
Martin Rothfc706432015-08-18 16:56:05 -0600108 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
109 Cacheable, ReadWrite,
110 0x00000000, 0x000c0000, 0x000c3fff, 0x00000000,
111 0x00004000,,, OPR0)
112
Angel Ponsd85d7e22020-07-07 12:51:57 +0200113 /* OPROM reserved (0xc4000-0xc7fff) */
Martin Rothfc706432015-08-18 16:56:05 -0600114 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
115 Cacheable, ReadWrite,
116 0x00000000, 0x000c4000, 0x000c7fff, 0x00000000,
117 0x00004000,,, OPR1)
118
Angel Ponsd85d7e22020-07-07 12:51:57 +0200119 /* OPROM reserved (0xc8000-0xcbfff) */
Martin Rothfc706432015-08-18 16:56:05 -0600120 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
121 Cacheable, ReadWrite,
122 0x00000000, 0x000c8000, 0x000cbfff, 0x00000000,
123 0x00004000,,, OPR2)
124
Angel Ponsd85d7e22020-07-07 12:51:57 +0200125 /* OPROM reserved (0xcc000-0xcffff) */
Martin Rothfc706432015-08-18 16:56:05 -0600126 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
127 Cacheable, ReadWrite,
128 0x00000000, 0x000cc000, 0x000cffff, 0x00000000,
129 0x00004000,,, OPR3)
130
Angel Ponsd85d7e22020-07-07 12:51:57 +0200131 /* OPROM reserved (0xd0000-0xd3fff) */
Martin Rothfc706432015-08-18 16:56:05 -0600132 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
133 Cacheable, ReadWrite,
134 0x00000000, 0x000d0000, 0x000d3fff, 0x00000000,
135 0x00004000,,, OPR4)
136
Angel Ponsd85d7e22020-07-07 12:51:57 +0200137 /* OPROM reserved (0xd4000-0xd7fff) */
Martin Rothfc706432015-08-18 16:56:05 -0600138 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
139 Cacheable, ReadWrite,
140 0x00000000, 0x000d4000, 0x000d7fff, 0x00000000,
141 0x00004000,,, OPR5)
142
Angel Ponsd85d7e22020-07-07 12:51:57 +0200143 /* OPROM reserved (0xd8000-0xdbfff) */
Martin Rothfc706432015-08-18 16:56:05 -0600144 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
145 Cacheable, ReadWrite,
146 0x00000000, 0x000d8000, 0x000dbfff, 0x00000000,
147 0x00004000,,, OPR6)
148
Angel Ponsd85d7e22020-07-07 12:51:57 +0200149 /* OPROM reserved (0xdc000-0xdffff) */
Martin Rothfc706432015-08-18 16:56:05 -0600150 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
151 Cacheable, ReadWrite,
152 0x00000000, 0x000dc000, 0x000dffff, 0x00000000,
153 0x00004000,,, OPR7)
154
Angel Ponsd85d7e22020-07-07 12:51:57 +0200155 /* BIOS Extension (0xe0000-0xe3fff) */
Martin Rothfc706432015-08-18 16:56:05 -0600156 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
157 Cacheable, ReadWrite,
158 0x00000000, 0x000e0000, 0x000e3fff, 0x00000000,
159 0x00004000,,, ESG0)
160
Angel Ponsd85d7e22020-07-07 12:51:57 +0200161 /* BIOS Extension (0xe4000-0xe7fff) */
Martin Rothfc706432015-08-18 16:56:05 -0600162 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
163 Cacheable, ReadWrite,
164 0x00000000, 0x000e4000, 0x000e7fff, 0x00000000,
165 0x00004000,,, ESG1)
166
Angel Ponsd85d7e22020-07-07 12:51:57 +0200167 /* BIOS Extension (0xe8000-0xebfff) */
Martin Rothfc706432015-08-18 16:56:05 -0600168 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
169 Cacheable, ReadWrite,
170 0x00000000, 0x000e8000, 0x000ebfff, 0x00000000,
171 0x00004000,,, ESG2)
172
Angel Ponsd85d7e22020-07-07 12:51:57 +0200173 /* BIOS Extension (0xec000-0xeffff) */
Martin Rothfc706432015-08-18 16:56:05 -0600174 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
175 Cacheable, ReadWrite,
176 0x00000000, 0x000ec000, 0x000effff, 0x00000000,
177 0x00004000,,, ESG3)
178
Angel Ponsd85d7e22020-07-07 12:51:57 +0200179 /* System BIOS (0xf0000-0xfffff) */
Martin Rothfc706432015-08-18 16:56:05 -0600180 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
181 Cacheable, ReadWrite,
182 0x00000000, 0x000f0000, 0x000fffff, 0x00000000,
183 0x00010000,,, FSEG)
184
Angel Ponsd85d7e22020-07-07 12:51:57 +0200185 /* PCI Memory Region (Top of memory-0xfebfffff) */
Martin Rothfc706432015-08-18 16:56:05 -0600186 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
187 Cacheable, ReadWrite,
188 0x00000000, 0x00000000, 0xfebfffff, 0x00000000,
189 IO_APIC_ADDR,,, PM01)
190
Angel Ponsd85d7e22020-07-07 12:51:57 +0200191 /* TPM Area (0xfed40000-0xfed44fff) */
Martin Rothfc706432015-08-18 16:56:05 -0600192 DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed,
193 Cacheable, ReadWrite,
194 0x00000000, 0xfed40000, 0xfed44fff, 0x00000000,
195 0x00005000,,, TPMR)
196})
Patrick Georgi2efc8802012-11-06 11:03:53 +0100197
Angel Ponsd85d7e22020-07-07 12:51:57 +0200198/* Current Resource Settings */
Patrick Georgi2efc8802012-11-06 11:03:53 +0100199Method (_CRS, 0, Serialized)
200{
Angel Ponsd85d7e22020-07-07 12:51:57 +0200201 /* Find PCI resource area in MCRS */
Martin Rothfc706432015-08-18 16:56:05 -0600202 CreateDwordField(MCRS, ^PM01._MIN, PMIN)
203 CreateDwordField(MCRS, ^PM01._MAX, PMAX)
204 CreateDwordField(MCRS, ^PM01._LEN, PLEN)
Patrick Georgi2efc8802012-11-06 11:03:53 +0100205
Angel Ponsd85d7e22020-07-07 12:51:57 +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 Pons29cd3502020-07-07 12:54:15 +0200211 PMIN = ^MCHC.TLUD << 20
212 PLEN = PMAX - PMIN + 1
Patrick Georgi2efc8802012-11-06 11:03:53 +0100213
214 Return (MCRS)
215}