summaryrefslogtreecommitdiffstats
path: root/board/ti/am335x/mux.c
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2012-06-22 07:45:57 +0000
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2012-09-01 14:58:10 +0200
commitd3decdebdef6207939aa1995d7327822a0267ad4 (patch)
treed32d9b278a5a23b28a78f5b0e46cdcc8d35d1548 /board/ti/am335x/mux.c
parent71a271c654305078737773b78239b546efe161e7 (diff)
downloadtalos-obmc-uboot-d3decdebdef6207939aa1995d7327822a0267ad4.tar.gz
talos-obmc-uboot-d3decdebdef6207939aa1995d7327822a0267ad4.zip
omap: am335x_evm: enable i2c1 channel
This patch sets up pinmux, enables fclk, and defines CONFIG_I2C_MULTI_BUS Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'board/ti/am335x/mux.c')
-rw-r--r--board/ti/am335x/mux.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/board/ti/am335x/mux.c b/board/ti/am335x/mux.c
index 9ccb43642b..c696c0fe95 100644
--- a/board/ti/am335x/mux.c
+++ b/board/ti/am335x/mux.c
@@ -280,6 +280,14 @@ static struct module_pin_mux i2c0_pin_mux[] = {
{-1},
};
+static struct module_pin_mux i2c1_pin_mux[] = {
+ {OFFSET(spi0_d1), (MODE(2) | RXACTIVE |
+ PULLUDEN | SLEWCTRL)}, /* I2C_DATA */
+ {OFFSET(spi0_cs0), (MODE(2) | RXACTIVE |
+ PULLUDEN | SLEWCTRL)}, /* I2C_SCLK */
+ {-1},
+};
+
/*
* Configure the pin mux for the module
*/
@@ -310,3 +318,8 @@ void enable_i2c0_pin_mux(void)
{
configure_module_pin_mux(i2c0_pin_mux);
}
+
+void enable_i2c1_pin_mux(void)
+{
+ configure_module_pin_mux(i2c1_pin_mux);
+}
OpenPOWER on IntegriCloud