4 * Copyright (c) 2012 Jia Liu <proljc@gmail.com>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
21 #include "qapi/error.h"
22 #include "qemu/qemu-print.h"
25 static void openrisc_cpu_set_pc(CPUState
*cs
, vaddr value
)
27 OpenRISCCPU
*cpu
= OPENRISC_CPU(cs
);
33 static bool openrisc_cpu_has_work(CPUState
*cs
)
35 return cs
->interrupt_request
& (CPU_INTERRUPT_HARD
|
39 static void openrisc_disas_set_info(CPUState
*cpu
, disassemble_info
*info
)
41 info
->print_insn
= print_insn_or1k
;
44 static void openrisc_cpu_reset(DeviceState
*dev
)
46 CPUState
*s
= CPU(dev
);
47 OpenRISCCPU
*cpu
= OPENRISC_CPU(s
);
48 OpenRISCCPUClass
*occ
= OPENRISC_CPU_GET_CLASS(cpu
);
50 occ
->parent_reset(dev
);
52 memset(&cpu
->env
, 0, offsetof(CPUOpenRISCState
, end_reset_fields
));
55 cpu
->env
.sr
= SR_FO
| SR_SM
;
56 cpu
->env
.lock_addr
= -1;
57 s
->exception_index
= -1;
58 cpu_set_fpcsr(&cpu
->env
, 0);
60 #ifndef CONFIG_USER_ONLY
61 cpu
->env
.picmr
= 0x00000000;
62 cpu
->env
.picsr
= 0x00000000;
64 cpu
->env
.ttmr
= 0x00000000;
68 #ifndef CONFIG_USER_ONLY
69 static void openrisc_cpu_set_irq(void *opaque
, int irq
, int level
)
71 OpenRISCCPU
*cpu
= (OpenRISCCPU
*)opaque
;
72 CPUState
*cs
= CPU(cpu
);
75 if (irq
> 31 || irq
< 0) {
82 cpu
->env
.picsr
|= irq_bit
;
84 cpu
->env
.picsr
&= ~irq_bit
;
87 if (cpu
->env
.picsr
& cpu
->env
.picmr
) {
88 cpu_interrupt(cs
, CPU_INTERRUPT_HARD
);
90 cpu_reset_interrupt(cs
, CPU_INTERRUPT_HARD
);
96 static void openrisc_cpu_realizefn(DeviceState
*dev
, Error
**errp
)
98 CPUState
*cs
= CPU(dev
);
99 OpenRISCCPUClass
*occ
= OPENRISC_CPU_GET_CLASS(dev
);
100 Error
*local_err
= NULL
;
102 cpu_exec_realizefn(cs
, &local_err
);
103 if (local_err
!= NULL
) {
104 error_propagate(errp
, local_err
);
111 occ
->parent_realize(dev
, errp
);
114 static void openrisc_cpu_initfn(Object
*obj
)
116 OpenRISCCPU
*cpu
= OPENRISC_CPU(obj
);
118 cpu_set_cpustate_pointers(cpu
);
120 #ifndef CONFIG_USER_ONLY
121 qdev_init_gpio_in_named(DEVICE(cpu
), openrisc_cpu_set_irq
, "IRQ", NR_IRQS
);
127 static ObjectClass
*openrisc_cpu_class_by_name(const char *cpu_model
)
132 typename
= g_strdup_printf(OPENRISC_CPU_TYPE_NAME("%s"), cpu_model
);
133 oc
= object_class_by_name(typename
);
135 if (oc
!= NULL
&& (!object_class_dynamic_cast(oc
, TYPE_OPENRISC_CPU
) ||
136 object_class_is_abstract(oc
))) {
142 static void or1200_initfn(Object
*obj
)
144 OpenRISCCPU
*cpu
= OPENRISC_CPU(obj
);
146 cpu
->env
.vr
= 0x13000008;
147 cpu
->env
.upr
= UPR_UP
| UPR_DMP
| UPR_IMP
| UPR_PICP
| UPR_TTP
| UPR_PMP
;
148 cpu
->env
.cpucfgr
= CPUCFGR_NSGF
| CPUCFGR_OB32S
| CPUCFGR_OF32S
|
151 /* 1Way, TLB_SIZE entries. */
152 cpu
->env
.dmmucfgr
= (DMMUCFGR_NTW
& (0 << 2))
153 | (DMMUCFGR_NTS
& (ctz32(TLB_SIZE
) << 2));
154 cpu
->env
.immucfgr
= (IMMUCFGR_NTW
& (0 << 2))
155 | (IMMUCFGR_NTS
& (ctz32(TLB_SIZE
) << 2));
158 static void openrisc_any_initfn(Object
*obj
)
160 OpenRISCCPU
*cpu
= OPENRISC_CPU(obj
);
162 cpu
->env
.vr
= 0x13000040; /* Obsolete VER + UVRP for new SPRs */
163 cpu
->env
.vr2
= 0; /* No version specific id */
164 cpu
->env
.avr
= 0x01030000; /* Architecture v1.3 */
166 cpu
->env
.upr
= UPR_UP
| UPR_DMP
| UPR_IMP
| UPR_PICP
| UPR_TTP
| UPR_PMP
;
167 cpu
->env
.cpucfgr
= CPUCFGR_NSGF
| CPUCFGR_OB32S
| CPUCFGR_OF32S
|
168 CPUCFGR_AVRP
| CPUCFGR_EVBARP
| CPUCFGR_OF64A32S
;
170 /* 1Way, TLB_SIZE entries. */
171 cpu
->env
.dmmucfgr
= (DMMUCFGR_NTW
& (0 << 2))
172 | (DMMUCFGR_NTS
& (ctz32(TLB_SIZE
) << 2));
173 cpu
->env
.immucfgr
= (IMMUCFGR_NTW
& (0 << 2))
174 | (IMMUCFGR_NTS
& (ctz32(TLB_SIZE
) << 2));
177 static void openrisc_cpu_class_init(ObjectClass
*oc
, void *data
)
179 OpenRISCCPUClass
*occ
= OPENRISC_CPU_CLASS(oc
);
180 CPUClass
*cc
= CPU_CLASS(occ
);
181 DeviceClass
*dc
= DEVICE_CLASS(oc
);
183 device_class_set_parent_realize(dc
, openrisc_cpu_realizefn
,
184 &occ
->parent_realize
);
185 device_class_set_parent_reset(dc
, openrisc_cpu_reset
, &occ
->parent_reset
);
187 cc
->class_by_name
= openrisc_cpu_class_by_name
;
188 cc
->has_work
= openrisc_cpu_has_work
;
189 cc
->do_interrupt
= openrisc_cpu_do_interrupt
;
190 cc
->cpu_exec_interrupt
= openrisc_cpu_exec_interrupt
;
191 cc
->dump_state
= openrisc_cpu_dump_state
;
192 cc
->set_pc
= openrisc_cpu_set_pc
;
193 cc
->gdb_read_register
= openrisc_cpu_gdb_read_register
;
194 cc
->gdb_write_register
= openrisc_cpu_gdb_write_register
;
195 cc
->tlb_fill
= openrisc_cpu_tlb_fill
;
196 #ifndef CONFIG_USER_ONLY
197 cc
->get_phys_page_debug
= openrisc_cpu_get_phys_page_debug
;
198 dc
->vmsd
= &vmstate_openrisc_cpu
;
200 cc
->gdb_num_core_regs
= 32 + 3;
201 cc
->tcg_initialize
= openrisc_translate_init
;
202 cc
->disas_set_info
= openrisc_disas_set_info
;
205 /* Sort alphabetically by type name, except for "any". */
206 static gint
openrisc_cpu_list_compare(gconstpointer a
, gconstpointer b
)
208 ObjectClass
*class_a
= (ObjectClass
*)a
;
209 ObjectClass
*class_b
= (ObjectClass
*)b
;
210 const char *name_a
, *name_b
;
212 name_a
= object_class_get_name(class_a
);
213 name_b
= object_class_get_name(class_b
);
214 if (strcmp(name_a
, "any-" TYPE_OPENRISC_CPU
) == 0) {
216 } else if (strcmp(name_b
, "any-" TYPE_OPENRISC_CPU
) == 0) {
219 return strcmp(name_a
, name_b
);
223 static void openrisc_cpu_list_entry(gpointer data
, gpointer user_data
)
225 ObjectClass
*oc
= data
;
226 const char *typename
;
229 typename
= object_class_get_name(oc
);
230 name
= g_strndup(typename
,
231 strlen(typename
) - strlen("-" TYPE_OPENRISC_CPU
));
232 qemu_printf(" %s\n", name
);
236 void cpu_openrisc_list(void)
240 list
= object_class_get_list(TYPE_OPENRISC_CPU
, false);
241 list
= g_slist_sort(list
, openrisc_cpu_list_compare
);
242 qemu_printf("Available CPUs:\n");
243 g_slist_foreach(list
, openrisc_cpu_list_entry
, NULL
);
247 #define DEFINE_OPENRISC_CPU_TYPE(cpu_model, initfn) \
249 .parent = TYPE_OPENRISC_CPU, \
250 .instance_init = initfn, \
251 .name = OPENRISC_CPU_TYPE_NAME(cpu_model), \
254 static const TypeInfo openrisc_cpus_type_infos
[] = {
255 { /* base class should be registered first */
256 .name
= TYPE_OPENRISC_CPU
,
258 .instance_size
= sizeof(OpenRISCCPU
),
259 .instance_init
= openrisc_cpu_initfn
,
261 .class_size
= sizeof(OpenRISCCPUClass
),
262 .class_init
= openrisc_cpu_class_init
,
264 DEFINE_OPENRISC_CPU_TYPE("or1200", or1200_initfn
),
265 DEFINE_OPENRISC_CPU_TYPE("any", openrisc_any_initfn
),
268 DEFINE_TYPES(openrisc_cpus_type_infos
)