diff options
author | Ćukasz Majewski <l.majewski@samsung.com> | 2011-10-26 22:33:17 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-11-03 22:56:21 +0100 |
commit | 2427f5d511f9f7a8758de986191ec1e2176892f3 (patch) | |
tree | 66e86c206c0648e61adf73987ecec89a76317f85 /include/configs | |
parent | 0aa597d121303d2638597892ade0d883d9f87787 (diff) | |
download | u-boot-imx-2427f5d511f9f7a8758de986191ec1e2176892f3.zip u-boot-imx-2427f5d511f9f7a8758de986191ec1e2176892f3.tar.gz u-boot-imx-2427f5d511f9f7a8758de986191ec1e2176892f3.tar.bz2 |
misc:pmic:samsung Enable PMIC driver at C210 Universal target
Enable support for PMIC driver at C210 Universal reference target.
Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/s5pc210_universal.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/configs/s5pc210_universal.h b/include/configs/s5pc210_universal.h index ff85ade..cc14f97 100644 --- a/include/configs/s5pc210_universal.h +++ b/include/configs/s5pc210_universal.h @@ -245,4 +245,21 @@ #define CONFIG_SYS_CACHELINE_SIZE 32 +#include <asm/arch/gpio.h> +/* + * I2C Settings + */ +#define CONFIG_SOFT_I2C_GPIO_SCL s5pc210_gpio_part1_get_nr(b, 7) +#define CONFIG_SOFT_I2C_GPIO_SDA s5pc210_gpio_part1_get_nr(b, 6) + +#define CONFIG_SOFT_I2C +#define CONFIG_SOFT_I2C_READ_REPEATED_START +#define CONFIG_SYS_I2C_SPEED 50000 +#define CONFIG_I2C_MULTI_BUS +#define CONFIG_SYS_MAX_I2C_BUS 7 + +#define CONFIG_PMIC +#define CONFIG_PMIC_I2C +#define CONFIG_PMIC_MAX8998 + #endif /* __CONFIG_H */ |