diff options
author | Simon Glass <sjg@chromium.org> | 2014-12-10 08:55:52 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-12-11 13:18:43 -0700 |
commit | ac395f088ff2eb8359900897d858c67f1e2c9ea0 (patch) | |
tree | 64f223398b2ffddcab20cd8028382ea917e011c1 | |
parent | 6ec1b7535873dee4c73895e430494e12be4e3e4d (diff) | |
download | u-boot-imx-ac395f088ff2eb8359900897d858c67f1e2c9ea0.zip u-boot-imx-ac395f088ff2eb8359900897d858c67f1e2c9ea0.tar.gz u-boot-imx-ac395f088ff2eb8359900897d858c67f1e2c9ea0.tar.bz2 |
dm: i2c: config: Enable I2C for sandbox using driver model
Enable the options to bring up I2C on sandbox. Also enable all the available
I2C commands for testing purposes.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Heiko Schocher <hs@denx.de>
-rw-r--r-- | include/configs/sandbox.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index 2b03841..657f751 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -112,6 +112,12 @@ #define CONFIG_SPI_FLASH_STMICRO #define CONFIG_SPI_FLASH_WINBOND +#define CONFIG_DM_I2C +#define CONFIG_CMD_I2C +#define CONFIG_SYS_I2C_SANDBOX +#define CONFIG_I2C_EDID +#define CONFIG_I2C_EEPROM + /* Memory things - we don't really want a memory test */ #define CONFIG_SYS_LOAD_ADDR 0x00000000 #define CONFIG_SYS_MEMTEST_START 0x00100000 |