Commit b52b14ef authored by Tony Lindgren's avatar Tony Lindgren

omap: mux: Select POP package for Apollon

Select POP package for Apollon

Cc: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 23275d45
...@@ -56,6 +56,7 @@ config MACH_OMAP_H4 ...@@ -56,6 +56,7 @@ config MACH_OMAP_H4
config MACH_OMAP_APOLLON config MACH_OMAP_APOLLON
bool "OMAP 2420 Apollon board" bool "OMAP 2420 Apollon board"
depends on ARCH_OMAP2 depends on ARCH_OMAP2
select OMAP_PACKAGE_ZAC
config MACH_OMAP_2430SDP config MACH_OMAP_2430SDP
bool "OMAP 2430 SDP board" bool "OMAP 2430 SDP board"
......
...@@ -42,6 +42,8 @@ ...@@ -42,6 +42,8 @@
#include <plat/gpmc.h> #include <plat/gpmc.h>
#include <plat/control.h> #include <plat/control.h>
#include "mux.h"
/* LED & Switch macros */ /* LED & Switch macros */
#define LED0_GPIO13 13 #define LED0_GPIO13 13
#define LED1_GPIO14 14 #define LED1_GPIO14 14
...@@ -309,10 +311,20 @@ static void __init apollon_usb_init(void) ...@@ -309,10 +311,20 @@ static void __init apollon_usb_init(void)
omap2_usbfs_init(&apollon_usb_config); omap2_usbfs_init(&apollon_usb_config);
} }
#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_apollon_init(void) static void __init omap_apollon_init(void)
{ {
u32 v; u32 v;
omap2420_mux_init(board_mux, OMAP_PACKAGE_ZAC);
apollon_led_init(); apollon_led_init();
apollon_flash_init(); apollon_flash_init();
apollon_usb_init(); apollon_usb_init();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment