Statistics
| Branch: | Revision:

root / target-microblaze / cpu.h @ 4acb54ba

History | View | Annotate | Download (9.4 kB)

1
/*
2
 *  MicroBlaze virtual CPU header
3
 *
4
 *  Copyright (c) 2009 Edgar E. Iglesias
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
 * 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, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA  02110-1301 USA
19
 */
20
#ifndef CPU_MICROBLAZE_H
21
#define CPU_MICROBLAZE_H
22

    
23
#define TARGET_LONG_BITS 32
24

    
25
#define CPUState struct CPUMBState
26

    
27
#include "cpu-defs.h"
28
struct CPUMBState;
29
#if !defined(CONFIG_USER_ONLY)
30
#include "mmu.h"
31
#endif
32

    
33
#define TARGET_HAS_ICE 1
34

    
35
#define ELF_MACHINE        EM_XILINX_MICROBLAZE
36

    
37
#define EXCP_NMI        1
38
#define EXCP_MMU        2
39
#define EXCP_IRQ        3
40
#define EXCP_BREAK      4
41
#define EXCP_HW_BREAK   5
42

    
43
/* Register aliases. R0 - R15 */
44
#define R_SP     1
45
#define SR_PC    0
46
#define SR_MSR   1
47
#define SR_EAR   3
48
#define SR_ESR   5
49
#define SR_FSR   7
50
#define SR_BTR   0xb
51
#define SR_EDR   0xd
52

    
53
/* MSR flags.  */
54
#define MSR_BE  (1<<0) /* 0x001 */
55
#define MSR_IE  (1<<1) /* 0x002 */
56
#define MSR_C   (1<<2) /* 0x004 */
57
#define MSR_BIP (1<<3) /* 0x008 */
58
#define MSR_FSL (1<<4) /* 0x010 */
59
#define MSR_ICE (1<<5) /* 0x020 */
60
#define MSR_DZ  (1<<6) /* 0x040 */
61
#define MSR_DCE (1<<7) /* 0x080 */
62
#define MSR_EE  (1<<8) /* 0x100 */
63
#define MSR_EIP (1<<9) /* 0x200 */
64
#define MSR_CC  (1<<31)
65

    
66
/* Machine State Register (MSR) Fields */
67
#define MSR_UM (1<<11) /* User Mode */
68
#define MSR_UMS        (1<<12) /* User Mode Save */
69
#define MSR_VM (1<<13) /* Virtual Mode */
70
#define MSR_VMS        (1<<14) /* Virtual Mode Save */
71

    
72
#define MSR_KERNEL      MSR_EE|MSR_VM
73
//#define MSR_USER     MSR_KERNEL|MSR_UM|MSR_IE
74
#define MSR_KERNEL_VMS  MSR_EE|MSR_VMS
75
//#define MSR_USER_VMS MSR_KERNEL_VMS|MSR_UMS|MSR_IE
76

    
77
/* Exception State Register (ESR) Fields */
78
#define          ESR_DIZ       (1<<11) /* Zone Protection */
79
#define          ESR_S         (1<<10) /* Store instruction */
80

    
81

    
82

    
83
/* Version reg.  */
84
/* Basic PVR mask */
85
#define PVR0_PVR_FULL_MASK              0x80000000
86
#define PVR0_USE_BARREL_MASK            0x40000000
87
#define PVR0_USE_DIV_MASK               0x20000000
88
#define PVR0_USE_HW_MUL_MASK            0x10000000
89
#define PVR0_USE_FPU_MASK               0x08000000
90
#define PVR0_USE_EXC_MASK               0x04000000
91
#define PVR0_USE_ICACHE_MASK            0x02000000
92
#define PVR0_USE_DCACHE_MASK            0x01000000
93
#define PVR0_USE_MMU                    0x00800000      /* new */
94
#define PVR0_VERSION_MASK               0x0000FF00
95
#define PVR0_USER1_MASK                 0x000000FF
96

    
97
/* User 2 PVR mask */
98
#define PVR1_USER2_MASK                 0xFFFFFFFF
99

    
100
/* Configuration PVR masks */
101
#define PVR2_D_OPB_MASK                 0x80000000
102
#define PVR2_D_LMB_MASK                 0x40000000
103
#define PVR2_I_OPB_MASK                 0x20000000
104
#define PVR2_I_LMB_MASK                 0x10000000
105
#define PVR2_INTERRUPT_IS_EDGE_MASK     0x08000000
106
#define PVR2_EDGE_IS_POSITIVE_MASK      0x04000000
107
#define PVR2_D_PLB_MASK                 0x02000000      /* new */
108
#define PVR2_I_PLB_MASK                 0x01000000      /* new */
109
#define PVR2_INTERCONNECT               0x00800000      /* new */
110
#define PVR2_USE_EXTEND_FSL             0x00080000      /* new */
111
#define PVR2_USE_FSL_EXC                0x00040000      /* new */
112
#define PVR2_USE_MSR_INSTR              0x00020000
113
#define PVR2_USE_PCMP_INSTR             0x00010000
114
#define PVR2_AREA_OPTIMISED             0x00008000
115
#define PVR2_USE_BARREL_MASK            0x00004000
116
#define PVR2_USE_DIV_MASK               0x00002000
117
#define PVR2_USE_HW_MUL_MASK            0x00001000
118
#define PVR2_USE_FPU_MASK               0x00000800
119
#define PVR2_USE_MUL64_MASK             0x00000400
120
#define PVR2_USE_FPU2_MASK              0x00000200      /* new */
121
#define PVR2_USE_IPLBEXC                0x00000100
122
#define PVR2_USE_DPLBEXC                0x00000080
123
#define PVR2_OPCODE_0x0_ILL_MASK        0x00000040
124
#define PVR2_UNALIGNED_EXC_MASK         0x00000020
125
#define PVR2_ILL_OPCODE_EXC_MASK        0x00000010
126
#define PVR2_IOPB_BUS_EXC_MASK          0x00000008
127
#define PVR2_DOPB_BUS_EXC_MASK          0x00000004
128
#define PVR2_DIV_ZERO_EXC_MASK          0x00000002
129
#define PVR2_FPU_EXC_MASK               0x00000001
130

    
131
/* Debug and exception PVR masks */
132
#define PVR3_DEBUG_ENABLED_MASK         0x80000000
133
#define PVR3_NUMBER_OF_PC_BRK_MASK      0x1E000000
134
#define PVR3_NUMBER_OF_RD_ADDR_BRK_MASK 0x00380000
135
#define PVR3_NUMBER_OF_WR_ADDR_BRK_MASK 0x0000E000
136
#define PVR3_FSL_LINKS_MASK             0x00000380
137

    
138
/* ICache config PVR masks */
139
#define PVR4_USE_ICACHE_MASK            0x80000000
140
#define PVR4_ICACHE_ADDR_TAG_BITS_MASK  0x7C000000
141
#define PVR4_ICACHE_USE_FSL_MASK        0x02000000
142
#define PVR4_ICACHE_ALLOW_WR_MASK       0x01000000
143
#define PVR4_ICACHE_LINE_LEN_MASK       0x00E00000
144
#define PVR4_ICACHE_BYTE_SIZE_MASK      0x001F0000
145

    
146
/* DCache config PVR masks */
147
#define PVR5_USE_DCACHE_MASK            0x80000000
148
#define PVR5_DCACHE_ADDR_TAG_BITS_MASK  0x7C000000
149
#define PVR5_DCACHE_USE_FSL_MASK        0x02000000
150
#define PVR5_DCACHE_ALLOW_WR_MASK       0x01000000
151
#define PVR5_DCACHE_LINE_LEN_MASK       0x00E00000
152
#define PVR5_DCACHE_BYTE_SIZE_MASK      0x001F0000
153

    
154
/* ICache base address PVR mask */
155
#define PVR6_ICACHE_BASEADDR_MASK       0xFFFFFFFF
156

    
157
/* ICache high address PVR mask */
158
#define PVR7_ICACHE_HIGHADDR_MASK       0xFFFFFFFF
159

    
160
/* DCache base address PVR mask */
161
#define PVR8_DCACHE_BASEADDR_MASK       0xFFFFFFFF
162

    
163
/* DCache high address PVR mask */
164
#define PVR9_DCACHE_HIGHADDR_MASK       0xFFFFFFFF
165

    
166
/* Target family PVR mask */
167
#define PVR10_TARGET_FAMILY_MASK        0xFF000000
168

    
169
/* MMU descrtiption */
170
#define PVR11_USE_MMU                   0xC0000000
171
#define PVR11_MMU_ITLB_SIZE             0x38000000
172
#define PVR11_MMU_DTLB_SIZE             0x07000000
173
#define PVR11_MMU_TLB_ACCESS            0x00C00000
174
#define PVR11_MMU_ZONES                 0x003C0000
175
/* MSR Reset value PVR mask */
176
#define PVR11_MSR_RESET_VALUE_MASK      0x000007FF
177

    
178

    
179

    
180
/* CPU flags.  */
181

    
182
/* Condition codes.  */
183
#define CC_GE  5
184
#define CC_GT  4
185
#define CC_LE  3
186
#define CC_LT  2
187
#define CC_NE  1
188
#define CC_EQ  0
189

    
190
#define NB_MMU_MODES    3
191
typedef struct CPUMBState {
192
    uint32_t debug;
193
    uint32_t btaken;
194
    uint32_t btarget;
195
    uint32_t bimm;
196

    
197
    uint32_t imm;
198
    uint32_t regs[33];
199
    uint32_t sregs[24];
200

    
201
    /* Internal flags.  */
202
#define IMM_FLAG        4        
203
#define DRTI_FLAG        (1 << 16)
204
#define DRTE_FLAG        (1 << 17)
205
#define DRTB_FLAG        (1 << 18)
206
#define D_FLAG                (1 << 19)  /* Bit in ESR.  */
207
/* TB dependant CPUState.  */
208
#define IFLAGS_TB_MASK        (D_FLAG | IMM_FLAG | DRTI_FLAG | DRTE_FLAG | DRTB_FLAG)
209
    uint32_t iflags;
210

    
211
    struct {
212
        uint32_t regs[16];
213
    } pvr;
214

    
215
#if !defined(CONFIG_USER_ONLY)
216
    /* Unified MMU.  */
217
    struct microblaze_mmu mmu;
218
#endif
219

    
220
    CPU_COMMON
221
} CPUMBState;
222

    
223
CPUState *cpu_mb_init(const char *cpu_model);
224
int cpu_mb_exec(CPUState *s);
225
void cpu_mb_close(CPUState *s);
226
void do_interrupt(CPUState *env);
227
/* you can call this signal handler from your SIGBUS and SIGSEGV
228
   signal handlers to inform the virtual CPU of exceptions. non zero
229
   is returned if the signal was handled by the virtual CPU.  */
230
int cpu_mb_signal_handler(int host_signum, void *pinfo,
231
                          void *puc);
232

    
233
enum {
234
    CC_OP_DYNAMIC, /* Use env->cc_op  */
235
    CC_OP_FLAGS,
236
    CC_OP_CMP,
237
};
238

    
239
/* FIXME: MB uses variable pages down to 1K but linux only uses 4k.  */
240
#define TARGET_PAGE_BITS 12
241
#define MMAP_SHIFT TARGET_PAGE_BITS
242

    
243
#define cpu_init cpu_mb_init
244
#define cpu_exec cpu_mb_exec
245
#define cpu_gen_code cpu_mb_gen_code
246
#define cpu_signal_handler cpu_mb_signal_handler
247

    
248
#define CPU_SAVE_VERSION 1
249

    
250
/* MMU modes definitions */
251
#define MMU_MODE0_SUFFIX _nommu
252
#define MMU_MODE1_SUFFIX _kernel
253
#define MMU_MODE2_SUFFIX _user
254
#define MMU_NOMMU_IDX   0
255
#define MMU_KERNEL_IDX  1
256
#define MMU_USER_IDX    2
257
/* See NB_MMU_MODES further up the file.  */
258

    
259
static inline int cpu_mmu_index (CPUState *env)
260
{
261
        /* Are we in nommu mode?.  */
262
        if (!(env->sregs[SR_MSR] & MSR_VM))
263
            return MMU_NOMMU_IDX;
264

    
265
        if (env->sregs[SR_MSR] & MSR_UM)
266
            return MMU_USER_IDX;
267
        return MMU_KERNEL_IDX;
268
}
269

    
270
int cpu_mb_handle_mmu_fault(CPUState *env, target_ulong address, int rw,
271
                            int mmu_idx, int is_softmmu);
272

    
273
#if defined(CONFIG_USER_ONLY)
274
static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
275
{
276
    if (newsp)
277
        env->regs[R_SP] = newsp;
278
    env->regs[3] = 0;
279
}
280
#endif
281

    
282
static inline void cpu_set_tls(CPUState *env, target_ulong newtls)
283
{
284
}
285

    
286
static inline int cpu_interrupts_enabled(CPUState *env)
287
{
288
    return env->sregs[SR_MSR] & MSR_IE;
289
}
290

    
291
#include "cpu-all.h"
292
#include "exec-all.h"
293

    
294
static inline void cpu_pc_from_tb(CPUState *env, TranslationBlock *tb)
295
{
296
    env->sregs[SR_PC] = tb->pc;
297
}
298

    
299
static inline target_ulong cpu_get_pc(CPUState *env)
300
{
301
    return env->sregs[SR_PC];
302
}
303

    
304
static inline void cpu_get_tb_cpu_state(CPUState *env, target_ulong *pc,
305
                                        target_ulong *cs_base, int *flags)
306
{
307
    *pc = env->sregs[SR_PC];
308
    *cs_base = 0;
309
    *flags = env->iflags & IFLAGS_TB_MASK;
310
}
311
#endif