diff options
Diffstat (limited to 'roms/u-boot/board/samsung/espresso7420')
-rw-r--r-- | roms/u-boot/board/samsung/espresso7420/Kconfig | 16 | ||||
-rw-r--r-- | roms/u-boot/board/samsung/espresso7420/MAINTAINERS | 6 | ||||
-rw-r--r-- | roms/u-boot/board/samsung/espresso7420/Makefile | 6 | ||||
-rw-r--r-- | roms/u-boot/board/samsung/espresso7420/espresso7420.c | 13 |
4 files changed, 41 insertions, 0 deletions
diff --git a/roms/u-boot/board/samsung/espresso7420/Kconfig b/roms/u-boot/board/samsung/espresso7420/Kconfig new file mode 100644 index 000000000..62251c512 --- /dev/null +++ b/roms/u-boot/board/samsung/espresso7420/Kconfig @@ -0,0 +1,16 @@ +if TARGET_ESPRESSO7420 + +config SYS_BOARD + default "espresso7420" + help + Espresso7420 is a development/evaluation board for Exynos7420 SoC. + It includes multiple onboard compoments (EMMC/Codec) and various + interconnects (USB/HDMI). + +config SYS_VENDOR + default "samsung" + +config SYS_CONFIG_NAME + default "espresso7420" + +endif diff --git a/roms/u-boot/board/samsung/espresso7420/MAINTAINERS b/roms/u-boot/board/samsung/espresso7420/MAINTAINERS new file mode 100644 index 000000000..9145ad45e --- /dev/null +++ b/roms/u-boot/board/samsung/espresso7420/MAINTAINERS @@ -0,0 +1,6 @@ +ESPRESSO7420 Board +M: Minkyu Kang <mk7.kang@samsung.com> +S: Maintained +F: board/samsung/espresso7420/ +F: include/configs/espresso7420.h +F: configs/espresso7420_defconfig diff --git a/roms/u-boot/board/samsung/espresso7420/Makefile b/roms/u-boot/board/samsung/espresso7420/Makefile new file mode 100644 index 000000000..bb882eaa2 --- /dev/null +++ b/roms/u-boot/board/samsung/espresso7420/Makefile @@ -0,0 +1,6 @@ +# SPDX-License-Identifier: GPL-2.0+ +# +# Copyright (C) 2016 Samsung Electronics +# Thomas Abraham <thomas.ab@samsung.com> + +obj-y += espresso7420.o diff --git a/roms/u-boot/board/samsung/espresso7420/espresso7420.c b/roms/u-boot/board/samsung/espresso7420/espresso7420.c new file mode 100644 index 000000000..9f6fa8974 --- /dev/null +++ b/roms/u-boot/board/samsung/espresso7420/espresso7420.c @@ -0,0 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Espresso7420 board file + * Copyright (C) 2016 Samsung Electronics + * Thomas Abraham <thomas.ab@samsung.com> + */ + +#include <common.h> + +int exynos_init(void) +{ + return 0; +} |