mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-19 05:31:32 +00:00
I2C added
This commit is contained in:
parent
b7eaad8134
commit
e2c22d780e
1 changed files with 25 additions and 0 deletions
|
@ -55,6 +55,11 @@
|
||||||
#endif
|
#endif
|
||||||
#include <version.h>
|
#include <version.h>
|
||||||
|
|
||||||
|
#if defined(CONFIG_HARD_I2C) || \
|
||||||
|
defined(CONFIG_SOFT_I2C)
|
||||||
|
#include <i2c.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
static char *failed = "*** failed ***\n";
|
static char *failed = "*** failed ***\n";
|
||||||
|
|
||||||
#ifdef CONFIG_PCU_E
|
#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 *
|
* Initialization sequence *
|
||||||
************************************************************************
|
************************************************************************
|
||||||
|
@ -215,6 +232,9 @@ init_fnc_t *init_sequence[] = {
|
||||||
display_options,
|
display_options,
|
||||||
checkcpu,
|
checkcpu,
|
||||||
checkboard,
|
checkboard,
|
||||||
|
#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
|
||||||
|
init_func_i2c,
|
||||||
|
#endif
|
||||||
init_func_ram,
|
init_func_ram,
|
||||||
#if defined(CFG_DRAM_TEST)
|
#if defined(CFG_DRAM_TEST)
|
||||||
testdram,
|
testdram,
|
||||||
|
@ -561,6 +581,11 @@ void board_init_r (gd_t *id, ulong dest_addr)
|
||||||
/* Initialize the console (after the relocation and devices init) */
|
/* Initialize the console (after the relocation and devices init) */
|
||||||
console_init_r ();
|
console_init_r ();
|
||||||
|
|
||||||
|
#if defined(CONFIG_MISC_INIT_R)
|
||||||
|
/* miscellaneous platform dependent initialisations */
|
||||||
|
misc_init_r ();
|
||||||
|
#endif
|
||||||
|
|
||||||
#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
|
#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
|
||||||
WATCHDOG_RESET ();
|
WATCHDOG_RESET ();
|
||||||
puts ("KGDB: ");
|
puts ("KGDB: ");
|
||||||
|
|
Loading…
Add table
Reference in a new issue