1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28#include "sysemu/sysemu.h"
29#include "hw/boards.h"
30#include "hw/loader.h"
31#include "elf.h"
32#include "exec/memory.h"
33#include "exec/address-spaces.h"
34#include "qemu/error-report.h"
35
36static uint64_t translate_phys_addr(void *opaque, uint64_t addr)
37{
38 XtensaCPU *cpu = opaque;
39
40 return cpu_get_phys_page_debug(CPU(cpu), addr);
41}
42
43static void sim_reset(void *opaque)
44{
45 XtensaCPU *cpu = opaque;
46
47 cpu_reset(CPU(cpu));
48}
49
50static void xtensa_sim_init(MachineState *machine)
51{
52 XtensaCPU *cpu = NULL;
53 CPUXtensaState *env = NULL;
54 MemoryRegion *ram, *rom;
55 ram_addr_t ram_size = machine->ram_size;
56 const char *cpu_model = machine->cpu_model;
57 const char *kernel_filename = machine->kernel_filename;
58 int n;
59
60 if (!cpu_model) {
61 cpu_model = XTENSA_DEFAULT_CPU_MODEL;
62 }
63
64 for (n = 0; n < smp_cpus; n++) {
65 cpu = cpu_xtensa_init(cpu_model);
66 if (cpu == NULL) {
67 error_report("unable to find CPU definition '%s'\n",
68 cpu_model);
69 exit(EXIT_FAILURE);
70 }
71 env = &cpu->env;
72
73 env->sregs[PRID] = n;
74 qemu_register_reset(sim_reset, cpu);
75
76
77
78 sim_reset(cpu);
79 }
80
81 ram = g_malloc(sizeof(*ram));
82 memory_region_init_ram(ram, NULL, "xtensa.sram", ram_size);
83 vmstate_register_ram_global(ram);
84 memory_region_add_subregion(get_system_memory(), 0, ram);
85
86 rom = g_malloc(sizeof(*rom));
87 memory_region_init_ram(rom, NULL, "xtensa.rom", 0x1000);
88 vmstate_register_ram_global(rom);
89 memory_region_add_subregion(get_system_memory(), 0xfe000000, rom);
90
91 if (kernel_filename) {
92 uint64_t elf_entry;
93 uint64_t elf_lowaddr;
94#ifdef TARGET_WORDS_BIGENDIAN
95 int success = load_elf(kernel_filename, translate_phys_addr, cpu,
96 &elf_entry, &elf_lowaddr, NULL, 1, ELF_MACHINE, 0);
97#else
98 int success = load_elf(kernel_filename, translate_phys_addr, cpu,
99 &elf_entry, &elf_lowaddr, NULL, 0, ELF_MACHINE, 0);
100#endif
101 if (success > 0) {
102 env->pc = elf_entry;
103 }
104 }
105}
106
107static QEMUMachine xtensa_sim_machine = {
108 .name = "sim",
109 .desc = "sim machine (" XTENSA_DEFAULT_CPU_MODEL ")",
110 .is_default = true,
111 .init = xtensa_sim_init,
112 .max_cpus = 4,
113};
114
115static void xtensa_sim_machine_init(void)
116{
117 qemu_register_machine(&xtensa_sim_machine);
118}
119
120machine_init(xtensa_sim_machine_init);
121