From mboxrd@z Thu Jan 1 00:00:00 1970 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 lists.ozlabs.org (lists.ozlabs.org [112.213.38.117]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 7A312C636D3 for ; Wed, 1 Feb 2023 23:47:54 +0000 (UTC) Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4P6drm5kp4z3f4W for ; Thu, 2 Feb 2023 10:47:52 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.a=rsa-sha256 header.s=k20201202 header.b=ZrBnQV1j; dkim-atps=neutral Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=kernel.org (client-ip=2604:1380:4641:c500::1; helo=dfw.source.kernel.org; envelope-from=pali@kernel.org; receiver=) Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.a=rsa-sha256 header.s=k20201202 header.b=ZrBnQV1j; dkim-atps=neutral Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 4P6dqj0C9Hz301F for ; Thu, 2 Feb 2023 10:46:56 +1100 (AEDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 6C9EE6199A; Wed, 1 Feb 2023 23:46:53 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B027EC433EF; Wed, 1 Feb 2023 23:46:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1675295212; bh=5iXJHg/bNi506Wumv2Wdn+vPPmHRh07HufMbXsgnVy0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ZrBnQV1jPotsPALZ6r13v4Pva5XddNGXTh5WmYlqMdHG8RKRT3veuEg0r5lDfIoQz bQWrA1NHUCJxP4amV4J/c7PVP2wIi+Fa13H9M/BTtYanDSVKfGuNlA3U9bE9GptGnS XpB9OLT3zdVOKcBD5EP6Hz7yBmZiqcJy47a9mmNvkHCxCPPxy8zo+ghcbYXR+9yd2y 0s8ARZ+vpEF6wbaGOVTTkLu6G4xfGTnpThxxNsqenYR6O68E6rAaJhMjpHySQl3FET CswLFU1Yu8q+dpic09oTAsuf0aJR+XYztN7H+xH/0J4fmdW118Rk1eSsIj6HNjLsna wLhN+AcdCbHhw== Received: by pali.im (Postfix) id AD6CF7FB; Thu, 2 Feb 2023 00:46:49 +0100 (CET) Date: Thu, 2 Feb 2023 00:46:49 +0100 From: Pali =?utf-8?B?Um9ow6Fy?= To: Christophe Leroy Subject: Re: [PATCH v1 3/5] powerpc/64: Replace -mcpu=e500mc64 by -mcpu=e5500 Message-ID: <20230201234649.yxztgdm3efklmoy5@pali> References: <38a8d765ed9149bc6b5484a7142e3bc59ffa3b1a.1671475543.git.christophe.leroy@csgroup.eu> <20221220201508.b47rg5ii2p6wkrkq@pali> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20221220201508.b47rg5ii2p6wkrkq@pali> User-Agent: NeoMutt/20180716 X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linuxppc-dev@lists.ozlabs.org, jbglaw@lug-owl.de, Nicholas Piggin , linux-kernel@vger.kernel.org Errors-To: linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Sender: "Linuxppc-dev" On Tuesday 20 December 2022 21:15:08 Pali Rohár wrote: > On Monday 19 December 2022 19:45:58 Christophe Leroy wrote: > > E500MC64 is a processor pre-dating E5500 that has never been > > commercialised. Use -mcpu=e5500 for E5500 core. > > > > More details at https://gcc.gnu.org/PR108149 > > > > Signed-off-by: Christophe Leroy > > Acked-by: Pali Rohár > > > --- > > arch/powerpc/platforms/Kconfig.cputype | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/arch/powerpc/platforms/Kconfig.cputype b/arch/powerpc/platforms/Kconfig.cputype > > index 31cea2eeb59e..29d6be033576 100644 > > --- a/arch/powerpc/platforms/Kconfig.cputype > > +++ b/arch/powerpc/platforms/Kconfig.cputype > > @@ -249,7 +249,7 @@ config TARGET_CPU > > default "power8" if POWER8_CPU > > default "power9" if POWER9_CPU > > default "power10" if POWER10_CPU > > - default "e500mc64" if E5500_CPU > > + default "e5500" if E5500_CPU > > default "e6500" if E6500_CPU > > default "power4" if POWERPC64_CPU && !CPU_LITTLE_ENDIAN > > default "power8" if POWERPC64_CPU && CPU_LITTLE_ENDIAN > > -- > > 2.38.1 > > It looks like that this patch is also missing in powerpc tree...