]> git.proxmox.com Git - mirror_qemu.git/blame - hw/sun4u.c
sparc64: trap handling corrections
[mirror_qemu.git] / hw / sun4u.c
CommitLineData
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 */
87ecb68b
PB
24#include "hw.h"
25#include "pci.h"
26#include "pc.h"
27#include "nvram.h"
28#include "fdc.h"
29#include "net.h"
30#include "qemu-timer.h"
31#include "sysemu.h"
32#include "boards.h"
d2c63fc1 33#include "firmware_abi.h"
3cce6243 34#include "fw_cfg.h"
3475187d 35
9d926598
BS
36//#define DEBUG_IRQ
37
38#ifdef DEBUG_IRQ
001faf32
BS
39#define DPRINTF(fmt, ...) \
40 do { printf("CPUIRQ: " fmt , ## __VA_ARGS__); } while (0)
9d926598 41#else
001faf32 42#define DPRINTF(fmt, ...)
9d926598
BS
43#endif
44
83469015
FB
45#define KERNEL_LOAD_ADDR 0x00404000
46#define CMDLINE_ADDR 0x003ff000
47#define INITRD_LOAD_ADDR 0x00300000
ac2e9d66 48#define PROM_SIZE_MAX (4 * 1024 * 1024)
f930d07e 49#define PROM_VADDR 0x000ffd00000ULL
83469015 50#define APB_SPECIAL_BASE 0x1fe00000000ULL
f930d07e
BS
51#define APB_MEM_BASE 0x1ff00000000ULL
52#define VGA_BASE (APB_MEM_BASE + 0x400000ULL)
53#define PROM_FILENAME "openbios-sparc64"
83469015 54#define NVRAM_SIZE 0x2000
e4bcb14c 55#define MAX_IDE_BUS 2
3cce6243 56#define BIOS_CFG_IOPORT 0x510
3475187d 57
9d926598
BS
58#define MAX_PILS 16
59
8fa211e8
BS
60#define TICK_INT_DIS 0x8000000000000000ULL
61#define TICK_MAX 0x7fffffffffffffffULL
62
c7ba218d
BS
63struct hwdef {
64 const char * const default_cpu_model;
905fdcb5 65 uint16_t machine_id;
e87231d4
BS
66 uint64_t prom_addr;
67 uint64_t console_serial_base;
c7ba218d
BS
68};
69
3475187d
FB
70int DMA_get_channel_mode (int nchan)
71{
72 return 0;
73}
74int DMA_read_memory (int nchan, void *buf, int pos, int size)
75{
76 return 0;
77}
78int DMA_write_memory (int nchan, void *buf, int pos, int size)
79{
80 return 0;
81}
82void DMA_hold_DREQ (int nchan) {}
83void DMA_release_DREQ (int nchan) {}
84void DMA_schedule(int nchan) {}
3475187d
FB
85void DMA_init (int high_page_enable) {}
86void DMA_register_channel (int nchan,
87 DMA_transfer_handler transfer_handler,
88 void *opaque)
89{
90}
91
513f789f 92static int fw_cfg_boot_set(void *opaque, const char *boot_device)
81864572 93{
513f789f 94 fw_cfg_add_i16(opaque, FW_CFG_BOOT_DEVICE, boot_device[0]);
81864572
BS
95 return 0;
96}
97
d2c63fc1 98static int sun4u_NVRAM_set_params (m48t59_t *nvram, uint16_t NVRAM_size,
e7fb1406 99 const char *arch,
77f193da
BS
100 ram_addr_t RAM_size,
101 const char *boot_devices,
d2c63fc1
BS
102 uint32_t kernel_image, uint32_t kernel_size,
103 const char *cmdline,
104 uint32_t initrd_image, uint32_t initrd_size,
105 uint32_t NVRAM_image,
0d31cb99
BS
106 int width, int height, int depth,
107 const uint8_t *macaddr)
83469015 108{
66508601
BS
109 unsigned int i;
110 uint32_t start, end;
d2c63fc1 111 uint8_t image[0x1ff0];
d2c63fc1
BS
112 struct OpenBIOS_nvpart_v1 *part_header;
113
114 memset(image, '\0', sizeof(image));
115
513f789f 116 start = 0;
83469015 117
66508601
BS
118 // OpenBIOS nvram variables
119 // Variable partition
d2c63fc1
BS
120 part_header = (struct OpenBIOS_nvpart_v1 *)&image[start];
121 part_header->signature = OPENBIOS_PART_SYSTEM;
363a37d5 122 pstrcpy(part_header->name, sizeof(part_header->name), "system");
66508601 123
d2c63fc1 124 end = start + sizeof(struct OpenBIOS_nvpart_v1);
66508601 125 for (i = 0; i < nb_prom_envs; i++)
d2c63fc1
BS
126 end = OpenBIOS_set_var(image, end, prom_envs[i]);
127
128 // End marker
129 image[end++] = '\0';
66508601 130
66508601 131 end = start + ((end - start + 15) & ~15);
d2c63fc1 132 OpenBIOS_finish_partition(part_header, end - start);
66508601
BS
133
134 // free partition
135 start = end;
d2c63fc1
BS
136 part_header = (struct OpenBIOS_nvpart_v1 *)&image[start];
137 part_header->signature = OPENBIOS_PART_FREE;
363a37d5 138 pstrcpy(part_header->name, sizeof(part_header->name), "free");
66508601
BS
139
140 end = 0x1fd0;
d2c63fc1
BS
141 OpenBIOS_finish_partition(part_header, end - start);
142
0d31cb99
BS
143 Sun_init_header((struct Sun_nvram *)&image[0x1fd8], macaddr, 0x80);
144
d2c63fc1
BS
145 for (i = 0; i < sizeof(image); i++)
146 m48t59_write(nvram, i, image[i]);
66508601 147
83469015 148 return 0;
3475187d
FB
149}
150
b4950060 151void pic_info(Monitor *mon)
3475187d
FB
152{
153}
154
b4950060 155void irq_info(Monitor *mon)
3475187d
FB
156{
157}
158
9d926598
BS
159void cpu_check_irqs(CPUState *env)
160{
161 uint32_t pil = env->pil_in | (env->softint & ~SOFTINT_TIMER) |
162 ((env->softint & SOFTINT_TIMER) << 14);
163
164 if (pil && (env->interrupt_index == 0 ||
165 (env->interrupt_index & ~15) == TT_EXTINT)) {
166 unsigned int i;
167
168 for (i = 15; i > 0; i--) {
169 if (pil & (1 << i)) {
170 int old_interrupt = env->interrupt_index;
171
172 env->interrupt_index = TT_EXTINT | i;
173 if (old_interrupt != env->interrupt_index) {
174 DPRINTF("Set CPU IRQ %d\n", i);
175 cpu_interrupt(env, CPU_INTERRUPT_HARD);
176 }
177 break;
178 }
179 }
180 } else if (!pil && (env->interrupt_index & ~15) == TT_EXTINT) {
181 DPRINTF("Reset CPU IRQ %d\n", env->interrupt_index & 15);
182 env->interrupt_index = 0;
183 cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
184 }
185}
186
187static void cpu_set_irq(void *opaque, int irq, int level)
188{
189 CPUState *env = opaque;
190
191 if (level) {
192 DPRINTF("Raise CPU IRQ %d\n", irq);
193 env->halted = 0;
194 env->pil_in |= 1 << irq;
195 cpu_check_irqs(env);
196 } else {
197 DPRINTF("Lower CPU IRQ %d\n", irq);
198 env->pil_in &= ~(1 << irq);
199 cpu_check_irqs(env);
200 }
201}
202
83469015 203void qemu_system_powerdown(void)
3475187d
FB
204{
205}
206
e87231d4
BS
207typedef struct ResetData {
208 CPUState *env;
209 uint64_t reset_addr;
210} ResetData;
211
c68ea704
FB
212static void main_cpu_reset(void *opaque)
213{
e87231d4
BS
214 ResetData *s = (ResetData *)opaque;
215 CPUState *env = s->env;
20c9f095 216
c68ea704 217 cpu_reset(env);
8fa211e8
BS
218 env->tick_cmpr = TICK_INT_DIS | 0;
219 ptimer_set_limit(env->tick, TICK_MAX, 1);
2f43e00e 220 ptimer_run(env->tick, 1);
8fa211e8
BS
221 env->stick_cmpr = TICK_INT_DIS | 0;
222 ptimer_set_limit(env->stick, TICK_MAX, 1);
2f43e00e 223 ptimer_run(env->stick, 1);
8fa211e8
BS
224 env->hstick_cmpr = TICK_INT_DIS | 0;
225 ptimer_set_limit(env->hstick, TICK_MAX, 1);
2f43e00e 226 ptimer_run(env->hstick, 1);
e87231d4
BS
227 env->gregs[1] = 0; // Memory start
228 env->gregs[2] = ram_size; // Memory size
229 env->gregs[3] = 0; // Machine description XXX
230 env->pc = s->reset_addr;
231 env->npc = env->pc + 4;
20c9f095
BS
232}
233
22548760 234static void tick_irq(void *opaque)
20c9f095
BS
235{
236 CPUState *env = opaque;
237
8fa211e8
BS
238 if (!(env->tick_cmpr & TICK_INT_DIS)) {
239 env->softint |= SOFTINT_TIMER;
240 cpu_interrupt(env, CPU_INTERRUPT_TIMER);
241 }
20c9f095
BS
242}
243
22548760 244static void stick_irq(void *opaque)
20c9f095
BS
245{
246 CPUState *env = opaque;
247
8fa211e8
BS
248 if (!(env->stick_cmpr & TICK_INT_DIS)) {
249 env->softint |= SOFTINT_STIMER;
250 cpu_interrupt(env, CPU_INTERRUPT_TIMER);
251 }
20c9f095
BS
252}
253
22548760 254static void hstick_irq(void *opaque)
20c9f095
BS
255{
256 CPUState *env = opaque;
257
8fa211e8
BS
258 if (!(env->hstick_cmpr & TICK_INT_DIS)) {
259 cpu_interrupt(env, CPU_INTERRUPT_TIMER);
260 }
c68ea704
FB
261}
262
f4b1a842
BS
263void cpu_tick_set_count(void *opaque, uint64_t count)
264{
265 ptimer_set_count(opaque, -count);
266}
267
268uint64_t cpu_tick_get_count(void *opaque)
269{
270 return -ptimer_get_count(opaque);
271}
272
273void cpu_tick_set_limit(void *opaque, uint64_t limit)
274{
275 ptimer_set_limit(opaque, -limit, 0);
276}
277
83469015
FB
278static const int ide_iobase[2] = { 0x1f0, 0x170 };
279static const int ide_iobase2[2] = { 0x3f6, 0x376 };
280static const int ide_irq[2] = { 14, 15 };
3475187d 281
83469015
FB
282static const int serial_io[MAX_SERIAL_PORTS] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 };
283static const int serial_irq[MAX_SERIAL_PORTS] = { 4, 3, 4, 3 };
284
285static const int parallel_io[MAX_PARALLEL_PORTS] = { 0x378, 0x278, 0x3bc };
286static const int parallel_irq[MAX_PARALLEL_PORTS] = { 7, 7, 7 };
287
288static fdctrl_t *floppy_controller;
3475187d 289
c190ea07
BS
290static void ebus_mmio_mapfunc(PCIDevice *pci_dev, int region_num,
291 uint32_t addr, uint32_t size, int type)
292{
293 DPRINTF("Mapping region %d registers at %08x\n", region_num, addr);
294 switch (region_num) {
295 case 0:
296 isa_mmio_init(addr, 0x1000000);
297 break;
298 case 1:
299 isa_mmio_init(addr, 0x800000);
300 break;
301 }
302}
303
304/* EBUS (Eight bit bus) bridge */
305static void
306pci_ebus_init(PCIBus *bus, int devfn)
307{
308 PCIDevice *s;
309
310 s = pci_register_device(bus, "EBUS", sizeof(*s), devfn, NULL, NULL);
deb54399
AL
311 pci_config_set_vendor_id(s->config, PCI_VENDOR_ID_SUN);
312 pci_config_set_device_id(s->config, PCI_DEVICE_ID_SUN_EBUS);
c190ea07
BS
313 s->config[0x04] = 0x06; // command = bus master, pci mem
314 s->config[0x05] = 0x00;
315 s->config[0x06] = 0xa0; // status = fast back-to-back, 66MHz, no error
316 s->config[0x07] = 0x03; // status = medium devsel
317 s->config[0x08] = 0x01; // revision
318 s->config[0x09] = 0x00; // programming i/f
173a543b 319 pci_config_set_class(s->config, PCI_CLASS_BRIDGE_OTHER);
c190ea07 320 s->config[0x0D] = 0x0a; // latency_timer
6407f373 321 s->config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
c190ea07 322
28c2c264 323 pci_register_bar(s, 0, 0x1000000, PCI_ADDRESS_SPACE_MEM,
c190ea07 324 ebus_mmio_mapfunc);
28c2c264 325 pci_register_bar(s, 1, 0x800000, PCI_ADDRESS_SPACE_MEM,
c190ea07
BS
326 ebus_mmio_mapfunc);
327}
328
fbe1b595 329static void sun4uv_init(ram_addr_t RAM_size,
3023f332 330 const char *boot_devices,
c7ba218d
BS
331 const char *kernel_filename, const char *kernel_cmdline,
332 const char *initrd_filename, const char *cpu_model,
333 const struct hwdef *hwdef)
3475187d 334{
c68ea704 335 CPUState *env;
5cea8590 336 char *filename;
83469015 337 m48t59_t *nvram;
3475187d
FB
338 int ret, linux_boot;
339 unsigned int i;
b584726d 340 ram_addr_t ram_offset, prom_offset;
5c6602c5 341 long initrd_size, kernel_size;
c190ea07 342 PCIBus *pci_bus, *pci_bus2, *pci_bus3;
20c9f095 343 QEMUBH *bh;
f19e918d 344 qemu_irq *irq;
22548760 345 int drive_index;
e4bcb14c
TS
346 BlockDriverState *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
347 BlockDriverState *fd[MAX_FD];
3cce6243 348 void *fw_cfg;
e87231d4 349 ResetData *reset_info;
3475187d
FB
350
351 linux_boot = (kernel_filename != NULL);
352
62724a37 353 /* init CPUs */
c7ba218d
BS
354 if (!cpu_model)
355 cpu_model = hwdef->default_cpu_model;
356
aaed909a
FB
357 env = cpu_init(cpu_model);
358 if (!env) {
62724a37
BS
359 fprintf(stderr, "Unable to find Sparc CPU definition\n");
360 exit(1);
361 }
20c9f095
BS
362 bh = qemu_bh_new(tick_irq, env);
363 env->tick = ptimer_init(bh);
364 ptimer_set_period(env->tick, 1ULL);
365
366 bh = qemu_bh_new(stick_irq, env);
367 env->stick = ptimer_init(bh);
368 ptimer_set_period(env->stick, 1ULL);
369
370 bh = qemu_bh_new(hstick_irq, env);
371 env->hstick = ptimer_init(bh);
372 ptimer_set_period(env->hstick, 1ULL);
e87231d4
BS
373
374 reset_info = qemu_mallocz(sizeof(ResetData));
375 reset_info->env = env;
376 reset_info->reset_addr = hwdef->prom_addr + 0x40ULL;
a08d4367 377 qemu_register_reset(main_cpu_reset, reset_info);
e87231d4
BS
378 main_cpu_reset(reset_info);
379 // Override warm reset address with cold start address
380 env->pc = hwdef->prom_addr + 0x20ULL;
381 env->npc = env->pc + 4;
c68ea704 382
3475187d 383 /* allocate RAM */
5c6602c5
BS
384 ram_offset = qemu_ram_alloc(RAM_size);
385 cpu_register_physical_memory(0, RAM_size, ram_offset);
3475187d 386
5c6602c5 387 prom_offset = qemu_ram_alloc(PROM_SIZE_MAX);
e87231d4 388 cpu_register_physical_memory(hwdef->prom_addr,
77f193da
BS
389 (PROM_SIZE_MAX + TARGET_PAGE_SIZE) &
390 TARGET_PAGE_MASK,
b3783731 391 prom_offset | IO_MEM_ROM);
3475187d 392
1192dad8
JM
393 if (bios_name == NULL)
394 bios_name = PROM_FILENAME;
5cea8590
PB
395 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
396 if (filename) {
397 ret = load_elf(filename, hwdef->prom_addr - PROM_VADDR,
398 NULL, NULL, NULL);
e87231d4 399 if (ret < 0) {
5cea8590
PB
400 ret = load_image_targphys(filename, hwdef->prom_addr,
401 (PROM_SIZE_MAX + TARGET_PAGE_SIZE) &
402 TARGET_PAGE_MASK);
e87231d4 403 }
5cea8590
PB
404 qemu_free(filename);
405 } else {
406 ret = -1;
407 }
408 if (ret < 0) {
409 fprintf(stderr, "qemu: could not load prom '%s'\n",
410 bios_name);
411 exit(1);
3475187d 412 }
3475187d
FB
413
414 kernel_size = 0;
83469015 415 initrd_size = 0;
3475187d 416 if (linux_boot) {
b3783731 417 /* XXX: put correct offset */
74287114 418 kernel_size = load_elf(kernel_filename, 0, NULL, NULL, NULL);
3475187d 419 if (kernel_size < 0)
293f78bc
BS
420 kernel_size = load_aout(kernel_filename, KERNEL_LOAD_ADDR,
421 ram_size - KERNEL_LOAD_ADDR);
f930d07e 422 if (kernel_size < 0)
293f78bc
BS
423 kernel_size = load_image_targphys(kernel_filename,
424 KERNEL_LOAD_ADDR,
425 ram_size - KERNEL_LOAD_ADDR);
3475187d 426 if (kernel_size < 0) {
5fafdf24 427 fprintf(stderr, "qemu: could not load kernel '%s'\n",
3475187d 428 kernel_filename);
f930d07e 429 exit(1);
3475187d
FB
430 }
431
432 /* load initrd */
3475187d 433 if (initrd_filename) {
293f78bc
BS
434 initrd_size = load_image_targphys(initrd_filename,
435 INITRD_LOAD_ADDR,
436 ram_size - INITRD_LOAD_ADDR);
3475187d 437 if (initrd_size < 0) {
5fafdf24 438 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
3475187d
FB
439 initrd_filename);
440 exit(1);
441 }
442 }
443 if (initrd_size > 0) {
f930d07e 444 for (i = 0; i < 64 * TARGET_PAGE_SIZE; i += TARGET_PAGE_SIZE) {
293f78bc
BS
445 if (ldl_phys(KERNEL_LOAD_ADDR + i) == 0x48647253) { // HdrS
446 stl_phys(KERNEL_LOAD_ADDR + i + 16, INITRD_LOAD_ADDR);
447 stl_phys(KERNEL_LOAD_ADDR + i + 20, initrd_size);
f930d07e
BS
448 break;
449 }
450 }
3475187d
FB
451 }
452 }
7d55273f
IK
453
454 irq = qemu_allocate_irqs(cpu_set_irq, env, MAX_PILS);
455 pci_bus = pci_apb_init(APB_SPECIAL_BASE, APB_MEM_BASE, irq, &pci_bus2,
c190ea07 456 &pci_bus3);
83469015 457 isa_mem_base = VGA_BASE;
fbe1b595 458 pci_vga_init(pci_bus, 0, 0);
83469015 459
c190ea07
BS
460 // XXX Should be pci_bus3
461 pci_ebus_init(pci_bus, -1);
462
e87231d4
BS
463 i = 0;
464 if (hwdef->console_serial_base) {
465 serial_mm_init(hwdef->console_serial_base, 0, NULL, 115200,
466 serial_hds[i], 1);
467 i++;
468 }
469 for(; i < MAX_SERIAL_PORTS; i++) {
83469015 470 if (serial_hds[i]) {
cbf5c748
BS
471 serial_init(serial_io[i], NULL/*serial_irq[i]*/, 115200,
472 serial_hds[i]);
83469015
FB
473 }
474 }
475
476 for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
477 if (parallel_hds[i]) {
77f193da
BS
478 parallel_init(parallel_io[i], NULL/*parallel_irq[i]*/,
479 parallel_hds[i]);
83469015
FB
480 }
481 }
482
cb457d76 483 for(i = 0; i < nb_nics; i++)
6d53bfd1 484 pci_nic_init(&nd_table[i], "ne2k_pci", NULL);
83469015 485
e4bcb14c
TS
486 if (drive_get_max_bus(IF_IDE) >= MAX_IDE_BUS) {
487 fprintf(stderr, "qemu: too many IDE bus\n");
488 exit(1);
489 }
490 for(i = 0; i < MAX_IDE_BUS * MAX_IDE_DEVS; i++) {
22548760
BS
491 drive_index = drive_get_index(IF_IDE, i / MAX_IDE_DEVS,
492 i % MAX_IDE_DEVS);
493 if (drive_index != -1)
494 hd[i] = drives_table[drive_index].bdrv;
e4bcb14c
TS
495 else
496 hd[i] = NULL;
497 }
498
3b898dda
BS
499 pci_cmd646_ide_init(pci_bus, hd, 1);
500
d537cf6c
PB
501 /* FIXME: wire up interrupts. */
502 i8042_init(NULL/*1*/, NULL/*12*/, 0x60);
e4bcb14c 503 for(i = 0; i < MAX_FD; i++) {
22548760
BS
504 drive_index = drive_get_index(IF_FLOPPY, 0, i);
505 if (drive_index != -1)
506 fd[i] = drives_table[drive_index].bdrv;
e4bcb14c
TS
507 else
508 fd[i] = NULL;
509 }
510 floppy_controller = fdctrl_init(NULL/*6*/, 2, 0, 0x3f0, fd);
d537cf6c 511 nvram = m48t59_init(NULL/*8*/, 0, 0x0074, NVRAM_SIZE, 59);
22548760 512 sun4u_NVRAM_set_params(nvram, NVRAM_SIZE, "Sun4u", RAM_size, boot_devices,
0d31cb99
BS
513 KERNEL_LOAD_ADDR, kernel_size,
514 kernel_cmdline,
515 INITRD_LOAD_ADDR, initrd_size,
516 /* XXX: need an option to load a NVRAM image */
517 0,
518 graphic_width, graphic_height, graphic_depth,
519 (uint8_t *)&nd_table[0].macaddr);
83469015 520
3cce6243
BS
521 fw_cfg = fw_cfg_init(BIOS_CFG_IOPORT, BIOS_CFG_IOPORT + 1, 0, 0);
522 fw_cfg_add_i32(fw_cfg, FW_CFG_ID, 1);
905fdcb5
BS
523 fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size);
524 fw_cfg_add_i16(fw_cfg, FW_CFG_MACHINE_ID, hwdef->machine_id);
513f789f
BS
525 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, KERNEL_LOAD_ADDR);
526 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size);
527 if (kernel_cmdline) {
528 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_CMDLINE, CMDLINE_ADDR);
529 pstrcpy_targphys(CMDLINE_ADDR, TARGET_PAGE_SIZE, kernel_cmdline);
530 } else {
531 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_CMDLINE, 0);
532 }
533 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, INITRD_LOAD_ADDR);
534 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size);
535 fw_cfg_add_i16(fw_cfg, FW_CFG_BOOT_DEVICE, boot_devices[0]);
536 qemu_register_boot_set(fw_cfg_boot_set, fw_cfg);
3475187d
FB
537}
538
905fdcb5
BS
539enum {
540 sun4u_id = 0,
541 sun4v_id = 64,
e87231d4 542 niagara_id,
905fdcb5
BS
543};
544
c7ba218d
BS
545static const struct hwdef hwdefs[] = {
546 /* Sun4u generic PC-like machine */
547 {
548 .default_cpu_model = "TI UltraSparc II",
905fdcb5 549 .machine_id = sun4u_id,
e87231d4
BS
550 .prom_addr = 0x1fff0000000ULL,
551 .console_serial_base = 0,
c7ba218d
BS
552 },
553 /* Sun4v generic PC-like machine */
554 {
555 .default_cpu_model = "Sun UltraSparc T1",
905fdcb5 556 .machine_id = sun4v_id,
e87231d4
BS
557 .prom_addr = 0x1fff0000000ULL,
558 .console_serial_base = 0,
559 },
560 /* Sun4v generic Niagara machine */
561 {
562 .default_cpu_model = "Sun UltraSparc T1",
563 .machine_id = niagara_id,
564 .prom_addr = 0xfff0000000ULL,
565 .console_serial_base = 0xfff0c2c000ULL,
c7ba218d
BS
566 },
567};
568
569/* Sun4u hardware initialisation */
fbe1b595 570static void sun4u_init(ram_addr_t RAM_size,
3023f332 571 const char *boot_devices,
c7ba218d
BS
572 const char *kernel_filename, const char *kernel_cmdline,
573 const char *initrd_filename, const char *cpu_model)
574{
fbe1b595 575 sun4uv_init(RAM_size, boot_devices, kernel_filename,
c7ba218d
BS
576 kernel_cmdline, initrd_filename, cpu_model, &hwdefs[0]);
577}
578
579/* Sun4v hardware initialisation */
fbe1b595 580static void sun4v_init(ram_addr_t RAM_size,
3023f332 581 const char *boot_devices,
c7ba218d
BS
582 const char *kernel_filename, const char *kernel_cmdline,
583 const char *initrd_filename, const char *cpu_model)
584{
fbe1b595 585 sun4uv_init(RAM_size, boot_devices, kernel_filename,
c7ba218d
BS
586 kernel_cmdline, initrd_filename, cpu_model, &hwdefs[1]);
587}
588
e87231d4 589/* Niagara hardware initialisation */
fbe1b595 590static void niagara_init(ram_addr_t RAM_size,
3023f332 591 const char *boot_devices,
e87231d4
BS
592 const char *kernel_filename, const char *kernel_cmdline,
593 const char *initrd_filename, const char *cpu_model)
594{
fbe1b595 595 sun4uv_init(RAM_size, boot_devices, kernel_filename,
e87231d4
BS
596 kernel_cmdline, initrd_filename, cpu_model, &hwdefs[2]);
597}
598
f80f9ec9 599static QEMUMachine sun4u_machine = {
66de733b
BS
600 .name = "sun4u",
601 .desc = "Sun4u platform",
602 .init = sun4u_init,
1bcee014 603 .max_cpus = 1, // XXX for now
0c257437 604 .is_default = 1,
3475187d 605};
c7ba218d 606
f80f9ec9 607static QEMUMachine sun4v_machine = {
66de733b
BS
608 .name = "sun4v",
609 .desc = "Sun4v platform",
610 .init = sun4v_init,
1bcee014 611 .max_cpus = 1, // XXX for now
c7ba218d 612};
e87231d4 613
f80f9ec9 614static QEMUMachine niagara_machine = {
e87231d4
BS
615 .name = "Niagara",
616 .desc = "Sun4v platform, Niagara",
617 .init = niagara_init,
1bcee014 618 .max_cpus = 1, // XXX for now
e87231d4 619};
f80f9ec9
AL
620
621static void sun4u_machine_init(void)
622{
623 qemu_register_machine(&sun4u_machine);
624 qemu_register_machine(&sun4v_machine);
625 qemu_register_machine(&niagara_machine);
626}
627
628machine_init(sun4u_machine_init);