Chander Kashyap | 0e7ab68 | 2011-08-18 22:37:19 +0000 | [diff] [blame] | 1 | /* |
2 | * Copyright (C) 2011 Samsung Electronics | ||||
3 | * | ||||
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Chander Kashyap | 0e7ab68 | 2011-08-18 22:37:19 +0000 | [diff] [blame] | 5 | */ |
6 | |||||
7 | #include <common.h> | ||||
8 | #include <asm/io.h> | ||||
Simon Glass | 37f1162 | 2014-10-20 19:48:37 -0600 | [diff] [blame] | 9 | #include <asm/gpio.h> |
Chander Kashyap | 0e7ab68 | 2011-08-18 22:37:19 +0000 | [diff] [blame] | 10 | #include <asm/arch/cpu.h> |
Chander Kashyap | 0e7ab68 | 2011-08-18 22:37:19 +0000 | [diff] [blame] | 11 | #include <asm/arch/mmc.h> |
Rajeshwari Shinde | 99ae9b8 | 2013-07-04 12:29:16 +0530 | [diff] [blame] | 12 | #include <asm/arch/periph.h> |
13 | #include <asm/arch/pinmux.h> | ||||
Piotr Wilczek | eb68f44 | 2014-03-07 14:59:46 +0100 | [diff] [blame] | 14 | #include <usb.h> |
Chander Kashyap | 0e7ab68 | 2011-08-18 22:37:19 +0000 | [diff] [blame] | 15 | |
Piotr Wilczek | eb68f44 | 2014-03-07 14:59:46 +0100 | [diff] [blame] | 16 | u32 get_board_rev(void) |
Chander Kashyap | 0e7ab68 | 2011-08-18 22:37:19 +0000 | [diff] [blame] | 17 | { |
Chander Kashyap | 0e7ab68 | 2011-08-18 22:37:19 +0000 | [diff] [blame] | 18 | return 0; |
19 | } | ||||
20 | |||||
Piotr Wilczek | eb68f44 | 2014-03-07 14:59:46 +0100 | [diff] [blame] | 21 | int exynos_init(void) |
Rajeshwari Shinde | 99ae9b8 | 2013-07-04 12:29:16 +0530 | [diff] [blame] | 22 | { |
Rajeshwari Shinde | 99ae9b8 | 2013-07-04 12:29:16 +0530 | [diff] [blame] | 23 | return 0; |
24 | } | ||||
25 | |||||
Piotr Wilczek | eb68f44 | 2014-03-07 14:59:46 +0100 | [diff] [blame] | 26 | int board_usb_init(int index, enum usb_init_type init) |
Chander Kashyap | 0e7ab68 | 2011-08-18 22:37:19 +0000 | [diff] [blame] | 27 | { |
Chander Kashyap | 0e7ab68 | 2011-08-18 22:37:19 +0000 | [diff] [blame] | 28 | return 0; |
29 | } | ||||
30 | |||||
Piotr Wilczek | eb68f44 | 2014-03-07 14:59:46 +0100 | [diff] [blame] | 31 | #ifdef CONFIG_BOARD_EARLY_INIT_F |
32 | int exynos_early_init_f(void) | ||||
Chander Kashyap | 0e7ab68 | 2011-08-18 22:37:19 +0000 | [diff] [blame] | 33 | { |
Piotr Wilczek | eb68f44 | 2014-03-07 14:59:46 +0100 | [diff] [blame] | 34 | return 0; |
Chander Kashyap | 0e7ab68 | 2011-08-18 22:37:19 +0000 | [diff] [blame] | 35 | } |
36 | #endif |