From patchwork Fri Aug 25 06:56:33 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Helge Deller X-Patchwork-Id: 13365095 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 4E15DC3DA6F for ; Fri, 25 Aug 2023 06:58:22 +0000 (UTC) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qZQkW-00067m-TD; Fri, 25 Aug 2023 02:56:52 -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 1qZQkQ-000673-U2 for qemu-devel@nongnu.org; Fri, 25 Aug 2023 02:56:46 -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 1qZQkO-0007X0-2N for qemu-devel@nongnu.org; Fri, 25 Aug 2023 02:56:46 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 580CC60B60; Fri, 25 Aug 2023 06:56:42 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id DC275C433C7; Fri, 25 Aug 2023 06:56:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1692946601; bh=yxAYGRGrwR+7vH7GrnMC/IVkMVXwW2O8D5xtMpb8PiE=; h=From:To:Cc:Subject:Date:From; b=sTdTz02g0lSs7m0VLPWhnawCt1Y+WuIadYwqpMHiDTe9WgYDkm9R9zgVLa/brTdxf i2g+zNnhCPklUVAxPuQ4KhZk1zNZ0n2UfwtcmxxodAgcXDB1RXsFiPb15UnrqtwxyI K3aBjdUzFYebOqD6r4WxhVMDUPiObUxjwkAzJL0RL+/OqQEa9wMxP0+Kh+bL2kQoV9 vPEv6TsUT0zvupBYue0BcJNd1T1NaO7XClLtXPBMKI5+NyXWggbmWNXWx5KU42mV+5 eDF/LVzwB0CNesVq6RgCAaG9Q7BJwEoDbd4YdxkJnf/3X32NuIibN9w+cNHM9O3zR/ yDDBffhPoWRMA== From: deller@kernel.org To: qemu-devel@nongnu.org Cc: Richard Henderson , Helge Deller Subject: [PATCH v2 0/5] target/hppa: Clean up conversion from/to MMU index and privilege level Date: Fri, 25 Aug 2023 08:56:33 +0200 Message-ID: <20230825065638.7262-1-deller@kernel.org> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Received-SPF: pass client-ip=2604:1380:4641:c500::1; envelope-from=deller@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 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 From: Helge Deller Make the conversion between privilege level and QEMU MMU index consitent, and afterwards switch to MMU indices 11-15. v2: - no functional changes - just typo fixes in commit messages - branch rebased on v8.1.0 release Signed-off-by: Helge Deller Helge Deller (5): target/hppa: Add missing PL1 and PL2 privilege levels target/hppa: Add privilege to MMU index conversion helpers target/hppa: Do not use hardcoded value for tlb_flush_*() target/hppa: Use privilege helper in hppa_get_physical_address() target/hppa: Switch to use MMU indices 11-15 target/hppa/cpu.h | 19 +++++++++++++++---- target/hppa/helper.c | 2 +- target/hppa/mem_helper.c | 16 ++++++++-------- target/hppa/translate.c | 9 +++++---- 4 files changed, 29 insertions(+), 17 deletions(-)