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
24 #include "hw/sysbus.h"
25 #include "qemu/error-report.h"
26 #include "qemu/timer.h"
27 #include "hw/sparc/sun4m.h"
28 #include "hw/timer/m48t59.h"
29 #include "hw/sparc/sparc32_dma.h"
30 #include "hw/block/fdc.h"
31 #include "sysemu/sysemu.h"
33 #include "hw/boards.h"
34 #include "hw/nvram/openbios_firmware_abi.h"
35 #include "hw/scsi/esp.h"
36 #include "hw/i386/pc.h"
37 #include "hw/isa/isa.h"
38 #include "hw/nvram/fw_cfg.h"
39 #include "hw/char/escc.h"
40 #include "hw/empty_slot.h"
41 #include "hw/loader.h"
43 #include "sysemu/block-backend.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 * See for example: http://www.sunhelp.org/faq/sunref1.html
62 #define KERNEL_LOAD_ADDR 0x00004000
63 #define CMDLINE_ADDR 0x007ff000
64 #define INITRD_LOAD_ADDR 0x00800000
65 #define PROM_SIZE_MAX (1024 * 1024)
66 #define PROM_VADDR 0xffd00000
67 #define PROM_FILENAME "openbios-sparc32"
68 #define CFG_ADDR 0xd00000510ULL
69 #define FW_CFG_SUN4M_DEPTH (FW_CFG_ARCH_LOCAL + 0x00)
70 #define FW_CFG_SUN4M_WIDTH (FW_CFG_ARCH_LOCAL + 0x01)
71 #define FW_CFG_SUN4M_HEIGHT (FW_CFG_ARCH_LOCAL + 0x02)
77 #define ESCC_CLOCK 4915200
80 hwaddr iommu_base
, iommu_pad_base
, iommu_pad_len
, slavio_base
;
81 hwaddr intctl_base
, counter_base
, nvram_base
, ms_kb_base
;
82 hwaddr serial_base
, fd_base
;
83 hwaddr afx_base
, idreg_base
, dma_base
, esp_base
, le_base
;
84 hwaddr tcx_base
, cs_base
, apc_base
, aux1_base
, aux2_base
;
85 hwaddr bpp_base
, dbri_base
, sx_base
;
87 hwaddr reg_base
, vram_base
;
91 const char * const default_cpu_model
;
93 uint32_t iommu_version
;
95 uint8_t nvram_machine_id
;
98 int DMA_get_channel_mode (int nchan
)
102 int DMA_read_memory (int nchan
, void *buf
, int pos
, int size
)
106 int DMA_write_memory (int nchan
, void *buf
, int pos
, int size
)
110 void DMA_hold_DREQ (int nchan
) {}
111 void DMA_release_DREQ (int nchan
) {}
112 void DMA_schedule(int nchan
) {}
114 void DMA_init(int high_page_enable
, qemu_irq
*cpu_request_exit
)
118 void DMA_register_channel (int nchan
,
119 DMA_transfer_handler transfer_handler
,
124 static void fw_cfg_boot_set(void *opaque
, const char *boot_device
,
127 fw_cfg_add_i16(opaque
, FW_CFG_BOOT_DEVICE
, boot_device
[0]);
130 static void nvram_init(Nvram
*nvram
, uint8_t *macaddr
,
131 const char *cmdline
, const char *boot_devices
,
132 ram_addr_t RAM_size
, uint32_t kernel_size
,
133 int width
, int height
, int depth
,
134 int nvram_machine_id
, const char *arch
)
138 uint8_t image
[0x1ff0];
139 struct OpenBIOS_nvpart_v1
*part_header
;
140 NvramClass
*k
= NVRAM_GET_CLASS(nvram
);
142 memset(image
, '\0', sizeof(image
));
146 // OpenBIOS nvram variables
147 // Variable partition
148 part_header
= (struct OpenBIOS_nvpart_v1
*)&image
[start
];
149 part_header
->signature
= OPENBIOS_PART_SYSTEM
;
150 pstrcpy(part_header
->name
, sizeof(part_header
->name
), "system");
152 end
= start
+ sizeof(struct OpenBIOS_nvpart_v1
);
153 for (i
= 0; i
< nb_prom_envs
; i
++)
154 end
= OpenBIOS_set_var(image
, end
, prom_envs
[i
]);
159 end
= start
+ ((end
- start
+ 15) & ~15);
160 OpenBIOS_finish_partition(part_header
, end
- start
);
164 part_header
= (struct OpenBIOS_nvpart_v1
*)&image
[start
];
165 part_header
->signature
= OPENBIOS_PART_FREE
;
166 pstrcpy(part_header
->name
, sizeof(part_header
->name
), "free");
169 OpenBIOS_finish_partition(part_header
, end
- start
);
171 Sun_init_header((struct Sun_nvram
*)&image
[0x1fd8], macaddr
,
174 for (i
= 0; i
< sizeof(image
); i
++) {
175 (k
->write
)(nvram
, i
, image
[i
]);
179 static DeviceState
*slavio_intctl
;
181 void sun4m_hmp_info_pic(Monitor
*mon
, const QDict
*qdict
)
184 slavio_pic_info(mon
, slavio_intctl
);
187 void sun4m_hmp_info_irq(Monitor
*mon
, const QDict
*qdict
)
190 slavio_irq_info(mon
, slavio_intctl
);
193 void cpu_check_irqs(CPUSPARCState
*env
)
197 if (env
->pil_in
&& (env
->interrupt_index
== 0 ||
198 (env
->interrupt_index
& ~15) == TT_EXTINT
)) {
201 for (i
= 15; i
> 0; i
--) {
202 if (env
->pil_in
& (1 << i
)) {
203 int old_interrupt
= env
->interrupt_index
;
205 env
->interrupt_index
= TT_EXTINT
| i
;
206 if (old_interrupt
!= env
->interrupt_index
) {
207 cs
= CPU(sparc_env_get_cpu(env
));
208 trace_sun4m_cpu_interrupt(i
);
209 cpu_interrupt(cs
, CPU_INTERRUPT_HARD
);
214 } else if (!env
->pil_in
&& (env
->interrupt_index
& ~15) == TT_EXTINT
) {
215 cs
= CPU(sparc_env_get_cpu(env
));
216 trace_sun4m_cpu_reset_interrupt(env
->interrupt_index
& 15);
217 env
->interrupt_index
= 0;
218 cpu_reset_interrupt(cs
, CPU_INTERRUPT_HARD
);
222 static void cpu_kick_irq(SPARCCPU
*cpu
)
224 CPUSPARCState
*env
= &cpu
->env
;
225 CPUState
*cs
= CPU(cpu
);
232 static void cpu_set_irq(void *opaque
, int irq
, int level
)
234 SPARCCPU
*cpu
= opaque
;
235 CPUSPARCState
*env
= &cpu
->env
;
238 trace_sun4m_cpu_set_irq_raise(irq
);
239 env
->pil_in
|= 1 << irq
;
242 trace_sun4m_cpu_set_irq_lower(irq
);
243 env
->pil_in
&= ~(1 << irq
);
248 static void dummy_cpu_set_irq(void *opaque
, int irq
, int level
)
252 static void main_cpu_reset(void *opaque
)
254 SPARCCPU
*cpu
= opaque
;
255 CPUState
*cs
= CPU(cpu
);
261 static void secondary_cpu_reset(void *opaque
)
263 SPARCCPU
*cpu
= opaque
;
264 CPUState
*cs
= CPU(cpu
);
270 static void cpu_halt_signal(void *opaque
, int irq
, int level
)
272 if (level
&& current_cpu
) {
273 cpu_interrupt(current_cpu
, CPU_INTERRUPT_HALT
);
277 static uint64_t translate_kernel_address(void *opaque
, uint64_t addr
)
279 return addr
- 0xf0000000ULL
;
282 static unsigned long sun4m_load_kernel(const char *kernel_filename
,
283 const char *initrd_filename
,
288 long initrd_size
, kernel_size
;
291 linux_boot
= (kernel_filename
!= NULL
);
302 kernel_size
= load_elf(kernel_filename
, translate_kernel_address
, NULL
,
303 NULL
, NULL
, NULL
, 1, ELF_MACHINE
, 0);
305 kernel_size
= load_aout(kernel_filename
, KERNEL_LOAD_ADDR
,
306 RAM_size
- KERNEL_LOAD_ADDR
, bswap_needed
,
309 kernel_size
= load_image_targphys(kernel_filename
,
311 RAM_size
- KERNEL_LOAD_ADDR
);
312 if (kernel_size
< 0) {
313 fprintf(stderr
, "qemu: could not load kernel '%s'\n",
320 if (initrd_filename
) {
321 initrd_size
= load_image_targphys(initrd_filename
,
323 RAM_size
- INITRD_LOAD_ADDR
);
324 if (initrd_size
< 0) {
325 fprintf(stderr
, "qemu: could not load initial ram disk '%s'\n",
330 if (initrd_size
> 0) {
331 for (i
= 0; i
< 64 * TARGET_PAGE_SIZE
; i
+= TARGET_PAGE_SIZE
) {
332 ptr
= rom_ptr(KERNEL_LOAD_ADDR
+ i
);
333 if (ldl_p(ptr
) == 0x48647253) { // HdrS
334 stl_p(ptr
+ 16, INITRD_LOAD_ADDR
);
335 stl_p(ptr
+ 20, initrd_size
);
344 static void *iommu_init(hwaddr addr
, uint32_t version
, qemu_irq irq
)
349 dev
= qdev_create(NULL
, "iommu");
350 qdev_prop_set_uint32(dev
, "version", version
);
351 qdev_init_nofail(dev
);
352 s
= SYS_BUS_DEVICE(dev
);
353 sysbus_connect_irq(s
, 0, irq
);
354 sysbus_mmio_map(s
, 0, addr
);
359 static void *sparc32_dma_init(hwaddr daddr
, qemu_irq parent_irq
,
360 void *iommu
, qemu_irq
*dev_irq
, int is_ledma
)
365 dev
= qdev_create(NULL
, "sparc32_dma");
366 qdev_prop_set_ptr(dev
, "iommu_opaque", iommu
);
367 qdev_prop_set_uint32(dev
, "is_ledma", is_ledma
);
368 qdev_init_nofail(dev
);
369 s
= SYS_BUS_DEVICE(dev
);
370 sysbus_connect_irq(s
, 0, parent_irq
);
371 *dev_irq
= qdev_get_gpio_in(dev
, 0);
372 sysbus_mmio_map(s
, 0, daddr
);
377 static void lance_init(NICInfo
*nd
, hwaddr leaddr
,
378 void *dma_opaque
, qemu_irq irq
)
384 qemu_check_nic_model(&nd_table
[0], "lance");
386 dev
= qdev_create(NULL
, "lance");
387 qdev_set_nic_properties(dev
, nd
);
388 qdev_prop_set_ptr(dev
, "dma", dma_opaque
);
389 qdev_init_nofail(dev
);
390 s
= SYS_BUS_DEVICE(dev
);
391 sysbus_mmio_map(s
, 0, leaddr
);
392 sysbus_connect_irq(s
, 0, irq
);
393 reset
= qdev_get_gpio_in(dev
, 0);
394 qdev_connect_gpio_out(dma_opaque
, 0, reset
);
397 static DeviceState
*slavio_intctl_init(hwaddr addr
,
399 qemu_irq
**parent_irq
)
405 dev
= qdev_create(NULL
, "slavio_intctl");
406 qdev_init_nofail(dev
);
408 s
= SYS_BUS_DEVICE(dev
);
410 for (i
= 0; i
< MAX_CPUS
; i
++) {
411 for (j
= 0; j
< MAX_PILS
; j
++) {
412 sysbus_connect_irq(s
, i
* MAX_PILS
+ j
, parent_irq
[i
][j
]);
415 sysbus_mmio_map(s
, 0, addrg
);
416 for (i
= 0; i
< MAX_CPUS
; i
++) {
417 sysbus_mmio_map(s
, i
+ 1, addr
+ i
* TARGET_PAGE_SIZE
);
423 #define SYS_TIMER_OFFSET 0x10000ULL
424 #define CPU_TIMER_OFFSET(cpu) (0x1000ULL * cpu)
426 static void slavio_timer_init_all(hwaddr addr
, qemu_irq master_irq
,
427 qemu_irq
*cpu_irqs
, unsigned int num_cpus
)
433 dev
= qdev_create(NULL
, "slavio_timer");
434 qdev_prop_set_uint32(dev
, "num_cpus", num_cpus
);
435 qdev_init_nofail(dev
);
436 s
= SYS_BUS_DEVICE(dev
);
437 sysbus_connect_irq(s
, 0, master_irq
);
438 sysbus_mmio_map(s
, 0, addr
+ SYS_TIMER_OFFSET
);
440 for (i
= 0; i
< MAX_CPUS
; i
++) {
441 sysbus_mmio_map(s
, i
+ 1, addr
+ (hwaddr
)CPU_TIMER_OFFSET(i
));
442 sysbus_connect_irq(s
, i
+ 1, cpu_irqs
[i
]);
446 static qemu_irq slavio_system_powerdown
;
448 static void slavio_powerdown_req(Notifier
*n
, void *opaque
)
450 qemu_irq_raise(slavio_system_powerdown
);
453 static Notifier slavio_system_powerdown_notifier
= {
454 .notify
= slavio_powerdown_req
457 #define MISC_LEDS 0x01600000
458 #define MISC_CFG 0x01800000
459 #define MISC_DIAG 0x01a00000
460 #define MISC_MDM 0x01b00000
461 #define MISC_SYS 0x01f00000
463 static void slavio_misc_init(hwaddr base
,
465 hwaddr aux2_base
, qemu_irq irq
,
471 dev
= qdev_create(NULL
, "slavio_misc");
472 qdev_init_nofail(dev
);
473 s
= SYS_BUS_DEVICE(dev
);
475 /* 8 bit registers */
477 sysbus_mmio_map(s
, 0, base
+ MISC_CFG
);
479 sysbus_mmio_map(s
, 1, base
+ MISC_DIAG
);
481 sysbus_mmio_map(s
, 2, base
+ MISC_MDM
);
482 /* 16 bit registers */
483 /* ss600mp diag LEDs */
484 sysbus_mmio_map(s
, 3, base
+ MISC_LEDS
);
485 /* 32 bit registers */
487 sysbus_mmio_map(s
, 4, base
+ MISC_SYS
);
490 /* AUX 1 (Misc System Functions) */
491 sysbus_mmio_map(s
, 5, aux1_base
);
494 /* AUX 2 (Software Powerdown Control) */
495 sysbus_mmio_map(s
, 6, aux2_base
);
497 sysbus_connect_irq(s
, 0, irq
);
498 sysbus_connect_irq(s
, 1, fdc_tc
);
499 slavio_system_powerdown
= qdev_get_gpio_in(dev
, 0);
500 qemu_register_powerdown_notifier(&slavio_system_powerdown_notifier
);
503 static void ecc_init(hwaddr base
, qemu_irq irq
, uint32_t version
)
508 dev
= qdev_create(NULL
, "eccmemctl");
509 qdev_prop_set_uint32(dev
, "version", version
);
510 qdev_init_nofail(dev
);
511 s
= SYS_BUS_DEVICE(dev
);
512 sysbus_connect_irq(s
, 0, irq
);
513 sysbus_mmio_map(s
, 0, base
);
514 if (version
== 0) { // SS-600MP only
515 sysbus_mmio_map(s
, 1, base
+ 0x1000);
519 static void apc_init(hwaddr power_base
, qemu_irq cpu_halt
)
524 dev
= qdev_create(NULL
, "apc");
525 qdev_init_nofail(dev
);
526 s
= SYS_BUS_DEVICE(dev
);
527 /* Power management (APC) XXX: not a Slavio device */
528 sysbus_mmio_map(s
, 0, power_base
);
529 sysbus_connect_irq(s
, 0, cpu_halt
);
532 static void tcx_init(hwaddr addr
, qemu_irq irq
, int vram_size
, int width
,
533 int height
, int depth
)
538 dev
= qdev_create(NULL
, "SUNW,tcx");
539 qdev_prop_set_uint32(dev
, "vram_size", vram_size
);
540 qdev_prop_set_uint16(dev
, "width", width
);
541 qdev_prop_set_uint16(dev
, "height", height
);
542 qdev_prop_set_uint16(dev
, "depth", depth
);
543 qdev_prop_set_uint64(dev
, "prom_addr", addr
);
544 qdev_init_nofail(dev
);
545 s
= SYS_BUS_DEVICE(dev
);
547 /* 10/ROM : FCode ROM */
548 sysbus_mmio_map(s
, 0, addr
);
549 /* 2/STIP : Stipple */
550 sysbus_mmio_map(s
, 1, addr
+ 0x04000000ULL
);
551 /* 3/BLIT : Blitter */
552 sysbus_mmio_map(s
, 2, addr
+ 0x06000000ULL
);
553 /* 5/RSTIP : Raw Stipple */
554 sysbus_mmio_map(s
, 3, addr
+ 0x0c000000ULL
);
555 /* 6/RBLIT : Raw Blitter */
556 sysbus_mmio_map(s
, 4, addr
+ 0x0e000000ULL
);
557 /* 7/TEC : Transform Engine */
558 sysbus_mmio_map(s
, 5, addr
+ 0x00700000ULL
);
560 sysbus_mmio_map(s
, 6, addr
+ 0x00200000ULL
);
563 sysbus_mmio_map(s
, 7, addr
+ 0x00300000ULL
);
565 sysbus_mmio_map(s
, 7, addr
+ 0x00301000ULL
);
568 sysbus_mmio_map(s
, 8, addr
+ 0x00240000ULL
);
570 sysbus_mmio_map(s
, 9, addr
+ 0x00280000ULL
);
571 /* 0/DFB8 : 8-bit plane */
572 sysbus_mmio_map(s
, 10, addr
+ 0x00800000ULL
);
573 /* 1/DFB24 : 24bit plane */
574 sysbus_mmio_map(s
, 11, addr
+ 0x02000000ULL
);
575 /* 4/RDFB32: Raw framebuffer. Control plane */
576 sysbus_mmio_map(s
, 12, addr
+ 0x0a000000ULL
);
577 /* 9/THC24bits : NetBSD writes here even with 8-bit display: dummy */
579 sysbus_mmio_map(s
, 13, addr
+ 0x00301000ULL
);
582 sysbus_connect_irq(s
, 0, irq
);
585 static void cg3_init(hwaddr addr
, qemu_irq irq
, int vram_size
, int width
,
586 int height
, int depth
)
591 dev
= qdev_create(NULL
, "cgthree");
592 qdev_prop_set_uint32(dev
, "vram-size", vram_size
);
593 qdev_prop_set_uint16(dev
, "width", width
);
594 qdev_prop_set_uint16(dev
, "height", height
);
595 qdev_prop_set_uint16(dev
, "depth", depth
);
596 qdev_prop_set_uint64(dev
, "prom-addr", addr
);
597 qdev_init_nofail(dev
);
598 s
= SYS_BUS_DEVICE(dev
);
601 sysbus_mmio_map(s
, 0, addr
);
603 sysbus_mmio_map(s
, 1, addr
+ 0x400000ULL
);
605 sysbus_mmio_map(s
, 2, addr
+ 0x800000ULL
);
607 sysbus_connect_irq(s
, 0, irq
);
610 /* NCR89C100/MACIO Internal ID register */
612 #define TYPE_MACIO_ID_REGISTER "macio_idreg"
614 static const uint8_t idreg_data
[] = { 0xfe, 0x81, 0x01, 0x03 };
616 static void idreg_init(hwaddr addr
)
621 dev
= qdev_create(NULL
, TYPE_MACIO_ID_REGISTER
);
622 qdev_init_nofail(dev
);
623 s
= SYS_BUS_DEVICE(dev
);
625 sysbus_mmio_map(s
, 0, addr
);
626 cpu_physical_memory_write_rom(&address_space_memory
,
627 addr
, idreg_data
, sizeof(idreg_data
));
630 #define MACIO_ID_REGISTER(obj) \
631 OBJECT_CHECK(IDRegState, (obj), TYPE_MACIO_ID_REGISTER)
633 typedef struct IDRegState
{
634 SysBusDevice parent_obj
;
639 static int idreg_init1(SysBusDevice
*dev
)
641 IDRegState
*s
= MACIO_ID_REGISTER(dev
);
643 memory_region_init_ram(&s
->mem
, OBJECT(s
),
644 "sun4m.idreg", sizeof(idreg_data
), &error_abort
);
645 vmstate_register_ram_global(&s
->mem
);
646 memory_region_set_readonly(&s
->mem
, true);
647 sysbus_init_mmio(dev
, &s
->mem
);
651 static void idreg_class_init(ObjectClass
*klass
, void *data
)
653 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
655 k
->init
= idreg_init1
;
658 static const TypeInfo idreg_info
= {
659 .name
= TYPE_MACIO_ID_REGISTER
,
660 .parent
= TYPE_SYS_BUS_DEVICE
,
661 .instance_size
= sizeof(IDRegState
),
662 .class_init
= idreg_class_init
,
665 #define TYPE_TCX_AFX "tcx_afx"
666 #define TCX_AFX(obj) OBJECT_CHECK(AFXState, (obj), TYPE_TCX_AFX)
668 typedef struct AFXState
{
669 SysBusDevice parent_obj
;
674 /* SS-5 TCX AFX register */
675 static void afx_init(hwaddr addr
)
680 dev
= qdev_create(NULL
, TYPE_TCX_AFX
);
681 qdev_init_nofail(dev
);
682 s
= SYS_BUS_DEVICE(dev
);
684 sysbus_mmio_map(s
, 0, addr
);
687 static int afx_init1(SysBusDevice
*dev
)
689 AFXState
*s
= TCX_AFX(dev
);
691 memory_region_init_ram(&s
->mem
, OBJECT(s
), "sun4m.afx", 4, &error_abort
);
692 vmstate_register_ram_global(&s
->mem
);
693 sysbus_init_mmio(dev
, &s
->mem
);
697 static void afx_class_init(ObjectClass
*klass
, void *data
)
699 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
704 static const TypeInfo afx_info
= {
705 .name
= TYPE_TCX_AFX
,
706 .parent
= TYPE_SYS_BUS_DEVICE
,
707 .instance_size
= sizeof(AFXState
),
708 .class_init
= afx_class_init
,
711 #define TYPE_OPENPROM "openprom"
712 #define OPENPROM(obj) OBJECT_CHECK(PROMState, (obj), TYPE_OPENPROM)
714 typedef struct PROMState
{
715 SysBusDevice parent_obj
;
720 /* Boot PROM (OpenBIOS) */
721 static uint64_t translate_prom_address(void *opaque
, uint64_t addr
)
723 hwaddr
*base_addr
= (hwaddr
*)opaque
;
724 return addr
+ *base_addr
- PROM_VADDR
;
727 static void prom_init(hwaddr addr
, const char *bios_name
)
734 dev
= qdev_create(NULL
, TYPE_OPENPROM
);
735 qdev_init_nofail(dev
);
736 s
= SYS_BUS_DEVICE(dev
);
738 sysbus_mmio_map(s
, 0, addr
);
741 if (bios_name
== NULL
) {
742 bios_name
= PROM_FILENAME
;
744 filename
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, bios_name
);
746 ret
= load_elf(filename
, translate_prom_address
, &addr
, NULL
,
747 NULL
, NULL
, 1, ELF_MACHINE
, 0);
748 if (ret
< 0 || ret
> PROM_SIZE_MAX
) {
749 ret
= load_image_targphys(filename
, addr
, PROM_SIZE_MAX
);
755 if (ret
< 0 || ret
> PROM_SIZE_MAX
) {
756 fprintf(stderr
, "qemu: could not load prom '%s'\n", bios_name
);
761 static int prom_init1(SysBusDevice
*dev
)
763 PROMState
*s
= OPENPROM(dev
);
765 memory_region_init_ram(&s
->prom
, OBJECT(s
), "sun4m.prom", PROM_SIZE_MAX
,
767 vmstate_register_ram_global(&s
->prom
);
768 memory_region_set_readonly(&s
->prom
, true);
769 sysbus_init_mmio(dev
, &s
->prom
);
773 static Property prom_properties
[] = {
774 {/* end of property list */},
777 static void prom_class_init(ObjectClass
*klass
, void *data
)
779 DeviceClass
*dc
= DEVICE_CLASS(klass
);
780 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
782 k
->init
= prom_init1
;
783 dc
->props
= prom_properties
;
786 static const TypeInfo prom_info
= {
787 .name
= TYPE_OPENPROM
,
788 .parent
= TYPE_SYS_BUS_DEVICE
,
789 .instance_size
= sizeof(PROMState
),
790 .class_init
= prom_class_init
,
793 #define TYPE_SUN4M_MEMORY "memory"
794 #define SUN4M_RAM(obj) OBJECT_CHECK(RamDevice, (obj), TYPE_SUN4M_MEMORY)
796 typedef struct RamDevice
{
797 SysBusDevice parent_obj
;
804 static int ram_init1(SysBusDevice
*dev
)
806 RamDevice
*d
= SUN4M_RAM(dev
);
808 memory_region_allocate_system_memory(&d
->ram
, OBJECT(d
), "sun4m.ram",
810 sysbus_init_mmio(dev
, &d
->ram
);
814 static void ram_init(hwaddr addr
, ram_addr_t RAM_size
,
822 if ((uint64_t)RAM_size
> max_mem
) {
824 "qemu: Too much memory for this machine: %d, maximum %d\n",
825 (unsigned int)(RAM_size
/ (1024 * 1024)),
826 (unsigned int)(max_mem
/ (1024 * 1024)));
829 dev
= qdev_create(NULL
, "memory");
830 s
= SYS_BUS_DEVICE(dev
);
834 qdev_init_nofail(dev
);
836 sysbus_mmio_map(s
, 0, addr
);
839 static Property ram_properties
[] = {
840 DEFINE_PROP_UINT64("size", RamDevice
, size
, 0),
841 DEFINE_PROP_END_OF_LIST(),
844 static void ram_class_init(ObjectClass
*klass
, void *data
)
846 DeviceClass
*dc
= DEVICE_CLASS(klass
);
847 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
850 dc
->props
= ram_properties
;
853 static const TypeInfo ram_info
= {
854 .name
= TYPE_SUN4M_MEMORY
,
855 .parent
= TYPE_SYS_BUS_DEVICE
,
856 .instance_size
= sizeof(RamDevice
),
857 .class_init
= ram_class_init
,
860 static void cpu_devinit(const char *cpu_model
, unsigned int id
,
861 uint64_t prom_addr
, qemu_irq
**cpu_irqs
)
867 cpu
= cpu_sparc_init(cpu_model
);
869 fprintf(stderr
, "qemu: Unable to find Sparc CPU definition\n");
874 cpu_sparc_set_id(env
, id
);
876 qemu_register_reset(main_cpu_reset
, cpu
);
878 qemu_register_reset(secondary_cpu_reset
, cpu
);
882 *cpu_irqs
= qemu_allocate_irqs(cpu_set_irq
, cpu
, MAX_PILS
);
883 env
->prom_addr
= prom_addr
;
886 static void dummy_fdc_tc(void *opaque
, int irq
, int level
)
890 static void sun4m_hw_init(const struct sun4m_hwdef
*hwdef
,
891 MachineState
*machine
)
893 const char *cpu_model
= machine
->cpu_model
;
895 void *iommu
, *espdma
, *ledma
, *nvram
;
896 qemu_irq
*cpu_irqs
[MAX_CPUS
], slavio_irq
[32], slavio_cpu_irq
[MAX_CPUS
],
897 espdma_irq
, ledma_irq
;
898 qemu_irq esp_reset
, dma_enable
;
901 unsigned long kernel_size
;
902 DriveInfo
*fd
[MAX_FD
];
904 unsigned int num_vsimms
;
908 cpu_model
= hwdef
->default_cpu_model
;
910 for(i
= 0; i
< smp_cpus
; i
++) {
911 cpu_devinit(cpu_model
, i
, hwdef
->slavio_base
, &cpu_irqs
[i
]);
914 for (i
= smp_cpus
; i
< MAX_CPUS
; i
++)
915 cpu_irqs
[i
] = qemu_allocate_irqs(dummy_cpu_set_irq
, NULL
, MAX_PILS
);
919 ram_init(0, machine
->ram_size
, hwdef
->max_mem
);
920 /* models without ECC don't trap when missing ram is accessed */
921 if (!hwdef
->ecc_base
) {
922 empty_slot_init(machine
->ram_size
, hwdef
->max_mem
- machine
->ram_size
);
925 prom_init(hwdef
->slavio_base
, bios_name
);
927 slavio_intctl
= slavio_intctl_init(hwdef
->intctl_base
,
928 hwdef
->intctl_base
+ 0x10000ULL
,
931 for (i
= 0; i
< 32; i
++) {
932 slavio_irq
[i
] = qdev_get_gpio_in(slavio_intctl
, i
);
934 for (i
= 0; i
< MAX_CPUS
; i
++) {
935 slavio_cpu_irq
[i
] = qdev_get_gpio_in(slavio_intctl
, 32 + i
);
938 if (hwdef
->idreg_base
) {
939 idreg_init(hwdef
->idreg_base
);
942 if (hwdef
->afx_base
) {
943 afx_init(hwdef
->afx_base
);
946 iommu
= iommu_init(hwdef
->iommu_base
, hwdef
->iommu_version
,
949 if (hwdef
->iommu_pad_base
) {
950 /* On the real hardware (SS-5, LX) the MMU is not padded, but aliased.
951 Software shouldn't use aliased addresses, neither should it crash
952 when does. Using empty_slot instead of aliasing can help with
953 debugging such accesses */
954 empty_slot_init(hwdef
->iommu_pad_base
,hwdef
->iommu_pad_len
);
957 espdma
= sparc32_dma_init(hwdef
->dma_base
, slavio_irq
[18],
958 iommu
, &espdma_irq
, 0);
960 ledma
= sparc32_dma_init(hwdef
->dma_base
+ 16ULL,
961 slavio_irq
[16], iommu
, &ledma_irq
, 1);
963 if (graphic_depth
!= 8 && graphic_depth
!= 24) {
964 error_report("Unsupported depth: %d", graphic_depth
);
968 if (num_vsimms
== 0) {
969 if (vga_interface_type
== VGA_CG3
) {
970 if (graphic_depth
!= 8) {
971 error_report("Unsupported depth: %d", graphic_depth
);
975 if (!(graphic_width
== 1024 && graphic_height
== 768) &&
976 !(graphic_width
== 1152 && graphic_height
== 900)) {
977 error_report("Unsupported resolution: %d x %d", graphic_width
,
983 cg3_init(hwdef
->tcx_base
, slavio_irq
[11], 0x00100000,
984 graphic_width
, graphic_height
, graphic_depth
);
986 /* If no display specified, default to TCX */
987 if (graphic_depth
!= 8 && graphic_depth
!= 24) {
988 error_report("Unsupported depth: %d", graphic_depth
);
992 if (!(graphic_width
== 1024 && graphic_height
== 768)) {
993 error_report("Unsupported resolution: %d x %d",
994 graphic_width
, graphic_height
);
998 tcx_init(hwdef
->tcx_base
, slavio_irq
[11], 0x00100000,
999 graphic_width
, graphic_height
, graphic_depth
);
1003 for (i
= num_vsimms
; i
< MAX_VSIMMS
; i
++) {
1004 /* vsimm registers probed by OBP */
1005 if (hwdef
->vsimm
[i
].reg_base
) {
1006 empty_slot_init(hwdef
->vsimm
[i
].reg_base
, 0x2000);
1010 if (hwdef
->sx_base
) {
1011 empty_slot_init(hwdef
->sx_base
, 0x2000);
1014 lance_init(&nd_table
[0], hwdef
->le_base
, ledma
, ledma_irq
);
1016 nvram
= m48t59_init(slavio_irq
[0], hwdef
->nvram_base
, 0, 0x2000, 1968, 8);
1018 slavio_timer_init_all(hwdef
->counter_base
, slavio_irq
[19], slavio_cpu_irq
, smp_cpus
);
1020 slavio_serial_ms_kbd_init(hwdef
->ms_kb_base
, slavio_irq
[14],
1021 display_type
== DT_NOGRAPHIC
, ESCC_CLOCK
, 1);
1022 /* Slavio TTYA (base+4, Linux ttyS0) is the first QEMU serial device
1023 Slavio TTYB (base+0, Linux ttyS1) is the second QEMU serial device */
1024 escc_init(hwdef
->serial_base
, slavio_irq
[15], slavio_irq
[15],
1025 serial_hds
[0], serial_hds
[1], ESCC_CLOCK
, 1);
1027 cpu_halt
= qemu_allocate_irqs(cpu_halt_signal
, NULL
, 1);
1028 if (hwdef
->apc_base
) {
1029 apc_init(hwdef
->apc_base
, cpu_halt
[0]);
1032 if (hwdef
->fd_base
) {
1033 /* there is zero or one floppy drive */
1034 memset(fd
, 0, sizeof(fd
));
1035 fd
[0] = drive_get(IF_FLOPPY
, 0, 0);
1036 sun4m_fdctrl_init(slavio_irq
[22], hwdef
->fd_base
, fd
,
1039 fdc_tc
= *qemu_allocate_irqs(dummy_fdc_tc
, NULL
, 1);
1042 slavio_misc_init(hwdef
->slavio_base
, hwdef
->aux1_base
, hwdef
->aux2_base
,
1043 slavio_irq
[30], fdc_tc
);
1045 if (drive_get_max_bus(IF_SCSI
) > 0) {
1046 fprintf(stderr
, "qemu: too many SCSI bus\n");
1050 esp_init(hwdef
->esp_base
, 2,
1051 espdma_memory_read
, espdma_memory_write
,
1052 espdma
, espdma_irq
, &esp_reset
, &dma_enable
);
1054 qdev_connect_gpio_out(espdma
, 0, esp_reset
);
1055 qdev_connect_gpio_out(espdma
, 1, dma_enable
);
1057 if (hwdef
->cs_base
) {
1058 sysbus_create_simple("SUNW,CS4231", hwdef
->cs_base
,
1062 if (hwdef
->dbri_base
) {
1063 /* ISDN chip with attached CS4215 audio codec */
1065 empty_slot_init(hwdef
->dbri_base
+0x1000, 0x30);
1067 empty_slot_init(hwdef
->dbri_base
+0x10000, 0x100);
1070 if (hwdef
->bpp_base
) {
1072 empty_slot_init(hwdef
->bpp_base
, 0x20);
1075 kernel_size
= sun4m_load_kernel(machine
->kernel_filename
,
1076 machine
->initrd_filename
,
1079 nvram_init(nvram
, (uint8_t *)&nd_table
[0].macaddr
, machine
->kernel_cmdline
,
1080 machine
->boot_order
, machine
->ram_size
, kernel_size
,
1081 graphic_width
, graphic_height
, graphic_depth
,
1082 hwdef
->nvram_machine_id
, "Sun4m");
1084 if (hwdef
->ecc_base
)
1085 ecc_init(hwdef
->ecc_base
, slavio_irq
[28],
1086 hwdef
->ecc_version
);
1088 fw_cfg
= fw_cfg_init_mem(CFG_ADDR
, CFG_ADDR
+ 2);
1089 fw_cfg_add_i16(fw_cfg
, FW_CFG_MAX_CPUS
, (uint16_t)max_cpus
);
1090 fw_cfg_add_i64(fw_cfg
, FW_CFG_RAM_SIZE
, (uint64_t)ram_size
);
1091 fw_cfg_add_i16(fw_cfg
, FW_CFG_MACHINE_ID
, hwdef
->machine_id
);
1092 fw_cfg_add_i16(fw_cfg
, FW_CFG_SUN4M_DEPTH
, graphic_depth
);
1093 fw_cfg_add_i16(fw_cfg
, FW_CFG_SUN4M_WIDTH
, graphic_width
);
1094 fw_cfg_add_i16(fw_cfg
, FW_CFG_SUN4M_HEIGHT
, graphic_height
);
1095 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_ADDR
, KERNEL_LOAD_ADDR
);
1096 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_SIZE
, kernel_size
);
1097 if (machine
->kernel_cmdline
) {
1098 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_CMDLINE
, CMDLINE_ADDR
);
1099 pstrcpy_targphys("cmdline", CMDLINE_ADDR
, TARGET_PAGE_SIZE
,
1100 machine
->kernel_cmdline
);
1101 fw_cfg_add_string(fw_cfg
, FW_CFG_CMDLINE_DATA
, machine
->kernel_cmdline
);
1102 fw_cfg_add_i32(fw_cfg
, FW_CFG_CMDLINE_SIZE
,
1103 strlen(machine
->kernel_cmdline
) + 1);
1105 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_CMDLINE
, 0);
1106 fw_cfg_add_i32(fw_cfg
, FW_CFG_CMDLINE_SIZE
, 0);
1108 fw_cfg_add_i32(fw_cfg
, FW_CFG_INITRD_ADDR
, INITRD_LOAD_ADDR
);
1109 fw_cfg_add_i32(fw_cfg
, FW_CFG_INITRD_SIZE
, 0); // not used
1110 fw_cfg_add_i16(fw_cfg
, FW_CFG_BOOT_DEVICE
, machine
->boot_order
[0]);
1111 qemu_register_boot_set(fw_cfg_boot_set
, fw_cfg
);
1126 static const struct sun4m_hwdef sun4m_hwdefs
[] = {
1129 .iommu_base
= 0x10000000,
1130 .iommu_pad_base
= 0x10004000,
1131 .iommu_pad_len
= 0x0fffb000,
1132 .tcx_base
= 0x50000000,
1133 .cs_base
= 0x6c000000,
1134 .slavio_base
= 0x70000000,
1135 .ms_kb_base
= 0x71000000,
1136 .serial_base
= 0x71100000,
1137 .nvram_base
= 0x71200000,
1138 .fd_base
= 0x71400000,
1139 .counter_base
= 0x71d00000,
1140 .intctl_base
= 0x71e00000,
1141 .idreg_base
= 0x78000000,
1142 .dma_base
= 0x78400000,
1143 .esp_base
= 0x78800000,
1144 .le_base
= 0x78c00000,
1145 .apc_base
= 0x6a000000,
1146 .afx_base
= 0x6e000000,
1147 .aux1_base
= 0x71900000,
1148 .aux2_base
= 0x71910000,
1149 .nvram_machine_id
= 0x80,
1150 .machine_id
= ss5_id
,
1151 .iommu_version
= 0x05000000,
1152 .max_mem
= 0x10000000,
1153 .default_cpu_model
= "Fujitsu MB86904",
1157 .iommu_base
= 0xfe0000000ULL
,
1158 .tcx_base
= 0xe20000000ULL
,
1159 .slavio_base
= 0xff0000000ULL
,
1160 .ms_kb_base
= 0xff1000000ULL
,
1161 .serial_base
= 0xff1100000ULL
,
1162 .nvram_base
= 0xff1200000ULL
,
1163 .fd_base
= 0xff1700000ULL
,
1164 .counter_base
= 0xff1300000ULL
,
1165 .intctl_base
= 0xff1400000ULL
,
1166 .idreg_base
= 0xef0000000ULL
,
1167 .dma_base
= 0xef0400000ULL
,
1168 .esp_base
= 0xef0800000ULL
,
1169 .le_base
= 0xef0c00000ULL
,
1170 .apc_base
= 0xefa000000ULL
, // XXX should not exist
1171 .aux1_base
= 0xff1800000ULL
,
1172 .aux2_base
= 0xff1a01000ULL
,
1173 .ecc_base
= 0xf00000000ULL
,
1174 .ecc_version
= 0x10000000, // version 0, implementation 1
1175 .nvram_machine_id
= 0x72,
1176 .machine_id
= ss10_id
,
1177 .iommu_version
= 0x03000000,
1178 .max_mem
= 0xf00000000ULL
,
1179 .default_cpu_model
= "TI SuperSparc II",
1183 .iommu_base
= 0xfe0000000ULL
,
1184 .tcx_base
= 0xe20000000ULL
,
1185 .slavio_base
= 0xff0000000ULL
,
1186 .ms_kb_base
= 0xff1000000ULL
,
1187 .serial_base
= 0xff1100000ULL
,
1188 .nvram_base
= 0xff1200000ULL
,
1189 .counter_base
= 0xff1300000ULL
,
1190 .intctl_base
= 0xff1400000ULL
,
1191 .dma_base
= 0xef0081000ULL
,
1192 .esp_base
= 0xef0080000ULL
,
1193 .le_base
= 0xef0060000ULL
,
1194 .apc_base
= 0xefa000000ULL
, // XXX should not exist
1195 .aux1_base
= 0xff1800000ULL
,
1196 .aux2_base
= 0xff1a01000ULL
, // XXX should not exist
1197 .ecc_base
= 0xf00000000ULL
,
1198 .ecc_version
= 0x00000000, // version 0, implementation 0
1199 .nvram_machine_id
= 0x71,
1200 .machine_id
= ss600mp_id
,
1201 .iommu_version
= 0x01000000,
1202 .max_mem
= 0xf00000000ULL
,
1203 .default_cpu_model
= "TI SuperSparc II",
1207 .iommu_base
= 0xfe0000000ULL
,
1208 .tcx_base
= 0xe20000000ULL
,
1209 .slavio_base
= 0xff0000000ULL
,
1210 .ms_kb_base
= 0xff1000000ULL
,
1211 .serial_base
= 0xff1100000ULL
,
1212 .nvram_base
= 0xff1200000ULL
,
1213 .fd_base
= 0xff1700000ULL
,
1214 .counter_base
= 0xff1300000ULL
,
1215 .intctl_base
= 0xff1400000ULL
,
1216 .idreg_base
= 0xef0000000ULL
,
1217 .dma_base
= 0xef0400000ULL
,
1218 .esp_base
= 0xef0800000ULL
,
1219 .le_base
= 0xef0c00000ULL
,
1220 .bpp_base
= 0xef4800000ULL
,
1221 .apc_base
= 0xefa000000ULL
, // XXX should not exist
1222 .aux1_base
= 0xff1800000ULL
,
1223 .aux2_base
= 0xff1a01000ULL
,
1224 .dbri_base
= 0xee0000000ULL
,
1225 .sx_base
= 0xf80000000ULL
,
1228 .reg_base
= 0x9c000000ULL
,
1229 .vram_base
= 0xfc000000ULL
1231 .reg_base
= 0x90000000ULL
,
1232 .vram_base
= 0xf0000000ULL
1234 .reg_base
= 0x94000000ULL
1236 .reg_base
= 0x98000000ULL
1239 .ecc_base
= 0xf00000000ULL
,
1240 .ecc_version
= 0x20000000, // version 0, implementation 2
1241 .nvram_machine_id
= 0x72,
1242 .machine_id
= ss20_id
,
1243 .iommu_version
= 0x13000000,
1244 .max_mem
= 0xf00000000ULL
,
1245 .default_cpu_model
= "TI SuperSparc II",
1249 .iommu_base
= 0x10000000,
1250 .tcx_base
= 0x50000000,
1251 .slavio_base
= 0x70000000,
1252 .ms_kb_base
= 0x71000000,
1253 .serial_base
= 0x71100000,
1254 .nvram_base
= 0x71200000,
1255 .fd_base
= 0x71400000,
1256 .counter_base
= 0x71d00000,
1257 .intctl_base
= 0x71e00000,
1258 .idreg_base
= 0x78000000,
1259 .dma_base
= 0x78400000,
1260 .esp_base
= 0x78800000,
1261 .le_base
= 0x78c00000,
1262 .apc_base
= 0x71300000, // pmc
1263 .aux1_base
= 0x71900000,
1264 .aux2_base
= 0x71910000,
1265 .nvram_machine_id
= 0x80,
1266 .machine_id
= vger_id
,
1267 .iommu_version
= 0x05000000,
1268 .max_mem
= 0x10000000,
1269 .default_cpu_model
= "Fujitsu MB86904",
1273 .iommu_base
= 0x10000000,
1274 .iommu_pad_base
= 0x10004000,
1275 .iommu_pad_len
= 0x0fffb000,
1276 .tcx_base
= 0x50000000,
1277 .slavio_base
= 0x70000000,
1278 .ms_kb_base
= 0x71000000,
1279 .serial_base
= 0x71100000,
1280 .nvram_base
= 0x71200000,
1281 .fd_base
= 0x71400000,
1282 .counter_base
= 0x71d00000,
1283 .intctl_base
= 0x71e00000,
1284 .idreg_base
= 0x78000000,
1285 .dma_base
= 0x78400000,
1286 .esp_base
= 0x78800000,
1287 .le_base
= 0x78c00000,
1288 .aux1_base
= 0x71900000,
1289 .aux2_base
= 0x71910000,
1290 .nvram_machine_id
= 0x80,
1291 .machine_id
= lx_id
,
1292 .iommu_version
= 0x04000000,
1293 .max_mem
= 0x10000000,
1294 .default_cpu_model
= "TI MicroSparc I",
1298 .iommu_base
= 0x10000000,
1299 .tcx_base
= 0x50000000,
1300 .cs_base
= 0x6c000000,
1301 .slavio_base
= 0x70000000,
1302 .ms_kb_base
= 0x71000000,
1303 .serial_base
= 0x71100000,
1304 .nvram_base
= 0x71200000,
1305 .fd_base
= 0x71400000,
1306 .counter_base
= 0x71d00000,
1307 .intctl_base
= 0x71e00000,
1308 .idreg_base
= 0x78000000,
1309 .dma_base
= 0x78400000,
1310 .esp_base
= 0x78800000,
1311 .le_base
= 0x78c00000,
1312 .apc_base
= 0x6a000000,
1313 .aux1_base
= 0x71900000,
1314 .aux2_base
= 0x71910000,
1315 .nvram_machine_id
= 0x80,
1316 .machine_id
= ss4_id
,
1317 .iommu_version
= 0x05000000,
1318 .max_mem
= 0x10000000,
1319 .default_cpu_model
= "Fujitsu MB86904",
1323 .iommu_base
= 0x10000000,
1324 .tcx_base
= 0x50000000,
1325 .slavio_base
= 0x70000000,
1326 .ms_kb_base
= 0x71000000,
1327 .serial_base
= 0x71100000,
1328 .nvram_base
= 0x71200000,
1329 .fd_base
= 0x71400000,
1330 .counter_base
= 0x71d00000,
1331 .intctl_base
= 0x71e00000,
1332 .idreg_base
= 0x78000000,
1333 .dma_base
= 0x78400000,
1334 .esp_base
= 0x78800000,
1335 .le_base
= 0x78c00000,
1336 .apc_base
= 0x6a000000,
1337 .aux1_base
= 0x71900000,
1338 .aux2_base
= 0x71910000,
1339 .nvram_machine_id
= 0x80,
1340 .machine_id
= scls_id
,
1341 .iommu_version
= 0x05000000,
1342 .max_mem
= 0x10000000,
1343 .default_cpu_model
= "TI MicroSparc I",
1347 .iommu_base
= 0x10000000,
1348 .tcx_base
= 0x50000000, // XXX
1349 .slavio_base
= 0x70000000,
1350 .ms_kb_base
= 0x71000000,
1351 .serial_base
= 0x71100000,
1352 .nvram_base
= 0x71200000,
1353 .fd_base
= 0x71400000,
1354 .counter_base
= 0x71d00000,
1355 .intctl_base
= 0x71e00000,
1356 .idreg_base
= 0x78000000,
1357 .dma_base
= 0x78400000,
1358 .esp_base
= 0x78800000,
1359 .le_base
= 0x78c00000,
1360 .apc_base
= 0x6a000000,
1361 .aux1_base
= 0x71900000,
1362 .aux2_base
= 0x71910000,
1363 .nvram_machine_id
= 0x80,
1364 .machine_id
= sbook_id
,
1365 .iommu_version
= 0x05000000,
1366 .max_mem
= 0x10000000,
1367 .default_cpu_model
= "TI MicroSparc I",
1371 /* SPARCstation 5 hardware initialisation */
1372 static void ss5_init(MachineState
*machine
)
1374 sun4m_hw_init(&sun4m_hwdefs
[0], machine
);
1377 /* SPARCstation 10 hardware initialisation */
1378 static void ss10_init(MachineState
*machine
)
1380 sun4m_hw_init(&sun4m_hwdefs
[1], machine
);
1383 /* SPARCserver 600MP hardware initialisation */
1384 static void ss600mp_init(MachineState
*machine
)
1386 sun4m_hw_init(&sun4m_hwdefs
[2], machine
);
1389 /* SPARCstation 20 hardware initialisation */
1390 static void ss20_init(MachineState
*machine
)
1392 sun4m_hw_init(&sun4m_hwdefs
[3], machine
);
1395 /* SPARCstation Voyager hardware initialisation */
1396 static void vger_init(MachineState
*machine
)
1398 sun4m_hw_init(&sun4m_hwdefs
[4], machine
);
1401 /* SPARCstation LX hardware initialisation */
1402 static void ss_lx_init(MachineState
*machine
)
1404 sun4m_hw_init(&sun4m_hwdefs
[5], machine
);
1407 /* SPARCstation 4 hardware initialisation */
1408 static void ss4_init(MachineState
*machine
)
1410 sun4m_hw_init(&sun4m_hwdefs
[6], machine
);
1413 /* SPARCClassic hardware initialisation */
1414 static void scls_init(MachineState
*machine
)
1416 sun4m_hw_init(&sun4m_hwdefs
[7], machine
);
1419 /* SPARCbook hardware initialisation */
1420 static void sbook_init(MachineState
*machine
)
1422 sun4m_hw_init(&sun4m_hwdefs
[8], machine
);
1425 static QEMUMachine ss5_machine
= {
1427 .desc
= "Sun4m platform, SPARCstation 5",
1429 .block_default_type
= IF_SCSI
,
1431 .default_boot_order
= "c",
1434 static QEMUMachine ss10_machine
= {
1436 .desc
= "Sun4m platform, SPARCstation 10",
1438 .block_default_type
= IF_SCSI
,
1440 .default_boot_order
= "c",
1443 static QEMUMachine ss600mp_machine
= {
1445 .desc
= "Sun4m platform, SPARCserver 600MP",
1446 .init
= ss600mp_init
,
1447 .block_default_type
= IF_SCSI
,
1449 .default_boot_order
= "c",
1452 static QEMUMachine ss20_machine
= {
1454 .desc
= "Sun4m platform, SPARCstation 20",
1456 .block_default_type
= IF_SCSI
,
1458 .default_boot_order
= "c",
1461 static QEMUMachine voyager_machine
= {
1463 .desc
= "Sun4m platform, SPARCstation Voyager",
1465 .block_default_type
= IF_SCSI
,
1466 .default_boot_order
= "c",
1469 static QEMUMachine ss_lx_machine
= {
1471 .desc
= "Sun4m platform, SPARCstation LX",
1473 .block_default_type
= IF_SCSI
,
1474 .default_boot_order
= "c",
1477 static QEMUMachine ss4_machine
= {
1479 .desc
= "Sun4m platform, SPARCstation 4",
1481 .block_default_type
= IF_SCSI
,
1482 .default_boot_order
= "c",
1485 static QEMUMachine scls_machine
= {
1486 .name
= "SPARCClassic",
1487 .desc
= "Sun4m platform, SPARCClassic",
1489 .block_default_type
= IF_SCSI
,
1490 .default_boot_order
= "c",
1493 static QEMUMachine sbook_machine
= {
1494 .name
= "SPARCbook",
1495 .desc
= "Sun4m platform, SPARCbook",
1497 .block_default_type
= IF_SCSI
,
1498 .default_boot_order
= "c",
1501 static void sun4m_register_types(void)
1503 type_register_static(&idreg_info
);
1504 type_register_static(&afx_info
);
1505 type_register_static(&prom_info
);
1506 type_register_static(&ram_info
);
1509 static void sun4m_machine_init(void)
1511 qemu_register_machine(&ss5_machine
);
1512 qemu_register_machine(&ss10_machine
);
1513 qemu_register_machine(&ss600mp_machine
);
1514 qemu_register_machine(&ss20_machine
);
1515 qemu_register_machine(&voyager_machine
);
1516 qemu_register_machine(&ss_lx_machine
);
1517 qemu_register_machine(&ss4_machine
);
1518 qemu_register_machine(&scls_machine
);
1519 qemu_register_machine(&sbook_machine
);
1522 type_init(sun4m_register_types
)
1523 machine_init(sun4m_machine_init
);