Andreas Färber | a4633e1 | 2012-04-11 18:24:48 +0200 | [diff] [blame] | 1 | /* |
| 2 | * QEMU Xtensa CPU |
| 3 | * |
Andreas Färber | 5087a72 | 2012-04-11 18:24:49 +0200 | [diff] [blame] | 4 | * Copyright (c) 2011, Max Filippov, Open Source and Linux Lab. |
Andreas Färber | a4633e1 | 2012-04-11 18:24:48 +0200 | [diff] [blame] | 5 | * Copyright (c) 2012 SUSE LINUX Products GmbH |
| 6 | * All rights reserved. |
| 7 | * |
| 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. |
| 18 | * |
| 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. |
| 29 | */ |
| 30 | |
Andreas Färber | 15be317 | 2012-05-06 12:41:53 +0200 | [diff] [blame] | 31 | #include "cpu.h" |
Andreas Färber | a4633e1 | 2012-04-11 18:24:48 +0200 | [diff] [blame] | 32 | #include "qemu-common.h" |
Andreas Färber | 004a569 | 2013-01-20 19:22:41 +0100 | [diff] [blame] | 33 | #include "migration/vmstate.h" |
Andreas Färber | a4633e1 | 2012-04-11 18:24:48 +0200 | [diff] [blame] | 34 | |
| 35 | |
| 36 | /* CPUClass::reset() */ |
| 37 | static void xtensa_cpu_reset(CPUState *s) |
| 38 | { |
| 39 | XtensaCPU *cpu = XTENSA_CPU(s); |
| 40 | XtensaCPUClass *xcc = XTENSA_CPU_GET_CLASS(cpu); |
| 41 | CPUXtensaState *env = &cpu->env; |
| 42 | |
| 43 | xcc->parent_reset(s); |
| 44 | |
Andreas Färber | 5087a72 | 2012-04-11 18:24:49 +0200 | [diff] [blame] | 45 | env->exception_taken = 0; |
| 46 | env->pc = env->config->exception_vector[EXC_RESET]; |
| 47 | env->sregs[LITBASE] &= ~1; |
| 48 | env->sregs[PS] = xtensa_option_enabled(env->config, |
| 49 | XTENSA_OPTION_INTERRUPT) ? 0x1f : 0x10; |
| 50 | env->sregs[VECBASE] = env->config->vecbase; |
| 51 | env->sregs[IBREAKENABLE] = 0; |
Max Filippov | 4e41d2f | 2012-12-05 07:15:21 +0400 | [diff] [blame] | 52 | env->sregs[CACHEATTR] = 0x22222222; |
Max Filippov | fcc803d | 2012-12-05 07:15:20 +0400 | [diff] [blame] | 53 | env->sregs[ATOMCTL] = xtensa_option_enabled(env->config, |
| 54 | XTENSA_OPTION_ATOMCTL) ? 0x28 : 0x15; |
Andreas Färber | 5087a72 | 2012-04-11 18:24:49 +0200 | [diff] [blame] | 55 | |
| 56 | env->pending_irq_level = 0; |
| 57 | reset_mmu(env); |
Andreas Färber | a4633e1 | 2012-04-11 18:24:48 +0200 | [diff] [blame] | 58 | } |
| 59 | |
Andreas Färber | 5f6c964 | 2013-01-16 04:19:35 +0100 | [diff] [blame^] | 60 | static void xtensa_cpu_realizefn(DeviceState *dev, Error **errp) |
| 61 | { |
| 62 | XtensaCPU *cpu = XTENSA_CPU(dev); |
| 63 | XtensaCPUClass *xcc = XTENSA_CPU_GET_CLASS(dev); |
| 64 | |
| 65 | qemu_init_vcpu(&cpu->env); |
| 66 | |
| 67 | xcc->parent_realize(dev, errp); |
| 68 | } |
| 69 | |
Andreas Färber | e554bbc | 2012-04-11 18:24:50 +0200 | [diff] [blame] | 70 | static void xtensa_cpu_initfn(Object *obj) |
| 71 | { |
| 72 | XtensaCPU *cpu = XTENSA_CPU(obj); |
| 73 | CPUXtensaState *env = &cpu->env; |
| 74 | |
| 75 | cpu_exec_init(env); |
| 76 | } |
| 77 | |
Andreas Färber | 004a569 | 2013-01-20 19:22:41 +0100 | [diff] [blame] | 78 | static const VMStateDescription vmstate_xtensa_cpu = { |
| 79 | .name = "cpu", |
| 80 | .unmigratable = 1, |
| 81 | }; |
| 82 | |
Andreas Färber | a4633e1 | 2012-04-11 18:24:48 +0200 | [diff] [blame] | 83 | static void xtensa_cpu_class_init(ObjectClass *oc, void *data) |
| 84 | { |
Andreas Färber | 004a569 | 2013-01-20 19:22:41 +0100 | [diff] [blame] | 85 | DeviceClass *dc = DEVICE_CLASS(oc); |
Andreas Färber | a4633e1 | 2012-04-11 18:24:48 +0200 | [diff] [blame] | 86 | CPUClass *cc = CPU_CLASS(oc); |
| 87 | XtensaCPUClass *xcc = XTENSA_CPU_CLASS(cc); |
| 88 | |
Andreas Färber | 5f6c964 | 2013-01-16 04:19:35 +0100 | [diff] [blame^] | 89 | xcc->parent_realize = dc->realize; |
| 90 | dc->realize = xtensa_cpu_realizefn; |
| 91 | |
Andreas Färber | a4633e1 | 2012-04-11 18:24:48 +0200 | [diff] [blame] | 92 | xcc->parent_reset = cc->reset; |
| 93 | cc->reset = xtensa_cpu_reset; |
Andreas Färber | 004a569 | 2013-01-20 19:22:41 +0100 | [diff] [blame] | 94 | |
| 95 | dc->vmsd = &vmstate_xtensa_cpu; |
Andreas Färber | a4633e1 | 2012-04-11 18:24:48 +0200 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | static const TypeInfo xtensa_cpu_type_info = { |
| 99 | .name = TYPE_XTENSA_CPU, |
| 100 | .parent = TYPE_CPU, |
| 101 | .instance_size = sizeof(XtensaCPU), |
Andreas Färber | e554bbc | 2012-04-11 18:24:50 +0200 | [diff] [blame] | 102 | .instance_init = xtensa_cpu_initfn, |
Andreas Färber | a4633e1 | 2012-04-11 18:24:48 +0200 | [diff] [blame] | 103 | .abstract = false, |
| 104 | .class_size = sizeof(XtensaCPUClass), |
| 105 | .class_init = xtensa_cpu_class_init, |
| 106 | }; |
| 107 | |
| 108 | static void xtensa_cpu_register_types(void) |
| 109 | { |
| 110 | type_register_static(&xtensa_cpu_type_info); |
| 111 | } |
| 112 | |
| 113 | type_init(xtensa_cpu_register_types) |