blob: 6845b4ef6d7f0d4d535f7537d0693bbf504ee759 [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
Idwer Vollering3f91d812010-10-24 13:50:13 +00005 * Copyright (C) 2009 Carl-Daniel Hailfinger
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.
Stefan Reinauer23190272008-08-20 13:41:24 +000015 */
16
17#include <stdint.h>
Stefan Reinauerf7f2f252009-09-01 09:52:14 +000018
19#if defined(__GLIBC__)
Stefan Reinauer1162f252008-12-04 15:18:20 +000020#include <sys/io.h>
Stefan Reinauerf7f2f252009-09-01 09:52:14 +000021#endif
22#if (defined(__MACH__) && defined(__APPLE__))
Stefan Reinauer4cf78792011-03-18 22:53:38 +000023/* DirectHW is available here: http://www.coreboot.org/DirectHW */
Stefan Reinauerf7f2f252009-09-01 09:52:14 +000024#define __DARWIN__
Stefan Reinauercff573d2011-03-18 22:08:39 +000025#include <DirectHW/DirectHW.h>
Stefan Reinauer1162f252008-12-04 15:18:20 +000026#endif
Stefan Reinauer23190272008-08-20 13:41:24 +000027#include <pci/pci.h>
28
Idwer Vollering3f91d812010-10-24 13:50:13 +000029/* This #include is needed for freebsd_{rd,wr}msr. */
30#if defined(__FreeBSD__)
31#include <machine/cpufunc.h>
32#endif
33
Stefan Reinauer23190272008-08-20 13:41:24 +000034#define INTELTOOL_VERSION "1.0"
35
36/* Tested chipsets: */
Maciej Pijanka90d17402009-09-30 17:05:46 +000037#define PCI_VENDOR_ID_INTEL 0x8086
38#define PCI_DEVICE_ID_INTEL_ICH 0x2410
39#define PCI_DEVICE_ID_INTEL_ICH0 0x2420
40#define PCI_DEVICE_ID_INTEL_ICH2 0x2440
41#define PCI_DEVICE_ID_INTEL_ICH4 0x24c0
42#define PCI_DEVICE_ID_INTEL_ICH4M 0x24cc
Idwer Vollering312fc962010-12-17 22:34:58 +000043#define PCI_DEVICE_ID_INTEL_ICH5 0x24d0
Pat Erleyca3548e2010-04-21 06:23:19 +000044#define PCI_DEVICE_ID_INTEL_ICH6 0x2640
Maciej Pijanka90d17402009-09-30 17:05:46 +000045#define PCI_DEVICE_ID_INTEL_ICH7DH 0x27b0
46#define PCI_DEVICE_ID_INTEL_ICH7 0x27b8
47#define PCI_DEVICE_ID_INTEL_ICH7M 0x27b9
48#define PCI_DEVICE_ID_INTEL_ICH7MDH 0x27bd
Corey Osgoodf366ce02010-08-17 08:33:44 +000049#define PCI_DEVICE_ID_INTEL_NM10 0x27bc
50#define PCI_DEVICE_ID_INTEL_ICH8 0x2810
Maciej Pijanka90d17402009-09-30 17:05:46 +000051#define PCI_DEVICE_ID_INTEL_ICH8M 0x2815
Lubomir Rintel2a13bad2015-03-01 10:14:15 +010052#define PCI_DEVICE_ID_INTEL_ICH8ME 0x2811
Anton Kochkovda0b4562010-05-30 12:33:12 +000053#define PCI_DEVICE_ID_INTEL_ICH9DH 0x2912
54#define PCI_DEVICE_ID_INTEL_ICH9DO 0x2914
55#define PCI_DEVICE_ID_INTEL_ICH9R 0x2916
56#define PCI_DEVICE_ID_INTEL_ICH9 0x2918
57#define PCI_DEVICE_ID_INTEL_ICH9M 0x2919
58#define PCI_DEVICE_ID_INTEL_ICH9ME 0x2917
Maciej Pijanka90d17402009-09-30 17:05:46 +000059#define PCI_DEVICE_ID_INTEL_ICH10R 0x3a16
Stefan Tauner088f5692013-05-28 11:30:25 +020060#define PCI_DEVICE_ID_INTEL_3400_DESKTOP 0x3b00
61#define PCI_DEVICE_ID_INTEL_3400_MOBILE 0x3b01
62#define PCI_DEVICE_ID_INTEL_P55 0x3b02
63#define PCI_DEVICE_ID_INTEL_PM55 0x3b03
64#define PCI_DEVICE_ID_INTEL_H55 0x3b06
65#define PCI_DEVICE_ID_INTEL_QM57 0x3b07
66#define PCI_DEVICE_ID_INTEL_H57 0x3b08
67#define PCI_DEVICE_ID_INTEL_HM55 0x3b09
68#define PCI_DEVICE_ID_INTEL_Q57 0x3b0a
69#define PCI_DEVICE_ID_INTEL_HM57 0x3b0b
70#define PCI_DEVICE_ID_INTEL_3400_MOBILE_SFF 0x3b0d
71#define PCI_DEVICE_ID_INTEL_B55_A 0x3b0e
72#define PCI_DEVICE_ID_INTEL_QS57 0x3b0f
73#define PCI_DEVICE_ID_INTEL_3400 0x3b12
74#define PCI_DEVICE_ID_INTEL_3420 0x3b14
75#define PCI_DEVICE_ID_INTEL_3450 0x3b16
76#define PCI_DEVICE_ID_INTEL_B55_B 0x3b1e
Stefan Reinauer74cd56982010-06-01 10:04:28 +000077#define PCI_DEVICE_ID_INTEL_SCH_POULSBO_LPC 0x8119
Nico Huber76d60492013-03-29 17:57:15 +010078#define PCI_DEVICE_ID_INTEL_Z68 0x1c44
79#define PCI_DEVICE_ID_INTEL_P67 0x1c46
80#define PCI_DEVICE_ID_INTEL_UM67 0x1c47
81#define PCI_DEVICE_ID_INTEL_HM65 0x1c49
82#define PCI_DEVICE_ID_INTEL_H67 0x1c4a
83#define PCI_DEVICE_ID_INTEL_HM67 0x1c4b
84#define PCI_DEVICE_ID_INTEL_Q65 0x1c4c
85#define PCI_DEVICE_ID_INTEL_QS67 0x1c4d
86#define PCI_DEVICE_ID_INTEL_Q67 0x1c4e
87#define PCI_DEVICE_ID_INTEL_QM67 0x1c4f
88#define PCI_DEVICE_ID_INTEL_B65 0x1c50
89#define PCI_DEVICE_ID_INTEL_C202 0x1c52
90#define PCI_DEVICE_ID_INTEL_C204 0x1c54
91#define PCI_DEVICE_ID_INTEL_C206 0x1c56
92#define PCI_DEVICE_ID_INTEL_H61 0x1c5c
93#define PCI_DEVICE_ID_INTEL_Z77 0x1e44
94#define PCI_DEVICE_ID_INTEL_Z75 0x1e46
95#define PCI_DEVICE_ID_INTEL_Q77 0x1e47
96#define PCI_DEVICE_ID_INTEL_Q75 0x1e48
97#define PCI_DEVICE_ID_INTEL_B75 0x1e49
98#define PCI_DEVICE_ID_INTEL_H77 0x1e4a
99#define PCI_DEVICE_ID_INTEL_C216 0x1e53
100#define PCI_DEVICE_ID_INTEL_QM77 0x1e55
101#define PCI_DEVICE_ID_INTEL_QS77 0x1e56
102#define PCI_DEVICE_ID_INTEL_HM77 0x1e57
103#define PCI_DEVICE_ID_INTEL_UM77 0x1e58
104#define PCI_DEVICE_ID_INTEL_HM76 0x1e59
105#define PCI_DEVICE_ID_INTEL_HM75 0x1e5d
106#define PCI_DEVICE_ID_INTEL_HM70 0x1e5e
107#define PCI_DEVICE_ID_INTEL_NM70 0x1e5f
Dennis Wassenbergae6685f2014-10-30 10:30:40 +0100108#define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_FULL 0x9c41
109#define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_PREM 0x9c43
110#define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_BASE 0x9c45
Matt DeVillier5b667df2015-05-14 21:58:33 -0500111#define PCI_DEVICE_ID_INTEL_WILDCATPOINT_LP 0x9cc5
Maciej Pijanka90d17402009-09-30 17:05:46 +0000112#define PCI_DEVICE_ID_INTEL_82810 0x7120
Stefan Tauner04c06002012-10-13 02:19:30 +0200113#define PCI_DEVICE_ID_INTEL_82810_DC 0x7122
114#define PCI_DEVICE_ID_INTEL_82810E_DC 0x7124
Stefan Reinauer04844812010-02-22 11:26:06 +0000115#define PCI_DEVICE_ID_INTEL_82830M 0x3575
Maciej Pijanka90d17402009-09-30 17:05:46 +0000116#define PCI_DEVICE_ID_INTEL_82845 0x1a30
Idwer Vollering312fc962010-12-17 22:34:58 +0000117#define PCI_DEVICE_ID_INTEL_82865 0x2570
Pat Erleyca3548e2010-04-21 06:23:19 +0000118#define PCI_DEVICE_ID_INTEL_82915 0x2580
Maciej Pijanka90d17402009-09-30 17:05:46 +0000119#define PCI_DEVICE_ID_INTEL_82945P 0x2770
120#define PCI_DEVICE_ID_INTEL_82945GM 0x27a0
Stefan Tauner04c06002012-10-13 02:19:30 +0200121#define PCI_DEVICE_ID_INTEL_82945GSE 0x27ac
Stefan Tauner1a00cf02012-10-13 06:23:52 +0200122#define PCI_DEVICE_ID_INTEL_82946 0x2970
Stefan Tauner04c06002012-10-13 02:19:30 +0200123#define PCI_DEVICE_ID_INTEL_82965PM 0x2a00
124#define PCI_DEVICE_ID_INTEL_82Q965 0x2990
Maciej Pijanka90d17402009-09-30 17:05:46 +0000125#define PCI_DEVICE_ID_INTEL_82975X 0x277c
Loïc Grenié8429de72009-11-02 15:01:49 +0000126#define PCI_DEVICE_ID_INTEL_82Q35 0x29b0
127#define PCI_DEVICE_ID_INTEL_82G33 0x29c0
128#define PCI_DEVICE_ID_INTEL_82Q33 0x29d0
Stefan Tauner04c06002012-10-13 02:19:30 +0200129#define PCI_DEVICE_ID_INTEL_82X38 0x29e0
Ruud Schrampbb41f502011-04-04 07:53:19 +0200130#define PCI_DEVICE_ID_INTEL_32X0 0x29f0
Damien Zammit9c986642015-08-17 21:04:41 +1000131#define PCI_DEVICE_ID_INTEL_82XX4X 0x2a40
132#define PCI_DEVICE_ID_INTEL_82Q45 0x2e10
133#define PCI_DEVICE_ID_INTEL_82G45 0x2e20
134#define PCI_DEVICE_ID_INTEL_82G41 0x2e30
135#define PCI_DEVICE_ID_INTEL_82B43 0x2e40
136#define PCI_DEVICE_ID_INTEL_82B43_2 0x2e90
137
Stefan Tauner04c06002012-10-13 02:19:30 +0200138#define PCI_DEVICE_ID_INTEL_82X58 0x3405
139#define PCI_DEVICE_ID_INTEL_SCH_POULSBO 0x8100
140#define PCI_DEVICE_ID_INTEL_ATOM_DXXX 0xa000
Sven Schnelle54a5aed2011-10-30 13:30:36 +0100141#define PCI_DEVICE_ID_INTEL_I63XX 0x2670
Sven Schnelle4b7b3202012-01-08 15:27:18 +0100142
Sven Schnelle56dfc7c2012-07-05 22:53:57 +0200143#define PCI_DEVICE_ID_INTEL_I5000X 0x25c0
144#define PCI_DEVICE_ID_INTEL_I5000Z 0x25d0
145#define PCI_DEVICE_ID_INTEL_I5000V 0x25d4
Sven Schnelle4b7b3202012-01-08 15:27:18 +0100146#define PCI_DEVICE_ID_INTEL_I5000P 0x25d8
147
Corey Osgood23d98c72010-07-29 19:25:31 +0000148/* untested, but almost identical to D-series */
Stefan Tauner04c06002012-10-13 02:19:30 +0200149#define PCI_DEVICE_ID_INTEL_ATOM_NXXX 0xa010
Maciej Pijanka90d17402009-09-30 17:05:46 +0000150
151#define PCI_DEVICE_ID_INTEL_82443LX 0x7180
Maciej Pijanka90d17402009-09-30 17:05:46 +0000152/* 82443BX has a different device ID if AGP is disabled (hardware-wise). */
153#define PCI_DEVICE_ID_INTEL_82443BX 0x7190
154#define PCI_DEVICE_ID_INTEL_82443BX_NO_AGP 0x7192
155
156/* 82371AB/EB/MB use the same device ID value. */
157#define PCI_DEVICE_ID_INTEL_82371XX 0x7110
Stefan Reinauer23190272008-08-20 13:41:24 +0000158
Martin Roth51dde6f2014-12-07 22:11:54 -0700159/* Bay Trail */
160#define PCI_DEVICE_ID_INTEL_BAYTRAIL 0x0f00 /* SOC Transaction Router */
161#define PCI_DEVICE_ID_INTEL_BAYTRAIL_LPC 0x0f1c
162#define PCI_DEVICE_ID_INTEL_BAYTRAIL_GFX 0x0f31
163#define CPUID_BAYTRAIL 0x30670
164
Stefan Tauner04c06002012-10-13 02:19:30 +0200165/* Intel starts counting these generations with the integration of the DRAM controller */
Stefan Taunerdbc6fcd2013-06-20 18:05:06 +0200166#define PCI_DEVICE_ID_INTEL_CORE_0TH_GEN 0xd132 /* Nehalem */
Stefan Tauner04c06002012-10-13 02:19:30 +0200167#define PCI_DEVICE_ID_INTEL_CORE_1ST_GEN 0x0044 /* Westmere */
Felix Held0cc8f292014-11-05 03:18:44 +0100168#define PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_D 0x0100 /* Sandy Bridge (Desktop) */
169#define PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_M 0x0104 /* Sandy Bridge (Mobile) */
Felix Heldfac95e32014-11-09 00:11:28 +0100170#define PCI_DEVICE_ID_INTEL_CORE_2ND_GEN_E3 0x0108 /* Sandy Bridge (Xeon E3) */
171#define PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_D 0x0150 /* Ivy Bridge (Desktop) */
172#define PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_M 0x0154 /* Ivy Bridge (Mobile) */
173#define PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_E3 0x0158 /* Ivy Bridge (Xeon E3 v2) */
174#define PCI_DEVICE_ID_INTEL_CORE_3RD_GEN_015c 0x015c /* Ivy Bridge (?) */
175#define PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_D 0x0c00 /* Haswell (Desktop) */
176#define PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_M 0x0c04 /* Haswell (Mobile) */
177#define PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_E3 0x0c08 /* Haswell (Xeon E3 v3) */
Dennis Wassenbergae6685f2014-10-30 10:30:40 +0100178#define PCI_DEVICE_ID_INTEL_CORE_4TH_GEN_U 0x0a04 /* Haswell-ULT */
Matt DeVillier5b667df2015-05-14 21:58:33 -0500179#define PCI_DEVICE_ID_INTEL_CORE_5TH_GEN_U 0x1604 /* Broadwell-ULT */
Anton Kochkovc7fc4422012-07-21 06:36:47 +0400180
Stefan Reinauer23190272008-08-20 13:41:24 +0000181#define ARRAY_SIZE(a) ((int)(sizeof(a) / sizeof((a)[0])))
182
Idwer Vollering3f91d812010-10-24 13:50:13 +0000183#if !defined(__DARWIN__) && !defined(__FreeBSD__)
Stefan Reinauer23190272008-08-20 13:41:24 +0000184typedef struct { uint32_t hi, lo; } msr_t;
Stefan Reinauer1162f252008-12-04 15:18:20 +0000185#endif
Idwer Vollering3f91d812010-10-24 13:50:13 +0000186#if defined (__FreeBSD__)
187/* FreeBSD already has conflicting definitions for wrmsr/rdmsr. */
188#undef rdmsr
189#undef wrmsr
190#define rdmsr freebsd_rdmsr
191#define wrmsr freebsd_wrmsr
192typedef struct { uint32_t hi, lo; } msr_t;
193msr_t freebsd_rdmsr(int addr);
194int freebsd_wrmsr(int addr, msr_t msr);
195#endif
Stefan Reinauer23190272008-08-20 13:41:24 +0000196typedef struct { uint16_t addr; int size; char *name; } io_register_t;
197
Stefan Reinauercff573d2011-03-18 22:08:39 +0000198void *map_physical(uint64_t phys_addr, size_t len);
Stefan Reinauerf7f2f252009-09-01 09:52:14 +0000199void unmap_physical(void *virt_addr, size_t len);
Stefan Reinauer23190272008-08-20 13:41:24 +0000200
201unsigned int cpuid(unsigned int op);
202int print_intel_core_msrs(void);
Vladimir Serbinenkofb69a692015-10-10 13:20:32 +0200203int print_mchbar(struct pci_dev *nb, struct pci_access *pacc, const char *dump_spd_file);
Tobias Diedrich3645e612010-11-27 14:44:19 +0000204int print_pmbase(struct pci_dev *sb, struct pci_access *pacc);
Stefan Reinauer23190272008-08-20 13:41:24 +0000205int print_rcba(struct pci_dev *sb);
Nico Huber09dcbf02013-04-01 15:08:04 +0200206int print_gpios(struct pci_dev *sb, int show_all, int show_diffs);
Stefan Reinauer23190272008-08-20 13:41:24 +0000207int print_epbar(struct pci_dev *nb);
208int print_dmibar(struct pci_dev *nb);
209int print_pciexbar(struct pci_dev *nb);
Sven Schnelle4b7b3202012-01-08 15:27:18 +0100210int print_ambs(struct pci_dev *nb, struct pci_access *pacc);
Alexander Couzensaa3dd5d2015-01-03 02:52:10 +0100211int print_spi(struct pci_dev *sb);
Vladimir Serbinenko188aec02015-05-20 14:04:41 +0200212int print_gfx(struct pci_dev *gfx);
Vladimir Serbinenkofb69a692015-10-10 13:20:32 +0200213void ivybridge_dump_timings(const char *dump_spd_file);