blob: 74bfdca8026ab38c1ec69a2b39525fa6cdd285f3 [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 Reinauer04844812010-02-22 11:26:06 +00004 * Copyright (C) 2008-2010 by coresystems GmbH
Stefan Reinauer23190272008-08-20 13:41:24 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20#include <stdint.h>
Stefan Reinauerf7f2f252009-09-01 09:52:14 +000021
22#if defined(__GLIBC__)
Stefan Reinauer1162f252008-12-04 15:18:20 +000023#include <sys/io.h>
Stefan Reinauerf7f2f252009-09-01 09:52:14 +000024#endif
25#if (defined(__MACH__) && defined(__APPLE__))
26/* DirectIO is available here: http://www.coresystems.de/en/directio */
27#define __DARWIN__
Stefan Reinauer1162f252008-12-04 15:18:20 +000028#include <DirectIO/darwinio.h>
29#endif
Stefan Reinauer23190272008-08-20 13:41:24 +000030#include <pci/pci.h>
31
32#define INTELTOOL_VERSION "1.0"
33
34/* Tested chipsets: */
Maciej Pijanka90d17402009-09-30 17:05:46 +000035#define PCI_VENDOR_ID_INTEL 0x8086
36#define PCI_DEVICE_ID_INTEL_ICH 0x2410
37#define PCI_DEVICE_ID_INTEL_ICH0 0x2420
38#define PCI_DEVICE_ID_INTEL_ICH2 0x2440
39#define PCI_DEVICE_ID_INTEL_ICH4 0x24c0
40#define PCI_DEVICE_ID_INTEL_ICH4M 0x24cc
Pat Erleyca3548e2010-04-21 06:23:19 +000041#define PCI_DEVICE_ID_INTEL_ICH6 0x2640
Maciej Pijanka90d17402009-09-30 17:05:46 +000042#define PCI_DEVICE_ID_INTEL_ICH7DH 0x27b0
43#define PCI_DEVICE_ID_INTEL_ICH7 0x27b8
44#define PCI_DEVICE_ID_INTEL_ICH7M 0x27b9
45#define PCI_DEVICE_ID_INTEL_ICH7MDH 0x27bd
46#define PCI_DEVICE_ID_INTEL_ICH8M 0x2815
47#define PCI_DEVICE_ID_INTEL_ICH10R 0x3a16
Stefan Reinauer23190272008-08-20 13:41:24 +000048
Maciej Pijanka90d17402009-09-30 17:05:46 +000049#define PCI_DEVICE_ID_INTEL_82810 0x7120
50#define PCI_DEVICE_ID_INTEL_82810DC 0x7122
Stefan Reinauer04844812010-02-22 11:26:06 +000051#define PCI_DEVICE_ID_INTEL_82830M 0x3575
Maciej Pijanka90d17402009-09-30 17:05:46 +000052#define PCI_DEVICE_ID_INTEL_82845 0x1a30
Pat Erleyca3548e2010-04-21 06:23:19 +000053#define PCI_DEVICE_ID_INTEL_82915 0x2580
Maciej Pijanka90d17402009-09-30 17:05:46 +000054#define PCI_DEVICE_ID_INTEL_82945P 0x2770
55#define PCI_DEVICE_ID_INTEL_82945GM 0x27a0
56#define PCI_DEVICE_ID_INTEL_PM965 0x2a00
57#define PCI_DEVICE_ID_INTEL_82975X 0x277c
Loïc Grenié8429de72009-11-02 15:01:49 +000058#define PCI_DEVICE_ID_INTEL_82Q35 0x29b0
59#define PCI_DEVICE_ID_INTEL_82G33 0x29c0
60#define PCI_DEVICE_ID_INTEL_82Q33 0x29d0
Maciej Pijanka90d17402009-09-30 17:05:46 +000061#define PCI_DEVICE_ID_INTEL_X58 0x3405
62
63#define PCI_DEVICE_ID_INTEL_82443LX 0x7180
64
65/* 82443BX has a different device ID if AGP is disabled (hardware-wise). */
66#define PCI_DEVICE_ID_INTEL_82443BX 0x7190
67#define PCI_DEVICE_ID_INTEL_82443BX_NO_AGP 0x7192
68
69/* 82371AB/EB/MB use the same device ID value. */
70#define PCI_DEVICE_ID_INTEL_82371XX 0x7110
Stefan Reinauer23190272008-08-20 13:41:24 +000071
72#define ARRAY_SIZE(a) ((int)(sizeof(a) / sizeof((a)[0])))
73
Stefan Reinauerf7f2f252009-09-01 09:52:14 +000074#ifndef __DARWIN__
Stefan Reinauer23190272008-08-20 13:41:24 +000075typedef struct { uint32_t hi, lo; } msr_t;
Stefan Reinauer1162f252008-12-04 15:18:20 +000076#endif
Stefan Reinauer23190272008-08-20 13:41:24 +000077typedef struct { uint16_t addr; int size; char *name; } io_register_t;
78
Stefan Reinauerf7f2f252009-09-01 09:52:14 +000079void *map_physical(unsigned long phys_addr, size_t len);
80void unmap_physical(void *virt_addr, size_t len);
Stefan Reinauer23190272008-08-20 13:41:24 +000081
82unsigned int cpuid(unsigned int op);
83int print_intel_core_msrs(void);
84int print_mchbar(struct pci_dev *nb);
85int print_pmbase(struct pci_dev *sb);
86int print_rcba(struct pci_dev *sb);
87int print_gpios(struct pci_dev *sb);
88int print_epbar(struct pci_dev *nb);
89int print_dmibar(struct pci_dev *nb);
90int print_pciexbar(struct pci_dev *nb);
91