diff options
author | Richard Zhao <richard.zhao@freescale.com> | 2011-02-17 23:36:16 -0500 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2011-02-18 05:01:06 -0500 |
commit | 942b99f3a0497a9a53df82ad685082b2980fe75d (patch) | |
tree | c0697e6a0a94349bb17560e10ae52fd1e014dcfa | |
parent | c4e942b76414367d034640835a0fcbab5d0cc434 (diff) |
ARM: imx53_loco: add i2c device support
Signed-off-by: Richard Zhao <richard.zhao@freescale.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r-- | arch/arm/mach-mx5/Kconfig | 1 | ||||
-rw-r--r-- | arch/arm/mach-mx5/board-mx53_loco.c | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-mx5/Kconfig b/arch/arm/mach-mx5/Kconfig index 6466d7389c31..f065a0d8d934 100644 --- a/arch/arm/mach-mx5/Kconfig +++ b/arch/arm/mach-mx5/Kconfig | |||
@@ -160,6 +160,7 @@ config MACH_MX53_LOCO | |||
160 | bool "Support MX53 LOCO platforms" | 160 | bool "Support MX53 LOCO platforms" |
161 | select SOC_IMX53 | 161 | select SOC_IMX53 |
162 | select IMX_HAVE_PLATFORM_IMX2_WDT | 162 | select IMX_HAVE_PLATFORM_IMX2_WDT |
163 | select IMX_HAVE_PLATFORM_IMX_I2C | ||
163 | select IMX_HAVE_PLATFORM_IMX_UART | 164 | select IMX_HAVE_PLATFORM_IMX_UART |
164 | help | 165 | help |
165 | Include support for MX53 LOCO platform. This includes specific | 166 | Include support for MX53 LOCO platform. This includes specific |
diff --git a/arch/arm/mach-mx5/board-mx53_loco.c b/arch/arm/mach-mx5/board-mx53_loco.c index 3d749ada4eb6..160899e6d6ca 100644 --- a/arch/arm/mach-mx5/board-mx53_loco.c +++ b/arch/arm/mach-mx5/board-mx53_loco.c | |||
@@ -199,6 +199,10 @@ static struct fec_platform_data mx53_loco_fec_data = { | |||
199 | .phy = PHY_INTERFACE_MODE_RMII, | 199 | .phy = PHY_INTERFACE_MODE_RMII, |
200 | }; | 200 | }; |
201 | 201 | ||
202 | static const struct imxi2c_platform_data mx53_loco_i2c_data __initconst = { | ||
203 | .bitrate = 100000, | ||
204 | }; | ||
205 | |||
202 | static void __init mx53_loco_board_init(void) | 206 | static void __init mx53_loco_board_init(void) |
203 | { | 207 | { |
204 | mxc_iomux_v3_setup_multiple_pads(mx53_loco_pads, | 208 | mxc_iomux_v3_setup_multiple_pads(mx53_loco_pads, |
@@ -207,6 +211,8 @@ static void __init mx53_loco_board_init(void) | |||
207 | mx53_loco_fec_reset(); | 211 | mx53_loco_fec_reset(); |
208 | imx53_add_fec(&mx53_loco_fec_data); | 212 | imx53_add_fec(&mx53_loco_fec_data); |
209 | imx53_add_imx2_wdt(0, NULL); | 213 | imx53_add_imx2_wdt(0, NULL); |
214 | imx53_add_imx_i2c(0, &mx53_loco_i2c_data); | ||
215 | imx53_add_imx_i2c(1, &mx53_loco_i2c_data); | ||
210 | } | 216 | } |
211 | 217 | ||
212 | static void __init mx53_loco_timer_init(void) | 218 | static void __init mx53_loco_timer_init(void) |