]>
Commit | Line | Data |
---|---|---|
3475187d | 1 | /* |
c7ba218d | 2 | * QEMU Sun4u/Sun4v System Emulator |
5fafdf24 | 3 | * |
3475187d | 4 | * Copyright (c) 2005 Fabrice Bellard |
5fafdf24 | 5 | * |
3475187d FB |
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 | */ | |
83c9f4ca PB |
24 | #include "hw/hw.h" |
25 | #include "hw/pci/pci.h" | |
0d09e41a PB |
26 | #include "hw/pci-host/apb.h" |
27 | #include "hw/i386/pc.h" | |
28 | #include "hw/char/serial.h" | |
29 | #include "hw/timer/m48t59.h" | |
30 | #include "hw/block/fdc.h" | |
1422e32d | 31 | #include "net/net.h" |
1de7afc9 | 32 | #include "qemu/timer.h" |
9c17d615 | 33 | #include "sysemu/sysemu.h" |
83c9f4ca | 34 | #include "hw/boards.h" |
ec0503b4 | 35 | #include "hw/nvram/openbios_firmware_abi.h" |
0d09e41a | 36 | #include "hw/nvram/fw_cfg.h" |
83c9f4ca PB |
37 | #include "hw/sysbus.h" |
38 | #include "hw/ide.h" | |
39 | #include "hw/loader.h" | |
ca20cf32 | 40 | #include "elf.h" |
4be74634 | 41 | #include "sysemu/block-backend.h" |
022c62cb | 42 | #include "exec/address-spaces.h" |
3475187d | 43 | |
9d926598 | 44 | //#define DEBUG_IRQ |
b430a225 | 45 | //#define DEBUG_EBUS |
8f4efc55 | 46 | //#define DEBUG_TIMER |
9d926598 BS |
47 | |
48 | #ifdef DEBUG_IRQ | |
b430a225 | 49 | #define CPUIRQ_DPRINTF(fmt, ...) \ |
001faf32 | 50 | do { printf("CPUIRQ: " fmt , ## __VA_ARGS__); } while (0) |
9d926598 | 51 | #else |
b430a225 BS |
52 | #define CPUIRQ_DPRINTF(fmt, ...) |
53 | #endif | |
54 | ||
55 | #ifdef DEBUG_EBUS | |
56 | #define EBUS_DPRINTF(fmt, ...) \ | |
57 | do { printf("EBUS: " fmt , ## __VA_ARGS__); } while (0) | |
58 | #else | |
59 | #define EBUS_DPRINTF(fmt, ...) | |
9d926598 BS |
60 | #endif |
61 | ||
8f4efc55 IK |
62 | #ifdef DEBUG_TIMER |
63 | #define TIMER_DPRINTF(fmt, ...) \ | |
64 | do { printf("TIMER: " fmt , ## __VA_ARGS__); } while (0) | |
65 | #else | |
66 | #define TIMER_DPRINTF(fmt, ...) | |
67 | #endif | |
68 | ||
83469015 FB |
69 | #define KERNEL_LOAD_ADDR 0x00404000 |
70 | #define CMDLINE_ADDR 0x003ff000 | |
ac2e9d66 | 71 | #define PROM_SIZE_MAX (4 * 1024 * 1024) |
f930d07e | 72 | #define PROM_VADDR 0x000ffd00000ULL |
83469015 | 73 | #define APB_SPECIAL_BASE 0x1fe00000000ULL |
f930d07e | 74 | #define APB_MEM_BASE 0x1ff00000000ULL |
d63baf92 | 75 | #define APB_PCI_IO_BASE (APB_SPECIAL_BASE + 0x02000000ULL) |
f930d07e | 76 | #define PROM_FILENAME "openbios-sparc64" |
83469015 | 77 | #define NVRAM_SIZE 0x2000 |
e4bcb14c | 78 | #define MAX_IDE_BUS 2 |
3cce6243 | 79 | #define BIOS_CFG_IOPORT 0x510 |
7589690c BS |
80 | #define FW_CFG_SPARC64_WIDTH (FW_CFG_ARCH_LOCAL + 0x00) |
81 | #define FW_CFG_SPARC64_HEIGHT (FW_CFG_ARCH_LOCAL + 0x01) | |
82 | #define FW_CFG_SPARC64_DEPTH (FW_CFG_ARCH_LOCAL + 0x02) | |
3475187d | 83 | |
852e82f3 | 84 | #define IVEC_MAX 0x40 |
9d926598 | 85 | |
8fa211e8 BS |
86 | #define TICK_MAX 0x7fffffffffffffffULL |
87 | ||
c7ba218d BS |
88 | struct hwdef { |
89 | const char * const default_cpu_model; | |
905fdcb5 | 90 | uint16_t machine_id; |
e87231d4 BS |
91 | uint64_t prom_addr; |
92 | uint64_t console_serial_base; | |
c7ba218d BS |
93 | }; |
94 | ||
c5e6fb7e AK |
95 | typedef struct EbusState { |
96 | PCIDevice pci_dev; | |
97 | MemoryRegion bar0; | |
98 | MemoryRegion bar1; | |
99 | } EbusState; | |
100 | ||
3475187d FB |
101 | int DMA_get_channel_mode (int nchan) |
102 | { | |
103 | return 0; | |
104 | } | |
105 | int DMA_read_memory (int nchan, void *buf, int pos, int size) | |
106 | { | |
107 | return 0; | |
108 | } | |
109 | int DMA_write_memory (int nchan, void *buf, int pos, int size) | |
110 | { | |
111 | return 0; | |
112 | } | |
113 | void DMA_hold_DREQ (int nchan) {} | |
114 | void DMA_release_DREQ (int nchan) {} | |
115 | void DMA_schedule(int nchan) {} | |
4556bd8b BS |
116 | |
117 | void DMA_init(int high_page_enable, qemu_irq *cpu_request_exit) | |
118 | { | |
119 | } | |
120 | ||
3475187d FB |
121 | void DMA_register_channel (int nchan, |
122 | DMA_transfer_handler transfer_handler, | |
123 | void *opaque) | |
124 | { | |
125 | } | |
126 | ||
ddcd5531 GA |
127 | static void fw_cfg_boot_set(void *opaque, const char *boot_device, |
128 | Error **errp) | |
81864572 | 129 | { |
513f789f | 130 | fw_cfg_add_i16(opaque, FW_CFG_BOOT_DEVICE, boot_device[0]); |
81864572 BS |
131 | } |
132 | ||
43a34704 BS |
133 | static int sun4u_NVRAM_set_params(M48t59State *nvram, uint16_t NVRAM_size, |
134 | const char *arch, ram_addr_t RAM_size, | |
135 | const char *boot_devices, | |
136 | uint32_t kernel_image, uint32_t kernel_size, | |
137 | const char *cmdline, | |
138 | uint32_t initrd_image, uint32_t initrd_size, | |
139 | uint32_t NVRAM_image, | |
140 | int width, int height, int depth, | |
141 | const uint8_t *macaddr) | |
83469015 | 142 | { |
66508601 BS |
143 | unsigned int i; |
144 | uint32_t start, end; | |
d2c63fc1 | 145 | uint8_t image[0x1ff0]; |
d2c63fc1 BS |
146 | struct OpenBIOS_nvpart_v1 *part_header; |
147 | ||
148 | memset(image, '\0', sizeof(image)); | |
149 | ||
513f789f | 150 | start = 0; |
83469015 | 151 | |
66508601 BS |
152 | // OpenBIOS nvram variables |
153 | // Variable partition | |
d2c63fc1 BS |
154 | part_header = (struct OpenBIOS_nvpart_v1 *)&image[start]; |
155 | part_header->signature = OPENBIOS_PART_SYSTEM; | |
363a37d5 | 156 | pstrcpy(part_header->name, sizeof(part_header->name), "system"); |
66508601 | 157 | |
d2c63fc1 | 158 | end = start + sizeof(struct OpenBIOS_nvpart_v1); |
66508601 | 159 | for (i = 0; i < nb_prom_envs; i++) |
d2c63fc1 BS |
160 | end = OpenBIOS_set_var(image, end, prom_envs[i]); |
161 | ||
162 | // End marker | |
163 | image[end++] = '\0'; | |
66508601 | 164 | |
66508601 | 165 | end = start + ((end - start + 15) & ~15); |
d2c63fc1 | 166 | OpenBIOS_finish_partition(part_header, end - start); |
66508601 BS |
167 | |
168 | // free partition | |
169 | start = end; | |
d2c63fc1 BS |
170 | part_header = (struct OpenBIOS_nvpart_v1 *)&image[start]; |
171 | part_header->signature = OPENBIOS_PART_FREE; | |
363a37d5 | 172 | pstrcpy(part_header->name, sizeof(part_header->name), "free"); |
66508601 BS |
173 | |
174 | end = 0x1fd0; | |
d2c63fc1 BS |
175 | OpenBIOS_finish_partition(part_header, end - start); |
176 | ||
0d31cb99 BS |
177 | Sun_init_header((struct Sun_nvram *)&image[0x1fd8], macaddr, 0x80); |
178 | ||
d2c63fc1 BS |
179 | for (i = 0; i < sizeof(image); i++) |
180 | m48t59_write(nvram, i, image[i]); | |
66508601 | 181 | |
83469015 | 182 | return 0; |
3475187d | 183 | } |
5f2bf0fe BS |
184 | |
185 | static uint64_t sun4u_load_kernel(const char *kernel_filename, | |
186 | const char *initrd_filename, | |
187 | ram_addr_t RAM_size, uint64_t *initrd_size, | |
188 | uint64_t *initrd_addr, uint64_t *kernel_addr, | |
189 | uint64_t *kernel_entry) | |
636aa70a BS |
190 | { |
191 | int linux_boot; | |
192 | unsigned int i; | |
193 | long kernel_size; | |
6908d9ce | 194 | uint8_t *ptr; |
5f2bf0fe | 195 | uint64_t kernel_top; |
636aa70a BS |
196 | |
197 | linux_boot = (kernel_filename != NULL); | |
198 | ||
199 | kernel_size = 0; | |
200 | if (linux_boot) { | |
ca20cf32 BS |
201 | int bswap_needed; |
202 | ||
203 | #ifdef BSWAP_NEEDED | |
204 | bswap_needed = 1; | |
205 | #else | |
206 | bswap_needed = 0; | |
207 | #endif | |
5f2bf0fe BS |
208 | kernel_size = load_elf(kernel_filename, NULL, NULL, kernel_entry, |
209 | kernel_addr, &kernel_top, 1, ELF_MACHINE, 0); | |
210 | if (kernel_size < 0) { | |
211 | *kernel_addr = KERNEL_LOAD_ADDR; | |
212 | *kernel_entry = KERNEL_LOAD_ADDR; | |
636aa70a | 213 | kernel_size = load_aout(kernel_filename, KERNEL_LOAD_ADDR, |
ca20cf32 BS |
214 | RAM_size - KERNEL_LOAD_ADDR, bswap_needed, |
215 | TARGET_PAGE_SIZE); | |
5f2bf0fe BS |
216 | } |
217 | if (kernel_size < 0) { | |
636aa70a BS |
218 | kernel_size = load_image_targphys(kernel_filename, |
219 | KERNEL_LOAD_ADDR, | |
220 | RAM_size - KERNEL_LOAD_ADDR); | |
5f2bf0fe | 221 | } |
636aa70a BS |
222 | if (kernel_size < 0) { |
223 | fprintf(stderr, "qemu: could not load kernel '%s'\n", | |
224 | kernel_filename); | |
225 | exit(1); | |
226 | } | |
5f2bf0fe | 227 | /* load initrd above kernel */ |
636aa70a BS |
228 | *initrd_size = 0; |
229 | if (initrd_filename) { | |
5f2bf0fe BS |
230 | *initrd_addr = TARGET_PAGE_ALIGN(kernel_top); |
231 | ||
636aa70a | 232 | *initrd_size = load_image_targphys(initrd_filename, |
5f2bf0fe BS |
233 | *initrd_addr, |
234 | RAM_size - *initrd_addr); | |
235 | if ((int)*initrd_size < 0) { | |
636aa70a BS |
236 | fprintf(stderr, "qemu: could not load initial ram disk '%s'\n", |
237 | initrd_filename); | |
238 | exit(1); | |
239 | } | |
240 | } | |
241 | if (*initrd_size > 0) { | |
242 | for (i = 0; i < 64 * TARGET_PAGE_SIZE; i += TARGET_PAGE_SIZE) { | |
5f2bf0fe | 243 | ptr = rom_ptr(*kernel_addr + i); |
6908d9ce | 244 | if (ldl_p(ptr + 8) == 0x48647253) { /* HdrS */ |
5f2bf0fe | 245 | stl_p(ptr + 24, *initrd_addr + *kernel_addr); |
6908d9ce | 246 | stl_p(ptr + 28, *initrd_size); |
636aa70a BS |
247 | break; |
248 | } | |
249 | } | |
250 | } | |
251 | } | |
252 | return kernel_size; | |
253 | } | |
3475187d | 254 | |
98cec4a2 | 255 | void cpu_check_irqs(CPUSPARCState *env) |
9d926598 | 256 | { |
259186a7 | 257 | CPUState *cs; |
d532b26c IK |
258 | uint32_t pil = env->pil_in | |
259 | (env->softint & ~(SOFTINT_TIMER | SOFTINT_STIMER)); | |
260 | ||
a7be9bad AT |
261 | /* TT_IVEC has a higher priority (16) than TT_EXTINT (31..17) */ |
262 | if (env->ivec_status & 0x20) { | |
263 | return; | |
264 | } | |
259186a7 | 265 | cs = CPU(sparc_env_get_cpu(env)); |
d532b26c IK |
266 | /* check if TM or SM in SOFTINT are set |
267 | setting these also causes interrupt 14 */ | |
268 | if (env->softint & (SOFTINT_TIMER | SOFTINT_STIMER)) { | |
269 | pil |= 1 << 14; | |
270 | } | |
271 | ||
9f94778c AT |
272 | /* The bit corresponding to psrpil is (1<< psrpil), the next bit |
273 | is (2 << psrpil). */ | |
274 | if (pil < (2 << env->psrpil)){ | |
259186a7 | 275 | if (cs->interrupt_request & CPU_INTERRUPT_HARD) { |
d532b26c IK |
276 | CPUIRQ_DPRINTF("Reset CPU IRQ (current interrupt %x)\n", |
277 | env->interrupt_index); | |
278 | env->interrupt_index = 0; | |
d8ed887b | 279 | cpu_reset_interrupt(cs, CPU_INTERRUPT_HARD); |
d532b26c IK |
280 | } |
281 | return; | |
282 | } | |
283 | ||
284 | if (cpu_interrupts_enabled(env)) { | |
9d926598 | 285 | |
9d926598 BS |
286 | unsigned int i; |
287 | ||
d532b26c | 288 | for (i = 15; i > env->psrpil; i--) { |
9d926598 BS |
289 | if (pil & (1 << i)) { |
290 | int old_interrupt = env->interrupt_index; | |
d532b26c IK |
291 | int new_interrupt = TT_EXTINT | i; |
292 | ||
a7be9bad AT |
293 | if (unlikely(env->tl > 0 && cpu_tsptr(env)->tt > new_interrupt |
294 | && ((cpu_tsptr(env)->tt & 0x1f0) == TT_EXTINT))) { | |
d532b26c IK |
295 | CPUIRQ_DPRINTF("Not setting CPU IRQ: TL=%d " |
296 | "current %x >= pending %x\n", | |
297 | env->tl, cpu_tsptr(env)->tt, new_interrupt); | |
298 | } else if (old_interrupt != new_interrupt) { | |
299 | env->interrupt_index = new_interrupt; | |
300 | CPUIRQ_DPRINTF("Set CPU IRQ %d old=%x new=%x\n", i, | |
301 | old_interrupt, new_interrupt); | |
c3affe56 | 302 | cpu_interrupt(cs, CPU_INTERRUPT_HARD); |
9d926598 BS |
303 | } |
304 | break; | |
305 | } | |
306 | } | |
259186a7 | 307 | } else if (cs->interrupt_request & CPU_INTERRUPT_HARD) { |
d532b26c IK |
308 | CPUIRQ_DPRINTF("Interrupts disabled, pil=%08x pil_in=%08x softint=%08x " |
309 | "current interrupt %x\n", | |
310 | pil, env->pil_in, env->softint, env->interrupt_index); | |
9f94778c | 311 | env->interrupt_index = 0; |
d8ed887b | 312 | cpu_reset_interrupt(cs, CPU_INTERRUPT_HARD); |
9d926598 BS |
313 | } |
314 | } | |
315 | ||
ce18c558 | 316 | static void cpu_kick_irq(SPARCCPU *cpu) |
8f4efc55 | 317 | { |
259186a7 | 318 | CPUState *cs = CPU(cpu); |
ce18c558 AF |
319 | CPUSPARCState *env = &cpu->env; |
320 | ||
259186a7 | 321 | cs->halted = 0; |
8f4efc55 | 322 | cpu_check_irqs(env); |
259186a7 | 323 | qemu_cpu_kick(cs); |
8f4efc55 IK |
324 | } |
325 | ||
361dea40 | 326 | static void cpu_set_ivec_irq(void *opaque, int irq, int level) |
9d926598 | 327 | { |
b64ba4b2 AF |
328 | SPARCCPU *cpu = opaque; |
329 | CPUSPARCState *env = &cpu->env; | |
259186a7 | 330 | CPUState *cs; |
9d926598 BS |
331 | |
332 | if (level) { | |
23cf96e1 AT |
333 | if (!(env->ivec_status & 0x20)) { |
334 | CPUIRQ_DPRINTF("Raise IVEC IRQ %d\n", irq); | |
259186a7 AF |
335 | cs = CPU(cpu); |
336 | cs->halted = 0; | |
23cf96e1 AT |
337 | env->interrupt_index = TT_IVEC; |
338 | env->ivec_status |= 0x20; | |
339 | env->ivec_data[0] = (0x1f << 6) | irq; | |
340 | env->ivec_data[1] = 0; | |
341 | env->ivec_data[2] = 0; | |
c3affe56 | 342 | cpu_interrupt(cs, CPU_INTERRUPT_HARD); |
23cf96e1 AT |
343 | } |
344 | } else { | |
345 | if (env->ivec_status & 0x20) { | |
346 | CPUIRQ_DPRINTF("Lower IVEC IRQ %d\n", irq); | |
d8ed887b | 347 | cs = CPU(cpu); |
23cf96e1 | 348 | env->ivec_status &= ~0x20; |
d8ed887b | 349 | cpu_reset_interrupt(cs, CPU_INTERRUPT_HARD); |
23cf96e1 | 350 | } |
9d926598 BS |
351 | } |
352 | } | |
353 | ||
e87231d4 | 354 | typedef struct ResetData { |
403d7a2d | 355 | SPARCCPU *cpu; |
44a99354 | 356 | uint64_t prom_addr; |
e87231d4 BS |
357 | } ResetData; |
358 | ||
8f4efc55 IK |
359 | void cpu_put_timer(QEMUFile *f, CPUTimer *s) |
360 | { | |
361 | qemu_put_be32s(f, &s->frequency); | |
362 | qemu_put_be32s(f, &s->disabled); | |
363 | qemu_put_be64s(f, &s->disabled_mask); | |
364 | qemu_put_sbe64s(f, &s->clock_offset); | |
365 | ||
40daca54 | 366 | timer_put(f, s->qtimer); |
8f4efc55 IK |
367 | } |
368 | ||
369 | void cpu_get_timer(QEMUFile *f, CPUTimer *s) | |
370 | { | |
371 | qemu_get_be32s(f, &s->frequency); | |
372 | qemu_get_be32s(f, &s->disabled); | |
373 | qemu_get_be64s(f, &s->disabled_mask); | |
374 | qemu_get_sbe64s(f, &s->clock_offset); | |
375 | ||
40daca54 | 376 | timer_get(f, s->qtimer); |
8f4efc55 IK |
377 | } |
378 | ||
6b678e1f | 379 | static CPUTimer *cpu_timer_create(const char *name, SPARCCPU *cpu, |
8f4efc55 IK |
380 | QEMUBHFunc *cb, uint32_t frequency, |
381 | uint64_t disabled_mask) | |
382 | { | |
7267c094 | 383 | CPUTimer *timer = g_malloc0(sizeof (CPUTimer)); |
8f4efc55 IK |
384 | |
385 | timer->name = name; | |
386 | timer->frequency = frequency; | |
387 | timer->disabled_mask = disabled_mask; | |
388 | ||
389 | timer->disabled = 1; | |
bc72ad67 | 390 | timer->clock_offset = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL); |
8f4efc55 | 391 | |
bc72ad67 | 392 | timer->qtimer = timer_new_ns(QEMU_CLOCK_VIRTUAL, cb, cpu); |
8f4efc55 IK |
393 | |
394 | return timer; | |
395 | } | |
396 | ||
397 | static void cpu_timer_reset(CPUTimer *timer) | |
398 | { | |
399 | timer->disabled = 1; | |
bc72ad67 | 400 | timer->clock_offset = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL); |
8f4efc55 | 401 | |
bc72ad67 | 402 | timer_del(timer->qtimer); |
8f4efc55 IK |
403 | } |
404 | ||
c68ea704 FB |
405 | static void main_cpu_reset(void *opaque) |
406 | { | |
e87231d4 | 407 | ResetData *s = (ResetData *)opaque; |
403d7a2d | 408 | CPUSPARCState *env = &s->cpu->env; |
44a99354 | 409 | static unsigned int nr_resets; |
20c9f095 | 410 | |
403d7a2d | 411 | cpu_reset(CPU(s->cpu)); |
8f4efc55 IK |
412 | |
413 | cpu_timer_reset(env->tick); | |
414 | cpu_timer_reset(env->stick); | |
415 | cpu_timer_reset(env->hstick); | |
416 | ||
e87231d4 BS |
417 | env->gregs[1] = 0; // Memory start |
418 | env->gregs[2] = ram_size; // Memory size | |
419 | env->gregs[3] = 0; // Machine description XXX | |
44a99354 BS |
420 | if (nr_resets++ == 0) { |
421 | /* Power on reset */ | |
422 | env->pc = s->prom_addr + 0x20ULL; | |
423 | } else { | |
424 | env->pc = s->prom_addr + 0x40ULL; | |
425 | } | |
e87231d4 | 426 | env->npc = env->pc + 4; |
20c9f095 BS |
427 | } |
428 | ||
22548760 | 429 | static void tick_irq(void *opaque) |
20c9f095 | 430 | { |
6b678e1f AF |
431 | SPARCCPU *cpu = opaque; |
432 | CPUSPARCState *env = &cpu->env; | |
20c9f095 | 433 | |
8f4efc55 IK |
434 | CPUTimer* timer = env->tick; |
435 | ||
436 | if (timer->disabled) { | |
437 | CPUIRQ_DPRINTF("tick_irq: softint disabled\n"); | |
438 | return; | |
439 | } else { | |
440 | CPUIRQ_DPRINTF("tick: fire\n"); | |
8fa211e8 | 441 | } |
8f4efc55 IK |
442 | |
443 | env->softint |= SOFTINT_TIMER; | |
ce18c558 | 444 | cpu_kick_irq(cpu); |
20c9f095 BS |
445 | } |
446 | ||
22548760 | 447 | static void stick_irq(void *opaque) |
20c9f095 | 448 | { |
6b678e1f AF |
449 | SPARCCPU *cpu = opaque; |
450 | CPUSPARCState *env = &cpu->env; | |
20c9f095 | 451 | |
8f4efc55 IK |
452 | CPUTimer* timer = env->stick; |
453 | ||
454 | if (timer->disabled) { | |
455 | CPUIRQ_DPRINTF("stick_irq: softint disabled\n"); | |
456 | return; | |
457 | } else { | |
458 | CPUIRQ_DPRINTF("stick: fire\n"); | |
8fa211e8 | 459 | } |
8f4efc55 IK |
460 | |
461 | env->softint |= SOFTINT_STIMER; | |
ce18c558 | 462 | cpu_kick_irq(cpu); |
20c9f095 BS |
463 | } |
464 | ||
22548760 | 465 | static void hstick_irq(void *opaque) |
20c9f095 | 466 | { |
6b678e1f AF |
467 | SPARCCPU *cpu = opaque; |
468 | CPUSPARCState *env = &cpu->env; | |
20c9f095 | 469 | |
8f4efc55 IK |
470 | CPUTimer* timer = env->hstick; |
471 | ||
472 | if (timer->disabled) { | |
473 | CPUIRQ_DPRINTF("hstick_irq: softint disabled\n"); | |
474 | return; | |
475 | } else { | |
476 | CPUIRQ_DPRINTF("hstick: fire\n"); | |
8fa211e8 | 477 | } |
8f4efc55 IK |
478 | |
479 | env->softint |= SOFTINT_STIMER; | |
ce18c558 | 480 | cpu_kick_irq(cpu); |
8f4efc55 IK |
481 | } |
482 | ||
483 | static int64_t cpu_to_timer_ticks(int64_t cpu_ticks, uint32_t frequency) | |
484 | { | |
485 | return muldiv64(cpu_ticks, get_ticks_per_sec(), frequency); | |
486 | } | |
487 | ||
488 | static uint64_t timer_to_cpu_ticks(int64_t timer_ticks, uint32_t frequency) | |
489 | { | |
490 | return muldiv64(timer_ticks, frequency, get_ticks_per_sec()); | |
c68ea704 FB |
491 | } |
492 | ||
8f4efc55 | 493 | void cpu_tick_set_count(CPUTimer *timer, uint64_t count) |
f4b1a842 | 494 | { |
8f4efc55 IK |
495 | uint64_t real_count = count & ~timer->disabled_mask; |
496 | uint64_t disabled_bit = count & timer->disabled_mask; | |
497 | ||
bc72ad67 | 498 | int64_t vm_clock_offset = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) - |
8f4efc55 IK |
499 | cpu_to_timer_ticks(real_count, timer->frequency); |
500 | ||
501 | TIMER_DPRINTF("%s set_count count=0x%016lx (%s) p=%p\n", | |
502 | timer->name, real_count, | |
503 | timer->disabled?"disabled":"enabled", timer); | |
504 | ||
505 | timer->disabled = disabled_bit ? 1 : 0; | |
506 | timer->clock_offset = vm_clock_offset; | |
f4b1a842 BS |
507 | } |
508 | ||
8f4efc55 | 509 | uint64_t cpu_tick_get_count(CPUTimer *timer) |
f4b1a842 | 510 | { |
8f4efc55 | 511 | uint64_t real_count = timer_to_cpu_ticks( |
bc72ad67 | 512 | qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) - timer->clock_offset, |
8f4efc55 IK |
513 | timer->frequency); |
514 | ||
515 | TIMER_DPRINTF("%s get_count count=0x%016lx (%s) p=%p\n", | |
516 | timer->name, real_count, | |
517 | timer->disabled?"disabled":"enabled", timer); | |
518 | ||
519 | if (timer->disabled) | |
520 | real_count |= timer->disabled_mask; | |
521 | ||
522 | return real_count; | |
f4b1a842 BS |
523 | } |
524 | ||
8f4efc55 | 525 | void cpu_tick_set_limit(CPUTimer *timer, uint64_t limit) |
f4b1a842 | 526 | { |
bc72ad67 | 527 | int64_t now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL); |
8f4efc55 IK |
528 | |
529 | uint64_t real_limit = limit & ~timer->disabled_mask; | |
530 | timer->disabled = (limit & timer->disabled_mask) ? 1 : 0; | |
531 | ||
532 | int64_t expires = cpu_to_timer_ticks(real_limit, timer->frequency) + | |
533 | timer->clock_offset; | |
534 | ||
535 | if (expires < now) { | |
536 | expires = now + 1; | |
537 | } | |
538 | ||
539 | TIMER_DPRINTF("%s set_limit limit=0x%016lx (%s) p=%p " | |
540 | "called with limit=0x%016lx at 0x%016lx (delta=0x%016lx)\n", | |
541 | timer->name, real_limit, | |
542 | timer->disabled?"disabled":"enabled", | |
543 | timer, limit, | |
544 | timer_to_cpu_ticks(now - timer->clock_offset, | |
545 | timer->frequency), | |
546 | timer_to_cpu_ticks(expires - now, timer->frequency)); | |
547 | ||
548 | if (!real_limit) { | |
549 | TIMER_DPRINTF("%s set_limit limit=ZERO - not starting timer\n", | |
550 | timer->name); | |
bc72ad67 | 551 | timer_del(timer->qtimer); |
8f4efc55 | 552 | } else if (timer->disabled) { |
bc72ad67 | 553 | timer_del(timer->qtimer); |
8f4efc55 | 554 | } else { |
bc72ad67 | 555 | timer_mod(timer->qtimer, expires); |
8f4efc55 | 556 | } |
f4b1a842 BS |
557 | } |
558 | ||
361dea40 | 559 | static void isa_irq_handler(void *opaque, int n, int level) |
1387fe4a | 560 | { |
361dea40 BS |
561 | static const int isa_irq_to_ivec[16] = { |
562 | [1] = 0x29, /* keyboard */ | |
563 | [4] = 0x2b, /* serial */ | |
564 | [6] = 0x27, /* floppy */ | |
565 | [7] = 0x22, /* parallel */ | |
566 | [12] = 0x2a, /* mouse */ | |
567 | }; | |
568 | qemu_irq *irqs = opaque; | |
569 | int ivec; | |
570 | ||
571 | assert(n < 16); | |
572 | ivec = isa_irq_to_ivec[n]; | |
573 | EBUS_DPRINTF("Set ISA IRQ %d level %d -> ivec 0x%x\n", n, level, ivec); | |
574 | if (ivec) { | |
575 | qemu_set_irq(irqs[ivec], level); | |
576 | } | |
1387fe4a BS |
577 | } |
578 | ||
c190ea07 | 579 | /* EBUS (Eight bit bus) bridge */ |
48a18b3c | 580 | static ISABus * |
361dea40 | 581 | pci_ebus_init(PCIBus *bus, int devfn, qemu_irq *irqs) |
c190ea07 | 582 | { |
1387fe4a | 583 | qemu_irq *isa_irq; |
ab953e28 | 584 | PCIDevice *pci_dev; |
48a18b3c | 585 | ISABus *isa_bus; |
1387fe4a | 586 | |
ab953e28 | 587 | pci_dev = pci_create_simple(bus, devfn, "ebus"); |
2ae0e48d | 588 | isa_bus = ISA_BUS(qdev_get_child_bus(DEVICE(pci_dev), "isa.0")); |
361dea40 | 589 | isa_irq = qemu_allocate_irqs(isa_irq_handler, irqs, 16); |
48a18b3c HP |
590 | isa_bus_irqs(isa_bus, isa_irq); |
591 | return isa_bus; | |
53e3c4f9 | 592 | } |
c190ea07 | 593 | |
81a322d4 | 594 | static int |
c5e6fb7e | 595 | pci_ebus_init1(PCIDevice *pci_dev) |
53e3c4f9 | 596 | { |
c5e6fb7e AK |
597 | EbusState *s = DO_UPCAST(EbusState, pci_dev, pci_dev); |
598 | ||
c2d0d012 | 599 | isa_bus_new(&pci_dev->qdev, pci_address_space_io(pci_dev)); |
c5e6fb7e AK |
600 | |
601 | pci_dev->config[0x04] = 0x06; // command = bus master, pci mem | |
602 | pci_dev->config[0x05] = 0x00; | |
603 | pci_dev->config[0x06] = 0xa0; // status = fast back-to-back, 66MHz, no error | |
604 | pci_dev->config[0x07] = 0x03; // status = medium devsel | |
605 | pci_dev->config[0x09] = 0x00; // programming i/f | |
606 | pci_dev->config[0x0D] = 0x0a; // latency_timer | |
607 | ||
0a70e094 PB |
608 | memory_region_init_alias(&s->bar0, OBJECT(s), "bar0", get_system_io(), |
609 | 0, 0x1000000); | |
e824b2cc | 610 | pci_register_bar(pci_dev, 0, PCI_BASE_ADDRESS_SPACE_MEMORY, &s->bar0); |
0a70e094 | 611 | memory_region_init_alias(&s->bar1, OBJECT(s), "bar1", get_system_io(), |
a1cf8be5 MCA |
612 | 0, 0x1000); |
613 | pci_register_bar(pci_dev, 1, PCI_BASE_ADDRESS_SPACE_IO, &s->bar1); | |
81a322d4 | 614 | return 0; |
c190ea07 BS |
615 | } |
616 | ||
40021f08 AL |
617 | static void ebus_class_init(ObjectClass *klass, void *data) |
618 | { | |
619 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); | |
620 | ||
621 | k->init = pci_ebus_init1; | |
622 | k->vendor_id = PCI_VENDOR_ID_SUN; | |
623 | k->device_id = PCI_DEVICE_ID_SUN_EBUS; | |
624 | k->revision = 0x01; | |
625 | k->class_id = PCI_CLASS_BRIDGE_OTHER; | |
626 | } | |
627 | ||
8c43a6f0 | 628 | static const TypeInfo ebus_info = { |
39bffca2 AL |
629 | .name = "ebus", |
630 | .parent = TYPE_PCI_DEVICE, | |
631 | .instance_size = sizeof(EbusState), | |
632 | .class_init = ebus_class_init, | |
53e3c4f9 BS |
633 | }; |
634 | ||
13575cf6 AF |
635 | #define TYPE_OPENPROM "openprom" |
636 | #define OPENPROM(obj) OBJECT_CHECK(PROMState, (obj), TYPE_OPENPROM) | |
637 | ||
d4edce38 | 638 | typedef struct PROMState { |
13575cf6 AF |
639 | SysBusDevice parent_obj; |
640 | ||
d4edce38 AK |
641 | MemoryRegion prom; |
642 | } PROMState; | |
643 | ||
409dbce5 AJ |
644 | static uint64_t translate_prom_address(void *opaque, uint64_t addr) |
645 | { | |
a8170e5e | 646 | hwaddr *base_addr = (hwaddr *)opaque; |
409dbce5 AJ |
647 | return addr + *base_addr - PROM_VADDR; |
648 | } | |
649 | ||
1baffa46 | 650 | /* Boot PROM (OpenBIOS) */ |
a8170e5e | 651 | static void prom_init(hwaddr addr, const char *bios_name) |
1baffa46 BS |
652 | { |
653 | DeviceState *dev; | |
654 | SysBusDevice *s; | |
655 | char *filename; | |
656 | int ret; | |
657 | ||
13575cf6 | 658 | dev = qdev_create(NULL, TYPE_OPENPROM); |
e23a1b33 | 659 | qdev_init_nofail(dev); |
1356b98d | 660 | s = SYS_BUS_DEVICE(dev); |
1baffa46 BS |
661 | |
662 | sysbus_mmio_map(s, 0, addr); | |
663 | ||
664 | /* load boot prom */ | |
665 | if (bios_name == NULL) { | |
666 | bios_name = PROM_FILENAME; | |
667 | } | |
668 | filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name); | |
669 | if (filename) { | |
409dbce5 AJ |
670 | ret = load_elf(filename, translate_prom_address, &addr, |
671 | NULL, NULL, NULL, 1, ELF_MACHINE, 0); | |
1baffa46 BS |
672 | if (ret < 0 || ret > PROM_SIZE_MAX) { |
673 | ret = load_image_targphys(filename, addr, PROM_SIZE_MAX); | |
674 | } | |
7267c094 | 675 | g_free(filename); |
1baffa46 BS |
676 | } else { |
677 | ret = -1; | |
678 | } | |
679 | if (ret < 0 || ret > PROM_SIZE_MAX) { | |
680 | fprintf(stderr, "qemu: could not load prom '%s'\n", bios_name); | |
681 | exit(1); | |
682 | } | |
683 | } | |
684 | ||
81a322d4 | 685 | static int prom_init1(SysBusDevice *dev) |
1baffa46 | 686 | { |
13575cf6 | 687 | PROMState *s = OPENPROM(dev); |
1baffa46 | 688 | |
49946538 HT |
689 | memory_region_init_ram(&s->prom, OBJECT(s), "sun4u.prom", PROM_SIZE_MAX, |
690 | &error_abort); | |
c5705a77 | 691 | vmstate_register_ram_global(&s->prom); |
d4edce38 | 692 | memory_region_set_readonly(&s->prom, true); |
750ecd44 | 693 | sysbus_init_mmio(dev, &s->prom); |
81a322d4 | 694 | return 0; |
1baffa46 BS |
695 | } |
696 | ||
999e12bb AL |
697 | static Property prom_properties[] = { |
698 | {/* end of property list */}, | |
699 | }; | |
700 | ||
701 | static void prom_class_init(ObjectClass *klass, void *data) | |
702 | { | |
39bffca2 | 703 | DeviceClass *dc = DEVICE_CLASS(klass); |
999e12bb AL |
704 | SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass); |
705 | ||
706 | k->init = prom_init1; | |
39bffca2 | 707 | dc->props = prom_properties; |
999e12bb AL |
708 | } |
709 | ||
8c43a6f0 | 710 | static const TypeInfo prom_info = { |
13575cf6 | 711 | .name = TYPE_OPENPROM, |
39bffca2 AL |
712 | .parent = TYPE_SYS_BUS_DEVICE, |
713 | .instance_size = sizeof(PROMState), | |
714 | .class_init = prom_class_init, | |
1baffa46 BS |
715 | }; |
716 | ||
bda42033 | 717 | |
88c034d5 AF |
718 | #define TYPE_SUN4U_MEMORY "memory" |
719 | #define SUN4U_RAM(obj) OBJECT_CHECK(RamDevice, (obj), TYPE_SUN4U_MEMORY) | |
720 | ||
721 | typedef struct RamDevice { | |
722 | SysBusDevice parent_obj; | |
723 | ||
d4edce38 | 724 | MemoryRegion ram; |
04843626 | 725 | uint64_t size; |
bda42033 BS |
726 | } RamDevice; |
727 | ||
728 | /* System RAM */ | |
81a322d4 | 729 | static int ram_init1(SysBusDevice *dev) |
bda42033 | 730 | { |
88c034d5 | 731 | RamDevice *d = SUN4U_RAM(dev); |
bda42033 | 732 | |
49946538 HT |
733 | memory_region_init_ram(&d->ram, OBJECT(d), "sun4u.ram", d->size, |
734 | &error_abort); | |
c5705a77 | 735 | vmstate_register_ram_global(&d->ram); |
750ecd44 | 736 | sysbus_init_mmio(dev, &d->ram); |
81a322d4 | 737 | return 0; |
bda42033 BS |
738 | } |
739 | ||
a8170e5e | 740 | static void ram_init(hwaddr addr, ram_addr_t RAM_size) |
bda42033 BS |
741 | { |
742 | DeviceState *dev; | |
743 | SysBusDevice *s; | |
744 | RamDevice *d; | |
745 | ||
746 | /* allocate RAM */ | |
88c034d5 | 747 | dev = qdev_create(NULL, TYPE_SUN4U_MEMORY); |
1356b98d | 748 | s = SYS_BUS_DEVICE(dev); |
bda42033 | 749 | |
88c034d5 | 750 | d = SUN4U_RAM(dev); |
bda42033 | 751 | d->size = RAM_size; |
e23a1b33 | 752 | qdev_init_nofail(dev); |
bda42033 BS |
753 | |
754 | sysbus_mmio_map(s, 0, addr); | |
755 | } | |
756 | ||
999e12bb AL |
757 | static Property ram_properties[] = { |
758 | DEFINE_PROP_UINT64("size", RamDevice, size, 0), | |
759 | DEFINE_PROP_END_OF_LIST(), | |
760 | }; | |
761 | ||
762 | static void ram_class_init(ObjectClass *klass, void *data) | |
763 | { | |
39bffca2 | 764 | DeviceClass *dc = DEVICE_CLASS(klass); |
999e12bb AL |
765 | SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass); |
766 | ||
767 | k->init = ram_init1; | |
39bffca2 | 768 | dc->props = ram_properties; |
999e12bb AL |
769 | } |
770 | ||
8c43a6f0 | 771 | static const TypeInfo ram_info = { |
88c034d5 | 772 | .name = TYPE_SUN4U_MEMORY, |
39bffca2 AL |
773 | .parent = TYPE_SYS_BUS_DEVICE, |
774 | .instance_size = sizeof(RamDevice), | |
775 | .class_init = ram_class_init, | |
bda42033 BS |
776 | }; |
777 | ||
f9d1465f | 778 | static SPARCCPU *cpu_devinit(const char *cpu_model, const struct hwdef *hwdef) |
3475187d | 779 | { |
8ebdf9dc | 780 | SPARCCPU *cpu; |
98cec4a2 | 781 | CPUSPARCState *env; |
e87231d4 | 782 | ResetData *reset_info; |
3475187d | 783 | |
8f4efc55 IK |
784 | uint32_t tick_frequency = 100*1000000; |
785 | uint32_t stick_frequency = 100*1000000; | |
786 | uint32_t hstick_frequency = 100*1000000; | |
787 | ||
8ebdf9dc | 788 | if (cpu_model == NULL) { |
c7ba218d | 789 | cpu_model = hwdef->default_cpu_model; |
8ebdf9dc AF |
790 | } |
791 | cpu = cpu_sparc_init(cpu_model); | |
792 | if (cpu == NULL) { | |
62724a37 BS |
793 | fprintf(stderr, "Unable to find Sparc CPU definition\n"); |
794 | exit(1); | |
795 | } | |
8ebdf9dc | 796 | env = &cpu->env; |
20c9f095 | 797 | |
6b678e1f | 798 | env->tick = cpu_timer_create("tick", cpu, tick_irq, |
8f4efc55 IK |
799 | tick_frequency, TICK_NPT_MASK); |
800 | ||
6b678e1f | 801 | env->stick = cpu_timer_create("stick", cpu, stick_irq, |
8f4efc55 | 802 | stick_frequency, TICK_INT_DIS); |
20c9f095 | 803 | |
6b678e1f | 804 | env->hstick = cpu_timer_create("hstick", cpu, hstick_irq, |
8f4efc55 | 805 | hstick_frequency, TICK_INT_DIS); |
e87231d4 | 806 | |
7267c094 | 807 | reset_info = g_malloc0(sizeof(ResetData)); |
403d7a2d | 808 | reset_info->cpu = cpu; |
44a99354 | 809 | reset_info->prom_addr = hwdef->prom_addr; |
a08d4367 | 810 | qemu_register_reset(main_cpu_reset, reset_info); |
c68ea704 | 811 | |
f9d1465f | 812 | return cpu; |
7b833f5b BS |
813 | } |
814 | ||
38bc50f7 | 815 | static void sun4uv_init(MemoryRegion *address_space_mem, |
3ef96221 | 816 | MachineState *machine, |
7b833f5b BS |
817 | const struct hwdef *hwdef) |
818 | { | |
f9d1465f | 819 | SPARCCPU *cpu; |
43a34704 | 820 | M48t59State *nvram; |
7b833f5b | 821 | unsigned int i; |
5f2bf0fe | 822 | uint64_t initrd_addr, initrd_size, kernel_addr, kernel_size, kernel_entry; |
7b833f5b | 823 | PCIBus *pci_bus, *pci_bus2, *pci_bus3; |
48a18b3c | 824 | ISABus *isa_bus; |
361dea40 | 825 | qemu_irq *ivec_irqs, *pbm_irqs; |
f455e98c | 826 | DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS]; |
fd8014e1 | 827 | DriveInfo *fd[MAX_FD]; |
a88b362c | 828 | FWCfgState *fw_cfg; |
7b833f5b | 829 | |
7b833f5b | 830 | /* init CPUs */ |
3ef96221 | 831 | cpu = cpu_devinit(machine->cpu_model, hwdef); |
7b833f5b | 832 | |
bda42033 | 833 | /* set up devices */ |
3ef96221 | 834 | ram_init(0, machine->ram_size); |
3475187d | 835 | |
1baffa46 | 836 | prom_init(hwdef->prom_addr, bios_name); |
3475187d | 837 | |
b64ba4b2 | 838 | ivec_irqs = qemu_allocate_irqs(cpu_set_ivec_irq, cpu, IVEC_MAX); |
361dea40 BS |
839 | pci_bus = pci_apb_init(APB_SPECIAL_BASE, APB_MEM_BASE, ivec_irqs, &pci_bus2, |
840 | &pci_bus3, &pbm_irqs); | |
f2898771 | 841 | pci_vga_init(pci_bus); |
83469015 | 842 | |
c190ea07 | 843 | // XXX Should be pci_bus3 |
361dea40 | 844 | isa_bus = pci_ebus_init(pci_bus, -1, pbm_irqs); |
c190ea07 | 845 | |
e87231d4 BS |
846 | i = 0; |
847 | if (hwdef->console_serial_base) { | |
38bc50f7 | 848 | serial_mm_init(address_space_mem, hwdef->console_serial_base, 0, |
39186d8a | 849 | NULL, 115200, serial_hds[i], DEVICE_BIG_ENDIAN); |
e87231d4 BS |
850 | i++; |
851 | } | |
852 | for(; i < MAX_SERIAL_PORTS; i++) { | |
83469015 | 853 | if (serial_hds[i]) { |
48a18b3c | 854 | serial_isa_init(isa_bus, i, serial_hds[i]); |
83469015 FB |
855 | } |
856 | } | |
857 | ||
858 | for(i = 0; i < MAX_PARALLEL_PORTS; i++) { | |
859 | if (parallel_hds[i]) { | |
48a18b3c | 860 | parallel_init(isa_bus, i, parallel_hds[i]); |
83469015 FB |
861 | } |
862 | } | |
863 | ||
cb457d76 | 864 | for(i = 0; i < nb_nics; i++) |
29b358f9 | 865 | pci_nic_init_nofail(&nd_table[i], pci_bus, "ne2k_pci", NULL); |
83469015 | 866 | |
d8f94e1b | 867 | ide_drive_get(hd, ARRAY_SIZE(hd)); |
e4bcb14c | 868 | |
3b898dda BS |
869 | pci_cmd646_ide_init(pci_bus, hd, 1); |
870 | ||
48a18b3c | 871 | isa_create_simple(isa_bus, "i8042"); |
e4bcb14c | 872 | for(i = 0; i < MAX_FD; i++) { |
fd8014e1 | 873 | fd[i] = drive_get(IF_FLOPPY, 0, i); |
e4bcb14c | 874 | } |
48a18b3c HP |
875 | fdctrl_init_isa(isa_bus, fd); |
876 | nvram = m48t59_init_isa(isa_bus, 0x0074, NVRAM_SIZE, 59); | |
636aa70a BS |
877 | |
878 | initrd_size = 0; | |
5f2bf0fe | 879 | initrd_addr = 0; |
3ef96221 MA |
880 | kernel_size = sun4u_load_kernel(machine->kernel_filename, |
881 | machine->initrd_filename, | |
5f2bf0fe BS |
882 | ram_size, &initrd_size, &initrd_addr, |
883 | &kernel_addr, &kernel_entry); | |
636aa70a | 884 | |
3ef96221 MA |
885 | sun4u_NVRAM_set_params(nvram, NVRAM_SIZE, "Sun4u", machine->ram_size, |
886 | machine->boot_order, | |
5f2bf0fe | 887 | kernel_addr, kernel_size, |
3ef96221 | 888 | machine->kernel_cmdline, |
5f2bf0fe | 889 | initrd_addr, initrd_size, |
0d31cb99 BS |
890 | /* XXX: need an option to load a NVRAM image */ |
891 | 0, | |
892 | graphic_width, graphic_height, graphic_depth, | |
893 | (uint8_t *)&nd_table[0].macaddr); | |
83469015 | 894 | |
66708822 | 895 | fw_cfg = fw_cfg_init_io(BIOS_CFG_IOPORT); |
70db9222 | 896 | fw_cfg_add_i16(fw_cfg, FW_CFG_MAX_CPUS, (uint16_t)max_cpus); |
3cce6243 | 897 | fw_cfg_add_i32(fw_cfg, FW_CFG_ID, 1); |
905fdcb5 BS |
898 | fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size); |
899 | fw_cfg_add_i16(fw_cfg, FW_CFG_MACHINE_ID, hwdef->machine_id); | |
5f2bf0fe BS |
900 | fw_cfg_add_i64(fw_cfg, FW_CFG_KERNEL_ADDR, kernel_entry); |
901 | fw_cfg_add_i64(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size); | |
3ef96221 | 902 | if (machine->kernel_cmdline) { |
9c9b0512 | 903 | fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE, |
3ef96221 MA |
904 | strlen(machine->kernel_cmdline) + 1); |
905 | fw_cfg_add_string(fw_cfg, FW_CFG_CMDLINE_DATA, machine->kernel_cmdline); | |
513f789f | 906 | } else { |
9c9b0512 | 907 | fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE, 0); |
513f789f | 908 | } |
5f2bf0fe BS |
909 | fw_cfg_add_i64(fw_cfg, FW_CFG_INITRD_ADDR, initrd_addr); |
910 | fw_cfg_add_i64(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size); | |
3ef96221 | 911 | fw_cfg_add_i16(fw_cfg, FW_CFG_BOOT_DEVICE, machine->boot_order[0]); |
7589690c BS |
912 | |
913 | fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_WIDTH, graphic_width); | |
914 | fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_HEIGHT, graphic_height); | |
915 | fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_DEPTH, graphic_depth); | |
916 | ||
513f789f | 917 | qemu_register_boot_set(fw_cfg_boot_set, fw_cfg); |
3475187d FB |
918 | } |
919 | ||
905fdcb5 BS |
920 | enum { |
921 | sun4u_id = 0, | |
922 | sun4v_id = 64, | |
e87231d4 | 923 | niagara_id, |
905fdcb5 BS |
924 | }; |
925 | ||
c7ba218d BS |
926 | static const struct hwdef hwdefs[] = { |
927 | /* Sun4u generic PC-like machine */ | |
928 | { | |
5910b047 | 929 | .default_cpu_model = "TI UltraSparc IIi", |
905fdcb5 | 930 | .machine_id = sun4u_id, |
e87231d4 BS |
931 | .prom_addr = 0x1fff0000000ULL, |
932 | .console_serial_base = 0, | |
c7ba218d BS |
933 | }, |
934 | /* Sun4v generic PC-like machine */ | |
935 | { | |
936 | .default_cpu_model = "Sun UltraSparc T1", | |
905fdcb5 | 937 | .machine_id = sun4v_id, |
e87231d4 BS |
938 | .prom_addr = 0x1fff0000000ULL, |
939 | .console_serial_base = 0, | |
940 | }, | |
941 | /* Sun4v generic Niagara machine */ | |
942 | { | |
943 | .default_cpu_model = "Sun UltraSparc T1", | |
944 | .machine_id = niagara_id, | |
945 | .prom_addr = 0xfff0000000ULL, | |
946 | .console_serial_base = 0xfff0c2c000ULL, | |
c7ba218d BS |
947 | }, |
948 | }; | |
949 | ||
950 | /* Sun4u hardware initialisation */ | |
3ef96221 | 951 | static void sun4u_init(MachineState *machine) |
5f072e1f | 952 | { |
3ef96221 | 953 | sun4uv_init(get_system_memory(), machine, &hwdefs[0]); |
c7ba218d BS |
954 | } |
955 | ||
956 | /* Sun4v hardware initialisation */ | |
3ef96221 | 957 | static void sun4v_init(MachineState *machine) |
5f072e1f | 958 | { |
3ef96221 | 959 | sun4uv_init(get_system_memory(), machine, &hwdefs[1]); |
c7ba218d BS |
960 | } |
961 | ||
e87231d4 | 962 | /* Niagara hardware initialisation */ |
3ef96221 | 963 | static void niagara_init(MachineState *machine) |
5f072e1f | 964 | { |
3ef96221 | 965 | sun4uv_init(get_system_memory(), machine, &hwdefs[2]); |
e87231d4 BS |
966 | } |
967 | ||
f80f9ec9 | 968 | static QEMUMachine sun4u_machine = { |
66de733b BS |
969 | .name = "sun4u", |
970 | .desc = "Sun4u platform", | |
971 | .init = sun4u_init, | |
1bcee014 | 972 | .max_cpus = 1, // XXX for now |
0c257437 | 973 | .is_default = 1, |
c1654732 | 974 | .default_boot_order = "c", |
3475187d | 975 | }; |
c7ba218d | 976 | |
f80f9ec9 | 977 | static QEMUMachine sun4v_machine = { |
66de733b BS |
978 | .name = "sun4v", |
979 | .desc = "Sun4v platform", | |
980 | .init = sun4v_init, | |
1bcee014 | 981 | .max_cpus = 1, // XXX for now |
c1654732 | 982 | .default_boot_order = "c", |
c7ba218d | 983 | }; |
e87231d4 | 984 | |
f80f9ec9 | 985 | static QEMUMachine niagara_machine = { |
e87231d4 BS |
986 | .name = "Niagara", |
987 | .desc = "Sun4v platform, Niagara", | |
988 | .init = niagara_init, | |
1bcee014 | 989 | .max_cpus = 1, // XXX for now |
c1654732 | 990 | .default_boot_order = "c", |
e87231d4 | 991 | }; |
f80f9ec9 | 992 | |
83f7d43a AF |
993 | static void sun4u_register_types(void) |
994 | { | |
995 | type_register_static(&ebus_info); | |
996 | type_register_static(&prom_info); | |
997 | type_register_static(&ram_info); | |
998 | } | |
999 | ||
f80f9ec9 AL |
1000 | static void sun4u_machine_init(void) |
1001 | { | |
1002 | qemu_register_machine(&sun4u_machine); | |
1003 | qemu_register_machine(&sun4v_machine); | |
1004 | qemu_register_machine(&niagara_machine); | |
1005 | } | |
1006 | ||
83f7d43a | 1007 | type_init(sun4u_register_types) |
f80f9ec9 | 1008 | machine_init(sun4u_machine_init); |