blob: 2ae331a57675dfdaf1553aae2838f5f05310c4ab [file] [log] [blame]
Patrick Georgiea063cb2020-05-08 19:28:13 +02001/* inteltool - dump all registers on an Intel CPU + chipset based system. */
Patrick Georgi7333a112020-05-08 20:48:04 +02002/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauer23190272008-08-20 13:41:24 +00003
4
5#include <stdio.h>
6#include <stdlib.h>
Stefan Reinauera7b296d2011-11-14 12:40:34 -08007#include <inttypes.h>
Stefan Reinauer23190272008-08-20 13:41:24 +00008#include "inteltool.h"
9
Vladimir Serbinenkoe4e8e092013-03-31 13:51:37 +020010volatile uint8_t *mchbar;
11
12static void write_mchbar32 (uint32_t addr, uint32_t val)
13{
14 * (volatile uint32_t *) (mchbar + addr) = val;
15}
16
17static uint32_t read_mchbar32 (uint32_t addr)
18{
19 return * (volatile uint32_t *) (mchbar + addr);
20}
21
22static uint8_t read_mchbar8 (uint32_t addr)
23{
24 return * (volatile uint8_t *) (mchbar + addr);
25}
26
27static u16 read_500 (int channel, u16 addr, int split)
28{
29 uint32_t val;
30 write_mchbar32 (0x500 + (channel << 10), 0);
31 while (read_mchbar32 (0x500 + (channel << 10)) & 0x800000);
32 write_mchbar32 (0x500 + (channel << 10), 0x80000000 | (((read_mchbar8 (0x246 + (channel << 10)) >> 2) & 3) + 0xb88 - addr));
33 while (read_mchbar32 (0x500 + (channel << 10)) & 0x800000);
34 val = read_mchbar32 (0x508 + (channel << 10));
35
36 return val & ((1 << split) - 1);
37}
38
39static inline u16 get_lane_offset (int slot, int rank, int lane)
40{
41 return 0x124 * lane + ((lane & 4) ? 0x23e : 0) + 11 * rank + 22 * slot - 0x452 * (lane == 8);
42}
43
44static inline u16 get_timing_register_addr (int lane, int tm, int slot, int rank)
45{
46 const u16 offs[] = { 0x1d, 0xa8, 0xe6, 0x5c };
47 return get_lane_offset (slot, rank, lane) + offs[(tm + 3) % 4];
48}
49
50static void write_1d0 (u32 val, u16 addr, int bits, int flag)
51{
52 write_mchbar32 (0x1d0, 0);
53 while (read_mchbar32 (0x1d0) & 0x800000);
54 write_mchbar32 (0x1d4, (val & ((1 << bits) - 1)) | (2 << bits) | (flag << bits));
55 write_mchbar32 (0x1d0, 0x40000000 | addr);
56 while (read_mchbar32 (0x1d0) & 0x800000);
57}
58
59static u16 read_1d0 (u16 addr, int split)
60{
61 u32 val;
62 write_mchbar32 (0x1d0, 0);
63 while (read_mchbar32 (0x1d0) & 0x800000);
64 write_mchbar32 (0x1d0, 0x80000000 | (((read_mchbar8 (0x246) >> 2) & 3) + 0x361 - addr));
65 while (read_mchbar32 (0x1d0) & 0x800000);
66 val = read_mchbar32 (0x1d8);
67 write_1d0 (0, 0x33d, 0, 0);
68 write_1d0 (0, 0x33d, 0, 0);
69 return val & ((1 << split) - 1);
70}
71
72static void dump_timings (void)
73{
74 int channel, slot, rank, lane, i;
75 printf ("Timings:\n");
76 for (channel = 0; channel < 2; channel++)
77 for (slot = 0; slot < 2; slot++)
78 for (rank = 0; rank < 2; rank++) {
79 printf ("channel %d, slot %d, rank %d\n", channel, slot, rank);
80 for (lane = 0; lane < 9; lane++) {
81 printf ("lane %d: ", lane);
82 for (i = 0; i < 4; i++) {
83 printf ("%x ", read_500 (channel,
84 get_timing_register_addr (lane, i, slot, rank), 9));
85 }
86 printf ("\n");
87 }
88 }
89
90 printf ("[178] = %x\n", read_1d0 (0x178, 7));
91 printf ("[10b] = %x\n", read_1d0 (0x10b, 6));
92}
93
94
Stefan Reinauer23190272008-08-20 13:41:24 +000095/*
96 * (G)MCH MMIO Config Space
97 */
Vladimir Serbinenkofb69a692015-10-10 13:20:32 +020098int print_mchbar(struct pci_dev *nb, struct pci_access *pacc, const char *dump_spd_file)
Stefan Reinauer23190272008-08-20 13:41:24 +000099{
100 int i, size = (16 * 1024);
Idwer Vollering312fc962010-12-17 22:34:58 +0000101 uint64_t mchbar_phys;
102 struct pci_dev *nb_device6; /* "overflow device" on i865 */
103 uint16_t pcicmd6;
Stefan Reinauer23190272008-08-20 13:41:24 +0000104
105 printf("\n============= MCHBAR ============\n\n");
106
107 switch (nb->device_id) {
Idwer Vollering312fc962010-12-17 22:34:58 +0000108 case PCI_DEVICE_ID_INTEL_82865:
109 /*
110 * On i865, the memory access enable/disable bit (MCHBAREN on
111 * i945/i965) is not in the MCHBAR (i945/i965) register but in
112 * the PCICMD6 register. BAR6 and PCICMD6 reside on device 6.
113 *
114 * The actual base address is in BAR6 on i865 where on
115 * i945/i965 the base address is in MCHBAR.
116 */
117 nb_device6 = pci_get_dev(pacc, 0, 0, 0x06, 0); /* Device 6 */
118 mchbar_phys = pci_read_long(nb_device6, 0x10); /* BAR6 */
119 pcicmd6 = pci_read_long(nb_device6, 0x04); /* PCICMD6 */
120
121 /* Try to enable Memory Access Enable (MAE). */
122 if (!(pcicmd6 & (1 << 1))) {
123 printf("Access to BAR6 is currently disabled, "
124 "attempting to enable.\n");
125 pci_write_long(nb_device6, 0x04, pcicmd6 | (1 << 1));
126 if (pci_read_long(nb_device6, 0x04) & (1 << 1))
127 printf("Enabled successfully.\n");
128 else
129 printf("Enable FAILED!\n");
130 }
131 mchbar_phys &= 0xfffff000; /* Bits 31:12 from BAR6 */
132 break;
Pat Erleyca3548e2010-04-21 06:23:19 +0000133 case PCI_DEVICE_ID_INTEL_82915:
Stefan Reinauer23190272008-08-20 13:41:24 +0000134 case PCI_DEVICE_ID_INTEL_82945GM:
Björn Busse2d33dc42010-08-01 15:33:30 +0000135 case PCI_DEVICE_ID_INTEL_82945GSE:
Stefan Reinauer3d9a12f2008-11-02 11:11:40 +0000136 case PCI_DEVICE_ID_INTEL_82945P:
Stefan Tauner04c06002012-10-13 02:19:30 +0200137 case PCI_DEVICE_ID_INTEL_82975X:
Stefan Reinauer23190272008-08-20 13:41:24 +0000138 mchbar_phys = pci_read_long(nb, 0x44) & 0xfffffffe;
139 break;
Stefan Tauner04c06002012-10-13 02:19:30 +0200140 case PCI_DEVICE_ID_INTEL_82965PM:
141 case PCI_DEVICE_ID_INTEL_82Q35:
142 case PCI_DEVICE_ID_INTEL_82G33:
143 case PCI_DEVICE_ID_INTEL_82Q33:
144 mchbar_phys = pci_read_long(nb, 0x48) & 0xfffffffe;
145 mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
146 break;
Stefan Tauner1a00cf02012-10-13 06:23:52 +0200147 case PCI_DEVICE_ID_INTEL_82946:
Stefan Tauner04c06002012-10-13 02:19:30 +0200148 case PCI_DEVICE_ID_INTEL_82Q965:
Corey Osgood23d98c72010-07-29 19:25:31 +0000149 case PCI_DEVICE_ID_INTEL_ATOM_DXXX:
150 case PCI_DEVICE_ID_INTEL_ATOM_NXXX:
Brandon Weeks7ee7b132023-12-26 15:55:03 -0800151 case PCI_DEVICE_ID_INTEL_CORE_ADL_ID_N_0_8:
152 case PCI_DEVICE_ID_INTEL_CORE_ADL_ID_N_0_4:
153 case PCI_DEVICE_ID_INTEL_CORE_ADL_ID_N_0_4_1:
Stefan Tauner04c06002012-10-13 02:19:30 +0200154 mchbar_phys = pci_read_long(nb, 0x48);
Corey Osgood23d98c72010-07-29 19:25:31 +0000155
156 /* Test if bit 0 of the MCHBAR reg is 1 to enable memory reads.
Idwer Vollering312fc962010-12-17 22:34:58 +0000157 * If it isn't, try to set it. This may fail, because there is
158 * some bit that locks that bit, and isn't in the public
Corey Osgood23d98c72010-07-29 19:25:31 +0000159 * datasheets.
160 */
161
162 if(!(mchbar_phys & 1))
163 {
Stefan Tauner04c06002012-10-13 02:19:30 +0200164 printf("Access to the MCHBAR is currently disabled, "
165 "attempting to enable.\n");
Corey Osgood23d98c72010-07-29 19:25:31 +0000166 mchbar_phys |= 0x1;
167 pci_write_long(nb, 0x48, mchbar_phys);
Stefan Tauner04c06002012-10-13 02:19:30 +0200168 if(pci_read_long(nb, 0x48) & 1)
Corey Osgood23d98c72010-07-29 19:25:31 +0000169 printf("Enabled successfully.\n");
170 else
171 printf("Enable FAILED!\n");
172 }
173 mchbar_phys &= 0xfffffffe;
Stefan Tauner04c06002012-10-13 02:19:30 +0200174 mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
175 break;
Maciej Pijanka90d17402009-09-30 17:05:46 +0000176 case PCI_DEVICE_ID_INTEL_82443LX:
177 case PCI_DEVICE_ID_INTEL_82443BX:
Stefan Reinauerb2aedb12009-08-29 15:45:43 +0000178 case PCI_DEVICE_ID_INTEL_82810:
Stefan Tauner04c06002012-10-13 02:19:30 +0200179 case PCI_DEVICE_ID_INTEL_82810E_DC:
180 case PCI_DEVICE_ID_INTEL_82810_DC:
Stefan Reinauer04844812010-02-22 11:26:06 +0000181 case PCI_DEVICE_ID_INTEL_82830M:
Idwer Vollering312fc962010-12-17 22:34:58 +0000182 printf("This northbridge does not have MCHBAR.\n");
Stefan Reinauer23190272008-08-20 13:41:24 +0000183 return 1;
Damien Zammit9c986642015-08-17 21:04:41 +1000184 case PCI_DEVICE_ID_INTEL_82XX4X:
185 case PCI_DEVICE_ID_INTEL_82Q45:
186 case PCI_DEVICE_ID_INTEL_82G45:
187 case PCI_DEVICE_ID_INTEL_82G41:
188 case PCI_DEVICE_ID_INTEL_82B43:
189 case PCI_DEVICE_ID_INTEL_82B43_2:
Stefan Tauner04c06002012-10-13 02:19:30 +0200190 case PCI_DEVICE_ID_INTEL_82X38:
Ruud Schrampbb41f502011-04-04 07:53:19 +0200191 case PCI_DEVICE_ID_INTEL_32X0:
Anton Kochkovda0b4562010-05-30 12:33:12 +0000192 mchbar_phys = pci_read_long(nb, 0x48) & 0xfffffffe;
193 mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
Stefan Tauner04c06002012-10-13 02:19:30 +0200194 break;
195 case PCI_DEVICE_ID_INTEL_CORE_1ST_GEN:
196 mchbar_phys = pci_read_long(nb, 0x48);
197 mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
198 mchbar_phys &= 0x0000000fffffc000UL; /* 35:14 */
Stefan Tauner04c06002012-10-13 02:19:30 +0200199 break;
Felix Held0cc8f292014-11-05 03:18:44 +0100200 case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_D:
201 case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_M:
Felix Heldfac95e32014-11-09 00:11:28 +0100202 case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_E3:
Damien Zammit601da482014-05-26 23:00:23 +1000203 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_D:
Felix Heldfac95e32014-11-09 00:11:28 +0100204 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_M:
205 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_E3:
206 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_015c:
207 case PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_D:
208 case PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_M:
209 case PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_E3:
Dennis Wassenbergae6685f2014-10-30 10:30:40 +0100210 case PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_U:
Matt DeVillier5b667df2015-05-14 21:58:33 -0500211 case PCI_DEVICE_ID_INTEL_CORE_5TH_GEN_U:
Angel Ponsf007ab72022-10-07 00:25:33 +0200212 case PCI_DEVICE_ID_INTEL_CORE_5TH_GEN_D:
213 case PCI_DEVICE_ID_INTEL_CORE_5TH_GEN_M:
Nico Huber54fe32f2017-10-03 16:03:07 +0200214 case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_D2:
Benjamin Doronc01fa5a2020-07-01 19:20:40 +0000215 case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_U:
216 case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_Y:
217 case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_M:
Nico Huber21e74242017-04-24 15:06:09 +0200218 case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_WST:
Christoph Pomaska48ac29e2018-01-01 01:48:21 +0100219 case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_D:
Maxim Polyakov13176892019-08-27 18:20:08 +0300220 case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_E:
Matthew Garrett2bf28e52018-07-23 21:09:47 -0700221 case PCI_DEVICE_ID_INTEL_CORE_7TH_GEN_U:
222 case PCI_DEVICE_ID_INTEL_CORE_7TH_GEN_Y:
223 case PCI_DEVICE_ID_INTEL_CORE_7TH_GEN_U_Q:
Christian Walter9a8c5e72019-05-06 17:50:57 +0200224 case PCI_DEVICE_ID_INTEL_CORE_7TH_GEN_E3:
Matt DeVillier3c784452019-06-11 23:23:46 -0500225 case PCI_DEVICE_ID_INTEL_CORE_8TH_GEN_U_1:
226 case PCI_DEVICE_ID_INTEL_CORE_8TH_GEN_U_2:
Matt DeVillier62e883d2020-08-08 11:17:31 -0500227 case PCI_DEVICE_ID_INTEL_CORE_CML_U1:
228 case PCI_DEVICE_ID_INTEL_CORE_CML_U2:
229 case PCI_DEVICE_ID_INTEL_CORE_CML_U3:
Stefan Tauner04c06002012-10-13 02:19:30 +0200230 mchbar_phys = pci_read_long(nb, 0x48);
231 mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
232 mchbar_phys &= 0x0000007fffff8000UL; /* 38:15 */
Vladimir Serbinenko44bc11c2014-08-16 19:14:02 +0200233 size = 32768;
Anton Kochkovc7fc4422012-07-21 06:36:47 +0400234 break;
Johanna Schander4ddbbd82020-01-06 08:52:49 +0100235 case PCI_DEVICE_ID_INTEL_CORE_10TH_GEN_U:
236 mchbar_phys = pci_read_long(nb, 0x48);
237 mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
238 mchbar_phys &= 0x0000007fffff0000UL; /* 38:16 */
239 size = 32768;
240 break;
Stefan Reinauer23190272008-08-20 13:41:24 +0000241 default:
242 printf("Error: Dumping MCHBAR on this northbridge is not (yet) supported.\n");
Alexander Couzens9092d222023-11-30 18:14:04 +0000243 printf("Error: Unknown PCI id: %08x/%08x\n", nb->vendor_id, nb->device_id);
Stefan Reinauer23190272008-08-20 13:41:24 +0000244 return 1;
245 }
246
Stefan Reinauer1162f252008-12-04 15:18:20 +0000247 mchbar = map_physical(mchbar_phys, size);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000248
Stefan Reinauer1162f252008-12-04 15:18:20 +0000249 if (mchbar == NULL) {
Idwer Vollering312fc962010-12-17 22:34:58 +0000250 if (nb->device_id == PCI_DEVICE_ID_INTEL_82865)
251 perror("Error mapping BAR6");
252 else
253 perror("Error mapping MCHBAR");
Stefan Reinauer23190272008-08-20 13:41:24 +0000254 exit(1);
255 }
256
Idwer Vollering312fc962010-12-17 22:34:58 +0000257 if (nb->device_id == PCI_DEVICE_ID_INTEL_82865)
Stefan Reinauera7b296d2011-11-14 12:40:34 -0800258 printf("BAR6 = 0x%08" PRIx64 " (MEM)\n\n", mchbar_phys);
Idwer Vollering312fc962010-12-17 22:34:58 +0000259 else
Stefan Reinauera7b296d2011-11-14 12:40:34 -0800260 printf("MCHBAR = 0x%08" PRIx64 " (MEM)\n\n", mchbar_phys);
Stefan Reinauer23190272008-08-20 13:41:24 +0000261
Vladimir Serbinenko9c4f1b82014-11-04 21:05:12 +0100262 for (i = 0; i < size; i += 4) {
Michael Niewöhner10d52212020-03-13 19:08:21 +0100263 if (read32(mchbar + i))
264 printf("0x%04x: 0x%08"PRIx32"\n", i, read32(mchbar+i));
Stefan Reinauer23190272008-08-20 13:41:24 +0000265 }
266
Vladimir Serbinenko44bc11c2014-08-16 19:14:02 +0200267 switch (nb->device_id)
268 {
269 case PCI_DEVICE_ID_INTEL_CORE_1ST_GEN:
Vladimir Serbinenkoe4e8e092013-03-31 13:51:37 +0200270 printf ("clock_speed_index = %x\n", read_500 (0,0x609, 6) >> 1);
271 dump_timings ();
Stefan Tauner572f0742016-05-05 17:29:39 +0200272 if (dump_spd_file != NULL)
273 printf("\nCreating a memory timings file is not supported on this chipset.\n");
Vladimir Serbinenko44bc11c2014-08-16 19:14:02 +0200274 break;
Felix Held0cc8f292014-11-05 03:18:44 +0100275 case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_D:
276 case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_M:
Felix Heldfac95e32014-11-09 00:11:28 +0100277 case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_E3:
278 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_D:
279 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_M:
280 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_E3:
281 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_015c:
Vladimir Serbinenkofb69a692015-10-10 13:20:32 +0200282 ivybridge_dump_timings(dump_spd_file);
Vladimir Serbinenko44bc11c2014-08-16 19:14:02 +0200283 break;
Stefan Tauner572f0742016-05-05 17:29:39 +0200284 default:
285 if (dump_spd_file != NULL)
286 printf("\nCreating a memory timings file is not supported on this chipset.\n");
Vladimir Serbinenkoe4e8e092013-03-31 13:51:37 +0200287 }
Stefan Reinauer1162f252008-12-04 15:18:20 +0000288 unmap_physical((void *)mchbar, size);
Stefan Reinauer23190272008-08-20 13:41:24 +0000289 return 0;
290}