Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 634EDC433F5 for ; Fri, 3 Dec 2021 17:12:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346208AbhLCRPd (ORCPT ); Fri, 3 Dec 2021 12:15:33 -0500 Received: from foss.arm.com ([217.140.110.172]:51776 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235278AbhLCRPa (ORCPT ); Fri, 3 Dec 2021 12:15:30 -0500 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 98AE31477; Fri, 3 Dec 2021 09:12:06 -0800 (PST) Received: from [10.57.0.218] (unknown [10.57.0.218]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 7FE1F3F73B; Fri, 3 Dec 2021 09:12:04 -0800 (PST) Subject: Re: [PATCH] ARM: Kconfig: improve ARM_SINGLE_ARMV7M with ARMv8-M too To: Giulio Benetti , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Cc: Russell King , Arnd Bergmann , Linus Walleij , Andrew Morton , "Russell King (Oracle)" , Ard Biesheuvel , Mark Rutland , Anshuman Khandual , Geert Uytterhoeven , Mike Rapoport , =?UTF-8?Q?Uwe_Kleine-K=c3=b6nig?= , Lukas Bulwahn References: <20211203170947.84283-1-giulio.benetti@benettiengineering.com> From: Vladimir Murzin Message-ID: Date: Fri, 3 Dec 2021 17:12:06 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <20211203170947.84283-1-giulio.benetti@benettiengineering.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 12/3/21 5:09 PM, Giulio Benetti wrote: > ARM_SINGLE_ARMV7M implies ARMv7-M and ARMv8-M, so let's remove > "Cortex-M0/M3/M4" mention and add "/v8-M" after ARMv7-M instead. > > Signed-off-by: Giulio Benetti > --- > arch/arm/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig > index c2724d986fa0..4a36a80e57b7 100644 > --- a/arch/arm/Kconfig > +++ b/arch/arm/Kconfig > @@ -329,7 +329,7 @@ config ARCH_MULTIPLATFORM > select USE_OF > > config ARM_SINGLE_ARMV7M > - bool "ARMv7-M based platforms (Cortex-M0/M3/M4)" > + bool "ARMv7-M/v8-M based platforms" > depends on !MMU > select ARM_NVIC > select AUTO_ZRELADDR > Reviewed-by: Vladimir Murzin Thanks Vladimir