Merge commit 'b834b5081d6266cc0789454905f3b7d622d4d096' into upstream-merge
[qemu-kvm.git] / target-xtensa / op_helper.c
blob2659c0e00f7b97851655059bf9caaeb9587f22da
1 /*
2 * Copyright (c) 2011, Max Filippov, Open Source and Linux Lab.
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * * Neither the name of the Open Source and Linux Lab nor the
13 * names of its contributors may be used to endorse or promote products
14 * derived from this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 #include "cpu.h"
29 #include "helper.h"
30 #include "host-utils.h"
32 static void do_unaligned_access(CPUXtensaState *env,
33 target_ulong addr, int is_write, int is_user, uintptr_t retaddr);
35 #define ALIGNED_ONLY
36 #define MMUSUFFIX _mmu
38 #define SHIFT 0
39 #include "softmmu_template.h"
41 #define SHIFT 1
42 #include "softmmu_template.h"
44 #define SHIFT 2
45 #include "softmmu_template.h"
47 #define SHIFT 3
48 #include "softmmu_template.h"
50 static void do_restore_state(CPUXtensaState *env, uintptr_t pc)
52 TranslationBlock *tb;
54 tb = tb_find_pc(pc);
55 if (tb) {
56 cpu_restore_state(tb, env, pc);
60 static void do_unaligned_access(CPUXtensaState *env,
61 target_ulong addr, int is_write, int is_user, uintptr_t retaddr)
63 if (xtensa_option_enabled(env->config, XTENSA_OPTION_UNALIGNED_EXCEPTION) &&
64 !xtensa_option_enabled(env->config, XTENSA_OPTION_HW_ALIGNMENT)) {
65 do_restore_state(env, retaddr);
66 HELPER(exception_cause_vaddr)(env,
67 env->pc, LOAD_STORE_ALIGNMENT_CAUSE, addr);
71 void tlb_fill(CPUXtensaState *env,
72 target_ulong vaddr, int is_write, int mmu_idx, uintptr_t retaddr)
74 uint32_t paddr;
75 uint32_t page_size;
76 unsigned access;
77 int ret = xtensa_get_physical_addr(env, true, vaddr, is_write, mmu_idx,
78 &paddr, &page_size, &access);
80 qemu_log("%s(%08x, %d, %d) -> %08x, ret = %d\n", __func__,
81 vaddr, is_write, mmu_idx, paddr, ret);
83 if (ret == 0) {
84 tlb_set_page(env,
85 vaddr & TARGET_PAGE_MASK,
86 paddr & TARGET_PAGE_MASK,
87 access, mmu_idx, page_size);
88 } else {
89 do_restore_state(env, retaddr);
90 HELPER(exception_cause_vaddr)(env, env->pc, ret, vaddr);
94 static void tb_invalidate_virtual_addr(CPUXtensaState *env, uint32_t vaddr)
96 uint32_t paddr;
97 uint32_t page_size;
98 unsigned access;
99 int ret = xtensa_get_physical_addr(env, false, vaddr, 2, 0,
100 &paddr, &page_size, &access);
101 if (ret == 0) {
102 tb_invalidate_phys_addr(paddr);
106 void HELPER(exception)(CPUXtensaState *env, uint32_t excp)
108 env->exception_index = excp;
109 cpu_loop_exit(env);
112 void HELPER(exception_cause)(CPUXtensaState *env, uint32_t pc, uint32_t cause)
114 uint32_t vector;
116 env->pc = pc;
117 if (env->sregs[PS] & PS_EXCM) {
118 if (env->config->ndepc) {
119 env->sregs[DEPC] = pc;
120 } else {
121 env->sregs[EPC1] = pc;
123 vector = EXC_DOUBLE;
124 } else {
125 env->sregs[EPC1] = pc;
126 vector = (env->sregs[PS] & PS_UM) ? EXC_USER : EXC_KERNEL;
129 env->sregs[EXCCAUSE] = cause;
130 env->sregs[PS] |= PS_EXCM;
132 HELPER(exception)(env, vector);
135 void HELPER(exception_cause_vaddr)(CPUXtensaState *env,
136 uint32_t pc, uint32_t cause, uint32_t vaddr)
138 env->sregs[EXCVADDR] = vaddr;
139 HELPER(exception_cause)(env, pc, cause);
142 void debug_exception_env(CPUXtensaState *env, uint32_t cause)
144 if (xtensa_get_cintlevel(env) < env->config->debug_level) {
145 HELPER(debug_exception)(env, env->pc, cause);
149 void HELPER(debug_exception)(CPUXtensaState *env, uint32_t pc, uint32_t cause)
151 unsigned level = env->config->debug_level;
153 env->pc = pc;
154 env->sregs[DEBUGCAUSE] = cause;
155 env->sregs[EPC1 + level - 1] = pc;
156 env->sregs[EPS2 + level - 2] = env->sregs[PS];
157 env->sregs[PS] = (env->sregs[PS] & ~PS_INTLEVEL) | PS_EXCM |
158 (level << PS_INTLEVEL_SHIFT);
159 HELPER(exception)(env, EXC_DEBUG);
162 uint32_t HELPER(nsa)(uint32_t v)
164 if (v & 0x80000000) {
165 v = ~v;
167 return v ? clz32(v) - 1 : 31;
170 uint32_t HELPER(nsau)(uint32_t v)
172 return v ? clz32(v) : 32;
175 static void copy_window_from_phys(CPUXtensaState *env,
176 uint32_t window, uint32_t phys, uint32_t n)
178 assert(phys < env->config->nareg);
179 if (phys + n <= env->config->nareg) {
180 memcpy(env->regs + window, env->phys_regs + phys,
181 n * sizeof(uint32_t));
182 } else {
183 uint32_t n1 = env->config->nareg - phys;
184 memcpy(env->regs + window, env->phys_regs + phys,
185 n1 * sizeof(uint32_t));
186 memcpy(env->regs + window + n1, env->phys_regs,
187 (n - n1) * sizeof(uint32_t));
191 static void copy_phys_from_window(CPUXtensaState *env,
192 uint32_t phys, uint32_t window, uint32_t n)
194 assert(phys < env->config->nareg);
195 if (phys + n <= env->config->nareg) {
196 memcpy(env->phys_regs + phys, env->regs + window,
197 n * sizeof(uint32_t));
198 } else {
199 uint32_t n1 = env->config->nareg - phys;
200 memcpy(env->phys_regs + phys, env->regs + window,
201 n1 * sizeof(uint32_t));
202 memcpy(env->phys_regs, env->regs + window + n1,
203 (n - n1) * sizeof(uint32_t));
208 static inline unsigned windowbase_bound(unsigned a, const CPUXtensaState *env)
210 return a & (env->config->nareg / 4 - 1);
213 static inline unsigned windowstart_bit(unsigned a, const CPUXtensaState *env)
215 return 1 << windowbase_bound(a, env);
218 void xtensa_sync_window_from_phys(CPUXtensaState *env)
220 copy_window_from_phys(env, 0, env->sregs[WINDOW_BASE] * 4, 16);
223 void xtensa_sync_phys_from_window(CPUXtensaState *env)
225 copy_phys_from_window(env, env->sregs[WINDOW_BASE] * 4, 0, 16);
228 static void rotate_window_abs(CPUXtensaState *env, uint32_t position)
230 xtensa_sync_phys_from_window(env);
231 env->sregs[WINDOW_BASE] = windowbase_bound(position, env);
232 xtensa_sync_window_from_phys(env);
235 static void rotate_window(CPUXtensaState *env, uint32_t delta)
237 rotate_window_abs(env, env->sregs[WINDOW_BASE] + delta);
240 void HELPER(wsr_windowbase)(CPUXtensaState *env, uint32_t v)
242 rotate_window_abs(env, v);
245 void HELPER(entry)(CPUXtensaState *env, uint32_t pc, uint32_t s, uint32_t imm)
247 int callinc = (env->sregs[PS] & PS_CALLINC) >> PS_CALLINC_SHIFT;
248 if (s > 3 || ((env->sregs[PS] & (PS_WOE | PS_EXCM)) ^ PS_WOE) != 0) {
249 qemu_log("Illegal entry instruction(pc = %08x), PS = %08x\n",
250 pc, env->sregs[PS]);
251 HELPER(exception_cause)(env, pc, ILLEGAL_INSTRUCTION_CAUSE);
252 } else {
253 env->regs[(callinc << 2) | (s & 3)] = env->regs[s] - (imm << 3);
254 rotate_window(env, callinc);
255 env->sregs[WINDOW_START] |=
256 windowstart_bit(env->sregs[WINDOW_BASE], env);
260 void HELPER(window_check)(CPUXtensaState *env, uint32_t pc, uint32_t w)
262 uint32_t windowbase = windowbase_bound(env->sregs[WINDOW_BASE], env);
263 uint32_t windowstart = env->sregs[WINDOW_START];
264 uint32_t m, n;
266 if ((env->sregs[PS] & (PS_WOE | PS_EXCM)) ^ PS_WOE) {
267 return;
270 for (n = 1; ; ++n) {
271 if (n > w) {
272 return;
274 if (windowstart & windowstart_bit(windowbase + n, env)) {
275 break;
279 m = windowbase_bound(windowbase + n, env);
280 rotate_window(env, n);
281 env->sregs[PS] = (env->sregs[PS] & ~PS_OWB) |
282 (windowbase << PS_OWB_SHIFT) | PS_EXCM;
283 env->sregs[EPC1] = env->pc = pc;
285 if (windowstart & windowstart_bit(m + 1, env)) {
286 HELPER(exception)(env, EXC_WINDOW_OVERFLOW4);
287 } else if (windowstart & windowstart_bit(m + 2, env)) {
288 HELPER(exception)(env, EXC_WINDOW_OVERFLOW8);
289 } else {
290 HELPER(exception)(env, EXC_WINDOW_OVERFLOW12);
294 uint32_t HELPER(retw)(CPUXtensaState *env, uint32_t pc)
296 int n = (env->regs[0] >> 30) & 0x3;
297 int m = 0;
298 uint32_t windowbase = windowbase_bound(env->sregs[WINDOW_BASE], env);
299 uint32_t windowstart = env->sregs[WINDOW_START];
300 uint32_t ret_pc = 0;
302 if (windowstart & windowstart_bit(windowbase - 1, env)) {
303 m = 1;
304 } else if (windowstart & windowstart_bit(windowbase - 2, env)) {
305 m = 2;
306 } else if (windowstart & windowstart_bit(windowbase - 3, env)) {
307 m = 3;
310 if (n == 0 || (m != 0 && m != n) ||
311 ((env->sregs[PS] & (PS_WOE | PS_EXCM)) ^ PS_WOE) != 0) {
312 qemu_log("Illegal retw instruction(pc = %08x), "
313 "PS = %08x, m = %d, n = %d\n",
314 pc, env->sregs[PS], m, n);
315 HELPER(exception_cause)(env, pc, ILLEGAL_INSTRUCTION_CAUSE);
316 } else {
317 int owb = windowbase;
319 ret_pc = (pc & 0xc0000000) | (env->regs[0] & 0x3fffffff);
321 rotate_window(env, -n);
322 if (windowstart & windowstart_bit(env->sregs[WINDOW_BASE], env)) {
323 env->sregs[WINDOW_START] &= ~windowstart_bit(owb, env);
324 } else {
325 /* window underflow */
326 env->sregs[PS] = (env->sregs[PS] & ~PS_OWB) |
327 (windowbase << PS_OWB_SHIFT) | PS_EXCM;
328 env->sregs[EPC1] = env->pc = pc;
330 if (n == 1) {
331 HELPER(exception)(env, EXC_WINDOW_UNDERFLOW4);
332 } else if (n == 2) {
333 HELPER(exception)(env, EXC_WINDOW_UNDERFLOW8);
334 } else if (n == 3) {
335 HELPER(exception)(env, EXC_WINDOW_UNDERFLOW12);
339 return ret_pc;
342 void HELPER(rotw)(CPUXtensaState *env, uint32_t imm4)
344 rotate_window(env, imm4);
347 void HELPER(restore_owb)(CPUXtensaState *env)
349 rotate_window_abs(env, (env->sregs[PS] & PS_OWB) >> PS_OWB_SHIFT);
352 void HELPER(movsp)(CPUXtensaState *env, uint32_t pc)
354 if ((env->sregs[WINDOW_START] &
355 (windowstart_bit(env->sregs[WINDOW_BASE] - 3, env) |
356 windowstart_bit(env->sregs[WINDOW_BASE] - 2, env) |
357 windowstart_bit(env->sregs[WINDOW_BASE] - 1, env))) == 0) {
358 HELPER(exception_cause)(env, pc, ALLOCA_CAUSE);
362 void HELPER(wsr_lbeg)(CPUXtensaState *env, uint32_t v)
364 if (env->sregs[LBEG] != v) {
365 tb_invalidate_virtual_addr(env, env->sregs[LEND] - 1);
366 env->sregs[LBEG] = v;
370 void HELPER(wsr_lend)(CPUXtensaState *env, uint32_t v)
372 if (env->sregs[LEND] != v) {
373 tb_invalidate_virtual_addr(env, env->sregs[LEND] - 1);
374 env->sregs[LEND] = v;
375 tb_invalidate_virtual_addr(env, env->sregs[LEND] - 1);
379 void HELPER(dump_state)(CPUXtensaState *env)
381 cpu_dump_state(env, stderr, fprintf, 0);
384 void HELPER(waiti)(CPUXtensaState *env, uint32_t pc, uint32_t intlevel)
386 env->pc = pc;
387 env->sregs[PS] = (env->sregs[PS] & ~PS_INTLEVEL) |
388 (intlevel << PS_INTLEVEL_SHIFT);
389 check_interrupts(env);
390 if (env->pending_irq_level) {
391 cpu_loop_exit(env);
392 return;
395 env->halt_clock = qemu_get_clock_ns(vm_clock);
396 env->halted = 1;
397 if (xtensa_option_enabled(env->config, XTENSA_OPTION_TIMER_INTERRUPT)) {
398 xtensa_rearm_ccompare_timer(env);
400 HELPER(exception)(env, EXCP_HLT);
403 void HELPER(timer_irq)(CPUXtensaState *env, uint32_t id, uint32_t active)
405 xtensa_timer_irq(env, id, active);
408 void HELPER(advance_ccount)(CPUXtensaState *env, uint32_t d)
410 xtensa_advance_ccount(env, d);
413 void HELPER(check_interrupts)(CPUXtensaState *env)
415 check_interrupts(env);
418 void HELPER(wsr_rasid)(CPUXtensaState *env, uint32_t v)
420 v = (v & 0xffffff00) | 0x1;
421 if (v != env->sregs[RASID]) {
422 env->sregs[RASID] = v;
423 tlb_flush(env, 1);
427 static uint32_t get_page_size(const CPUXtensaState *env, bool dtlb, uint32_t way)
429 uint32_t tlbcfg = env->sregs[dtlb ? DTLBCFG : ITLBCFG];
431 switch (way) {
432 case 4:
433 return (tlbcfg >> 16) & 0x3;
435 case 5:
436 return (tlbcfg >> 20) & 0x1;
438 case 6:
439 return (tlbcfg >> 24) & 0x1;
441 default:
442 return 0;
447 * Get bit mask for the virtual address bits translated by the TLB way
449 uint32_t xtensa_tlb_get_addr_mask(const CPUXtensaState *env, bool dtlb, uint32_t way)
451 if (xtensa_option_enabled(env->config, XTENSA_OPTION_MMU)) {
452 bool varway56 = dtlb ?
453 env->config->dtlb.varway56 :
454 env->config->itlb.varway56;
456 switch (way) {
457 case 4:
458 return 0xfff00000 << get_page_size(env, dtlb, way) * 2;
460 case 5:
461 if (varway56) {
462 return 0xf8000000 << get_page_size(env, dtlb, way);
463 } else {
464 return 0xf8000000;
467 case 6:
468 if (varway56) {
469 return 0xf0000000 << (1 - get_page_size(env, dtlb, way));
470 } else {
471 return 0xf0000000;
474 default:
475 return 0xfffff000;
477 } else {
478 return REGION_PAGE_MASK;
483 * Get bit mask for the 'VPN without index' field.
484 * See ISA, 4.6.5.6, data format for RxTLB0
486 static uint32_t get_vpn_mask(const CPUXtensaState *env, bool dtlb, uint32_t way)
488 if (way < 4) {
489 bool is32 = (dtlb ?
490 env->config->dtlb.nrefillentries :
491 env->config->itlb.nrefillentries) == 32;
492 return is32 ? 0xffff8000 : 0xffffc000;
493 } else if (way == 4) {
494 return xtensa_tlb_get_addr_mask(env, dtlb, way) << 2;
495 } else if (way <= 6) {
496 uint32_t mask = xtensa_tlb_get_addr_mask(env, dtlb, way);
497 bool varway56 = dtlb ?
498 env->config->dtlb.varway56 :
499 env->config->itlb.varway56;
501 if (varway56) {
502 return mask << (way == 5 ? 2 : 3);
503 } else {
504 return mask << 1;
506 } else {
507 return 0xfffff000;
512 * Split virtual address into VPN (with index) and entry index
513 * for the given TLB way
515 void split_tlb_entry_spec_way(const CPUXtensaState *env, uint32_t v, bool dtlb,
516 uint32_t *vpn, uint32_t wi, uint32_t *ei)
518 bool varway56 = dtlb ?
519 env->config->dtlb.varway56 :
520 env->config->itlb.varway56;
522 if (!dtlb) {
523 wi &= 7;
526 if (wi < 4) {
527 bool is32 = (dtlb ?
528 env->config->dtlb.nrefillentries :
529 env->config->itlb.nrefillentries) == 32;
530 *ei = (v >> 12) & (is32 ? 0x7 : 0x3);
531 } else {
532 switch (wi) {
533 case 4:
535 uint32_t eibase = 20 + get_page_size(env, dtlb, wi) * 2;
536 *ei = (v >> eibase) & 0x3;
538 break;
540 case 5:
541 if (varway56) {
542 uint32_t eibase = 27 + get_page_size(env, dtlb, wi);
543 *ei = (v >> eibase) & 0x3;
544 } else {
545 *ei = (v >> 27) & 0x1;
547 break;
549 case 6:
550 if (varway56) {
551 uint32_t eibase = 29 - get_page_size(env, dtlb, wi);
552 *ei = (v >> eibase) & 0x7;
553 } else {
554 *ei = (v >> 28) & 0x1;
556 break;
558 default:
559 *ei = 0;
560 break;
563 *vpn = v & xtensa_tlb_get_addr_mask(env, dtlb, wi);
567 * Split TLB address into TLB way, entry index and VPN (with index).
568 * See ISA, 4.6.5.5 - 4.6.5.8 for the TLB addressing format
570 static void split_tlb_entry_spec(CPUXtensaState *env, uint32_t v, bool dtlb,
571 uint32_t *vpn, uint32_t *wi, uint32_t *ei)
573 if (xtensa_option_enabled(env->config, XTENSA_OPTION_MMU)) {
574 *wi = v & (dtlb ? 0xf : 0x7);
575 split_tlb_entry_spec_way(env, v, dtlb, vpn, *wi, ei);
576 } else {
577 *vpn = v & REGION_PAGE_MASK;
578 *wi = 0;
579 *ei = (v >> 29) & 0x7;
583 static xtensa_tlb_entry *get_tlb_entry(CPUXtensaState *env,
584 uint32_t v, bool dtlb, uint32_t *pwi)
586 uint32_t vpn;
587 uint32_t wi;
588 uint32_t ei;
590 split_tlb_entry_spec(env, v, dtlb, &vpn, &wi, &ei);
591 if (pwi) {
592 *pwi = wi;
594 return xtensa_tlb_get_entry(env, dtlb, wi, ei);
597 uint32_t HELPER(rtlb0)(CPUXtensaState *env, uint32_t v, uint32_t dtlb)
599 if (xtensa_option_enabled(env->config, XTENSA_OPTION_MMU)) {
600 uint32_t wi;
601 const xtensa_tlb_entry *entry = get_tlb_entry(env, v, dtlb, &wi);
602 return (entry->vaddr & get_vpn_mask(env, dtlb, wi)) | entry->asid;
603 } else {
604 return v & REGION_PAGE_MASK;
608 uint32_t HELPER(rtlb1)(CPUXtensaState *env, uint32_t v, uint32_t dtlb)
610 const xtensa_tlb_entry *entry = get_tlb_entry(env, v, dtlb, NULL);
611 return entry->paddr | entry->attr;
614 void HELPER(itlb)(CPUXtensaState *env, uint32_t v, uint32_t dtlb)
616 if (xtensa_option_enabled(env->config, XTENSA_OPTION_MMU)) {
617 uint32_t wi;
618 xtensa_tlb_entry *entry = get_tlb_entry(env, v, dtlb, &wi);
619 if (entry->variable && entry->asid) {
620 tlb_flush_page(env, entry->vaddr);
621 entry->asid = 0;
626 uint32_t HELPER(ptlb)(CPUXtensaState *env, uint32_t v, uint32_t dtlb)
628 if (xtensa_option_enabled(env->config, XTENSA_OPTION_MMU)) {
629 uint32_t wi;
630 uint32_t ei;
631 uint8_t ring;
632 int res = xtensa_tlb_lookup(env, v, dtlb, &wi, &ei, &ring);
634 switch (res) {
635 case 0:
636 if (ring >= xtensa_get_ring(env)) {
637 return (v & 0xfffff000) | wi | (dtlb ? 0x10 : 0x8);
639 break;
641 case INST_TLB_MULTI_HIT_CAUSE:
642 case LOAD_STORE_TLB_MULTI_HIT_CAUSE:
643 HELPER(exception_cause_vaddr)(env, env->pc, res, v);
644 break;
646 return 0;
647 } else {
648 return (v & REGION_PAGE_MASK) | 0x1;
652 void xtensa_tlb_set_entry_mmu(const CPUXtensaState *env,
653 xtensa_tlb_entry *entry, bool dtlb,
654 unsigned wi, unsigned ei, uint32_t vpn, uint32_t pte)
656 entry->vaddr = vpn;
657 entry->paddr = pte & xtensa_tlb_get_addr_mask(env, dtlb, wi);
658 entry->asid = (env->sregs[RASID] >> ((pte >> 1) & 0x18)) & 0xff;
659 entry->attr = pte & 0xf;
662 void xtensa_tlb_set_entry(CPUXtensaState *env, bool dtlb,
663 unsigned wi, unsigned ei, uint32_t vpn, uint32_t pte)
665 xtensa_tlb_entry *entry = xtensa_tlb_get_entry(env, dtlb, wi, ei);
667 if (xtensa_option_enabled(env->config, XTENSA_OPTION_MMU)) {
668 if (entry->variable) {
669 if (entry->asid) {
670 tlb_flush_page(env, entry->vaddr);
672 xtensa_tlb_set_entry_mmu(env, entry, dtlb, wi, ei, vpn, pte);
673 tlb_flush_page(env, entry->vaddr);
674 } else {
675 qemu_log("%s %d, %d, %d trying to set immutable entry\n",
676 __func__, dtlb, wi, ei);
678 } else {
679 tlb_flush_page(env, entry->vaddr);
680 if (xtensa_option_enabled(env->config,
681 XTENSA_OPTION_REGION_TRANSLATION)) {
682 entry->paddr = pte & REGION_PAGE_MASK;
684 entry->attr = pte & 0xf;
688 void HELPER(wtlb)(CPUXtensaState *env, uint32_t p, uint32_t v, uint32_t dtlb)
690 uint32_t vpn;
691 uint32_t wi;
692 uint32_t ei;
693 split_tlb_entry_spec(env, v, dtlb, &vpn, &wi, &ei);
694 xtensa_tlb_set_entry(env, dtlb, wi, ei, vpn, p);
698 void HELPER(wsr_ibreakenable)(CPUXtensaState *env, uint32_t v)
700 uint32_t change = v ^ env->sregs[IBREAKENABLE];
701 unsigned i;
703 for (i = 0; i < env->config->nibreak; ++i) {
704 if (change & (1 << i)) {
705 tb_invalidate_virtual_addr(env, env->sregs[IBREAKA + i]);
708 env->sregs[IBREAKENABLE] = v & ((1 << env->config->nibreak) - 1);
711 void HELPER(wsr_ibreaka)(CPUXtensaState *env, uint32_t i, uint32_t v)
713 if (env->sregs[IBREAKENABLE] & (1 << i) && env->sregs[IBREAKA + i] != v) {
714 tb_invalidate_virtual_addr(env, env->sregs[IBREAKA + i]);
715 tb_invalidate_virtual_addr(env, v);
717 env->sregs[IBREAKA + i] = v;
720 static void set_dbreak(CPUXtensaState *env, unsigned i, uint32_t dbreaka,
721 uint32_t dbreakc)
723 int flags = BP_CPU | BP_STOP_BEFORE_ACCESS;
724 uint32_t mask = dbreakc | ~DBREAKC_MASK;
726 if (env->cpu_watchpoint[i]) {
727 cpu_watchpoint_remove_by_ref(env, env->cpu_watchpoint[i]);
729 if (dbreakc & DBREAKC_SB) {
730 flags |= BP_MEM_WRITE;
732 if (dbreakc & DBREAKC_LB) {
733 flags |= BP_MEM_READ;
735 /* contiguous mask after inversion is one less than some power of 2 */
736 if ((~mask + 1) & ~mask) {
737 qemu_log("DBREAKC mask is not contiguous: 0x%08x\n", dbreakc);
738 /* cut mask after the first zero bit */
739 mask = 0xffffffff << (32 - clo32(mask));
741 if (cpu_watchpoint_insert(env, dbreaka & mask, ~mask + 1,
742 flags, &env->cpu_watchpoint[i])) {
743 env->cpu_watchpoint[i] = NULL;
744 qemu_log("Failed to set data breakpoint at 0x%08x/%d\n",
745 dbreaka & mask, ~mask + 1);
749 void HELPER(wsr_dbreaka)(CPUXtensaState *env, uint32_t i, uint32_t v)
751 uint32_t dbreakc = env->sregs[DBREAKC + i];
753 if ((dbreakc & DBREAKC_SB_LB) &&
754 env->sregs[DBREAKA + i] != v) {
755 set_dbreak(env, i, v, dbreakc);
757 env->sregs[DBREAKA + i] = v;
760 void HELPER(wsr_dbreakc)(CPUXtensaState *env, uint32_t i, uint32_t v)
762 if ((env->sregs[DBREAKC + i] ^ v) & (DBREAKC_SB_LB | DBREAKC_MASK)) {
763 if (v & DBREAKC_SB_LB) {
764 set_dbreak(env, i, env->sregs[DBREAKA + i], v);
765 } else {
766 if (env->cpu_watchpoint[i]) {
767 cpu_watchpoint_remove_by_ref(env, env->cpu_watchpoint[i]);
768 env->cpu_watchpoint[i] = NULL;
772 env->sregs[DBREAKC + i] = v;