omap: mux: Select POP package for Apollon

Select POP package for Apollon

Cc: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
Tony Lindgren 2010-07-05 16:31:37 +03:00
parent 23275d459e
commit b52b14ef0d
2 changed files with 13 additions and 0 deletions

View File

@ -56,6 +56,7 @@ config MACH_OMAP_H4
config MACH_OMAP_APOLLON
bool "OMAP 2420 Apollon board"
depends on ARCH_OMAP2
select OMAP_PACKAGE_ZAC
config MACH_OMAP_2430SDP
bool "OMAP 2430 SDP board"

View File

@ -42,6 +42,8 @@
#include <plat/gpmc.h>
#include <plat/control.h>
#include "mux.h"
/* LED & Switch macros */
#define LED0_GPIO13 13
#define LED1_GPIO14 14
@ -309,10 +311,20 @@ static void __init apollon_usb_init(void)
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)
{
u32 v;
omap2420_mux_init(board_mux, OMAP_PACKAGE_ZAC);
apollon_led_init();
apollon_flash_init();
apollon_usb_init();