blob: cac1c272abcee2572677f8e567d5b3686aef77b4 [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.
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 <stdint.h>
Stefan Reinauerf7f2f252009-09-01 09:52:14 +000022
23#if defined(__GLIBC__)
Stefan Reinauer1162f252008-12-04 15:18:20 +000024#include <sys/io.h>
Stefan Reinauerf7f2f252009-09-01 09:52:14 +000025#endif
26#if (defined(__MACH__) && defined(__APPLE__))
Idwer Vollering312fc962010-12-17 22:34:58 +000027/* DirectHW is available here: http://www.coresystems.de/en/directhw */
Stefan Reinauerf7f2f252009-09-01 09:52:14 +000028#define __DARWIN__
Stefan Reinauercff573d2011-03-18 22:08:39 +000029#include <DirectHW/DirectHW.h>
Stefan Reinauer1162f252008-12-04 15:18:20 +000030#endif
Stefan Reinauer23190272008-08-20 13:41:24 +000031#include <pci/pci.h>
32
Idwer Vollering3f91d812010-10-24 13:50:13 +000033/* This #include is needed for freebsd_{rd,wr}msr. */
34#if defined(__FreeBSD__)
35#include <machine/cpufunc.h>
36#endif
37
Stefan Reinauer23190272008-08-20 13:41:24 +000038#define INTELTOOL_VERSION "1.0"
39
40/* Tested chipsets: */
Maciej Pijanka90d17402009-09-30 17:05:46 +000041#define PCI_VENDOR_ID_INTEL 0x8086
42#define PCI_DEVICE_ID_INTEL_ICH 0x2410
43#define PCI_DEVICE_ID_INTEL_ICH0 0x2420
44#define PCI_DEVICE_ID_INTEL_ICH2 0x2440
45#define PCI_DEVICE_ID_INTEL_ICH4 0x24c0
46#define PCI_DEVICE_ID_INTEL_ICH4M 0x24cc
Idwer Vollering312fc962010-12-17 22:34:58 +000047#define PCI_DEVICE_ID_INTEL_ICH5 0x24d0
Pat Erleyca3548e2010-04-21 06:23:19 +000048#define PCI_DEVICE_ID_INTEL_ICH6 0x2640
Maciej Pijanka90d17402009-09-30 17:05:46 +000049#define PCI_DEVICE_ID_INTEL_ICH7DH 0x27b0
50#define PCI_DEVICE_ID_INTEL_ICH7 0x27b8
51#define PCI_DEVICE_ID_INTEL_ICH7M 0x27b9
52#define PCI_DEVICE_ID_INTEL_ICH7MDH 0x27bd
Corey Osgoodf366ce02010-08-17 08:33:44 +000053#define PCI_DEVICE_ID_INTEL_NM10 0x27bc
54#define PCI_DEVICE_ID_INTEL_ICH8 0x2810
Maciej Pijanka90d17402009-09-30 17:05:46 +000055#define PCI_DEVICE_ID_INTEL_ICH8M 0x2815
Anton Kochkovda0b4562010-05-30 12:33:12 +000056#define PCI_DEVICE_ID_INTEL_ICH9DH 0x2912
57#define PCI_DEVICE_ID_INTEL_ICH9DO 0x2914
58#define PCI_DEVICE_ID_INTEL_ICH9R 0x2916
59#define PCI_DEVICE_ID_INTEL_ICH9 0x2918
60#define PCI_DEVICE_ID_INTEL_ICH9M 0x2919
61#define PCI_DEVICE_ID_INTEL_ICH9ME 0x2917
Maciej Pijanka90d17402009-09-30 17:05:46 +000062#define PCI_DEVICE_ID_INTEL_ICH10R 0x3a16
Stefan Reinauer74cd56982010-06-01 10:04:28 +000063#define PCI_DEVICE_ID_INTEL_SCH_POULSBO_LPC 0x8119
Stefan Reinauer23190272008-08-20 13:41:24 +000064
Maciej Pijanka90d17402009-09-30 17:05:46 +000065#define PCI_DEVICE_ID_INTEL_82810 0x7120
66#define PCI_DEVICE_ID_INTEL_82810DC 0x7122
Joseph Smithe10757e2010-06-16 22:21:19 +000067#define PCI_DEVICE_ID_INTEL_82810E_MC 0x7124
Stefan Reinauer04844812010-02-22 11:26:06 +000068#define PCI_DEVICE_ID_INTEL_82830M 0x3575
Maciej Pijanka90d17402009-09-30 17:05:46 +000069#define PCI_DEVICE_ID_INTEL_82845 0x1a30
Idwer Vollering312fc962010-12-17 22:34:58 +000070#define PCI_DEVICE_ID_INTEL_82865 0x2570
Pat Erleyca3548e2010-04-21 06:23:19 +000071#define PCI_DEVICE_ID_INTEL_82915 0x2580
Maciej Pijanka90d17402009-09-30 17:05:46 +000072#define PCI_DEVICE_ID_INTEL_82945P 0x2770
73#define PCI_DEVICE_ID_INTEL_82945GM 0x27a0
Björn Busse2d33dc42010-08-01 15:33:30 +000074#define PCI_DEVICE_ID_INTEL_82945GSE 0x27ac
Maciej Pijanka90d17402009-09-30 17:05:46 +000075#define PCI_DEVICE_ID_INTEL_PM965 0x2a00
Corey Osgood23d98c72010-07-29 19:25:31 +000076#define PCI_DEVICE_ID_INTEL_Q965 0x2990
Maciej Pijanka90d17402009-09-30 17:05:46 +000077#define PCI_DEVICE_ID_INTEL_82975X 0x277c
Loïc Grenié8429de72009-11-02 15:01:49 +000078#define PCI_DEVICE_ID_INTEL_82Q35 0x29b0
79#define PCI_DEVICE_ID_INTEL_82G33 0x29c0
80#define PCI_DEVICE_ID_INTEL_82Q33 0x29d0
Anton Kochkovda0b4562010-05-30 12:33:12 +000081#define PCI_DEVICE_ID_INTEL_GS45 0x2a40
Maciej Pijanka90d17402009-09-30 17:05:46 +000082#define PCI_DEVICE_ID_INTEL_X58 0x3405
Stefan Reinauer74cd56982010-06-01 10:04:28 +000083#define PCI_DEVICE_ID_INTEL_SCH_POULSBO 0x8100
Corey Osgood23d98c72010-07-29 19:25:31 +000084#define PCI_DEVICE_ID_INTEL_ATOM_DXXX 0xa000
85
86/* untested, but almost identical to D-series */
87#define PCI_DEVICE_ID_INTEL_ATOM_NXXX 0xa010
Maciej Pijanka90d17402009-09-30 17:05:46 +000088
89#define PCI_DEVICE_ID_INTEL_82443LX 0x7180
Maciej Pijanka90d17402009-09-30 17:05:46 +000090/* 82443BX has a different device ID if AGP is disabled (hardware-wise). */
91#define PCI_DEVICE_ID_INTEL_82443BX 0x7190
92#define PCI_DEVICE_ID_INTEL_82443BX_NO_AGP 0x7192
93
94/* 82371AB/EB/MB use the same device ID value. */
95#define PCI_DEVICE_ID_INTEL_82371XX 0x7110
Stefan Reinauer23190272008-08-20 13:41:24 +000096
97#define ARRAY_SIZE(a) ((int)(sizeof(a) / sizeof((a)[0])))
98
Idwer Vollering3f91d812010-10-24 13:50:13 +000099#if !defined(__DARWIN__) && !defined(__FreeBSD__)
Stefan Reinauer23190272008-08-20 13:41:24 +0000100typedef struct { uint32_t hi, lo; } msr_t;
Stefan Reinauer1162f252008-12-04 15:18:20 +0000101#endif
Idwer Vollering3f91d812010-10-24 13:50:13 +0000102#if defined (__FreeBSD__)
103/* FreeBSD already has conflicting definitions for wrmsr/rdmsr. */
104#undef rdmsr
105#undef wrmsr
106#define rdmsr freebsd_rdmsr
107#define wrmsr freebsd_wrmsr
108typedef struct { uint32_t hi, lo; } msr_t;
109msr_t freebsd_rdmsr(int addr);
110int freebsd_wrmsr(int addr, msr_t msr);
111#endif
Stefan Reinauer23190272008-08-20 13:41:24 +0000112typedef struct { uint16_t addr; int size; char *name; } io_register_t;
113
Stefan Reinauercff573d2011-03-18 22:08:39 +0000114void *map_physical(uint64_t phys_addr, size_t len);
Stefan Reinauerf7f2f252009-09-01 09:52:14 +0000115void unmap_physical(void *virt_addr, size_t len);
Stefan Reinauer23190272008-08-20 13:41:24 +0000116
117unsigned int cpuid(unsigned int op);
118int print_intel_core_msrs(void);
Idwer Vollering312fc962010-12-17 22:34:58 +0000119int print_mchbar(struct pci_dev *nb, struct pci_access *pacc);
Tobias Diedrich3645e612010-11-27 14:44:19 +0000120int print_pmbase(struct pci_dev *sb, struct pci_access *pacc);
Stefan Reinauer23190272008-08-20 13:41:24 +0000121int print_rcba(struct pci_dev *sb);
122int print_gpios(struct pci_dev *sb);
123int print_epbar(struct pci_dev *nb);
124int print_dmibar(struct pci_dev *nb);
125int print_pciexbar(struct pci_dev *nb);