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