diff options
author | Tom Rini <trini@konsulko.com> | 2017-09-20 12:32:34 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-09-20 12:32:34 -0400 |
commit | e884656c2c0b2406b9bf99ea76f5a8c75128a331 (patch) | |
tree | 520d14bd1fdaed0adefc4209f53dc0d0d1467b67 /include | |
parent | 975f97b43181694041f77ecd8118364afe588144 (diff) | |
parent | 031426a7af63d3c939fc963311e6dc8e904a0440 (diff) | |
download | u-boot-midas-e884656c2c0b2406b9bf99ea76f5a8c75128a331.tar.gz u-boot-midas-e884656c2c0b2406b9bf99ea76f5a8c75128a331.tar.bz2 u-boot-midas-e884656c2c0b2406b9bf99ea76f5a8c75128a331.zip |
Merge git://www.denx.de/git/u-boot-imx
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/ge_bx50v3.h | 15 | ||||
-rw-r--r-- | include/configs/mx6cuboxi.h | 4 |
2 files changed, 19 insertions, 0 deletions
diff --git a/include/configs/ge_bx50v3.h b/include/configs/ge_bx50v3.h index a0468d204b..33f5101c14 100644 --- a/include/configs/ge_bx50v3.h +++ b/include/configs/ge_bx50v3.h @@ -299,4 +299,19 @@ #define CONFIG_SYS_I2C_MXC_I2C2 #define CONFIG_SYS_I2C_MXC_I2C3 +#define CONFIG_SYS_NUM_I2C_BUSES 9 +#define CONFIG_SYS_I2C_MAX_HOPS 1 +#define CONFIG_SYS_I2C_BUSES { {0, {I2C_NULL_HOP} }, \ + {0, {{I2C_MUX_PCA9547, 0x70, 0} } }, \ + {0, {{I2C_MUX_PCA9547, 0x70, 1} } }, \ + {0, {{I2C_MUX_PCA9547, 0x70, 2} } }, \ + {0, {{I2C_MUX_PCA9547, 0x70, 3} } }, \ + {0, {{I2C_MUX_PCA9547, 0x70, 4} } }, \ + {0, {{I2C_MUX_PCA9547, 0x70, 5} } }, \ + {0, {{I2C_MUX_PCA9547, 0x70, 6} } }, \ + {0, {{I2C_MUX_PCA9547, 0x70, 7} } }, \ + } + +#define CONFIG_BCH + #endif /* __GE_BX50V3_CONFIG_H */ diff --git a/include/configs/mx6cuboxi.h b/include/configs/mx6cuboxi.h index 4e12de1212..7fefe8edcb 100644 --- a/include/configs/mx6cuboxi.h +++ b/include/configs/mx6cuboxi.h @@ -106,6 +106,10 @@ "fi; " \ "fi\0" \ "findfdt="\ + "if test $board_name = HUMMINGBOARD2 && test $board_rev = MX6Q ; then " \ + "setenv fdtfile imx6q-hummingboard2.dtb; fi; " \ + "if test $board_name = HUMMINGBOARD2 && test $board_rev = MX6DL ; then " \ + "setenv fdtfile imx6dl-hummingboard2.dtb; fi; " \ "if test $board_name = HUMMINGBOARD && test $board_rev = MX6Q ; then " \ "setenv fdtfile imx6q-hummingboard.dtb; fi; " \ "if test $board_name = HUMMINGBOARD && test $board_rev = MX6DL ; then " \ |