mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 09:48:16 +00:00
8e4ab1d582
While the Exynos5420 chip is used in both Smdk5420 and in the Peach-Pit line of devices, there could be other boards using the same chip, so a common configuration file is being added (exynos5420.h) as well as two common device tree files (exynos54xx.dtsi & exynos5420.dtsi). The peach board as declared in boards.cfg is a copy of smdk5420 declaration. The configuration files are similar, but define different default device trees, console serial ports and prompts. The device tree files for smdk5420 and peach-pit inherit from the same common file. Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Signed-off-by: Akshay Saraswat <akshay.s@samsung.com> Acked-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
27 lines
624 B
C
27 lines
624 B
C
/*
|
|
* Copyright (C) 2013 Samsung Electronics
|
|
*
|
|
* Configuration settings for the SAMSUNG SMDK5420 board.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __CONFIG_SMDK5420_H
|
|
#define __CONFIG_SMDK5420_H
|
|
|
|
#include <configs/exynos5-dt.h>
|
|
|
|
#include <configs/exynos5420.h>
|
|
|
|
#define CONFIG_SMDK5420 /* which is in a SMDK5420 */
|
|
|
|
#undef CONFIG_DEFAULT_DEVICE_TREE
|
|
#define CONFIG_DEFAULT_DEVICE_TREE exynos5420-smdk5420
|
|
|
|
/* select serial console configuration */
|
|
#define CONFIG_SERIAL3 /* use SERIAL 3 */
|
|
|
|
#define CONFIG_SYS_PROMPT "SMDK5420 # "
|
|
#define CONFIG_IDENT_STRING " for SMDK5420"
|
|
|
|
#endif /* __CONFIG_SMDK5420_H */
|