blob: 99a2facd1ee71f00945c01d5774d7d00e955c832 [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
16DECLARE_GLOBAL_DATA_PTR;
Chander Kashyap0e7ab682011-08-18 22:37:19 +000017
Piotr Wilczekeb68f442014-03-07 14:59:46 +010018u32 get_board_rev(void)
Chander Kashyap0e7ab682011-08-18 22:37:19 +000019{
Chander Kashyap0e7ab682011-08-18 22:37:19 +000020 return 0;
21}
22
Piotr Wilczekeb68f442014-03-07 14:59:46 +010023int exynos_init(void)
Rajeshwari Shinde99ae9b82013-07-04 12:29:16 +053024{
Rajeshwari Shinde99ae9b82013-07-04 12:29:16 +053025 return 0;
26}
27
Piotr Wilczekeb68f442014-03-07 14:59:46 +010028int board_usb_init(int index, enum usb_init_type init)
Chander Kashyap0e7ab682011-08-18 22:37:19 +000029{
Chander Kashyap0e7ab682011-08-18 22:37:19 +000030 return 0;
31}
32
Piotr Wilczekeb68f442014-03-07 14:59:46 +010033#ifdef CONFIG_BOARD_EARLY_INIT_F
34int exynos_early_init_f(void)
Chander Kashyap0e7ab682011-08-18 22:37:19 +000035{
Piotr Wilczekeb68f442014-03-07 14:59:46 +010036 return 0;
Chander Kashyap0e7ab682011-08-18 22:37:19 +000037}
38#endif