4 * Copyright (c) 2011, Max Filippov, Open Source and Linux Lab.
5 * Copyright (c) 2012 SUSE LINUX Products GmbH
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * * Neither the name of the Open Source and Linux Lab nor the
16 * names of its contributors may be used to endorse or promote products
17 * derived from this software without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
23 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 #include "qemu-common.h"
33 #include "migration/vmstate.h"
36 static void xtensa_cpu_set_pc(CPUState
*cs
, vaddr value
)
38 XtensaCPU
*cpu
= XTENSA_CPU(cs
);
43 static bool xtensa_cpu_has_work(CPUState
*cs
)
45 XtensaCPU
*cpu
= XTENSA_CPU(cs
);
47 return cpu
->env
.pending_irq_level
;
50 /* CPUClass::reset() */
51 static void xtensa_cpu_reset(CPUState
*s
)
53 XtensaCPU
*cpu
= XTENSA_CPU(s
);
54 XtensaCPUClass
*xcc
= XTENSA_CPU_GET_CLASS(cpu
);
55 CPUXtensaState
*env
= &cpu
->env
;
59 env
->exception_taken
= 0;
60 env
->pc
= env
->config
->exception_vector
[EXC_RESET
];
61 env
->sregs
[LITBASE
] &= ~1;
62 env
->sregs
[PS
] = xtensa_option_enabled(env
->config
,
63 XTENSA_OPTION_INTERRUPT
) ? 0x1f : 0x10;
64 env
->sregs
[VECBASE
] = env
->config
->vecbase
;
65 env
->sregs
[IBREAKENABLE
] = 0;
66 env
->sregs
[CACHEATTR
] = 0x22222222;
67 env
->sregs
[ATOMCTL
] = xtensa_option_enabled(env
->config
,
68 XTENSA_OPTION_ATOMCTL
) ? 0x28 : 0x15;
69 env
->sregs
[CONFIGID0
] = env
->config
->configid
[0];
70 env
->sregs
[CONFIGID1
] = env
->config
->configid
[1];
72 env
->pending_irq_level
= 0;
76 static ObjectClass
*xtensa_cpu_class_by_name(const char *cpu_model
)
81 if (cpu_model
== NULL
) {
85 typename
= g_strdup_printf("%s-" TYPE_XTENSA_CPU
, cpu_model
);
86 oc
= object_class_by_name(typename
);
88 if (oc
== NULL
|| !object_class_dynamic_cast(oc
, TYPE_XTENSA_CPU
) ||
89 object_class_is_abstract(oc
)) {
95 static void xtensa_cpu_realizefn(DeviceState
*dev
, Error
**errp
)
97 CPUState
*cs
= CPU(dev
);
98 XtensaCPUClass
*xcc
= XTENSA_CPU_GET_CLASS(dev
);
100 cs
->gdb_num_regs
= xcc
->config
->gdb_regmap
.num_regs
;
104 xcc
->parent_realize(dev
, errp
);
107 static void xtensa_cpu_initfn(Object
*obj
)
109 CPUState
*cs
= CPU(obj
);
110 XtensaCPU
*cpu
= XTENSA_CPU(obj
);
111 XtensaCPUClass
*xcc
= XTENSA_CPU_GET_CLASS(obj
);
112 CPUXtensaState
*env
= &cpu
->env
;
113 static bool tcg_inited
;
116 env
->config
= xcc
->config
;
119 if (tcg_enabled() && !tcg_inited
) {
121 xtensa_translate_init();
125 static const VMStateDescription vmstate_xtensa_cpu
= {
130 static void xtensa_cpu_class_init(ObjectClass
*oc
, void *data
)
132 DeviceClass
*dc
= DEVICE_CLASS(oc
);
133 CPUClass
*cc
= CPU_CLASS(oc
);
134 XtensaCPUClass
*xcc
= XTENSA_CPU_CLASS(cc
);
136 xcc
->parent_realize
= dc
->realize
;
137 dc
->realize
= xtensa_cpu_realizefn
;
139 xcc
->parent_reset
= cc
->reset
;
140 cc
->reset
= xtensa_cpu_reset
;
142 cc
->class_by_name
= xtensa_cpu_class_by_name
;
143 cc
->has_work
= xtensa_cpu_has_work
;
144 cc
->do_interrupt
= xtensa_cpu_do_interrupt
;
145 cc
->cpu_exec_interrupt
= xtensa_cpu_exec_interrupt
;
146 cc
->dump_state
= xtensa_cpu_dump_state
;
147 cc
->set_pc
= xtensa_cpu_set_pc
;
148 cc
->gdb_read_register
= xtensa_cpu_gdb_read_register
;
149 cc
->gdb_write_register
= xtensa_cpu_gdb_write_register
;
150 cc
->gdb_stop_before_watchpoint
= true;
151 #ifndef CONFIG_USER_ONLY
152 cc
->do_unaligned_access
= xtensa_cpu_do_unaligned_access
;
153 cc
->get_phys_page_debug
= xtensa_cpu_get_phys_page_debug
;
155 cc
->debug_excp_handler
= xtensa_breakpoint_handler
;
156 dc
->vmsd
= &vmstate_xtensa_cpu
;
159 static const TypeInfo xtensa_cpu_type_info
= {
160 .name
= TYPE_XTENSA_CPU
,
162 .instance_size
= sizeof(XtensaCPU
),
163 .instance_init
= xtensa_cpu_initfn
,
165 .class_size
= sizeof(XtensaCPUClass
),
166 .class_init
= xtensa_cpu_class_init
,
169 static void xtensa_cpu_register_types(void)
171 type_register_static(&xtensa_cpu_type_info
);
174 type_init(xtensa_cpu_register_types
)