]>
Commit | Line | Data |
---|---|---|
47d05a86 MF |
1 | /* |
2 | * Copyright (c) 2011, Max Filippov, Open Source and Linux Lab. | |
3 | * All rights reserved. | |
4 | * | |
5 | * Redistribution and use in source and binary forms, with or without | |
6 | * modification, are permitted provided that the following conditions are met: | |
7 | * * Redistributions of source code must retain the above copyright | |
8 | * notice, this list of conditions and the following disclaimer. | |
9 | * * Redistributions in binary form must reproduce the above copyright | |
10 | * notice, this list of conditions and the following disclaimer in the | |
11 | * documentation and/or other materials provided with the distribution. | |
12 | * * Neither the name of the Open Source and Linux Lab nor the | |
13 | * names of its contributors may be used to endorse or promote products | |
14 | * derived from this software without specific prior written permission. | |
15 | * | |
16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY | |
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | |
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | |
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | |
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | |
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
26 | */ | |
27 | ||
09aae23d | 28 | #include "qemu/osdep.h" |
da34e65c | 29 | #include "qapi/error.h" |
4771d756 PB |
30 | #include "qemu-common.h" |
31 | #include "cpu.h" | |
9c17d615 | 32 | #include "sysemu/sysemu.h" |
83c9f4ca PB |
33 | #include "hw/boards.h" |
34 | #include "hw/loader.h" | |
47d05a86 | 35 | #include "elf.h" |
022c62cb PB |
36 | #include "exec/memory.h" |
37 | #include "exec/address-spaces.h" | |
8488ab02 | 38 | #include "qemu/error-report.h" |
e53fa62c | 39 | #include "xtensa_memory.h" |
b68755c1 | 40 | |
00b941e5 | 41 | static uint64_t translate_phys_addr(void *opaque, uint64_t addr) |
47d05a86 | 42 | { |
00b941e5 AF |
43 | XtensaCPU *cpu = opaque; |
44 | ||
45 | return cpu_get_phys_page_debug(CPU(cpu), addr); | |
47d05a86 MF |
46 | } |
47 | ||
11e7bfd7 | 48 | static void sim_reset(void *opaque) |
47d05a86 | 49 | { |
11e7bfd7 AF |
50 | XtensaCPU *cpu = opaque; |
51 | ||
52 | cpu_reset(CPU(cpu)); | |
47d05a86 MF |
53 | } |
54 | ||
3ef96221 | 55 | static void xtensa_sim_init(MachineState *machine) |
47d05a86 | 56 | { |
06d26274 | 57 | XtensaCPU *cpu = NULL; |
5bfcb36e | 58 | CPUXtensaState *env = NULL; |
3ef96221 | 59 | ram_addr_t ram_size = machine->ram_size; |
3ef96221 | 60 | const char *kernel_filename = machine->kernel_filename; |
47d05a86 MF |
61 | int n; |
62 | ||
63 | for (n = 0; n < smp_cpus; n++) { | |
d58eeae3 | 64 | cpu = XTENSA_CPU(cpu_create(machine->cpu_type)); |
06d26274 AF |
65 | env = &cpu->env; |
66 | ||
47d05a86 | 67 | env->sregs[PRID] = n; |
11e7bfd7 | 68 | qemu_register_reset(sim_reset, cpu); |
47d05a86 MF |
69 | /* Need MMU initialized prior to ELF loading, |
70 | * so that ELF gets loaded into virtual addresses | |
71 | */ | |
11e7bfd7 | 72 | sim_reset(cpu); |
47d05a86 MF |
73 | } |
74 | ||
b68755c1 MF |
75 | if (env) { |
76 | XtensaMemory sysram = env->config->sysram; | |
47d05a86 | 77 | |
b68755c1 | 78 | sysram.location[0].size = ram_size; |
e53fa62c MF |
79 | xtensa_create_memory_regions(&env->config->instrom, "xtensa.instrom", |
80 | get_system_memory()); | |
81 | xtensa_create_memory_regions(&env->config->instram, "xtensa.instram", | |
82 | get_system_memory()); | |
83 | xtensa_create_memory_regions(&env->config->datarom, "xtensa.datarom", | |
84 | get_system_memory()); | |
85 | xtensa_create_memory_regions(&env->config->dataram, "xtensa.dataram", | |
86 | get_system_memory()); | |
87 | xtensa_create_memory_regions(&env->config->sysrom, "xtensa.sysrom", | |
88 | get_system_memory()); | |
89 | xtensa_create_memory_regions(&sysram, "xtensa.sysram", | |
90 | get_system_memory()); | |
b68755c1 | 91 | } |
47d05a86 | 92 | |
9bca0edb PM |
93 | if (serial_hd(0)) { |
94 | xtensa_sim_open_console(serial_hd(0)); | |
8128b3e0 | 95 | } |
47d05a86 MF |
96 | if (kernel_filename) { |
97 | uint64_t elf_entry; | |
98 | uint64_t elf_lowaddr; | |
99 | #ifdef TARGET_WORDS_BIGENDIAN | |
00b941e5 | 100 | int success = load_elf(kernel_filename, translate_phys_addr, cpu, |
7ef295ea | 101 | &elf_entry, &elf_lowaddr, NULL, 1, EM_XTENSA, 0, 0); |
47d05a86 | 102 | #else |
00b941e5 | 103 | int success = load_elf(kernel_filename, translate_phys_addr, cpu, |
7ef295ea | 104 | &elf_entry, &elf_lowaddr, NULL, 0, EM_XTENSA, 0, 0); |
47d05a86 MF |
105 | #endif |
106 | if (success > 0) { | |
107 | env->pc = elf_entry; | |
108 | } | |
109 | } | |
110 | } | |
111 | ||
e264d29d | 112 | static void xtensa_sim_machine_init(MachineClass *mc) |
47d05a86 | 113 | { |
e264d29d EH |
114 | mc->desc = "sim machine (" XTENSA_DEFAULT_CPU_MODEL ")"; |
115 | mc->is_default = true; | |
116 | mc->init = xtensa_sim_init; | |
117 | mc->max_cpus = 4; | |
8128b3e0 | 118 | mc->no_serial = 1; |
d58eeae3 | 119 | mc->default_cpu_type = XTENSA_DEFAULT_CPU_TYPE; |
47d05a86 MF |
120 | } |
121 | ||
e264d29d | 122 | DEFINE_MACHINE("sim", xtensa_sim_machine_init) |