aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstroese <stroese>2004-12-16 17:55:22 +0000
committerstroese <stroese>2004-12-16 17:55:22 +0000
commite2c22d780e64e385e1c07b0e2203f164ca92f2c9 (patch)
tree10a2af5fdf7ce1e0932e8ce2700dcbf5767c4233
parentb7eaad8134a7f5e48711e4f9a7751f8febc91b31 (diff)
I2C added
-rw-r--r--lib_m68k/board.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib_m68k/board.c b/lib_m68k/board.c
index 7e586fea5..6b3edd61b 100644
--- a/lib_m68k/board.c
+++ b/lib_m68k/board.c
@@ -55,6 +55,11 @@
#endif
#include <version.h>
+#if defined(CONFIG_HARD_I2C) || \
+ defined(CONFIG_SOFT_I2C)
+#include <i2c.h>
+#endif
+
static char *failed = "*** failed ***\n";
#ifdef CONFIG_PCU_E
@@ -202,6 +207,18 @@ static int init_func_ram (void)
/***********************************************************************/
+#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
+static int init_func_i2c (void)
+{
+ puts ("I2C: ");
+ i2c_init (CFG_I2C_SPEED, CFG_I2C_SLAVE);
+ puts ("ready\n");
+ return (0);
+}
+#endif
+
+/***********************************************************************/
+
/************************************************************************
* Initialization sequence *
************************************************************************
@@ -215,6 +232,9 @@ init_fnc_t *init_sequence[] = {
display_options,
checkcpu,
checkboard,
+#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
+ init_func_i2c,
+#endif
init_func_ram,
#if defined(CFG_DRAM_TEST)
testdram,
@@ -561,6 +581,11 @@ void board_init_r (gd_t *id, ulong dest_addr)
/* Initialize the console (after the relocation and devices init) */
console_init_r ();
+#if defined(CONFIG_MISC_INIT_R)
+ /* miscellaneous platform dependent initialisations */
+ misc_init_r ();
+#endif
+
#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
WATCHDOG_RESET ();
puts ("KGDB: ");