All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ley Foon Tan <ley.foon.tan@intel.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v6 15/16] arm: socfpga: Add board files for the Arria10
Date: Wed, 19 Apr 2017 17:29:54 +0800	[thread overview]
Message-ID: <1492594195-13370-16-git-send-email-ley.foon.tan@intel.com> (raw)
In-Reply-To: <1492594195-13370-1-git-send-email-ley.foon.tan@intel.com>

Add support for the Arria10 SoCDK.

Signed-off-by: Tien Fong Chee <tien.fong.chee@intel.com>
Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com>
---
 board/altera/arria10-socdk/Kconfig   | 18 ++++++++++++++++++
 board/altera/arria10-socdk/Makefile  |  7 +++++++
 board/altera/arria10-socdk/socfpga.c |  7 +++++++
 3 files changed, 32 insertions(+)
 create mode 100644 board/altera/arria10-socdk/Kconfig
 create mode 100644 board/altera/arria10-socdk/Makefile
 create mode 100644 board/altera/arria10-socdk/socfpga.c

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>
-- 
1.8.2.3

  parent reply	other threads:[~2017-04-19  9:29 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-19  9:29 [U-Boot] [PATCH v6 00/16] Add Intel Arria 10 SoC support Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 01/16] arm: socfpga: Restructure clock manager driver Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 02/16] arm: socfpga: Restructure reset " Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 03/16] arm: socfpga: Restructure system manager Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 04/16] arm: socfpga: Restructure misc driver Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 05/16] arm: socfpga: Add A10 macros Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 06/16] arm: socfpga: Add reset driver support for Arria 10 Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 07/16] arm: socfpga: Add clock driver " Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 08/16] arm: socfpga: Add system manager " Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 09/16] arm: socfpga: Add sdram header file " Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 10/16] arm: socfpga: Add pinmux " Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 11/16] arm: socfpga: Add misc support " Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 12/16] arm: dts: Add dts and dtsi " Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 13/16] arm: socfpga: Add SPL support " Ley Foon Tan
2017-04-19 19:49   ` Dinh Nguyen
2017-04-19 20:26     ` Dinh Nguyen
2017-04-19 20:44       ` Dinh Nguyen
2017-04-19 20:54         ` Dalon Westergreen
2017-04-19 23:21           ` Dalon Westergreen
2017-04-20  4:58             ` Dinh Nguyen
2017-04-20 14:12               ` Dalon Westergreen
2017-04-20 20:00                 ` Dalon Westergreen
2017-04-21  9:45                   ` Ley Foon Tan
2017-04-21 12:17                     ` Marek Vasut
2017-04-21 13:17                       ` Dalon Westergreen
2017-04-21 13:31                         ` Marek Vasut
2017-04-21 16:37                           ` Dalon Westergreen
2017-04-21 16:47                             ` Marek Vasut
2017-04-25  0:42                         ` Ley Foon Tan
2017-04-19  9:29 ` [U-Boot] [PATCH v6 14/16] arm: socfpga: Add config and defconfig " Ley Foon Tan
2017-04-19  9:29 ` Ley Foon Tan [this message]
2017-04-19  9:29 ` [U-Boot] [PATCH v6 16/16] arm: socfpga: Enable build " Ley Foon Tan
2017-04-19  9:39 ` [U-Boot] [PATCH v6 00/16] Add Intel Arria 10 SoC support Marek Vasut
2017-04-19 14:37   ` Dinh Nguyen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1492594195-13370-16-git-send-email-ley.foon.tan@intel.com \
    --to=ley.foon.tan@intel.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.