blob: a536d39e01c5873560c2cd65951fb2f105ec7ca9 [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:
Stefan Tauner04c06002012-10-13 02:19:30 +0200151 mchbar_phys = pci_read_long(nb, 0x48);
Corey Osgood23d98c72010-07-29 19:25:31 +0000152
153 /* Test if bit 0 of the MCHBAR reg is 1 to enable memory reads.
Idwer Vollering312fc962010-12-17 22:34:58 +0000154 * If it isn't, try to set it. This may fail, because there is
155 * some bit that locks that bit, and isn't in the public
Corey Osgood23d98c72010-07-29 19:25:31 +0000156 * datasheets.
157 */
158
159 if(!(mchbar_phys & 1))
160 {
Stefan Tauner04c06002012-10-13 02:19:30 +0200161 printf("Access to the MCHBAR is currently disabled, "
162 "attempting to enable.\n");
Corey Osgood23d98c72010-07-29 19:25:31 +0000163 mchbar_phys |= 0x1;
164 pci_write_long(nb, 0x48, mchbar_phys);
Stefan Tauner04c06002012-10-13 02:19:30 +0200165 if(pci_read_long(nb, 0x48) & 1)
Corey Osgood23d98c72010-07-29 19:25:31 +0000166 printf("Enabled successfully.\n");
167 else
168 printf("Enable FAILED!\n");
169 }
170 mchbar_phys &= 0xfffffffe;
Stefan Tauner04c06002012-10-13 02:19:30 +0200171 mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
172 break;
Maciej Pijanka90d17402009-09-30 17:05:46 +0000173 case PCI_DEVICE_ID_INTEL_82443LX:
174 case PCI_DEVICE_ID_INTEL_82443BX:
Stefan Reinauerb2aedb12009-08-29 15:45:43 +0000175 case PCI_DEVICE_ID_INTEL_82810:
Stefan Tauner04c06002012-10-13 02:19:30 +0200176 case PCI_DEVICE_ID_INTEL_82810E_DC:
177 case PCI_DEVICE_ID_INTEL_82810_DC:
Stefan Reinauer04844812010-02-22 11:26:06 +0000178 case PCI_DEVICE_ID_INTEL_82830M:
Idwer Vollering312fc962010-12-17 22:34:58 +0000179 printf("This northbridge does not have MCHBAR.\n");
Stefan Reinauer23190272008-08-20 13:41:24 +0000180 return 1;
Damien Zammit9c986642015-08-17 21:04:41 +1000181 case PCI_DEVICE_ID_INTEL_82XX4X:
182 case PCI_DEVICE_ID_INTEL_82Q45:
183 case PCI_DEVICE_ID_INTEL_82G45:
184 case PCI_DEVICE_ID_INTEL_82G41:
185 case PCI_DEVICE_ID_INTEL_82B43:
186 case PCI_DEVICE_ID_INTEL_82B43_2:
Stefan Tauner04c06002012-10-13 02:19:30 +0200187 case PCI_DEVICE_ID_INTEL_82X38:
Ruud Schrampbb41f502011-04-04 07:53:19 +0200188 case PCI_DEVICE_ID_INTEL_32X0:
Anton Kochkovda0b4562010-05-30 12:33:12 +0000189 mchbar_phys = pci_read_long(nb, 0x48) & 0xfffffffe;
190 mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
Stefan Tauner04c06002012-10-13 02:19:30 +0200191 break;
192 case PCI_DEVICE_ID_INTEL_CORE_1ST_GEN:
193 mchbar_phys = pci_read_long(nb, 0x48);
194 mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
195 mchbar_phys &= 0x0000000fffffc000UL; /* 35:14 */
Stefan Tauner04c06002012-10-13 02:19:30 +0200196 break;
Felix Held0cc8f292014-11-05 03:18:44 +0100197 case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_D:
198 case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_M:
Felix Heldfac95e32014-11-09 00:11:28 +0100199 case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_E3:
Damien Zammit601da482014-05-26 23:00:23 +1000200 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_D:
Felix Heldfac95e32014-11-09 00:11:28 +0100201 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_M:
202 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_E3:
203 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_015c:
204 case PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_D:
205 case PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_M:
206 case PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_E3:
Dennis Wassenbergae6685f2014-10-30 10:30:40 +0100207 case PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_U:
Matt DeVillier5b667df2015-05-14 21:58:33 -0500208 case PCI_DEVICE_ID_INTEL_CORE_5TH_GEN_U:
Angel Ponsf007ab72022-10-07 00:25:33 +0200209 case PCI_DEVICE_ID_INTEL_CORE_5TH_GEN_D:
210 case PCI_DEVICE_ID_INTEL_CORE_5TH_GEN_M:
Nico Huber54fe32f2017-10-03 16:03:07 +0200211 case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_D2:
Benjamin Doronc01fa5a2020-07-01 19:20:40 +0000212 case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_U:
213 case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_Y:
214 case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_M:
Nico Huber21e74242017-04-24 15:06:09 +0200215 case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_WST:
Christoph Pomaska48ac29e2018-01-01 01:48:21 +0100216 case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_D:
Maxim Polyakov13176892019-08-27 18:20:08 +0300217 case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_E:
Matthew Garrett2bf28e52018-07-23 21:09:47 -0700218 case PCI_DEVICE_ID_INTEL_CORE_7TH_GEN_U:
219 case PCI_DEVICE_ID_INTEL_CORE_7TH_GEN_Y:
220 case PCI_DEVICE_ID_INTEL_CORE_7TH_GEN_U_Q:
Christian Walter9a8c5e72019-05-06 17:50:57 +0200221 case PCI_DEVICE_ID_INTEL_CORE_7TH_GEN_E3:
Matt DeVillier3c784452019-06-11 23:23:46 -0500222 case PCI_DEVICE_ID_INTEL_CORE_8TH_GEN_U_1:
223 case PCI_DEVICE_ID_INTEL_CORE_8TH_GEN_U_2:
Matt DeVillier62e883d2020-08-08 11:17:31 -0500224 case PCI_DEVICE_ID_INTEL_CORE_CML_U1:
225 case PCI_DEVICE_ID_INTEL_CORE_CML_U2:
226 case PCI_DEVICE_ID_INTEL_CORE_CML_U3:
Stefan Tauner04c06002012-10-13 02:19:30 +0200227 mchbar_phys = pci_read_long(nb, 0x48);
228 mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
229 mchbar_phys &= 0x0000007fffff8000UL; /* 38:15 */
Vladimir Serbinenko44bc11c2014-08-16 19:14:02 +0200230 size = 32768;
Anton Kochkovc7fc4422012-07-21 06:36:47 +0400231 break;
Johanna Schander4ddbbd82020-01-06 08:52:49 +0100232 case PCI_DEVICE_ID_INTEL_CORE_10TH_GEN_U:
233 mchbar_phys = pci_read_long(nb, 0x48);
234 mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
235 mchbar_phys &= 0x0000007fffff0000UL; /* 38:16 */
236 size = 32768;
237 break;
Stefan Reinauer23190272008-08-20 13:41:24 +0000238 default:
239 printf("Error: Dumping MCHBAR on this northbridge is not (yet) supported.\n");
240 return 1;
241 }
242
Stefan Reinauer1162f252008-12-04 15:18:20 +0000243 mchbar = map_physical(mchbar_phys, size);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000244
Stefan Reinauer1162f252008-12-04 15:18:20 +0000245 if (mchbar == NULL) {
Idwer Vollering312fc962010-12-17 22:34:58 +0000246 if (nb->device_id == PCI_DEVICE_ID_INTEL_82865)
247 perror("Error mapping BAR6");
248 else
249 perror("Error mapping MCHBAR");
Stefan Reinauer23190272008-08-20 13:41:24 +0000250 exit(1);
251 }
252
Idwer Vollering312fc962010-12-17 22:34:58 +0000253 if (nb->device_id == PCI_DEVICE_ID_INTEL_82865)
Stefan Reinauera7b296d2011-11-14 12:40:34 -0800254 printf("BAR6 = 0x%08" PRIx64 " (MEM)\n\n", mchbar_phys);
Idwer Vollering312fc962010-12-17 22:34:58 +0000255 else
Stefan Reinauera7b296d2011-11-14 12:40:34 -0800256 printf("MCHBAR = 0x%08" PRIx64 " (MEM)\n\n", mchbar_phys);
Stefan Reinauer23190272008-08-20 13:41:24 +0000257
Vladimir Serbinenko9c4f1b82014-11-04 21:05:12 +0100258 for (i = 0; i < size; i += 4) {
Michael Niewöhner10d52212020-03-13 19:08:21 +0100259 if (read32(mchbar + i))
260 printf("0x%04x: 0x%08"PRIx32"\n", i, read32(mchbar+i));
Stefan Reinauer23190272008-08-20 13:41:24 +0000261 }
262
Vladimir Serbinenko44bc11c2014-08-16 19:14:02 +0200263 switch (nb->device_id)
264 {
265 case PCI_DEVICE_ID_INTEL_CORE_1ST_GEN:
Vladimir Serbinenkoe4e8e092013-03-31 13:51:37 +0200266 printf ("clock_speed_index = %x\n", read_500 (0,0x609, 6) >> 1);
267 dump_timings ();
Stefan Tauner572f0742016-05-05 17:29:39 +0200268 if (dump_spd_file != NULL)
269 printf("\nCreating a memory timings file is not supported on this chipset.\n");
Vladimir Serbinenko44bc11c2014-08-16 19:14:02 +0200270 break;
Felix Held0cc8f292014-11-05 03:18:44 +0100271 case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_D:
272 case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_M:
Felix Heldfac95e32014-11-09 00:11:28 +0100273 case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_E3:
274 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_D:
275 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_M:
276 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_E3:
277 case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_015c:
Vladimir Serbinenkofb69a692015-10-10 13:20:32 +0200278 ivybridge_dump_timings(dump_spd_file);
Vladimir Serbinenko44bc11c2014-08-16 19:14:02 +0200279 break;
Stefan Tauner572f0742016-05-05 17:29:39 +0200280 default:
281 if (dump_spd_file != NULL)
282 printf("\nCreating a memory timings file is not supported on this chipset.\n");
Vladimir Serbinenkoe4e8e092013-03-31 13:51:37 +0200283 }
Stefan Reinauer1162f252008-12-04 15:18:20 +0000284 unmap_physical((void *)mchbar, size);
Stefan Reinauer23190272008-08-20 13:41:24 +0000285 return 0;
286}