2 #include "host-utils.h"
8 //#define DEBUG_UNALIGNED
9 //#define DEBUG_UNASSIGNED
12 //#define DEBUG_PSTATE
13 //#define DEBUG_CACHE_CONTROL
16 #define DPRINTF_MMU(fmt, ...) \
17 do { printf("MMU: " fmt , ## __VA_ARGS__); } while (0)
19 #define DPRINTF_MMU(fmt, ...) do {} while (0)
23 #define DPRINTF_MXCC(fmt, ...) \
24 do { printf("MXCC: " fmt , ## __VA_ARGS__); } while (0)
26 #define DPRINTF_MXCC(fmt, ...) do {} while (0)
30 #define DPRINTF_ASI(fmt, ...) \
31 do { printf("ASI: " fmt , ## __VA_ARGS__); } while (0)
35 #define DPRINTF_PSTATE(fmt, ...) \
36 do { printf("PSTATE: " fmt , ## __VA_ARGS__); } while (0)
38 #define DPRINTF_PSTATE(fmt, ...) do {} while (0)
41 #ifdef DEBUG_CACHE_CONTROL
42 #define DPRINTF_CACHE_CONTROL(fmt, ...) \
43 do { printf("CACHE_CONTROL: " fmt , ## __VA_ARGS__); } while (0)
45 #define DPRINTF_CACHE_CONTROL(fmt, ...) do {} while (0)
50 #define AM_CHECK(env1) ((env1)->pstate & PS_AM)
52 #define AM_CHECK(env1) (1)
56 #define DT0 (env->dt0)
57 #define DT1 (env->dt1)
58 #define QT0 (env->qt0)
59 #define QT1 (env->qt1)
61 /* Leon3 cache control */
63 /* Cache control: emulate the behavior of cache control registers but without
64 any effect on the emulated */
66 #define CACHE_STATE_MASK 0x3
67 #define CACHE_DISABLED 0x0
68 #define CACHE_FROZEN 0x1
69 #define CACHE_ENABLED 0x3
71 /* Cache Control register fields */
73 #define CACHE_CTRL_IF (1 << 4) /* Instruction Cache Freeze on Interrupt */
74 #define CACHE_CTRL_DF (1 << 5) /* Data Cache Freeze on Interrupt */
75 #define CACHE_CTRL_DP (1 << 14) /* Data cache flush pending */
76 #define CACHE_CTRL_IP (1 << 15) /* Instruction cache flush pending */
77 #define CACHE_CTRL_IB (1 << 16) /* Instruction burst fetch */
78 #define CACHE_CTRL_FI (1 << 21) /* Flush Instruction cache (Write only) */
79 #define CACHE_CTRL_FD (1 << 22) /* Flush Data cache (Write only) */
80 #define CACHE_CTRL_DS (1 << 23) /* Data cache snoop enable */
82 #if defined(CONFIG_USER_ONLY) && defined(TARGET_SPARC64)
83 static void do_unassigned_access(target_ulong addr
, int is_write
, int is_exec
,
84 int is_asi
, int size
);
87 #if defined(TARGET_SPARC64) && !defined(CONFIG_USER_ONLY)
88 // Calculates TSB pointer value for fault page size 8k or 64k
89 static uint64_t ultrasparc_tsb_pointer(uint64_t tsb_register
,
90 uint64_t tag_access_register
,
93 uint64_t tsb_base
= tsb_register
& ~0x1fffULL
;
94 int tsb_split
= (tsb_register
& 0x1000ULL
) ? 1 : 0;
95 int tsb_size
= tsb_register
& 0xf;
97 // discard lower 13 bits which hold tag access context
98 uint64_t tag_access_va
= tag_access_register
& ~0x1fffULL
;
101 uint64_t tsb_base_mask
= ~0x1fffULL
;
102 uint64_t va
= tag_access_va
;
104 // move va bits to correct position
105 if (page_size
== 8*1024) {
107 } else if (page_size
== 64*1024) {
112 tsb_base_mask
<<= tsb_size
;
115 // calculate tsb_base mask and adjust va if split is in use
117 if (page_size
== 8*1024) {
118 va
&= ~(1ULL << (13 + tsb_size
));
119 } else if (page_size
== 64*1024) {
120 va
|= (1ULL << (13 + tsb_size
));
125 return ((tsb_base
& tsb_base_mask
) | (va
& ~tsb_base_mask
)) & ~0xfULL
;
128 // Calculates tag target register value by reordering bits
129 // in tag access register
130 static uint64_t ultrasparc_tag_target(uint64_t tag_access_register
)
132 return ((tag_access_register
& 0x1fff) << 48) | (tag_access_register
>> 22);
135 static void replace_tlb_entry(SparcTLBEntry
*tlb
,
136 uint64_t tlb_tag
, uint64_t tlb_tte
,
139 target_ulong mask
, size
, va
, offset
;
141 // flush page range if translation is valid
142 if (TTE_IS_VALID(tlb
->tte
)) {
144 mask
= 0xffffffffffffe000ULL
;
145 mask
<<= 3 * ((tlb
->tte
>> 61) & 3);
148 va
= tlb
->tag
& mask
;
150 for (offset
= 0; offset
< size
; offset
+= TARGET_PAGE_SIZE
) {
151 tlb_flush_page(env1
, va
+ offset
);
159 static void demap_tlb(SparcTLBEntry
*tlb
, target_ulong demap_addr
,
160 const char* strmmu
, CPUState
*env1
)
166 int is_demap_context
= (demap_addr
>> 6) & 1;
169 switch ((demap_addr
>> 4) & 3) {
171 context
= env1
->dmmu
.mmu_primary_context
;
174 context
= env1
->dmmu
.mmu_secondary_context
;
184 for (i
= 0; i
< 64; i
++) {
185 if (TTE_IS_VALID(tlb
[i
].tte
)) {
187 if (is_demap_context
) {
188 // will remove non-global entries matching context value
189 if (TTE_IS_GLOBAL(tlb
[i
].tte
) ||
190 !tlb_compare_context(&tlb
[i
], context
)) {
195 // will remove any entry matching VA
196 mask
= 0xffffffffffffe000ULL
;
197 mask
<<= 3 * ((tlb
[i
].tte
>> 61) & 3);
199 if (!compare_masked(demap_addr
, tlb
[i
].tag
, mask
)) {
203 // entry should be global or matching context value
204 if (!TTE_IS_GLOBAL(tlb
[i
].tte
) &&
205 !tlb_compare_context(&tlb
[i
], context
)) {
210 replace_tlb_entry(&tlb
[i
], 0, 0, env1
);
212 DPRINTF_MMU("%s demap invalidated entry [%02u]\n", strmmu
, i
);
213 dump_mmu(stdout
, fprintf
, env1
);
219 static void replace_tlb_1bit_lru(SparcTLBEntry
*tlb
,
220 uint64_t tlb_tag
, uint64_t tlb_tte
,
221 const char* strmmu
, CPUState
*env1
)
223 unsigned int i
, replace_used
;
225 // Try replacing invalid entry
226 for (i
= 0; i
< 64; i
++) {
227 if (!TTE_IS_VALID(tlb
[i
].tte
)) {
228 replace_tlb_entry(&tlb
[i
], tlb_tag
, tlb_tte
, env1
);
230 DPRINTF_MMU("%s lru replaced invalid entry [%i]\n", strmmu
, i
);
231 dump_mmu(stdout
, fprintf
, env1
);
237 // All entries are valid, try replacing unlocked entry
239 for (replace_used
= 0; replace_used
< 2; ++replace_used
) {
241 // Used entries are not replaced on first pass
243 for (i
= 0; i
< 64; i
++) {
244 if (!TTE_IS_LOCKED(tlb
[i
].tte
) && !TTE_IS_USED(tlb
[i
].tte
)) {
246 replace_tlb_entry(&tlb
[i
], tlb_tag
, tlb_tte
, env1
);
248 DPRINTF_MMU("%s lru replaced unlocked %s entry [%i]\n",
249 strmmu
, (replace_used
?"used":"unused"), i
);
250 dump_mmu(stdout
, fprintf
, env1
);
256 // Now reset used bit and search for unused entries again
258 for (i
= 0; i
< 64; i
++) {
259 TTE_SET_UNUSED(tlb
[i
].tte
);
264 DPRINTF_MMU("%s lru replacement failed: no entries available\n", strmmu
);
271 static inline target_ulong
address_mask(CPUState
*env1
, target_ulong addr
)
273 #ifdef TARGET_SPARC64
275 addr
&= 0xffffffffULL
;
280 /* returns true if access using this ASI is to have address translated by MMU
281 otherwise access is to raw physical address */
282 static inline int is_translating_asi(int asi
)
284 #ifdef TARGET_SPARC64
285 /* Ultrasparc IIi translating asi
286 - note this list is defined by cpu implementation
301 /* TODO: check sparc32 bits */
306 static inline target_ulong
asi_address_mask(CPUState
*env1
,
307 int asi
, target_ulong addr
)
309 if (is_translating_asi(asi
)) {
310 return address_mask(env
, addr
);
316 static void raise_exception(int tt
)
318 env
->exception_index
= tt
;
322 void HELPER(raise_exception
)(int tt
)
327 void helper_shutdown(void)
329 #if !defined(CONFIG_USER_ONLY)
330 qemu_system_shutdown_request();
334 void helper_check_align(target_ulong addr
, uint32_t align
)
337 #ifdef DEBUG_UNALIGNED
338 printf("Unaligned access to 0x" TARGET_FMT_lx
" from 0x" TARGET_FMT_lx
339 "\n", addr
, env
->pc
);
341 raise_exception(TT_UNALIGNED
);
345 #define F_HELPER(name, p) void helper_f##name##p(void)
347 #define F_BINOP(name) \
348 float32 helper_f ## name ## s (float32 src1, float32 src2) \
350 return float32_ ## name (src1, src2, &env->fp_status); \
354 DT0 = float64_ ## name (DT0, DT1, &env->fp_status); \
358 QT0 = float128_ ## name (QT0, QT1, &env->fp_status); \
367 void helper_fsmuld(float32 src1
, float32 src2
)
369 DT0
= float64_mul(float32_to_float64(src1
, &env
->fp_status
),
370 float32_to_float64(src2
, &env
->fp_status
),
374 void helper_fdmulq(void)
376 QT0
= float128_mul(float64_to_float128(DT0
, &env
->fp_status
),
377 float64_to_float128(DT1
, &env
->fp_status
),
381 float32
helper_fnegs(float32 src
)
383 return float32_chs(src
);
386 #ifdef TARGET_SPARC64
389 DT0
= float64_chs(DT1
);
394 QT0
= float128_chs(QT1
);
398 /* Integer to float conversion. */
399 float32
helper_fitos(int32_t src
)
401 return int32_to_float32(src
, &env
->fp_status
);
404 void helper_fitod(int32_t src
)
406 DT0
= int32_to_float64(src
, &env
->fp_status
);
409 void helper_fitoq(int32_t src
)
411 QT0
= int32_to_float128(src
, &env
->fp_status
);
414 #ifdef TARGET_SPARC64
415 float32
helper_fxtos(void)
417 return int64_to_float32(*((int64_t *)&DT1
), &env
->fp_status
);
422 DT0
= int64_to_float64(*((int64_t *)&DT1
), &env
->fp_status
);
427 QT0
= int64_to_float128(*((int64_t *)&DT1
), &env
->fp_status
);
432 /* floating point conversion */
433 float32
helper_fdtos(void)
435 return float64_to_float32(DT1
, &env
->fp_status
);
438 void helper_fstod(float32 src
)
440 DT0
= float32_to_float64(src
, &env
->fp_status
);
443 float32
helper_fqtos(void)
445 return float128_to_float32(QT1
, &env
->fp_status
);
448 void helper_fstoq(float32 src
)
450 QT0
= float32_to_float128(src
, &env
->fp_status
);
453 void helper_fqtod(void)
455 DT0
= float128_to_float64(QT1
, &env
->fp_status
);
458 void helper_fdtoq(void)
460 QT0
= float64_to_float128(DT1
, &env
->fp_status
);
463 /* Float to integer conversion. */
464 int32_t helper_fstoi(float32 src
)
466 return float32_to_int32_round_to_zero(src
, &env
->fp_status
);
469 int32_t helper_fdtoi(void)
471 return float64_to_int32_round_to_zero(DT1
, &env
->fp_status
);
474 int32_t helper_fqtoi(void)
476 return float128_to_int32_round_to_zero(QT1
, &env
->fp_status
);
479 #ifdef TARGET_SPARC64
480 void helper_fstox(float32 src
)
482 *((int64_t *)&DT0
) = float32_to_int64_round_to_zero(src
, &env
->fp_status
);
485 void helper_fdtox(void)
487 *((int64_t *)&DT0
) = float64_to_int64_round_to_zero(DT1
, &env
->fp_status
);
490 void helper_fqtox(void)
492 *((int64_t *)&DT0
) = float128_to_int64_round_to_zero(QT1
, &env
->fp_status
);
495 void helper_faligndata(void)
499 tmp
= (*((uint64_t *)&DT0
)) << ((env
->gsr
& 7) * 8);
500 /* on many architectures a shift of 64 does nothing */
501 if ((env
->gsr
& 7) != 0) {
502 tmp
|= (*((uint64_t *)&DT1
)) >> (64 - (env
->gsr
& 7) * 8);
504 *((uint64_t *)&DT0
) = tmp
;
507 #ifdef HOST_WORDS_BIGENDIAN
508 #define VIS_B64(n) b[7 - (n)]
509 #define VIS_W64(n) w[3 - (n)]
510 #define VIS_SW64(n) sw[3 - (n)]
511 #define VIS_L64(n) l[1 - (n)]
512 #define VIS_B32(n) b[3 - (n)]
513 #define VIS_W32(n) w[1 - (n)]
515 #define VIS_B64(n) b[n]
516 #define VIS_W64(n) w[n]
517 #define VIS_SW64(n) sw[n]
518 #define VIS_L64(n) l[n]
519 #define VIS_B32(n) b[n]
520 #define VIS_W32(n) w[n]
538 void helper_fpmerge(void)
545 // Reverse calculation order to handle overlap
546 d
.VIS_B64(7) = s
.VIS_B64(3);
547 d
.VIS_B64(6) = d
.VIS_B64(3);
548 d
.VIS_B64(5) = s
.VIS_B64(2);
549 d
.VIS_B64(4) = d
.VIS_B64(2);
550 d
.VIS_B64(3) = s
.VIS_B64(1);
551 d
.VIS_B64(2) = d
.VIS_B64(1);
552 d
.VIS_B64(1) = s
.VIS_B64(0);
553 //d.VIS_B64(0) = d.VIS_B64(0);
558 void helper_fmul8x16(void)
567 tmp = (int32_t)d.VIS_SW64(r) * (int32_t)s.VIS_B64(r); \
568 if ((tmp & 0xff) > 0x7f) \
570 d.VIS_W64(r) = tmp >> 8;
581 void helper_fmul8x16al(void)
590 tmp = (int32_t)d.VIS_SW64(1) * (int32_t)s.VIS_B64(r); \
591 if ((tmp & 0xff) > 0x7f) \
593 d.VIS_W64(r) = tmp >> 8;
604 void helper_fmul8x16au(void)
613 tmp = (int32_t)d.VIS_SW64(0) * (int32_t)s.VIS_B64(r); \
614 if ((tmp & 0xff) > 0x7f) \
616 d.VIS_W64(r) = tmp >> 8;
627 void helper_fmul8sux16(void)
636 tmp = (int32_t)d.VIS_SW64(r) * ((int32_t)s.VIS_SW64(r) >> 8); \
637 if ((tmp & 0xff) > 0x7f) \
639 d.VIS_W64(r) = tmp >> 8;
650 void helper_fmul8ulx16(void)
659 tmp = (int32_t)d.VIS_SW64(r) * ((uint32_t)s.VIS_B64(r * 2)); \
660 if ((tmp & 0xff) > 0x7f) \
662 d.VIS_W64(r) = tmp >> 8;
673 void helper_fmuld8sux16(void)
682 tmp = (int32_t)d.VIS_SW64(r) * ((int32_t)s.VIS_SW64(r) >> 8); \
683 if ((tmp & 0xff) > 0x7f) \
687 // Reverse calculation order to handle overlap
695 void helper_fmuld8ulx16(void)
704 tmp = (int32_t)d.VIS_SW64(r) * ((uint32_t)s.VIS_B64(r * 2)); \
705 if ((tmp & 0xff) > 0x7f) \
709 // Reverse calculation order to handle overlap
717 void helper_fexpand(void)
722 s
.l
= (uint32_t)(*(uint64_t *)&DT0
& 0xffffffff);
724 d
.VIS_W64(0) = s
.VIS_B32(0) << 4;
725 d
.VIS_W64(1) = s
.VIS_B32(1) << 4;
726 d
.VIS_W64(2) = s
.VIS_B32(2) << 4;
727 d
.VIS_W64(3) = s
.VIS_B32(3) << 4;
732 #define VIS_HELPER(name, F) \
733 void name##16(void) \
740 d.VIS_W64(0) = F(d.VIS_W64(0), s.VIS_W64(0)); \
741 d.VIS_W64(1) = F(d.VIS_W64(1), s.VIS_W64(1)); \
742 d.VIS_W64(2) = F(d.VIS_W64(2), s.VIS_W64(2)); \
743 d.VIS_W64(3) = F(d.VIS_W64(3), s.VIS_W64(3)); \
748 uint32_t name##16s(uint32_t src1, uint32_t src2) \
755 d.VIS_W32(0) = F(d.VIS_W32(0), s.VIS_W32(0)); \
756 d.VIS_W32(1) = F(d.VIS_W32(1), s.VIS_W32(1)); \
761 void name##32(void) \
768 d.VIS_L64(0) = F(d.VIS_L64(0), s.VIS_L64(0)); \
769 d.VIS_L64(1) = F(d.VIS_L64(1), s.VIS_L64(1)); \
774 uint32_t name##32s(uint32_t src1, uint32_t src2) \
786 #define FADD(a, b) ((a) + (b))
787 #define FSUB(a, b) ((a) - (b))
788 VIS_HELPER(helper_fpadd
, FADD
)
789 VIS_HELPER(helper_fpsub
, FSUB
)
791 #define VIS_CMPHELPER(name, F) \
792 void name##16(void) \
799 d.VIS_W64(0) = F(d.VIS_W64(0), s.VIS_W64(0))? 1: 0; \
800 d.VIS_W64(0) |= F(d.VIS_W64(1), s.VIS_W64(1))? 2: 0; \
801 d.VIS_W64(0) |= F(d.VIS_W64(2), s.VIS_W64(2))? 4: 0; \
802 d.VIS_W64(0) |= F(d.VIS_W64(3), s.VIS_W64(3))? 8: 0; \
807 void name##32(void) \
814 d.VIS_L64(0) = F(d.VIS_L64(0), s.VIS_L64(0))? 1: 0; \
815 d.VIS_L64(0) |= F(d.VIS_L64(1), s.VIS_L64(1))? 2: 0; \
820 #define FCMPGT(a, b) ((a) > (b))
821 #define FCMPEQ(a, b) ((a) == (b))
822 #define FCMPLE(a, b) ((a) <= (b))
823 #define FCMPNE(a, b) ((a) != (b))
825 VIS_CMPHELPER(helper_fcmpgt
, FCMPGT
)
826 VIS_CMPHELPER(helper_fcmpeq
, FCMPEQ
)
827 VIS_CMPHELPER(helper_fcmple
, FCMPLE
)
828 VIS_CMPHELPER(helper_fcmpne
, FCMPNE
)
831 void helper_check_ieee_exceptions(void)
835 status
= get_float_exception_flags(&env
->fp_status
);
837 /* Copy IEEE 754 flags into FSR */
838 if (status
& float_flag_invalid
)
840 if (status
& float_flag_overflow
)
842 if (status
& float_flag_underflow
)
844 if (status
& float_flag_divbyzero
)
846 if (status
& float_flag_inexact
)
849 if ((env
->fsr
& FSR_CEXC_MASK
) & ((env
->fsr
& FSR_TEM_MASK
) >> 23)) {
850 /* Unmasked exception, generate a trap */
851 env
->fsr
|= FSR_FTT_IEEE_EXCP
;
852 raise_exception(TT_FP_EXCP
);
854 /* Accumulate exceptions */
855 env
->fsr
|= (env
->fsr
& FSR_CEXC_MASK
) << 5;
860 void helper_clear_float_exceptions(void)
862 set_float_exception_flags(0, &env
->fp_status
);
865 float32
helper_fabss(float32 src
)
867 return float32_abs(src
);
870 #ifdef TARGET_SPARC64
871 void helper_fabsd(void)
873 DT0
= float64_abs(DT1
);
876 void helper_fabsq(void)
878 QT0
= float128_abs(QT1
);
882 float32
helper_fsqrts(float32 src
)
884 return float32_sqrt(src
, &env
->fp_status
);
887 void helper_fsqrtd(void)
889 DT0
= float64_sqrt(DT1
, &env
->fp_status
);
892 void helper_fsqrtq(void)
894 QT0
= float128_sqrt(QT1
, &env
->fp_status
);
897 #define GEN_FCMP(name, size, reg1, reg2, FS, E) \
898 void glue(helper_, name) (void) \
900 env->fsr &= FSR_FTT_NMASK; \
901 if (E && (glue(size, _is_any_nan)(reg1) || \
902 glue(size, _is_any_nan)(reg2)) && \
903 (env->fsr & FSR_NVM)) { \
904 env->fsr |= FSR_NVC; \
905 env->fsr |= FSR_FTT_IEEE_EXCP; \
906 raise_exception(TT_FP_EXCP); \
908 switch (glue(size, _compare) (reg1, reg2, &env->fp_status)) { \
909 case float_relation_unordered: \
910 if ((env->fsr & FSR_NVM)) { \
911 env->fsr |= FSR_NVC; \
912 env->fsr |= FSR_FTT_IEEE_EXCP; \
913 raise_exception(TT_FP_EXCP); \
915 env->fsr &= ~((FSR_FCC1 | FSR_FCC0) << FS); \
916 env->fsr |= (FSR_FCC1 | FSR_FCC0) << FS; \
917 env->fsr |= FSR_NVA; \
920 case float_relation_less: \
921 env->fsr &= ~((FSR_FCC1 | FSR_FCC0) << FS); \
922 env->fsr |= FSR_FCC0 << FS; \
924 case float_relation_greater: \
925 env->fsr &= ~((FSR_FCC1 | FSR_FCC0) << FS); \
926 env->fsr |= FSR_FCC1 << FS; \
929 env->fsr &= ~((FSR_FCC1 | FSR_FCC0) << FS); \
933 #define GEN_FCMPS(name, size, FS, E) \
934 void glue(helper_, name)(float32 src1, float32 src2) \
936 env->fsr &= FSR_FTT_NMASK; \
937 if (E && (glue(size, _is_any_nan)(src1) || \
938 glue(size, _is_any_nan)(src2)) && \
939 (env->fsr & FSR_NVM)) { \
940 env->fsr |= FSR_NVC; \
941 env->fsr |= FSR_FTT_IEEE_EXCP; \
942 raise_exception(TT_FP_EXCP); \
944 switch (glue(size, _compare) (src1, src2, &env->fp_status)) { \
945 case float_relation_unordered: \
946 if ((env->fsr & FSR_NVM)) { \
947 env->fsr |= FSR_NVC; \
948 env->fsr |= FSR_FTT_IEEE_EXCP; \
949 raise_exception(TT_FP_EXCP); \
951 env->fsr &= ~((FSR_FCC1 | FSR_FCC0) << FS); \
952 env->fsr |= (FSR_FCC1 | FSR_FCC0) << FS; \
953 env->fsr |= FSR_NVA; \
956 case float_relation_less: \
957 env->fsr &= ~((FSR_FCC1 | FSR_FCC0) << FS); \
958 env->fsr |= FSR_FCC0 << FS; \
960 case float_relation_greater: \
961 env->fsr &= ~((FSR_FCC1 | FSR_FCC0) << FS); \
962 env->fsr |= FSR_FCC1 << FS; \
965 env->fsr &= ~((FSR_FCC1 | FSR_FCC0) << FS); \
970 GEN_FCMPS(fcmps
, float32
, 0, 0);
971 GEN_FCMP(fcmpd
, float64
, DT0
, DT1
, 0, 0);
973 GEN_FCMPS(fcmpes
, float32
, 0, 1);
974 GEN_FCMP(fcmped
, float64
, DT0
, DT1
, 0, 1);
976 GEN_FCMP(fcmpq
, float128
, QT0
, QT1
, 0, 0);
977 GEN_FCMP(fcmpeq
, float128
, QT0
, QT1
, 0, 1);
979 static uint32_t compute_all_flags(void)
981 return env
->psr
& PSR_ICC
;
984 static uint32_t compute_C_flags(void)
986 return env
->psr
& PSR_CARRY
;
989 static inline uint32_t get_NZ_icc(int32_t dst
)
995 } else if (dst
< 0) {
1001 #ifdef TARGET_SPARC64
1002 static uint32_t compute_all_flags_xcc(void)
1004 return env
->xcc
& PSR_ICC
;
1007 static uint32_t compute_C_flags_xcc(void)
1009 return env
->xcc
& PSR_CARRY
;
1012 static inline uint32_t get_NZ_xcc(target_long dst
)
1018 } else if (dst
< 0) {
1025 static inline uint32_t get_V_div_icc(target_ulong src2
)
1035 static uint32_t compute_all_div(void)
1039 ret
= get_NZ_icc(CC_DST
);
1040 ret
|= get_V_div_icc(CC_SRC2
);
1044 static uint32_t compute_C_div(void)
1049 static inline uint32_t get_C_add_icc(uint32_t dst
, uint32_t src1
)
1059 static inline uint32_t get_C_addx_icc(uint32_t dst
, uint32_t src1
,
1064 if (((src1
& src2
) | (~dst
& (src1
| src2
))) & (1U << 31)) {
1070 static inline uint32_t get_V_add_icc(uint32_t dst
, uint32_t src1
,
1075 if (((src1
^ src2
^ -1) & (src1
^ dst
)) & (1U << 31)) {
1081 #ifdef TARGET_SPARC64
1082 static inline uint32_t get_C_add_xcc(target_ulong dst
, target_ulong src1
)
1092 static inline uint32_t get_C_addx_xcc(target_ulong dst
, target_ulong src1
,
1097 if (((src1
& src2
) | (~dst
& (src1
| src2
))) & (1ULL << 63)) {
1103 static inline uint32_t get_V_add_xcc(target_ulong dst
, target_ulong src1
,
1108 if (((src1
^ src2
^ -1) & (src1
^ dst
)) & (1ULL << 63)) {
1114 static uint32_t compute_all_add_xcc(void)
1118 ret
= get_NZ_xcc(CC_DST
);
1119 ret
|= get_C_add_xcc(CC_DST
, CC_SRC
);
1120 ret
|= get_V_add_xcc(CC_DST
, CC_SRC
, CC_SRC2
);
1124 static uint32_t compute_C_add_xcc(void)
1126 return get_C_add_xcc(CC_DST
, CC_SRC
);
1130 static uint32_t compute_all_add(void)
1134 ret
= get_NZ_icc(CC_DST
);
1135 ret
|= get_C_add_icc(CC_DST
, CC_SRC
);
1136 ret
|= get_V_add_icc(CC_DST
, CC_SRC
, CC_SRC2
);
1140 static uint32_t compute_C_add(void)
1142 return get_C_add_icc(CC_DST
, CC_SRC
);
1145 #ifdef TARGET_SPARC64
1146 static uint32_t compute_all_addx_xcc(void)
1150 ret
= get_NZ_xcc(CC_DST
);
1151 ret
|= get_C_addx_xcc(CC_DST
, CC_SRC
, CC_SRC2
);
1152 ret
|= get_V_add_xcc(CC_DST
, CC_SRC
, CC_SRC2
);
1156 static uint32_t compute_C_addx_xcc(void)
1160 ret
= get_C_addx_xcc(CC_DST
, CC_SRC
, CC_SRC2
);
1165 static uint32_t compute_all_addx(void)
1169 ret
= get_NZ_icc(CC_DST
);
1170 ret
|= get_C_addx_icc(CC_DST
, CC_SRC
, CC_SRC2
);
1171 ret
|= get_V_add_icc(CC_DST
, CC_SRC
, CC_SRC2
);
1175 static uint32_t compute_C_addx(void)
1179 ret
= get_C_addx_icc(CC_DST
, CC_SRC
, CC_SRC2
);
1183 static inline uint32_t get_V_tag_icc(target_ulong src1
, target_ulong src2
)
1187 if ((src1
| src2
) & 0x3) {
1193 static uint32_t compute_all_tadd(void)
1197 ret
= get_NZ_icc(CC_DST
);
1198 ret
|= get_C_add_icc(CC_DST
, CC_SRC
);
1199 ret
|= get_V_add_icc(CC_DST
, CC_SRC
, CC_SRC2
);
1200 ret
|= get_V_tag_icc(CC_SRC
, CC_SRC2
);
1204 static uint32_t compute_all_taddtv(void)
1208 ret
= get_NZ_icc(CC_DST
);
1209 ret
|= get_C_add_icc(CC_DST
, CC_SRC
);
1213 static inline uint32_t get_C_sub_icc(uint32_t src1
, uint32_t src2
)
1223 static inline uint32_t get_C_subx_icc(uint32_t dst
, uint32_t src1
,
1228 if (((~src1
& src2
) | (dst
& (~src1
| src2
))) & (1U << 31)) {
1234 static inline uint32_t get_V_sub_icc(uint32_t dst
, uint32_t src1
,
1239 if (((src1
^ src2
) & (src1
^ dst
)) & (1U << 31)) {
1246 #ifdef TARGET_SPARC64
1247 static inline uint32_t get_C_sub_xcc(target_ulong src1
, target_ulong src2
)
1257 static inline uint32_t get_C_subx_xcc(target_ulong dst
, target_ulong src1
,
1262 if (((~src1
& src2
) | (dst
& (~src1
| src2
))) & (1ULL << 63)) {
1268 static inline uint32_t get_V_sub_xcc(target_ulong dst
, target_ulong src1
,
1273 if (((src1
^ src2
) & (src1
^ dst
)) & (1ULL << 63)) {
1279 static uint32_t compute_all_sub_xcc(void)
1283 ret
= get_NZ_xcc(CC_DST
);
1284 ret
|= get_C_sub_xcc(CC_SRC
, CC_SRC2
);
1285 ret
|= get_V_sub_xcc(CC_DST
, CC_SRC
, CC_SRC2
);
1289 static uint32_t compute_C_sub_xcc(void)
1291 return get_C_sub_xcc(CC_SRC
, CC_SRC2
);
1295 static uint32_t compute_all_sub(void)
1299 ret
= get_NZ_icc(CC_DST
);
1300 ret
|= get_C_sub_icc(CC_SRC
, CC_SRC2
);
1301 ret
|= get_V_sub_icc(CC_DST
, CC_SRC
, CC_SRC2
);
1305 static uint32_t compute_C_sub(void)
1307 return get_C_sub_icc(CC_SRC
, CC_SRC2
);
1310 #ifdef TARGET_SPARC64
1311 static uint32_t compute_all_subx_xcc(void)
1315 ret
= get_NZ_xcc(CC_DST
);
1316 ret
|= get_C_subx_xcc(CC_DST
, CC_SRC
, CC_SRC2
);
1317 ret
|= get_V_sub_xcc(CC_DST
, CC_SRC
, CC_SRC2
);
1321 static uint32_t compute_C_subx_xcc(void)
1325 ret
= get_C_subx_xcc(CC_DST
, CC_SRC
, CC_SRC2
);
1330 static uint32_t compute_all_subx(void)
1334 ret
= get_NZ_icc(CC_DST
);
1335 ret
|= get_C_subx_icc(CC_DST
, CC_SRC
, CC_SRC2
);
1336 ret
|= get_V_sub_icc(CC_DST
, CC_SRC
, CC_SRC2
);
1340 static uint32_t compute_C_subx(void)
1344 ret
= get_C_subx_icc(CC_DST
, CC_SRC
, CC_SRC2
);
1348 static uint32_t compute_all_tsub(void)
1352 ret
= get_NZ_icc(CC_DST
);
1353 ret
|= get_C_sub_icc(CC_SRC
, CC_SRC2
);
1354 ret
|= get_V_sub_icc(CC_DST
, CC_SRC
, CC_SRC2
);
1355 ret
|= get_V_tag_icc(CC_SRC
, CC_SRC2
);
1359 static uint32_t compute_all_tsubtv(void)
1363 ret
= get_NZ_icc(CC_DST
);
1364 ret
|= get_C_sub_icc(CC_SRC
, CC_SRC2
);
1368 static uint32_t compute_all_logic(void)
1370 return get_NZ_icc(CC_DST
);
1373 static uint32_t compute_C_logic(void)
1378 #ifdef TARGET_SPARC64
1379 static uint32_t compute_all_logic_xcc(void)
1381 return get_NZ_xcc(CC_DST
);
1385 typedef struct CCTable
{
1386 uint32_t (*compute_all
)(void); /* return all the flags */
1387 uint32_t (*compute_c
)(void); /* return the C flag */
1390 static const CCTable icc_table
[CC_OP_NB
] = {
1391 /* CC_OP_DYNAMIC should never happen */
1392 [CC_OP_FLAGS
] = { compute_all_flags
, compute_C_flags
},
1393 [CC_OP_DIV
] = { compute_all_div
, compute_C_div
},
1394 [CC_OP_ADD
] = { compute_all_add
, compute_C_add
},
1395 [CC_OP_ADDX
] = { compute_all_addx
, compute_C_addx
},
1396 [CC_OP_TADD
] = { compute_all_tadd
, compute_C_add
},
1397 [CC_OP_TADDTV
] = { compute_all_taddtv
, compute_C_add
},
1398 [CC_OP_SUB
] = { compute_all_sub
, compute_C_sub
},
1399 [CC_OP_SUBX
] = { compute_all_subx
, compute_C_subx
},
1400 [CC_OP_TSUB
] = { compute_all_tsub
, compute_C_sub
},
1401 [CC_OP_TSUBTV
] = { compute_all_tsubtv
, compute_C_sub
},
1402 [CC_OP_LOGIC
] = { compute_all_logic
, compute_C_logic
},
1405 #ifdef TARGET_SPARC64
1406 static const CCTable xcc_table
[CC_OP_NB
] = {
1407 /* CC_OP_DYNAMIC should never happen */
1408 [CC_OP_FLAGS
] = { compute_all_flags_xcc
, compute_C_flags_xcc
},
1409 [CC_OP_DIV
] = { compute_all_logic_xcc
, compute_C_logic
},
1410 [CC_OP_ADD
] = { compute_all_add_xcc
, compute_C_add_xcc
},
1411 [CC_OP_ADDX
] = { compute_all_addx_xcc
, compute_C_addx_xcc
},
1412 [CC_OP_TADD
] = { compute_all_add_xcc
, compute_C_add_xcc
},
1413 [CC_OP_TADDTV
] = { compute_all_add_xcc
, compute_C_add_xcc
},
1414 [CC_OP_SUB
] = { compute_all_sub_xcc
, compute_C_sub_xcc
},
1415 [CC_OP_SUBX
] = { compute_all_subx_xcc
, compute_C_subx_xcc
},
1416 [CC_OP_TSUB
] = { compute_all_sub_xcc
, compute_C_sub_xcc
},
1417 [CC_OP_TSUBTV
] = { compute_all_sub_xcc
, compute_C_sub_xcc
},
1418 [CC_OP_LOGIC
] = { compute_all_logic_xcc
, compute_C_logic
},
1422 void helper_compute_psr(void)
1426 new_psr
= icc_table
[CC_OP
].compute_all();
1428 #ifdef TARGET_SPARC64
1429 new_psr
= xcc_table
[CC_OP
].compute_all();
1432 CC_OP
= CC_OP_FLAGS
;
1435 uint32_t helper_compute_C_icc(void)
1439 ret
= icc_table
[CC_OP
].compute_c() >> PSR_CARRY_SHIFT
;
1443 static inline void memcpy32(target_ulong
*dst
, const target_ulong
*src
)
1455 static void set_cwp(int new_cwp
)
1457 /* put the modified wrap registers at their proper location */
1458 if (env
->cwp
== env
->nwindows
- 1) {
1459 memcpy32(env
->regbase
, env
->regbase
+ env
->nwindows
* 16);
1463 /* put the wrap registers at their temporary location */
1464 if (new_cwp
== env
->nwindows
- 1) {
1465 memcpy32(env
->regbase
+ env
->nwindows
* 16, env
->regbase
);
1467 env
->regwptr
= env
->regbase
+ (new_cwp
* 16);
1470 void cpu_set_cwp(CPUState
*env1
, int new_cwp
)
1472 CPUState
*saved_env
;
1480 static target_ulong
get_psr(void)
1482 helper_compute_psr();
1484 #if !defined (TARGET_SPARC64)
1485 return env
->version
| (env
->psr
& PSR_ICC
) |
1486 (env
->psref
? PSR_EF
: 0) |
1487 (env
->psrpil
<< 8) |
1488 (env
->psrs
? PSR_S
: 0) |
1489 (env
->psrps
? PSR_PS
: 0) |
1490 (env
->psret
? PSR_ET
: 0) | env
->cwp
;
1492 return env
->psr
& PSR_ICC
;
1496 target_ulong
cpu_get_psr(CPUState
*env1
)
1498 CPUState
*saved_env
;
1508 static void put_psr(target_ulong val
)
1510 env
->psr
= val
& PSR_ICC
;
1511 #if !defined (TARGET_SPARC64)
1512 env
->psref
= (val
& PSR_EF
)? 1 : 0;
1513 env
->psrpil
= (val
& PSR_PIL
) >> 8;
1515 #if ((!defined (TARGET_SPARC64)) && !defined(CONFIG_USER_ONLY))
1516 cpu_check_irqs(env
);
1518 #if !defined (TARGET_SPARC64)
1519 env
->psrs
= (val
& PSR_S
)? 1 : 0;
1520 env
->psrps
= (val
& PSR_PS
)? 1 : 0;
1521 env
->psret
= (val
& PSR_ET
)? 1 : 0;
1522 set_cwp(val
& PSR_CWP
);
1524 env
->cc_op
= CC_OP_FLAGS
;
1527 void cpu_put_psr(CPUState
*env1
, target_ulong val
)
1529 CPUState
*saved_env
;
1537 static int cwp_inc(int cwp
)
1539 if (unlikely(cwp
>= env
->nwindows
)) {
1540 cwp
-= env
->nwindows
;
1545 int cpu_cwp_inc(CPUState
*env1
, int cwp
)
1547 CPUState
*saved_env
;
1557 static int cwp_dec(int cwp
)
1559 if (unlikely(cwp
< 0)) {
1560 cwp
+= env
->nwindows
;
1565 int cpu_cwp_dec(CPUState
*env1
, int cwp
)
1567 CPUState
*saved_env
;
1577 #ifdef TARGET_SPARC64
1578 GEN_FCMPS(fcmps_fcc1
, float32
, 22, 0);
1579 GEN_FCMP(fcmpd_fcc1
, float64
, DT0
, DT1
, 22, 0);
1580 GEN_FCMP(fcmpq_fcc1
, float128
, QT0
, QT1
, 22, 0);
1582 GEN_FCMPS(fcmps_fcc2
, float32
, 24, 0);
1583 GEN_FCMP(fcmpd_fcc2
, float64
, DT0
, DT1
, 24, 0);
1584 GEN_FCMP(fcmpq_fcc2
, float128
, QT0
, QT1
, 24, 0);
1586 GEN_FCMPS(fcmps_fcc3
, float32
, 26, 0);
1587 GEN_FCMP(fcmpd_fcc3
, float64
, DT0
, DT1
, 26, 0);
1588 GEN_FCMP(fcmpq_fcc3
, float128
, QT0
, QT1
, 26, 0);
1590 GEN_FCMPS(fcmpes_fcc1
, float32
, 22, 1);
1591 GEN_FCMP(fcmped_fcc1
, float64
, DT0
, DT1
, 22, 1);
1592 GEN_FCMP(fcmpeq_fcc1
, float128
, QT0
, QT1
, 22, 1);
1594 GEN_FCMPS(fcmpes_fcc2
, float32
, 24, 1);
1595 GEN_FCMP(fcmped_fcc2
, float64
, DT0
, DT1
, 24, 1);
1596 GEN_FCMP(fcmpeq_fcc2
, float128
, QT0
, QT1
, 24, 1);
1598 GEN_FCMPS(fcmpes_fcc3
, float32
, 26, 1);
1599 GEN_FCMP(fcmped_fcc3
, float64
, DT0
, DT1
, 26, 1);
1600 GEN_FCMP(fcmpeq_fcc3
, float128
, QT0
, QT1
, 26, 1);
1604 #if !defined(TARGET_SPARC64) && !defined(CONFIG_USER_ONLY) && \
1606 static void dump_mxcc(CPUState
*env
)
1608 printf("mxccdata: %016" PRIx64
" %016" PRIx64
" %016" PRIx64
" %016" PRIx64
1610 env
->mxccdata
[0], env
->mxccdata
[1],
1611 env
->mxccdata
[2], env
->mxccdata
[3]);
1612 printf("mxccregs: %016" PRIx64
" %016" PRIx64
" %016" PRIx64
" %016" PRIx64
1614 " %016" PRIx64
" %016" PRIx64
" %016" PRIx64
" %016" PRIx64
1616 env
->mxccregs
[0], env
->mxccregs
[1],
1617 env
->mxccregs
[2], env
->mxccregs
[3],
1618 env
->mxccregs
[4], env
->mxccregs
[5],
1619 env
->mxccregs
[6], env
->mxccregs
[7]);
1623 #if (defined(TARGET_SPARC64) || !defined(CONFIG_USER_ONLY)) \
1624 && defined(DEBUG_ASI)
1625 static void dump_asi(const char *txt
, target_ulong addr
, int asi
, int size
,
1631 DPRINTF_ASI("%s "TARGET_FMT_lx
" asi 0x%02x = %02" PRIx64
"\n", txt
,
1632 addr
, asi
, r1
& 0xff);
1635 DPRINTF_ASI("%s "TARGET_FMT_lx
" asi 0x%02x = %04" PRIx64
"\n", txt
,
1636 addr
, asi
, r1
& 0xffff);
1639 DPRINTF_ASI("%s "TARGET_FMT_lx
" asi 0x%02x = %08" PRIx64
"\n", txt
,
1640 addr
, asi
, r1
& 0xffffffff);
1643 DPRINTF_ASI("%s "TARGET_FMT_lx
" asi 0x%02x = %016" PRIx64
"\n", txt
,
1650 #ifndef TARGET_SPARC64
1651 #ifndef CONFIG_USER_ONLY
1654 /* Leon3 cache control */
1656 static void leon3_cache_control_int(void)
1660 if (env
->cache_control
& CACHE_CTRL_IF
) {
1661 /* Instruction cache state */
1662 state
= env
->cache_control
& CACHE_STATE_MASK
;
1663 if (state
== CACHE_ENABLED
) {
1664 state
= CACHE_FROZEN
;
1665 DPRINTF_CACHE_CONTROL("Instruction cache: freeze\n");
1668 env
->cache_control
&= ~CACHE_STATE_MASK
;
1669 env
->cache_control
|= state
;
1672 if (env
->cache_control
& CACHE_CTRL_DF
) {
1673 /* Data cache state */
1674 state
= (env
->cache_control
>> 2) & CACHE_STATE_MASK
;
1675 if (state
== CACHE_ENABLED
) {
1676 state
= CACHE_FROZEN
;
1677 DPRINTF_CACHE_CONTROL("Data cache: freeze\n");
1680 env
->cache_control
&= ~(CACHE_STATE_MASK
<< 2);
1681 env
->cache_control
|= (state
<< 2);
1685 static void leon3_cache_control_st(target_ulong addr
, uint64_t val
, int size
)
1687 DPRINTF_CACHE_CONTROL("st addr:%08x, val:%" PRIx64
", size:%d\n",
1691 DPRINTF_CACHE_CONTROL("32bits only\n");
1696 case 0x00: /* Cache control */
1698 /* These values must always be read as zeros */
1699 val
&= ~CACHE_CTRL_FD
;
1700 val
&= ~CACHE_CTRL_FI
;
1701 val
&= ~CACHE_CTRL_IB
;
1702 val
&= ~CACHE_CTRL_IP
;
1703 val
&= ~CACHE_CTRL_DP
;
1705 env
->cache_control
= val
;
1707 case 0x04: /* Instruction cache configuration */
1708 case 0x08: /* Data cache configuration */
1712 DPRINTF_CACHE_CONTROL("write unknown register %08x\n", addr
);
1717 static uint64_t leon3_cache_control_ld(target_ulong addr
, int size
)
1722 DPRINTF_CACHE_CONTROL("32bits only\n");
1727 case 0x00: /* Cache control */
1728 ret
= env
->cache_control
;
1731 /* Configuration registers are read and only always keep those
1732 predefined values */
1734 case 0x04: /* Instruction cache configuration */
1737 case 0x08: /* Data cache configuration */
1741 DPRINTF_CACHE_CONTROL("read unknown register %08x\n", addr
);
1744 DPRINTF_CACHE_CONTROL("ld addr:%08x, ret:0x%" PRIx64
", size:%d\n",
1749 void leon3_irq_manager(void *irq_manager
, int intno
)
1751 leon3_irq_ack(irq_manager
, intno
);
1752 leon3_cache_control_int();
1755 uint64_t helper_ld_asi(target_ulong addr
, int asi
, int size
, int sign
)
1758 #if defined(DEBUG_MXCC) || defined(DEBUG_ASI)
1759 uint32_t last_addr
= addr
;
1762 helper_check_align(addr
, size
- 1);
1764 case 2: /* SuperSparc MXCC registers and Leon3 cache control */
1766 case 0x00: /* Leon3 Cache Control */
1767 case 0x08: /* Leon3 Instruction Cache config */
1768 case 0x0C: /* Leon3 Date Cache config */
1769 if (env
->def
->features
& CPU_FEATURE_CACHE_CTRL
) {
1770 ret
= leon3_cache_control_ld(addr
, size
);
1773 case 0x01c00a00: /* MXCC control register */
1775 ret
= env
->mxccregs
[3];
1777 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr
,
1780 case 0x01c00a04: /* MXCC control register */
1782 ret
= env
->mxccregs
[3];
1784 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr
,
1787 case 0x01c00c00: /* Module reset register */
1789 ret
= env
->mxccregs
[5];
1790 // should we do something here?
1792 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr
,
1795 case 0x01c00f00: /* MBus port address register */
1797 ret
= env
->mxccregs
[7];
1799 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr
,
1803 DPRINTF_MXCC("%08x: unimplemented address, size: %d\n", addr
,
1807 DPRINTF_MXCC("asi = %d, size = %d, sign = %d, "
1808 "addr = %08x -> ret = %" PRIx64
","
1809 "addr = %08x\n", asi
, size
, sign
, last_addr
, ret
, addr
);
1814 case 3: /* MMU probe */
1818 mmulev
= (addr
>> 8) & 15;
1822 ret
= mmu_probe(env
, addr
, mmulev
);
1823 DPRINTF_MMU("mmu_probe: 0x%08x (lev %d) -> 0x%08" PRIx64
"\n",
1827 case 4: /* read MMU regs */
1829 int reg
= (addr
>> 8) & 0x1f;
1831 ret
= env
->mmuregs
[reg
];
1832 if (reg
== 3) /* Fault status cleared on read */
1833 env
->mmuregs
[3] = 0;
1834 else if (reg
== 0x13) /* Fault status read */
1835 ret
= env
->mmuregs
[3];
1836 else if (reg
== 0x14) /* Fault address read */
1837 ret
= env
->mmuregs
[4];
1838 DPRINTF_MMU("mmu_read: reg[%d] = 0x%08" PRIx64
"\n", reg
, ret
);
1841 case 5: // Turbosparc ITLB Diagnostic
1842 case 6: // Turbosparc DTLB Diagnostic
1843 case 7: // Turbosparc IOTLB Diagnostic
1845 case 9: /* Supervisor code access */
1848 ret
= ldub_code(addr
);
1851 ret
= lduw_code(addr
);
1855 ret
= ldl_code(addr
);
1858 ret
= ldq_code(addr
);
1862 case 0xa: /* User data access */
1865 ret
= ldub_user(addr
);
1868 ret
= lduw_user(addr
);
1872 ret
= ldl_user(addr
);
1875 ret
= ldq_user(addr
);
1879 case 0xb: /* Supervisor data access */
1882 ret
= ldub_kernel(addr
);
1885 ret
= lduw_kernel(addr
);
1889 ret
= ldl_kernel(addr
);
1892 ret
= ldq_kernel(addr
);
1896 case 0xc: /* I-cache tag */
1897 case 0xd: /* I-cache data */
1898 case 0xe: /* D-cache tag */
1899 case 0xf: /* D-cache data */
1901 case 0x20: /* MMU passthrough */
1904 ret
= ldub_phys(addr
);
1907 ret
= lduw_phys(addr
);
1911 ret
= ldl_phys(addr
);
1914 ret
= ldq_phys(addr
);
1918 case 0x21 ... 0x2f: /* MMU passthrough, 0x100000000 to 0xfffffffff */
1921 ret
= ldub_phys((target_phys_addr_t
)addr
1922 | ((target_phys_addr_t
)(asi
& 0xf) << 32));
1925 ret
= lduw_phys((target_phys_addr_t
)addr
1926 | ((target_phys_addr_t
)(asi
& 0xf) << 32));
1930 ret
= ldl_phys((target_phys_addr_t
)addr
1931 | ((target_phys_addr_t
)(asi
& 0xf) << 32));
1934 ret
= ldq_phys((target_phys_addr_t
)addr
1935 | ((target_phys_addr_t
)(asi
& 0xf) << 32));
1939 case 0x30: // Turbosparc secondary cache diagnostic
1940 case 0x31: // Turbosparc RAM snoop
1941 case 0x32: // Turbosparc page table descriptor diagnostic
1942 case 0x39: /* data cache diagnostic register */
1943 case 0x4c: /* SuperSPARC MMU Breakpoint Action register */
1946 case 0x38: /* SuperSPARC MMU Breakpoint Control Registers */
1948 int reg
= (addr
>> 8) & 3;
1951 case 0: /* Breakpoint Value (Addr) */
1952 ret
= env
->mmubpregs
[reg
];
1954 case 1: /* Breakpoint Mask */
1955 ret
= env
->mmubpregs
[reg
];
1957 case 2: /* Breakpoint Control */
1958 ret
= env
->mmubpregs
[reg
];
1960 case 3: /* Breakpoint Status */
1961 ret
= env
->mmubpregs
[reg
];
1962 env
->mmubpregs
[reg
] = 0ULL;
1965 DPRINTF_MMU("read breakpoint reg[%d] 0x%016" PRIx64
"\n", reg
,
1969 case 8: /* User code access, XXX */
1971 do_unassigned_access(addr
, 0, 0, asi
, size
);
1981 ret
= (int16_t) ret
;
1984 ret
= (int32_t) ret
;
1991 dump_asi("read ", last_addr
, asi
, size
, ret
);
1996 void helper_st_asi(target_ulong addr
, uint64_t val
, int asi
, int size
)
1998 helper_check_align(addr
, size
- 1);
2000 case 2: /* SuperSparc MXCC registers and Leon3 cache control */
2002 case 0x00: /* Leon3 Cache Control */
2003 case 0x08: /* Leon3 Instruction Cache config */
2004 case 0x0C: /* Leon3 Date Cache config */
2005 if (env
->def
->features
& CPU_FEATURE_CACHE_CTRL
) {
2006 leon3_cache_control_st(addr
, val
, size
);
2010 case 0x01c00000: /* MXCC stream data register 0 */
2012 env
->mxccdata
[0] = val
;
2014 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr
,
2017 case 0x01c00008: /* MXCC stream data register 1 */
2019 env
->mxccdata
[1] = val
;
2021 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr
,
2024 case 0x01c00010: /* MXCC stream data register 2 */
2026 env
->mxccdata
[2] = val
;
2028 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr
,
2031 case 0x01c00018: /* MXCC stream data register 3 */
2033 env
->mxccdata
[3] = val
;
2035 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr
,
2038 case 0x01c00100: /* MXCC stream source */
2040 env
->mxccregs
[0] = val
;
2042 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr
,
2044 env
->mxccdata
[0] = ldq_phys((env
->mxccregs
[0] & 0xffffffffULL
) +
2046 env
->mxccdata
[1] = ldq_phys((env
->mxccregs
[0] & 0xffffffffULL
) +
2048 env
->mxccdata
[2] = ldq_phys((env
->mxccregs
[0] & 0xffffffffULL
) +
2050 env
->mxccdata
[3] = ldq_phys((env
->mxccregs
[0] & 0xffffffffULL
) +
2053 case 0x01c00200: /* MXCC stream destination */
2055 env
->mxccregs
[1] = val
;
2057 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr
,
2059 stq_phys((env
->mxccregs
[1] & 0xffffffffULL
) + 0,
2061 stq_phys((env
->mxccregs
[1] & 0xffffffffULL
) + 8,
2063 stq_phys((env
->mxccregs
[1] & 0xffffffffULL
) + 16,
2065 stq_phys((env
->mxccregs
[1] & 0xffffffffULL
) + 24,
2068 case 0x01c00a00: /* MXCC control register */
2070 env
->mxccregs
[3] = val
;
2072 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr
,
2075 case 0x01c00a04: /* MXCC control register */
2077 env
->mxccregs
[3] = (env
->mxccregs
[3] & 0xffffffff00000000ULL
)
2080 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr
,
2083 case 0x01c00e00: /* MXCC error register */
2084 // writing a 1 bit clears the error
2086 env
->mxccregs
[6] &= ~val
;
2088 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr
,
2091 case 0x01c00f00: /* MBus port address register */
2093 env
->mxccregs
[7] = val
;
2095 DPRINTF_MXCC("%08x: unimplemented access size: %d\n", addr
,
2099 DPRINTF_MXCC("%08x: unimplemented address, size: %d\n", addr
,
2103 DPRINTF_MXCC("asi = %d, size = %d, addr = %08x, val = %" PRIx64
"\n",
2104 asi
, size
, addr
, val
);
2109 case 3: /* MMU flush */
2113 mmulev
= (addr
>> 8) & 15;
2114 DPRINTF_MMU("mmu flush level %d\n", mmulev
);
2116 case 0: // flush page
2117 tlb_flush_page(env
, addr
& 0xfffff000);
2119 case 1: // flush segment (256k)
2120 case 2: // flush region (16M)
2121 case 3: // flush context (4G)
2122 case 4: // flush entire
2129 dump_mmu(stdout
, fprintf
, env
);
2133 case 4: /* write MMU regs */
2135 int reg
= (addr
>> 8) & 0x1f;
2138 oldreg
= env
->mmuregs
[reg
];
2140 case 0: // Control Register
2141 env
->mmuregs
[reg
] = (env
->mmuregs
[reg
] & 0xff000000) |
2143 // Mappings generated during no-fault mode or MMU
2144 // disabled mode are invalid in normal mode
2145 if ((oldreg
& (MMU_E
| MMU_NF
| env
->def
->mmu_bm
)) !=
2146 (env
->mmuregs
[reg
] & (MMU_E
| MMU_NF
| env
->def
->mmu_bm
)))
2149 case 1: // Context Table Pointer Register
2150 env
->mmuregs
[reg
] = val
& env
->def
->mmu_ctpr_mask
;
2152 case 2: // Context Register
2153 env
->mmuregs
[reg
] = val
& env
->def
->mmu_cxr_mask
;
2154 if (oldreg
!= env
->mmuregs
[reg
]) {
2155 /* we flush when the MMU context changes because
2156 QEMU has no MMU context support */
2160 case 3: // Synchronous Fault Status Register with Clear
2161 case 4: // Synchronous Fault Address Register
2163 case 0x10: // TLB Replacement Control Register
2164 env
->mmuregs
[reg
] = val
& env
->def
->mmu_trcr_mask
;
2166 case 0x13: // Synchronous Fault Status Register with Read and Clear
2167 env
->mmuregs
[3] = val
& env
->def
->mmu_sfsr_mask
;
2169 case 0x14: // Synchronous Fault Address Register
2170 env
->mmuregs
[4] = val
;
2173 env
->mmuregs
[reg
] = val
;
2176 if (oldreg
!= env
->mmuregs
[reg
]) {
2177 DPRINTF_MMU("mmu change reg[%d]: 0x%08x -> 0x%08x\n",
2178 reg
, oldreg
, env
->mmuregs
[reg
]);
2181 dump_mmu(stdout
, fprintf
, env
);
2185 case 5: // Turbosparc ITLB Diagnostic
2186 case 6: // Turbosparc DTLB Diagnostic
2187 case 7: // Turbosparc IOTLB Diagnostic
2189 case 0xa: /* User data access */
2192 stb_user(addr
, val
);
2195 stw_user(addr
, val
);
2199 stl_user(addr
, val
);
2202 stq_user(addr
, val
);
2206 case 0xb: /* Supervisor data access */
2209 stb_kernel(addr
, val
);
2212 stw_kernel(addr
, val
);
2216 stl_kernel(addr
, val
);
2219 stq_kernel(addr
, val
);
2223 case 0xc: /* I-cache tag */
2224 case 0xd: /* I-cache data */
2225 case 0xe: /* D-cache tag */
2226 case 0xf: /* D-cache data */
2227 case 0x10: /* I/D-cache flush page */
2228 case 0x11: /* I/D-cache flush segment */
2229 case 0x12: /* I/D-cache flush region */
2230 case 0x13: /* I/D-cache flush context */
2231 case 0x14: /* I/D-cache flush user */
2233 case 0x17: /* Block copy, sta access */
2239 uint32_t src
= val
& ~3, dst
= addr
& ~3, temp
;
2241 for (i
= 0; i
< 32; i
+= 4, src
+= 4, dst
+= 4) {
2242 temp
= ldl_kernel(src
);
2243 stl_kernel(dst
, temp
);
2247 case 0x1f: /* Block fill, stda access */
2250 // fill 32 bytes with val
2252 uint32_t dst
= addr
& 7;
2254 for (i
= 0; i
< 32; i
+= 8, dst
+= 8)
2255 stq_kernel(dst
, val
);
2258 case 0x20: /* MMU passthrough */
2262 stb_phys(addr
, val
);
2265 stw_phys(addr
, val
);
2269 stl_phys(addr
, val
);
2272 stq_phys(addr
, val
);
2277 case 0x21 ... 0x2f: /* MMU passthrough, 0x100000000 to 0xfffffffff */
2281 stb_phys((target_phys_addr_t
)addr
2282 | ((target_phys_addr_t
)(asi
& 0xf) << 32), val
);
2285 stw_phys((target_phys_addr_t
)addr
2286 | ((target_phys_addr_t
)(asi
& 0xf) << 32), val
);
2290 stl_phys((target_phys_addr_t
)addr
2291 | ((target_phys_addr_t
)(asi
& 0xf) << 32), val
);
2294 stq_phys((target_phys_addr_t
)addr
2295 | ((target_phys_addr_t
)(asi
& 0xf) << 32), val
);
2300 case 0x30: // store buffer tags or Turbosparc secondary cache diagnostic
2301 case 0x31: // store buffer data, Ross RT620 I-cache flush or
2302 // Turbosparc snoop RAM
2303 case 0x32: // store buffer control or Turbosparc page table
2304 // descriptor diagnostic
2305 case 0x36: /* I-cache flash clear */
2306 case 0x37: /* D-cache flash clear */
2307 case 0x4c: /* breakpoint action */
2309 case 0x38: /* SuperSPARC MMU Breakpoint Control Registers*/
2311 int reg
= (addr
>> 8) & 3;
2314 case 0: /* Breakpoint Value (Addr) */
2315 env
->mmubpregs
[reg
] = (val
& 0xfffffffffULL
);
2317 case 1: /* Breakpoint Mask */
2318 env
->mmubpregs
[reg
] = (val
& 0xfffffffffULL
);
2320 case 2: /* Breakpoint Control */
2321 env
->mmubpregs
[reg
] = (val
& 0x7fULL
);
2323 case 3: /* Breakpoint Status */
2324 env
->mmubpregs
[reg
] = (val
& 0xfULL
);
2327 DPRINTF_MMU("write breakpoint reg[%d] 0x%016x\n", reg
,
2331 case 8: /* User code access, XXX */
2332 case 9: /* Supervisor code access, XXX */
2334 do_unassigned_access(addr
, 1, 0, asi
, size
);
2338 dump_asi("write", addr
, asi
, size
, val
);
2342 #endif /* CONFIG_USER_ONLY */
2343 #else /* TARGET_SPARC64 */
2345 #ifdef CONFIG_USER_ONLY
2346 uint64_t helper_ld_asi(target_ulong addr
, int asi
, int size
, int sign
)
2349 #if defined(DEBUG_ASI)
2350 target_ulong last_addr
= addr
;
2354 raise_exception(TT_PRIV_ACT
);
2356 helper_check_align(addr
, size
- 1);
2357 addr
= asi_address_mask(env
, asi
, addr
);
2360 case 0x82: // Primary no-fault
2361 case 0x8a: // Primary no-fault LE
2362 if (page_check_range(addr
, size
, PAGE_READ
) == -1) {
2364 dump_asi("read ", last_addr
, asi
, size
, ret
);
2369 case 0x80: // Primary
2370 case 0x88: // Primary LE
2374 ret
= ldub_raw(addr
);
2377 ret
= lduw_raw(addr
);
2380 ret
= ldl_raw(addr
);
2384 ret
= ldq_raw(addr
);
2389 case 0x83: // Secondary no-fault
2390 case 0x8b: // Secondary no-fault LE
2391 if (page_check_range(addr
, size
, PAGE_READ
) == -1) {
2393 dump_asi("read ", last_addr
, asi
, size
, ret
);
2398 case 0x81: // Secondary
2399 case 0x89: // Secondary LE
2406 /* Convert from little endian */
2408 case 0x88: // Primary LE
2409 case 0x89: // Secondary LE
2410 case 0x8a: // Primary no-fault LE
2411 case 0x8b: // Secondary no-fault LE
2429 /* Convert to signed number */
2436 ret
= (int16_t) ret
;
2439 ret
= (int32_t) ret
;
2446 dump_asi("read ", last_addr
, asi
, size
, ret
);
2451 void helper_st_asi(target_ulong addr
, target_ulong val
, int asi
, int size
)
2454 dump_asi("write", addr
, asi
, size
, val
);
2457 raise_exception(TT_PRIV_ACT
);
2459 helper_check_align(addr
, size
- 1);
2460 addr
= asi_address_mask(env
, asi
, addr
);
2462 /* Convert to little endian */
2464 case 0x88: // Primary LE
2465 case 0x89: // Secondary LE
2484 case 0x80: // Primary
2485 case 0x88: // Primary LE
2504 case 0x81: // Secondary
2505 case 0x89: // Secondary LE
2509 case 0x82: // Primary no-fault, RO
2510 case 0x83: // Secondary no-fault, RO
2511 case 0x8a: // Primary no-fault LE, RO
2512 case 0x8b: // Secondary no-fault LE, RO
2514 do_unassigned_access(addr
, 1, 0, 1, size
);
2519 #else /* CONFIG_USER_ONLY */
2521 uint64_t helper_ld_asi(target_ulong addr
, int asi
, int size
, int sign
)
2524 #if defined(DEBUG_ASI)
2525 target_ulong last_addr
= addr
;
2530 if ((asi
< 0x80 && (env
->pstate
& PS_PRIV
) == 0)
2531 || (cpu_has_hypervisor(env
)
2532 && asi
>= 0x30 && asi
< 0x80
2533 && !(env
->hpstate
& HS_PRIV
)))
2534 raise_exception(TT_PRIV_ACT
);
2536 helper_check_align(addr
, size
- 1);
2537 addr
= asi_address_mask(env
, asi
, addr
);
2540 case 0x82: // Primary no-fault
2541 case 0x8a: // Primary no-fault LE
2542 case 0x83: // Secondary no-fault
2543 case 0x8b: // Secondary no-fault LE
2545 /* secondary space access has lowest asi bit equal to 1 */
2546 int access_mmu_idx
= ( asi
& 1 ) ? MMU_KERNEL_IDX
2547 : MMU_KERNEL_SECONDARY_IDX
;
2549 if (cpu_get_phys_page_nofault(env
, addr
, access_mmu_idx
) == -1ULL) {
2551 dump_asi("read ", last_addr
, asi
, size
, ret
);
2557 case 0x10: // As if user primary
2558 case 0x11: // As if user secondary
2559 case 0x18: // As if user primary LE
2560 case 0x19: // As if user secondary LE
2561 case 0x80: // Primary
2562 case 0x81: // Secondary
2563 case 0x88: // Primary LE
2564 case 0x89: // Secondary LE
2565 case 0xe2: // UA2007 Primary block init
2566 case 0xe3: // UA2007 Secondary block init
2567 if ((asi
& 0x80) && (env
->pstate
& PS_PRIV
)) {
2568 if (cpu_hypervisor_mode(env
)) {
2571 ret
= ldub_hypv(addr
);
2574 ret
= lduw_hypv(addr
);
2577 ret
= ldl_hypv(addr
);
2581 ret
= ldq_hypv(addr
);
2585 /* secondary space access has lowest asi bit equal to 1 */
2589 ret
= ldub_kernel_secondary(addr
);
2592 ret
= lduw_kernel_secondary(addr
);
2595 ret
= ldl_kernel_secondary(addr
);
2599 ret
= ldq_kernel_secondary(addr
);
2605 ret
= ldub_kernel(addr
);
2608 ret
= lduw_kernel(addr
);
2611 ret
= ldl_kernel(addr
);
2615 ret
= ldq_kernel(addr
);
2621 /* secondary space access has lowest asi bit equal to 1 */
2625 ret
= ldub_user_secondary(addr
);
2628 ret
= lduw_user_secondary(addr
);
2631 ret
= ldl_user_secondary(addr
);
2635 ret
= ldq_user_secondary(addr
);
2641 ret
= ldub_user(addr
);
2644 ret
= lduw_user(addr
);
2647 ret
= ldl_user(addr
);
2651 ret
= ldq_user(addr
);
2657 case 0x14: // Bypass
2658 case 0x15: // Bypass, non-cacheable
2659 case 0x1c: // Bypass LE
2660 case 0x1d: // Bypass, non-cacheable LE
2664 ret
= ldub_phys(addr
);
2667 ret
= lduw_phys(addr
);
2670 ret
= ldl_phys(addr
);
2674 ret
= ldq_phys(addr
);
2679 case 0x24: // Nucleus quad LDD 128 bit atomic
2680 case 0x2c: // Nucleus quad LDD 128 bit atomic LE
2681 // Only ldda allowed
2682 raise_exception(TT_ILL_INSN
);
2684 case 0x04: // Nucleus
2685 case 0x0c: // Nucleus Little Endian (LE)
2689 ret
= ldub_nucleus(addr
);
2692 ret
= lduw_nucleus(addr
);
2695 ret
= ldl_nucleus(addr
);
2699 ret
= ldq_nucleus(addr
);
2704 case 0x4a: // UPA config
2710 case 0x50: // I-MMU regs
2712 int reg
= (addr
>> 3) & 0xf;
2715 // I-TSB Tag Target register
2716 ret
= ultrasparc_tag_target(env
->immu
.tag_access
);
2718 ret
= env
->immuregs
[reg
];
2723 case 0x51: // I-MMU 8k TSB pointer
2725 // env->immuregs[5] holds I-MMU TSB register value
2726 // env->immuregs[6] holds I-MMU Tag Access register value
2727 ret
= ultrasparc_tsb_pointer(env
->immu
.tsb
, env
->immu
.tag_access
,
2731 case 0x52: // I-MMU 64k TSB pointer
2733 // env->immuregs[5] holds I-MMU TSB register value
2734 // env->immuregs[6] holds I-MMU Tag Access register value
2735 ret
= ultrasparc_tsb_pointer(env
->immu
.tsb
, env
->immu
.tag_access
,
2739 case 0x55: // I-MMU data access
2741 int reg
= (addr
>> 3) & 0x3f;
2743 ret
= env
->itlb
[reg
].tte
;
2746 case 0x56: // I-MMU tag read
2748 int reg
= (addr
>> 3) & 0x3f;
2750 ret
= env
->itlb
[reg
].tag
;
2753 case 0x58: // D-MMU regs
2755 int reg
= (addr
>> 3) & 0xf;
2758 // D-TSB Tag Target register
2759 ret
= ultrasparc_tag_target(env
->dmmu
.tag_access
);
2761 ret
= env
->dmmuregs
[reg
];
2765 case 0x59: // D-MMU 8k TSB pointer
2767 // env->dmmuregs[5] holds D-MMU TSB register value
2768 // env->dmmuregs[6] holds D-MMU Tag Access register value
2769 ret
= ultrasparc_tsb_pointer(env
->dmmu
.tsb
, env
->dmmu
.tag_access
,
2773 case 0x5a: // D-MMU 64k TSB pointer
2775 // env->dmmuregs[5] holds D-MMU TSB register value
2776 // env->dmmuregs[6] holds D-MMU Tag Access register value
2777 ret
= ultrasparc_tsb_pointer(env
->dmmu
.tsb
, env
->dmmu
.tag_access
,
2781 case 0x5d: // D-MMU data access
2783 int reg
= (addr
>> 3) & 0x3f;
2785 ret
= env
->dtlb
[reg
].tte
;
2788 case 0x5e: // D-MMU tag read
2790 int reg
= (addr
>> 3) & 0x3f;
2792 ret
= env
->dtlb
[reg
].tag
;
2795 case 0x46: // D-cache data
2796 case 0x47: // D-cache tag access
2797 case 0x4b: // E-cache error enable
2798 case 0x4c: // E-cache asynchronous fault status
2799 case 0x4d: // E-cache asynchronous fault address
2800 case 0x4e: // E-cache tag data
2801 case 0x66: // I-cache instruction access
2802 case 0x67: // I-cache tag access
2803 case 0x6e: // I-cache predecode
2804 case 0x6f: // I-cache LRU etc.
2805 case 0x76: // E-cache tag
2806 case 0x7e: // E-cache tag
2808 case 0x5b: // D-MMU data pointer
2809 case 0x48: // Interrupt dispatch, RO
2810 case 0x49: // Interrupt data receive
2811 case 0x7f: // Incoming interrupt vector, RO
2814 case 0x54: // I-MMU data in, WO
2815 case 0x57: // I-MMU demap, WO
2816 case 0x5c: // D-MMU data in, WO
2817 case 0x5f: // D-MMU demap, WO
2818 case 0x77: // Interrupt vector, WO
2820 do_unassigned_access(addr
, 0, 0, 1, size
);
2825 /* Convert from little endian */
2827 case 0x0c: // Nucleus Little Endian (LE)
2828 case 0x18: // As if user primary LE
2829 case 0x19: // As if user secondary LE
2830 case 0x1c: // Bypass LE
2831 case 0x1d: // Bypass, non-cacheable LE
2832 case 0x88: // Primary LE
2833 case 0x89: // Secondary LE
2834 case 0x8a: // Primary no-fault LE
2835 case 0x8b: // Secondary no-fault LE
2853 /* Convert to signed number */
2860 ret
= (int16_t) ret
;
2863 ret
= (int32_t) ret
;
2870 dump_asi("read ", last_addr
, asi
, size
, ret
);
2875 void helper_st_asi(target_ulong addr
, target_ulong val
, int asi
, int size
)
2878 dump_asi("write", addr
, asi
, size
, val
);
2883 if ((asi
< 0x80 && (env
->pstate
& PS_PRIV
) == 0)
2884 || (cpu_has_hypervisor(env
)
2885 && asi
>= 0x30 && asi
< 0x80
2886 && !(env
->hpstate
& HS_PRIV
)))
2887 raise_exception(TT_PRIV_ACT
);
2889 helper_check_align(addr
, size
- 1);
2890 addr
= asi_address_mask(env
, asi
, addr
);
2892 /* Convert to little endian */
2894 case 0x0c: // Nucleus Little Endian (LE)
2895 case 0x18: // As if user primary LE
2896 case 0x19: // As if user secondary LE
2897 case 0x1c: // Bypass LE
2898 case 0x1d: // Bypass, non-cacheable LE
2899 case 0x88: // Primary LE
2900 case 0x89: // Secondary LE
2919 case 0x10: // As if user primary
2920 case 0x11: // As if user secondary
2921 case 0x18: // As if user primary LE
2922 case 0x19: // As if user secondary LE
2923 case 0x80: // Primary
2924 case 0x81: // Secondary
2925 case 0x88: // Primary LE
2926 case 0x89: // Secondary LE
2927 case 0xe2: // UA2007 Primary block init
2928 case 0xe3: // UA2007 Secondary block init
2929 if ((asi
& 0x80) && (env
->pstate
& PS_PRIV
)) {
2930 if (cpu_hypervisor_mode(env
)) {
2933 stb_hypv(addr
, val
);
2936 stw_hypv(addr
, val
);
2939 stl_hypv(addr
, val
);
2943 stq_hypv(addr
, val
);
2947 /* secondary space access has lowest asi bit equal to 1 */
2951 stb_kernel_secondary(addr
, val
);
2954 stw_kernel_secondary(addr
, val
);
2957 stl_kernel_secondary(addr
, val
);
2961 stq_kernel_secondary(addr
, val
);
2967 stb_kernel(addr
, val
);
2970 stw_kernel(addr
, val
);
2973 stl_kernel(addr
, val
);
2977 stq_kernel(addr
, val
);
2983 /* secondary space access has lowest asi bit equal to 1 */
2987 stb_user_secondary(addr
, val
);
2990 stw_user_secondary(addr
, val
);
2993 stl_user_secondary(addr
, val
);
2997 stq_user_secondary(addr
, val
);
3003 stb_user(addr
, val
);
3006 stw_user(addr
, val
);
3009 stl_user(addr
, val
);
3013 stq_user(addr
, val
);
3019 case 0x14: // Bypass
3020 case 0x15: // Bypass, non-cacheable
3021 case 0x1c: // Bypass LE
3022 case 0x1d: // Bypass, non-cacheable LE
3026 stb_phys(addr
, val
);
3029 stw_phys(addr
, val
);
3032 stl_phys(addr
, val
);
3036 stq_phys(addr
, val
);
3041 case 0x24: // Nucleus quad LDD 128 bit atomic
3042 case 0x2c: // Nucleus quad LDD 128 bit atomic LE
3043 // Only ldda allowed
3044 raise_exception(TT_ILL_INSN
);
3046 case 0x04: // Nucleus
3047 case 0x0c: // Nucleus Little Endian (LE)
3051 stb_nucleus(addr
, val
);
3054 stw_nucleus(addr
, val
);
3057 stl_nucleus(addr
, val
);
3061 stq_nucleus(addr
, val
);
3067 case 0x4a: // UPA config
3075 env
->lsu
= val
& (DMMU_E
| IMMU_E
);
3076 // Mappings generated during D/I MMU disabled mode are
3077 // invalid in normal mode
3078 if (oldreg
!= env
->lsu
) {
3079 DPRINTF_MMU("LSU change: 0x%" PRIx64
" -> 0x%" PRIx64
"\n",
3082 dump_mmu(stdout
, fprintf
, env1
);
3088 case 0x50: // I-MMU regs
3090 int reg
= (addr
>> 3) & 0xf;
3093 oldreg
= env
->immuregs
[reg
];
3097 case 1: // Not in I-MMU
3102 val
= 0; // Clear SFSR
3103 env
->immu
.sfsr
= val
;
3107 case 5: // TSB access
3108 DPRINTF_MMU("immu TSB write: 0x%016" PRIx64
" -> 0x%016"
3109 PRIx64
"\n", env
->immu
.tsb
, val
);
3110 env
->immu
.tsb
= val
;
3112 case 6: // Tag access
3113 env
->immu
.tag_access
= val
;
3122 if (oldreg
!= env
->immuregs
[reg
]) {
3123 DPRINTF_MMU("immu change reg[%d]: 0x%016" PRIx64
" -> 0x%016"
3124 PRIx64
"\n", reg
, oldreg
, env
->immuregs
[reg
]);
3127 dump_mmu(stdout
, fprintf
, env
);
3131 case 0x54: // I-MMU data in
3132 replace_tlb_1bit_lru(env
->itlb
, env
->immu
.tag_access
, val
, "immu", env
);
3134 case 0x55: // I-MMU data access
3138 unsigned int i
= (addr
>> 3) & 0x3f;
3140 replace_tlb_entry(&env
->itlb
[i
], env
->immu
.tag_access
, val
, env
);
3143 DPRINTF_MMU("immu data access replaced entry [%i]\n", i
);
3144 dump_mmu(stdout
, fprintf
, env
);
3148 case 0x57: // I-MMU demap
3149 demap_tlb(env
->itlb
, addr
, "immu", env
);
3151 case 0x58: // D-MMU regs
3153 int reg
= (addr
>> 3) & 0xf;
3156 oldreg
= env
->dmmuregs
[reg
];
3162 if ((val
& 1) == 0) {
3163 val
= 0; // Clear SFSR, Fault address
3166 env
->dmmu
.sfsr
= val
;
3168 case 1: // Primary context
3169 env
->dmmu
.mmu_primary_context
= val
;
3170 /* can be optimized to only flush MMU_USER_IDX
3171 and MMU_KERNEL_IDX entries */
3174 case 2: // Secondary context
3175 env
->dmmu
.mmu_secondary_context
= val
;
3176 /* can be optimized to only flush MMU_USER_SECONDARY_IDX
3177 and MMU_KERNEL_SECONDARY_IDX entries */
3180 case 5: // TSB access
3181 DPRINTF_MMU("dmmu TSB write: 0x%016" PRIx64
" -> 0x%016"
3182 PRIx64
"\n", env
->dmmu
.tsb
, val
);
3183 env
->dmmu
.tsb
= val
;
3185 case 6: // Tag access
3186 env
->dmmu
.tag_access
= val
;
3188 case 7: // Virtual Watchpoint
3189 case 8: // Physical Watchpoint
3191 env
->dmmuregs
[reg
] = val
;
3195 if (oldreg
!= env
->dmmuregs
[reg
]) {
3196 DPRINTF_MMU("dmmu change reg[%d]: 0x%016" PRIx64
" -> 0x%016"
3197 PRIx64
"\n", reg
, oldreg
, env
->dmmuregs
[reg
]);
3200 dump_mmu(stdout
, fprintf
, env
);
3204 case 0x5c: // D-MMU data in
3205 replace_tlb_1bit_lru(env
->dtlb
, env
->dmmu
.tag_access
, val
, "dmmu", env
);
3207 case 0x5d: // D-MMU data access
3209 unsigned int i
= (addr
>> 3) & 0x3f;
3211 replace_tlb_entry(&env
->dtlb
[i
], env
->dmmu
.tag_access
, val
, env
);
3214 DPRINTF_MMU("dmmu data access replaced entry [%i]\n", i
);
3215 dump_mmu(stdout
, fprintf
, env
);
3219 case 0x5f: // D-MMU demap
3220 demap_tlb(env
->dtlb
, addr
, "dmmu", env
);
3222 case 0x49: // Interrupt data receive
3225 case 0x46: // D-cache data
3226 case 0x47: // D-cache tag access
3227 case 0x4b: // E-cache error enable
3228 case 0x4c: // E-cache asynchronous fault status
3229 case 0x4d: // E-cache asynchronous fault address
3230 case 0x4e: // E-cache tag data
3231 case 0x66: // I-cache instruction access
3232 case 0x67: // I-cache tag access
3233 case 0x6e: // I-cache predecode
3234 case 0x6f: // I-cache LRU etc.
3235 case 0x76: // E-cache tag
3236 case 0x7e: // E-cache tag
3238 case 0x51: // I-MMU 8k TSB pointer, RO
3239 case 0x52: // I-MMU 64k TSB pointer, RO
3240 case 0x56: // I-MMU tag read, RO
3241 case 0x59: // D-MMU 8k TSB pointer, RO
3242 case 0x5a: // D-MMU 64k TSB pointer, RO
3243 case 0x5b: // D-MMU data pointer, RO
3244 case 0x5e: // D-MMU tag read, RO
3245 case 0x48: // Interrupt dispatch, RO
3246 case 0x7f: // Incoming interrupt vector, RO
3247 case 0x82: // Primary no-fault, RO
3248 case 0x83: // Secondary no-fault, RO
3249 case 0x8a: // Primary no-fault LE, RO
3250 case 0x8b: // Secondary no-fault LE, RO
3252 do_unassigned_access(addr
, 1, 0, 1, size
);
3256 #endif /* CONFIG_USER_ONLY */
3258 void helper_ldda_asi(target_ulong addr
, int asi
, int rd
)
3260 if ((asi
< 0x80 && (env
->pstate
& PS_PRIV
) == 0)
3261 || (cpu_has_hypervisor(env
)
3262 && asi
>= 0x30 && asi
< 0x80
3263 && !(env
->hpstate
& HS_PRIV
)))
3264 raise_exception(TT_PRIV_ACT
);
3266 addr
= asi_address_mask(env
, asi
, addr
);
3269 #if !defined(CONFIG_USER_ONLY)
3270 case 0x24: // Nucleus quad LDD 128 bit atomic
3271 case 0x2c: // Nucleus quad LDD 128 bit atomic LE
3272 helper_check_align(addr
, 0xf);
3274 env
->gregs
[1] = ldq_nucleus(addr
+ 8);
3276 bswap64s(&env
->gregs
[1]);
3277 } else if (rd
< 8) {
3278 env
->gregs
[rd
] = ldq_nucleus(addr
);
3279 env
->gregs
[rd
+ 1] = ldq_nucleus(addr
+ 8);
3281 bswap64s(&env
->gregs
[rd
]);
3282 bswap64s(&env
->gregs
[rd
+ 1]);
3285 env
->regwptr
[rd
] = ldq_nucleus(addr
);
3286 env
->regwptr
[rd
+ 1] = ldq_nucleus(addr
+ 8);
3288 bswap64s(&env
->regwptr
[rd
]);
3289 bswap64s(&env
->regwptr
[rd
+ 1]);
3295 helper_check_align(addr
, 0x3);
3297 env
->gregs
[1] = helper_ld_asi(addr
+ 4, asi
, 4, 0);
3299 env
->gregs
[rd
] = helper_ld_asi(addr
, asi
, 4, 0);
3300 env
->gregs
[rd
+ 1] = helper_ld_asi(addr
+ 4, asi
, 4, 0);
3302 env
->regwptr
[rd
] = helper_ld_asi(addr
, asi
, 4, 0);
3303 env
->regwptr
[rd
+ 1] = helper_ld_asi(addr
+ 4, asi
, 4, 0);
3309 void helper_ldf_asi(target_ulong addr
, int asi
, int size
, int rd
)
3314 helper_check_align(addr
, 3);
3315 addr
= asi_address_mask(env
, asi
, addr
);
3318 case 0xf0: // Block load primary
3319 case 0xf1: // Block load secondary
3320 case 0xf8: // Block load primary LE
3321 case 0xf9: // Block load secondary LE
3323 raise_exception(TT_ILL_INSN
);
3326 helper_check_align(addr
, 0x3f);
3327 for (i
= 0; i
< 16; i
++) {
3328 *(uint32_t *)&env
->fpr
[rd
++] = helper_ld_asi(addr
, asi
& 0x8f, 4,
3334 case 0x70: // Block load primary, user privilege
3335 case 0x71: // Block load secondary, user privilege
3337 raise_exception(TT_ILL_INSN
);
3340 helper_check_align(addr
, 0x3f);
3341 for (i
= 0; i
< 16; i
++) {
3342 *(uint32_t *)&env
->fpr
[rd
++] = helper_ld_asi(addr
, asi
& 0x1f, 4,
3352 val
= helper_ld_asi(addr
, asi
, size
, 0);
3356 *((uint32_t *)&env
->fpr
[rd
]) = val
;
3359 *((int64_t *)&DT0
) = val
;
3367 void helper_stf_asi(target_ulong addr
, int asi
, int size
, int rd
)
3370 target_ulong val
= 0;
3372 helper_check_align(addr
, 3);
3373 addr
= asi_address_mask(env
, asi
, addr
);
3376 case 0xe0: // UA2007 Block commit store primary (cache flush)
3377 case 0xe1: // UA2007 Block commit store secondary (cache flush)
3378 case 0xf0: // Block store primary
3379 case 0xf1: // Block store secondary
3380 case 0xf8: // Block store primary LE
3381 case 0xf9: // Block store secondary LE
3383 raise_exception(TT_ILL_INSN
);
3386 helper_check_align(addr
, 0x3f);
3387 for (i
= 0; i
< 16; i
++) {
3388 val
= *(uint32_t *)&env
->fpr
[rd
++];
3389 helper_st_asi(addr
, val
, asi
& 0x8f, 4);
3394 case 0x70: // Block store primary, user privilege
3395 case 0x71: // Block store secondary, user privilege
3397 raise_exception(TT_ILL_INSN
);
3400 helper_check_align(addr
, 0x3f);
3401 for (i
= 0; i
< 16; i
++) {
3402 val
= *(uint32_t *)&env
->fpr
[rd
++];
3403 helper_st_asi(addr
, val
, asi
& 0x1f, 4);
3415 val
= *((uint32_t *)&env
->fpr
[rd
]);
3418 val
= *((int64_t *)&DT0
);
3424 helper_st_asi(addr
, val
, asi
, size
);
3427 target_ulong
helper_cas_asi(target_ulong addr
, target_ulong val1
,
3428 target_ulong val2
, uint32_t asi
)
3432 val2
&= 0xffffffffUL
;
3433 ret
= helper_ld_asi(addr
, asi
, 4, 0);
3434 ret
&= 0xffffffffUL
;
3436 helper_st_asi(addr
, val1
& 0xffffffffUL
, asi
, 4);
3440 target_ulong
helper_casx_asi(target_ulong addr
, target_ulong val1
,
3441 target_ulong val2
, uint32_t asi
)
3445 ret
= helper_ld_asi(addr
, asi
, 8, 0);
3447 helper_st_asi(addr
, val1
, asi
, 8);
3450 #endif /* TARGET_SPARC64 */
3452 #ifndef TARGET_SPARC64
3453 void helper_rett(void)
3457 if (env
->psret
== 1)
3458 raise_exception(TT_ILL_INSN
);
3461 cwp
= cwp_inc(env
->cwp
+ 1) ;
3462 if (env
->wim
& (1 << cwp
)) {
3463 raise_exception(TT_WIN_UNF
);
3466 env
->psrs
= env
->psrps
;
3470 static target_ulong
helper_udiv_common(target_ulong a
, target_ulong b
, int cc
)
3476 x0
= (a
& 0xffffffff) | ((int64_t) (env
->y
) << 32);
3477 x1
= (b
& 0xffffffff);
3480 raise_exception(TT_DIV_ZERO
);
3484 if (x0
> 0xffffffff) {
3491 env
->cc_src2
= overflow
;
3492 env
->cc_op
= CC_OP_DIV
;
3497 target_ulong
helper_udiv(target_ulong a
, target_ulong b
)
3499 return helper_udiv_common(a
, b
, 0);
3502 target_ulong
helper_udiv_cc(target_ulong a
, target_ulong b
)
3504 return helper_udiv_common(a
, b
, 1);
3507 static target_ulong
helper_sdiv_common(target_ulong a
, target_ulong b
, int cc
)
3513 x0
= (a
& 0xffffffff) | ((int64_t) (env
->y
) << 32);
3514 x1
= (b
& 0xffffffff);
3517 raise_exception(TT_DIV_ZERO
);
3521 if ((int32_t) x0
!= x0
) {
3522 x0
= x0
< 0 ? 0x80000000: 0x7fffffff;
3528 env
->cc_src2
= overflow
;
3529 env
->cc_op
= CC_OP_DIV
;
3534 target_ulong
helper_sdiv(target_ulong a
, target_ulong b
)
3536 return helper_sdiv_common(a
, b
, 0);
3539 target_ulong
helper_sdiv_cc(target_ulong a
, target_ulong b
)
3541 return helper_sdiv_common(a
, b
, 1);
3544 void helper_stdf(target_ulong addr
, int mem_idx
)
3546 helper_check_align(addr
, 7);
3547 #if !defined(CONFIG_USER_ONLY)
3550 stfq_user(addr
, DT0
);
3552 case MMU_KERNEL_IDX
:
3553 stfq_kernel(addr
, DT0
);
3555 #ifdef TARGET_SPARC64
3557 stfq_hypv(addr
, DT0
);
3561 DPRINTF_MMU("helper_stdf: need to check MMU idx %d\n", mem_idx
);
3565 stfq_raw(address_mask(env
, addr
), DT0
);
3569 void helper_lddf(target_ulong addr
, int mem_idx
)
3571 helper_check_align(addr
, 7);
3572 #if !defined(CONFIG_USER_ONLY)
3575 DT0
= ldfq_user(addr
);
3577 case MMU_KERNEL_IDX
:
3578 DT0
= ldfq_kernel(addr
);
3580 #ifdef TARGET_SPARC64
3582 DT0
= ldfq_hypv(addr
);
3586 DPRINTF_MMU("helper_lddf: need to check MMU idx %d\n", mem_idx
);
3590 DT0
= ldfq_raw(address_mask(env
, addr
));
3594 void helper_ldqf(target_ulong addr
, int mem_idx
)
3596 // XXX add 128 bit load
3599 helper_check_align(addr
, 7);
3600 #if !defined(CONFIG_USER_ONLY)
3603 u
.ll
.upper
= ldq_user(addr
);
3604 u
.ll
.lower
= ldq_user(addr
+ 8);
3607 case MMU_KERNEL_IDX
:
3608 u
.ll
.upper
= ldq_kernel(addr
);
3609 u
.ll
.lower
= ldq_kernel(addr
+ 8);
3612 #ifdef TARGET_SPARC64
3614 u
.ll
.upper
= ldq_hypv(addr
);
3615 u
.ll
.lower
= ldq_hypv(addr
+ 8);
3620 DPRINTF_MMU("helper_ldqf: need to check MMU idx %d\n", mem_idx
);
3624 u
.ll
.upper
= ldq_raw(address_mask(env
, addr
));
3625 u
.ll
.lower
= ldq_raw(address_mask(env
, addr
+ 8));
3630 void helper_stqf(target_ulong addr
, int mem_idx
)
3632 // XXX add 128 bit store
3635 helper_check_align(addr
, 7);
3636 #if !defined(CONFIG_USER_ONLY)
3640 stq_user(addr
, u
.ll
.upper
);
3641 stq_user(addr
+ 8, u
.ll
.lower
);
3643 case MMU_KERNEL_IDX
:
3645 stq_kernel(addr
, u
.ll
.upper
);
3646 stq_kernel(addr
+ 8, u
.ll
.lower
);
3648 #ifdef TARGET_SPARC64
3651 stq_hypv(addr
, u
.ll
.upper
);
3652 stq_hypv(addr
+ 8, u
.ll
.lower
);
3656 DPRINTF_MMU("helper_stqf: need to check MMU idx %d\n", mem_idx
);
3661 stq_raw(address_mask(env
, addr
), u
.ll
.upper
);
3662 stq_raw(address_mask(env
, addr
+ 8), u
.ll
.lower
);
3666 static inline void set_fsr(void)
3670 switch (env
->fsr
& FSR_RD_MASK
) {
3671 case FSR_RD_NEAREST
:
3672 rnd_mode
= float_round_nearest_even
;
3676 rnd_mode
= float_round_to_zero
;
3679 rnd_mode
= float_round_up
;
3682 rnd_mode
= float_round_down
;
3685 set_float_rounding_mode(rnd_mode
, &env
->fp_status
);
3688 void helper_ldfsr(uint32_t new_fsr
)
3690 env
->fsr
= (new_fsr
& FSR_LDFSR_MASK
) | (env
->fsr
& FSR_LDFSR_OLDMASK
);
3694 #ifdef TARGET_SPARC64
3695 void helper_ldxfsr(uint64_t new_fsr
)
3697 env
->fsr
= (new_fsr
& FSR_LDXFSR_MASK
) | (env
->fsr
& FSR_LDXFSR_OLDMASK
);
3702 void helper_debug(void)
3704 env
->exception_index
= EXCP_DEBUG
;
3708 #ifndef TARGET_SPARC64
3709 /* XXX: use another pointer for %iN registers to avoid slow wrapping
3711 void helper_save(void)
3715 cwp
= cwp_dec(env
->cwp
- 1);
3716 if (env
->wim
& (1 << cwp
)) {
3717 raise_exception(TT_WIN_OVF
);
3722 void helper_restore(void)
3726 cwp
= cwp_inc(env
->cwp
+ 1);
3727 if (env
->wim
& (1 << cwp
)) {
3728 raise_exception(TT_WIN_UNF
);
3733 void helper_wrpsr(target_ulong new_psr
)
3735 if ((new_psr
& PSR_CWP
) >= env
->nwindows
) {
3736 raise_exception(TT_ILL_INSN
);
3738 cpu_put_psr(env
, new_psr
);
3742 target_ulong
helper_rdpsr(void)
3748 /* XXX: use another pointer for %iN registers to avoid slow wrapping
3750 void helper_save(void)
3754 cwp
= cwp_dec(env
->cwp
- 1);
3755 if (env
->cansave
== 0) {
3756 raise_exception(TT_SPILL
| (env
->otherwin
!= 0 ?
3757 (TT_WOTHER
| ((env
->wstate
& 0x38) >> 1)):
3758 ((env
->wstate
& 0x7) << 2)));
3760 if (env
->cleanwin
- env
->canrestore
== 0) {
3761 // XXX Clean windows without trap
3762 raise_exception(TT_CLRWIN
);
3771 void helper_restore(void)
3775 cwp
= cwp_inc(env
->cwp
+ 1);
3776 if (env
->canrestore
== 0) {
3777 raise_exception(TT_FILL
| (env
->otherwin
!= 0 ?
3778 (TT_WOTHER
| ((env
->wstate
& 0x38) >> 1)):
3779 ((env
->wstate
& 0x7) << 2)));
3787 void helper_flushw(void)
3789 if (env
->cansave
!= env
->nwindows
- 2) {
3790 raise_exception(TT_SPILL
| (env
->otherwin
!= 0 ?
3791 (TT_WOTHER
| ((env
->wstate
& 0x38) >> 1)):
3792 ((env
->wstate
& 0x7) << 2)));
3796 void helper_saved(void)
3799 if (env
->otherwin
== 0)
3805 void helper_restored(void)
3808 if (env
->cleanwin
< env
->nwindows
- 1)
3810 if (env
->otherwin
== 0)
3816 static target_ulong
get_ccr(void)
3822 return ((env
->xcc
>> 20) << 4) | ((psr
& PSR_ICC
) >> 20);
3825 target_ulong
cpu_get_ccr(CPUState
*env1
)
3827 CPUState
*saved_env
;
3837 static void put_ccr(target_ulong val
)
3839 target_ulong tmp
= val
;
3841 env
->xcc
= (tmp
>> 4) << 20;
3842 env
->psr
= (tmp
& 0xf) << 20;
3843 CC_OP
= CC_OP_FLAGS
;
3846 void cpu_put_ccr(CPUState
*env1
, target_ulong val
)
3848 CPUState
*saved_env
;
3856 static target_ulong
get_cwp64(void)
3858 return env
->nwindows
- 1 - env
->cwp
;
3861 target_ulong
cpu_get_cwp64(CPUState
*env1
)
3863 CPUState
*saved_env
;
3873 static void put_cwp64(int cwp
)
3875 if (unlikely(cwp
>= env
->nwindows
|| cwp
< 0)) {
3876 cwp
%= env
->nwindows
;
3878 set_cwp(env
->nwindows
- 1 - cwp
);
3881 void cpu_put_cwp64(CPUState
*env1
, int cwp
)
3883 CPUState
*saved_env
;
3891 target_ulong
helper_rdccr(void)
3896 void helper_wrccr(target_ulong new_ccr
)
3901 // CWP handling is reversed in V9, but we still use the V8 register
3903 target_ulong
helper_rdcwp(void)
3908 void helper_wrcwp(target_ulong new_cwp
)
3913 // This function uses non-native bit order
3914 #define GET_FIELD(X, FROM, TO) \
3915 ((X) >> (63 - (TO)) & ((1ULL << ((TO) - (FROM) + 1)) - 1))
3917 // This function uses the order in the manuals, i.e. bit 0 is 2^0
3918 #define GET_FIELD_SP(X, FROM, TO) \
3919 GET_FIELD(X, 63 - (TO), 63 - (FROM))
3921 target_ulong
helper_array8(target_ulong pixel_addr
, target_ulong cubesize
)
3923 return (GET_FIELD_SP(pixel_addr
, 60, 63) << (17 + 2 * cubesize
)) |
3924 (GET_FIELD_SP(pixel_addr
, 39, 39 + cubesize
- 1) << (17 + cubesize
)) |
3925 (GET_FIELD_SP(pixel_addr
, 17 + cubesize
- 1, 17) << 17) |
3926 (GET_FIELD_SP(pixel_addr
, 56, 59) << 13) |
3927 (GET_FIELD_SP(pixel_addr
, 35, 38) << 9) |
3928 (GET_FIELD_SP(pixel_addr
, 13, 16) << 5) |
3929 (((pixel_addr
>> 55) & 1) << 4) |
3930 (GET_FIELD_SP(pixel_addr
, 33, 34) << 2) |
3931 GET_FIELD_SP(pixel_addr
, 11, 12);
3934 target_ulong
helper_alignaddr(target_ulong addr
, target_ulong offset
)
3938 tmp
= addr
+ offset
;
3940 env
->gsr
|= tmp
& 7ULL;
3944 target_ulong
helper_popc(target_ulong val
)
3946 return ctpop64(val
);
3949 static inline uint64_t *get_gregset(uint32_t pstate
)
3953 DPRINTF_PSTATE("ERROR in get_gregset: active pstate bits=%x%s%s%s\n",
3955 (pstate
& PS_IG
) ? " IG" : "",
3956 (pstate
& PS_MG
) ? " MG" : "",
3957 (pstate
& PS_AG
) ? " AG" : "");
3958 /* pass through to normal set of global registers */
3970 static inline void change_pstate(uint32_t new_pstate
)
3972 uint32_t pstate_regs
, new_pstate_regs
;
3973 uint64_t *src
, *dst
;
3975 if (env
->def
->features
& CPU_FEATURE_GL
) {
3976 // PS_AG is not implemented in this case
3977 new_pstate
&= ~PS_AG
;
3980 pstate_regs
= env
->pstate
& 0xc01;
3981 new_pstate_regs
= new_pstate
& 0xc01;
3983 if (new_pstate_regs
!= pstate_regs
) {
3984 DPRINTF_PSTATE("change_pstate: switching regs old=%x new=%x\n",
3985 pstate_regs
, new_pstate_regs
);
3986 // Switch global register bank
3987 src
= get_gregset(new_pstate_regs
);
3988 dst
= get_gregset(pstate_regs
);
3989 memcpy32(dst
, env
->gregs
);
3990 memcpy32(env
->gregs
, src
);
3993 DPRINTF_PSTATE("change_pstate: regs new=%x (unchanged)\n",
3996 env
->pstate
= new_pstate
;
3999 void helper_wrpstate(target_ulong new_state
)
4001 change_pstate(new_state
& 0xf3f);
4003 #if !defined(CONFIG_USER_ONLY)
4004 if (cpu_interrupts_enabled(env
)) {
4005 cpu_check_irqs(env
);
4010 void helper_wrpil(target_ulong new_pil
)
4012 #if !defined(CONFIG_USER_ONLY)
4013 DPRINTF_PSTATE("helper_wrpil old=%x new=%x\n",
4014 env
->psrpil
, (uint32_t)new_pil
);
4016 env
->psrpil
= new_pil
;
4018 if (cpu_interrupts_enabled(env
)) {
4019 cpu_check_irqs(env
);
4024 void helper_done(void)
4026 trap_state
* tsptr
= cpu_tsptr(env
);
4028 env
->pc
= tsptr
->tnpc
;
4029 env
->npc
= tsptr
->tnpc
+ 4;
4030 put_ccr(tsptr
->tstate
>> 32);
4031 env
->asi
= (tsptr
->tstate
>> 24) & 0xff;
4032 change_pstate((tsptr
->tstate
>> 8) & 0xf3f);
4033 put_cwp64(tsptr
->tstate
& 0xff);
4036 DPRINTF_PSTATE("... helper_done tl=%d\n", env
->tl
);
4038 #if !defined(CONFIG_USER_ONLY)
4039 if (cpu_interrupts_enabled(env
)) {
4040 cpu_check_irqs(env
);
4045 void helper_retry(void)
4047 trap_state
* tsptr
= cpu_tsptr(env
);
4049 env
->pc
= tsptr
->tpc
;
4050 env
->npc
= tsptr
->tnpc
;
4051 put_ccr(tsptr
->tstate
>> 32);
4052 env
->asi
= (tsptr
->tstate
>> 24) & 0xff;
4053 change_pstate((tsptr
->tstate
>> 8) & 0xf3f);
4054 put_cwp64(tsptr
->tstate
& 0xff);
4057 DPRINTF_PSTATE("... helper_retry tl=%d\n", env
->tl
);
4059 #if !defined(CONFIG_USER_ONLY)
4060 if (cpu_interrupts_enabled(env
)) {
4061 cpu_check_irqs(env
);
4066 static void do_modify_softint(const char* operation
, uint32_t value
)
4068 if (env
->softint
!= value
) {
4069 env
->softint
= value
;
4070 DPRINTF_PSTATE(": %s new %08x\n", operation
, env
->softint
);
4071 #if !defined(CONFIG_USER_ONLY)
4072 if (cpu_interrupts_enabled(env
)) {
4073 cpu_check_irqs(env
);
4079 void helper_set_softint(uint64_t value
)
4081 do_modify_softint("helper_set_softint", env
->softint
| (uint32_t)value
);
4084 void helper_clear_softint(uint64_t value
)
4086 do_modify_softint("helper_clear_softint", env
->softint
& (uint32_t)~value
);
4089 void helper_write_softint(uint64_t value
)
4091 do_modify_softint("helper_write_softint", (uint32_t)value
);
4095 void helper_flush(target_ulong addr
)
4098 tb_invalidate_page_range(addr
, addr
+ 8);
4101 #ifdef TARGET_SPARC64
4103 static const char * const excp_names
[0x80] = {
4104 [TT_TFAULT
] = "Instruction Access Fault",
4105 [TT_TMISS
] = "Instruction Access MMU Miss",
4106 [TT_CODE_ACCESS
] = "Instruction Access Error",
4107 [TT_ILL_INSN
] = "Illegal Instruction",
4108 [TT_PRIV_INSN
] = "Privileged Instruction",
4109 [TT_NFPU_INSN
] = "FPU Disabled",
4110 [TT_FP_EXCP
] = "FPU Exception",
4111 [TT_TOVF
] = "Tag Overflow",
4112 [TT_CLRWIN
] = "Clean Windows",
4113 [TT_DIV_ZERO
] = "Division By Zero",
4114 [TT_DFAULT
] = "Data Access Fault",
4115 [TT_DMISS
] = "Data Access MMU Miss",
4116 [TT_DATA_ACCESS
] = "Data Access Error",
4117 [TT_DPROT
] = "Data Protection Error",
4118 [TT_UNALIGNED
] = "Unaligned Memory Access",
4119 [TT_PRIV_ACT
] = "Privileged Action",
4120 [TT_EXTINT
| 0x1] = "External Interrupt 1",
4121 [TT_EXTINT
| 0x2] = "External Interrupt 2",
4122 [TT_EXTINT
| 0x3] = "External Interrupt 3",
4123 [TT_EXTINT
| 0x4] = "External Interrupt 4",
4124 [TT_EXTINT
| 0x5] = "External Interrupt 5",
4125 [TT_EXTINT
| 0x6] = "External Interrupt 6",
4126 [TT_EXTINT
| 0x7] = "External Interrupt 7",
4127 [TT_EXTINT
| 0x8] = "External Interrupt 8",
4128 [TT_EXTINT
| 0x9] = "External Interrupt 9",
4129 [TT_EXTINT
| 0xa] = "External Interrupt 10",
4130 [TT_EXTINT
| 0xb] = "External Interrupt 11",
4131 [TT_EXTINT
| 0xc] = "External Interrupt 12",
4132 [TT_EXTINT
| 0xd] = "External Interrupt 13",
4133 [TT_EXTINT
| 0xe] = "External Interrupt 14",
4134 [TT_EXTINT
| 0xf] = "External Interrupt 15",
4138 trap_state
* cpu_tsptr(CPUState
* env
)
4140 return &env
->ts
[env
->tl
& MAXTL_MASK
];
4143 void do_interrupt(CPUState
*env
)
4145 int intno
= env
->exception_index
;
4149 if (qemu_loglevel_mask(CPU_LOG_INT
)) {
4153 if (intno
< 0 || intno
>= 0x180)
4155 else if (intno
>= 0x100)
4156 name
= "Trap Instruction";
4157 else if (intno
>= 0xc0)
4158 name
= "Window Fill";
4159 else if (intno
>= 0x80)
4160 name
= "Window Spill";
4162 name
= excp_names
[intno
];
4167 qemu_log("%6d: %s (v=%04x) pc=%016" PRIx64
" npc=%016" PRIx64
4168 " SP=%016" PRIx64
"\n",
4171 env
->npc
, env
->regwptr
[6]);
4172 log_cpu_state(env
, 0);
4179 ptr
= (uint8_t *)env
->pc
;
4180 for(i
= 0; i
< 16; i
++) {
4181 qemu_log(" %02x", ldub(ptr
+ i
));
4189 #if !defined(CONFIG_USER_ONLY)
4190 if (env
->tl
>= env
->maxtl
) {
4191 cpu_abort(env
, "Trap 0x%04x while trap level (%d) >= MAXTL (%d),"
4192 " Error state", env
->exception_index
, env
->tl
, env
->maxtl
);
4196 if (env
->tl
< env
->maxtl
- 1) {
4199 env
->pstate
|= PS_RED
;
4200 if (env
->tl
< env
->maxtl
)
4203 tsptr
= cpu_tsptr(env
);
4205 tsptr
->tstate
= (get_ccr() << 32) |
4206 ((env
->asi
& 0xff) << 24) | ((env
->pstate
& 0xf3f) << 8) |
4208 tsptr
->tpc
= env
->pc
;
4209 tsptr
->tnpc
= env
->npc
;
4214 change_pstate(PS_PEF
| PS_PRIV
| PS_IG
);
4218 case TT_TMISS
... TT_TMISS
+ 3:
4219 case TT_DMISS
... TT_DMISS
+ 3:
4220 case TT_DPROT
... TT_DPROT
+ 3:
4221 change_pstate(PS_PEF
| PS_PRIV
| PS_MG
);
4224 change_pstate(PS_PEF
| PS_PRIV
| PS_AG
);
4228 if (intno
== TT_CLRWIN
) {
4229 set_cwp(cwp_dec(env
->cwp
- 1));
4230 } else if ((intno
& 0x1c0) == TT_SPILL
) {
4231 set_cwp(cwp_dec(env
->cwp
- env
->cansave
- 2));
4232 } else if ((intno
& 0x1c0) == TT_FILL
) {
4233 set_cwp(cwp_inc(env
->cwp
+ 1));
4235 env
->tbr
&= ~0x7fffULL
;
4236 env
->tbr
|= ((env
->tl
> 1) ? 1 << 14 : 0) | (intno
<< 5);
4238 env
->npc
= env
->pc
+ 4;
4239 env
->exception_index
= -1;
4243 static const char * const excp_names
[0x80] = {
4244 [TT_TFAULT
] = "Instruction Access Fault",
4245 [TT_ILL_INSN
] = "Illegal Instruction",
4246 [TT_PRIV_INSN
] = "Privileged Instruction",
4247 [TT_NFPU_INSN
] = "FPU Disabled",
4248 [TT_WIN_OVF
] = "Window Overflow",
4249 [TT_WIN_UNF
] = "Window Underflow",
4250 [TT_UNALIGNED
] = "Unaligned Memory Access",
4251 [TT_FP_EXCP
] = "FPU Exception",
4252 [TT_DFAULT
] = "Data Access Fault",
4253 [TT_TOVF
] = "Tag Overflow",
4254 [TT_EXTINT
| 0x1] = "External Interrupt 1",
4255 [TT_EXTINT
| 0x2] = "External Interrupt 2",
4256 [TT_EXTINT
| 0x3] = "External Interrupt 3",
4257 [TT_EXTINT
| 0x4] = "External Interrupt 4",
4258 [TT_EXTINT
| 0x5] = "External Interrupt 5",
4259 [TT_EXTINT
| 0x6] = "External Interrupt 6",
4260 [TT_EXTINT
| 0x7] = "External Interrupt 7",
4261 [TT_EXTINT
| 0x8] = "External Interrupt 8",
4262 [TT_EXTINT
| 0x9] = "External Interrupt 9",
4263 [TT_EXTINT
| 0xa] = "External Interrupt 10",
4264 [TT_EXTINT
| 0xb] = "External Interrupt 11",
4265 [TT_EXTINT
| 0xc] = "External Interrupt 12",
4266 [TT_EXTINT
| 0xd] = "External Interrupt 13",
4267 [TT_EXTINT
| 0xe] = "External Interrupt 14",
4268 [TT_EXTINT
| 0xf] = "External Interrupt 15",
4269 [TT_TOVF
] = "Tag Overflow",
4270 [TT_CODE_ACCESS
] = "Instruction Access Error",
4271 [TT_DATA_ACCESS
] = "Data Access Error",
4272 [TT_DIV_ZERO
] = "Division By Zero",
4273 [TT_NCP_INSN
] = "Coprocessor Disabled",
4277 void do_interrupt(CPUState
*env
)
4279 int cwp
, intno
= env
->exception_index
;
4282 if (qemu_loglevel_mask(CPU_LOG_INT
)) {
4286 if (intno
< 0 || intno
>= 0x100)
4288 else if (intno
>= 0x80)
4289 name
= "Trap Instruction";
4291 name
= excp_names
[intno
];
4296 qemu_log("%6d: %s (v=%02x) pc=%08x npc=%08x SP=%08x\n",
4299 env
->npc
, env
->regwptr
[6]);
4300 log_cpu_state(env
, 0);
4307 ptr
= (uint8_t *)env
->pc
;
4308 for(i
= 0; i
< 16; i
++) {
4309 qemu_log(" %02x", ldub(ptr
+ i
));
4317 #if !defined(CONFIG_USER_ONLY)
4318 if (env
->psret
== 0) {
4319 cpu_abort(env
, "Trap 0x%02x while interrupts disabled, Error state",
4320 env
->exception_index
);
4325 cwp
= cwp_dec(env
->cwp
- 1);
4327 env
->regwptr
[9] = env
->pc
;
4328 env
->regwptr
[10] = env
->npc
;
4329 env
->psrps
= env
->psrs
;
4331 env
->tbr
= (env
->tbr
& TBR_BASE_MASK
) | (intno
<< 4);
4333 env
->npc
= env
->pc
+ 4;
4334 env
->exception_index
= -1;
4336 #if !defined(CONFIG_USER_ONLY)
4337 /* IRQ acknowledgment */
4338 if ((intno
& ~15) == TT_EXTINT
&& env
->qemu_irq_ack
!= NULL
) {
4339 env
->qemu_irq_ack(env
->irq_manager
, intno
);
4345 #if !defined(CONFIG_USER_ONLY)
4347 static void do_unaligned_access(target_ulong addr
, int is_write
, int is_user
,
4350 #define MMUSUFFIX _mmu
4351 #define ALIGNED_ONLY
4354 #include "softmmu_template.h"
4357 #include "softmmu_template.h"
4360 #include "softmmu_template.h"
4363 #include "softmmu_template.h"
4365 /* XXX: make it generic ? */
4366 static void cpu_restore_state2(void *retaddr
)
4368 TranslationBlock
*tb
;
4372 /* now we have a real cpu fault */
4373 pc
= (unsigned long)retaddr
;
4374 tb
= tb_find_pc(pc
);
4376 /* the PC is inside the translated code. It means that we have
4377 a virtual CPU fault */
4378 cpu_restore_state(tb
, env
, pc
, (void *)(long)env
->cond
);
4383 static void do_unaligned_access(target_ulong addr
, int is_write
, int is_user
,
4386 #ifdef DEBUG_UNALIGNED
4387 printf("Unaligned access to 0x" TARGET_FMT_lx
" from 0x" TARGET_FMT_lx
4388 "\n", addr
, env
->pc
);
4390 cpu_restore_state2(retaddr
);
4391 raise_exception(TT_UNALIGNED
);
4394 /* try to fill the TLB and return an exception if error. If retaddr is
4395 NULL, it means that the function was called in C code (i.e. not
4396 from generated code or from helper.c) */
4397 /* XXX: fix it to restore all registers */
4398 void tlb_fill(target_ulong addr
, int is_write
, int mmu_idx
, void *retaddr
)
4401 CPUState
*saved_env
;
4403 /* XXX: hack to restore env in all cases, even if not called from
4406 env
= cpu_single_env
;
4408 ret
= cpu_sparc_handle_mmu_fault(env
, addr
, is_write
, mmu_idx
, 1);
4410 cpu_restore_state2(retaddr
);
4416 #endif /* !CONFIG_USER_ONLY */
4418 #ifndef TARGET_SPARC64
4419 #if !defined(CONFIG_USER_ONLY)
4420 void do_unassigned_access(target_phys_addr_t addr
, int is_write
, int is_exec
,
4421 int is_asi
, int size
)
4423 CPUState
*saved_env
;
4426 /* XXX: hack to restore env in all cases, even if not called from
4429 env
= cpu_single_env
;
4430 #ifdef DEBUG_UNASSIGNED
4432 printf("Unassigned mem %s access of %d byte%s to " TARGET_FMT_plx
4433 " asi 0x%02x from " TARGET_FMT_lx
"\n",
4434 is_exec
? "exec" : is_write
? "write" : "read", size
,
4435 size
== 1 ? "" : "s", addr
, is_asi
, env
->pc
);
4437 printf("Unassigned mem %s access of %d byte%s to " TARGET_FMT_plx
4438 " from " TARGET_FMT_lx
"\n",
4439 is_exec
? "exec" : is_write
? "write" : "read", size
,
4440 size
== 1 ? "" : "s", addr
, env
->pc
);
4442 /* Don't overwrite translation and access faults */
4443 fault_type
= (env
->mmuregs
[3] & 0x1c) >> 2;
4444 if ((fault_type
> 4) || (fault_type
== 0)) {
4445 env
->mmuregs
[3] = 0; /* Fault status register */
4447 env
->mmuregs
[3] |= 1 << 16;
4449 env
->mmuregs
[3] |= 1 << 5;
4451 env
->mmuregs
[3] |= 1 << 6;
4453 env
->mmuregs
[3] |= 1 << 7;
4454 env
->mmuregs
[3] |= (5 << 2) | 2;
4455 /* SuperSPARC will never place instruction fault addresses in the FAR */
4457 env
->mmuregs
[4] = addr
; /* Fault address register */
4460 /* overflow (same type fault was not read before another fault) */
4461 if (fault_type
== ((env
->mmuregs
[3] & 0x1c)) >> 2) {
4462 env
->mmuregs
[3] |= 1;
4465 if ((env
->mmuregs
[0] & MMU_E
) && !(env
->mmuregs
[0] & MMU_NF
)) {
4467 raise_exception(TT_CODE_ACCESS
);
4469 raise_exception(TT_DATA_ACCESS
);
4472 /* flush neverland mappings created during no-fault mode,
4473 so the sequential MMU faults report proper fault types */
4474 if (env
->mmuregs
[0] & MMU_NF
) {
4482 #if defined(CONFIG_USER_ONLY)
4483 static void do_unassigned_access(target_ulong addr
, int is_write
, int is_exec
,
4484 int is_asi
, int size
)
4486 void do_unassigned_access(target_phys_addr_t addr
, int is_write
, int is_exec
,
4487 int is_asi
, int size
)
4490 CPUState
*saved_env
;
4492 /* XXX: hack to restore env in all cases, even if not called from
4495 env
= cpu_single_env
;
4497 #ifdef DEBUG_UNASSIGNED
4498 printf("Unassigned mem access to " TARGET_FMT_plx
" from " TARGET_FMT_lx
4499 "\n", addr
, env
->pc
);
4503 raise_exception(TT_CODE_ACCESS
);
4505 raise_exception(TT_DATA_ACCESS
);
4512 #ifdef TARGET_SPARC64
4513 void helper_tick_set_count(void *opaque
, uint64_t count
)
4515 #if !defined(CONFIG_USER_ONLY)
4516 cpu_tick_set_count(opaque
, count
);
4520 uint64_t helper_tick_get_count(void *opaque
)
4522 #if !defined(CONFIG_USER_ONLY)
4523 return cpu_tick_get_count(opaque
);
4529 void helper_tick_set_limit(void *opaque
, uint64_t limit
)
4531 #if !defined(CONFIG_USER_ONLY)
4532 cpu_tick_set_limit(opaque
, limit
);