From e3ea652962383a2ffc05b2f1b10a0e97542eb6f8 Mon Sep 17 00:00:00 2001 From: Alexander Graf Date: Mon, 21 Dec 2009 12:24:17 +0100 Subject: PPC64: Fix timebase On PPC we have a 64-bit time base. Usually (PPC32) this is accessed using two separate 32 bit SPR accesses to SPR_TBU and SPR_TBL. On PPC64 the SPR_TBL register acts as 64 bit though, so we get the full 64 bits as return value. If we only take the lower ones, fine. But Linux wants to see all 64 bits or it breaks. This patch makes PPC64 Linux work even after TB crossed the 32-bit boundary, which usually happened a few seconds after bootup. Signed-off-by: Alexander Graf Signed-off-by: Aurelien Jarno --- darwin-user/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'darwin-user') diff --git a/darwin-user/main.c b/darwin-user/main.c index 5fd314ecd9..2f4a0f827b 100644 --- a/darwin-user/main.c +++ b/darwin-user/main.c @@ -82,9 +82,9 @@ static inline uint64_t cpu_ppc_get_tb (CPUState *env) return 0; } -uint32_t cpu_ppc_load_tbl (CPUState *env) +uint64_t cpu_ppc_load_tbl (CPUState *env) { - return cpu_ppc_get_tb(env) & 0xFFFFFFFF; + return cpu_ppc_get_tb(env); } uint32_t cpu_ppc_load_tbu (CPUState *env) -- cgit v1.2.1