4 * Copyright (c) 2007 AXIS Communications
5 * Written by Edgar E. Iglesias
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #if !defined(CONFIG_USER_ONLY)
31 #define MMUSUFFIX _mmu
34 #include "softmmu_template.h"
37 #include "softmmu_template.h"
40 #include "softmmu_template.h"
43 #include "softmmu_template.h"
45 /* Try to fill the TLB and return an exception if error. If retaddr is
46 NULL, it means that the function was called in C code (i.e. not
47 from generated code or from helper.c) */
48 /* XXX: fix it to restore all registers */
49 void tlb_fill (target_ulong addr
, int is_write
, int mmu_idx
, void *retaddr
)
56 /* XXX: hack to restore env in all cases, even if not called from
61 D(fprintf(logfile
, "%s pc=%x tpc=%x ra=%x\n", __func__
,
62 env
->pc
, env
->debug1
, retaddr
));
63 ret
= cpu_cris_handle_mmu_fault(env
, addr
, is_write
, mmu_idx
, 1);
66 /* now we have a real cpu fault */
67 pc
= (unsigned long)retaddr
;
70 /* the PC is inside the translated code. It means that we have
71 a virtual CPU fault */
72 cpu_restore_state(tb
, env
, pc
, NULL
);
74 /* Evaluate flags after retranslation. */
75 helper_top_evaluate_flags();
85 void helper_raise_exception(uint32_t index
)
87 env
->exception_index
= index
;
91 void helper_tlb_flush_pid(uint32_t pid
)
93 #if !defined(CONFIG_USER_ONLY)
95 if (pid
!= (env
->pregs
[PR_PID
] & 0xff))
96 cris_mmu_flush_pid(env
, env
->pregs
[PR_PID
]);
100 void helper_spc_write(uint32_t new_spc
)
102 #if !defined(CONFIG_USER_ONLY)
103 tlb_flush_page(env
, env
->pregs
[PR_SPC
]);
104 tlb_flush_page(env
, new_spc
);
108 void helper_dump(uint32_t a0
, uint32_t a1
, uint32_t a2
)
110 (fprintf(logfile
, "%s: a0=%x a1=%x\n", __func__
, a0
, a1
));
113 /* Used by the tlb decoder. */
114 #define EXTRACT_FIELD(src, start, end) \
115 (((src) >> start) & ((1 << (end - start + 1)) - 1))
117 void helper_movl_sreg_reg (uint32_t sreg
, uint32_t reg
)
120 srs
= env
->pregs
[PR_SRS
];
122 env
->sregs
[srs
][sreg
] = env
->regs
[reg
];
124 #if !defined(CONFIG_USER_ONLY)
125 if (srs
== 1 || srs
== 2) {
127 /* Writes to tlb-hi write to mm_cause as a side
129 env
->sregs
[SFR_RW_MM_TLB_HI
] = env
->regs
[reg
];
130 env
->sregs
[SFR_R_MM_CAUSE
] = env
->regs
[reg
];
132 else if (sreg
== 5) {
139 idx
= set
= env
->sregs
[SFR_RW_MM_TLB_SEL
];
144 /* We've just made a write to tlb_lo. */
145 lo
= env
->sregs
[SFR_RW_MM_TLB_LO
];
146 /* Writes are done via r_mm_cause. */
147 hi
= env
->sregs
[SFR_R_MM_CAUSE
];
149 vaddr
= EXTRACT_FIELD(env
->tlbsets
[srs
-1][set
][idx
].hi
,
151 vaddr
<<= TARGET_PAGE_BITS
;
152 tlb_v
= EXTRACT_FIELD(env
->tlbsets
[srs
-1][set
][idx
].lo
,
154 env
->tlbsets
[srs
- 1][set
][idx
].lo
= lo
;
155 env
->tlbsets
[srs
- 1][set
][idx
].hi
= hi
;
158 "tlb flush vaddr=%x v=%d pc=%x\n",
159 vaddr
, tlb_v
, env
->pc
));
160 tlb_flush_page(env
, vaddr
);
166 void helper_movl_reg_sreg (uint32_t reg
, uint32_t sreg
)
169 env
->pregs
[PR_SRS
] &= 3;
170 srs
= env
->pregs
[PR_SRS
];
172 #if !defined(CONFIG_USER_ONLY)
173 if (srs
== 1 || srs
== 2)
179 idx
= set
= env
->sregs
[SFR_RW_MM_TLB_SEL
];
184 /* Update the mirror regs. */
185 hi
= env
->tlbsets
[srs
- 1][set
][idx
].hi
;
186 lo
= env
->tlbsets
[srs
- 1][set
][idx
].lo
;
187 env
->sregs
[SFR_RW_MM_TLB_HI
] = hi
;
188 env
->sregs
[SFR_RW_MM_TLB_LO
] = lo
;
191 env
->regs
[reg
] = env
->sregs
[srs
][sreg
];
194 static void cris_ccs_rshift(CPUState
*env
)
198 /* Apply the ccs shift. */
199 ccs
= env
->pregs
[PR_CCS
];
200 ccs
= (ccs
& 0xc0000000) | ((ccs
& 0x0fffffff) >> 10);
203 /* Enter user mode. */
204 env
->ksp
= env
->regs
[R_SP
];
205 env
->regs
[R_SP
] = env
->pregs
[PR_USP
];
208 env
->pregs
[PR_CCS
] = ccs
;
211 void helper_rfe(void)
213 int rflag
= env
->pregs
[PR_CCS
] & R_FLAG
;
215 D(fprintf(logfile
, "rfe: erp=%x pid=%x ccs=%x btarget=%x\n",
216 env
->pregs
[PR_ERP
], env
->pregs
[PR_PID
],
220 cris_ccs_rshift(env
);
222 /* RFE sets the P_FLAG only if the R_FLAG is not set. */
224 env
->pregs
[PR_CCS
] |= P_FLAG
;
227 void helper_rfn(void)
229 int rflag
= env
->pregs
[PR_CCS
] & R_FLAG
;
231 D(fprintf(logfile
, "rfn: erp=%x pid=%x ccs=%x btarget=%x\n",
232 env
->pregs
[PR_ERP
], env
->pregs
[PR_PID
],
236 cris_ccs_rshift(env
);
238 /* Set the P_FLAG only if the R_FLAG is not set. */
240 env
->pregs
[PR_CCS
] |= P_FLAG
;
242 /* Always set the M flag. */
243 env
->pregs
[PR_CCS
] |= M_FLAG
;
246 void do_unassigned_access(target_phys_addr_t addr
, int is_write
, int is_exec
,
247 int is_asi
, int size
)
249 D(printf("%s addr=%x w=%d ex=%d asi=%d, size=%d\n",
250 __func__
, addr
, is_write
, is_exec
, is_asi
, size
));
253 static void evaluate_flags_writeback(uint32_t flags
)
257 /* Extended arithmetics, leave the z flag alone. */
259 if ((x
|| env
->cc_op
== CC_OP_ADDC
)
261 env
->cc_mask
&= ~Z_FLAG
;
263 /* all insn clear the x-flag except setf or clrf. */
264 env
->pregs
[PR_CCS
] &= ~(env
->cc_mask
| X_FLAG
);
265 flags
&= env
->cc_mask
;
266 env
->pregs
[PR_CCS
] |= flags
;
269 void helper_evaluate_flags_muls(void)
281 res
= env
->cc_result
;
283 dneg
= ((int32_t)res
) < 0;
285 mof
= env
->pregs
[PR_MOF
];
293 if ((dneg
&& mof
!= -1)
294 || (!dneg
&& mof
!= 0))
296 evaluate_flags_writeback(flags
);
299 void helper_evaluate_flags_mulu(void)
310 res
= env
->cc_result
;
312 mof
= env
->pregs
[PR_MOF
];
323 evaluate_flags_writeback(flags
);
326 void helper_evaluate_flags_mcp(void)
335 res
= env
->cc_result
;
337 if ((res
& 0x80000000L
) != 0L)
340 if (((src
& 0x80000000L
) == 0L)
341 && ((dst
& 0x80000000L
) == 0L))
345 else if (((src
& 0x80000000L
) != 0L) &&
346 ((dst
& 0x80000000L
) != 0L))
355 if (((src
& 0x80000000L
) != 0L)
356 && ((dst
& 0x80000000L
) != 0L))
358 if ((dst
& 0x80000000L
) != 0L
359 || (src
& 0x80000000L
) != 0L)
363 evaluate_flags_writeback(flags
);
366 void helper_evaluate_flags_alu_4(void)
376 /* Reconstruct the result. */
386 res
= env
->cc_result
;
390 if (env
->cc_op
== CC_OP_SUB
|| env
->cc_op
== CC_OP_CMP
)
393 if ((res
& 0x80000000L
) != 0L)
396 if (((src
& 0x80000000L
) == 0L)
397 && ((dst
& 0x80000000L
) == 0L))
401 else if (((src
& 0x80000000L
) != 0L) &&
402 ((dst
& 0x80000000L
) != 0L))
411 if (((src
& 0x80000000L
) != 0L)
412 && ((dst
& 0x80000000L
) != 0L))
414 if ((dst
& 0x80000000L
) != 0L
415 || (src
& 0x80000000L
) != 0L)
419 if (env
->cc_op
== CC_OP_SUB
420 || env
->cc_op
== CC_OP_CMP
) {
423 evaluate_flags_writeback(flags
);
426 void helper_evaluate_flags_move_4 (void)
431 res
= env
->cc_result
;
433 if ((int32_t)res
< 0)
438 evaluate_flags_writeback(flags
);
440 void helper_evaluate_flags_move_2 (void)
447 res
= env
->cc_result
;
449 if ((int16_t)res
< 0L)
454 evaluate_flags_writeback(flags
);
457 /* TODO: This is expensive. We could split things up and only evaluate part of
458 CCR on a need to know basis. For now, we simply re-evaluate everything. */
459 void helper_evaluate_flags (void)
468 res
= env
->cc_result
;
470 if (env
->cc_op
== CC_OP_SUB
|| env
->cc_op
== CC_OP_CMP
)
473 /* Now, evaluate the flags. This stuff is based on
474 Per Zander's CRISv10 simulator. */
475 switch (env
->cc_size
)
478 if ((res
& 0x80L
) != 0L)
481 if (((src
& 0x80L
) == 0L)
482 && ((dst
& 0x80L
) == 0L))
486 else if (((src
& 0x80L
) != 0L)
487 && ((dst
& 0x80L
) != 0L))
494 if ((res
& 0xFFL
) == 0L)
498 if (((src
& 0x80L
) != 0L)
499 && ((dst
& 0x80L
) != 0L))
503 if ((dst
& 0x80L
) != 0L
504 || (src
& 0x80L
) != 0L)
511 if ((res
& 0x8000L
) != 0L)
514 if (((src
& 0x8000L
) == 0L)
515 && ((dst
& 0x8000L
) == 0L))
519 else if (((src
& 0x8000L
) != 0L)
520 && ((dst
& 0x8000L
) != 0L))
527 if ((res
& 0xFFFFL
) == 0L)
531 if (((src
& 0x8000L
) != 0L)
532 && ((dst
& 0x8000L
) != 0L))
536 if ((dst
& 0x8000L
) != 0L
537 || (src
& 0x8000L
) != 0L)
544 if ((res
& 0x80000000L
) != 0L)
547 if (((src
& 0x80000000L
) == 0L)
548 && ((dst
& 0x80000000L
) == 0L))
552 else if (((src
& 0x80000000L
) != 0L) &&
553 ((dst
& 0x80000000L
) != 0L))
562 if (((src
& 0x80000000L
) != 0L)
563 && ((dst
& 0x80000000L
) != 0L))
565 if ((dst
& 0x80000000L
) != 0L
566 || (src
& 0x80000000L
) != 0L)
574 if (env
->cc_op
== CC_OP_SUB
575 || env
->cc_op
== CC_OP_CMP
) {
578 evaluate_flags_writeback(flags
);
581 void helper_top_evaluate_flags(void)
586 helper_evaluate_flags_mcp();
589 helper_evaluate_flags_muls();
592 helper_evaluate_flags_mulu();
601 switch (env
->cc_size
)
604 helper_evaluate_flags_move_4();
607 helper_evaluate_flags_move_2();
610 helper_evaluate_flags();
619 switch (env
->cc_size
)
622 helper_evaluate_flags_alu_4();
625 helper_evaluate_flags();