xref: /openbmc/u-boot/board/samsung/origen/origen.c (revision 42f8ebfd)
1 /*
2  * Copyright (C) 2011 Samsung Electronics
3  *
4  * SPDX-License-Identifier:	GPL-2.0+
5  */
6 
7 #include <common.h>
8 #include <asm/io.h>
9 #include <asm/gpio.h>
10 #include <asm/arch/cpu.h>
11 #include <asm/arch/mmc.h>
12 #include <asm/arch/periph.h>
13 #include <asm/arch/pinmux.h>
14 #include <usb.h>
15 
16 DECLARE_GLOBAL_DATA_PTR;
17 
18 u32 get_board_rev(void)
19 {
20 	return 0;
21 }
22 
23 int exynos_init(void)
24 {
25 	return 0;
26 }
27 
28 int board_usb_init(int index, enum usb_init_type init)
29 {
30 	return 0;
31 }
32 
33 #ifdef CONFIG_BOARD_EARLY_INIT_F
34 int exynos_early_init_f(void)
35 {
36 	return 0;
37 }
38 #endif
39