summaryrefslogtreecommitdiffstats
path: root/board/hardkernel
diff options
context:
space:
mode:
authorHeiko Stuebner <heiko.stuebner@theobroma-systems.com>2020-07-01 11:28:42 +0200
committerKever Yang <kever.yang@rock-chips.com>2020-07-22 20:21:23 +0800
commit02ce99ec91d6d98aa0d556a47ae5216c08830abd (patch)
treeb9d4ee9e99d58358471429cc9c4f207e50e8d45f /board/hardkernel
parentb75f01a918466b00621dec52d61a3fc38f6e400e (diff)
downloadu-boot-02ce99ec91d6d98aa0d556a47ae5216c08830abd.tar.gz
u-boot-02ce99ec91d6d98aa0d556a47ae5216c08830abd.tar.xz
u-boot-02ce99ec91d6d98aa0d556a47ae5216c08830abd.zip
rockchip: board: add Hardkernel Odroid Go2 board
Also known as Odroid Go Advance but named Go2 internally by the vendor it seems. Signed-off-by: Heiko Stuebner <heiko.stuebner@theobroma-systems.com> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
Diffstat (limited to 'board/hardkernel')
-rw-r--r--board/hardkernel/odroid_go2/Kconfig15
-rw-r--r--board/hardkernel/odroid_go2/MAINTAINERS6
-rw-r--r--board/hardkernel/odroid_go2/Makefile7
-rw-r--r--board/hardkernel/odroid_go2/go2.c4
4 files changed, 32 insertions, 0 deletions
diff --git a/board/hardkernel/odroid_go2/Kconfig b/board/hardkernel/odroid_go2/Kconfig
new file mode 100644
index 0000000000..cf3f7c91d9
--- /dev/null
+++ b/board/hardkernel/odroid_go2/Kconfig
@@ -0,0 +1,15 @@
+if TARGET_ODROID_GO2
+
+config SYS_BOARD
+ default "odroid_go2"
+
+config SYS_VENDOR
+ default "hardkernel"
+
+config SYS_CONFIG_NAME
+ default "odroid_go2"
+
+config BOARD_SPECIFIC_OPTIONS # dummy
+ def_bool y
+
+endif
diff --git a/board/hardkernel/odroid_go2/MAINTAINERS b/board/hardkernel/odroid_go2/MAINTAINERS
new file mode 100644
index 0000000000..eab622a70b
--- /dev/null
+++ b/board/hardkernel/odroid_go2/MAINTAINERS
@@ -0,0 +1,6 @@
+GO2
+M: Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
+S: Maintained
+F: board/odroid/go2
+F: include/configs/odroid_go2.h
+F: configs/odroid-go2_defconfig
diff --git a/board/hardkernel/odroid_go2/Makefile b/board/hardkernel/odroid_go2/Makefile
new file mode 100644
index 0000000000..51b9d24cfb
--- /dev/null
+++ b/board/hardkernel/odroid_go2/Makefile
@@ -0,0 +1,7 @@
+#
+# Copyright (c) 2020 Theobroma Systems Design und Consulting GmbH
+#
+# SPDX-License-Identifier: GPL-2.0+
+#
+
+obj-y += go2.o
diff --git a/board/hardkernel/odroid_go2/go2.c b/board/hardkernel/odroid_go2/go2.c
new file mode 100644
index 0000000000..29464ae63e
--- /dev/null
+++ b/board/hardkernel/odroid_go2/go2.c
@@ -0,0 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * (C) Copyright 2019 Rockchip Electronics Co., Ltd
+ */