From ab8d4aef2419e0de7d1f5b50e8b775b820b25eda Mon Sep 17 00:00:00 2001 From: Lukasz Majewski Date: Thu, 12 May 2016 12:38:22 +0200 Subject: [PATCH] TPL: TM2: kconfig: Initial kconfig support for Samsung Exynos5433 TM2 board Signed-off-by: Marek Szyprowski --- arch/arm/Kconfig | 8 ++++++++ board/samsung/tm2/Kconfig | 30 ++++++++++++++++++++++++++++++ board/samsung/tm2/Makefile | 8 ++++++++ 3 files changed, 46 insertions(+) create mode 100644 board/samsung/tm2/Kconfig create mode 100644 board/samsung/tm2/Makefile diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 80702c23d3..de17d169ef 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -1466,6 +1466,13 @@ config TARGET_LS1088ARDB The LS1088A Reference design board (RDB) is a high-performance development platform that supports the QorIQ LS1088A Layerscape Architecture processor. +config TARGET_TM2 + bool "Support Samsung Exynos5433 TM2 board" + select ARM64 + select DM + select DM_SERIAL + help + Support for Samsung Exynos5433 TM2 platform. config TARGET_LS1021AQDS bool "Support ls1021aqds" @@ -1987,6 +1994,7 @@ source "board/hisilicon/hikey960/Kconfig" source "board/hisilicon/poplar/Kconfig" source "board/isee/igep003x/Kconfig" source "board/myir/mys_6ulx/Kconfig" +source "board/samsung/tm2/Kconfig" source "board/spear/spear300/Kconfig" source "board/spear/spear310/Kconfig" source "board/spear/spear320/Kconfig" diff --git a/board/samsung/tm2/Kconfig b/board/samsung/tm2/Kconfig new file mode 100644 index 0000000000..907f423c98 --- /dev/null +++ b/board/samsung/tm2/Kconfig @@ -0,0 +1,30 @@ +if TARGET_TM2 + +config SYS_BOARD + default "tm2" + +config SYS_VENDOR + default "samsung" + +config SYS_SOC + default "exynos5433" + +config SYS_CONFIG_NAME + default "tm2" + +config TPL_TM2 + bool "TPL TM2" + default y + +config MAX_I2C_NUM + int "Maximum i2c Number" + +config S5P_SERIAL + bool "Support S5P serial" + default y + +config SYS_NO_FLASH + bool "No flash anything" + default y + +endif diff --git a/board/samsung/tm2/Makefile b/board/samsung/tm2/Makefile new file mode 100644 index 0000000000..53621774dd --- /dev/null +++ b/board/samsung/tm2/Makefile @@ -0,0 +1,8 @@ +# +# Copyright (c) 2016 Samsung Electronics Co., Ltd. All rights reserved. +# Lukasz Majewski +# +# SPDX-License-Identifier: GPL-2.0+ +# + +obj-y := tm2.o -- 2.34.1