]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mx31moboard: add i2c support (v2)
authorValentin Longchamp <valentin.longchamp@epfl.ch>
Tue, 21 Apr 2009 08:24:22 +0000 (10:24 +0200)
committerSascha Hauer <s.hauer@pengutronix.de>
Thu, 7 May 2009 14:17:44 +0000 (16:17 +0200)
Changes since v1: all the pins needed for the drivers are claimed in
another patch

Signed-off-by: Valentin Longchamp <valentin.longchamp@epfl.ch>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
arch/arm/mach-mx3/mx31moboard.c

index 60a51459d583f40a9b4dfc9f2dffd3658ed73beb..d846527e1a5948b2f4c8c67c0befd3b3dc41bb53 100644 (file)
@@ -32,6 +32,7 @@
 #include <mach/hardware.h>
 #include <mach/imx-uart.h>
 #include <mach/iomux-mx3.h>
+#include <mach/i2c.h>
 
 #include "devices.h"
 
@@ -89,6 +90,14 @@ static struct imxuart_platform_data uart_pdata = {
        .flags = IMXUART_HAVE_RTSCTS,
 };
 
+static struct imxi2c_platform_data moboard_i2c0_pdata = {
+       .bitrate = 400000,
+};
+
+static struct imxi2c_platform_data moboard_i2c1_pdata = {
+       .bitrate = 100000,
+};
+
 static struct platform_device *devices[] __initdata = {
        &mx31moboard_flash,
 };
@@ -109,6 +118,9 @@ static void __init mxc_board_init(void)
        mxc_register_device(&mxc_uart_device0, &uart_pdata);
        mxc_register_device(&mxc_uart_device4, &uart_pdata);
 
+       mxc_register_device(&mxc_i2c_device0, &moboard_i2c0_pdata);
+       mxc_register_device(&mxc_i2c_device1, &moboard_i2c1_pdata);
+
        switch (mx31moboard_baseboard) {
        case MX31NOBOARD:
                break;