summaryrefslogtreecommitdiff
path: root/board/aspeed
diff options
context:
space:
mode:
authormaxims@google.com <maxims@google.com>2017-01-18 21:44:58 (GMT)
committerTom Rini <trini@konsulko.com>2017-01-28 19:04:33 (GMT)
commitd9b88d2547bcea1ef17e29255fd716b6315b2aec (patch)
tree57a76ea6c3c34bc45106076337112b914254dba6 /board/aspeed
parentf6a6a9f0497a9ec9f48966b2ee89d762f26092d2 (diff)
downloadu-boot-fsl-qoriq-d9b88d2547bcea1ef17e29255fd716b6315b2aec.tar.xz
aspeed: Support for ast2500 Eval Board
ast2500 Eval Board device tree and board specific configuration. Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/aspeed')
-rw-r--r--board/aspeed/evb_ast2500/Kconfig12
-rw-r--r--board/aspeed/evb_ast2500/Makefile1
-rw-r--r--board/aspeed/evb_ast2500/evb_ast2500.c6
3 files changed, 19 insertions, 0 deletions
diff --git a/board/aspeed/evb_ast2500/Kconfig b/board/aspeed/evb_ast2500/Kconfig
new file mode 100644
index 0000000..73a8ae8
--- /dev/null
+++ b/board/aspeed/evb_ast2500/Kconfig
@@ -0,0 +1,12 @@
+if TARGET_EVB_AST2500
+
+config SYS_BOARD
+ default "evb_ast2500"
+
+config SYS_VENDOR
+ default "aspeed"
+
+config SYS_CONFIG_NAME
+ default "evb_ast2500"
+
+endif
diff --git a/board/aspeed/evb_ast2500/Makefile b/board/aspeed/evb_ast2500/Makefile
new file mode 100644
index 0000000..4564098
--- /dev/null
+++ b/board/aspeed/evb_ast2500/Makefile
@@ -0,0 +1 @@
+obj-y += evb_ast2500.o
diff --git a/board/aspeed/evb_ast2500/evb_ast2500.c b/board/aspeed/evb_ast2500/evb_ast2500.c
new file mode 100644
index 0000000..649e3ba
--- /dev/null
+++ b/board/aspeed/evb_ast2500/evb_ast2500.c
@@ -0,0 +1,6 @@
+/*
+ * Copyright (c) 2016 Google, Inc
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+#include <common.h>