diff options
Diffstat (limited to 'arch/arm/mach-omap2/board-rx51.c')
-rw-r--r-- | arch/arm/mach-omap2/board-rx51.c | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/arch/arm/mach-omap2/board-rx51.c b/arch/arm/mach-omap2/board-rx51.c index 1bb1de245917..67bb3476b707 100644 --- a/arch/arm/mach-omap2/board-rx51.c +++ b/arch/arm/mach-omap2/board-rx51.c | |||
@@ -23,13 +23,14 @@ | |||
23 | #include <asm/mach/map.h> | 23 | #include <asm/mach/map.h> |
24 | 24 | ||
25 | #include <plat/mcspi.h> | 25 | #include <plat/mcspi.h> |
26 | #include <plat/mux.h> | ||
27 | #include <plat/board.h> | 26 | #include <plat/board.h> |
28 | #include <plat/common.h> | 27 | #include <plat/common.h> |
29 | #include <plat/dma.h> | 28 | #include <plat/dma.h> |
30 | #include <plat/gpmc.h> | 29 | #include <plat/gpmc.h> |
31 | #include <plat/usb.h> | 30 | #include <plat/usb.h> |
32 | 31 | ||
32 | #include "mux.h" | ||
33 | |||
33 | struct omap_sdrc_params *rx51_get_sdram_timings(void); | 34 | struct omap_sdrc_params *rx51_get_sdram_timings(void); |
34 | 35 | ||
35 | static struct omap_lcd_config rx51_lcd_config = { | 36 | static struct omap_lcd_config rx51_lcd_config = { |
@@ -69,15 +70,24 @@ static void __init rx51_init_irq(void) | |||
69 | 70 | ||
70 | extern void __init rx51_peripherals_init(void); | 71 | extern void __init rx51_peripherals_init(void); |
71 | 72 | ||
73 | #ifdef CONFIG_OMAP_MUX | ||
74 | static struct omap_board_mux board_mux[] __initdata = { | ||
75 | { .reg_offset = OMAP_MUX_TERMINATOR }, | ||
76 | }; | ||
77 | #else | ||
78 | #define board_mux NULL | ||
79 | #endif | ||
80 | |||
72 | static void __init rx51_init(void) | 81 | static void __init rx51_init(void) |
73 | { | 82 | { |
83 | omap3_mux_init(board_mux, OMAP_PACKAGE_CBB); | ||
74 | omap_serial_init(); | 84 | omap_serial_init(); |
75 | usb_musb_init(); | 85 | usb_musb_init(); |
76 | rx51_peripherals_init(); | 86 | rx51_peripherals_init(); |
77 | 87 | ||
78 | /* Ensure SDRC pins are mux'd for self-refresh */ | 88 | /* Ensure SDRC pins are mux'd for self-refresh */ |
79 | omap_cfg_reg(H16_34XX_SDRC_CKE0); | 89 | omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT); |
80 | omap_cfg_reg(H17_34XX_SDRC_CKE1); | 90 | omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT); |
81 | } | 91 | } |
82 | 92 | ||
83 | static void __init rx51_map_io(void) | 93 | static void __init rx51_map_io(void) |