From patchwork Fri Apr 1 04:15:12 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Gibson X-Patchwork-Id: 89174 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id A2F7FB6EEC for ; Fri, 1 Apr 2011 15:31:22 +1100 (EST) Received: from localhost ([127.0.0.1]:59788 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q5W11-0006VU-Fr for incoming@patchwork.ozlabs.org; Fri, 01 Apr 2011 00:31:19 -0400 Received: from [140.186.70.92] (port=39958 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q5VmD-00079E-4q for qemu-devel@nongnu.org; Fri, 01 Apr 2011 00:16:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q5Vm2-0001Rq-Uq for qemu-devel@nongnu.org; Fri, 01 Apr 2011 00:16:00 -0400 Received: from ozlabs.org ([203.10.76.45]:35012) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q5Vm2-0001R5-IO for qemu-devel@nongnu.org; Fri, 01 Apr 2011 00:15:50 -0400 Received: by ozlabs.org (Postfix, from userid 1007) id 58C56B6F8A; Fri, 1 Apr 2011 15:15:44 +1100 (EST) From: David Gibson To: agraf@suse.de, qemu-devel@nongnu.org Date: Fri, 1 Apr 2011 15:15:12 +1100 Message-Id: <1301631334-30795-6-git-send-email-david@gibson.dropbear.id.au> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1301631334-30795-1-git-send-email-david@gibson.dropbear.id.au> References: <1301631334-30795-1-git-send-email-david@gibson.dropbear.id.au> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 203.10.76.45 Cc: paulus@samba.org, anton@samba.org Subject: [Qemu-devel] [PATCH 05/27] Implement missing parts of the logic for the POWER PURR X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The PURR (Processor Utilization Resource Register) is a register found on recent POWER CPUs. The guts of implementing it at least enough to get by are already present in qemu, however some of the helper functions needed to actually wire it up are missing. This patch adds the necessary glue, so that the PURR can be wired up when we implement newer POWER CPU targets which include it. Signed-off-by: David Gibson --- target-ppc/helper.h | 1 + target-ppc/op_helper.c | 7 +++++++ target-ppc/translate_init.c | 8 ++++++++ 3 files changed, 16 insertions(+), 0 deletions(-) diff --git a/target-ppc/helper.h b/target-ppc/helper.h index 1a69cf8..2b4744d 100644 --- a/target-ppc/helper.h +++ b/target-ppc/helper.h @@ -376,6 +376,7 @@ DEF_HELPER_0(load_601_rtcu, tl) #if !defined(CONFIG_USER_ONLY) #if defined(TARGET_PPC64) DEF_HELPER_1(store_asr, void, tl) +DEF_HELPER_0(load_purr, tl) #endif DEF_HELPER_1(store_sdr1, void, tl) DEF_HELPER_1(store_tbl, void, tl) diff --git a/target-ppc/op_helper.c b/target-ppc/op_helper.c index bdb1f17..aa2e8ba 100644 --- a/target-ppc/op_helper.c +++ b/target-ppc/op_helper.c @@ -86,6 +86,13 @@ target_ulong helper_load_atbu (void) return cpu_ppc_load_atbu(env); } +#if defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY) +target_ulong helper_load_purr (void) +{ + return (target_ulong)cpu_ppc_load_purr(env); +} +#endif + target_ulong helper_load_601_rtcl (void) { return cpu_ppc601_load_rtcl(env); diff --git a/target-ppc/translate_init.c b/target-ppc/translate_init.c index 7c08b1c..bca85d5 100644 --- a/target-ppc/translate_init.c +++ b/target-ppc/translate_init.c @@ -251,6 +251,14 @@ static void spr_write_atbu (void *opaque, int sprn, int gprn) { gen_helper_store_atbu(cpu_gpr[gprn]); } + +#if defined(TARGET_PPC64) +__attribute__ (( unused )) +static void spr_read_purr (void *opaque, int gprn, int sprn) +{ + gen_helper_load_purr(cpu_gpr[gprn]); +} +#endif #endif #if !defined(CONFIG_USER_ONLY)