summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2017-05-18 21:17:42 (GMT)
committerTom Rini <trini@konsulko.com>2017-05-18 21:17:42 (GMT)
commit753a4dde970c2bc9022321f1093e544e3a150f6e (patch)
tree6973921effd3b964773b8f60531580ad16f18190 /board
parenta0bdf7b31d91eec702ef9b1f295bb2e8439e8f29 (diff)
parentd89e979c42892db572c4ef5d56bc207075953f58 (diff)
downloadu-boot-fsl-qoriq-753a4dde970c2bc9022321f1093e544e3a150f6e.tar.xz
Merge branch 'master' of git://git.denx.de/u-boot-socfpga
Diffstat (limited to 'board')
-rw-r--r--board/altera/arria10-socdk/Kconfig18
-rw-r--r--board/altera/arria10-socdk/Makefile7
-rw-r--r--board/altera/arria10-socdk/socfpga.c7
3 files changed, 32 insertions, 0 deletions
diff --git a/board/altera/arria10-socdk/Kconfig b/board/altera/arria10-socdk/Kconfig
new file mode 100644
index 0000000..b80cc6d
--- /dev/null
+++ b/board/altera/arria10-socdk/Kconfig
@@ -0,0 +1,18 @@
+if TARGET_SOCFPGA_ARRIA10
+
+config SYS_CPU
+ default "armv7"
+
+config SYS_BOARD
+ default "socfpga_arria10"
+
+config SYS_VENDOR
+ default "altera"
+
+config SYS_SOC
+ default "socfpga_arria10"
+
+config SYS_CONFIG_NAME
+ default "socfpga_arria10"
+
+endif
diff --git a/board/altera/arria10-socdk/Makefile b/board/altera/arria10-socdk/Makefile
new file mode 100644
index 0000000..1d885ce
--- /dev/null
+++ b/board/altera/arria10-socdk/Makefile
@@ -0,0 +1,7 @@
+#
+# Copyright (C) 2015 Altera Corporation <www.altera.com>
+#
+# SPDX-License-Identifier: GPL-2.0
+#
+
+obj-y := socfpga.o
diff --git a/board/altera/arria10-socdk/socfpga.c b/board/altera/arria10-socdk/socfpga.c
new file mode 100644
index 0000000..8516633
--- /dev/null
+++ b/board/altera/arria10-socdk/socfpga.c
@@ -0,0 +1,7 @@
+/*
+ * Copyright (C) 2015 Altera Corporation <www.altera.com>
+ *
+ * SPDX-License-Identifier: GPL-2.0
+ */
+
+#include <common.h>