summaryrefslogtreecommitdiffstats
path: root/programmer.h
diff options
context:
space:
mode:
Diffstat (limited to 'programmer.h')
-rw-r--r--programmer.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/programmer.h b/programmer.h
index 25a8506..754f3cc 100644
--- a/programmer.h
+++ b/programmer.h
@@ -5,6 +5,7 @@
* Copyright (C) 2000 Ronald G. Minnich <rminnich@gmail.com>
* Copyright (C) 2005-2009 coresystems GmbH
* Copyright (C) 2006-2009 Carl-Daniel Hailfinger
+ * Copyright (C) 2016-2017 Raptor Engineering, LLC
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -45,6 +46,9 @@ enum programmer {
#if CONFIG_GFXNVIDIA == 1
PROGRAMMER_GFXNVIDIA,
#endif
+#if CONFIG_AST1100 == 1
+ PROGRAMMER_AST1100,
+#endif
#if CONFIG_AST2400 == 1
PROGRAMMER_AST2400,
#endif
@@ -402,10 +406,16 @@ int gfxnvidia_init(void);
extern const struct dev_entry gfx_nvidia[];
#endif
+/* ast1100.c */
+#if CONFIG_AST1100 == 1
+int ast1100_init(void);
+extern const struct dev_entry bmc_aspeed_ast1100[];
+#endif
+
/* ast2400.c */
#if CONFIG_AST2400 == 1
int ast2400_init(void);
-extern const struct dev_entry bmc_aspeed[];
+extern const struct dev_entry bmc_aspeed_ast2400[];
#endif
/* drkaiser.c */
@@ -610,6 +620,10 @@ enum spi_controller {
SPI_CONTROLLER_CH341A_SPI,
#endif
+#if CONFIG_AST1100 == 1
+ SPI_CONTROLLER_AST1100,
+#endif
+
#if CONFIG_AST2400 == 1
SPI_CONTROLLER_AST2400,
#endif
OpenPOWER on IntegriCloud