blob: ddf6a2b72fa5465ce270adff96673ab8bfea3da0 [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 board_usb_init(int index, enum usb_init_type init)
Chander Kashyap0e7ab682011-08-18 22:37:19 +000016{
Chander Kashyap0e7ab682011-08-18 22:37:19 +000017 return 0;
18}
19
Piotr Wilczekeb68f442014-03-07 14:59:46 +010020#ifdef CONFIG_BOARD_EARLY_INIT_F
21int exynos_early_init_f(void)
Chander Kashyap0e7ab682011-08-18 22:37:19 +000022{
Piotr Wilczekeb68f442014-03-07 14:59:46 +010023 return 0;
Chander Kashyap0e7ab682011-08-18 22:37:19 +000024}
25#endif