diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2008-12-04 15:18:20 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2008-12-04 15:18:20 +0000 |
commit | 1162f25a49e8f39822123d664cda10fef466b351 (patch) | |
tree | 22afd92c49e7b79fdea37c3e3aef6b34cb70af2f /util/inteltool/inteltool.h | |
parent | fcf9be3b9305cfddaf74594fcaec4d6f23541154 (diff) | |
download | coreboot-1162f25a49e8f39822123d664cda10fef466b351.tar.xz |
Patch to util/inteltool:
* PMBASE dumping now knows the registers.
* Add support for i965, i975, ICH8M
* Add support for Darwin OS using DirectIO
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3794 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/inteltool/inteltool.h')
-rw-r--r-- | util/inteltool/inteltool.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/util/inteltool/inteltool.h b/util/inteltool/inteltool.h index b0ca8522a1..656881428d 100644 --- a/util/inteltool/inteltool.h +++ b/util/inteltool/inteltool.h @@ -18,6 +18,14 @@ */ #include <stdint.h> +#ifndef DARWIN +#include <sys/io.h> +#else +/* DirectIO is available here: + * http://www.coresystems.de/en/directio + */ +#include <DirectIO/darwinio.h> +#endif #include <pci/pci.h> #define INTELTOOL_VERSION "1.0" @@ -33,17 +41,23 @@ #define PCI_DEVICE_ID_INTEL_ICH7 0x27b8 #define PCI_DEVICE_ID_INTEL_ICH7M 0x27b9 #define PCI_DEVICE_ID_INTEL_ICH7MDH 0x27bd +#define PCI_DEVICE_ID_INTEL_ICH8M 0x2815 #define PCI_DEVICE_ID_INTEL_82845 0x1a30 #define PCI_DEVICE_ID_INTEL_82945P 0x2770 #define PCI_DEVICE_ID_INTEL_82945GM 0x27a0 +#define PCI_DEVICE_ID_INTEL_PM965 0x2a00 +#define PCI_DEVICE_ID_INTEL_82975X 0x277c #define ARRAY_SIZE(a) ((int)(sizeof(a) / sizeof((a)[0]))) +#ifndef DARWIN typedef struct { uint32_t hi, lo; } msr_t; +#endif typedef struct { uint16_t addr; int size; char *name; } io_register_t; -extern int fd_mem; +void *map_physical(unsigned long phys_addr, int len); +void unmap_physical(void *virt_addr, int len); unsigned int cpuid(unsigned int op); int print_intel_core_msrs(void); |