diff options
author | Heiko Schocher <hs@denx.de> | 2012-01-16 21:12:23 +0000 |
---|---|---|
committer | Heiko Schocher <hs@denx.de> | 2013-07-23 05:54:28 +0200 |
commit | 385c9ef5a7215b2b0c22836fee6c692dfc8559d7 (patch) | |
tree | a2b47fb6744ebeb9cc2ed470fd6033f1f7600696 /include/asm-generic | |
parent | 50ffc3b64aa3c8113f0a9fc31ea96e596d60054a (diff) | |
download | u-boot-imx-385c9ef5a7215b2b0c22836fee6c692dfc8559d7.zip u-boot-imx-385c9ef5a7215b2b0c22836fee6c692dfc8559d7.tar.gz u-boot-imx-385c9ef5a7215b2b0c22836fee6c692dfc8559d7.tar.bz2 |
i2c: add i2c_core and prepare for new multibus support
This Patch introduce the new i2c_core file, which holds
the I2C core functions, for the rework of the multibus/
multiadapter support.
Also adds changes in i2c.h for the new I2C multibus/multiadapter
support. This new support can be activated with the
CONFIG_SYS_I2C define.
Signed-off-by: Heiko Schocher <hs@denx.de>
Signed-off-by: Simon Glass <sjg@chromium.org>
Cc: Mike Frysinger <vapier@gentoo.org>
Cc: Stephen Warren <swarren@wwwdotorg.org>
Diffstat (limited to 'include/asm-generic')
-rw-r--r-- | include/asm-generic/global_data.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-generic/global_data.h b/include/asm-generic/global_data.h index 8cfc3fa..e08da90 100644 --- a/include/asm-generic/global_data.h +++ b/include/asm-generic/global_data.h @@ -85,6 +85,9 @@ typedef struct global_data { #ifdef CONFIG_TRACE void *trace_buff; /* The trace buffer */ #endif +#if defined(CONFIG_SYS_I2C) + int cur_i2c_bus; /* current used i2c bus */ +#endif struct arch_global_data arch; /* architecture-specific data */ } gd_t; #endif |