split the one file, as the several printing functions will continue to grow
[coreboot.git] / util / inteltool / inteltool.h
1 /*
2  * inteltool - dump all registers on an Intel CPU + chipset based system.
3  *
4  * Copyright (C) 2008 by coresystems GmbH 
5  * 
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>
21 #include <pci/pci.h>
22
23 #define INTELTOOL_VERSION "1.0"
24
25 /* Tested chipsets: */
26 #define PCI_VENDOR_ID_INTEL             0x8086
27 #define PCI_DEVICE_ID_INTEL_ICH         0x2410
28 #define PCI_DEVICE_ID_INTEL_ICH0        0x2420
29 #define PCI_DEVICE_ID_INTEL_ICH2        0x2440
30 #define PCI_DEVICE_ID_INTEL_ICH4        0x24c0
31 #define PCI_DEVICE_ID_INTEL_ICH4M       0x24cc
32 #define PCI_DEVICE_ID_INTEL_ICH7DH      0x27b0
33 #define PCI_DEVICE_ID_INTEL_ICH7        0x27b8
34 #define PCI_DEVICE_ID_INTEL_ICH7M       0x27b9
35 #define PCI_DEVICE_ID_INTEL_ICH7MDH     0x27bd
36
37 #define PCI_DEVICE_ID_INTEL_82845       0x1a30
38 #define PCI_DEVICE_ID_INTEL_82945GM     0x27a0
39
40 #define ARRAY_SIZE(a) ((int)(sizeof(a) / sizeof((a)[0])))
41
42 typedef struct { uint32_t hi, lo; } msr_t;
43 typedef struct { uint16_t addr; int size; char *name; } io_register_t;
44
45 extern int fd_mem;
46
47 unsigned int cpuid(unsigned int op);
48 int print_intel_core_msrs(void);
49 int print_mchbar(struct pci_dev *nb);
50 int print_pmbase(struct pci_dev *sb);
51 int print_rcba(struct pci_dev *sb);
52 int print_gpios(struct pci_dev *sb);
53 int print_epbar(struct pci_dev *nb);
54 int print_dmibar(struct pci_dev *nb);
55 int print_pciexbar(struct pci_dev *nb);
56