22 lines
339 B
C
22 lines
339 B
C
#include <sys/types.h>
|
|
#include "bsp_init.h"
|
|
#include "bsp_padconf.h"
|
|
#include "omap_rtc.h"
|
|
#include "bsp_reset.h"
|
|
|
|
void
|
|
bsp_init()
|
|
{
|
|
/* map memory for padconf */
|
|
bsp_padconf_init();
|
|
|
|
/* map memory for rtc */
|
|
omap3_rtc_init();
|
|
|
|
/* map memory for reset control */
|
|
bsp_reset_init();
|
|
|
|
/* disable watchdog */
|
|
bsp_disable_watchdog();
|
|
}
|