blob: c1d06f18d6ef6c310d0ea13f565056134a64e176 [file] [log] [blame]
Stefan Reinauer23190272008-08-20 13:41:24 +00001/*
2 * inteltool - dump all registers on an Intel CPU + chipset based system.
3 *
Stefan Reinauer14e22772010-04-27 06:56:47 +00004 * Copyright (C) 2008-2010 by coresystems GmbH
Anton Kochkovc7fc4422012-07-21 06:36:47 +04005 * Copyright (C) 2012 Anton Kochkov
Stefan Reinauer14e22772010-04-27 06:56:47 +00006 *
Stefan Reinauer23190272008-08-20 13:41:24 +00007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21#include <stdio.h>
22#include <stdlib.h>
Stefan Reinauera7b296d2011-11-14 12:40:34 -080023#include <inttypes.h>
Stefan Reinauer23190272008-08-20 13:41:24 +000024#include "inteltool.h"
25
Stefan Taunerdbc6fcd2013-06-20 18:05:06 +020026/* 320766 */
27static const io_register_t nehalem_dmi_registers[] = {
28 { 0x00, 4, "DMIVCH" }, // DMI Virtual Channel Capability Header
29 { 0x04, 4, "DMIVCCAP1" }, // DMI Port VC Capability Register 1
30 { 0x08, 4, "DMIVCCAP2" }, // DMI Port VC Capability Register 2
31 { 0x0C, 4, "DMIVCCTL" }, // DMI Port VC Control
32 { 0x10, 4, "DMIVC0RCAP" }, // DMI VC0 Resource Capability
33 { 0x14, 4, "DMIVC0RCTL" }, // DMI VC0 Resource Control
34/* { 0x18, 2, "RSVD" }, // Reserved */
35 { 0x1A, 2, "DMIVC0RSTS" }, // DMI VC0 Resource Status
36 { 0x1C, 4, "DMIVC1RCAP" }, // DMI VC1 Resource Capability
37 { 0x20, 4, "DMIVC1RCTL" }, // DMI VC1 Resource Control
38/* { 0x24, 2, "RSVD" }, // Reserved */
39 { 0x26, 2, "DMIVC1RSTS" }, // DMI VC1 Resource Status
40/* ... - Reserved */
41 { 0x84, 4, "DMILCAP" }, // DMI Link Capabilities
42 { 0x88, 2, "DMILCTL" }, // DMI Link Control
43 { 0x8A, 2, "DMILSTS" }, // DMI Link Status
44/* ... - Reserved */
45};
46
47/* 322812 */
48static const io_register_t westmere_dmi_registers[] = {
49 { 0x00, 4, "DMIVCECH" }, // DMI Virtual Channel Enhanced Capability
50 { 0x04, 4, "DMIPVCCAP1" }, // DMI Port VC Capability Register 1
51 { 0x08, 4, "DMIPVCCAP2" }, // DMI Port VC Capability Register 2
52 { 0x0C, 2, "DMIPVCCTL" }, // DMI Port VC Control
53/* { 0x0E, 2, "RSVD" }, // Reserved */
54 { 0x10, 4, "DMIVC0RCAP" }, // DMI VC0 Resource Capability
55 { 0x14, 4, "DMIVC0RCTL" }, // DMI VC0 Resource Control
56/* { 0x18, 2, "RSVD" }, // Reserved */
57 { 0x1A, 2, "DMIVC0RSTS" }, // DMI VC0 Resource Status
58 { 0x1C, 4, "DMIVC1RCAP" }, // DMI VC1 Resource Capability
59 { 0x20, 4, "DMIVC1RCTL1" }, // DMI VC1 Resource Control
60/* { 0x24, 2, "RSVD" }, // Reserved */
61 { 0x26, 2, "DMIC1RSTS" }, // DMI VC1 Resource Status
62/* ... - Reserved */
63 { 0x84, 4, "DMILCAP" }, // DMI Link Capabilities
64 { 0x88, 2, "DMILCTL" }, // DMI Link Control
65 { 0x8A, 2, "DMILSTS" }, // DMI Link Status
66/* ... - Reserved */
67};
68
Anton Kochkovc7fc4422012-07-21 06:36:47 +040069static const io_register_t sandybridge_dmi_registers[] = {
70 { 0x00, 4, "DMI VCECH" }, // DMI Virtual Channel Enhanced Capability
71 { 0x04, 4, "DMI PVCCAP1" }, // DMI Port VC Capability Register 1
72 { 0x08, 4, "DMI PVVAP2" }, // DMI Port VC Capability Register 2
73 { 0x0C, 2, "DMI PVCCTL" }, // DMI Port VC Control
74/* { 0x0E, 2, "RSVD" }, // Reserved */
75 { 0x10, 4, "DMI VC0RCAP" }, // DMI VC0 Resource Capability
76 { 0x14, 4, "DMI VC0RCTL" }, // DMI VC0 Resource Control
77/* { 0x18, 2, "RSVD" }, // Reserved */
78 { 0x1A, 2, "DMI VC0RSTS" }, // DMI VC0 Resource Status
79 { 0x1C, 4, "DMI VC1RCAP" }, // DMI VC1 Resource Capability
80 { 0x20, 4, "DMI VC1RCTL" }, // DMI VC1 Resource Control
81/* { 0x24, 2, "RSVD" }, // Reserved */
82 { 0x26, 2, "DMI VC1RSTS" }, // DMI VC1 Resource Status
83 { 0x28, 4, "DMI VCPRCAP" }, // DMI VCp Resource Capability
84 { 0x2C, 4, "DMI VCPRCTL" }, // DMI VCp Resource Control
85/* { 0x30, 2, "RSVD" }, // Reserved */
86 { 0x32, 2, "DMI VCPRSTS" }, // DMI VCp Resource Status
87 { 0x34, 4, "DMI VCMRCAP" }, // DMI VCm Resource Capability
88 { 0x38, 4, "DMI VCMRCTL" }, // DMI VCm Resource Control
89/* { 0x3C, 2, "RSVD" }, // Reserved */
90 { 0x3E, 2, "DMI VCMRSTS" }, // DMI VCm Resource Status
91/* { 0x40, 4, "RSVD" }, // Reserved */
92 { 0x44, 4, "DMI ESC" }, // DMI Element Self Description
93/* { 0x48, 8, "RSVD" }, // Reserved */
94 { 0x50, 4, "DMI LE1D" }, // DMI Link Entry 1 Description
95/* { 0x54, 4, "RSVD" }, // Reserved */
96 { 0x58, 4, "DMI LE1A" }, // DMI Link Entry 1 Address
97 { 0x5C, 4, "DMI LUE1A" }, // DMI Link Upper Entry 1 Address
98 { 0x60, 4, "DMI LE2D" }, // DMI Link Entry 2 Description
99/* { 0x64, 4, "RSVD" }, // Reserved */
100 { 0x68, 4, "DMI LE2A" }, // DMI Link Entry 2 Address
101/* { 0x6C, 4, "RSVD" }, // Reserved
102 { 0x70, 8, "RSVD" }, // Reserved
103 { 0x78, 8, "RSVD" }, // Reserved
104 { 0x80, 4, "RSVD" }, // Reserved */
105 { 0x84, 4, "LCAP" }, // Link Capabilities
106 { 0x88, 2, "LCTL" }, // Link Control
107 { 0x8A, 2, "LSTS" }, // Link Status
108/* { 0x8C, 4, "RSVD" }, // Reserved
109 { 0x90, 4, "RSVD" }, // Reserved
110 { 0x94, 4, "RSVD" }, // Reserved */
111 { 0x98, 2, "LCTL2" }, // Link Control 2
112 { 0x9A, 2, "LSTS2" }, // Link Status 2
113/* ... - Reserved */
114 { 0xBC0, 4, "AFE_BMUF0" }, // AFE BMU Configuration Function 0
115 { 0xBC4, 4, "RSVD" }, // Reserved
116 { 0xBC8, 4, "RSVD" }, // Reserved
117 { 0xBCC, 4, "AFE_BMUT0" }, // AFE BMU Configuration Test 0
118/* ... - Reserved */
119};
120
Stefan Reinauer23190272008-08-20 13:41:24 +0000121/*
Dennis Wassenbergae6685f2014-10-30 10:30:40 +0100122 * All Haswell DMI Registers per
123 *
124 * Mobile 4th Generation Intel Core TM Processor Family, Mobile Intel Pentium Processor Family,
125 * and Mobile Intel Celeron Processor Family
126 * Datasheet Volume 2
127 * 329002-002
128 */
129static const io_register_t haswell_ult_dmi_registers[] = {
130 { 0x00, 4, "DMIVCECH" }, // DMI Virtual Channel Enhanced Capability
131 { 0x04, 4, "DMIPVCCAP1" }, // DMI Port VC Capability Register 1
132 { 0x08, 4, "DMIPVCCAP2" }, // DMI Port VC Capability Register 2
133 { 0x0C, 2, "DMI PVCCTL" }, // DMI Port VC Control
134/* { 0x0E, 2, "RSVD" }, // Reserved */
135 { 0x10, 4, "DMIVC0RCAP" }, // DMI VC0 Resource Capability
136 { 0x14, 4, "DMIVC0RCTL" }, // DMI VC0 Resource Control
137/* { 0x18, 2, "RSVD" }, // Reserved */
138 { 0x1A, 2, "DMIVC0RSTS" }, // DMI VC0 Resource Status
139 { 0x1C, 4, "DMIVC1RCAP" }, // DMI VC1 Resource Capability
140 { 0x20, 4, "DMIVC1RCTL" }, // DMI VC1 Resource Control
141/* { 0x24, 2, "RSVD" }, // Reserved */
142 { 0x26, 2, "DMIVC1RSTS" }, // DMI VC1 Resource Status
143 { 0x28, 4, "DMIVCPRCAP" }, // DMI VCp Resource Capability
144 { 0x2C, 4, "DMIVCPRCTL" }, // DMI VCp Resource Control
145/* { 0x30, 2, "RSVD" }, // Reserved */
146 { 0x32, 2, "DMIVCPRSTS" }, // DMI VCp Resource Status
147 { 0x34, 4, "DMIVCMRCAP" }, // DMI VCm Resource Capability
148 { 0x38, 4, "DMIVCMRCTL" }, // DMI VCm Resource Control
149/* { 0x3C, 2, "RSVD" }, // Reserved */
150 { 0x3E, 2, "DMIVCMRSTS" }, // DMI VCm Resource Status
151 { 0x40, 4, "DMIRCLDECH" }, // DMI Root Complex Link Declaration */
152 { 0x44, 4, "DMIESD" }, // DMI Element Self Description
153/* { 0x48, 4, "RSVD" }, // Reserved */
154/* { 0x4C, 4, "RSVD" }, // Reserved */
155 { 0x50, 4, "DMILE1D" }, // DMI Link Entry 1 Description
156/* { 0x54, 4, "RSVD" }, // Reserved */
157 { 0x58, 4, "DMILE1A" }, // DMI Link Entry 1 Address
158 { 0x5C, 4, "DMILUE1A" }, // DMI Link Upper Entry 1 Address
159 { 0x60, 4, "DMILE2D" }, // DMI Link Entry 2 Description
160/* { 0x64, 4, "RSVD" }, // Reserved */
161 { 0x68, 4, "DMILE2A" }, // DMI Link Entry 2 Address
162/* { 0x6C, 4, "RSVD" }, // Reserved */
163/* { 0x70, 4, "RSVD" }, // Reserved */
164/* { 0x74, 4, "RSVD" }, // Reserved */
165/* { 0x78, 4, "RSVD" }, // Reserved */
166/* { 0x7C, 4, "RSVD" }, // Reserved */
167/* { 0x80, 4, "RSVD" }, // Reserved */
168/* { 0x84, 4, "RSVD" }, // Reserved */
169 { 0x88, 2, "LCTL" }, // Link Control
170 /* ... - Reserved */
171 { 0x1C4, 4, "DMIUESTS" }, // DMI Uncorrectable Error Status
172 { 0x1C8, 4, "DMIUEMSK" }, // DMI Uncorrectable Error Mask
173 { 0x1D0, 4, "DMICESTS" }, // DMI Correctable Error Status
174 { 0x1D4, 4, "DMICEMSK" }, // DMI Correctable Error Mask
175/* ... - Reserved */
176};
177
178/*
Stefan Reinauer23190272008-08-20 13:41:24 +0000179 * Egress Port Root Complex MMIO configuration space
180 */
181int print_epbar(struct pci_dev *nb)
182{
183 int i, size = (4 * 1024);
184 volatile uint8_t *epbar;
Stefan Reinauer1162f252008-12-04 15:18:20 +0000185 uint64_t epbar_phys;
Stefan Reinauer23190272008-08-20 13:41:24 +0000186
187 printf("\n============= EPBAR =============\n\n");
188
189 switch (nb->device_id) {
Pat Erleyca3548e2010-04-21 06:23:19 +0000190 case PCI_DEVICE_ID_INTEL_82915:
Stefan Reinauer23190272008-08-20 13:41:24 +0000191 case PCI_DEVICE_ID_INTEL_82945GM:
Björn Busse2d33dc42010-08-01 15:33:30 +0000192 case PCI_DEVICE_ID_INTEL_82945GSE:
Stefan Reinauer3d9a12f2008-11-02 11:11:40 +0000193 case PCI_DEVICE_ID_INTEL_82945P:
Stefan Tauner1a00cf02012-10-13 06:23:52 +0200194 case PCI_DEVICE_ID_INTEL_82946:
Stefan Reinauer1162f252008-12-04 15:18:20 +0000195 case PCI_DEVICE_ID_INTEL_82975X:
Stefan Reinauer23190272008-08-20 13:41:24 +0000196 epbar_phys = pci_read_long(nb, 0x40) & 0xfffffffe;
197 break;
Stefan Tauner04c06002012-10-13 02:19:30 +0200198 case PCI_DEVICE_ID_INTEL_82965PM:
199 case PCI_DEVICE_ID_INTEL_82Q965:
200 case PCI_DEVICE_ID_INTEL_82Q35:
201 case PCI_DEVICE_ID_INTEL_82G33:
202 case PCI_DEVICE_ID_INTEL_82Q33:
203 case PCI_DEVICE_ID_INTEL_82X38:
Ruud Schrampbb41f502011-04-04 07:53:19 +0200204 case PCI_DEVICE_ID_INTEL_32X0:
Stefan Tauner04c06002012-10-13 02:19:30 +0200205 case PCI_DEVICE_ID_INTEL_82X4X:
Corey Osgood23d98c72010-07-29 19:25:31 +0000206 case PCI_DEVICE_ID_INTEL_ATOM_DXXX:
207 case PCI_DEVICE_ID_INTEL_ATOM_NXXX:
Dennis Wassenbergae6685f2014-10-30 10:30:40 +0100208 case PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_U:
Stefan Tauner04c06002012-10-13 02:19:30 +0200209 epbar_phys = pci_read_long(nb, 0x40) & 0xfffffffe;
210 epbar_phys |= ((uint64_t)pci_read_long(nb, 0x44)) << 32;
211 break;
Stefan Reinauerb2aedb12009-08-29 15:45:43 +0000212 case PCI_DEVICE_ID_INTEL_82810:
Stefan Tauner04c06002012-10-13 02:19:30 +0200213 case PCI_DEVICE_ID_INTEL_82810_DC:
214 case PCI_DEVICE_ID_INTEL_82810E_DC:
Stefan Reinauer04844812010-02-22 11:26:06 +0000215 case PCI_DEVICE_ID_INTEL_82830M:
Idwer Vollering312fc962010-12-17 22:34:58 +0000216 case PCI_DEVICE_ID_INTEL_82865:
217 printf("This northbridge does not have EPBAR.\n");
Stefan Reinauer23190272008-08-20 13:41:24 +0000218 return 1;
219 default:
220 printf("Error: Dumping EPBAR on this northbridge is not (yet) supported.\n");
221 return 1;
222 }
223
Stefan Reinauer1162f252008-12-04 15:18:20 +0000224 epbar = map_physical(epbar_phys, size);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000225
Stefan Reinauer1162f252008-12-04 15:18:20 +0000226 if (epbar == NULL) {
Stefan Reinauer23190272008-08-20 13:41:24 +0000227 perror("Error mapping EPBAR");
228 exit(1);
229 }
230
Stefan Reinauera7b296d2011-11-14 12:40:34 -0800231 printf("EPBAR = 0x%08" PRIx64 " (MEM)\n\n", epbar_phys);
Stefan Reinauer23190272008-08-20 13:41:24 +0000232 for (i = 0; i < size; i += 4) {
233 if (*(uint32_t *)(epbar + i))
234 printf("0x%04x: 0x%08x\n", i, *(uint32_t *)(epbar+i));
235 }
236
Stefan Reinauer1162f252008-12-04 15:18:20 +0000237 unmap_physical((void *)epbar, size);
Stefan Reinauer23190272008-08-20 13:41:24 +0000238 return 0;
239}
240
241/*
242 * MCH-ICH Serial Interconnect Ingress Root Complex MMIO configuration space
243 */
244int print_dmibar(struct pci_dev *nb)
245{
246 int i, size = (4 * 1024);
247 volatile uint8_t *dmibar;
Stefan Reinauer1162f252008-12-04 15:18:20 +0000248 uint64_t dmibar_phys;
Anton Kochkovc7fc4422012-07-21 06:36:47 +0400249 const io_register_t *dmi_registers = NULL;
Stefan Reinauer23190272008-08-20 13:41:24 +0000250
251 printf("\n============= DMIBAR ============\n\n");
252
253 switch (nb->device_id) {
Pat Erleyca3548e2010-04-21 06:23:19 +0000254 case PCI_DEVICE_ID_INTEL_82915:
Stefan Reinauer23190272008-08-20 13:41:24 +0000255 case PCI_DEVICE_ID_INTEL_82945GM:
Björn Busse2d33dc42010-08-01 15:33:30 +0000256 case PCI_DEVICE_ID_INTEL_82945GSE:
Stefan Reinauer3d9a12f2008-11-02 11:11:40 +0000257 case PCI_DEVICE_ID_INTEL_82945P:
Stefan Reinauer1162f252008-12-04 15:18:20 +0000258 case PCI_DEVICE_ID_INTEL_82975X:
Stefan Reinauer23190272008-08-20 13:41:24 +0000259 dmibar_phys = pci_read_long(nb, 0x4c) & 0xfffffffe;
260 break;
Stefan Tauner1a00cf02012-10-13 06:23:52 +0200261 case PCI_DEVICE_ID_INTEL_82946:
Stefan Tauner04c06002012-10-13 02:19:30 +0200262 case PCI_DEVICE_ID_INTEL_82965PM:
263 case PCI_DEVICE_ID_INTEL_82Q965:
Warren Turkal53291952010-09-03 09:32:17 +0000264 case PCI_DEVICE_ID_INTEL_82Q35:
265 case PCI_DEVICE_ID_INTEL_82G33:
266 case PCI_DEVICE_ID_INTEL_82Q33:
Stefan Tauner04c06002012-10-13 02:19:30 +0200267 case PCI_DEVICE_ID_INTEL_82X38:
Ruud Schrampbb41f502011-04-04 07:53:19 +0200268 case PCI_DEVICE_ID_INTEL_32X0:
Stefan Tauner04c06002012-10-13 02:19:30 +0200269 case PCI_DEVICE_ID_INTEL_82X4X:
Corey Osgood23d98c72010-07-29 19:25:31 +0000270 case PCI_DEVICE_ID_INTEL_ATOM_DXXX:
271 case PCI_DEVICE_ID_INTEL_ATOM_NXXX:
Warren Turkal53291952010-09-03 09:32:17 +0000272 dmibar_phys = pci_read_long(nb, 0x68) & 0xfffffffe;
273 dmibar_phys |= ((uint64_t)pci_read_long(nb, 0x6c)) << 32;
274 break;
Stefan Reinauerb2aedb12009-08-29 15:45:43 +0000275 case PCI_DEVICE_ID_INTEL_82810:
Stefan Tauner04c06002012-10-13 02:19:30 +0200276 case PCI_DEVICE_ID_INTEL_82810_DC:
277 case PCI_DEVICE_ID_INTEL_82810E_DC:
Idwer Vollering312fc962010-12-17 22:34:58 +0000278 case PCI_DEVICE_ID_INTEL_82865:
279 printf("This northbridge does not have DMIBAR.\n");
Stefan Reinauer23190272008-08-20 13:41:24 +0000280 return 1;
Stefan Tauner04c06002012-10-13 02:19:30 +0200281 case PCI_DEVICE_ID_INTEL_82X58:
Warren Turkal3235eea2010-09-03 09:31:13 +0000282 dmibar_phys = pci_read_long(nb, 0x50) & 0xfffff000;
283 break;
Stefan Taunerdbc6fcd2013-06-20 18:05:06 +0200284 case PCI_DEVICE_ID_INTEL_CORE_0TH_GEN:
285 /* DMIBAR is called DMIRCBAR in Nehalem */
286 dmibar_phys = pci_read_long(nb, 0x50) & 0xfffff000; /* 31:12 */
287 dmi_registers = nehalem_dmi_registers;
288 size = ARRAY_SIZE(nehalem_dmi_registers);
289 break;
Stefan Tauner04c06002012-10-13 02:19:30 +0200290 case PCI_DEVICE_ID_INTEL_CORE_1ST_GEN:
291 dmibar_phys = pci_read_long(nb, 0x68);
292 dmibar_phys |= ((uint64_t)pci_read_long(nb, 0x6c)) << 32;
293 dmibar_phys &= 0x0000000ffffff000UL; /* 35:12 */
Stefan Taunerdbc6fcd2013-06-20 18:05:06 +0200294 dmi_registers = westmere_dmi_registers;
295 size = ARRAY_SIZE(westmere_dmi_registers);
Stefan Tauner04c06002012-10-13 02:19:30 +0200296 break;
297 case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN:
Anton Kochkovc7fc4422012-07-21 06:36:47 +0400298 dmi_registers = sandybridge_dmi_registers;
299 size = ARRAY_SIZE(sandybridge_dmi_registers);
Damien Zammit601da482014-05-26 23:00:23 +1000300 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_A: /* pretty printing not implemented yet */
301 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_B:
302 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_C:
303 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_D:
Stefan Tauner04c06002012-10-13 02:19:30 +0200304 dmibar_phys = pci_read_long(nb, 0x68);
305 dmibar_phys |= ((uint64_t)pci_read_long(nb, 0x6c)) << 32;
306 dmibar_phys &= 0x0000007ffffff000UL; /* 38:12 */
Anton Kochkovc7fc4422012-07-21 06:36:47 +0400307 break;
Dennis Wassenbergae6685f2014-10-30 10:30:40 +0100308 case PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_U:
309 dmi_registers = haswell_ult_dmi_registers;
310 size = ARRAY_SIZE(haswell_ult_dmi_registers);
311 dmibar_phys = pci_read_long(nb, 0x68);
312 dmibar_phys |= ((uint64_t)pci_read_long(nb, 0x6c)) << 32;
313 dmibar_phys &= 0x0000007ffffff000UL; /* 38:12 */
314 break;
315
Stefan Reinauer23190272008-08-20 13:41:24 +0000316 default:
317 printf("Error: Dumping DMIBAR on this northbridge is not (yet) supported.\n");
318 return 1;
319 }
320
Stefan Reinauer1162f252008-12-04 15:18:20 +0000321 dmibar = map_physical(dmibar_phys, size);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000322
Stefan Reinauer1162f252008-12-04 15:18:20 +0000323 if (dmibar == NULL) {
Stefan Reinauer23190272008-08-20 13:41:24 +0000324 perror("Error mapping DMIBAR");
325 exit(1);
326 }
327
Stefan Reinauera7b296d2011-11-14 12:40:34 -0800328 printf("DMIBAR = 0x%08" PRIx64 " (MEM)\n\n", dmibar_phys);
Anton Kochkovc7fc4422012-07-21 06:36:47 +0400329 if (dmi_registers != NULL) {
330 for (i = 0; i < size; i++) {
331 switch (dmi_registers[i].size) {
332 case 4:
333 printf("dmibase+0x%04x: 0x%08x (%s)\n",
334 dmi_registers[i].addr,
335 *(uint32_t *)(dmibar+dmi_registers[i].addr),
336 dmi_registers[i].name);
337 break;
338 case 2:
339 printf("dmibase+0x%04x: 0x%04x (%s)\n",
340 dmi_registers[i].addr,
341 *(uint16_t *)(dmibar+dmi_registers[i].addr),
342 dmi_registers[i].name);
343 break;
344 case 1:
345 printf("dmibase+0x%04x: 0x%02x (%s)\n",
346 dmi_registers[i].addr,
347 *(uint8_t *)(dmibar+dmi_registers[i].addr),
348 dmi_registers[i].name);
349 break;
350 }
351 }
352 } else {
353 for (i = 0; i < size; i += 4) {
354 if (*(uint32_t *)(dmibar + i))
355 printf("0x%04x: 0x%08x\n", i, *(uint32_t *)(dmibar+i));
356 }
Stefan Reinauer23190272008-08-20 13:41:24 +0000357 }
358
Stefan Reinauer1162f252008-12-04 15:18:20 +0000359 unmap_physical((void *)dmibar, size);
Stefan Reinauer23190272008-08-20 13:41:24 +0000360 return 0;
361}
362
363/*
364 * PCIe MMIO configuration space
365 */
366int print_pciexbar(struct pci_dev *nb)
367{
Stefan Reinauer1162f252008-12-04 15:18:20 +0000368 uint64_t pciexbar_reg;
369 uint64_t pciexbar_phys;
Stefan Reinauer23190272008-08-20 13:41:24 +0000370 volatile uint8_t *pciexbar;
371 int max_busses, devbase, i;
372 int bus, dev, fn;
373
374 printf("========= PCIEXBAR ========\n\n");
375
376 switch (nb->device_id) {
Pat Erleyca3548e2010-04-21 06:23:19 +0000377 case PCI_DEVICE_ID_INTEL_82915:
Stefan Reinauer23190272008-08-20 13:41:24 +0000378 case PCI_DEVICE_ID_INTEL_82945GM:
Björn Busse2d33dc42010-08-01 15:33:30 +0000379 case PCI_DEVICE_ID_INTEL_82945GSE:
Stefan Reinauer3d9a12f2008-11-02 11:11:40 +0000380 case PCI_DEVICE_ID_INTEL_82945P:
Stefan Reinauer1162f252008-12-04 15:18:20 +0000381 case PCI_DEVICE_ID_INTEL_82975X:
Stefan Reinauer23190272008-08-20 13:41:24 +0000382 pciexbar_reg = pci_read_long(nb, 0x48);
383 break;
Stefan Tauner1a00cf02012-10-13 06:23:52 +0200384 case PCI_DEVICE_ID_INTEL_82946:
Stefan Tauner04c06002012-10-13 02:19:30 +0200385 case PCI_DEVICE_ID_INTEL_82965PM:
386 case PCI_DEVICE_ID_INTEL_82Q965:
387 case PCI_DEVICE_ID_INTEL_82Q35:
388 case PCI_DEVICE_ID_INTEL_82G33:
389 case PCI_DEVICE_ID_INTEL_82Q33:
390 case PCI_DEVICE_ID_INTEL_82X38:
Ruud Schrampbb41f502011-04-04 07:53:19 +0200391 case PCI_DEVICE_ID_INTEL_32X0:
Stefan Tauner04c06002012-10-13 02:19:30 +0200392 case PCI_DEVICE_ID_INTEL_82X4X:
Corey Osgood23d98c72010-07-29 19:25:31 +0000393 case PCI_DEVICE_ID_INTEL_ATOM_DXXX:
394 case PCI_DEVICE_ID_INTEL_ATOM_NXXX:
Dennis Wassenbergae6685f2014-10-30 10:30:40 +0100395 case PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_U:
Stefan Tauner04c06002012-10-13 02:19:30 +0200396 pciexbar_reg = pci_read_long(nb, 0x60);
397 pciexbar_reg |= ((uint64_t)pci_read_long(nb, 0x64)) << 32;
398 break;
Stefan Reinauerb2aedb12009-08-29 15:45:43 +0000399 case PCI_DEVICE_ID_INTEL_82810:
Stefan Tauner04c06002012-10-13 02:19:30 +0200400 case PCI_DEVICE_ID_INTEL_82810_DC:
401 case PCI_DEVICE_ID_INTEL_82810E_DC:
Idwer Vollering312fc962010-12-17 22:34:58 +0000402 case PCI_DEVICE_ID_INTEL_82865:
403 printf("Error: This northbridge does not have PCIEXBAR.\n");
Stefan Reinauer23190272008-08-20 13:41:24 +0000404 return 1;
405 default:
406 printf("Error: Dumping PCIEXBAR on this northbridge is not (yet) supported.\n");
407 return 1;
408 }
409
410 if (!(pciexbar_reg & (1 << 0))) {
411 printf("PCIEXBAR register is disabled.\n");
412 return 0;
413 }
414
415 switch ((pciexbar_reg >> 1) & 3) {
416 case 0: // 256MB
Paul Menzel17c05f22013-04-03 10:00:33 +0200417 pciexbar_phys = pciexbar_reg & (0xffULL << 28);
Stefan Reinauer23190272008-08-20 13:41:24 +0000418 max_busses = 256;
419 break;
420 case 1: // 128M
Paul Menzel17c05f22013-04-03 10:00:33 +0200421 pciexbar_phys = pciexbar_reg & (0x1ffULL << 27);
Stefan Reinauer23190272008-08-20 13:41:24 +0000422 max_busses = 128;
423 break;
424 case 2: // 64M
Paul Menzel17c05f22013-04-03 10:00:33 +0200425 pciexbar_phys = pciexbar_reg & (0x3ffULL << 26);
Stefan Reinauer23190272008-08-20 13:41:24 +0000426 max_busses = 64;
427 break;
428 default: // RSVD
429 printf("Undefined address base. Bailing out.\n");
430 return 1;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000431 }
Stefan Reinauer23190272008-08-20 13:41:24 +0000432
Stefan Reinauera7b296d2011-11-14 12:40:34 -0800433 printf("PCIEXBAR: 0x%08" PRIx64 "\n", pciexbar_phys);
Stefan Reinauer23190272008-08-20 13:41:24 +0000434
Stefan Reinauer1162f252008-12-04 15:18:20 +0000435 pciexbar = map_physical(pciexbar_phys, (max_busses * 1024 * 1024));
Stefan Reinauer14e22772010-04-27 06:56:47 +0000436
Stefan Reinauer1162f252008-12-04 15:18:20 +0000437 if (pciexbar == NULL) {
Stefan Reinauer23190272008-08-20 13:41:24 +0000438 perror("Error mapping PCIEXBAR");
439 exit(1);
440 }
Stefan Reinauer14e22772010-04-27 06:56:47 +0000441
Stefan Reinauer23190272008-08-20 13:41:24 +0000442 for (bus = 0; bus < max_busses; bus++) {
443 for (dev = 0; dev < 32; dev++) {
444 for (fn = 0; fn < 8; fn++) {
445 devbase = (bus * 1024 * 1024) + (dev * 32 * 1024) + (fn * 4 * 1024);
446
447 if (*(uint16_t *)(pciexbar + devbase) == 0xffff)
448 continue;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000449
Stefan Reinauer23190272008-08-20 13:41:24 +0000450 /* This is a heuristics. Anyone got a better check? */
451 if( (*(uint32_t *)(pciexbar + devbase + 256) == 0xffffffff) &&
452 (*(uint32_t *)(pciexbar + devbase + 512) == 0xffffffff) ) {
453#if DEBUG
454 printf("Skipped non-PCIe device %02x:%02x.%01x\n", bus, dev, fn);
455#endif
456 continue;
457 }
458
459 printf("\nPCIe %02x:%02x.%01x extended config space:", bus, dev, fn);
460 for (i = 0; i < 4096; i++) {
461 if((i % 0x10) == 0)
462 printf("\n%04x:", i);
463 printf(" %02x", *(pciexbar+devbase+i));
464 }
465 printf("\n");
466 }
467 }
468 }
469
Stefan Reinauer1162f252008-12-04 15:18:20 +0000470 unmap_physical((void *)pciexbar, (max_busses * 1024 * 1024));
Stefan Reinauer23190272008-08-20 13:41:24 +0000471
472 return 0;
473}