4 * Copyright (c) 2010-2012 Guan Xuetao
5 * Copyright (c) 2012 SUSE LINUX Products GmbH
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * Contributions from 2012-04-01 on are considered under GPL version 2,
12 * or (at your option) any later version.
15 #include "qemu/osdep.h"
16 #include "qapi/error.h"
18 #include "qemu-common.h"
19 #include "migration/vmstate.h"
20 #include "exec/exec-all.h"
21 #include "fpu/softfloat.h"
23 static void uc32_cpu_set_pc(CPUState
*cs
, vaddr value
)
25 UniCore32CPU
*cpu
= UNICORE32_CPU(cs
);
27 cpu
->env
.regs
[31] = value
;
30 static bool uc32_cpu_has_work(CPUState
*cs
)
32 return cs
->interrupt_request
&
33 (CPU_INTERRUPT_HARD
| CPU_INTERRUPT_EXITTB
);
36 static inline void set_feature(CPUUniCore32State
*env
, int feature
)
38 env
->features
|= feature
;
43 static ObjectClass
*uc32_cpu_class_by_name(const char *cpu_model
)
48 typename
= g_strdup_printf(UNICORE32_CPU_TYPE_NAME("%s"), cpu_model
);
49 oc
= object_class_by_name(typename
);
51 if (oc
!= NULL
&& (!object_class_dynamic_cast(oc
, TYPE_UNICORE32_CPU
) ||
52 object_class_is_abstract(oc
))) {
58 static void unicore_ii_cpu_initfn(Object
*obj
)
60 UniCore32CPU
*cpu
= UNICORE32_CPU(obj
);
61 CPUUniCore32State
*env
= &cpu
->env
;
63 env
->cp0
.c0_cpuid
= 0x4d000863;
64 env
->cp0
.c0_cachetype
= 0x0d152152;
65 env
->cp0
.c1_sys
= 0x2000;
66 env
->cp0
.c2_base
= 0x0;
67 env
->cp0
.c3_faultstatus
= 0x0;
68 env
->cp0
.c4_faultaddr
= 0x0;
69 env
->ucf64
.xregs
[UC32_UCF64_FPSCR
] = 0;
71 set_feature(env
, UC32_HWCAP_CMOV
);
72 set_feature(env
, UC32_HWCAP_UCF64
);
75 static void uc32_any_cpu_initfn(Object
*obj
)
77 UniCore32CPU
*cpu
= UNICORE32_CPU(obj
);
78 CPUUniCore32State
*env
= &cpu
->env
;
80 env
->cp0
.c0_cpuid
= 0xffffffff;
81 env
->ucf64
.xregs
[UC32_UCF64_FPSCR
] = 0;
83 set_feature(env
, UC32_HWCAP_CMOV
);
84 set_feature(env
, UC32_HWCAP_UCF64
);
87 static void uc32_cpu_realizefn(DeviceState
*dev
, Error
**errp
)
89 CPUState
*cs
= CPU(dev
);
90 UniCore32CPUClass
*ucc
= UNICORE32_CPU_GET_CLASS(dev
);
91 Error
*local_err
= NULL
;
93 cpu_exec_realizefn(cs
, &local_err
);
94 if (local_err
!= NULL
) {
95 error_propagate(errp
, local_err
);
101 ucc
->parent_realize(dev
, errp
);
104 static void uc32_cpu_initfn(Object
*obj
)
106 CPUState
*cs
= CPU(obj
);
107 UniCore32CPU
*cpu
= UNICORE32_CPU(obj
);
108 CPUUniCore32State
*env
= &cpu
->env
;
112 #ifdef CONFIG_USER_ONLY
113 env
->uncached_asr
= ASR_MODE_USER
;
116 env
->uncached_asr
= ASR_MODE_PRIV
;
117 env
->regs
[31] = 0x03000000;
123 static const VMStateDescription vmstate_uc32_cpu
= {
128 static void uc32_cpu_class_init(ObjectClass
*oc
, void *data
)
130 DeviceClass
*dc
= DEVICE_CLASS(oc
);
131 CPUClass
*cc
= CPU_CLASS(oc
);
132 UniCore32CPUClass
*ucc
= UNICORE32_CPU_CLASS(oc
);
134 device_class_set_parent_realize(dc
, uc32_cpu_realizefn
,
135 &ucc
->parent_realize
);
137 cc
->class_by_name
= uc32_cpu_class_by_name
;
138 cc
->has_work
= uc32_cpu_has_work
;
139 cc
->do_interrupt
= uc32_cpu_do_interrupt
;
140 cc
->cpu_exec_interrupt
= uc32_cpu_exec_interrupt
;
141 cc
->dump_state
= uc32_cpu_dump_state
;
142 cc
->set_pc
= uc32_cpu_set_pc
;
143 #ifdef CONFIG_USER_ONLY
144 cc
->handle_mmu_fault
= uc32_cpu_handle_mmu_fault
;
146 cc
->get_phys_page_debug
= uc32_cpu_get_phys_page_debug
;
148 cc
->tcg_initialize
= uc32_translate_init
;
149 dc
->vmsd
= &vmstate_uc32_cpu
;
152 #define DEFINE_UNICORE32_CPU_TYPE(cpu_model, initfn) \
154 .parent = TYPE_UNICORE32_CPU, \
155 .instance_init = initfn, \
156 .name = UNICORE32_CPU_TYPE_NAME(cpu_model), \
159 static const TypeInfo uc32_cpu_type_infos
[] = {
161 .name
= TYPE_UNICORE32_CPU
,
163 .instance_size
= sizeof(UniCore32CPU
),
164 .instance_init
= uc32_cpu_initfn
,
166 .class_size
= sizeof(UniCore32CPUClass
),
167 .class_init
= uc32_cpu_class_init
,
169 DEFINE_UNICORE32_CPU_TYPE("UniCore-II", unicore_ii_cpu_initfn
),
170 DEFINE_UNICORE32_CPU_TYPE("any", uc32_any_cpu_initfn
),
173 DEFINE_TYPES(uc32_cpu_type_infos
)