All of lore.kernel.org
 help / color / mirror / Atom feed
From: Amit Singh Tomar <amittomer25@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 4/9] arm: add support Actions Semi S700
Date: Mon, 14 Jan 2019 18:11:06 +0530	[thread overview]
Message-ID: <1547469671-1487-4-git-send-email-amittomer25@gmail.com> (raw)
In-Reply-To: <1547469671-1487-1-git-send-email-amittomer25@gmail.com>

This patch adds basic support for Actions Semi based S700
SoC, which is driven by common owl framework.

Signed-off-by: Amit Singh Tomar <amittomer25@gmail.com>
---
Changes since v1:
	* S700 specific changes are factored out here 
	  from patch 1 of 9.
---
 arch/arm/mach-owl/Kconfig |  6 ++++++
 include/configs/s700.h    | 15 +++++++++++++++
 2 files changed, 21 insertions(+)
 create mode 100644 include/configs/s700.h

diff --git a/arch/arm/mach-owl/Kconfig b/arch/arm/mach-owl/Kconfig
index 5eb93c9..d05cc68 100644
--- a/arch/arm/mach-owl/Kconfig
+++ b/arch/arm/mach-owl/Kconfig
@@ -8,13 +8,19 @@ config MACH_S900
         bool "Actionss Semi S900"
         select ARM64
 
+config MACH_S700
+        bool "Actions Semi S700"
+        select ARM64
+
 endchoice
 
 config SYS_CONFIG_NAME
         default "s900" if MACH_S900
+        default "s700" if MACH_S700
 
 config SYS_SOC
         default "s900" if MACH_S900
+        default "s700" if MACH_S700
 
 config SYS_TEXT_BASE
         default 0x11000000
diff --git a/include/configs/s700.h b/include/configs/s700.h
new file mode 100644
index 0000000..84f9174
--- /dev/null
+++ b/include/configs/s700.h
@@ -0,0 +1,15 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Board configuration file for Action semi s700
+ *
+ */
+
+#ifndef _CONFIG_S700_H_
+#define _CONFIG_S700_H_
+
+/*
+ * Include common owl configuration where most the settings are
+ */
+#include <configs/owl-common.h>
+
+#endif
-- 
2.7.4

  parent reply	other threads:[~2019-01-14 12:41 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-14 12:41 [U-Boot] [PATCH v2 1/9] arm: actions: Add common framework for Actions Semi SoCs Amit Singh Tomar
2019-01-14 12:41 ` [U-Boot] [PATCH v2 2/9] arm: actions: Add owl memory map regions Amit Singh Tomar
2019-01-14 22:38   ` André Przywara
2019-01-17 16:26   ` Manivannan Sadhasivam
2019-01-14 12:41 ` [U-Boot] [PATCH v3 3/9] clk: actions: Add common clock driver Amit Singh Tomar
2019-01-15  0:43   ` André Przywara
2019-01-17 15:15     ` Manivannan Sadhasivam
2019-01-17 21:17       ` André Przywara
2019-01-14 12:41 ` Amit Singh Tomar [this message]
2019-01-17 16:31   ` [U-Boot] [PATCH v2 4/9] arm: add support Actions Semi S700 Manivannan Sadhasivam
2019-01-14 12:41 ` [U-Boot] [PATCH v2 5/9] arm: actions: add S700 SoC device tree Amit Singh Tomar
2019-01-14 17:31   ` Rob Herring
2019-01-14 12:41 ` [U-Boot] [PATCH v2 6/9] arm: add Cubieboard7 board support Amit Singh Tomar
2019-01-14 22:57   ` André Przywara
2019-01-17 16:28     ` Manivannan Sadhasivam
2019-01-17 16:29   ` Manivannan Sadhasivam
2019-01-14 12:41 ` [U-Boot] [PATCH v2 7/9] actions:s700: add u-boot specific dts file Amit Singh Tomar
2019-01-17 16:34   ` Manivannan Sadhasivam
2019-01-14 12:41 ` [U-Boot] [PATCH v2 8/9] serial: actions: add uart support for s700 Amit Singh Tomar
2019-01-14 22:58   ` André Przywara
2019-01-14 12:41 ` [U-Boot] [PATCH v2 9/9] actions: add Cubieboard7 README Amit Singh Tomar
2019-01-14 23:33 ` [U-Boot] [PATCH v2 1/9] arm: actions: Add common framework for Actions Semi SoCs André Przywara
2019-01-17 15:39 ` Manivannan Sadhasivam
2019-01-17 21:16   ` André Przywara
2019-01-18  3:30     ` Manivannan Sadhasivam

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=1547469671-1487-4-git-send-email-amittomer25@gmail.com \
    --to=amittomer25@gmail.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.