blob: 3d27a9433bf0074c0520e9c88b9a5dc8854420a6 [file] [log] [blame]
Chander Kashyap0e7ab682011-08-18 22:37:19 +00001/*
2 * Copyright (C) 2011 Samsung Electronics
3 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Chander Kashyap0e7ab682011-08-18 22:37:19 +00005 */
6
7#include <common.h>
8#include <asm/io.h>
Simon Glass37f11622014-10-20 19:48:37 -06009#include <asm/gpio.h>
Chander Kashyap0e7ab682011-08-18 22:37:19 +000010#include <asm/arch/cpu.h>
Chander Kashyap0e7ab682011-08-18 22:37:19 +000011#include <asm/arch/mmc.h>
Rajeshwari Shinde99ae9b82013-07-04 12:29:16 +053012#include <asm/arch/periph.h>
13#include <asm/arch/pinmux.h>
Piotr Wilczekeb68f442014-03-07 14:59:46 +010014#include <usb.h>
Chander Kashyap0e7ab682011-08-18 22:37:19 +000015
Piotr Wilczekeb68f442014-03-07 14:59:46 +010016u32 get_board_rev(void)
Chander Kashyap0e7ab682011-08-18 22:37:19 +000017{
Chander Kashyap0e7ab682011-08-18 22:37:19 +000018 return 0;
19}
20
Piotr Wilczekeb68f442014-03-07 14:59:46 +010021int exynos_init(void)
Rajeshwari Shinde99ae9b82013-07-04 12:29:16 +053022{
Rajeshwari Shinde99ae9b82013-07-04 12:29:16 +053023 return 0;
24}
25
Piotr Wilczekeb68f442014-03-07 14:59:46 +010026int board_usb_init(int index, enum usb_init_type init)
Chander Kashyap0e7ab682011-08-18 22:37:19 +000027{
Chander Kashyap0e7ab682011-08-18 22:37:19 +000028 return 0;
29}
30
Piotr Wilczekeb68f442014-03-07 14:59:46 +010031#ifdef CONFIG_BOARD_EARLY_INIT_F
32int exynos_early_init_f(void)
Chander Kashyap0e7ab682011-08-18 22:37:19 +000033{
Piotr Wilczekeb68f442014-03-07 14:59:46 +010034 return 0;
Chander Kashyap0e7ab682011-08-18 22:37:19 +000035}
36#endif