iotests: test external snapshot with bitmap copying
[qemu/ar7.git] / target / unicore32 / helper.c
blob0d4914b48d6a9a5cdf5e4fb9d556e8f0a4a5b4d5
1 /*
2 * Copyright (C) 2010-2012 Guan Xuetao
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * Contributions from 2012-04-01 on are considered under GPL version 2,
9 * or (at your option) any later version.
12 #include "qemu/osdep.h"
13 #include "cpu.h"
14 #include "exec/exec-all.h"
15 #include "exec/gdbstub.h"
16 #include "exec/helper-proto.h"
17 #include "qemu/host-utils.h"
18 #ifndef CONFIG_USER_ONLY
19 #include "ui/console.h"
20 #endif
22 #undef DEBUG_UC32
24 #ifdef DEBUG_UC32
25 #define DPRINTF(fmt, ...) printf("%s: " fmt , __func__, ## __VA_ARGS__)
26 #else
27 #define DPRINTF(fmt, ...) do {} while (0)
28 #endif
30 #ifndef CONFIG_USER_ONLY
31 void helper_cp0_set(CPUUniCore32State *env, uint32_t val, uint32_t creg,
32 uint32_t cop)
34 UniCore32CPU *cpu = uc32_env_get_cpu(env);
37 * movc pp.nn, rn, #imm9
38 * rn: UCOP_REG_D
39 * nn: UCOP_REG_N
40 * 1: sys control reg.
41 * 2: page table base reg.
42 * 3: data fault status reg.
43 * 4: insn fault status reg.
44 * 5: cache op. reg.
45 * 6: tlb op. reg.
46 * imm9: split UCOP_IMM10 with bit5 is 0
48 switch (creg) {
49 case 1:
50 if (cop != 0) {
51 goto unrecognized;
53 env->cp0.c1_sys = val;
54 break;
55 case 2:
56 if (cop != 0) {
57 goto unrecognized;
59 env->cp0.c2_base = val;
60 break;
61 case 3:
62 if (cop != 0) {
63 goto unrecognized;
65 env->cp0.c3_faultstatus = val;
66 break;
67 case 4:
68 if (cop != 0) {
69 goto unrecognized;
71 env->cp0.c4_faultaddr = val;
72 break;
73 case 5:
74 switch (cop) {
75 case 28:
76 DPRINTF("Invalidate Entire I&D cache\n");
77 return;
78 case 20:
79 DPRINTF("Invalidate Entire Icache\n");
80 return;
81 case 12:
82 DPRINTF("Invalidate Entire Dcache\n");
83 return;
84 case 10:
85 DPRINTF("Clean Entire Dcache\n");
86 return;
87 case 14:
88 DPRINTF("Flush Entire Dcache\n");
89 return;
90 case 13:
91 DPRINTF("Invalidate Dcache line\n");
92 return;
93 case 11:
94 DPRINTF("Clean Dcache line\n");
95 return;
96 case 15:
97 DPRINTF("Flush Dcache line\n");
98 return;
100 break;
101 case 6:
102 if ((cop <= 6) && (cop >= 2)) {
103 /* invalid all tlb */
104 tlb_flush(CPU(cpu));
105 return;
107 break;
108 default:
109 goto unrecognized;
111 return;
112 unrecognized:
113 DPRINTF("Wrong register (%d) or wrong operation (%d) in cp0_set!\n",
114 creg, cop);
117 uint32_t helper_cp0_get(CPUUniCore32State *env, uint32_t creg, uint32_t cop)
120 * movc rd, pp.nn, #imm9
121 * rd: UCOP_REG_D
122 * nn: UCOP_REG_N
123 * 0: cpuid and cachetype
124 * 1: sys control reg.
125 * 2: page table base reg.
126 * 3: data fault status reg.
127 * 4: insn fault status reg.
128 * imm9: split UCOP_IMM10 with bit5 is 0
130 switch (creg) {
131 case 0:
132 switch (cop) {
133 case 0:
134 return env->cp0.c0_cpuid;
135 case 1:
136 return env->cp0.c0_cachetype;
138 break;
139 case 1:
140 if (cop == 0) {
141 return env->cp0.c1_sys;
143 break;
144 case 2:
145 if (cop == 0) {
146 return env->cp0.c2_base;
148 break;
149 case 3:
150 if (cop == 0) {
151 return env->cp0.c3_faultstatus;
153 break;
154 case 4:
155 if (cop == 0) {
156 return env->cp0.c4_faultaddr;
158 break;
160 DPRINTF("Wrong register (%d) or wrong operation (%d) in cp0_set!\n",
161 creg, cop);
162 return 0;
165 #ifdef CONFIG_CURSES
167 /* KEY_EVENT is defined in wincon.h and in curses.h. Avoid redefinition. */
168 #undef KEY_EVENT
169 #include <curses.h>
170 #undef KEY_EVENT
173 * FIXME:
174 * 1. curses windows will be blank when switching back
175 * 2. backspace is not handled yet
177 static void putc_on_screen(unsigned char ch)
179 static WINDOW *localwin;
180 static int init;
182 if (!init) {
183 /* Assume 80 * 30 screen to minimize the implementation */
184 localwin = newwin(30, 80, 0, 0);
185 scrollok(localwin, TRUE);
186 init = TRUE;
189 if (isprint(ch)) {
190 wprintw(localwin, "%c", ch);
191 } else {
192 switch (ch) {
193 case '\n':
194 wprintw(localwin, "%c", ch);
195 break;
196 case '\r':
197 /* If '\r' is put before '\n', the curses window will destroy the
198 * last print line. And meanwhile, '\n' implifies '\r' inside. */
199 break;
200 default: /* Not handled, so just print it hex code */
201 wprintw(localwin, "-- 0x%x --", ch);
205 wrefresh(localwin);
207 #else
208 #define putc_on_screen(c) do { } while (0)
209 #endif
211 void helper_cp1_putc(target_ulong x)
213 putc_on_screen((unsigned char)x); /* Output to screen */
214 DPRINTF("%c", x); /* Output to stdout */
216 #endif
218 bool uc32_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
220 if (interrupt_request & CPU_INTERRUPT_HARD) {
221 UniCore32CPU *cpu = UNICORE32_CPU(cs);
222 CPUUniCore32State *env = &cpu->env;
224 if (!(env->uncached_asr & ASR_I)) {
225 cs->exception_index = UC32_EXCP_INTR;
226 uc32_cpu_do_interrupt(cs);
227 return true;
230 return false;