2 * QEMU Sun4u/Sun4v System Emulator
4 * Copyright (c) 2005 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
30 #include "qemu-timer.h"
33 #include "firmware_abi.h"
41 #define DPRINTF(fmt, ...) \
42 do { printf("CPUIRQ: " fmt , ## __VA_ARGS__); } while (0)
44 #define DPRINTF(fmt, ...)
47 #define KERNEL_LOAD_ADDR 0x00404000
48 #define CMDLINE_ADDR 0x003ff000
49 #define INITRD_LOAD_ADDR 0x00300000
50 #define PROM_SIZE_MAX (4 * 1024 * 1024)
51 #define PROM_VADDR 0x000ffd00000ULL
52 #define APB_SPECIAL_BASE 0x1fe00000000ULL
53 #define APB_MEM_BASE 0x1ff00000000ULL
54 #define VGA_BASE (APB_MEM_BASE + 0x400000ULL)
55 #define PROM_FILENAME "openbios-sparc64"
56 #define NVRAM_SIZE 0x2000
58 #define BIOS_CFG_IOPORT 0x510
59 #define FW_CFG_SPARC64_WIDTH (FW_CFG_ARCH_LOCAL + 0x00)
60 #define FW_CFG_SPARC64_HEIGHT (FW_CFG_ARCH_LOCAL + 0x01)
61 #define FW_CFG_SPARC64_DEPTH (FW_CFG_ARCH_LOCAL + 0x02)
65 #define TICK_INT_DIS 0x8000000000000000ULL
66 #define TICK_MAX 0x7fffffffffffffffULL
69 const char * const default_cpu_model;
72 uint64_t console_serial_base;
75 int DMA_get_channel_mode (int nchan)
79 int DMA_read_memory (int nchan, void *buf, int pos, int size)
83 int DMA_write_memory (int nchan, void *buf, int pos, int size)
87 void DMA_hold_DREQ (int nchan) {}
88 void DMA_release_DREQ (int nchan) {}
89 void DMA_schedule(int nchan) {}
90 void DMA_init (int high_page_enable) {}
91 void DMA_register_channel (int nchan,
92 DMA_transfer_handler transfer_handler,
97 static int fw_cfg_boot_set(void *opaque, const char *boot_device)
99 fw_cfg_add_i16(opaque, FW_CFG_BOOT_DEVICE, boot_device[0]);
103 static int sun4u_NVRAM_set_params (m48t59_t *nvram, uint16_t NVRAM_size,
106 const char *boot_devices,
107 uint32_t kernel_image, uint32_t kernel_size,
109 uint32_t initrd_image, uint32_t initrd_size,
110 uint32_t NVRAM_image,
111 int width, int height, int depth,
112 const uint8_t *macaddr)
116 uint8_t image[0x1ff0];
117 struct OpenBIOS_nvpart_v1 *part_header;
119 memset(image, '\0', sizeof(image));
123 // OpenBIOS nvram variables
124 // Variable partition
125 part_header = (struct OpenBIOS_nvpart_v1 *)&image[start];
126 part_header->signature = OPENBIOS_PART_SYSTEM;
127 pstrcpy(part_header->name, sizeof(part_header->name), "system");
129 end = start + sizeof(struct OpenBIOS_nvpart_v1);
130 for (i = 0; i < nb_prom_envs; i++)
131 end = OpenBIOS_set_var(image, end, prom_envs[i]);
136 end = start + ((end - start + 15) & ~15);
137 OpenBIOS_finish_partition(part_header, end - start);
141 part_header = (struct OpenBIOS_nvpart_v1 *)&image[start];
142 part_header->signature = OPENBIOS_PART_FREE;
143 pstrcpy(part_header->name, sizeof(part_header->name), "free");
146 OpenBIOS_finish_partition(part_header, end - start);
148 Sun_init_header((struct Sun_nvram *)&image[0x1fd8], macaddr, 0x80);
150 for (i = 0; i < sizeof(image); i++)
151 m48t59_write(nvram, i, image[i]);
155 static unsigned long sun4u_load_kernel(const char *kernel_filename,
156 const char *initrd_filename,
157 ram_addr_t RAM_size, long *initrd_size)
163 linux_boot = (kernel_filename != NULL);
167 kernel_size = load_elf(kernel_filename, 0, NULL, NULL, NULL);
169 kernel_size = load_aout(kernel_filename, KERNEL_LOAD_ADDR,
170 RAM_size - KERNEL_LOAD_ADDR);
172 kernel_size = load_image_targphys(kernel_filename,
174 RAM_size - KERNEL_LOAD_ADDR);
175 if (kernel_size < 0) {
176 fprintf(stderr, "qemu: could not load kernel '%s'\n",
183 if (initrd_filename) {
184 *initrd_size = load_image_targphys(initrd_filename,
186 RAM_size - INITRD_LOAD_ADDR);
187 if (*initrd_size < 0) {
188 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
193 if (*initrd_size > 0) {
194 for (i = 0; i < 64 * TARGET_PAGE_SIZE; i += TARGET_PAGE_SIZE) {
195 if (ldl_phys(KERNEL_LOAD_ADDR + i) == 0x48647253) { // HdrS
196 stl_phys(KERNEL_LOAD_ADDR + i + 16, INITRD_LOAD_ADDR);
197 stl_phys(KERNEL_LOAD_ADDR + i + 20, *initrd_size);
206 void pic_info(Monitor *mon)
210 void irq_info(Monitor *mon)
214 void cpu_check_irqs(CPUState *env)
216 uint32_t pil = env->pil_in | (env->softint & ~SOFTINT_TIMER) |
217 ((env->softint & SOFTINT_TIMER) << 14);
219 if (pil && (env->interrupt_index == 0 ||
220 (env->interrupt_index & ~15) == TT_EXTINT)) {
223 for (i = 15; i > 0; i--) {
224 if (pil & (1 << i)) {
225 int old_interrupt = env->interrupt_index;
227 env->interrupt_index = TT_EXTINT | i;
228 if (old_interrupt != env->interrupt_index) {
229 DPRINTF("Set CPU IRQ %d\n", i);
230 cpu_interrupt(env, CPU_INTERRUPT_HARD);
235 } else if (!pil && (env->interrupt_index & ~15) == TT_EXTINT) {
236 DPRINTF("Reset CPU IRQ %d\n", env->interrupt_index & 15);
237 env->interrupt_index = 0;
238 cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
242 static void cpu_set_irq(void *opaque, int irq, int level)
244 CPUState *env = opaque;
247 DPRINTF("Raise CPU IRQ %d\n", irq);
249 env->pil_in |= 1 << irq;
252 DPRINTF("Lower CPU IRQ %d\n", irq);
253 env->pil_in &= ~(1 << irq);
258 typedef struct ResetData {
263 static void main_cpu_reset(void *opaque)
265 ResetData *s = (ResetData *)opaque;
266 CPUState *env = s->env;
269 env->tick_cmpr = TICK_INT_DIS | 0;
270 ptimer_set_limit(env->tick, TICK_MAX, 1);
271 ptimer_run(env->tick, 1);
272 env->stick_cmpr = TICK_INT_DIS | 0;
273 ptimer_set_limit(env->stick, TICK_MAX, 1);
274 ptimer_run(env->stick, 1);
275 env->hstick_cmpr = TICK_INT_DIS | 0;
276 ptimer_set_limit(env->hstick, TICK_MAX, 1);
277 ptimer_run(env->hstick, 1);
278 env->gregs[1] = 0; // Memory start
279 env->gregs[2] = ram_size; // Memory size
280 env->gregs[3] = 0; // Machine description XXX
281 env->pc = s->reset_addr;
282 env->npc = env->pc + 4;
285 static void tick_irq(void *opaque)
287 CPUState *env = opaque;
289 if (!(env->tick_cmpr & TICK_INT_DIS)) {
290 env->softint |= SOFTINT_TIMER;
291 cpu_interrupt(env, CPU_INTERRUPT_TIMER);
295 static void stick_irq(void *opaque)
297 CPUState *env = opaque;
299 if (!(env->stick_cmpr & TICK_INT_DIS)) {
300 env->softint |= SOFTINT_STIMER;
301 cpu_interrupt(env, CPU_INTERRUPT_TIMER);
305 static void hstick_irq(void *opaque)
307 CPUState *env = opaque;
309 if (!(env->hstick_cmpr & TICK_INT_DIS)) {
310 cpu_interrupt(env, CPU_INTERRUPT_TIMER);
314 void cpu_tick_set_count(void *opaque, uint64_t count)
316 ptimer_set_count(opaque, -count);
319 uint64_t cpu_tick_get_count(void *opaque)
321 return -ptimer_get_count(opaque);
324 void cpu_tick_set_limit(void *opaque, uint64_t limit)
326 ptimer_set_limit(opaque, -limit, 0);
329 static const int serial_io[MAX_SERIAL_PORTS] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 };
330 static const int serial_irq[MAX_SERIAL_PORTS] = { 4, 3, 4, 3 };
332 static const int parallel_io[MAX_PARALLEL_PORTS] = { 0x378, 0x278, 0x3bc };
333 static const int parallel_irq[MAX_PARALLEL_PORTS] = { 7, 7, 7 };
335 static void ebus_mmio_mapfunc(PCIDevice *pci_dev, int region_num,
336 uint32_t addr, uint32_t size, int type)
338 DPRINTF("Mapping region %d registers at %08x\n", region_num, addr);
339 switch (region_num) {
341 isa_mmio_init(addr, 0x1000000);
344 isa_mmio_init(addr, 0x800000);
349 static void dummy_isa_irq_handler(void *opaque, int n, int level)
353 /* EBUS (Eight bit bus) bridge */
355 pci_ebus_init(PCIBus *bus, int devfn)
359 pci_create_simple(bus, devfn, "ebus");
360 isa_irq = qemu_allocate_irqs(dummy_isa_irq_handler, NULL, 16);
361 isa_bus_irqs(isa_irq);
365 pci_ebus_init1(PCIDevice *s)
367 isa_bus_new(&s->qdev);
369 pci_config_set_vendor_id(s->config, PCI_VENDOR_ID_SUN);
370 pci_config_set_device_id(s->config, PCI_DEVICE_ID_SUN_EBUS);
371 s->config[0x04] = 0x06; // command = bus master, pci mem
372 s->config[0x05] = 0x00;
373 s->config[0x06] = 0xa0; // status = fast back-to-back, 66MHz, no error
374 s->config[0x07] = 0x03; // status = medium devsel
375 s->config[0x08] = 0x01; // revision
376 s->config[0x09] = 0x00; // programming i/f
377 pci_config_set_class(s->config, PCI_CLASS_BRIDGE_OTHER);
378 s->config[0x0D] = 0x0a; // latency_timer
379 s->config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
381 pci_register_bar(s, 0, 0x1000000, PCI_ADDRESS_SPACE_MEM,
383 pci_register_bar(s, 1, 0x800000, PCI_ADDRESS_SPACE_MEM,
388 static PCIDeviceInfo ebus_info = {
390 .qdev.size = sizeof(PCIDevice),
391 .init = pci_ebus_init1,
394 static void pci_ebus_register(void)
396 pci_qdev_register(&ebus_info);
399 device_init(pci_ebus_register);
401 /* Boot PROM (OpenBIOS) */
402 static void prom_init(target_phys_addr_t addr, const char *bios_name)
409 dev = qdev_create(NULL, "openprom");
411 s = sysbus_from_qdev(dev);
413 sysbus_mmio_map(s, 0, addr);
416 if (bios_name == NULL) {
417 bios_name = PROM_FILENAME;
419 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
421 ret = load_elf(filename, addr - PROM_VADDR, NULL, NULL, NULL);
422 if (ret < 0 || ret > PROM_SIZE_MAX) {
423 ret = load_image_targphys(filename, addr, PROM_SIZE_MAX);
429 if (ret < 0 || ret > PROM_SIZE_MAX) {
430 fprintf(stderr, "qemu: could not load prom '%s'\n", bios_name);
435 static int prom_init1(SysBusDevice *dev)
437 ram_addr_t prom_offset;
439 prom_offset = qemu_ram_alloc(PROM_SIZE_MAX);
440 sysbus_init_mmio(dev, PROM_SIZE_MAX, prom_offset | IO_MEM_ROM);
444 static SysBusDeviceInfo prom_info = {
446 .qdev.name = "openprom",
447 .qdev.size = sizeof(SysBusDevice),
448 .qdev.props = (Property[]) {
449 {/* end of property list */}
453 static void prom_register_devices(void)
455 sysbus_register_withprop(&prom_info);
458 device_init(prom_register_devices);
461 typedef struct RamDevice
468 static int ram_init1(SysBusDevice *dev)
470 ram_addr_t RAM_size, ram_offset;
471 RamDevice *d = FROM_SYSBUS(RamDevice, dev);
475 ram_offset = qemu_ram_alloc(RAM_size);
476 sysbus_init_mmio(dev, RAM_size, ram_offset);
480 static void ram_init(target_phys_addr_t addr, ram_addr_t RAM_size)
487 dev = qdev_create(NULL, "memory");
488 s = sysbus_from_qdev(dev);
490 d = FROM_SYSBUS(RamDevice, s);
494 sysbus_mmio_map(s, 0, addr);
497 static SysBusDeviceInfo ram_info = {
499 .qdev.name = "memory",
500 .qdev.size = sizeof(RamDevice),
501 .qdev.props = (Property[]) {
502 DEFINE_PROP_UINT64("size", RamDevice, size, 0),
503 DEFINE_PROP_END_OF_LIST(),
507 static void ram_register_devices(void)
509 sysbus_register_withprop(&ram_info);
512 device_init(ram_register_devices);
514 static CPUState *cpu_devinit(const char *cpu_model, const struct hwdef *hwdef)
518 ResetData *reset_info;
521 cpu_model = hwdef->default_cpu_model;
522 env = cpu_init(cpu_model);
524 fprintf(stderr, "Unable to find Sparc CPU definition\n");
527 bh = qemu_bh_new(tick_irq, env);
528 env->tick = ptimer_init(bh);
529 ptimer_set_period(env->tick, 1ULL);
531 bh = qemu_bh_new(stick_irq, env);
532 env->stick = ptimer_init(bh);
533 ptimer_set_period(env->stick, 1ULL);
535 bh = qemu_bh_new(hstick_irq, env);
536 env->hstick = ptimer_init(bh);
537 ptimer_set_period(env->hstick, 1ULL);
539 reset_info = qemu_mallocz(sizeof(ResetData));
540 reset_info->env = env;
541 reset_info->reset_addr = hwdef->prom_addr + 0x40ULL;
542 qemu_register_reset(main_cpu_reset, reset_info);
543 main_cpu_reset(reset_info);
544 // Override warm reset address with cold start address
545 env->pc = hwdef->prom_addr + 0x20ULL;
546 env->npc = env->pc + 4;
551 static void sun4uv_init(ram_addr_t RAM_size,
552 const char *boot_devices,
553 const char *kernel_filename, const char *kernel_cmdline,
554 const char *initrd_filename, const char *cpu_model,
555 const struct hwdef *hwdef)
560 long initrd_size, kernel_size;
561 PCIBus *pci_bus, *pci_bus2, *pci_bus3;
563 DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
564 BlockDriverState *fd[MAX_FD];
569 env = cpu_devinit(cpu_model, hwdef);
572 ram_init(0, RAM_size);
574 prom_init(hwdef->prom_addr, bios_name);
577 irq = qemu_allocate_irqs(cpu_set_irq, env, MAX_PILS);
578 pci_bus = pci_apb_init(APB_SPECIAL_BASE, APB_MEM_BASE, irq, &pci_bus2,
580 isa_mem_base = VGA_BASE;
581 pci_vga_init(pci_bus, 0, 0);
583 // XXX Should be pci_bus3
584 pci_ebus_init(pci_bus, -1);
587 if (hwdef->console_serial_base) {
588 serial_mm_init(hwdef->console_serial_base, 0, NULL, 115200,
592 for(; i < MAX_SERIAL_PORTS; i++) {
594 serial_init(serial_io[i], NULL/*serial_irq[i]*/, 115200,
599 for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
600 if (parallel_hds[i]) {
601 parallel_init(parallel_io[i], NULL/*parallel_irq[i]*/,
606 for(i = 0; i < nb_nics; i++)
607 pci_nic_init(&nd_table[i], "ne2k_pci", NULL);
609 if (drive_get_max_bus(IF_IDE) >= MAX_IDE_BUS) {
610 fprintf(stderr, "qemu: too many IDE bus\n");
613 for(i = 0; i < MAX_IDE_BUS * MAX_IDE_DEVS; i++) {
614 hd[i] = drive_get(IF_IDE, i / MAX_IDE_DEVS,
618 pci_cmd646_ide_init(pci_bus, hd, 1);
620 /* FIXME: wire up interrupts. */
621 i8042_init(NULL/*1*/, NULL/*12*/, 0x60);
622 for(i = 0; i < MAX_FD; i++) {
623 dinfo = drive_get(IF_FLOPPY, 0, i);
624 fd[i] = dinfo ? dinfo->bdrv : NULL;
626 fdctrl_init_isa(6, 2, 0x3f0, fd);
627 nvram = m48t59_init(NULL/*8*/, 0, 0x0074, NVRAM_SIZE, 59);
630 kernel_size = sun4u_load_kernel(kernel_filename, initrd_filename,
631 ram_size, &initrd_size);
633 sun4u_NVRAM_set_params(nvram, NVRAM_SIZE, "Sun4u", RAM_size, boot_devices,
634 KERNEL_LOAD_ADDR, kernel_size,
636 INITRD_LOAD_ADDR, initrd_size,
637 /* XXX: need an option to load a NVRAM image */
639 graphic_width, graphic_height, graphic_depth,
640 (uint8_t *)&nd_table[0].macaddr);
642 fw_cfg = fw_cfg_init(BIOS_CFG_IOPORT, BIOS_CFG_IOPORT + 1, 0, 0);
643 fw_cfg_add_i32(fw_cfg, FW_CFG_ID, 1);
644 fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size);
645 fw_cfg_add_i16(fw_cfg, FW_CFG_MACHINE_ID, hwdef->machine_id);
646 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, KERNEL_LOAD_ADDR);
647 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size);
648 if (kernel_cmdline) {
649 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_CMDLINE, CMDLINE_ADDR);
650 pstrcpy_targphys(CMDLINE_ADDR, TARGET_PAGE_SIZE, kernel_cmdline);
652 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_CMDLINE, 0);
654 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, INITRD_LOAD_ADDR);
655 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size);
656 fw_cfg_add_i16(fw_cfg, FW_CFG_BOOT_DEVICE, boot_devices[0]);
658 fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_WIDTH, graphic_width);
659 fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_HEIGHT, graphic_height);
660 fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_DEPTH, graphic_depth);
662 qemu_register_boot_set(fw_cfg_boot_set, fw_cfg);
671 static const struct hwdef hwdefs[] = {
672 /* Sun4u generic PC-like machine */
674 .default_cpu_model = "TI UltraSparc II",
675 .machine_id = sun4u_id,
676 .prom_addr = 0x1fff0000000ULL,
677 .console_serial_base = 0,
679 /* Sun4v generic PC-like machine */
681 .default_cpu_model = "Sun UltraSparc T1",
682 .machine_id = sun4v_id,
683 .prom_addr = 0x1fff0000000ULL,
684 .console_serial_base = 0,
686 /* Sun4v generic Niagara machine */
688 .default_cpu_model = "Sun UltraSparc T1",
689 .machine_id = niagara_id,
690 .prom_addr = 0xfff0000000ULL,
691 .console_serial_base = 0xfff0c2c000ULL,
695 /* Sun4u hardware initialisation */
696 static void sun4u_init(ram_addr_t RAM_size,
697 const char *boot_devices,
698 const char *kernel_filename, const char *kernel_cmdline,
699 const char *initrd_filename, const char *cpu_model)
701 sun4uv_init(RAM_size, boot_devices, kernel_filename,
702 kernel_cmdline, initrd_filename, cpu_model, &hwdefs[0]);
705 /* Sun4v hardware initialisation */
706 static void sun4v_init(ram_addr_t RAM_size,
707 const char *boot_devices,
708 const char *kernel_filename, const char *kernel_cmdline,
709 const char *initrd_filename, const char *cpu_model)
711 sun4uv_init(RAM_size, boot_devices, kernel_filename,
712 kernel_cmdline, initrd_filename, cpu_model, &hwdefs[1]);
715 /* Niagara hardware initialisation */
716 static void niagara_init(ram_addr_t RAM_size,
717 const char *boot_devices,
718 const char *kernel_filename, const char *kernel_cmdline,
719 const char *initrd_filename, const char *cpu_model)
721 sun4uv_init(RAM_size, boot_devices, kernel_filename,
722 kernel_cmdline, initrd_filename, cpu_model, &hwdefs[2]);
725 static QEMUMachine sun4u_machine = {
727 .desc = "Sun4u platform",
729 .max_cpus = 1, // XXX for now
733 static QEMUMachine sun4v_machine = {
735 .desc = "Sun4v platform",
737 .max_cpus = 1, // XXX for now
740 static QEMUMachine niagara_machine = {
742 .desc = "Sun4v platform, Niagara",
743 .init = niagara_init,
744 .max_cpus = 1, // XXX for now
747 static void sun4u_machine_init(void)
749 qemu_register_machine(&sun4u_machine);
750 qemu_register_machine(&sun4v_machine);
751 qemu_register_machine(&niagara_machine);
754 machine_init(sun4u_machine_init);