]> git.proxmox.com Git - mirror_qemu.git/blob - hw/sparc/leon3.c
sysemu: avoid proliferation of include/ subdirectories
[mirror_qemu.git] / hw / sparc / leon3.c
1 /*
2 * QEMU Leon3 System Emulator
3 *
4 * Copyright (c) 2010-2011 AdaCore
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24 #include "hw/hw.h"
25 #include "qemu/timer.h"
26 #include "hw/ptimer.h"
27 #include "sysemu/char.h"
28 #include "sysemu/sysemu.h"
29 #include "hw/boards.h"
30 #include "hw/loader.h"
31 #include "elf.h"
32 #include "trace.h"
33 #include "exec/address-spaces.h"
34
35 #include "hw/sparc/grlib.h"
36
37 /* Default system clock. */
38 #define CPU_CLK (40 * 1000 * 1000)
39
40 #define PROM_FILENAME "u-boot.bin"
41
42 #define MAX_PILS 16
43
44 typedef struct ResetData {
45 SPARCCPU *cpu;
46 uint32_t entry; /* save kernel entry in case of reset */
47 } ResetData;
48
49 static void main_cpu_reset(void *opaque)
50 {
51 ResetData *s = (ResetData *)opaque;
52 CPUState *cpu = CPU(s->cpu);
53 CPUSPARCState *env = &s->cpu->env;
54
55 cpu_reset(cpu);
56
57 cpu->halted = 0;
58 env->pc = s->entry;
59 env->npc = s->entry + 4;
60 }
61
62 void leon3_irq_ack(void *irq_manager, int intno)
63 {
64 grlib_irqmp_ack((DeviceState *)irq_manager, intno);
65 }
66
67 static void leon3_set_pil_in(void *opaque, uint32_t pil_in)
68 {
69 CPUSPARCState *env = (CPUSPARCState *)opaque;
70 CPUState *cs;
71
72 assert(env != NULL);
73
74 env->pil_in = pil_in;
75
76 if (env->pil_in && (env->interrupt_index == 0 ||
77 (env->interrupt_index & ~15) == TT_EXTINT)) {
78 unsigned int i;
79
80 for (i = 15; i > 0; i--) {
81 if (env->pil_in & (1 << i)) {
82 int old_interrupt = env->interrupt_index;
83
84 env->interrupt_index = TT_EXTINT | i;
85 if (old_interrupt != env->interrupt_index) {
86 cs = CPU(sparc_env_get_cpu(env));
87 trace_leon3_set_irq(i);
88 cpu_interrupt(cs, CPU_INTERRUPT_HARD);
89 }
90 break;
91 }
92 }
93 } else if (!env->pil_in && (env->interrupt_index & ~15) == TT_EXTINT) {
94 cs = CPU(sparc_env_get_cpu(env));
95 trace_leon3_reset_irq(env->interrupt_index & 15);
96 env->interrupt_index = 0;
97 cpu_reset_interrupt(cs, CPU_INTERRUPT_HARD);
98 }
99 }
100
101 static void leon3_generic_hw_init(QEMUMachineInitArgs *args)
102 {
103 ram_addr_t ram_size = args->ram_size;
104 const char *cpu_model = args->cpu_model;
105 const char *kernel_filename = args->kernel_filename;
106 SPARCCPU *cpu;
107 CPUSPARCState *env;
108 MemoryRegion *address_space_mem = get_system_memory();
109 MemoryRegion *ram = g_new(MemoryRegion, 1);
110 MemoryRegion *prom = g_new(MemoryRegion, 1);
111 int ret;
112 char *filename;
113 qemu_irq *cpu_irqs = NULL;
114 int bios_size;
115 int prom_size;
116 ResetData *reset_info;
117
118 /* Init CPU */
119 if (!cpu_model) {
120 cpu_model = "LEON3";
121 }
122
123 cpu = cpu_sparc_init(cpu_model);
124 if (cpu == NULL) {
125 fprintf(stderr, "qemu: Unable to find Sparc CPU definition\n");
126 exit(1);
127 }
128 env = &cpu->env;
129
130 cpu_sparc_set_id(env, 0);
131
132 /* Reset data */
133 reset_info = g_malloc0(sizeof(ResetData));
134 reset_info->cpu = cpu;
135 qemu_register_reset(main_cpu_reset, reset_info);
136
137 /* Allocate IRQ manager */
138 grlib_irqmp_create(0x80000200, env, &cpu_irqs, MAX_PILS, &leon3_set_pil_in);
139
140 env->qemu_irq_ack = leon3_irq_manager;
141
142 /* Allocate RAM */
143 if ((uint64_t)ram_size > (1UL << 30)) {
144 fprintf(stderr,
145 "qemu: Too much memory for this machine: %d, maximum 1G\n",
146 (unsigned int)(ram_size / (1024 * 1024)));
147 exit(1);
148 }
149
150 memory_region_init_ram(ram, "leon3.ram", ram_size);
151 vmstate_register_ram_global(ram);
152 memory_region_add_subregion(address_space_mem, 0x40000000, ram);
153
154 /* Allocate BIOS */
155 prom_size = 8 * 1024 * 1024; /* 8Mb */
156 memory_region_init_ram(prom, "Leon3.bios", prom_size);
157 vmstate_register_ram_global(prom);
158 memory_region_set_readonly(prom, true);
159 memory_region_add_subregion(address_space_mem, 0x00000000, prom);
160
161 /* Load boot prom */
162 if (bios_name == NULL) {
163 bios_name = PROM_FILENAME;
164 }
165 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
166
167 bios_size = get_image_size(filename);
168
169 if (bios_size > prom_size) {
170 fprintf(stderr, "qemu: could not load prom '%s': file too big\n",
171 filename);
172 exit(1);
173 }
174
175 if (bios_size > 0) {
176 ret = load_image_targphys(filename, 0x00000000, bios_size);
177 if (ret < 0 || ret > prom_size) {
178 fprintf(stderr, "qemu: could not load prom '%s'\n", filename);
179 exit(1);
180 }
181 } else if (kernel_filename == NULL) {
182 fprintf(stderr, "Can't read bios image %s\n", filename);
183 exit(1);
184 }
185
186 /* Can directly load an application. */
187 if (kernel_filename != NULL) {
188 long kernel_size;
189 uint64_t entry;
190
191 kernel_size = load_elf(kernel_filename, NULL, NULL, &entry, NULL, NULL,
192 1 /* big endian */, ELF_MACHINE, 0);
193 if (kernel_size < 0) {
194 fprintf(stderr, "qemu: could not load kernel '%s'\n",
195 kernel_filename);
196 exit(1);
197 }
198 if (bios_size <= 0) {
199 /* If there is no bios/monitor, start the application. */
200 env->pc = entry;
201 env->npc = entry + 4;
202 reset_info->entry = entry;
203 }
204 }
205
206 /* Allocate timers */
207 grlib_gptimer_create(0x80000300, 2, CPU_CLK, cpu_irqs, 6);
208
209 /* Allocate uart */
210 if (serial_hds[0]) {
211 grlib_apbuart_create(0x80000100, serial_hds[0], cpu_irqs[3]);
212 }
213 }
214
215 static QEMUMachine leon3_generic_machine = {
216 .name = "leon3_generic",
217 .desc = "Leon-3 generic",
218 .init = leon3_generic_hw_init,
219 DEFAULT_MACHINE_OPTIONS,
220 };
221
222 static void leon3_machine_init(void)
223 {
224 qemu_register_machine(&leon3_generic_machine);
225 }
226
227 machine_init(leon3_machine_init);