1
2
/*
* QEMU Sun4m System Emulator
ths
authored
18 years ago
3
*
4
* Copyright ( c ) 2003 - 2005 Fabrice Bellard
ths
authored
18 years ago
5
*
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
* Permission is hereby granted , free of charge , to any person obtaining a copy
* of this software and associated documentation files ( the "Software" ), to deal
* in the Software without restriction , including without limitation the rights
* to use , copy , modify , merge , publish , distribute , sublicense , and / or sell
* copies of the Software , and to permit persons to whom the Software is
* furnished to do so , subject to the following conditions :
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software .
*
* THE SOFTWARE IS PROVIDED "AS IS" , WITHOUT WARRANTY OF ANY KIND , EXPRESS OR
* IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY ,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT . IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM , DAMAGES OR OTHER
* LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE , ARISING FROM ,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE .
*/
24
25
26
27
28
29
30
31
32
# include "hw.h"
# include "qemu-timer.h"
# include "sun4m.h"
# include "nvram.h"
# include "sparc32_dma.h"
# include "fdc.h"
# include "sysemu.h"
# include "net.h"
# include "boards.h"
33
34
# include "firmware_abi.h"
35
// # define DEBUG_IRQ
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
* Sun4m architecture was used in the following machines :
*
* SPARCserver 6 xxMP / xx
* SPARCclassic ( SPARCclassic Server )( SPARCstation LC ) ( 4 / 15 ), SPARCclassic X ( 4 / 10 )
* SPARCstation LX / ZX ( 4 / 30 )
* SPARCstation Voyager
* SPARCstation 10 / xx , SPARCserver 10 / xx
* SPARCstation 5 , SPARCserver 5
* SPARCstation 20 / xx , SPARCserver 20
* SPARCstation 4
*
* See for example : http :// www . sunhelp . org / faq / sunref1 . html
*/
52
53
54
55
56
57
58
# ifdef DEBUG_IRQ
# define DPRINTF ( fmt , args ...) \
do { printf ( "CPUIRQ: " fmt , ## args ); } while ( 0 )
# else
# define DPRINTF ( fmt , args ...)
# endif
59
# define KERNEL_LOAD_ADDR 0x00004000
60
# define CMDLINE_ADDR 0x007ff000
61
# define INITRD_LOAD_ADDR 0x00800000
62
# define PROM_SIZE_MAX ( 512 * 1024 )
63
# define PROM_VADDR 0xffd00000
64
# define PROM_FILENAME "openbios-sparc32"
65
66
# define MAX_CPUS 16
67
# define MAX_PILS 16
68
69
struct hwdef {
70
71
72
73
74
target_phys_addr_t iommu_base , slavio_base ;
target_phys_addr_t intctl_base , counter_base , nvram_base , ms_kb_base ;
target_phys_addr_t serial_base , fd_base ;
target_phys_addr_t dma_base , esp_base , le_base ;
target_phys_addr_t tcx_base , cs_base , power_base ;
75
76
target_phys_addr_t ecc_base ;
uint32_t ecc_version ;
77
78
79
long vram_size , nvram_size ;
// IRQ numbers are not PIL ones , but master interrupt controller register
// bit numbers
80
int intctl_g_intr , esp_irq , le_irq , clock_irq , clock1_irq ;
81
82
int ser_irq , ms_kb_irq , fd_irq , me_irq , cs_irq ;
int machine_id ; // For NVRAM
83
uint32_t iommu_version ;
84
uint32_t intbit_to_level [ 32 ];
85
86
uint64_t max_mem ;
const char * const default_cpu_model ;
87
88
};
89
90
91
92
93
94
95
/* TSC handling */
uint64_t cpu_get_tsc ()
{
return qemu_get_clock ( vm_clock );
}
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
int DMA_get_channel_mode ( int nchan )
{
return 0 ;
}
int DMA_read_memory ( int nchan , void * buf , int pos , int size )
{
return 0 ;
}
int DMA_write_memory ( int nchan , void * buf , int pos , int size )
{
return 0 ;
}
void DMA_hold_DREQ ( int nchan ) {}
void DMA_release_DREQ ( int nchan ) {}
void DMA_schedule ( int nchan ) {}
void DMA_run ( void ) {}
void DMA_init ( int high_page_enable ) {}
void DMA_register_channel ( int nchan ,
DMA_transfer_handler transfer_handler ,
void * opaque )
{
}
extern int nographic ;
121
static void nvram_init ( m48t59_t * nvram , uint8_t * macaddr , const char * cmdline ,
122
const char * boot_devices , uint32_t RAM_size ,
123
124
uint32_t kernel_size ,
int width , int height , int depth ,
125
int machine_id )
126
{
127
unsigned int i ;
128
uint32_t start , end ;
129
130
131
132
133
134
uint8_t image [ 0x1ff0 ];
ohwcfg_v3_t * header = ( ohwcfg_v3_t * ) & image ;
struct sparc_arch_cfg * sparc_header ;
struct OpenBIOS_nvpart_v1 * part_header ;
memset ( image , '\0' , sizeof ( image ));
135
136
// Try to match PPC NVRAM
137
138
139
140
141
142
143
144
145
146
147
148
149
150
strcpy ( header -> struct_ident , "QEMU_BIOS" );
header -> struct_version = cpu_to_be32 ( 3 ); /* structure v3 */
header -> nvram_size = cpu_to_be16 ( 0x2000 );
header -> nvram_arch_ptr = cpu_to_be16 ( sizeof ( ohwcfg_v3_t ));
header -> nvram_arch_size = cpu_to_be16 ( sizeof ( struct sparc_arch_cfg ));
strcpy ( header -> arch , "sun4m" );
header -> nb_cpus = smp_cpus & 0xff ;
header -> RAM0_base = 0 ;
header -> RAM0_size = cpu_to_be64 (( uint64_t ) RAM_size );
strcpy ( header -> boot_devices , boot_devices );
header -> nboot_devices = strlen ( boot_devices ) & 0xff ;
header -> kernel_image = cpu_to_be64 (( uint64_t ) KERNEL_LOAD_ADDR );
header -> kernel_size = cpu_to_be64 (( uint64_t ) kernel_size );
151
if ( cmdline ) {
152
strcpy ( phys_ram_base + CMDLINE_ADDR , cmdline );
153
154
header -> cmdline = cpu_to_be64 (( uint64_t ) CMDLINE_ADDR );
header -> cmdline_size = cpu_to_be64 (( uint64_t ) strlen ( cmdline ));
155
}
156
157
158
159
160
161
162
163
164
165
166
167
168
169
// XXX add initrd_image , initrd_size
header -> width = cpu_to_be16 ( width );
header -> height = cpu_to_be16 ( height );
header -> depth = cpu_to_be16 ( depth );
if ( nographic )
header -> graphic_flags = cpu_to_be16 ( OHW_GF_NOGRAPHICS );
header -> crc = cpu_to_be16 ( OHW_compute_crc ( header , 0x00 , 0xF8 ));
// Architecture specific header
start = sizeof ( ohwcfg_v3_t );
sparc_header = ( struct sparc_arch_cfg * ) & image [ start ];
sparc_header -> valid = 0 ;
start += sizeof ( struct sparc_arch_cfg );
170
171
172
// OpenBIOS nvram variables
// Variable partition
173
174
175
part_header = ( struct OpenBIOS_nvpart_v1 * ) & image [ start ];
part_header -> signature = OPENBIOS_PART_SYSTEM ;
strcpy ( part_header -> name , "system" );
176
177
end = start + sizeof ( struct OpenBIOS_nvpart_v1 );
178
for ( i = 0 ; i < nb_prom_envs ; i ++ )
179
180
181
182
end = OpenBIOS_set_var ( image , end , prom_envs [ i ]);
// End marker
image [ end ++ ] = '\0' ;
183
184
end = start + (( end - start + 15 ) & ~ 15 );
185
OpenBIOS_finish_partition ( part_header , end - start );
186
187
188
// free partition
start = end ;
189
190
191
part_header = ( struct OpenBIOS_nvpart_v1 * ) & image [ start ];
part_header -> signature = OPENBIOS_PART_FREE ;
strcpy ( part_header -> name , "free" );
192
193
end = 0x1fd0 ;
194
195
196
197
198
199
OpenBIOS_finish_partition ( part_header , end - start );
Sun_init_header (( struct Sun_nvram * ) & image [ 0x1fd8 ], macaddr , machine_id );
for ( i = 0 ; i < sizeof ( image ); i ++ )
m48t59_write ( nvram , i , image [ i ]);
200
201
202
203
204
205
206
207
208
209
210
211
212
213
}
static void * slavio_intctl ;
void pic_info ()
{
slavio_pic_info ( slavio_intctl );
}
void irq_info ()
{
slavio_irq_info ( slavio_intctl );
}
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
void cpu_check_irqs ( CPUState * env )
{
if ( env -> pil_in && ( env -> interrupt_index == 0 ||
( env -> interrupt_index & ~ 15 ) == TT_EXTINT )) {
unsigned int i ;
for ( i = 15 ; i > 0 ; i -- ) {
if ( env -> pil_in & ( 1 << i )) {
int old_interrupt = env -> interrupt_index ;
env -> interrupt_index = TT_EXTINT | i ;
if ( old_interrupt != env -> interrupt_index )
cpu_interrupt ( env , CPU_INTERRUPT_HARD );
break ;
}
}
} else if ( ! env -> pil_in && ( env -> interrupt_index & ~ 15 ) == TT_EXTINT ) {
env -> interrupt_index = 0 ;
cpu_reset_interrupt ( env , CPU_INTERRUPT_HARD );
}
}
236
237
238
239
240
241
242
static void cpu_set_irq ( void * opaque , int irq , int level )
{
CPUState * env = opaque ;
if ( level ) {
DPRINTF ( "Raise CPU IRQ %d \n " , irq );
env -> halted = 0 ;
243
244
env -> pil_in |= 1 << irq ;
cpu_check_irqs ( env );
245
246
} else {
DPRINTF ( "Lower CPU IRQ %d \n " , irq );
247
248
env -> pil_in &= ~ ( 1 << irq );
cpu_check_irqs ( env );
249
250
251
252
253
254
255
}
}
static void dummy_cpu_set_irq ( void * opaque , int irq , int level )
{
}
256
257
258
259
260
261
262
static void * slavio_misc ;
void qemu_system_powerdown ( void )
{
slavio_set_power_fail ( slavio_misc , 1 );
}
263
264
265
static void main_cpu_reset ( void * opaque )
{
CPUState * env = opaque ;
266
267
268
269
270
271
272
273
274
cpu_reset ( env );
env -> halted = 0 ;
}
static void secondary_cpu_reset ( void * opaque )
{
CPUState * env = opaque ;
275
cpu_reset ( env );
276
env -> halted = 1 ;
277
278
}
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
static unsigned long sun4m_load_kernel ( const char * kernel_filename ,
const char * kernel_cmdline ,
const char * initrd_filename )
{
int linux_boot ;
unsigned int i ;
long initrd_size , kernel_size ;
linux_boot = ( kernel_filename != NULL );
kernel_size = 0 ;
if ( linux_boot ) {
kernel_size = load_elf ( kernel_filename , - 0xf0000000ULL , NULL , NULL ,
NULL );
if ( kernel_size < 0 )
kernel_size = load_aout ( kernel_filename , phys_ram_base + KERNEL_LOAD_ADDR );
if ( kernel_size < 0 )
kernel_size = load_image ( kernel_filename , phys_ram_base + KERNEL_LOAD_ADDR );
if ( kernel_size < 0 ) {
fprintf ( stderr , "qemu: could not load kernel '%s' \n " ,
kernel_filename );
exit ( 1 );
}
/* load initrd */
initrd_size = 0 ;
if ( initrd_filename ) {
initrd_size = load_image ( initrd_filename , phys_ram_base + INITRD_LOAD_ADDR );
if ( initrd_size < 0 ) {
fprintf ( stderr , "qemu: could not load initial ram disk '%s' \n " ,
initrd_filename );
exit ( 1 );
}
}
if ( initrd_size > 0 ) {
for ( i = 0 ; i < 64 * TARGET_PAGE_SIZE ; i += TARGET_PAGE_SIZE ) {
if ( ldl_raw ( phys_ram_base + KERNEL_LOAD_ADDR + i )
== 0x48647253 ) { // HdrS
stl_raw ( phys_ram_base + KERNEL_LOAD_ADDR + i + 16 , INITRD_LOAD_ADDR );
stl_raw ( phys_ram_base + KERNEL_LOAD_ADDR + i + 20 , initrd_size );
break ;
}
}
}
}
return kernel_size ;
}
static void sun4m_hw_init ( const struct hwdef * hwdef , int RAM_size ,
const char * boot_device ,
DisplayState * ds , const char * kernel_filename ,
const char * kernel_cmdline ,
const char * initrd_filename , const char * cpu_model )
332
333
{
334
CPUState * env , * envs [ MAX_CPUS ];
335
unsigned int i ;
336
void * iommu , * espdma , * ledma , * main_esp , * nvram ;
337
qemu_irq * cpu_irqs [ MAX_CPUS ], * slavio_irq , * slavio_cpu_irq ,
338
* espdma_irq , * ledma_irq ;
339
qemu_irq * esp_reset , * le_reset ;
340
341
342
unsigned long prom_offset , kernel_size ;
int ret ;
char buf [ 1024 ];
ths
authored
17 years ago
343
344
BlockDriverState * fd [ MAX_FD ];
int index ;
345
346
/* init CPUs */
347
348
if ( ! cpu_model )
cpu_model = hwdef -> default_cpu_model ;
349
350
for ( i = 0 ; i < smp_cpus ; i ++ ) {
351
352
353
354
355
356
env = cpu_init ( cpu_model );
if ( ! env ) {
fprintf ( stderr , "Unable to find Sparc CPU definition \n " );
exit ( 1 );
}
cpu_sparc_set_id ( env , i );
357
envs [ i ] = env ;
358
359
360
361
if ( i == 0 ) {
qemu_register_reset ( main_cpu_reset , env );
} else {
qemu_register_reset ( secondary_cpu_reset , env );
362
env -> halted = 1 ;
363
}
364
register_savevm ( "cpu" , i , 3 , cpu_save , cpu_load , env );
365
cpu_irqs [ i ] = qemu_allocate_irqs ( cpu_set_irq , envs [ i ], MAX_PILS );
366
env -> prom_addr = hwdef -> slavio_base ;
367
}
368
369
370
371
for ( i = smp_cpus ; i < MAX_CPUS ; i ++ )
cpu_irqs [ i ] = qemu_allocate_irqs ( dummy_cpu_set_irq , NULL , MAX_PILS );
372
373
/* allocate RAM */
374
375
376
377
378
379
if (( uint64_t ) RAM_size > hwdef -> max_mem ) {
fprintf ( stderr , "qemu: Too much memory for this machine: %d, maximum %d \n " ,
( unsigned int ) RAM_size / ( 1024 * 1024 ),
( unsigned int )( hwdef -> max_mem / ( 1024 * 1024 )));
exit ( 1 );
}
380
cpu_register_physical_memory ( 0 , RAM_size , 0 );
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
/* load boot prom */
prom_offset = RAM_size + hwdef -> vram_size ;
cpu_register_physical_memory ( hwdef -> slavio_base ,
( PROM_SIZE_MAX + TARGET_PAGE_SIZE - 1 ) &
TARGET_PAGE_MASK ,
prom_offset | IO_MEM_ROM );
if ( bios_name == NULL )
bios_name = PROM_FILENAME ;
snprintf ( buf , sizeof ( buf ), "%s/%s" , bios_dir , bios_name );
ret = load_elf ( buf , hwdef -> slavio_base - PROM_VADDR , NULL , NULL , NULL );
if ( ret < 0 || ret > PROM_SIZE_MAX )
ret = load_image ( buf , phys_ram_base + prom_offset );
if ( ret < 0 || ret > PROM_SIZE_MAX ) {
fprintf ( stderr , "qemu: could not load prom '%s' \n " ,
buf );
exit ( 1 );
}
/* set up devices */
402
iommu = iommu_init ( hwdef -> iommu_base , hwdef -> iommu_version );
403
slavio_intctl = slavio_intctl_init ( hwdef -> intctl_base ,
404
hwdef -> intctl_base + 0x10000ULL ,
405
& hwdef -> intbit_to_level [ 0 ],
406
& slavio_irq , & slavio_cpu_irq ,
407
cpu_irqs ,
408
hwdef -> clock_irq );
409
410
espdma = sparc32_dma_init ( hwdef -> dma_base , slavio_irq [ hwdef -> esp_irq ],
411
412
iommu , & espdma_irq , & esp_reset );
413
ledma = sparc32_dma_init ( hwdef -> dma_base + 16ULL ,
414
415
slavio_irq [ hwdef -> le_irq ], iommu , & ledma_irq ,
& le_reset );
416
417
418
419
420
if ( graphic_depth != 8 && graphic_depth != 24 ) {
fprintf ( stderr , "qemu: Unsupported depth: %d \n " , graphic_depth );
exit ( 1 );
}
421
tcx_init ( ds , hwdef -> tcx_base , phys_ram_base + RAM_size , RAM_size ,
422
hwdef -> vram_size , graphic_width , graphic_height , graphic_depth );
423
424
425
if ( nd_table [ 0 ]. model == NULL
|| strcmp ( nd_table [ 0 ]. model , "lance" ) == 0 ) {
426
lance_init ( & nd_table [ 0 ], hwdef -> le_base , ledma , * ledma_irq , le_reset );
427
428
429
} else if ( strcmp ( nd_table [ 0 ]. model , "?" ) == 0 ) {
fprintf ( stderr , "qemu: Supported NICs: lance \n " );
exit ( 1 );
430
431
432
} else {
fprintf ( stderr , "qemu: Unsupported NIC: %s \n " , nd_table [ 0 ]. model );
exit ( 1 );
433
}
434
435
436
nvram = m48t59_init ( slavio_irq [ 0 ], hwdef -> nvram_base , 0 ,
hwdef -> nvram_size , 8 );
437
438
slavio_timer_init_all ( hwdef -> counter_base , slavio_irq [ hwdef -> clock1_irq ],
439
slavio_cpu_irq , smp_cpus );
440
441
442
slavio_serial_ms_kbd_init ( hwdef -> ms_kb_base , slavio_irq [ hwdef -> ms_kb_irq ],
nographic );
443
444
// Slavio TTYA ( base + 4 , Linux ttyS0 ) is the first Qemu serial device
// Slavio TTYB ( base + 0 , Linux ttyS1 ) is the second Qemu serial device
445
446
slavio_serial_init ( hwdef -> serial_base , slavio_irq [ hwdef -> ser_irq ],
serial_hds [ 1 ], serial_hds [ 0 ]);
447
ths
authored
17 years ago
448
449
450
451
452
453
if ( hwdef -> fd_base != ( target_phys_addr_t ) - 1 ) {
/* there is zero or one floppy drive */
fd [ 1 ] = fd [ 0 ] = NULL ;
index = drive_get_index ( IF_FLOPPY , 0 , 0 );
if ( index != - 1 )
fd [ 0 ] = drives_table [ index ]. bdrv ;
454
ths
authored
17 years ago
455
456
457
458
459
460
461
462
463
sun4m_fdctrl_init ( slavio_irq [ hwdef -> fd_irq ], hwdef -> fd_base , fd );
}
if ( drive_get_max_bus ( IF_SCSI ) > 0 ) {
fprintf ( stderr , "qemu: too many SCSI bus \n " );
exit ( 1 );
}
main_esp = esp_init ( hwdef -> esp_base , espdma , * espdma_irq ,
464
esp_reset );
ths
authored
18 years ago
465
ths
authored
17 years ago
466
467
468
469
470
for ( i = 0 ; i < ESP_MAX_DEVS ; i ++ ) {
index = drive_get_index ( IF_SCSI , 0 , i );
if ( index == - 1 )
continue ;
esp_scsi_attach ( main_esp , drives_table [ index ]. bdrv , i );
ths
authored
18 years ago
471
472
}
473
slavio_misc = slavio_misc_init ( hwdef -> slavio_base , hwdef -> power_base ,
474
slavio_irq [ hwdef -> me_irq ]);
475
if ( hwdef -> cs_base != ( target_phys_addr_t ) - 1 )
476
cs_init ( hwdef -> cs_base , hwdef -> cs_irq , slavio_intctl );
477
478
479
kernel_size = sun4m_load_kernel ( kernel_filename , kernel_cmdline ,
initrd_filename );
480
481
nvram_init ( nvram , ( uint8_t * ) & nd_table [ 0 ]. macaddr , kernel_cmdline ,
482
boot_device , RAM_size , kernel_size , graphic_width ,
483
graphic_height , graphic_depth , hwdef -> machine_id );
484
485
486
if ( hwdef -> ecc_base != ( target_phys_addr_t ) - 1 )
ecc_init ( hwdef -> ecc_base , hwdef -> ecc_version );
487
488
489
490
491
492
493
494
}
static const struct hwdef hwdefs [] = {
/* SS-5 */
{
. iommu_base = 0x10000000 ,
. tcx_base = 0x50000000 ,
. cs_base = 0x6c000000 ,
495
. slavio_base = 0x70000000 ,
496
497
498
499
500
501
502
503
504
. ms_kb_base = 0x71000000 ,
. serial_base = 0x71100000 ,
. nvram_base = 0x71200000 ,
. fd_base = 0x71400000 ,
. counter_base = 0x71d00000 ,
. intctl_base = 0x71e00000 ,
. dma_base = 0x78400000 ,
. esp_base = 0x78800000 ,
. le_base = 0x78c00000 ,
505
. power_base = 0x7a000000 ,
506
. ecc_base = - 1 ,
507
508
509
510
511
512
513
514
515
516
517
518
. vram_size = 0x00100000 ,
. nvram_size = 0x2000 ,
. esp_irq = 18 ,
. le_irq = 16 ,
. clock_irq = 7 ,
. clock1_irq = 19 ,
. ms_kb_irq = 14 ,
. ser_irq = 15 ,
. fd_irq = 22 ,
. me_irq = 30 ,
. cs_irq = 5 ,
. machine_id = 0x80 ,
519
. iommu_version = 0x04000000 ,
520
. intbit_to_level = {
521
522
2 , 3 , 5 , 7 , 9 , 11 , 0 , 14 , 3 , 5 , 7 , 9 , 11 , 13 , 12 , 12 ,
6 , 0 , 4 , 10 , 8 , 0 , 11 , 0 , 0 , 0 , 0 , 0 , 15 , 0 , 15 , 0 ,
523
},
524
525
. max_mem = 0x10000000 ,
. default_cpu_model = "Fujitsu MB86904" ,
526
527
528
},
/* SS-10 */
{
529
530
. iommu_base = 0xfe0000000ULL ,
. tcx_base = 0xe20000000ULL ,
531
. cs_base = - 1 ,
532
533
534
535
536
537
538
539
540
541
542
. slavio_base = 0xff0000000ULL ,
. ms_kb_base = 0xff1000000ULL ,
. serial_base = 0xff1100000ULL ,
. nvram_base = 0xff1200000ULL ,
. fd_base = 0xff1700000ULL ,
. counter_base = 0xff1300000ULL ,
. intctl_base = 0xff1400000ULL ,
. dma_base = 0xef0400000ULL ,
. esp_base = 0xef0800000ULL ,
. le_base = 0xef0c00000ULL ,
. power_base = 0xefa000000ULL ,
543
544
. ecc_base = 0xf00000000ULL ,
. ecc_version = 0x10000000 , // version 0 , implementation 1
545
546
547
548
549
550
551
552
553
554
. vram_size = 0x00100000 ,
. nvram_size = 0x2000 ,
. esp_irq = 18 ,
. le_irq = 16 ,
. clock_irq = 7 ,
. clock1_irq = 19 ,
. ms_kb_irq = 14 ,
. ser_irq = 15 ,
. fd_irq = 22 ,
. me_irq = 30 ,
555
556
. cs_irq = - 1 ,
. machine_id = 0x72 ,
557
. iommu_version = 0x03000000 ,
558
. intbit_to_level = {
559
560
2 , 3 , 5 , 7 , 9 , 11 , 0 , 14 , 3 , 5 , 7 , 9 , 11 , 13 , 12 , 12 ,
6 , 0 , 4 , 10 , 8 , 0 , 11 , 0 , 0 , 0 , 0 , 0 , 15 , 0 , 15 , 0 ,
561
},
562
563
. max_mem = 0xffffffff , // XXX actually first 62 GB ok
. default_cpu_model = "TI SuperSparc II" ,
564
},
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
/* SS-600MP */
{
. iommu_base = 0xfe0000000ULL ,
. tcx_base = 0xe20000000ULL ,
. cs_base = - 1 ,
. slavio_base = 0xff0000000ULL ,
. ms_kb_base = 0xff1000000ULL ,
. serial_base = 0xff1100000ULL ,
. nvram_base = 0xff1200000ULL ,
. fd_base = - 1 ,
. counter_base = 0xff1300000ULL ,
. intctl_base = 0xff1400000ULL ,
. dma_base = 0xef0081000ULL ,
. esp_base = 0xef0080000ULL ,
. le_base = 0xef0060000ULL ,
. power_base = 0xefa000000ULL ,
581
582
. ecc_base = 0xf00000000ULL ,
. ecc_version = 0x00000000 , // version 0 , implementation 0
583
584
585
586
587
588
589
590
591
592
593
594
. vram_size = 0x00100000 ,
. nvram_size = 0x2000 ,
. esp_irq = 18 ,
. le_irq = 16 ,
. clock_irq = 7 ,
. clock1_irq = 19 ,
. ms_kb_irq = 14 ,
. ser_irq = 15 ,
. fd_irq = 22 ,
. me_irq = 30 ,
. cs_irq = - 1 ,
. machine_id = 0x71 ,
595
. iommu_version = 0x01000000 ,
596
597
598
599
. intbit_to_level = {
2 , 3 , 5 , 7 , 9 , 11 , 0 , 14 , 3 , 5 , 7 , 9 , 11 , 13 , 12 , 12 ,
6 , 0 , 4 , 10 , 8 , 0 , 11 , 0 , 0 , 0 , 0 , 0 , 15 , 0 , 15 , 0 ,
},
600
601
. max_mem = 0xffffffff , // XXX actually first 62 GB ok
. default_cpu_model = "TI SuperSparc II" ,
602
},
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
/* SS-20 */
{
. iommu_base = 0xfe0000000ULL ,
. tcx_base = 0xe20000000ULL ,
. cs_base = - 1 ,
. slavio_base = 0xff0000000ULL ,
. ms_kb_base = 0xff1000000ULL ,
. serial_base = 0xff1100000ULL ,
. nvram_base = 0xff1200000ULL ,
. fd_base = 0xff1700000ULL ,
. counter_base = 0xff1300000ULL ,
. intctl_base = 0xff1400000ULL ,
. dma_base = 0xef0400000ULL ,
. esp_base = 0xef0800000ULL ,
. le_base = 0xef0c00000ULL ,
. power_base = 0xefa000000ULL ,
. ecc_base = 0xf00000000ULL ,
. ecc_version = 0x20000000 , // version 0 , implementation 2
. vram_size = 0x00100000 ,
. nvram_size = 0x2000 ,
. esp_irq = 18 ,
. le_irq = 16 ,
. clock_irq = 7 ,
. clock1_irq = 19 ,
. ms_kb_irq = 14 ,
. ser_irq = 15 ,
. fd_irq = 22 ,
. me_irq = 30 ,
. cs_irq = - 1 ,
. machine_id = 0x72 ,
. iommu_version = 0x13000000 ,
. intbit_to_level = {
2 , 3 , 5 , 7 , 9 , 11 , 0 , 14 , 3 , 5 , 7 , 9 , 11 , 13 , 12 , 12 ,
6 , 0 , 4 , 10 , 8 , 0 , 11 , 0 , 0 , 0 , 0 , 0 , 15 , 0 , 15 , 0 ,
},
. max_mem = 0xffffffff , // XXX actually first 62 GB ok
. default_cpu_model = "TI SuperSparc II" ,
},
641
642
643
};
/* SPARCstation 5 hardware initialisation */
644
645
646
647
static void ss5_init ( int RAM_size , int vga_ram_size ,
const char * boot_device , DisplayState * ds ,
const char * kernel_filename , const char * kernel_cmdline ,
const char * initrd_filename , const char * cpu_model )
648
{
649
650
sun4m_hw_init ( & hwdefs [ 0 ], RAM_size , boot_device , ds , kernel_filename ,
kernel_cmdline , initrd_filename , cpu_model );
651
}
652
653
/* SPARCstation 10 hardware initialisation */
654
655
656
657
static void ss10_init ( int RAM_size , int vga_ram_size ,
const char * boot_device , DisplayState * ds ,
const char * kernel_filename , const char * kernel_cmdline ,
const char * initrd_filename , const char * cpu_model )
658
{
659
660
sun4m_hw_init ( & hwdefs [ 1 ], RAM_size , boot_device , ds , kernel_filename ,
kernel_cmdline , initrd_filename , cpu_model );
661
662
}
663
/* SPARCserver 600MP hardware initialisation */
664
665
static void ss600mp_init ( int RAM_size , int vga_ram_size ,
const char * boot_device , DisplayState * ds ,
666
667
668
const char * kernel_filename , const char * kernel_cmdline ,
const char * initrd_filename , const char * cpu_model )
{
669
670
sun4m_hw_init ( & hwdefs [ 2 ], RAM_size , boot_device , ds , kernel_filename ,
kernel_cmdline , initrd_filename , cpu_model );
671
672
}
673
674
675
676
677
678
679
680
681
682
/* SPARCstation 20 hardware initialisation */
static void ss20_init ( int RAM_size , int vga_ram_size ,
const char * boot_device , DisplayState * ds ,
const char * kernel_filename , const char * kernel_cmdline ,
const char * initrd_filename , const char * cpu_model )
{
sun4m_hw_init ( & hwdefs [ 3 ], RAM_size , boot_device , ds , kernel_filename ,
kernel_cmdline , initrd_filename , cpu_model );
}
683
684
685
686
QEMUMachine ss5_machine = {
"SS-5" ,
"Sun4m platform, SPARCstation 5" ,
ss5_init ,
687
};
688
689
690
691
692
693
QEMUMachine ss10_machine = {
"SS-10" ,
"Sun4m platform, SPARCstation 10" ,
ss10_init ,
};
694
695
696
697
698
699
QEMUMachine ss600mp_machine = {
"SS-600MP" ,
"Sun4m platform, SPARCserver 600MP" ,
ss600mp_init ,
};
700
701
702
703
704
705
706
QEMUMachine ss20_machine = {
"SS-20" ,
"Sun4m platform, SPARCstation 20" ,
ss20_init ,
};