]> Git Repo - qemu.git/blame - target/hppa/cpu.h
target/hppa: Add space registers
[qemu.git] / target / hppa / cpu.h
CommitLineData
61766fe9
RH
1/*
2 * PA-RISC emulation cpu definitions for qemu.
3 *
4 * Copyright (c) 2016 Richard Henderson <[email protected]>
5 *
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.
10 *
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.
15 *
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/>.
18 */
19
20#ifndef HPPA_CPU_H
21#define HPPA_CPU_H
22
23#include "qemu-common.h"
24#include "cpu-qom.h"
25
eaa3783b
RH
26#define TARGET_LONG_BITS 32
27#define TARGET_VIRT_ADDR_SPACE_BITS 32
28#define TARGET_REGISTER_BITS 32
29#define TARGET_PHYS_ADDR_SPACE_BITS 32
61766fe9
RH
30
31#define CPUArchState struct CPUHPPAState
32
33#include "exec/cpu-defs.h"
34#include "fpu/softfloat.h"
35
36#define TARGET_PAGE_BITS 12
37
38#define ALIGNED_ONLY
3d68ee7b
RH
39#define NB_MMU_MODES 5
40#define MMU_KERNEL_IDX 0
41#define MMU_USER_IDX 3
42#define MMU_PHYS_IDX 4
61766fe9
RH
43#define TARGET_INSN_START_EXTRA_WORDS 1
44
2986721d
RH
45/* Hardware exceptions, interupts, faults, and traps. */
46#define EXCP_HPMC 1 /* high priority machine check */
47#define EXCP_POWER_FAIL 2
48#define EXCP_RC 3 /* recovery counter */
49#define EXCP_EXT_INTERRUPT 4 /* external interrupt */
50#define EXCP_LPMC 5 /* low priority machine check */
51#define EXCP_ITLB_MISS 6 /* itlb miss / instruction page fault */
52#define EXCP_IMP 7 /* instruction memory protection trap */
53#define EXCP_ILL 8 /* illegal instruction trap */
54#define EXCP_BREAK 9 /* break instruction */
55#define EXCP_PRIV_OPR 10 /* privileged operation trap */
56#define EXCP_PRIV_REG 11 /* privileged register trap */
57#define EXCP_OVERFLOW 12 /* signed overflow trap */
58#define EXCP_COND 13 /* trap-on-condition */
59#define EXCP_ASSIST 14 /* assist exception trap */
60#define EXCP_DTLB_MISS 15 /* dtlb miss / data page fault */
61#define EXCP_NA_ITLB_MISS 16 /* non-access itlb miss */
62#define EXCP_NA_DTLB_MISS 17 /* non-access dtlb miss */
63#define EXCP_DMP 18 /* data memory protection trap */
64#define EXCP_DMB 19 /* data memory break trap */
65#define EXCP_TLB_DIRTY 20 /* tlb dirty bit trap */
66#define EXCP_PAGE_REF 21 /* page reference trap */
67#define EXCP_ASSIST_EMU 22 /* assist emulation trap */
68#define EXCP_HPT 23 /* high-privilege transfer trap */
69#define EXCP_LPT 24 /* low-privilege transfer trap */
70#define EXCP_TB 25 /* taken branch trap */
71#define EXCP_DMAR 26 /* data memory access rights trap */
72#define EXCP_DMPI 27 /* data memory protection id trap */
73#define EXCP_UNALIGN 28 /* unaligned data reference trap */
74#define EXCP_PER_INTERRUPT 29 /* performance monitor interrupt */
75
76/* Exceptions for linux-user emulation. */
77#define EXCP_SYSCALL 30
78#define EXCP_SYSCALL_LWS 31
61766fe9 79
fa57e327
RH
80/* Taken from Linux kernel: arch/parisc/include/asm/psw.h */
81#define PSW_I 0x00000001
82#define PSW_D 0x00000002
83#define PSW_P 0x00000004
84#define PSW_Q 0x00000008
85#define PSW_R 0x00000010
86#define PSW_F 0x00000020
87#define PSW_G 0x00000040 /* PA1.x only */
88#define PSW_O 0x00000080 /* PA2.0 only */
89#define PSW_CB 0x0000ff00
90#define PSW_M 0x00010000
91#define PSW_V 0x00020000
92#define PSW_C 0x00040000
93#define PSW_B 0x00080000
94#define PSW_X 0x00100000
95#define PSW_N 0x00200000
96#define PSW_L 0x00400000
97#define PSW_H 0x00800000
98#define PSW_T 0x01000000
99#define PSW_S 0x02000000
100#define PSW_E 0x04000000
101#ifdef TARGET_HPPA64
102#define PSW_W 0x08000000 /* PA2.0 only */
103#else
104#define PSW_W 0
105#endif
106#define PSW_Z 0x40000000 /* PA1.x only */
107#define PSW_Y 0x80000000 /* PA1.x only */
108
109#define PSW_SM (PSW_W | PSW_E | PSW_O | PSW_G | PSW_F \
110 | PSW_R | PSW_Q | PSW_P | PSW_D | PSW_I)
111
112/* ssm/rsm instructions number PSW_W and PSW_E differently */
113#define PSW_SM_I PSW_I /* Enable External Interrupts */
114#define PSW_SM_D PSW_D
115#define PSW_SM_P PSW_P
116#define PSW_SM_Q PSW_Q /* Enable Interrupt State Collection */
117#define PSW_SM_R PSW_R /* Enable Recover Counter Trap */
118#ifdef TARGET_HPPA64
119#define PSW_SM_E 0x100
120#define PSW_SM_W 0x200 /* PA2.0 only : Enable Wide Mode */
121#else
122#define PSW_SM_E 0
123#define PSW_SM_W 0
124#endif
125
61766fe9
RH
126typedef struct CPUHPPAState CPUHPPAState;
127
eaa3783b
RH
128#if TARGET_REGISTER_BITS == 32
129typedef uint32_t target_ureg;
130typedef int32_t target_sreg;
131#define TREG_FMT_lx "%08"PRIx32
132#define TREG_FMT_ld "%"PRId32
133#else
134typedef uint64_t target_ureg;
135typedef int64_t target_sreg;
136#define TREG_FMT_lx "%016"PRIx64
137#define TREG_FMT_ld "%"PRId64
138#endif
139
61766fe9 140struct CPUHPPAState {
eaa3783b 141 target_ureg gr[32];
61766fe9 142 uint64_t fr[32];
33423472 143 uint64_t sr[8]; /* stored shifted into place for gva */
61766fe9 144
eaa3783b
RH
145 target_ureg sar;
146 target_ureg cr26;
147 target_ureg cr27;
61766fe9 148
eaa3783b
RH
149 target_ureg psw; /* All psw bits except the following: */
150 target_ureg psw_n; /* boolean */
151 target_sreg psw_v; /* in most significant bit */
61766fe9
RH
152
153 /* Splitting the carry-borrow field into the MSB and "the rest", allows
154 * for "the rest" to be deleted when it is unused, but the MSB is in use.
155 * In addition, it's easier to compute carry-in for bit B+1 than it is to
156 * compute carry-out for bit B (3 vs 4 insns for addition, assuming the
157 * host has the appropriate add-with-carry insn to compute the msb).
158 * Therefore the carry bits are stored as: cb_msb : cb & 0x11111110.
159 */
eaa3783b
RH
160 target_ureg psw_cb; /* in least significant bit of next nibble */
161 target_ureg psw_cb_msb; /* boolean */
61766fe9 162
eaa3783b
RH
163 target_ureg iaoq_f; /* front */
164 target_ureg iaoq_b; /* back, aka next instruction */
61766fe9 165
eaa3783b 166 target_ureg ior; /* interrupt offset register */
61766fe9
RH
167
168 uint32_t fr0_shadow; /* flags, c, ca/cq, rm, d, enables */
169 float_status fp_status;
170
171 /* Those resources are used only in QEMU core */
172 CPU_COMMON
173};
174
175/**
176 * HPPACPU:
177 * @env: #CPUHPPAState
178 *
179 * An HPPA CPU.
180 */
181struct HPPACPU {
182 /*< private >*/
183 CPUState parent_obj;
184 /*< public >*/
185
186 CPUHPPAState env;
187};
188
189static inline HPPACPU *hppa_env_get_cpu(CPUHPPAState *env)
190{
191 return container_of(env, HPPACPU, env);
192}
193
194#define ENV_GET_CPU(e) CPU(hppa_env_get_cpu(e))
195#define ENV_OFFSET offsetof(HPPACPU, env)
196
197#include "exec/cpu-all.h"
198
199static inline int cpu_mmu_index(CPUHPPAState *env, bool ifetch)
200{
3d68ee7b
RH
201#ifdef CONFIG_USER_ONLY
202 return MMU_USER_IDX;
203#else
204 if (env->psw & (ifetch ? PSW_C : PSW_D)) {
205 return env->iaoq_f & 3;
206 }
207 return MMU_PHYS_IDX; /* mmu disabled */
208#endif
61766fe9
RH
209}
210
211void hppa_translate_init(void);
212
8fc24ad5 213#define cpu_init(cpu_model) cpu_generic_init(TYPE_HPPA_CPU, cpu_model)
61766fe9
RH
214
215void hppa_cpu_list(FILE *f, fprintf_function cpu_fprintf);
216
217static inline void cpu_get_tb_cpu_state(CPUHPPAState *env, target_ulong *pc,
218 target_ulong *cs_base,
219 uint32_t *pflags)
220{
221 *pc = env->iaoq_f;
222 *cs_base = env->iaoq_b;
3d68ee7b
RH
223 /* ??? E, T, H, L, B, P bits need to be here, when implemented. */
224 *pflags = (env->psw & (PSW_W | PSW_C | PSW_D))
225 | env->psw_n * PSW_N;
61766fe9
RH
226}
227
eaa3783b
RH
228target_ureg cpu_hppa_get_psw(CPUHPPAState *env);
229void cpu_hppa_put_psw(CPUHPPAState *env, target_ureg);
61766fe9
RH
230void cpu_hppa_loaded_fr0(CPUHPPAState *env);
231
232#define cpu_signal_handler cpu_hppa_signal_handler
233
234int cpu_hppa_signal_handler(int host_signum, void *pinfo, void *puc);
98670d47
LV
235int hppa_cpu_handle_mmu_fault(CPUState *cpu, vaddr address, int size,
236 int rw, int midx);
813dff13 237hwaddr hppa_cpu_get_phys_page_debug(CPUState *cs, vaddr addr);
61766fe9
RH
238int hppa_cpu_gdb_read_register(CPUState *cpu, uint8_t *buf, int reg);
239int hppa_cpu_gdb_write_register(CPUState *cpu, uint8_t *buf, int reg);
240void hppa_cpu_do_interrupt(CPUState *cpu);
241bool hppa_cpu_exec_interrupt(CPUState *cpu, int int_req);
242void hppa_cpu_dump_state(CPUState *cs, FILE *f, fprintf_function, int);
243
244#endif /* HPPA_CPU_H */
This page took 0.150168 seconds and 4 git commands to generate.