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.gnu.org (lists.gnu.org [209.51.188.17]) (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 91694C77B7A for ; Mon, 17 Apr 2023 16:29:02 +0000 (UTC) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1poRiU-0006yZ-5f; Mon, 17 Apr 2023 12:28:34 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1poRiR-0006vp-CD; Mon, 17 Apr 2023 12:28:31 -0400 Received: from dfw.source.kernel.org ([2604:1380:4641:c500::1]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1poRiN-0007Jo-O7; Mon, 17 Apr 2023 12:28:31 -0400 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 AB25A61B4B; Mon, 17 Apr 2023 16:28:21 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6F639C433D2; Mon, 17 Apr 2023 16:28:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1681748901; bh=Zf7OyxqI7q7xYu/Majbant+5+e+VKTO7v2AYbKgsnsM=; h=Date:From:To:Subject:References:In-Reply-To:From; b=mosJFT17FFaJiBLxD0sMxWR9hFPM0HrUY9wt44O8xgJBFsgHDyxGEaVStzQQ6xN1e TuZXwqnL0X2keDPvocToJIbkDikf8Jet7UPkVXHxuXx6OtE5bRzCIEQh9oq6Xhnwxh PwKU+z7yHw/OQIi6Omcsj6w1jvMNZhq8xkjqgcnfPq8zVRpBasdy8Dbu1xe8+Rz9Gl EXv7/wwhA4vtoUaD0RPAq9KIJFo2KooTzjsaq0+CRzlwSVPYKAwJFhQFQMxNeiWEdf xKq1s7zMXGF0itdR8psW0ZKEskKGU3xfdNtkP+VkJzlrWjz5B1+xYs6D6rlRKljrwy WJYIHqb3uEtYw== Date: Tue, 18 Apr 2023 00:17:25 +0800 From: Jisheng Zhang To: qemu-arm@nongnu.org, qemu-devel@nongnu.org Subject: Re: [PATCH 0/2] Remove CBAR from A55/A76 and add A78 Message-ID: References: <20230415082827.2054-1-jszhang@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20230415082827.2054-1-jszhang@kernel.org> Received-SPF: pass client-ip=2604:1380:4641:c500::1; envelope-from=jszhang@kernel.org; helo=dfw.source.kernel.org X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org On Sat, Apr 15, 2023 at 04:28:25PM +0800, Jisheng Zhang wrote: > patch1 removes CBAR from A55 and A76 > patch2 adds A78 CPU As in another email, for various reaons I want to recall these two patches. > > Jisheng Zhang (2): > target/arm: Remove ARM_FEATURE_CBAR_RO from A55 and A76 > target/arm: Add Cortex-A78 CPU > > docs/system/arm/virt.rst | 1 + > hw/arm/virt.c | 1 + > target/arm/cpu64.c | 71 ++++++++++++++++++++++++++++++++++++++-- > 3 files changed, 71 insertions(+), 2 deletions(-) > > -- > 2.40.0 > >