diff options
author | Thomas Abraham <thomas.ab@samsung.com> | 2016-04-23 22:18:14 +0530 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2016-05-25 10:00:19 +0900 |
commit | 6c15a2a996214574e8145bff69d110a302edf277 (patch) | |
tree | c0774f93cf3ed842df26f60f7dcd45a32121d052 /board/samsung/espresso7420/espresso7420.c | |
parent | e39448e8be8389f5ddeabae0ec9c6a3b7b8a2ca6 (diff) |
board: samsung: add initial Espresso7420 board support
Espresso7420 is a development/evaluation board for Exynos7420 SoC. It
includes multiple onboard compoments (EMMC/Codec) and various
interconnects (USB/HDMI).
Signed-off-by: Thomas Abraham <thomas.ab@samsung.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'board/samsung/espresso7420/espresso7420.c')
-rw-r--r-- | board/samsung/espresso7420/espresso7420.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/board/samsung/espresso7420/espresso7420.c b/board/samsung/espresso7420/espresso7420.c new file mode 100644 index 0000000000..04a83bc07d --- /dev/null +++ b/board/samsung/espresso7420/espresso7420.c @@ -0,0 +1,16 @@ +/* + * Espresso7420 board file + * Copyright (C) 2016 Samsung Electronics + * Thomas Abraham <thomas.ab@samsung.com> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#include <common.h> + +DECLARE_GLOBAL_DATA_PTR; + +int exynos_init(void) +{ + return 0; +} |