MAINTAINERS: mark megasas as maintained
[qemu/ar7.git] / target-ppc / timebase_helper.c
blobfad738a4af9df9d02b27e8e02f3931384f9998b0
1 /*
2 * PowerPC emulation helpers for QEMU.
4 * Copyright (c) 2003-2007 Jocelyn Mayer
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 #include "cpu.h"
20 #include "helper.h"
22 /*****************************************************************************/
23 /* SPR accesses */
25 target_ulong helper_load_tbl(CPUPPCState *env)
27 return (target_ulong)cpu_ppc_load_tbl(env);
30 target_ulong helper_load_tbu(CPUPPCState *env)
32 return cpu_ppc_load_tbu(env);
35 target_ulong helper_load_atbl(CPUPPCState *env)
37 return (target_ulong)cpu_ppc_load_atbl(env);
40 target_ulong helper_load_atbu(CPUPPCState *env)
42 return cpu_ppc_load_atbu(env);
45 #if defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY)
46 target_ulong helper_load_purr(CPUPPCState *env)
48 return (target_ulong)cpu_ppc_load_purr(env);
50 #endif
52 target_ulong helper_load_601_rtcl(CPUPPCState *env)
54 return cpu_ppc601_load_rtcl(env);
57 target_ulong helper_load_601_rtcu(CPUPPCState *env)
59 return cpu_ppc601_load_rtcu(env);
62 #if !defined(CONFIG_USER_ONLY)
63 void helper_store_tbl(CPUPPCState *env, target_ulong val)
65 cpu_ppc_store_tbl(env, val);
68 void helper_store_tbu(CPUPPCState *env, target_ulong val)
70 cpu_ppc_store_tbu(env, val);
73 void helper_store_atbl(CPUPPCState *env, target_ulong val)
75 cpu_ppc_store_atbl(env, val);
78 void helper_store_atbu(CPUPPCState *env, target_ulong val)
80 cpu_ppc_store_atbu(env, val);
83 void helper_store_601_rtcl(CPUPPCState *env, target_ulong val)
85 cpu_ppc601_store_rtcl(env, val);
88 void helper_store_601_rtcu(CPUPPCState *env, target_ulong val)
90 cpu_ppc601_store_rtcu(env, val);
93 target_ulong helper_load_decr(CPUPPCState *env)
95 return cpu_ppc_load_decr(env);
98 void helper_store_decr(CPUPPCState *env, target_ulong val)
100 cpu_ppc_store_decr(env, val);
103 target_ulong helper_load_40x_pit(CPUPPCState *env)
105 return load_40x_pit(env);
108 void helper_store_40x_pit(CPUPPCState *env, target_ulong val)
110 store_40x_pit(env, val);
113 void helper_store_booke_tcr(CPUPPCState *env, target_ulong val)
115 store_booke_tcr(env, val);
118 void helper_store_booke_tsr(CPUPPCState *env, target_ulong val)
120 store_booke_tsr(env, val);
122 #endif
124 /*****************************************************************************/
125 /* Embedded PowerPC specific helpers */
127 /* XXX: to be improved to check access rights when in user-mode */
128 target_ulong helper_load_dcr(CPUPPCState *env, target_ulong dcrn)
130 uint32_t val = 0;
132 if (unlikely(env->dcr_env == NULL)) {
133 qemu_log("No DCR environment\n");
134 helper_raise_exception_err(env, POWERPC_EXCP_PROGRAM,
135 POWERPC_EXCP_INVAL |
136 POWERPC_EXCP_INVAL_INVAL);
137 } else if (unlikely(ppc_dcr_read(env->dcr_env,
138 (uint32_t)dcrn, &val) != 0)) {
139 qemu_log("DCR read error %d %03x\n", (uint32_t)dcrn, (uint32_t)dcrn);
140 helper_raise_exception_err(env, POWERPC_EXCP_PROGRAM,
141 POWERPC_EXCP_INVAL | POWERPC_EXCP_PRIV_REG);
143 return val;
146 void helper_store_dcr(CPUPPCState *env, target_ulong dcrn, target_ulong val)
148 if (unlikely(env->dcr_env == NULL)) {
149 qemu_log("No DCR environment\n");
150 helper_raise_exception_err(env, POWERPC_EXCP_PROGRAM,
151 POWERPC_EXCP_INVAL |
152 POWERPC_EXCP_INVAL_INVAL);
153 } else if (unlikely(ppc_dcr_write(env->dcr_env, (uint32_t)dcrn,
154 (uint32_t)val) != 0)) {
155 qemu_log("DCR write error %d %03x\n", (uint32_t)dcrn, (uint32_t)dcrn);
156 helper_raise_exception_err(env, POWERPC_EXCP_PROGRAM,
157 POWERPC_EXCP_INVAL | POWERPC_EXCP_PRIV_REG);