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
25 #include "hw/pci/pci.h"
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"
32 #include "qemu/timer.h"
33 #include "sysemu/sysemu.h"
34 #include "hw/boards.h"
35 #include "hw/nvram/openbios_firmware_abi.h"
36 #include "hw/nvram/fw_cfg.h"
37 #include "hw/sysbus.h"
39 #include "hw/loader.h"
41 #include "sysemu/blockdev.h"
42 #include "exec/address-spaces.h"
49 #define CPUIRQ_DPRINTF(fmt, ...) \
50 do { printf("CPUIRQ: " fmt , ## __VA_ARGS__); } while (0)
52 #define CPUIRQ_DPRINTF(fmt, ...)
56 #define EBUS_DPRINTF(fmt, ...) \
57 do { printf("EBUS: " fmt , ## __VA_ARGS__); } while (0)
59 #define EBUS_DPRINTF(fmt, ...)
63 #define TIMER_DPRINTF(fmt, ...) \
64 do { printf("TIMER: " fmt , ## __VA_ARGS__); } while (0)
66 #define TIMER_DPRINTF(fmt, ...)
69 #define KERNEL_LOAD_ADDR 0x00404000
70 #define CMDLINE_ADDR 0x003ff000
71 #define PROM_SIZE_MAX (4 * 1024 * 1024)
72 #define PROM_VADDR 0x000ffd00000ULL
73 #define APB_SPECIAL_BASE 0x1fe00000000ULL
74 #define APB_MEM_BASE 0x1ff00000000ULL
75 #define APB_PCI_IO_BASE (APB_SPECIAL_BASE + 0x02000000ULL)
76 #define PROM_FILENAME "openbios-sparc64"
77 #define NVRAM_SIZE 0x2000
79 #define BIOS_CFG_IOPORT 0x510
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)
86 #define TICK_MAX 0x7fffffffffffffffULL
89 const char * const default_cpu_model
;
92 uint64_t console_serial_base
;
95 typedef struct EbusState
{
101 int DMA_get_channel_mode (int nchan
)
105 int DMA_read_memory (int nchan
, void *buf
, int pos
, int size
)
109 int DMA_write_memory (int nchan
, void *buf
, int pos
, int size
)
113 void DMA_hold_DREQ (int nchan
) {}
114 void DMA_release_DREQ (int nchan
) {}
115 void DMA_schedule(int nchan
) {}
117 void DMA_init(int high_page_enable
, qemu_irq
*cpu_request_exit
)
121 void DMA_register_channel (int nchan
,
122 DMA_transfer_handler transfer_handler
,
127 static int fw_cfg_boot_set(void *opaque
, const char *boot_device
)
129 fw_cfg_add_i16(opaque
, FW_CFG_BOOT_DEVICE
, boot_device
[0]);
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
,
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
)
145 uint8_t image
[0x1ff0];
146 struct OpenBIOS_nvpart_v1
*part_header
;
148 memset(image
, '\0', sizeof(image
));
152 // OpenBIOS nvram variables
153 // Variable partition
154 part_header
= (struct OpenBIOS_nvpart_v1
*)&image
[start
];
155 part_header
->signature
= OPENBIOS_PART_SYSTEM
;
156 pstrcpy(part_header
->name
, sizeof(part_header
->name
), "system");
158 end
= start
+ sizeof(struct OpenBIOS_nvpart_v1
);
159 for (i
= 0; i
< nb_prom_envs
; i
++)
160 end
= OpenBIOS_set_var(image
, end
, prom_envs
[i
]);
165 end
= start
+ ((end
- start
+ 15) & ~15);
166 OpenBIOS_finish_partition(part_header
, end
- start
);
170 part_header
= (struct OpenBIOS_nvpart_v1
*)&image
[start
];
171 part_header
->signature
= OPENBIOS_PART_FREE
;
172 pstrcpy(part_header
->name
, sizeof(part_header
->name
), "free");
175 OpenBIOS_finish_partition(part_header
, end
- start
);
177 Sun_init_header((struct Sun_nvram
*)&image
[0x1fd8], macaddr
, 0x80);
179 for (i
= 0; i
< sizeof(image
); i
++)
180 m48t59_write(nvram
, i
, image
[i
]);
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
)
197 linux_boot
= (kernel_filename
!= NULL
);
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
;
213 kernel_size
= load_aout(kernel_filename
, KERNEL_LOAD_ADDR
,
214 RAM_size
- KERNEL_LOAD_ADDR
, bswap_needed
,
217 if (kernel_size
< 0) {
218 kernel_size
= load_image_targphys(kernel_filename
,
220 RAM_size
- KERNEL_LOAD_ADDR
);
222 if (kernel_size
< 0) {
223 fprintf(stderr
, "qemu: could not load kernel '%s'\n",
227 /* load initrd above kernel */
229 if (initrd_filename
) {
230 *initrd_addr
= TARGET_PAGE_ALIGN(kernel_top
);
232 *initrd_size
= load_image_targphys(initrd_filename
,
234 RAM_size
- *initrd_addr
);
235 if ((int)*initrd_size
< 0) {
236 fprintf(stderr
, "qemu: could not load initial ram disk '%s'\n",
241 if (*initrd_size
> 0) {
242 for (i
= 0; i
< 64 * TARGET_PAGE_SIZE
; i
+= TARGET_PAGE_SIZE
) {
243 ptr
= rom_ptr(*kernel_addr
+ i
);
244 if (ldl_p(ptr
+ 8) == 0x48647253) { /* HdrS */
245 stl_p(ptr
+ 24, *initrd_addr
+ *kernel_addr
);
246 stl_p(ptr
+ 28, *initrd_size
);
255 void cpu_check_irqs(CPUSPARCState
*env
)
258 uint32_t pil
= env
->pil_in
|
259 (env
->softint
& ~(SOFTINT_TIMER
| SOFTINT_STIMER
));
261 /* TT_IVEC has a higher priority (16) than TT_EXTINT (31..17) */
262 if (env
->ivec_status
& 0x20) {
265 cs
= CPU(sparc_env_get_cpu(env
));
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
)) {
272 /* The bit corresponding to psrpil is (1<< psrpil), the next bit
274 if (pil
< (2 << env
->psrpil
)){
275 if (cs
->interrupt_request
& CPU_INTERRUPT_HARD
) {
276 CPUIRQ_DPRINTF("Reset CPU IRQ (current interrupt %x)\n",
277 env
->interrupt_index
);
278 env
->interrupt_index
= 0;
279 cpu_reset_interrupt(cs
, CPU_INTERRUPT_HARD
);
284 if (cpu_interrupts_enabled(env
)) {
288 for (i
= 15; i
> env
->psrpil
; i
--) {
289 if (pil
& (1 << i
)) {
290 int old_interrupt
= env
->interrupt_index
;
291 int new_interrupt
= TT_EXTINT
| i
;
293 if (unlikely(env
->tl
> 0 && cpu_tsptr(env
)->tt
> new_interrupt
294 && ((cpu_tsptr(env
)->tt
& 0x1f0) == TT_EXTINT
))) {
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
);
302 cpu_interrupt(cs
, CPU_INTERRUPT_HARD
);
307 } else if (cs
->interrupt_request
& CPU_INTERRUPT_HARD
) {
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
);
311 env
->interrupt_index
= 0;
312 cpu_reset_interrupt(cs
, CPU_INTERRUPT_HARD
);
316 static void cpu_kick_irq(SPARCCPU
*cpu
)
318 CPUState
*cs
= CPU(cpu
);
319 CPUSPARCState
*env
= &cpu
->env
;
326 static void cpu_set_ivec_irq(void *opaque
, int irq
, int level
)
328 SPARCCPU
*cpu
= opaque
;
329 CPUSPARCState
*env
= &cpu
->env
;
333 if (!(env
->ivec_status
& 0x20)) {
334 CPUIRQ_DPRINTF("Raise IVEC IRQ %d\n", irq
);
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;
342 cpu_interrupt(cs
, CPU_INTERRUPT_HARD
);
345 if (env
->ivec_status
& 0x20) {
346 CPUIRQ_DPRINTF("Lower IVEC IRQ %d\n", irq
);
348 env
->ivec_status
&= ~0x20;
349 cpu_reset_interrupt(cs
, CPU_INTERRUPT_HARD
);
354 typedef struct ResetData
{
359 void cpu_put_timer(QEMUFile
*f
, CPUTimer
*s
)
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
);
366 timer_put(f
, s
->qtimer
);
369 void cpu_get_timer(QEMUFile
*f
, CPUTimer
*s
)
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
);
376 timer_get(f
, s
->qtimer
);
379 static CPUTimer
*cpu_timer_create(const char *name
, SPARCCPU
*cpu
,
380 QEMUBHFunc
*cb
, uint32_t frequency
,
381 uint64_t disabled_mask
)
383 CPUTimer
*timer
= g_malloc0(sizeof (CPUTimer
));
386 timer
->frequency
= frequency
;
387 timer
->disabled_mask
= disabled_mask
;
390 timer
->clock_offset
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
392 timer
->qtimer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, cb
, cpu
);
397 static void cpu_timer_reset(CPUTimer
*timer
)
400 timer
->clock_offset
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
402 timer_del(timer
->qtimer
);
405 static void main_cpu_reset(void *opaque
)
407 ResetData
*s
= (ResetData
*)opaque
;
408 CPUSPARCState
*env
= &s
->cpu
->env
;
409 static unsigned int nr_resets
;
411 cpu_reset(CPU(s
->cpu
));
413 cpu_timer_reset(env
->tick
);
414 cpu_timer_reset(env
->stick
);
415 cpu_timer_reset(env
->hstick
);
417 env
->gregs
[1] = 0; // Memory start
418 env
->gregs
[2] = ram_size
; // Memory size
419 env
->gregs
[3] = 0; // Machine description XXX
420 if (nr_resets
++ == 0) {
422 env
->pc
= s
->prom_addr
+ 0x20ULL
;
424 env
->pc
= s
->prom_addr
+ 0x40ULL
;
426 env
->npc
= env
->pc
+ 4;
429 static void tick_irq(void *opaque
)
431 SPARCCPU
*cpu
= opaque
;
432 CPUSPARCState
*env
= &cpu
->env
;
434 CPUTimer
* timer
= env
->tick
;
436 if (timer
->disabled
) {
437 CPUIRQ_DPRINTF("tick_irq: softint disabled\n");
440 CPUIRQ_DPRINTF("tick: fire\n");
443 env
->softint
|= SOFTINT_TIMER
;
447 static void stick_irq(void *opaque
)
449 SPARCCPU
*cpu
= opaque
;
450 CPUSPARCState
*env
= &cpu
->env
;
452 CPUTimer
* timer
= env
->stick
;
454 if (timer
->disabled
) {
455 CPUIRQ_DPRINTF("stick_irq: softint disabled\n");
458 CPUIRQ_DPRINTF("stick: fire\n");
461 env
->softint
|= SOFTINT_STIMER
;
465 static void hstick_irq(void *opaque
)
467 SPARCCPU
*cpu
= opaque
;
468 CPUSPARCState
*env
= &cpu
->env
;
470 CPUTimer
* timer
= env
->hstick
;
472 if (timer
->disabled
) {
473 CPUIRQ_DPRINTF("hstick_irq: softint disabled\n");
476 CPUIRQ_DPRINTF("hstick: fire\n");
479 env
->softint
|= SOFTINT_STIMER
;
483 static int64_t cpu_to_timer_ticks(int64_t cpu_ticks
, uint32_t frequency
)
485 return muldiv64(cpu_ticks
, get_ticks_per_sec(), frequency
);
488 static uint64_t timer_to_cpu_ticks(int64_t timer_ticks
, uint32_t frequency
)
490 return muldiv64(timer_ticks
, frequency
, get_ticks_per_sec());
493 void cpu_tick_set_count(CPUTimer
*timer
, uint64_t count
)
495 uint64_t real_count
= count
& ~timer
->disabled_mask
;
496 uint64_t disabled_bit
= count
& timer
->disabled_mask
;
498 int64_t vm_clock_offset
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) -
499 cpu_to_timer_ticks(real_count
, timer
->frequency
);
501 TIMER_DPRINTF("%s set_count count=0x%016lx (%s) p=%p\n",
502 timer
->name
, real_count
,
503 timer
->disabled
?"disabled":"enabled", timer
);
505 timer
->disabled
= disabled_bit
? 1 : 0;
506 timer
->clock_offset
= vm_clock_offset
;
509 uint64_t cpu_tick_get_count(CPUTimer
*timer
)
511 uint64_t real_count
= timer_to_cpu_ticks(
512 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) - timer
->clock_offset
,
515 TIMER_DPRINTF("%s get_count count=0x%016lx (%s) p=%p\n",
516 timer
->name
, real_count
,
517 timer
->disabled
?"disabled":"enabled", timer
);
520 real_count
|= timer
->disabled_mask
;
525 void cpu_tick_set_limit(CPUTimer
*timer
, uint64_t limit
)
527 int64_t now
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
529 uint64_t real_limit
= limit
& ~timer
->disabled_mask
;
530 timer
->disabled
= (limit
& timer
->disabled_mask
) ? 1 : 0;
532 int64_t expires
= cpu_to_timer_ticks(real_limit
, timer
->frequency
) +
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",
544 timer_to_cpu_ticks(now
- timer
->clock_offset
,
546 timer_to_cpu_ticks(expires
- now
, timer
->frequency
));
549 TIMER_DPRINTF("%s set_limit limit=ZERO - not starting timer\n",
551 timer_del(timer
->qtimer
);
552 } else if (timer
->disabled
) {
553 timer_del(timer
->qtimer
);
555 timer_mod(timer
->qtimer
, expires
);
559 static void isa_irq_handler(void *opaque
, int n
, int level
)
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 */
568 qemu_irq
*irqs
= opaque
;
572 ivec
= isa_irq_to_ivec
[n
];
573 EBUS_DPRINTF("Set ISA IRQ %d level %d -> ivec 0x%x\n", n
, level
, ivec
);
575 qemu_set_irq(irqs
[ivec
], level
);
579 /* EBUS (Eight bit bus) bridge */
581 pci_ebus_init(PCIBus
*bus
, int devfn
, qemu_irq
*irqs
)
587 pci_dev
= pci_create_simple(bus
, devfn
, "ebus");
588 isa_bus
= ISA_BUS(qdev_get_child_bus(DEVICE(pci_dev
), "isa.0"));
589 isa_irq
= qemu_allocate_irqs(isa_irq_handler
, irqs
, 16);
590 isa_bus_irqs(isa_bus
, isa_irq
);
595 pci_ebus_init1(PCIDevice
*pci_dev
)
597 EbusState
*s
= DO_UPCAST(EbusState
, pci_dev
, pci_dev
);
599 isa_bus_new(&pci_dev
->qdev
, pci_address_space_io(pci_dev
));
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
608 memory_region_init_alias(&s
->bar0
, OBJECT(s
), "bar0", get_system_io(),
610 pci_register_bar(pci_dev
, 0, PCI_BASE_ADDRESS_SPACE_MEMORY
, &s
->bar0
);
611 memory_region_init_alias(&s
->bar1
, OBJECT(s
), "bar1", get_system_io(),
613 pci_register_bar(pci_dev
, 1, PCI_BASE_ADDRESS_SPACE_MEMORY
, &s
->bar1
);
617 static void ebus_class_init(ObjectClass
*klass
, void *data
)
619 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
621 k
->init
= pci_ebus_init1
;
622 k
->vendor_id
= PCI_VENDOR_ID_SUN
;
623 k
->device_id
= PCI_DEVICE_ID_SUN_EBUS
;
625 k
->class_id
= PCI_CLASS_BRIDGE_OTHER
;
628 static const TypeInfo ebus_info
= {
630 .parent
= TYPE_PCI_DEVICE
,
631 .instance_size
= sizeof(EbusState
),
632 .class_init
= ebus_class_init
,
635 #define TYPE_OPENPROM "openprom"
636 #define OPENPROM(obj) OBJECT_CHECK(PROMState, (obj), TYPE_OPENPROM)
638 typedef struct PROMState
{
639 SysBusDevice parent_obj
;
644 static uint64_t translate_prom_address(void *opaque
, uint64_t addr
)
646 hwaddr
*base_addr
= (hwaddr
*)opaque
;
647 return addr
+ *base_addr
- PROM_VADDR
;
650 /* Boot PROM (OpenBIOS) */
651 static void prom_init(hwaddr addr
, const char *bios_name
)
658 dev
= qdev_create(NULL
, TYPE_OPENPROM
);
659 qdev_init_nofail(dev
);
660 s
= SYS_BUS_DEVICE(dev
);
662 sysbus_mmio_map(s
, 0, addr
);
665 if (bios_name
== NULL
) {
666 bios_name
= PROM_FILENAME
;
668 filename
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, bios_name
);
670 ret
= load_elf(filename
, translate_prom_address
, &addr
,
671 NULL
, NULL
, NULL
, 1, ELF_MACHINE
, 0);
672 if (ret
< 0 || ret
> PROM_SIZE_MAX
) {
673 ret
= load_image_targphys(filename
, addr
, PROM_SIZE_MAX
);
679 if (ret
< 0 || ret
> PROM_SIZE_MAX
) {
680 fprintf(stderr
, "qemu: could not load prom '%s'\n", bios_name
);
685 static int prom_init1(SysBusDevice
*dev
)
687 PROMState
*s
= OPENPROM(dev
);
689 memory_region_init_ram(&s
->prom
, OBJECT(s
), "sun4u.prom", PROM_SIZE_MAX
);
690 vmstate_register_ram_global(&s
->prom
);
691 memory_region_set_readonly(&s
->prom
, true);
692 sysbus_init_mmio(dev
, &s
->prom
);
696 static Property prom_properties
[] = {
697 {/* end of property list */},
700 static void prom_class_init(ObjectClass
*klass
, void *data
)
702 DeviceClass
*dc
= DEVICE_CLASS(klass
);
703 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
705 k
->init
= prom_init1
;
706 dc
->props
= prom_properties
;
709 static const TypeInfo prom_info
= {
710 .name
= TYPE_OPENPROM
,
711 .parent
= TYPE_SYS_BUS_DEVICE
,
712 .instance_size
= sizeof(PROMState
),
713 .class_init
= prom_class_init
,
717 #define TYPE_SUN4U_MEMORY "memory"
718 #define SUN4U_RAM(obj) OBJECT_CHECK(RamDevice, (obj), TYPE_SUN4U_MEMORY)
720 typedef struct RamDevice
{
721 SysBusDevice parent_obj
;
728 static int ram_init1(SysBusDevice
*dev
)
730 RamDevice
*d
= SUN4U_RAM(dev
);
732 memory_region_init_ram(&d
->ram
, OBJECT(d
), "sun4u.ram", d
->size
);
733 vmstate_register_ram_global(&d
->ram
);
734 sysbus_init_mmio(dev
, &d
->ram
);
738 static void ram_init(hwaddr addr
, ram_addr_t RAM_size
)
745 dev
= qdev_create(NULL
, TYPE_SUN4U_MEMORY
);
746 s
= SYS_BUS_DEVICE(dev
);
750 qdev_init_nofail(dev
);
752 sysbus_mmio_map(s
, 0, addr
);
755 static Property ram_properties
[] = {
756 DEFINE_PROP_UINT64("size", RamDevice
, size
, 0),
757 DEFINE_PROP_END_OF_LIST(),
760 static void ram_class_init(ObjectClass
*klass
, void *data
)
762 DeviceClass
*dc
= DEVICE_CLASS(klass
);
763 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
766 dc
->props
= ram_properties
;
769 static const TypeInfo ram_info
= {
770 .name
= TYPE_SUN4U_MEMORY
,
771 .parent
= TYPE_SYS_BUS_DEVICE
,
772 .instance_size
= sizeof(RamDevice
),
773 .class_init
= ram_class_init
,
776 static SPARCCPU
*cpu_devinit(const char *cpu_model
, const struct hwdef
*hwdef
)
780 ResetData
*reset_info
;
782 uint32_t tick_frequency
= 100*1000000;
783 uint32_t stick_frequency
= 100*1000000;
784 uint32_t hstick_frequency
= 100*1000000;
786 if (cpu_model
== NULL
) {
787 cpu_model
= hwdef
->default_cpu_model
;
789 cpu
= cpu_sparc_init(cpu_model
);
791 fprintf(stderr
, "Unable to find Sparc CPU definition\n");
796 env
->tick
= cpu_timer_create("tick", cpu
, tick_irq
,
797 tick_frequency
, TICK_NPT_MASK
);
799 env
->stick
= cpu_timer_create("stick", cpu
, stick_irq
,
800 stick_frequency
, TICK_INT_DIS
);
802 env
->hstick
= cpu_timer_create("hstick", cpu
, hstick_irq
,
803 hstick_frequency
, TICK_INT_DIS
);
805 reset_info
= g_malloc0(sizeof(ResetData
));
806 reset_info
->cpu
= cpu
;
807 reset_info
->prom_addr
= hwdef
->prom_addr
;
808 qemu_register_reset(main_cpu_reset
, reset_info
);
813 static void sun4uv_init(MemoryRegion
*address_space_mem
,
814 QEMUMachineInitArgs
*args
,
815 const struct hwdef
*hwdef
)
820 uint64_t initrd_addr
, initrd_size
, kernel_addr
, kernel_size
, kernel_entry
;
821 PCIBus
*pci_bus
, *pci_bus2
, *pci_bus3
;
823 qemu_irq
*ivec_irqs
, *pbm_irqs
;
824 DriveInfo
*hd
[MAX_IDE_BUS
* MAX_IDE_DEVS
];
825 DriveInfo
*fd
[MAX_FD
];
829 cpu
= cpu_devinit(args
->cpu_model
, hwdef
);
832 ram_init(0, args
->ram_size
);
834 prom_init(hwdef
->prom_addr
, bios_name
);
836 ivec_irqs
= qemu_allocate_irqs(cpu_set_ivec_irq
, cpu
, IVEC_MAX
);
837 pci_bus
= pci_apb_init(APB_SPECIAL_BASE
, APB_MEM_BASE
, ivec_irqs
, &pci_bus2
,
838 &pci_bus3
, &pbm_irqs
);
839 pci_vga_init(pci_bus
);
841 // XXX Should be pci_bus3
842 isa_bus
= pci_ebus_init(pci_bus
, -1, pbm_irqs
);
845 if (hwdef
->console_serial_base
) {
846 serial_mm_init(address_space_mem
, hwdef
->console_serial_base
, 0,
847 NULL
, 115200, serial_hds
[i
], DEVICE_BIG_ENDIAN
);
850 for(; i
< MAX_SERIAL_PORTS
; i
++) {
852 serial_isa_init(isa_bus
, i
, serial_hds
[i
]);
856 for(i
= 0; i
< MAX_PARALLEL_PORTS
; i
++) {
857 if (parallel_hds
[i
]) {
858 parallel_init(isa_bus
, i
, parallel_hds
[i
]);
862 for(i
= 0; i
< nb_nics
; i
++)
863 pci_nic_init_nofail(&nd_table
[i
], pci_bus
, "ne2k_pci", NULL
);
865 ide_drive_get(hd
, MAX_IDE_BUS
);
867 pci_cmd646_ide_init(pci_bus
, hd
, 1);
869 isa_create_simple(isa_bus
, "i8042");
870 for(i
= 0; i
< MAX_FD
; i
++) {
871 fd
[i
] = drive_get(IF_FLOPPY
, 0, i
);
873 fdctrl_init_isa(isa_bus
, fd
);
874 nvram
= m48t59_init_isa(isa_bus
, 0x0074, NVRAM_SIZE
, 59);
878 kernel_size
= sun4u_load_kernel(args
->kernel_filename
,
879 args
->initrd_filename
,
880 ram_size
, &initrd_size
, &initrd_addr
,
881 &kernel_addr
, &kernel_entry
);
883 sun4u_NVRAM_set_params(nvram
, NVRAM_SIZE
, "Sun4u", args
->ram_size
,
885 kernel_addr
, kernel_size
,
886 args
->kernel_cmdline
,
887 initrd_addr
, initrd_size
,
888 /* XXX: need an option to load a NVRAM image */
890 graphic_width
, graphic_height
, graphic_depth
,
891 (uint8_t *)&nd_table
[0].macaddr
);
893 fw_cfg
= fw_cfg_init(BIOS_CFG_IOPORT
, BIOS_CFG_IOPORT
+ 1, 0, 0);
894 fw_cfg_add_i16(fw_cfg
, FW_CFG_MAX_CPUS
, (uint16_t)max_cpus
);
895 fw_cfg_add_i32(fw_cfg
, FW_CFG_ID
, 1);
896 fw_cfg_add_i64(fw_cfg
, FW_CFG_RAM_SIZE
, (uint64_t)ram_size
);
897 fw_cfg_add_i16(fw_cfg
, FW_CFG_MACHINE_ID
, hwdef
->machine_id
);
898 fw_cfg_add_i64(fw_cfg
, FW_CFG_KERNEL_ADDR
, kernel_entry
);
899 fw_cfg_add_i64(fw_cfg
, FW_CFG_KERNEL_SIZE
, kernel_size
);
900 if (args
->kernel_cmdline
) {
901 fw_cfg_add_i32(fw_cfg
, FW_CFG_CMDLINE_SIZE
,
902 strlen(args
->kernel_cmdline
) + 1);
903 fw_cfg_add_string(fw_cfg
, FW_CFG_CMDLINE_DATA
, args
->kernel_cmdline
);
905 fw_cfg_add_i32(fw_cfg
, FW_CFG_CMDLINE_SIZE
, 0);
907 fw_cfg_add_i64(fw_cfg
, FW_CFG_INITRD_ADDR
, initrd_addr
);
908 fw_cfg_add_i64(fw_cfg
, FW_CFG_INITRD_SIZE
, initrd_size
);
909 fw_cfg_add_i16(fw_cfg
, FW_CFG_BOOT_DEVICE
, args
->boot_order
[0]);
911 fw_cfg_add_i16(fw_cfg
, FW_CFG_SPARC64_WIDTH
, graphic_width
);
912 fw_cfg_add_i16(fw_cfg
, FW_CFG_SPARC64_HEIGHT
, graphic_height
);
913 fw_cfg_add_i16(fw_cfg
, FW_CFG_SPARC64_DEPTH
, graphic_depth
);
915 qemu_register_boot_set(fw_cfg_boot_set
, fw_cfg
);
924 static const struct hwdef hwdefs
[] = {
925 /* Sun4u generic PC-like machine */
927 .default_cpu_model
= "TI UltraSparc IIi",
928 .machine_id
= sun4u_id
,
929 .prom_addr
= 0x1fff0000000ULL
,
930 .console_serial_base
= 0,
932 /* Sun4v generic PC-like machine */
934 .default_cpu_model
= "Sun UltraSparc T1",
935 .machine_id
= sun4v_id
,
936 .prom_addr
= 0x1fff0000000ULL
,
937 .console_serial_base
= 0,
939 /* Sun4v generic Niagara machine */
941 .default_cpu_model
= "Sun UltraSparc T1",
942 .machine_id
= niagara_id
,
943 .prom_addr
= 0xfff0000000ULL
,
944 .console_serial_base
= 0xfff0c2c000ULL
,
948 /* Sun4u hardware initialisation */
949 static void sun4u_init(QEMUMachineInitArgs
*args
)
951 sun4uv_init(get_system_memory(), args
, &hwdefs
[0]);
954 /* Sun4v hardware initialisation */
955 static void sun4v_init(QEMUMachineInitArgs
*args
)
957 sun4uv_init(get_system_memory(), args
, &hwdefs
[1]);
960 /* Niagara hardware initialisation */
961 static void niagara_init(QEMUMachineInitArgs
*args
)
963 sun4uv_init(get_system_memory(), args
, &hwdefs
[2]);
966 static QEMUMachine sun4u_machine
= {
968 .desc
= "Sun4u platform",
970 .max_cpus
= 1, // XXX for now
972 .default_boot_order
= "c",
975 static QEMUMachine sun4v_machine
= {
977 .desc
= "Sun4v platform",
979 .max_cpus
= 1, // XXX for now
980 .default_boot_order
= "c",
983 static QEMUMachine niagara_machine
= {
985 .desc
= "Sun4v platform, Niagara",
986 .init
= niagara_init
,
987 .max_cpus
= 1, // XXX for now
988 .default_boot_order
= "c",
991 static void sun4u_register_types(void)
993 type_register_static(&ebus_info
);
994 type_register_static(&prom_info
);
995 type_register_static(&ram_info
);
998 static void sun4u_machine_init(void)
1000 qemu_register_machine(&sun4u_machine
);
1001 qemu_register_machine(&sun4v_machine
);
1002 qemu_register_machine(&niagara_machine
);
1005 type_init(sun4u_register_types
)
1006 machine_init(sun4u_machine_init
);