2 * QEMU Sun4m & Sun4d & Sun4c System Emulator
4 * Copyright (c) 2003-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 "qemu-timer.h"
28 #include "sparc32_dma.h"
33 #include "firmware_abi.h"
39 #include "empty_slot.h"
40 #include "qdev-addr.h"
47 * Sun4m architecture was used in the following machines:
49 * SPARCserver 6xxMP/xx
50 * SPARCclassic (SPARCclassic Server)(SPARCstation LC) (4/15),
51 * SPARCclassic X (4/10)
52 * SPARCstation LX/ZX (4/30)
53 * SPARCstation Voyager
54 * SPARCstation 10/xx, SPARCserver 10/xx
55 * SPARCstation 5, SPARCserver 5
56 * SPARCstation 20/xx, SPARCserver 20
59 * Sun4d architecture was used in the following machines:
64 * Sun4c architecture was used in the following machines:
65 * SPARCstation 1/1+, SPARCserver 1/1+
71 * See for example: http://www.sunhelp.org/faq/sunref1.html
74 #define KERNEL_LOAD_ADDR 0x00004000
75 #define CMDLINE_ADDR 0x007ff000
76 #define INITRD_LOAD_ADDR 0x00800000
77 #define PROM_SIZE_MAX (1024 * 1024)
78 #define PROM_VADDR 0xffd00000
79 #define PROM_FILENAME "openbios-sparc32"
80 #define CFG_ADDR 0xd00000510ULL
81 #define FW_CFG_SUN4M_DEPTH (FW_CFG_ARCH_LOCAL + 0x00)
87 #define ESCC_CLOCK 4915200
90 target_phys_addr_t iommu_base
, iommu_pad_base
, iommu_pad_len
, slavio_base
;
91 target_phys_addr_t intctl_base
, counter_base
, nvram_base
, ms_kb_base
;
92 target_phys_addr_t serial_base
, fd_base
;
93 target_phys_addr_t afx_base
, idreg_base
, dma_base
, esp_base
, le_base
;
94 target_phys_addr_t tcx_base
, cs_base
, apc_base
, aux1_base
, aux2_base
;
95 target_phys_addr_t bpp_base
, dbri_base
, sx_base
;
97 target_phys_addr_t reg_base
, vram_base
;
99 target_phys_addr_t ecc_base
;
101 const char * const default_cpu_model
;
102 uint32_t ecc_version
;
103 uint32_t iommu_version
;
105 uint8_t nvram_machine_id
;
108 #define MAX_IOUNITS 5
111 target_phys_addr_t iounit_bases
[MAX_IOUNITS
], slavio_base
;
112 target_phys_addr_t counter_base
, nvram_base
, ms_kb_base
;
113 target_phys_addr_t serial_base
;
114 target_phys_addr_t espdma_base
, esp_base
;
115 target_phys_addr_t ledma_base
, le_base
;
116 target_phys_addr_t tcx_base
;
117 target_phys_addr_t sbi_base
;
119 const char * const default_cpu_model
;
120 uint32_t iounit_version
;
122 uint8_t nvram_machine_id
;
126 target_phys_addr_t iommu_base
, slavio_base
;
127 target_phys_addr_t intctl_base
, counter_base
, nvram_base
, ms_kb_base
;
128 target_phys_addr_t serial_base
, fd_base
;
129 target_phys_addr_t idreg_base
, dma_base
, esp_base
, le_base
;
130 target_phys_addr_t tcx_base
, aux1_base
;
132 const char * const default_cpu_model
;
133 uint32_t iommu_version
;
135 uint8_t nvram_machine_id
;
138 int DMA_get_channel_mode (int nchan
)
142 int DMA_read_memory (int nchan
, void *buf
, int pos
, int size
)
146 int DMA_write_memory (int nchan
, void *buf
, int pos
, int size
)
150 void DMA_hold_DREQ (int nchan
) {}
151 void DMA_release_DREQ (int nchan
) {}
152 void DMA_schedule(int nchan
) {}
154 void DMA_init(int high_page_enable
, qemu_irq
*cpu_request_exit
)
158 void DMA_register_channel (int nchan
,
159 DMA_transfer_handler transfer_handler
,
164 static int fw_cfg_boot_set(void *opaque
, const char *boot_device
)
166 fw_cfg_add_i16(opaque
, FW_CFG_BOOT_DEVICE
, boot_device
[0]);
170 static void nvram_init(M48t59State
*nvram
, uint8_t *macaddr
,
171 const char *cmdline
, const char *boot_devices
,
172 ram_addr_t RAM_size
, uint32_t kernel_size
,
173 int width
, int height
, int depth
,
174 int nvram_machine_id
, const char *arch
)
178 uint8_t image
[0x1ff0];
179 struct OpenBIOS_nvpart_v1
*part_header
;
181 memset(image
, '\0', sizeof(image
));
185 // OpenBIOS nvram variables
186 // Variable partition
187 part_header
= (struct OpenBIOS_nvpart_v1
*)&image
[start
];
188 part_header
->signature
= OPENBIOS_PART_SYSTEM
;
189 pstrcpy(part_header
->name
, sizeof(part_header
->name
), "system");
191 end
= start
+ sizeof(struct OpenBIOS_nvpart_v1
);
192 for (i
= 0; i
< nb_prom_envs
; i
++)
193 end
= OpenBIOS_set_var(image
, end
, prom_envs
[i
]);
198 end
= start
+ ((end
- start
+ 15) & ~15);
199 OpenBIOS_finish_partition(part_header
, end
- start
);
203 part_header
= (struct OpenBIOS_nvpart_v1
*)&image
[start
];
204 part_header
->signature
= OPENBIOS_PART_FREE
;
205 pstrcpy(part_header
->name
, sizeof(part_header
->name
), "free");
208 OpenBIOS_finish_partition(part_header
, end
- start
);
210 Sun_init_header((struct Sun_nvram
*)&image
[0x1fd8], macaddr
,
213 for (i
= 0; i
< sizeof(image
); i
++)
214 m48t59_write(nvram
, i
, image
[i
]);
217 static DeviceState
*slavio_intctl
;
219 void sun4m_pic_info(Monitor
*mon
)
222 slavio_pic_info(mon
, slavio_intctl
);
225 void sun4m_irq_info(Monitor
*mon
)
228 slavio_irq_info(mon
, slavio_intctl
);
231 void cpu_check_irqs(CPUState
*env
)
233 if (env
->pil_in
&& (env
->interrupt_index
== 0 ||
234 (env
->interrupt_index
& ~15) == TT_EXTINT
)) {
237 for (i
= 15; i
> 0; i
--) {
238 if (env
->pil_in
& (1 << i
)) {
239 int old_interrupt
= env
->interrupt_index
;
241 env
->interrupt_index
= TT_EXTINT
| i
;
242 if (old_interrupt
!= env
->interrupt_index
) {
243 trace_sun4m_cpu_interrupt(i
);
244 cpu_interrupt(env
, CPU_INTERRUPT_HARD
);
249 } else if (!env
->pil_in
&& (env
->interrupt_index
& ~15) == TT_EXTINT
) {
250 trace_sun4m_cpu_reset_interrupt(env
->interrupt_index
& 15);
251 env
->interrupt_index
= 0;
252 cpu_reset_interrupt(env
, CPU_INTERRUPT_HARD
);
256 static void cpu_kick_irq(CPUState
*env
)
263 static void cpu_set_irq(void *opaque
, int irq
, int level
)
265 CPUState
*env
= opaque
;
268 trace_sun4m_cpu_set_irq_raise(irq
);
269 env
->pil_in
|= 1 << irq
;
272 trace_sun4m_cpu_set_irq_lower(irq
);
273 env
->pil_in
&= ~(1 << irq
);
278 static void dummy_cpu_set_irq(void *opaque
, int irq
, int level
)
282 static void main_cpu_reset(void *opaque
)
284 CPUState
*env
= opaque
;
290 static void secondary_cpu_reset(void *opaque
)
292 CPUState
*env
= opaque
;
298 static void cpu_halt_signal(void *opaque
, int irq
, int level
)
300 if (level
&& cpu_single_env
)
301 cpu_interrupt(cpu_single_env
, CPU_INTERRUPT_HALT
);
304 static uint64_t translate_kernel_address(void *opaque
, uint64_t addr
)
306 return addr
- 0xf0000000ULL
;
309 static unsigned long sun4m_load_kernel(const char *kernel_filename
,
310 const char *initrd_filename
,
315 long initrd_size
, kernel_size
;
318 linux_boot
= (kernel_filename
!= NULL
);
329 kernel_size
= load_elf(kernel_filename
, translate_kernel_address
, NULL
,
330 NULL
, NULL
, NULL
, 1, ELF_MACHINE
, 0);
332 kernel_size
= load_aout(kernel_filename
, KERNEL_LOAD_ADDR
,
333 RAM_size
- KERNEL_LOAD_ADDR
, bswap_needed
,
336 kernel_size
= load_image_targphys(kernel_filename
,
338 RAM_size
- KERNEL_LOAD_ADDR
);
339 if (kernel_size
< 0) {
340 fprintf(stderr
, "qemu: could not load kernel '%s'\n",
347 if (initrd_filename
) {
348 initrd_size
= load_image_targphys(initrd_filename
,
350 RAM_size
- INITRD_LOAD_ADDR
);
351 if (initrd_size
< 0) {
352 fprintf(stderr
, "qemu: could not load initial ram disk '%s'\n",
357 if (initrd_size
> 0) {
358 for (i
= 0; i
< 64 * TARGET_PAGE_SIZE
; i
+= TARGET_PAGE_SIZE
) {
359 ptr
= rom_ptr(KERNEL_LOAD_ADDR
+ i
);
360 if (ldl_p(ptr
) == 0x48647253) { // HdrS
361 stl_p(ptr
+ 16, INITRD_LOAD_ADDR
);
362 stl_p(ptr
+ 20, initrd_size
);
371 static void *iommu_init(target_phys_addr_t addr
, uint32_t version
, qemu_irq irq
)
376 dev
= qdev_create(NULL
, "iommu");
377 qdev_prop_set_uint32(dev
, "version", version
);
378 qdev_init_nofail(dev
);
379 s
= sysbus_from_qdev(dev
);
380 sysbus_connect_irq(s
, 0, irq
);
381 sysbus_mmio_map(s
, 0, addr
);
386 static void *sparc32_dma_init(target_phys_addr_t daddr
, qemu_irq parent_irq
,
387 void *iommu
, qemu_irq
*dev_irq
, int is_ledma
)
392 dev
= qdev_create(NULL
, "sparc32_dma");
393 qdev_prop_set_ptr(dev
, "iommu_opaque", iommu
);
394 qdev_prop_set_uint32(dev
, "is_ledma", is_ledma
);
395 qdev_init_nofail(dev
);
396 s
= sysbus_from_qdev(dev
);
397 sysbus_connect_irq(s
, 0, parent_irq
);
398 *dev_irq
= qdev_get_gpio_in(dev
, 0);
399 sysbus_mmio_map(s
, 0, daddr
);
404 static void lance_init(NICInfo
*nd
, target_phys_addr_t leaddr
,
405 void *dma_opaque
, qemu_irq irq
)
411 qemu_check_nic_model(&nd_table
[0], "lance");
413 dev
= qdev_create(NULL
, "lance");
414 qdev_set_nic_properties(dev
, nd
);
415 qdev_prop_set_ptr(dev
, "dma", dma_opaque
);
416 qdev_init_nofail(dev
);
417 s
= sysbus_from_qdev(dev
);
418 sysbus_mmio_map(s
, 0, leaddr
);
419 sysbus_connect_irq(s
, 0, irq
);
420 reset
= qdev_get_gpio_in(dev
, 0);
421 qdev_connect_gpio_out(dma_opaque
, 0, reset
);
424 static DeviceState
*slavio_intctl_init(target_phys_addr_t addr
,
425 target_phys_addr_t addrg
,
426 qemu_irq
**parent_irq
)
432 dev
= qdev_create(NULL
, "slavio_intctl");
433 qdev_init_nofail(dev
);
435 s
= sysbus_from_qdev(dev
);
437 for (i
= 0; i
< MAX_CPUS
; i
++) {
438 for (j
= 0; j
< MAX_PILS
; j
++) {
439 sysbus_connect_irq(s
, i
* MAX_PILS
+ j
, parent_irq
[i
][j
]);
442 sysbus_mmio_map(s
, 0, addrg
);
443 for (i
= 0; i
< MAX_CPUS
; i
++) {
444 sysbus_mmio_map(s
, i
+ 1, addr
+ i
* TARGET_PAGE_SIZE
);
450 #define SYS_TIMER_OFFSET 0x10000ULL
451 #define CPU_TIMER_OFFSET(cpu) (0x1000ULL * cpu)
453 static void slavio_timer_init_all(target_phys_addr_t addr
, qemu_irq master_irq
,
454 qemu_irq
*cpu_irqs
, unsigned int num_cpus
)
460 dev
= qdev_create(NULL
, "slavio_timer");
461 qdev_prop_set_uint32(dev
, "num_cpus", num_cpus
);
462 qdev_init_nofail(dev
);
463 s
= sysbus_from_qdev(dev
);
464 sysbus_connect_irq(s
, 0, master_irq
);
465 sysbus_mmio_map(s
, 0, addr
+ SYS_TIMER_OFFSET
);
467 for (i
= 0; i
< MAX_CPUS
; i
++) {
468 sysbus_mmio_map(s
, i
+ 1, addr
+ (target_phys_addr_t
)CPU_TIMER_OFFSET(i
));
469 sysbus_connect_irq(s
, i
+ 1, cpu_irqs
[i
]);
473 #define MISC_LEDS 0x01600000
474 #define MISC_CFG 0x01800000
475 #define MISC_DIAG 0x01a00000
476 #define MISC_MDM 0x01b00000
477 #define MISC_SYS 0x01f00000
479 static void slavio_misc_init(target_phys_addr_t base
,
480 target_phys_addr_t aux1_base
,
481 target_phys_addr_t aux2_base
, qemu_irq irq
,
487 dev
= qdev_create(NULL
, "slavio_misc");
488 qdev_init_nofail(dev
);
489 s
= sysbus_from_qdev(dev
);
491 /* 8 bit registers */
493 sysbus_mmio_map(s
, 0, base
+ MISC_CFG
);
495 sysbus_mmio_map(s
, 1, base
+ MISC_DIAG
);
497 sysbus_mmio_map(s
, 2, base
+ MISC_MDM
);
498 /* 16 bit registers */
499 /* ss600mp diag LEDs */
500 sysbus_mmio_map(s
, 3, base
+ MISC_LEDS
);
501 /* 32 bit registers */
503 sysbus_mmio_map(s
, 4, base
+ MISC_SYS
);
506 /* AUX 1 (Misc System Functions) */
507 sysbus_mmio_map(s
, 5, aux1_base
);
510 /* AUX 2 (Software Powerdown Control) */
511 sysbus_mmio_map(s
, 6, aux2_base
);
513 sysbus_connect_irq(s
, 0, irq
);
514 sysbus_connect_irq(s
, 1, fdc_tc
);
515 qemu_system_powerdown
= qdev_get_gpio_in(dev
, 0);
518 static void ecc_init(target_phys_addr_t base
, qemu_irq irq
, uint32_t version
)
523 dev
= qdev_create(NULL
, "eccmemctl");
524 qdev_prop_set_uint32(dev
, "version", version
);
525 qdev_init_nofail(dev
);
526 s
= sysbus_from_qdev(dev
);
527 sysbus_connect_irq(s
, 0, irq
);
528 sysbus_mmio_map(s
, 0, base
);
529 if (version
== 0) { // SS-600MP only
530 sysbus_mmio_map(s
, 1, base
+ 0x1000);
534 static void apc_init(target_phys_addr_t power_base
, qemu_irq cpu_halt
)
539 dev
= qdev_create(NULL
, "apc");
540 qdev_init_nofail(dev
);
541 s
= sysbus_from_qdev(dev
);
542 /* Power management (APC) XXX: not a Slavio device */
543 sysbus_mmio_map(s
, 0, power_base
);
544 sysbus_connect_irq(s
, 0, cpu_halt
);
547 static void tcx_init(target_phys_addr_t addr
, int vram_size
, int width
,
548 int height
, int depth
)
553 dev
= qdev_create(NULL
, "SUNW,tcx");
554 qdev_prop_set_taddr(dev
, "addr", addr
);
555 qdev_prop_set_uint32(dev
, "vram_size", vram_size
);
556 qdev_prop_set_uint16(dev
, "width", width
);
557 qdev_prop_set_uint16(dev
, "height", height
);
558 qdev_prop_set_uint16(dev
, "depth", depth
);
559 qdev_init_nofail(dev
);
560 s
= sysbus_from_qdev(dev
);
562 sysbus_mmio_map(s
, 0, addr
+ 0x00800000ULL
);
564 sysbus_mmio_map(s
, 1, addr
+ 0x00200000ULL
);
566 sysbus_mmio_map(s
, 2, addr
+ 0x00700000ULL
);
567 /* THC 24 bit: NetBSD writes here even with 8-bit display: dummy */
568 sysbus_mmio_map(s
, 3, addr
+ 0x00301000ULL
);
571 sysbus_mmio_map(s
, 4, addr
+ 0x02000000ULL
);
573 sysbus_mmio_map(s
, 5, addr
+ 0x0a000000ULL
);
575 /* THC 8 bit (dummy) */
576 sysbus_mmio_map(s
, 4, addr
+ 0x00300000ULL
);
580 /* NCR89C100/MACIO Internal ID register */
581 static const uint8_t idreg_data
[] = { 0xfe, 0x81, 0x01, 0x03 };
583 static void idreg_init(target_phys_addr_t addr
)
588 dev
= qdev_create(NULL
, "macio_idreg");
589 qdev_init_nofail(dev
);
590 s
= sysbus_from_qdev(dev
);
592 sysbus_mmio_map(s
, 0, addr
);
593 cpu_physical_memory_write_rom(addr
, idreg_data
, sizeof(idreg_data
));
596 typedef struct IDRegState
{
601 static int idreg_init1(SysBusDevice
*dev
)
603 IDRegState
*s
= FROM_SYSBUS(IDRegState
, dev
);
605 memory_region_init_ram(&s
->mem
, "sun4m.idreg", sizeof(idreg_data
));
606 vmstate_register_ram_global(&s
->mem
);
607 memory_region_set_readonly(&s
->mem
, true);
608 sysbus_init_mmio(dev
, &s
->mem
);
612 static void idreg_class_init(ObjectClass
*klass
, void *data
)
614 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
616 k
->init
= idreg_init1
;
619 static TypeInfo idreg_info
= {
620 .name
= "macio_idreg",
621 .parent
= TYPE_SYS_BUS_DEVICE
,
622 .instance_size
= sizeof(IDRegState
),
623 .class_init
= idreg_class_init
,
626 static void idreg_register_devices(void)
628 type_register_static(&idreg_info
);
631 device_init(idreg_register_devices
);
633 typedef struct AFXState
{
638 /* SS-5 TCX AFX register */
639 static void afx_init(target_phys_addr_t addr
)
644 dev
= qdev_create(NULL
, "tcx_afx");
645 qdev_init_nofail(dev
);
646 s
= sysbus_from_qdev(dev
);
648 sysbus_mmio_map(s
, 0, addr
);
651 static int afx_init1(SysBusDevice
*dev
)
653 AFXState
*s
= FROM_SYSBUS(AFXState
, dev
);
655 memory_region_init_ram(&s
->mem
, "sun4m.afx", 4);
656 vmstate_register_ram_global(&s
->mem
);
657 sysbus_init_mmio(dev
, &s
->mem
);
661 static void afx_class_init(ObjectClass
*klass
, void *data
)
663 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
668 static TypeInfo afx_info
= {
670 .parent
= TYPE_SYS_BUS_DEVICE
,
671 .instance_size
= sizeof(AFXState
),
672 .class_init
= afx_class_init
,
675 static void afx_register_devices(void)
677 type_register_static(&afx_info
);
680 device_init(afx_register_devices
);
682 typedef struct PROMState
{
687 /* Boot PROM (OpenBIOS) */
688 static uint64_t translate_prom_address(void *opaque
, uint64_t addr
)
690 target_phys_addr_t
*base_addr
= (target_phys_addr_t
*)opaque
;
691 return addr
+ *base_addr
- PROM_VADDR
;
694 static void prom_init(target_phys_addr_t addr
, const char *bios_name
)
701 dev
= qdev_create(NULL
, "openprom");
702 qdev_init_nofail(dev
);
703 s
= sysbus_from_qdev(dev
);
705 sysbus_mmio_map(s
, 0, addr
);
708 if (bios_name
== NULL
) {
709 bios_name
= PROM_FILENAME
;
711 filename
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, bios_name
);
713 ret
= load_elf(filename
, translate_prom_address
, &addr
, NULL
,
714 NULL
, NULL
, 1, ELF_MACHINE
, 0);
715 if (ret
< 0 || ret
> PROM_SIZE_MAX
) {
716 ret
= load_image_targphys(filename
, addr
, PROM_SIZE_MAX
);
722 if (ret
< 0 || ret
> PROM_SIZE_MAX
) {
723 fprintf(stderr
, "qemu: could not load prom '%s'\n", bios_name
);
728 static int prom_init1(SysBusDevice
*dev
)
730 PROMState
*s
= FROM_SYSBUS(PROMState
, dev
);
732 memory_region_init_ram(&s
->prom
, "sun4m.prom", PROM_SIZE_MAX
);
733 vmstate_register_ram_global(&s
->prom
);
734 memory_region_set_readonly(&s
->prom
, true);
735 sysbus_init_mmio(dev
, &s
->prom
);
739 static Property prom_properties
[] = {
740 {/* end of property list */},
743 static void prom_class_init(ObjectClass
*klass
, void *data
)
745 DeviceClass
*dc
= DEVICE_CLASS(klass
);
746 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
748 k
->init
= prom_init1
;
749 dc
->props
= prom_properties
;
752 static TypeInfo prom_info
= {
754 .parent
= TYPE_SYS_BUS_DEVICE
,
755 .instance_size
= sizeof(PROMState
),
756 .class_init
= prom_class_init
,
759 static void prom_register_devices(void)
761 type_register_static(&prom_info
);
764 device_init(prom_register_devices
);
766 typedef struct RamDevice
774 static int ram_init1(SysBusDevice
*dev
)
776 RamDevice
*d
= FROM_SYSBUS(RamDevice
, dev
);
778 memory_region_init_ram(&d
->ram
, "sun4m.ram", d
->size
);
779 vmstate_register_ram_global(&d
->ram
);
780 sysbus_init_mmio(dev
, &d
->ram
);
784 static void ram_init(target_phys_addr_t addr
, ram_addr_t RAM_size
,
792 if ((uint64_t)RAM_size
> max_mem
) {
794 "qemu: Too much memory for this machine: %d, maximum %d\n",
795 (unsigned int)(RAM_size
/ (1024 * 1024)),
796 (unsigned int)(max_mem
/ (1024 * 1024)));
799 dev
= qdev_create(NULL
, "memory");
800 s
= sysbus_from_qdev(dev
);
802 d
= FROM_SYSBUS(RamDevice
, s
);
804 qdev_init_nofail(dev
);
806 sysbus_mmio_map(s
, 0, addr
);
809 static Property ram_properties
[] = {
810 DEFINE_PROP_UINT64("size", RamDevice
, size
, 0),
811 DEFINE_PROP_END_OF_LIST(),
814 static void ram_class_init(ObjectClass
*klass
, void *data
)
816 DeviceClass
*dc
= DEVICE_CLASS(klass
);
817 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
820 dc
->props
= ram_properties
;
823 static TypeInfo ram_info
= {
825 .parent
= TYPE_SYS_BUS_DEVICE
,
826 .instance_size
= sizeof(RamDevice
),
827 .class_init
= ram_class_init
,
830 static void ram_register_devices(void)
832 type_register_static(&ram_info
);
835 device_init(ram_register_devices
);
837 static void cpu_devinit(const char *cpu_model
, unsigned int id
,
838 uint64_t prom_addr
, qemu_irq
**cpu_irqs
)
842 env
= cpu_init(cpu_model
);
844 fprintf(stderr
, "qemu: Unable to find Sparc CPU definition\n");
848 cpu_sparc_set_id(env
, id
);
850 qemu_register_reset(main_cpu_reset
, env
);
852 qemu_register_reset(secondary_cpu_reset
, env
);
855 *cpu_irqs
= qemu_allocate_irqs(cpu_set_irq
, env
, MAX_PILS
);
856 env
->prom_addr
= prom_addr
;
859 static void sun4m_hw_init(const struct sun4m_hwdef
*hwdef
, ram_addr_t RAM_size
,
860 const char *boot_device
,
861 const char *kernel_filename
,
862 const char *kernel_cmdline
,
863 const char *initrd_filename
, const char *cpu_model
)
866 void *iommu
, *espdma
, *ledma
, *nvram
;
867 qemu_irq
*cpu_irqs
[MAX_CPUS
], slavio_irq
[32], slavio_cpu_irq
[MAX_CPUS
],
868 espdma_irq
, ledma_irq
;
869 qemu_irq esp_reset
, dma_enable
;
872 unsigned long kernel_size
;
873 DriveInfo
*fd
[MAX_FD
];
875 unsigned int num_vsimms
;
879 cpu_model
= hwdef
->default_cpu_model
;
881 for(i
= 0; i
< smp_cpus
; i
++) {
882 cpu_devinit(cpu_model
, i
, hwdef
->slavio_base
, &cpu_irqs
[i
]);
885 for (i
= smp_cpus
; i
< MAX_CPUS
; i
++)
886 cpu_irqs
[i
] = qemu_allocate_irqs(dummy_cpu_set_irq
, NULL
, MAX_PILS
);
890 ram_init(0, RAM_size
, hwdef
->max_mem
);
891 /* models without ECC don't trap when missing ram is accessed */
892 if (!hwdef
->ecc_base
) {
893 empty_slot_init(RAM_size
, hwdef
->max_mem
- RAM_size
);
896 prom_init(hwdef
->slavio_base
, bios_name
);
898 slavio_intctl
= slavio_intctl_init(hwdef
->intctl_base
,
899 hwdef
->intctl_base
+ 0x10000ULL
,
902 for (i
= 0; i
< 32; i
++) {
903 slavio_irq
[i
] = qdev_get_gpio_in(slavio_intctl
, i
);
905 for (i
= 0; i
< MAX_CPUS
; i
++) {
906 slavio_cpu_irq
[i
] = qdev_get_gpio_in(slavio_intctl
, 32 + i
);
909 if (hwdef
->idreg_base
) {
910 idreg_init(hwdef
->idreg_base
);
913 if (hwdef
->afx_base
) {
914 afx_init(hwdef
->afx_base
);
917 iommu
= iommu_init(hwdef
->iommu_base
, hwdef
->iommu_version
,
920 if (hwdef
->iommu_pad_base
) {
921 /* On the real hardware (SS-5, LX) the MMU is not padded, but aliased.
922 Software shouldn't use aliased addresses, neither should it crash
923 when does. Using empty_slot instead of aliasing can help with
924 debugging such accesses */
925 empty_slot_init(hwdef
->iommu_pad_base
,hwdef
->iommu_pad_len
);
928 espdma
= sparc32_dma_init(hwdef
->dma_base
, slavio_irq
[18],
929 iommu
, &espdma_irq
, 0);
931 ledma
= sparc32_dma_init(hwdef
->dma_base
+ 16ULL,
932 slavio_irq
[16], iommu
, &ledma_irq
, 1);
934 if (graphic_depth
!= 8 && graphic_depth
!= 24) {
935 fprintf(stderr
, "qemu: Unsupported depth: %d\n", graphic_depth
);
939 if (num_vsimms
== 0) {
940 tcx_init(hwdef
->tcx_base
, 0x00100000, graphic_width
, graphic_height
,
944 for (i
= num_vsimms
; i
< MAX_VSIMMS
; i
++) {
945 /* vsimm registers probed by OBP */
946 if (hwdef
->vsimm
[i
].reg_base
) {
947 empty_slot_init(hwdef
->vsimm
[i
].reg_base
, 0x2000);
951 if (hwdef
->sx_base
) {
952 empty_slot_init(hwdef
->sx_base
, 0x2000);
955 lance_init(&nd_table
[0], hwdef
->le_base
, ledma
, ledma_irq
);
957 nvram
= m48t59_init(slavio_irq
[0], hwdef
->nvram_base
, 0, 0x2000, 8);
959 slavio_timer_init_all(hwdef
->counter_base
, slavio_irq
[19], slavio_cpu_irq
, smp_cpus
);
961 slavio_serial_ms_kbd_init(hwdef
->ms_kb_base
, slavio_irq
[14],
962 display_type
== DT_NOGRAPHIC
, ESCC_CLOCK
, 1);
963 // Slavio TTYA (base+4, Linux ttyS0) is the first Qemu serial device
964 // Slavio TTYB (base+0, Linux ttyS1) is the second Qemu serial device
965 escc_init(hwdef
->serial_base
, slavio_irq
[15], slavio_irq
[15],
966 serial_hds
[0], serial_hds
[1], ESCC_CLOCK
, 1);
968 cpu_halt
= qemu_allocate_irqs(cpu_halt_signal
, NULL
, 1);
969 slavio_misc_init(hwdef
->slavio_base
, hwdef
->aux1_base
, hwdef
->aux2_base
,
970 slavio_irq
[30], fdc_tc
);
972 if (hwdef
->apc_base
) {
973 apc_init(hwdef
->apc_base
, cpu_halt
[0]);
976 if (hwdef
->fd_base
) {
977 /* there is zero or one floppy drive */
978 memset(fd
, 0, sizeof(fd
));
979 fd
[0] = drive_get(IF_FLOPPY
, 0, 0);
980 sun4m_fdctrl_init(slavio_irq
[22], hwdef
->fd_base
, fd
,
984 if (drive_get_max_bus(IF_SCSI
) > 0) {
985 fprintf(stderr
, "qemu: too many SCSI bus\n");
989 esp_init(hwdef
->esp_base
, 2,
990 espdma_memory_read
, espdma_memory_write
,
991 espdma
, espdma_irq
, &esp_reset
, &dma_enable
);
993 qdev_connect_gpio_out(espdma
, 0, esp_reset
);
994 qdev_connect_gpio_out(espdma
, 1, dma_enable
);
996 if (hwdef
->cs_base
) {
997 sysbus_create_simple("SUNW,CS4231", hwdef
->cs_base
,
1001 if (hwdef
->dbri_base
) {
1002 /* ISDN chip with attached CS4215 audio codec */
1004 empty_slot_init(hwdef
->dbri_base
+0x1000, 0x30);
1006 empty_slot_init(hwdef
->dbri_base
+0x10000, 0x100);
1009 if (hwdef
->bpp_base
) {
1011 empty_slot_init(hwdef
->bpp_base
, 0x20);
1014 kernel_size
= sun4m_load_kernel(kernel_filename
, initrd_filename
,
1017 nvram_init(nvram
, (uint8_t *)&nd_table
[0].macaddr
, kernel_cmdline
,
1018 boot_device
, RAM_size
, kernel_size
, graphic_width
,
1019 graphic_height
, graphic_depth
, hwdef
->nvram_machine_id
,
1022 if (hwdef
->ecc_base
)
1023 ecc_init(hwdef
->ecc_base
, slavio_irq
[28],
1024 hwdef
->ecc_version
);
1026 fw_cfg
= fw_cfg_init(0, 0, CFG_ADDR
, CFG_ADDR
+ 2);
1027 fw_cfg_add_i32(fw_cfg
, FW_CFG_ID
, 1);
1028 fw_cfg_add_i64(fw_cfg
, FW_CFG_RAM_SIZE
, (uint64_t)ram_size
);
1029 fw_cfg_add_i16(fw_cfg
, FW_CFG_MACHINE_ID
, hwdef
->machine_id
);
1030 fw_cfg_add_i16(fw_cfg
, FW_CFG_SUN4M_DEPTH
, graphic_depth
);
1031 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_ADDR
, KERNEL_LOAD_ADDR
);
1032 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_SIZE
, kernel_size
);
1033 if (kernel_cmdline
) {
1034 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_CMDLINE
, CMDLINE_ADDR
);
1035 pstrcpy_targphys("cmdline", CMDLINE_ADDR
, TARGET_PAGE_SIZE
, kernel_cmdline
);
1036 fw_cfg_add_bytes(fw_cfg
, FW_CFG_CMDLINE_DATA
,
1037 (uint8_t*)strdup(kernel_cmdline
),
1038 strlen(kernel_cmdline
) + 1);
1039 fw_cfg_add_i32(fw_cfg
, FW_CFG_CMDLINE_SIZE
,
1040 strlen(kernel_cmdline
) + 1);
1042 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_CMDLINE
, 0);
1043 fw_cfg_add_i32(fw_cfg
, FW_CFG_CMDLINE_SIZE
, 0);
1045 fw_cfg_add_i32(fw_cfg
, FW_CFG_INITRD_ADDR
, INITRD_LOAD_ADDR
);
1046 fw_cfg_add_i32(fw_cfg
, FW_CFG_INITRD_SIZE
, 0); // not used
1047 fw_cfg_add_i16(fw_cfg
, FW_CFG_BOOT_DEVICE
, boot_device
[0]);
1048 qemu_register_boot_set(fw_cfg_boot_set
, fw_cfg
);
1066 static const struct sun4m_hwdef sun4m_hwdefs
[] = {
1069 .iommu_base
= 0x10000000,
1070 .iommu_pad_base
= 0x10004000,
1071 .iommu_pad_len
= 0x0fffb000,
1072 .tcx_base
= 0x50000000,
1073 .cs_base
= 0x6c000000,
1074 .slavio_base
= 0x70000000,
1075 .ms_kb_base
= 0x71000000,
1076 .serial_base
= 0x71100000,
1077 .nvram_base
= 0x71200000,
1078 .fd_base
= 0x71400000,
1079 .counter_base
= 0x71d00000,
1080 .intctl_base
= 0x71e00000,
1081 .idreg_base
= 0x78000000,
1082 .dma_base
= 0x78400000,
1083 .esp_base
= 0x78800000,
1084 .le_base
= 0x78c00000,
1085 .apc_base
= 0x6a000000,
1086 .afx_base
= 0x6e000000,
1087 .aux1_base
= 0x71900000,
1088 .aux2_base
= 0x71910000,
1089 .nvram_machine_id
= 0x80,
1090 .machine_id
= ss5_id
,
1091 .iommu_version
= 0x05000000,
1092 .max_mem
= 0x10000000,
1093 .default_cpu_model
= "Fujitsu MB86904",
1097 .iommu_base
= 0xfe0000000ULL
,
1098 .tcx_base
= 0xe20000000ULL
,
1099 .slavio_base
= 0xff0000000ULL
,
1100 .ms_kb_base
= 0xff1000000ULL
,
1101 .serial_base
= 0xff1100000ULL
,
1102 .nvram_base
= 0xff1200000ULL
,
1103 .fd_base
= 0xff1700000ULL
,
1104 .counter_base
= 0xff1300000ULL
,
1105 .intctl_base
= 0xff1400000ULL
,
1106 .idreg_base
= 0xef0000000ULL
,
1107 .dma_base
= 0xef0400000ULL
,
1108 .esp_base
= 0xef0800000ULL
,
1109 .le_base
= 0xef0c00000ULL
,
1110 .apc_base
= 0xefa000000ULL
, // XXX should not exist
1111 .aux1_base
= 0xff1800000ULL
,
1112 .aux2_base
= 0xff1a01000ULL
,
1113 .ecc_base
= 0xf00000000ULL
,
1114 .ecc_version
= 0x10000000, // version 0, implementation 1
1115 .nvram_machine_id
= 0x72,
1116 .machine_id
= ss10_id
,
1117 .iommu_version
= 0x03000000,
1118 .max_mem
= 0xf00000000ULL
,
1119 .default_cpu_model
= "TI SuperSparc II",
1123 .iommu_base
= 0xfe0000000ULL
,
1124 .tcx_base
= 0xe20000000ULL
,
1125 .slavio_base
= 0xff0000000ULL
,
1126 .ms_kb_base
= 0xff1000000ULL
,
1127 .serial_base
= 0xff1100000ULL
,
1128 .nvram_base
= 0xff1200000ULL
,
1129 .counter_base
= 0xff1300000ULL
,
1130 .intctl_base
= 0xff1400000ULL
,
1131 .dma_base
= 0xef0081000ULL
,
1132 .esp_base
= 0xef0080000ULL
,
1133 .le_base
= 0xef0060000ULL
,
1134 .apc_base
= 0xefa000000ULL
, // XXX should not exist
1135 .aux1_base
= 0xff1800000ULL
,
1136 .aux2_base
= 0xff1a01000ULL
, // XXX should not exist
1137 .ecc_base
= 0xf00000000ULL
,
1138 .ecc_version
= 0x00000000, // version 0, implementation 0
1139 .nvram_machine_id
= 0x71,
1140 .machine_id
= ss600mp_id
,
1141 .iommu_version
= 0x01000000,
1142 .max_mem
= 0xf00000000ULL
,
1143 .default_cpu_model
= "TI SuperSparc II",
1147 .iommu_base
= 0xfe0000000ULL
,
1148 .tcx_base
= 0xe20000000ULL
,
1149 .slavio_base
= 0xff0000000ULL
,
1150 .ms_kb_base
= 0xff1000000ULL
,
1151 .serial_base
= 0xff1100000ULL
,
1152 .nvram_base
= 0xff1200000ULL
,
1153 .fd_base
= 0xff1700000ULL
,
1154 .counter_base
= 0xff1300000ULL
,
1155 .intctl_base
= 0xff1400000ULL
,
1156 .idreg_base
= 0xef0000000ULL
,
1157 .dma_base
= 0xef0400000ULL
,
1158 .esp_base
= 0xef0800000ULL
,
1159 .le_base
= 0xef0c00000ULL
,
1160 .bpp_base
= 0xef4800000ULL
,
1161 .apc_base
= 0xefa000000ULL
, // XXX should not exist
1162 .aux1_base
= 0xff1800000ULL
,
1163 .aux2_base
= 0xff1a01000ULL
,
1164 .dbri_base
= 0xee0000000ULL
,
1165 .sx_base
= 0xf80000000ULL
,
1168 .reg_base
= 0x9c000000ULL
,
1169 .vram_base
= 0xfc000000ULL
1171 .reg_base
= 0x90000000ULL
,
1172 .vram_base
= 0xf0000000ULL
1174 .reg_base
= 0x94000000ULL
1176 .reg_base
= 0x98000000ULL
1179 .ecc_base
= 0xf00000000ULL
,
1180 .ecc_version
= 0x20000000, // version 0, implementation 2
1181 .nvram_machine_id
= 0x72,
1182 .machine_id
= ss20_id
,
1183 .iommu_version
= 0x13000000,
1184 .max_mem
= 0xf00000000ULL
,
1185 .default_cpu_model
= "TI SuperSparc II",
1189 .iommu_base
= 0x10000000,
1190 .tcx_base
= 0x50000000,
1191 .slavio_base
= 0x70000000,
1192 .ms_kb_base
= 0x71000000,
1193 .serial_base
= 0x71100000,
1194 .nvram_base
= 0x71200000,
1195 .fd_base
= 0x71400000,
1196 .counter_base
= 0x71d00000,
1197 .intctl_base
= 0x71e00000,
1198 .idreg_base
= 0x78000000,
1199 .dma_base
= 0x78400000,
1200 .esp_base
= 0x78800000,
1201 .le_base
= 0x78c00000,
1202 .apc_base
= 0x71300000, // pmc
1203 .aux1_base
= 0x71900000,
1204 .aux2_base
= 0x71910000,
1205 .nvram_machine_id
= 0x80,
1206 .machine_id
= vger_id
,
1207 .iommu_version
= 0x05000000,
1208 .max_mem
= 0x10000000,
1209 .default_cpu_model
= "Fujitsu MB86904",
1213 .iommu_base
= 0x10000000,
1214 .iommu_pad_base
= 0x10004000,
1215 .iommu_pad_len
= 0x0fffb000,
1216 .tcx_base
= 0x50000000,
1217 .slavio_base
= 0x70000000,
1218 .ms_kb_base
= 0x71000000,
1219 .serial_base
= 0x71100000,
1220 .nvram_base
= 0x71200000,
1221 .fd_base
= 0x71400000,
1222 .counter_base
= 0x71d00000,
1223 .intctl_base
= 0x71e00000,
1224 .idreg_base
= 0x78000000,
1225 .dma_base
= 0x78400000,
1226 .esp_base
= 0x78800000,
1227 .le_base
= 0x78c00000,
1228 .aux1_base
= 0x71900000,
1229 .aux2_base
= 0x71910000,
1230 .nvram_machine_id
= 0x80,
1231 .machine_id
= lx_id
,
1232 .iommu_version
= 0x04000000,
1233 .max_mem
= 0x10000000,
1234 .default_cpu_model
= "TI MicroSparc I",
1238 .iommu_base
= 0x10000000,
1239 .tcx_base
= 0x50000000,
1240 .cs_base
= 0x6c000000,
1241 .slavio_base
= 0x70000000,
1242 .ms_kb_base
= 0x71000000,
1243 .serial_base
= 0x71100000,
1244 .nvram_base
= 0x71200000,
1245 .fd_base
= 0x71400000,
1246 .counter_base
= 0x71d00000,
1247 .intctl_base
= 0x71e00000,
1248 .idreg_base
= 0x78000000,
1249 .dma_base
= 0x78400000,
1250 .esp_base
= 0x78800000,
1251 .le_base
= 0x78c00000,
1252 .apc_base
= 0x6a000000,
1253 .aux1_base
= 0x71900000,
1254 .aux2_base
= 0x71910000,
1255 .nvram_machine_id
= 0x80,
1256 .machine_id
= ss4_id
,
1257 .iommu_version
= 0x05000000,
1258 .max_mem
= 0x10000000,
1259 .default_cpu_model
= "Fujitsu MB86904",
1263 .iommu_base
= 0x10000000,
1264 .tcx_base
= 0x50000000,
1265 .slavio_base
= 0x70000000,
1266 .ms_kb_base
= 0x71000000,
1267 .serial_base
= 0x71100000,
1268 .nvram_base
= 0x71200000,
1269 .fd_base
= 0x71400000,
1270 .counter_base
= 0x71d00000,
1271 .intctl_base
= 0x71e00000,
1272 .idreg_base
= 0x78000000,
1273 .dma_base
= 0x78400000,
1274 .esp_base
= 0x78800000,
1275 .le_base
= 0x78c00000,
1276 .apc_base
= 0x6a000000,
1277 .aux1_base
= 0x71900000,
1278 .aux2_base
= 0x71910000,
1279 .nvram_machine_id
= 0x80,
1280 .machine_id
= scls_id
,
1281 .iommu_version
= 0x05000000,
1282 .max_mem
= 0x10000000,
1283 .default_cpu_model
= "TI MicroSparc I",
1287 .iommu_base
= 0x10000000,
1288 .tcx_base
= 0x50000000, // XXX
1289 .slavio_base
= 0x70000000,
1290 .ms_kb_base
= 0x71000000,
1291 .serial_base
= 0x71100000,
1292 .nvram_base
= 0x71200000,
1293 .fd_base
= 0x71400000,
1294 .counter_base
= 0x71d00000,
1295 .intctl_base
= 0x71e00000,
1296 .idreg_base
= 0x78000000,
1297 .dma_base
= 0x78400000,
1298 .esp_base
= 0x78800000,
1299 .le_base
= 0x78c00000,
1300 .apc_base
= 0x6a000000,
1301 .aux1_base
= 0x71900000,
1302 .aux2_base
= 0x71910000,
1303 .nvram_machine_id
= 0x80,
1304 .machine_id
= sbook_id
,
1305 .iommu_version
= 0x05000000,
1306 .max_mem
= 0x10000000,
1307 .default_cpu_model
= "TI MicroSparc I",
1311 /* SPARCstation 5 hardware initialisation */
1312 static void ss5_init(ram_addr_t RAM_size
,
1313 const char *boot_device
,
1314 const char *kernel_filename
, const char *kernel_cmdline
,
1315 const char *initrd_filename
, const char *cpu_model
)
1317 sun4m_hw_init(&sun4m_hwdefs
[0], RAM_size
, boot_device
, kernel_filename
,
1318 kernel_cmdline
, initrd_filename
, cpu_model
);
1321 /* SPARCstation 10 hardware initialisation */
1322 static void ss10_init(ram_addr_t RAM_size
,
1323 const char *boot_device
,
1324 const char *kernel_filename
, const char *kernel_cmdline
,
1325 const char *initrd_filename
, const char *cpu_model
)
1327 sun4m_hw_init(&sun4m_hwdefs
[1], RAM_size
, boot_device
, kernel_filename
,
1328 kernel_cmdline
, initrd_filename
, cpu_model
);
1331 /* SPARCserver 600MP hardware initialisation */
1332 static void ss600mp_init(ram_addr_t RAM_size
,
1333 const char *boot_device
,
1334 const char *kernel_filename
,
1335 const char *kernel_cmdline
,
1336 const char *initrd_filename
, const char *cpu_model
)
1338 sun4m_hw_init(&sun4m_hwdefs
[2], RAM_size
, boot_device
, kernel_filename
,
1339 kernel_cmdline
, initrd_filename
, cpu_model
);
1342 /* SPARCstation 20 hardware initialisation */
1343 static void ss20_init(ram_addr_t RAM_size
,
1344 const char *boot_device
,
1345 const char *kernel_filename
, const char *kernel_cmdline
,
1346 const char *initrd_filename
, const char *cpu_model
)
1348 sun4m_hw_init(&sun4m_hwdefs
[3], RAM_size
, boot_device
, kernel_filename
,
1349 kernel_cmdline
, initrd_filename
, cpu_model
);
1352 /* SPARCstation Voyager hardware initialisation */
1353 static void vger_init(ram_addr_t RAM_size
,
1354 const char *boot_device
,
1355 const char *kernel_filename
, const char *kernel_cmdline
,
1356 const char *initrd_filename
, const char *cpu_model
)
1358 sun4m_hw_init(&sun4m_hwdefs
[4], RAM_size
, boot_device
, kernel_filename
,
1359 kernel_cmdline
, initrd_filename
, cpu_model
);
1362 /* SPARCstation LX hardware initialisation */
1363 static void ss_lx_init(ram_addr_t RAM_size
,
1364 const char *boot_device
,
1365 const char *kernel_filename
, const char *kernel_cmdline
,
1366 const char *initrd_filename
, const char *cpu_model
)
1368 sun4m_hw_init(&sun4m_hwdefs
[5], RAM_size
, boot_device
, kernel_filename
,
1369 kernel_cmdline
, initrd_filename
, cpu_model
);
1372 /* SPARCstation 4 hardware initialisation */
1373 static void ss4_init(ram_addr_t RAM_size
,
1374 const char *boot_device
,
1375 const char *kernel_filename
, const char *kernel_cmdline
,
1376 const char *initrd_filename
, const char *cpu_model
)
1378 sun4m_hw_init(&sun4m_hwdefs
[6], RAM_size
, boot_device
, kernel_filename
,
1379 kernel_cmdline
, initrd_filename
, cpu_model
);
1382 /* SPARCClassic hardware initialisation */
1383 static void scls_init(ram_addr_t RAM_size
,
1384 const char *boot_device
,
1385 const char *kernel_filename
, const char *kernel_cmdline
,
1386 const char *initrd_filename
, const char *cpu_model
)
1388 sun4m_hw_init(&sun4m_hwdefs
[7], RAM_size
, boot_device
, kernel_filename
,
1389 kernel_cmdline
, initrd_filename
, cpu_model
);
1392 /* SPARCbook hardware initialisation */
1393 static void sbook_init(ram_addr_t RAM_size
,
1394 const char *boot_device
,
1395 const char *kernel_filename
, const char *kernel_cmdline
,
1396 const char *initrd_filename
, const char *cpu_model
)
1398 sun4m_hw_init(&sun4m_hwdefs
[8], RAM_size
, boot_device
, kernel_filename
,
1399 kernel_cmdline
, initrd_filename
, cpu_model
);
1402 static QEMUMachine ss5_machine
= {
1404 .desc
= "Sun4m platform, SPARCstation 5",
1410 static QEMUMachine ss10_machine
= {
1412 .desc
= "Sun4m platform, SPARCstation 10",
1418 static QEMUMachine ss600mp_machine
= {
1420 .desc
= "Sun4m platform, SPARCserver 600MP",
1421 .init
= ss600mp_init
,
1426 static QEMUMachine ss20_machine
= {
1428 .desc
= "Sun4m platform, SPARCstation 20",
1434 static QEMUMachine voyager_machine
= {
1436 .desc
= "Sun4m platform, SPARCstation Voyager",
1441 static QEMUMachine ss_lx_machine
= {
1443 .desc
= "Sun4m platform, SPARCstation LX",
1448 static QEMUMachine ss4_machine
= {
1450 .desc
= "Sun4m platform, SPARCstation 4",
1455 static QEMUMachine scls_machine
= {
1456 .name
= "SPARCClassic",
1457 .desc
= "Sun4m platform, SPARCClassic",
1462 static QEMUMachine sbook_machine
= {
1463 .name
= "SPARCbook",
1464 .desc
= "Sun4m platform, SPARCbook",
1469 static const struct sun4d_hwdef sun4d_hwdefs
[] = {
1479 .tcx_base
= 0x820000000ULL
,
1480 .slavio_base
= 0xf00000000ULL
,
1481 .ms_kb_base
= 0xf00240000ULL
,
1482 .serial_base
= 0xf00200000ULL
,
1483 .nvram_base
= 0xf00280000ULL
,
1484 .counter_base
= 0xf00300000ULL
,
1485 .espdma_base
= 0x800081000ULL
,
1486 .esp_base
= 0x800080000ULL
,
1487 .ledma_base
= 0x800040000ULL
,
1488 .le_base
= 0x800060000ULL
,
1489 .sbi_base
= 0xf02800000ULL
,
1490 .nvram_machine_id
= 0x80,
1491 .machine_id
= ss1000_id
,
1492 .iounit_version
= 0x03000000,
1493 .max_mem
= 0xf00000000ULL
,
1494 .default_cpu_model
= "TI SuperSparc II",
1505 .tcx_base
= 0x820000000ULL
,
1506 .slavio_base
= 0xf00000000ULL
,
1507 .ms_kb_base
= 0xf00240000ULL
,
1508 .serial_base
= 0xf00200000ULL
,
1509 .nvram_base
= 0xf00280000ULL
,
1510 .counter_base
= 0xf00300000ULL
,
1511 .espdma_base
= 0x800081000ULL
,
1512 .esp_base
= 0x800080000ULL
,
1513 .ledma_base
= 0x800040000ULL
,
1514 .le_base
= 0x800060000ULL
,
1515 .sbi_base
= 0xf02800000ULL
,
1516 .nvram_machine_id
= 0x80,
1517 .machine_id
= ss2000_id
,
1518 .iounit_version
= 0x03000000,
1519 .max_mem
= 0xf00000000ULL
,
1520 .default_cpu_model
= "TI SuperSparc II",
1524 static DeviceState
*sbi_init(target_phys_addr_t addr
, qemu_irq
**parent_irq
)
1530 dev
= qdev_create(NULL
, "sbi");
1531 qdev_init_nofail(dev
);
1533 s
= sysbus_from_qdev(dev
);
1535 for (i
= 0; i
< MAX_CPUS
; i
++) {
1536 sysbus_connect_irq(s
, i
, *parent_irq
[i
]);
1539 sysbus_mmio_map(s
, 0, addr
);
1544 static void sun4d_hw_init(const struct sun4d_hwdef
*hwdef
, ram_addr_t RAM_size
,
1545 const char *boot_device
,
1546 const char *kernel_filename
,
1547 const char *kernel_cmdline
,
1548 const char *initrd_filename
, const char *cpu_model
)
1551 void *iounits
[MAX_IOUNITS
], *espdma
, *ledma
, *nvram
;
1552 qemu_irq
*cpu_irqs
[MAX_CPUS
], sbi_irq
[32], sbi_cpu_irq
[MAX_CPUS
],
1553 espdma_irq
, ledma_irq
;
1554 qemu_irq esp_reset
, dma_enable
;
1555 unsigned long kernel_size
;
1561 cpu_model
= hwdef
->default_cpu_model
;
1563 for(i
= 0; i
< smp_cpus
; i
++) {
1564 cpu_devinit(cpu_model
, i
, hwdef
->slavio_base
, &cpu_irqs
[i
]);
1567 for (i
= smp_cpus
; i
< MAX_CPUS
; i
++)
1568 cpu_irqs
[i
] = qemu_allocate_irqs(dummy_cpu_set_irq
, NULL
, MAX_PILS
);
1570 /* set up devices */
1571 ram_init(0, RAM_size
, hwdef
->max_mem
);
1573 prom_init(hwdef
->slavio_base
, bios_name
);
1575 dev
= sbi_init(hwdef
->sbi_base
, cpu_irqs
);
1577 for (i
= 0; i
< 32; i
++) {
1578 sbi_irq
[i
] = qdev_get_gpio_in(dev
, i
);
1580 for (i
= 0; i
< MAX_CPUS
; i
++) {
1581 sbi_cpu_irq
[i
] = qdev_get_gpio_in(dev
, 32 + i
);
1584 for (i
= 0; i
< MAX_IOUNITS
; i
++)
1585 if (hwdef
->iounit_bases
[i
] != (target_phys_addr_t
)-1)
1586 iounits
[i
] = iommu_init(hwdef
->iounit_bases
[i
],
1587 hwdef
->iounit_version
,
1590 espdma
= sparc32_dma_init(hwdef
->espdma_base
, sbi_irq
[3],
1591 iounits
[0], &espdma_irq
, 0);
1593 /* should be lebuffer instead */
1594 ledma
= sparc32_dma_init(hwdef
->ledma_base
, sbi_irq
[4],
1595 iounits
[0], &ledma_irq
, 0);
1597 if (graphic_depth
!= 8 && graphic_depth
!= 24) {
1598 fprintf(stderr
, "qemu: Unsupported depth: %d\n", graphic_depth
);
1601 tcx_init(hwdef
->tcx_base
, 0x00100000, graphic_width
, graphic_height
,
1604 lance_init(&nd_table
[0], hwdef
->le_base
, ledma
, ledma_irq
);
1606 nvram
= m48t59_init(sbi_irq
[0], hwdef
->nvram_base
, 0, 0x2000, 8);
1608 slavio_timer_init_all(hwdef
->counter_base
, sbi_irq
[10], sbi_cpu_irq
, smp_cpus
);
1610 slavio_serial_ms_kbd_init(hwdef
->ms_kb_base
, sbi_irq
[12],
1611 display_type
== DT_NOGRAPHIC
, ESCC_CLOCK
, 1);
1612 // Slavio TTYA (base+4, Linux ttyS0) is the first Qemu serial device
1613 // Slavio TTYB (base+0, Linux ttyS1) is the second Qemu serial device
1614 escc_init(hwdef
->serial_base
, sbi_irq
[12], sbi_irq
[12],
1615 serial_hds
[0], serial_hds
[1], ESCC_CLOCK
, 1);
1617 if (drive_get_max_bus(IF_SCSI
) > 0) {
1618 fprintf(stderr
, "qemu: too many SCSI bus\n");
1622 esp_init(hwdef
->esp_base
, 2,
1623 espdma_memory_read
, espdma_memory_write
,
1624 espdma
, espdma_irq
, &esp_reset
, &dma_enable
);
1626 qdev_connect_gpio_out(espdma
, 0, esp_reset
);
1627 qdev_connect_gpio_out(espdma
, 1, dma_enable
);
1629 kernel_size
= sun4m_load_kernel(kernel_filename
, initrd_filename
,
1632 nvram_init(nvram
, (uint8_t *)&nd_table
[0].macaddr
, kernel_cmdline
,
1633 boot_device
, RAM_size
, kernel_size
, graphic_width
,
1634 graphic_height
, graphic_depth
, hwdef
->nvram_machine_id
,
1637 fw_cfg
= fw_cfg_init(0, 0, CFG_ADDR
, CFG_ADDR
+ 2);
1638 fw_cfg_add_i32(fw_cfg
, FW_CFG_ID
, 1);
1639 fw_cfg_add_i64(fw_cfg
, FW_CFG_RAM_SIZE
, (uint64_t)ram_size
);
1640 fw_cfg_add_i16(fw_cfg
, FW_CFG_MACHINE_ID
, hwdef
->machine_id
);
1641 fw_cfg_add_i16(fw_cfg
, FW_CFG_SUN4M_DEPTH
, graphic_depth
);
1642 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_ADDR
, KERNEL_LOAD_ADDR
);
1643 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_SIZE
, kernel_size
);
1644 if (kernel_cmdline
) {
1645 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_CMDLINE
, CMDLINE_ADDR
);
1646 pstrcpy_targphys("cmdline", CMDLINE_ADDR
, TARGET_PAGE_SIZE
, kernel_cmdline
);
1647 fw_cfg_add_bytes(fw_cfg
, FW_CFG_CMDLINE_DATA
,
1648 (uint8_t*)strdup(kernel_cmdline
),
1649 strlen(kernel_cmdline
) + 1);
1651 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_CMDLINE
, 0);
1653 fw_cfg_add_i32(fw_cfg
, FW_CFG_INITRD_ADDR
, INITRD_LOAD_ADDR
);
1654 fw_cfg_add_i32(fw_cfg
, FW_CFG_INITRD_SIZE
, 0); // not used
1655 fw_cfg_add_i16(fw_cfg
, FW_CFG_BOOT_DEVICE
, boot_device
[0]);
1656 qemu_register_boot_set(fw_cfg_boot_set
, fw_cfg
);
1659 /* SPARCserver 1000 hardware initialisation */
1660 static void ss1000_init(ram_addr_t RAM_size
,
1661 const char *boot_device
,
1662 const char *kernel_filename
, const char *kernel_cmdline
,
1663 const char *initrd_filename
, const char *cpu_model
)
1665 sun4d_hw_init(&sun4d_hwdefs
[0], RAM_size
, boot_device
, kernel_filename
,
1666 kernel_cmdline
, initrd_filename
, cpu_model
);
1669 /* SPARCcenter 2000 hardware initialisation */
1670 static void ss2000_init(ram_addr_t RAM_size
,
1671 const char *boot_device
,
1672 const char *kernel_filename
, const char *kernel_cmdline
,
1673 const char *initrd_filename
, const char *cpu_model
)
1675 sun4d_hw_init(&sun4d_hwdefs
[1], RAM_size
, boot_device
, kernel_filename
,
1676 kernel_cmdline
, initrd_filename
, cpu_model
);
1679 static QEMUMachine ss1000_machine
= {
1681 .desc
= "Sun4d platform, SPARCserver 1000",
1682 .init
= ss1000_init
,
1687 static QEMUMachine ss2000_machine
= {
1689 .desc
= "Sun4d platform, SPARCcenter 2000",
1690 .init
= ss2000_init
,
1695 static const struct sun4c_hwdef sun4c_hwdefs
[] = {
1698 .iommu_base
= 0xf8000000,
1699 .tcx_base
= 0xfe000000,
1700 .slavio_base
= 0xf6000000,
1701 .intctl_base
= 0xf5000000,
1702 .counter_base
= 0xf3000000,
1703 .ms_kb_base
= 0xf0000000,
1704 .serial_base
= 0xf1000000,
1705 .nvram_base
= 0xf2000000,
1706 .fd_base
= 0xf7200000,
1707 .dma_base
= 0xf8400000,
1708 .esp_base
= 0xf8800000,
1709 .le_base
= 0xf8c00000,
1710 .aux1_base
= 0xf7400003,
1711 .nvram_machine_id
= 0x55,
1712 .machine_id
= ss2_id
,
1713 .max_mem
= 0x10000000,
1714 .default_cpu_model
= "Cypress CY7C601",
1718 static DeviceState
*sun4c_intctl_init(target_phys_addr_t addr
,
1719 qemu_irq
*parent_irq
)
1725 dev
= qdev_create(NULL
, "sun4c_intctl");
1726 qdev_init_nofail(dev
);
1728 s
= sysbus_from_qdev(dev
);
1730 for (i
= 0; i
< MAX_PILS
; i
++) {
1731 sysbus_connect_irq(s
, i
, parent_irq
[i
]);
1733 sysbus_mmio_map(s
, 0, addr
);
1738 static void sun4c_hw_init(const struct sun4c_hwdef
*hwdef
, ram_addr_t RAM_size
,
1739 const char *boot_device
,
1740 const char *kernel_filename
,
1741 const char *kernel_cmdline
,
1742 const char *initrd_filename
, const char *cpu_model
)
1744 void *iommu
, *espdma
, *ledma
, *nvram
;
1745 qemu_irq
*cpu_irqs
, slavio_irq
[8], espdma_irq
, ledma_irq
;
1746 qemu_irq esp_reset
, dma_enable
;
1748 unsigned long kernel_size
;
1749 DriveInfo
*fd
[MAX_FD
];
1756 cpu_model
= hwdef
->default_cpu_model
;
1758 cpu_devinit(cpu_model
, 0, hwdef
->slavio_base
, &cpu_irqs
);
1760 /* set up devices */
1761 ram_init(0, RAM_size
, hwdef
->max_mem
);
1763 prom_init(hwdef
->slavio_base
, bios_name
);
1765 dev
= sun4c_intctl_init(hwdef
->intctl_base
, cpu_irqs
);
1767 for (i
= 0; i
< 8; i
++) {
1768 slavio_irq
[i
] = qdev_get_gpio_in(dev
, i
);
1771 iommu
= iommu_init(hwdef
->iommu_base
, hwdef
->iommu_version
,
1774 espdma
= sparc32_dma_init(hwdef
->dma_base
, slavio_irq
[2],
1775 iommu
, &espdma_irq
, 0);
1777 ledma
= sparc32_dma_init(hwdef
->dma_base
+ 16ULL,
1778 slavio_irq
[3], iommu
, &ledma_irq
, 1);
1780 if (graphic_depth
!= 8 && graphic_depth
!= 24) {
1781 fprintf(stderr
, "qemu: Unsupported depth: %d\n", graphic_depth
);
1784 tcx_init(hwdef
->tcx_base
, 0x00100000, graphic_width
, graphic_height
,
1787 lance_init(&nd_table
[0], hwdef
->le_base
, ledma
, ledma_irq
);
1789 nvram
= m48t59_init(slavio_irq
[0], hwdef
->nvram_base
, 0, 0x800, 2);
1791 slavio_serial_ms_kbd_init(hwdef
->ms_kb_base
, slavio_irq
[1],
1792 display_type
== DT_NOGRAPHIC
, ESCC_CLOCK
, 1);
1793 // Slavio TTYA (base+4, Linux ttyS0) is the first Qemu serial device
1794 // Slavio TTYB (base+0, Linux ttyS1) is the second Qemu serial device
1795 escc_init(hwdef
->serial_base
, slavio_irq
[1],
1796 slavio_irq
[1], serial_hds
[0], serial_hds
[1],
1799 slavio_misc_init(0, hwdef
->aux1_base
, 0, slavio_irq
[1], fdc_tc
);
1801 if (hwdef
->fd_base
!= (target_phys_addr_t
)-1) {
1802 /* there is zero or one floppy drive */
1803 memset(fd
, 0, sizeof(fd
));
1804 fd
[0] = drive_get(IF_FLOPPY
, 0, 0);
1805 sun4m_fdctrl_init(slavio_irq
[1], hwdef
->fd_base
, fd
,
1809 if (drive_get_max_bus(IF_SCSI
) > 0) {
1810 fprintf(stderr
, "qemu: too many SCSI bus\n");
1814 esp_init(hwdef
->esp_base
, 2,
1815 espdma_memory_read
, espdma_memory_write
,
1816 espdma
, espdma_irq
, &esp_reset
, &dma_enable
);
1818 qdev_connect_gpio_out(espdma
, 0, esp_reset
);
1819 qdev_connect_gpio_out(espdma
, 1, dma_enable
);
1821 kernel_size
= sun4m_load_kernel(kernel_filename
, initrd_filename
,
1824 nvram_init(nvram
, (uint8_t *)&nd_table
[0].macaddr
, kernel_cmdline
,
1825 boot_device
, RAM_size
, kernel_size
, graphic_width
,
1826 graphic_height
, graphic_depth
, hwdef
->nvram_machine_id
,
1829 fw_cfg
= fw_cfg_init(0, 0, CFG_ADDR
, CFG_ADDR
+ 2);
1830 fw_cfg_add_i32(fw_cfg
, FW_CFG_ID
, 1);
1831 fw_cfg_add_i64(fw_cfg
, FW_CFG_RAM_SIZE
, (uint64_t)ram_size
);
1832 fw_cfg_add_i16(fw_cfg
, FW_CFG_MACHINE_ID
, hwdef
->machine_id
);
1833 fw_cfg_add_i16(fw_cfg
, FW_CFG_SUN4M_DEPTH
, graphic_depth
);
1834 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_ADDR
, KERNEL_LOAD_ADDR
);
1835 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_SIZE
, kernel_size
);
1836 if (kernel_cmdline
) {
1837 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_CMDLINE
, CMDLINE_ADDR
);
1838 pstrcpy_targphys("cmdline", CMDLINE_ADDR
, TARGET_PAGE_SIZE
, kernel_cmdline
);
1839 fw_cfg_add_bytes(fw_cfg
, FW_CFG_CMDLINE_DATA
,
1840 (uint8_t*)strdup(kernel_cmdline
),
1841 strlen(kernel_cmdline
) + 1);
1843 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_CMDLINE
, 0);
1845 fw_cfg_add_i32(fw_cfg
, FW_CFG_INITRD_ADDR
, INITRD_LOAD_ADDR
);
1846 fw_cfg_add_i32(fw_cfg
, FW_CFG_INITRD_SIZE
, 0); // not used
1847 fw_cfg_add_i16(fw_cfg
, FW_CFG_BOOT_DEVICE
, boot_device
[0]);
1848 qemu_register_boot_set(fw_cfg_boot_set
, fw_cfg
);
1851 /* SPARCstation 2 hardware initialisation */
1852 static void ss2_init(ram_addr_t RAM_size
,
1853 const char *boot_device
,
1854 const char *kernel_filename
, const char *kernel_cmdline
,
1855 const char *initrd_filename
, const char *cpu_model
)
1857 sun4c_hw_init(&sun4c_hwdefs
[0], RAM_size
, boot_device
, kernel_filename
,
1858 kernel_cmdline
, initrd_filename
, cpu_model
);
1861 static QEMUMachine ss2_machine
= {
1863 .desc
= "Sun4c platform, SPARCstation 2",
1868 static void ss2_machine_init(void)
1870 qemu_register_machine(&ss5_machine
);
1871 qemu_register_machine(&ss10_machine
);
1872 qemu_register_machine(&ss600mp_machine
);
1873 qemu_register_machine(&ss20_machine
);
1874 qemu_register_machine(&voyager_machine
);
1875 qemu_register_machine(&ss_lx_machine
);
1876 qemu_register_machine(&ss4_machine
);
1877 qemu_register_machine(&scls_machine
);
1878 qemu_register_machine(&sbook_machine
);
1879 qemu_register_machine(&ss1000_machine
);
1880 qemu_register_machine(&ss2000_machine
);
1881 qemu_register_machine(&ss2_machine
);
1884 machine_init(ss2_machine_init
);