From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56133) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wrl1T-0008Ds-Ds for qemu-devel@nongnu.org; Tue, 03 Jun 2014 05:29:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wrl19-0000ev-IQ for qemu-devel@nongnu.org; Tue, 03 Jun 2014 05:28:47 -0400 Received: from e23smtp06.au.ibm.com ([202.81.31.148]:48357) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wrl17-0000Xl-Tv for qemu-devel@nongnu.org; Tue, 03 Jun 2014 05:28:27 -0400 Received: from /spool/local by e23smtp06.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 3 Jun 2014 19:28:16 +1000 From: Alexey Kardashevskiy Date: Tue, 3 Jun 2014 19:27:48 +1000 Message-Id: <1401787684-31895-14-git-send-email-aik@ozlabs.ru> In-Reply-To: <1401787684-31895-1-git-send-email-aik@ozlabs.ru> References: <1401787684-31895-1-git-send-email-aik@ozlabs.ru> Subject: [Qemu-devel] [PATCH v4 13/29] target-ppc: Move POWER8 TCE Address control (TAR) to a helper List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Alexey Kardashevskiy , Tom Musta , qemu-ppc@nongnu.org, Alexander Graf This moves TAR SPR to a helper. Later this helper will be called from generalized init_proc_book3s_64(). Signed-off-by: Alexey Kardashevskiy --- target-ppc/translate_init.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/target-ppc/translate_init.c b/target-ppc/translate_init.c index aa88727..d6557f2 100644 --- a/target-ppc/translate_init.c +++ b/target-ppc/translate_init.c @@ -7523,6 +7523,14 @@ static void gen_spr_book3s_purr(CPUPPCState *env) #endif } +static void gen_spr_power8_tce_address_control(CPUPPCState *env) +{ + spr_register(env, SPR_TAR, "TAR", + &spr_read_generic, &spr_write_generic, + &spr_read_generic, &spr_write_generic, + 0x00000000); +} + static void init_proc_book3s_64(CPUPPCState *env, int version) { gen_spr_ne_601(env); @@ -7933,11 +7941,7 @@ static void init_proc_POWER8(CPUPPCState *env) /* inherit P7 */ init_proc_POWER7(env); - /* P8 supports the TAR */ - spr_register(env, SPR_TAR, "TAR", - &spr_read_generic, &spr_write_generic, - &spr_read_generic, &spr_write_generic, - 0x00000000); + gen_spr_power8_tce_address_control(env); } POWERPC_FAMILY(POWER8)(ObjectClass *oc, void *data) -- 2.0.0