From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753948AbbAPKtL (ORCPT ); Fri, 16 Jan 2015 05:49:11 -0500 Received: from foss-mx-na.foss.arm.com ([217.140.108.86]:35702 "EHLO foss-mx-na.foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752097AbbAPKtI (ORCPT ); Fri, 16 Jan 2015 05:49:08 -0500 Date: Fri, 16 Jan 2015 10:48:42 +0000 From: Mark Rutland To: Chunyan Zhang Cc: "gregkh@linuxfoundation.org" , "arnd@arndb.de" , "gnomes@lxorguk.ukuu.org.uk" , "broonie@kernel.org" , "robh+dt@kernel.org" , Pawel Moll , "ijc+devicetree@hellion.org.uk" , "galak@codeaurora.org" , Will Deacon , Catalin Marinas , "jslaby@suse.cz" , "jason@lakedaemon.net" , "heiko@sntech.de" , "florian.vaussard@epfl.ch" , "andrew@lunn.ch" , "rrichter@cavium.com" , "hytszk@gmail.com" , "grant.likely@linaro.org" , "antonynpavlov@gmail.com" , "Joel.Schopp@amd.com" , "suravee.suthikulpanit@amd.com" , "shawn.guo@linaro.org" , "lea.yan@linaro.org" , "jorge.ramirez-ortiz@linaro.org" , "lee.jones@linaro.org" , "orsonzhai@gmail.com" , "geng.ren@spreadtrum.com" , "zhizhou.zhang@spreadtrum.com" , "lanqing.liu@spreadtrum.com" , "zhang.lyra@gmail.com" , "wei.qiao@spreadtrum.com" , "devicetree@vger.kernel.org" , "linux-arm-kernel@lists.infradead.org" , "linux-kernel@vger.kernel.org" , "linux-serial@vger.kernel.org" , "linux-api@vger.kernel.org" Subject: Re: [PATCH v5 4/5] arm64: Add support for Spreadtrum's Sharkl64 Platform in Kconfig and defconfig Message-ID: <20150116104842.GE21809@leverpostej> References: <1421402411-3479-1-git-send-email-chunyan.zhang@spreadtrum.com> <1421402411-3479-5-git-send-email-chunyan.zhang@spreadtrum.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1421402411-3479-5-git-send-email-chunyan.zhang@spreadtrum.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Jan 16, 2015 at 10:00:10AM +0000, Chunyan Zhang wrote: > From: Zhizhou Zhang > > Adds support for Spreadtrum's SoC Platform in the arm64 Kconfig and > defconfig files. > > Signed-off-by: Zhizhou Zhang > Signed-off-by: Orson Zhai > Signed-off-by: Chunyan Zhang > --- > arch/arm64/Kconfig | 5 +++++ > arch/arm64/configs/defconfig | 1 + > 2 files changed, 6 insertions(+) > > diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig > index b1f9a20..885c1f4 100644 > --- a/arch/arm64/Kconfig > +++ b/arch/arm64/Kconfig > @@ -153,6 +153,11 @@ config ARCH_SEATTLE > help > This enables support for AMD Seattle SOC Family > > +config ARCH_SPRD This should presumably be ARCH_SHARKL64, so you can add other SoC families later. The other entries in here are already formatted that way. I wonder if we should have these of the form ARCH_${VENDOR}_${FAMILY} (e.g. ARCH_SPRD_SHARKL64) rather than just ARCH_${FAMILY} to save ourselves from name conflicts in future (and to make it easier to grep for a particular vendor's config options). > + bool "Spreadtrum SoC platform" bool "Spreadtrun Sharkl64 SoC Family" > + help > + Support for Spreadtrum ARM based SoCs Support for the Spreadtrum Sharkl64 SoC family. Thanks, Mark. > + > config ARCH_THUNDER > bool "Cavium Inc. Thunder SoC Family" > help > diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig > index dd301be..c1677ca 100644 > --- a/arch/arm64/configs/defconfig > +++ b/arch/arm64/configs/defconfig > @@ -33,6 +33,7 @@ CONFIG_MODULE_UNLOAD=y > # CONFIG_BLK_DEV_BSG is not set > # CONFIG_IOSCHED_DEADLINE is not set > CONFIG_ARCH_THUNDER=y > +CONFIG_ARCH_SPRD=y > CONFIG_ARCH_VEXPRESS=y > CONFIG_ARCH_XGENE=y > CONFIG_PCI=y > -- > 1.7.9.5 > >