2008-08-20 15:41:24 +02:00
|
|
|
/*
|
|
|
|
* inteltool - dump all registers on an Intel CPU + chipset based system.
|
|
|
|
*
|
2010-04-27 08:56:47 +02:00
|
|
|
* Copyright (C) 2008-2010 by coresystems GmbH
|
|
|
|
*
|
2008-08-20 15:41:24 +02:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2011-11-14 21:40:34 +01:00
|
|
|
#include <inttypes.h>
|
2008-08-20 15:41:24 +02:00
|
|
|
#include "inteltool.h"
|
|
|
|
|
2013-03-31 13:51:37 +02:00
|
|
|
volatile uint8_t *mchbar;
|
|
|
|
|
|
|
|
static void write_mchbar32 (uint32_t addr, uint32_t val)
|
|
|
|
{
|
|
|
|
* (volatile uint32_t *) (mchbar + addr) = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t read_mchbar32 (uint32_t addr)
|
|
|
|
{
|
|
|
|
return * (volatile uint32_t *) (mchbar + addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint8_t read_mchbar8 (uint32_t addr)
|
|
|
|
{
|
|
|
|
return * (volatile uint8_t *) (mchbar + addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static u16 read_500 (int channel, u16 addr, int split)
|
|
|
|
{
|
|
|
|
uint32_t val;
|
|
|
|
write_mchbar32 (0x500 + (channel << 10), 0);
|
|
|
|
while (read_mchbar32 (0x500 + (channel << 10)) & 0x800000);
|
|
|
|
write_mchbar32 (0x500 + (channel << 10), 0x80000000 | (((read_mchbar8 (0x246 + (channel << 10)) >> 2) & 3) + 0xb88 - addr));
|
|
|
|
while (read_mchbar32 (0x500 + (channel << 10)) & 0x800000);
|
|
|
|
val = read_mchbar32 (0x508 + (channel << 10));
|
|
|
|
|
|
|
|
return val & ((1 << split) - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u16 get_lane_offset (int slot, int rank, int lane)
|
|
|
|
{
|
|
|
|
return 0x124 * lane + ((lane & 4) ? 0x23e : 0) + 11 * rank + 22 * slot - 0x452 * (lane == 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u16 get_timing_register_addr (int lane, int tm, int slot, int rank)
|
|
|
|
{
|
|
|
|
const u16 offs[] = { 0x1d, 0xa8, 0xe6, 0x5c };
|
|
|
|
return get_lane_offset (slot, rank, lane) + offs[(tm + 3) % 4];
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_1d0 (u32 val, u16 addr, int bits, int flag)
|
|
|
|
{
|
|
|
|
write_mchbar32 (0x1d0, 0);
|
|
|
|
while (read_mchbar32 (0x1d0) & 0x800000);
|
|
|
|
write_mchbar32 (0x1d4, (val & ((1 << bits) - 1)) | (2 << bits) | (flag << bits));
|
|
|
|
write_mchbar32 (0x1d0, 0x40000000 | addr);
|
|
|
|
while (read_mchbar32 (0x1d0) & 0x800000);
|
|
|
|
}
|
|
|
|
|
|
|
|
static u16 read_1d0 (u16 addr, int split)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
write_mchbar32 (0x1d0, 0);
|
|
|
|
while (read_mchbar32 (0x1d0) & 0x800000);
|
|
|
|
write_mchbar32 (0x1d0, 0x80000000 | (((read_mchbar8 (0x246) >> 2) & 3) + 0x361 - addr));
|
|
|
|
while (read_mchbar32 (0x1d0) & 0x800000);
|
|
|
|
val = read_mchbar32 (0x1d8);
|
|
|
|
write_1d0 (0, 0x33d, 0, 0);
|
|
|
|
write_1d0 (0, 0x33d, 0, 0);
|
|
|
|
return val & ((1 << split) - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dump_timings (void)
|
|
|
|
{
|
|
|
|
int channel, slot, rank, lane, i;
|
|
|
|
printf ("Timings:\n");
|
|
|
|
for (channel = 0; channel < 2; channel++)
|
|
|
|
for (slot = 0; slot < 2; slot++)
|
|
|
|
for (rank = 0; rank < 2; rank++) {
|
|
|
|
printf ("channel %d, slot %d, rank %d\n", channel, slot, rank);
|
|
|
|
for (lane = 0; lane < 9; lane++) {
|
|
|
|
printf ("lane %d: ", lane);
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
printf ("%x ", read_500 (channel,
|
|
|
|
get_timing_register_addr (lane, i, slot, rank), 9));
|
|
|
|
}
|
|
|
|
printf ("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
printf ("[178] = %x\n", read_1d0 (0x178, 7));
|
|
|
|
printf ("[10b] = %x\n", read_1d0 (0x10b, 6));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-20 15:41:24 +02:00
|
|
|
/*
|
|
|
|
* (G)MCH MMIO Config Space
|
|
|
|
*/
|
2015-10-10 13:20:32 +02:00
|
|
|
int print_mchbar(struct pci_dev *nb, struct pci_access *pacc, const char *dump_spd_file)
|
2008-08-20 15:41:24 +02:00
|
|
|
{
|
|
|
|
int i, size = (16 * 1024);
|
2010-12-17 23:34:58 +01:00
|
|
|
uint64_t mchbar_phys;
|
|
|
|
struct pci_dev *nb_device6; /* "overflow device" on i865 */
|
|
|
|
uint16_t pcicmd6;
|
2008-08-20 15:41:24 +02:00
|
|
|
|
|
|
|
printf("\n============= MCHBAR ============\n\n");
|
|
|
|
|
|
|
|
switch (nb->device_id) {
|
2010-12-17 23:34:58 +01:00
|
|
|
case PCI_DEVICE_ID_INTEL_82865:
|
|
|
|
/*
|
|
|
|
* On i865, the memory access enable/disable bit (MCHBAREN on
|
|
|
|
* i945/i965) is not in the MCHBAR (i945/i965) register but in
|
|
|
|
* the PCICMD6 register. BAR6 and PCICMD6 reside on device 6.
|
|
|
|
*
|
|
|
|
* The actual base address is in BAR6 on i865 where on
|
|
|
|
* i945/i965 the base address is in MCHBAR.
|
|
|
|
*/
|
|
|
|
nb_device6 = pci_get_dev(pacc, 0, 0, 0x06, 0); /* Device 6 */
|
|
|
|
mchbar_phys = pci_read_long(nb_device6, 0x10); /* BAR6 */
|
|
|
|
pcicmd6 = pci_read_long(nb_device6, 0x04); /* PCICMD6 */
|
|
|
|
|
|
|
|
/* Try to enable Memory Access Enable (MAE). */
|
|
|
|
if (!(pcicmd6 & (1 << 1))) {
|
|
|
|
printf("Access to BAR6 is currently disabled, "
|
|
|
|
"attempting to enable.\n");
|
|
|
|
pci_write_long(nb_device6, 0x04, pcicmd6 | (1 << 1));
|
|
|
|
if (pci_read_long(nb_device6, 0x04) & (1 << 1))
|
|
|
|
printf("Enabled successfully.\n");
|
|
|
|
else
|
|
|
|
printf("Enable FAILED!\n");
|
|
|
|
}
|
|
|
|
mchbar_phys &= 0xfffff000; /* Bits 31:12 from BAR6 */
|
|
|
|
break;
|
2010-04-21 08:23:19 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_82915:
|
2008-08-20 15:41:24 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_82945GM:
|
2010-08-01 17:33:30 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_82945GSE:
|
2008-11-02 12:11:40 +01:00
|
|
|
case PCI_DEVICE_ID_INTEL_82945P:
|
2012-10-13 02:19:30 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_82975X:
|
2008-08-20 15:41:24 +02:00
|
|
|
mchbar_phys = pci_read_long(nb, 0x44) & 0xfffffffe;
|
|
|
|
break;
|
2012-10-13 02:19:30 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_82965PM:
|
|
|
|
case PCI_DEVICE_ID_INTEL_82Q35:
|
|
|
|
case PCI_DEVICE_ID_INTEL_82G33:
|
|
|
|
case PCI_DEVICE_ID_INTEL_82Q33:
|
|
|
|
mchbar_phys = pci_read_long(nb, 0x48) & 0xfffffffe;
|
|
|
|
mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
|
|
|
|
break;
|
2012-10-13 06:23:52 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_82946:
|
2012-10-13 02:19:30 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_82Q965:
|
2010-07-29 21:25:31 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_ATOM_DXXX:
|
|
|
|
case PCI_DEVICE_ID_INTEL_ATOM_NXXX:
|
2012-10-13 02:19:30 +02:00
|
|
|
mchbar_phys = pci_read_long(nb, 0x48);
|
2010-07-29 21:25:31 +02:00
|
|
|
|
|
|
|
/* Test if bit 0 of the MCHBAR reg is 1 to enable memory reads.
|
2010-12-17 23:34:58 +01:00
|
|
|
* If it isn't, try to set it. This may fail, because there is
|
|
|
|
* some bit that locks that bit, and isn't in the public
|
2010-07-29 21:25:31 +02:00
|
|
|
* datasheets.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if(!(mchbar_phys & 1))
|
|
|
|
{
|
2012-10-13 02:19:30 +02:00
|
|
|
printf("Access to the MCHBAR is currently disabled, "
|
|
|
|
"attempting to enable.\n");
|
2010-07-29 21:25:31 +02:00
|
|
|
mchbar_phys |= 0x1;
|
|
|
|
pci_write_long(nb, 0x48, mchbar_phys);
|
2012-10-13 02:19:30 +02:00
|
|
|
if(pci_read_long(nb, 0x48) & 1)
|
2010-07-29 21:25:31 +02:00
|
|
|
printf("Enabled successfully.\n");
|
|
|
|
else
|
|
|
|
printf("Enable FAILED!\n");
|
|
|
|
}
|
|
|
|
mchbar_phys &= 0xfffffffe;
|
2012-10-13 02:19:30 +02:00
|
|
|
mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
|
|
|
|
break;
|
2009-09-30 19:05:46 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_82443LX:
|
|
|
|
case PCI_DEVICE_ID_INTEL_82443BX:
|
2009-08-29 17:45:43 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_82810:
|
2012-10-13 02:19:30 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_82810E_DC:
|
|
|
|
case PCI_DEVICE_ID_INTEL_82810_DC:
|
2010-02-22 12:26:06 +01:00
|
|
|
case PCI_DEVICE_ID_INTEL_82830M:
|
2010-12-17 23:34:58 +01:00
|
|
|
printf("This northbridge does not have MCHBAR.\n");
|
2008-08-20 15:41:24 +02:00
|
|
|
return 1;
|
2015-08-17 13:04:41 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_82XX4X:
|
|
|
|
case PCI_DEVICE_ID_INTEL_82Q45:
|
|
|
|
case PCI_DEVICE_ID_INTEL_82G45:
|
|
|
|
case PCI_DEVICE_ID_INTEL_82G41:
|
|
|
|
case PCI_DEVICE_ID_INTEL_82B43:
|
|
|
|
case PCI_DEVICE_ID_INTEL_82B43_2:
|
2012-10-13 02:19:30 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_82X38:
|
2011-04-04 07:53:19 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_32X0:
|
2010-05-30 14:33:12 +02:00
|
|
|
mchbar_phys = pci_read_long(nb, 0x48) & 0xfffffffe;
|
|
|
|
mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
|
2012-10-13 02:19:30 +02:00
|
|
|
break;
|
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_1ST_GEN:
|
|
|
|
mchbar_phys = pci_read_long(nb, 0x48);
|
|
|
|
mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
|
|
|
|
mchbar_phys &= 0x0000000fffffc000UL; /* 35:14 */
|
|
|
|
break;
|
2014-11-05 03:18:44 +01:00
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_D:
|
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_M:
|
2014-11-09 00:11:28 +01:00
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_E3:
|
2014-05-26 15:00:23 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_D:
|
2014-11-09 00:11:28 +01:00
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_M:
|
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_E3:
|
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_015c:
|
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_D:
|
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_M:
|
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_E3:
|
2014-10-30 10:30:40 +01:00
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_U:
|
2015-05-15 04:58:33 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_5TH_GEN_U:
|
2017-10-03 16:03:07 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_D2:
|
2017-04-24 15:06:09 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_WST:
|
2018-01-01 01:48:21 +01:00
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_D:
|
2017-11-05 06:46:44 +01:00
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_6TH_GEN_M:
|
2018-07-24 06:09:47 +02:00
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_7TH_GEN_U:
|
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_7TH_GEN_Y:
|
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_7TH_GEN_U_Q:
|
2012-10-13 02:19:30 +02:00
|
|
|
mchbar_phys = pci_read_long(nb, 0x48);
|
|
|
|
mchbar_phys |= ((uint64_t)pci_read_long(nb, 0x4c)) << 32;
|
|
|
|
mchbar_phys &= 0x0000007fffff8000UL; /* 38:15 */
|
2014-08-16 19:14:02 +02:00
|
|
|
size = 32768;
|
2012-07-21 04:36:47 +02:00
|
|
|
break;
|
2008-08-20 15:41:24 +02:00
|
|
|
default:
|
|
|
|
printf("Error: Dumping MCHBAR on this northbridge is not (yet) supported.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-12-04 16:18:20 +01:00
|
|
|
mchbar = map_physical(mchbar_phys, size);
|
2010-04-27 08:56:47 +02:00
|
|
|
|
2008-12-04 16:18:20 +01:00
|
|
|
if (mchbar == NULL) {
|
2010-12-17 23:34:58 +01:00
|
|
|
if (nb->device_id == PCI_DEVICE_ID_INTEL_82865)
|
|
|
|
perror("Error mapping BAR6");
|
|
|
|
else
|
|
|
|
perror("Error mapping MCHBAR");
|
2008-08-20 15:41:24 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2010-12-17 23:34:58 +01:00
|
|
|
if (nb->device_id == PCI_DEVICE_ID_INTEL_82865)
|
2011-11-14 21:40:34 +01:00
|
|
|
printf("BAR6 = 0x%08" PRIx64 " (MEM)\n\n", mchbar_phys);
|
2010-12-17 23:34:58 +01:00
|
|
|
else
|
2011-11-14 21:40:34 +01:00
|
|
|
printf("MCHBAR = 0x%08" PRIx64 " (MEM)\n\n", mchbar_phys);
|
2008-08-20 15:41:24 +02:00
|
|
|
|
2014-11-04 21:05:12 +01:00
|
|
|
for (i = 0; i < size; i += 4) {
|
|
|
|
if (*(uint32_t *)(mchbar + i))
|
|
|
|
printf("0x%04x: 0x%08"PRIx32"\n", i, *(uint32_t *)(mchbar+i));
|
2008-08-20 15:41:24 +02:00
|
|
|
}
|
|
|
|
|
2014-08-16 19:14:02 +02:00
|
|
|
switch (nb->device_id)
|
|
|
|
{
|
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_1ST_GEN:
|
2013-03-31 13:51:37 +02:00
|
|
|
printf ("clock_speed_index = %x\n", read_500 (0,0x609, 6) >> 1);
|
|
|
|
dump_timings ();
|
2016-05-05 17:29:39 +02:00
|
|
|
if (dump_spd_file != NULL)
|
|
|
|
printf("\nCreating a memory timings file is not supported on this chipset.\n");
|
2014-08-16 19:14:02 +02:00
|
|
|
break;
|
2014-11-05 03:18:44 +01:00
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_D:
|
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_M:
|
2014-11-09 00:11:28 +01:00
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_E3:
|
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_D:
|
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_M:
|
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_E3:
|
|
|
|
case PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_015c:
|
2015-10-10 13:20:32 +02:00
|
|
|
ivybridge_dump_timings(dump_spd_file);
|
2014-08-16 19:14:02 +02:00
|
|
|
break;
|
2016-05-05 17:29:39 +02:00
|
|
|
default:
|
|
|
|
if (dump_spd_file != NULL)
|
|
|
|
printf("\nCreating a memory timings file is not supported on this chipset.\n");
|
2013-03-31 13:51:37 +02:00
|
|
|
}
|
2008-12-04 16:18:20 +01:00
|
|
|
unmap_physical((void *)mchbar, size);
|
2008-08-20 15:41:24 +02:00
|
|
|
return 0;
|
|
|
|
}
|