blob: 7a91f448969b2dc4ba0a4aa59e9c3321913ba15a [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 +010015int exynos_init(void)
Rajeshwari Shinde99ae9b82013-07-04 12:29:16 +053016{
Rajeshwari Shinde99ae9b82013-07-04 12:29:16 +053017 return 0;
18}
19
Piotr Wilczekeb68f442014-03-07 14:59:46 +010020int board_usb_init(int index, enum usb_init_type init)
Chander Kashyap0e7ab682011-08-18 22:37:19 +000021{
Chander Kashyap0e7ab682011-08-18 22:37:19 +000022 return 0;
23}
24
Piotr Wilczekeb68f442014-03-07 14:59:46 +010025#ifdef CONFIG_BOARD_EARLY_INIT_F
26int exynos_early_init_f(void)
Chander Kashyap0e7ab682011-08-18 22:37:19 +000027{
Piotr Wilczekeb68f442014-03-07 14:59:46 +010028 return 0;
Chander Kashyap0e7ab682011-08-18 22:37:19 +000029}
30#endif