summaryrefslogtreecommitdiff
path: root/programmer.h
diff options
context:
space:
mode:
Diffstat (limited to 'programmer.h')
-rw-r--r--programmer.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/programmer.h b/programmer.h
index aca357c..ef96c9e 100644
--- a/programmer.h
+++ b/programmer.h
@@ -554,10 +554,15 @@ int default_spi_write_256(struct flashctx *flash, uint8_t *buf, unsigned int sta
int default_spi_write_aai(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len);
int register_spi_programmer(const struct spi_programmer *programmer);
-/* The following enum is needed by ich_descriptor_tool and ich* code. */
+/* The following enum is needed by ich_descriptor_tool and ich* code as well as in chipset_enable.c. */
enum ich_chipset {
CHIPSET_ICH_UNKNOWN,
- CHIPSET_ICH7 = 7,
+ CHIPSET_ICH2 = 2,
+ CHIPSET_ICH3,
+ CHIPSET_ICH4,
+ CHIPSET_ICH5,
+ CHIPSET_ICH6,
+ CHIPSET_ICH7,
CHIPSET_ICH8,
CHIPSET_ICH9,
CHIPSET_ICH10,