OMAP4: sdp4430: Select CBL package for ES1 and initialize mux
authorBenoit Cousson <b-cousson@ti.com>
Tue, 10 Aug 2010 15:43:15 +0000 (17:43 +0200)
committerBenoit Cousson <b-cousson@ti.com>
Wed, 17 Nov 2010 11:01:51 +0000 (12:01 +0100)
Select the CBL package if SDP4430 is enabled during config.
Initialize the mux framework during the board init.

Signed-off-by: Benoit Cousson <b-cousson@ti.com>
Cc: Tony Lindgren <tony@atomide.com>
Cc: Paul Walmsley <paul@pwsan.com>
Cc: Kevin Hilman <khilman@deeprootsystems.com>
arch/arm/mach-omap2/Kconfig
arch/arm/mach-omap2/board-4430sdp.c

index e14c73d8199762f304d3ff3a1eed8cf534532b15..7efb256819a0fea6eff99d964ad0d4804909ef90 100644 (file)
@@ -280,6 +280,7 @@ config MACH_OMAP_4430SDP
        bool "OMAP 4430 SDP board"
        default y
        depends on ARCH_OMAP4
+       select OMAP_PACKAGE_CBL
 
 config MACH_OMAP4_PANDA
        bool "OMAP4 Panda Board"
index df5a425a49d18e33290598e6efc3fd00a1cd00b4..e4f1726e66694b759d6602d62bf66a5d8a18fcda 100644 (file)
@@ -35,6 +35,7 @@
 #include <plat/usb.h>
 #include <plat/mmc.h>
 
+#include "mux.h"
 #include "hsmmc.h"
 #include "timer-gp.h"
 #include "control.h"
@@ -505,10 +506,19 @@ static void __init omap_sfh7741prox_init(void)
        }
 }
 
+#ifdef CONFIG_OMAP_MUX
+static struct omap_board_mux board_mux[] __initdata = {
+       { .reg_offset = OMAP_MUX_TERMINATOR },
+};
+#else
+#define board_mux      NULL
+#endif
+
 static void __init omap_4430sdp_init(void)
 {
        int status;
 
+       omap4_mux_init(board_mux, OMAP_PACKAGE_CBL);
        omap4_i2c_init();
        omap_sfh7741prox_init();
        platform_add_devices(sdp4430_devices, ARRAY_SIZE(sdp4430_devices));