summaryrefslogtreecommitdiff
path: root/src/southbridge/intel/ich5r/chip.h
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@openbios.org>2006-04-06 21:40:36 +0000
committerStefan Reinauer <stepan@openbios.org>2006-04-06 21:40:36 +0000
commit84e4bf69c7f0b6b4cf685fe0d6abf6ec93b2eff5 (patch)
tree716c33a7500dba12b30b3306656afd75824a5266 /src/southbridge/intel/ich5r/chip.h
parent966d0e6d70b20b6d14e265d59aaad37ce84d2ddb (diff)
interesting behavior, i thought svn could do moves.
the result should be ok though.. the purpose is dropping the old i82801er southbridge code and using the ich5r code instead because its the same chip but the code looks more solid and is used by many more systems. Some of the old i82801er features have been ported (like hpet enable) git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2241 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/intel/ich5r/chip.h')
-rw-r--r--src/southbridge/intel/ich5r/chip.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/southbridge/intel/ich5r/chip.h b/src/southbridge/intel/ich5r/chip.h
deleted file mode 100644
index eb63889794..0000000000
--- a/src/southbridge/intel/ich5r/chip.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef I82801ER_CHIP_H
-#define I82801ER_CHIP_H
-
-struct southbridge_intel_i82801er_config
-{
-
-#define ICH5R_GPIO_USE_MASK 0x03
-#define ICH5R_GPIO_USE_DEFAULT 0x00
-#define ICH5R_GPIO_USE_AS_NATIVE 0x01
-#define ICH5R_GPIO_USE_AS_GPIO 0x02
-
-#define ICH5R_GPIO_SEL_MASK 0x0c
-#define ICH5R_GPIO_SEL_DEFAULT 0x00
-#define ICH5R_GPIO_SEL_OUTPUT 0x04
-#define ICH5R_GPIO_SEL_INPUT 0x08
-
-#define ICH5R_GPIO_LVL_MASK 0x30
-#define ICH5R_GPIO_LVL_DEFAULT 0x00
-#define ICH5R_GPIO_LVL_LOW 0x10
-#define ICH5R_GPIO_LVL_HIGH 0x20
-#define ICH5R_GPIO_LVL_BLINK 0x30
-
-#define ICH5R_GPIO_INV_MASK 0xc0
-#define ICH5R_GPIO_INV_DEFAULT 0x00
-#define ICH5R_GPIO_INV_OFF 0x40
-#define ICH5R_GPIO_INV_ON 0x80
-
- /* GPIO use select */
- unsigned char gpio[64];
- unsigned int pirq_a_d;
- unsigned int pirq_e_h;
-};
-extern struct chip_operations southbridge_intel_i82801er_ops;
-
-#endif /* I82801ER_CHIP_H */
-