From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753467AbeATDLM convert rfc822-to-8bit (ORCPT ); Fri, 19 Jan 2018 22:11:12 -0500 Received: from hermes.aosc.io ([199.195.250.187]:53827 "EHLO hermes.aosc.io" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750947AbeATDLE (ORCPT ); Fri, 19 Jan 2018 22:11:04 -0500 Date: Sat, 20 Jan 2018 11:10:42 +0800 In-Reply-To: References: <20180119231735.61504-1-icenowy@aosc.io> <20180119231735.61504-3-icenowy@aosc.io> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8BIT Subject: Re: [linux-sunxi] [RFC PATCH 2/9] ARM: sunxi: add Allwinner ARMv5 SoCs To: linux-arm-kernel@lists.infradead.org, Julian Calaby CC: devicetree , linux-sunxi , Marc Zyngier , Linus Walleij , Daniel Lezcano , Russell King , "linux-kernel@vger.kernel.org" , linux-gpio@vger.kernel.org, Chen-Yu Tsai , Maxime Ripard , "open list:COMMON CLK FRAMEWORK" , "Mailing List, Arm" From: Icenowy Zheng Message-ID: <76DC4CD7-4A07-40C7-80A8-1C2D177E8109@aosc.io> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 于 2018年1月20日 GMT+08:00 上午11:06:40, Julian Calaby 写到: >Hi Icenowy, > >On Sat, Jan 20, 2018 at 10:17 AM, Icenowy Zheng >wrote: >> Add option for Allwinner ARMv5 SoCs and a SoC suniv (which is a die >used >> for many new F-series products, including F1C100A, F1C100s, F1C200s, >> F1C500, F1C600). >> >> Signed-off-by: Icenowy Zheng >> --- >> arch/arm/mach-sunxi/Kconfig | 13 +++++++++++++ >> arch/arm/mach-sunxi/Makefile | 1 + >> arch/arm/mach-sunxi/sunxi_v5.c | 22 ++++++++++++++++++++++ >> 3 files changed, 36 insertions(+) >> create mode 100644 arch/arm/mach-sunxi/sunxi_v5.c >> >> diff --git a/arch/arm/mach-sunxi/Kconfig >b/arch/arm/mach-sunxi/Kconfig >> index 65509a35935f..78ac9ce70641 100644 >> --- a/arch/arm/mach-sunxi/Kconfig >> +++ b/arch/arm/mach-sunxi/Kconfig >> @@ -59,3 +59,16 @@ config MACH_SUN9I >> select ARM_GIC >> >> endif >> + >> +menuconfig ARCH_SUNXI_V5 >> + bool "Allwinner SoCs" > >That name seems a little too generic. Maybe "Allwinner ARMv5 SoCs"? This is already required by armv5. Allwinner currently has only ARMv5,7,8 SoCs. ARMv8 is under arm64 architecture, and ARMv5 and v7 cannot be selected at the same time. > >Thanks,