public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH 0/2] arm64: initial series for UniPhier ARMv8 SoCs support
@ 2015-11-24  9:08 Masahiro Yamada
  2015-11-24  9:08 ` [PATCH 1/2] arm64: add Kconfig entry for Socionext UniPhier SoC family Masahiro Yamada
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Masahiro Yamada @ 2015-11-24  9:08 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Arnd, Olof,

This series adds ARM64 Linux support for Socionext's UniPhier SoCs.

The device trees will be sent in another series.



Masahiro Yamada (2):
  arm64: add Kconfig entry for Socionext UniPhier SoC family
  arm64: defconfig: enable UniPhier SoCs support

 arch/arm64/Kconfig.platforms | 6 ++++++
 arch/arm64/configs/defconfig | 2 ++
 2 files changed, 8 insertions(+)

-- 
1.9.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] arm64: add Kconfig entry for Socionext UniPhier SoC family
  2015-11-24  9:08 [PATCH 0/2] arm64: initial series for UniPhier ARMv8 SoCs support Masahiro Yamada
@ 2015-11-24  9:08 ` Masahiro Yamada
  2015-11-24  9:08 ` [PATCH 2/2] arm64: defconfig: enable UniPhier SoCs support Masahiro Yamada
  2015-12-12  0:19 ` [PATCH 0/2] arm64: initial series for UniPhier ARMv8 " Arnd Bergmann
  2 siblings, 0 replies; 4+ messages in thread
From: Masahiro Yamada @ 2015-11-24  9:08 UTC (permalink / raw)
  To: linux-arm-kernel

Add the ARM64 Linux support for Socionext UniPhier SoCs.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 arch/arm64/Kconfig.platforms | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/arm64/Kconfig.platforms b/arch/arm64/Kconfig.platforms
index 4043c35..0b9c8dd 100644
--- a/arch/arm64/Kconfig.platforms
+++ b/arch/arm64/Kconfig.platforms
@@ -108,6 +108,12 @@ config ARCH_THUNDER
 	help
 	  This enables support for Cavium's Thunder Family of SoCs.
 
+config ARCH_UNIPHIER
+	bool "Socionext UniPhier SoC Family"
+	select PINCTRL
+	help
+	  This enables support for Socionext UniPhier SoC family.
+
 config ARCH_VEXPRESS
 	bool "ARMv8 software model (Versatile Express)"
 	select ARCH_REQUIRE_GPIOLIB
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] arm64: defconfig: enable UniPhier SoCs support
  2015-11-24  9:08 [PATCH 0/2] arm64: initial series for UniPhier ARMv8 SoCs support Masahiro Yamada
  2015-11-24  9:08 ` [PATCH 1/2] arm64: add Kconfig entry for Socionext UniPhier SoC family Masahiro Yamada
@ 2015-11-24  9:08 ` Masahiro Yamada
  2015-12-12  0:19 ` [PATCH 0/2] arm64: initial series for UniPhier ARMv8 " Arnd Bergmann
  2 siblings, 0 replies; 4+ messages in thread
From: Masahiro Yamada @ 2015-11-24  9:08 UTC (permalink / raw)
  To: linux-arm-kernel

Enable ARCH_UNIPHIER with its on-chip UART driver.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 arch/arm64/configs/defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index bdd7aa3..5853bc0 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -45,6 +45,7 @@ CONFIG_ARCH_TEGRA_132_SOC=y
 CONFIG_ARCH_QCOM=y
 CONFIG_ARCH_SPRD=y
 CONFIG_ARCH_THUNDER=y
+CONFIG_ARCH_UNIPHIER=y
 CONFIG_ARCH_VEXPRESS=y
 CONFIG_ARCH_XGENE=y
 CONFIG_ARCH_ZYNQMP=y
@@ -110,6 +111,7 @@ CONFIG_SERIAL_8250=y
 CONFIG_SERIAL_8250_CONSOLE=y
 CONFIG_SERIAL_8250_DW=y
 CONFIG_SERIAL_8250_MT6577=y
+CONFIG_SERIAL_8250_UNIPHIER=y
 CONFIG_SERIAL_AMBA_PL011=y
 CONFIG_SERIAL_AMBA_PL011_CONSOLE=y
 CONFIG_SERIAL_SAMSUNG=y
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 0/2] arm64: initial series for UniPhier ARMv8 SoCs support
  2015-11-24  9:08 [PATCH 0/2] arm64: initial series for UniPhier ARMv8 SoCs support Masahiro Yamada
  2015-11-24  9:08 ` [PATCH 1/2] arm64: add Kconfig entry for Socionext UniPhier SoC family Masahiro Yamada
  2015-11-24  9:08 ` [PATCH 2/2] arm64: defconfig: enable UniPhier SoCs support Masahiro Yamada
@ 2015-12-12  0:19 ` Arnd Bergmann
  2 siblings, 0 replies; 4+ messages in thread
From: Arnd Bergmann @ 2015-12-12  0:19 UTC (permalink / raw)
  To: linux-arm-kernel

On Tuesday 24 November 2015 18:08:27 Masahiro Yamada wrote:
> Hi Arnd, Olof,
> 
> This series adds ARM64 Linux support for Socionext's UniPhier SoCs.
> 
> The device trees will be sent in another series.

Applied both to next/config64, thanks!

	Arnd

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-12-12  0:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-24  9:08 [PATCH 0/2] arm64: initial series for UniPhier ARMv8 SoCs support Masahiro Yamada
2015-11-24  9:08 ` [PATCH 1/2] arm64: add Kconfig entry for Socionext UniPhier SoC family Masahiro Yamada
2015-11-24  9:08 ` [PATCH 2/2] arm64: defconfig: enable UniPhier SoCs support Masahiro Yamada
2015-12-12  0:19 ` [PATCH 0/2] arm64: initial series for UniPhier ARMv8 " Arnd Bergmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox