2014-02-07 08:46:29 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include "bsp_init.h"
|
|
|
|
#include "bsp_padconf.h"
|
|
|
|
#include "omap_rtc.h"
|
|
|
|
#include "bsp_reset.h"
|
|
|
|
|
2014-02-24 09:40:30 +01:00
|
|
|
void
|
|
|
|
bsp_init()
|
|
|
|
{
|
2014-02-07 08:46:29 +01:00
|
|
|
/* map memory for padconf */
|
|
|
|
bsp_padconf_init();
|
|
|
|
|
|
|
|
/* map memory for rtc */
|
|
|
|
omap3_rtc_init();
|
|
|
|
|
|
|
|
/* map memory for reset control */
|
|
|
|
bsp_reset_init();
|
|
|
|
}
|