2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2011-08-18 22:37:19 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 Samsung Electronics
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <asm/io.h>
|
2014-10-21 01:48:37 +00:00
|
|
|
#include <asm/gpio.h>
|
2011-08-18 22:37:19 +00:00
|
|
|
#include <asm/arch/cpu.h>
|
|
|
|
#include <asm/arch/mmc.h>
|
2013-07-04 06:59:16 +00:00
|
|
|
#include <asm/arch/periph.h>
|
|
|
|
#include <asm/arch/pinmux.h>
|
2014-03-07 13:59:46 +00:00
|
|
|
#include <usb.h>
|
2011-08-18 22:37:19 +00:00
|
|
|
|
2014-03-07 13:59:46 +00:00
|
|
|
u32 get_board_rev(void)
|
2011-08-18 22:37:19 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-07 13:59:46 +00:00
|
|
|
int exynos_init(void)
|
2013-07-04 06:59:16 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-07 13:59:46 +00:00
|
|
|
int board_usb_init(int index, enum usb_init_type init)
|
2011-08-18 22:37:19 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-07 13:59:46 +00:00
|
|
|
#ifdef CONFIG_BOARD_EARLY_INIT_F
|
|
|
|
int exynos_early_init_f(void)
|
2011-08-18 22:37:19 +00:00
|
|
|
{
|
2014-03-07 13:59:46 +00:00
|
|
|
return 0;
|
2011-08-18 22:37:19 +00:00
|
|
|
}
|
|
|
|
#endif
|