All of lore.kernel.org
 help / color / mirror / Atom feed
From: Abhilash Kesavan <a.kesavan@samsung.com>
To: linux-arm-kernel@lists.infradead.org
Cc: linux-samsung-soc@vger.kernel.org, catalin.marinas@arm.com,
	robh@kernel.org, devicetree@vger.kernel.org, olof@lixom.net,
	arnd@arndb.de, tomasz.figa@gmail.com, kesavan.abhilash@gmail.com,
	lorenzo.pieralisi@arm.com
Subject: [PATCH v7 6/7] arm64: exynos7: Enable ARMv8 based Exynos7 (SoC) support
Date: Sun,  9 Nov 2014 09:50:33 +0530	[thread overview]
Message-ID: <1415506834-8180-7-git-send-email-a.kesavan@samsung.com> (raw)
In-Reply-To: <1415506834-8180-1-git-send-email-a.kesavan@samsung.com>

From: Alim Akhtar <alim.akhtar@samsung.com>

This patch adds the necessary Kconfig entries to enable
support for the ARMv8 based Exynos7 SoC. It also enables
RTC, WDT and Pinctrl for Exynos7.

Signed-off-by: Alim Akhtar <alim.akhtar@samsung.com>
Signed-off-by: Naveen Krishna Ch <naveenkrishna.ch@gmail.com>
Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
Reviewed-by: Thomas Abraham <thomas.ab@samsung.com>
Tested-by: Thomas Abraham <thomas.ab@samsung.com>
Cc: Rob Herring <robh@kernel.org>
Cc: Catalin Marinas <catalin.marinas@arm.com>
---
 arch/arm64/Kconfig | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig
index 66b0b51..2b5e0b0 100644
--- a/arch/arm64/Kconfig
+++ b/arch/arm64/Kconfig
@@ -143,6 +143,23 @@ source "kernel/Kconfig.freezer"
 
 menu "Platform selection"
 
+config ARCH_EXYNOS
+	bool
+	help
+	  This enables support for Samsung Exynos SoC family
+
+config ARCH_EXYNOS7
+	bool "ARMv8 based Samsung Exynos7"
+	select ARCH_EXYNOS
+	select COMMON_CLK_SAMSUNG
+	select HAVE_S3C2410_WATCHDOG if WATCHDOG
+	select HAVE_S3C_RTC if RTC_CLASS
+	select PINCTRL
+	select PINCTRL_EXYNOS
+
+	help
+	  This enables support for Samsung Exynos7 SoC family
+
 config ARCH_THUNDER
 	bool "Cavium Inc. Thunder SoC Family"
 	help
-- 
2.1.0

WARNING: multiple messages have this Message-ID (diff)
From: a.kesavan@samsung.com (Abhilash Kesavan)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v7 6/7] arm64: exynos7: Enable ARMv8 based Exynos7 (SoC) support
Date: Sun,  9 Nov 2014 09:50:33 +0530	[thread overview]
Message-ID: <1415506834-8180-7-git-send-email-a.kesavan@samsung.com> (raw)
In-Reply-To: <1415506834-8180-1-git-send-email-a.kesavan@samsung.com>

From: Alim Akhtar <alim.akhtar@samsung.com>

This patch adds the necessary Kconfig entries to enable
support for the ARMv8 based Exynos7 SoC. It also enables
RTC, WDT and Pinctrl for Exynos7.

Signed-off-by: Alim Akhtar <alim.akhtar@samsung.com>
Signed-off-by: Naveen Krishna Ch <naveenkrishna.ch@gmail.com>
Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
Reviewed-by: Thomas Abraham <thomas.ab@samsung.com>
Tested-by: Thomas Abraham <thomas.ab@samsung.com>
Cc: Rob Herring <robh@kernel.org>
Cc: Catalin Marinas <catalin.marinas@arm.com>
---
 arch/arm64/Kconfig | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig
index 66b0b51..2b5e0b0 100644
--- a/arch/arm64/Kconfig
+++ b/arch/arm64/Kconfig
@@ -143,6 +143,23 @@ source "kernel/Kconfig.freezer"
 
 menu "Platform selection"
 
+config ARCH_EXYNOS
+	bool
+	help
+	  This enables support for Samsung Exynos SoC family
+
+config ARCH_EXYNOS7
+	bool "ARMv8 based Samsung Exynos7"
+	select ARCH_EXYNOS
+	select COMMON_CLK_SAMSUNG
+	select HAVE_S3C2410_WATCHDOG if WATCHDOG
+	select HAVE_S3C_RTC if RTC_CLASS
+	select PINCTRL
+	select PINCTRL_EXYNOS
+
+	help
+	  This enables support for Samsung Exynos7 SoC family
+
 config ARCH_THUNDER
 	bool "Cavium Inc. Thunder SoC Family"
 	help
-- 
2.1.0

  parent reply	other threads:[~2014-11-09  4:20 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-09  4:20 [PATCH v7 0/7] Enable support for Samsung Exynos7 SoC Abhilash Kesavan
2014-11-09  4:20 ` Abhilash Kesavan
2014-11-09  4:20 ` [PATCH v7 1/7] arm64: dts: add <dt-bindings/> symlink Abhilash Kesavan
2014-11-09  4:20   ` Abhilash Kesavan
2014-11-09  4:20 ` [PATCH v7 2/7] arm64: dts: Add initial device tree support for EXYNOS7 Abhilash Kesavan
2014-11-09  4:20   ` Abhilash Kesavan
2014-11-09  4:20 ` [PATCH v7 3/7] arm64: dts: Add initial pinctrl support to EXYNOS7 Abhilash Kesavan
2014-11-09  4:20   ` Abhilash Kesavan
2014-11-09  4:20 ` [PATCH v7 4/7] arm64: dts: Add PMU DT node for exynos7 SoC Abhilash Kesavan
2014-11-09  4:20   ` Abhilash Kesavan
2014-11-09  4:20 ` [PATCH v7 5/7] arm64: dts: Add nodes for mmc, i2c, rtc, watchdog, adc on Exynos7 Abhilash Kesavan
2014-11-09  4:20   ` Abhilash Kesavan
2014-11-09  4:20 ` Abhilash Kesavan [this message]
2014-11-09  4:20   ` [PATCH v7 6/7] arm64: exynos7: Enable ARMv8 based Exynos7 (SoC) support Abhilash Kesavan
2014-11-09  4:20 ` [PATCH v7 7/7] arm64: Enable Exynos7 SOC in the defconfig Abhilash Kesavan
2014-11-09  4:20   ` Abhilash Kesavan
2014-11-11 14:29 ` [PATCH v7 0/7] Enable support for Samsung Exynos7 SoC Abhilash Kesavan
2014-11-11 14:29   ` Abhilash Kesavan
2014-11-16  2:17   ` Abhilash Kesavan
2014-11-16  2:17     ` Abhilash Kesavan
2014-11-16  7:01     ` Kukjin Kim
2014-11-16  7:01       ` Kukjin Kim

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=1415506834-8180-7-git-send-email-a.kesavan@samsung.com \
    --to=a.kesavan@samsung.com \
    --cc=arnd@arndb.de \
    --cc=catalin.marinas@arm.com \
    --cc=devicetree@vger.kernel.org \
    --cc=kesavan.abhilash@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=lorenzo.pieralisi@arm.com \
    --cc=olof@lixom.net \
    --cc=robh@kernel.org \
    --cc=tomasz.figa@gmail.com \
    /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.