blob: e17454ad77da3e743de26f70670f80f517324bfb [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Chander Kashyap0e7ab682011-08-18 22:37:19 +00002/*
3 * Copyright (C) 2011 Samsung Electronics
Chander Kashyap0e7ab682011-08-18 22:37:19 +00004 */
5
6#include <common.h>
7#include <asm/io.h>
Simon Glass37f11622014-10-20 19:48:37 -06008#include <asm/gpio.h>
Chander Kashyap0e7ab682011-08-18 22:37:19 +00009#include <asm/arch/cpu.h>
Chander Kashyap0e7ab682011-08-18 22:37:19 +000010#include <asm/arch/mmc.h>
Rajeshwari Shinde99ae9b82013-07-04 12:29:16 +053011#include <asm/arch/periph.h>
12#include <asm/arch/pinmux.h>
Piotr Wilczekeb68f442014-03-07 14:59:46 +010013#include <usb.h>
Chander Kashyap0e7ab682011-08-18 22:37:19 +000014
Piotr Wilczekeb68f442014-03-07 14:59:46 +010015u32 get_board_rev(void)
Chander Kashyap0e7ab682011-08-18 22:37:19 +000016{
Chander Kashyap0e7ab682011-08-18 22:37:19 +000017 return 0;
18}
19
Piotr Wilczekeb68f442014-03-07 14:59:46 +010020int exynos_init(void)
Rajeshwari Shinde99ae9b82013-07-04 12:29:16 +053021{
Rajeshwari Shinde99ae9b82013-07-04 12:29:16 +053022 return 0;
23}
24
Piotr Wilczekeb68f442014-03-07 14:59:46 +010025int board_usb_init(int index, enum usb_init_type init)
Chander Kashyap0e7ab682011-08-18 22:37:19 +000026{
Chander Kashyap0e7ab682011-08-18 22:37:19 +000027 return 0;
28}
29
Piotr Wilczekeb68f442014-03-07 14:59:46 +010030#ifdef CONFIG_BOARD_EARLY_INIT_F
31int exynos_early_init_f(void)
Chander Kashyap0e7ab682011-08-18 22:37:19 +000032{
Piotr Wilczekeb68f442014-03-07 14:59:46 +010033 return 0;
Chander Kashyap0e7ab682011-08-18 22:37:19 +000034}
35#endif