blob: 61eb2c374a02747c1e93bb1dae012b7f9f034c79 [file] [log] [blame]
Guan Xuetao6e64da32011-04-12 16:25:59 +08001/*
Guan Xuetao4f23a1e2012-08-10 14:42:21 +08002 * Copyright (C) 2010-2012 Guan Xuetao
Guan Xuetao6e64da32011-04-12 16:25:59 +08003 *
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.
Andreas Färberc3a8baa2012-03-15 15:02:14 +01007 *
8 * Contributions from 2012-04-01 on are considered under GPL version 2,
9 * or (at your option) any later version.
Guan Xuetao6e64da32011-04-12 16:25:59 +080010 */
Guan Xuetao6e64da32011-04-12 16:25:59 +080011
12#include "cpu.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010013#include "exec/gdbstub.h"
Guan Xuetao6e64da32011-04-12 16:25:59 +080014#include "helper.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010015#include "qemu/host-utils.h"
Robert Schiele74880fe2012-12-04 16:58:08 +010016#ifndef CONFIG_USER_ONLY
Paolo Bonzini28ecbae2012-11-28 12:06:30 +010017#include "ui/console.h"
Robert Schiele74880fe2012-12-04 16:58:08 +010018#endif
Guan Xuetao6e64da32011-04-12 16:25:59 +080019
Guan Xuetao527d9972012-08-10 14:42:22 +080020#undef DEBUG_UC32
21
22#ifdef DEBUG_UC32
23#define DPRINTF(fmt, ...) printf("%s: " fmt , __func__, ## __VA_ARGS__)
24#else
25#define DPRINTF(fmt, ...) do {} while (0)
26#endif
27
Andreas Färbereb23b552012-03-14 01:38:23 +010028CPUUniCore32State *uc32_cpu_init(const char *cpu_model)
Guan Xuetao6e64da32011-04-12 16:25:59 +080029{
Andreas Färberae0f5e92012-02-14 01:16:17 +010030 UniCore32CPU *cpu;
Andreas Färbereb23b552012-03-14 01:38:23 +010031 CPUUniCore32State *env;
Andreas Färberd89e1212013-01-23 12:07:17 +010032 ObjectClass *oc;
Guan Xuetao6e64da32011-04-12 16:25:59 +080033
Andreas Färberd89e1212013-01-23 12:07:17 +010034 oc = cpu_class_by_name(TYPE_UNICORE32_CPU, cpu_model);
35 if (oc == NULL) {
Andreas Färberae0f5e92012-02-14 01:16:17 +010036 return NULL;
37 }
Andreas Färberd89e1212013-01-23 12:07:17 +010038 cpu = UNICORE32_CPU(object_new(object_class_get_name(oc)));
Andreas Färberae0f5e92012-02-14 01:16:17 +010039 env = &cpu->env;
Andreas Färbereeb266d2013-01-27 23:25:25 +010040 env->cpu_model_str = cpu_model;
Guan Xuetao6e64da32011-04-12 16:25:59 +080041
Andreas Färber088383e2013-01-05 14:38:30 +010042 object_property_set_bool(OBJECT(cpu), true, "realized", NULL);
43
Guan Xuetao6e64da32011-04-12 16:25:59 +080044 return env;
45}
46
47uint32_t HELPER(clo)(uint32_t x)
48{
49 return clo32(x);
50}
51
52uint32_t HELPER(clz)(uint32_t x)
53{
54 return clz32(x);
55}
56
Guan Xuetao527d9972012-08-10 14:42:22 +080057#ifndef CONFIG_USER_ONLY
58void helper_cp0_set(CPUUniCore32State *env, uint32_t val, uint32_t creg,
59 uint32_t cop)
60{
61 /*
62 * movc pp.nn, rn, #imm9
63 * rn: UCOP_REG_D
64 * nn: UCOP_REG_N
65 * 1: sys control reg.
66 * 2: page table base reg.
67 * 3: data fault status reg.
68 * 4: insn fault status reg.
69 * 5: cache op. reg.
70 * 6: tlb op. reg.
71 * imm9: split UCOP_IMM10 with bit5 is 0
72 */
73 switch (creg) {
74 case 1:
75 if (cop != 0) {
76 goto unrecognized;
77 }
78 env->cp0.c1_sys = val;
79 break;
80 case 2:
81 if (cop != 0) {
82 goto unrecognized;
83 }
84 env->cp0.c2_base = val;
85 break;
86 case 3:
87 if (cop != 0) {
88 goto unrecognized;
89 }
90 env->cp0.c3_faultstatus = val;
91 break;
92 case 4:
93 if (cop != 0) {
94 goto unrecognized;
95 }
96 env->cp0.c4_faultaddr = val;
97 break;
98 case 5:
99 switch (cop) {
100 case 28:
101 DPRINTF("Invalidate Entire I&D cache\n");
102 return;
103 case 20:
104 DPRINTF("Invalidate Entire Icache\n");
105 return;
106 case 12:
107 DPRINTF("Invalidate Entire Dcache\n");
108 return;
109 case 10:
110 DPRINTF("Clean Entire Dcache\n");
111 return;
112 case 14:
113 DPRINTF("Flush Entire Dcache\n");
114 return;
115 case 13:
116 DPRINTF("Invalidate Dcache line\n");
117 return;
118 case 11:
119 DPRINTF("Clean Dcache line\n");
120 return;
121 case 15:
122 DPRINTF("Flush Dcache line\n");
123 return;
124 }
125 break;
126 case 6:
127 if ((cop <= 6) && (cop >= 2)) {
128 /* invalid all tlb */
129 tlb_flush(env, 1);
130 return;
131 }
132 break;
133 default:
134 goto unrecognized;
135 }
136 return;
137unrecognized:
138 DPRINTF("Wrong register (%d) or wrong operation (%d) in cp0_set!\n",
139 creg, cop);
140}
141
142uint32_t helper_cp0_get(CPUUniCore32State *env, uint32_t creg, uint32_t cop)
143{
144 /*
145 * movc rd, pp.nn, #imm9
146 * rd: UCOP_REG_D
147 * nn: UCOP_REG_N
148 * 0: cpuid and cachetype
149 * 1: sys control reg.
150 * 2: page table base reg.
151 * 3: data fault status reg.
152 * 4: insn fault status reg.
153 * imm9: split UCOP_IMM10 with bit5 is 0
154 */
155 switch (creg) {
156 case 0:
157 switch (cop) {
158 case 0:
159 return env->cp0.c0_cpuid;
160 case 1:
161 return env->cp0.c0_cachetype;
162 }
163 break;
164 case 1:
165 if (cop == 0) {
166 return env->cp0.c1_sys;
167 }
168 break;
169 case 2:
170 if (cop == 0) {
171 return env->cp0.c2_base;
172 }
173 break;
174 case 3:
175 if (cop == 0) {
176 return env->cp0.c3_faultstatus;
177 }
178 break;
179 case 4:
180 if (cop == 0) {
181 return env->cp0.c4_faultaddr;
182 }
183 break;
184 }
185 DPRINTF("Wrong register (%d) or wrong operation (%d) in cp0_set!\n",
186 creg, cop);
187 return 0;
188}
189
Guan Xuetaoff5928d2012-08-10 14:42:39 +0800190#ifdef CONFIG_CURSES
191/*
192 * FIXME:
193 * 1. curses windows will be blank when switching back
194 * 2. backspace is not handled yet
195 */
196static void putc_on_screen(unsigned char ch)
197{
198 static WINDOW *localwin;
199 static int init;
200
201 if (!init) {
202 /* Assume 80 * 30 screen to minimize the implementation */
203 localwin = newwin(30, 80, 0, 0);
204 scrollok(localwin, TRUE);
205 init = TRUE;
206 }
207
208 if (isprint(ch)) {
209 wprintw(localwin, "%c", ch);
210 } else {
211 switch (ch) {
212 case '\n':
213 wprintw(localwin, "%c", ch);
214 break;
215 case '\r':
216 /* If '\r' is put before '\n', the curses window will destroy the
217 * last print line. And meanwhile, '\n' implifies '\r' inside. */
218 break;
219 default: /* Not handled, so just print it hex code */
220 wprintw(localwin, "-- 0x%x --", ch);
221 }
222 }
223
224 wrefresh(localwin);
225}
226#else
227#define putc_on_screen(c) do { } while (0)
228#endif
229
Guan Xuetao527d9972012-08-10 14:42:22 +0800230void helper_cp1_putc(target_ulong x)
231{
Guan Xuetaoff5928d2012-08-10 14:42:39 +0800232 putc_on_screen((unsigned char)x); /* Output to screen */
233 DPRINTF("%c", x); /* Output to stdout */
Guan Xuetao527d9972012-08-10 14:42:22 +0800234}
235#endif
236
Guan Xuetao4f23a1e2012-08-10 14:42:21 +0800237#ifdef CONFIG_USER_ONLY
238void switch_mode(CPUUniCore32State *env, int mode)
Guan Xuetao6e64da32011-04-12 16:25:59 +0800239{
Guan Xuetao4f23a1e2012-08-10 14:42:21 +0800240 if (mode != ASR_MODE_USER) {
241 cpu_abort(env, "Tried to switch out of user mode\n");
242 }
Guan Xuetao6e64da32011-04-12 16:25:59 +0800243}
244
Andreas Färber97a8ea52013-02-02 10:57:51 +0100245void uc32_cpu_do_interrupt(CPUState *cs)
Guan Xuetao6e64da32011-04-12 16:25:59 +0800246{
Andreas Färber97a8ea52013-02-02 10:57:51 +0100247 UniCore32CPU *cpu = UNICORE32_CPU(cs);
248 CPUUniCore32State *env = &cpu->env;
249
Guan Xuetao4f23a1e2012-08-10 14:42:21 +0800250 cpu_abort(env, "NO interrupt in user mode\n");
251}
252
253int uc32_cpu_handle_mmu_fault(CPUUniCore32State *env, target_ulong address,
254 int access_type, int mmu_idx)
255{
256 cpu_abort(env, "NO mmu fault in user mode\n");
Guan Xuetao6e64da32011-04-12 16:25:59 +0800257 return 1;
258}
Guan Xuetao4f23a1e2012-08-10 14:42:21 +0800259#endif