xref: /minix/minix/kernel/arch/earm/bsp/ti/omap_init.c (revision e1cdaee1)
1 #include <sys/types.h>
2 #include "bsp_init.h"
3 #include "bsp_padconf.h"
4 #include "omap_rtc.h"
5 #include "bsp_reset.h"
6 
7 void
8 bsp_init(void)
9 {
10 
11 	/* map memory for padconf */
12 	bsp_padconf_init();
13 
14 	/* map memory for rtc */
15 	omap3_rtc_init();
16 
17 	/* map memory for reset control */
18 	bsp_reset_init();
19 
20 	/* disable watchdog */
21 	bsp_disable_watchdog();
22 }
23