Statistics
| Branch: | Revision:

root / hw / pc.c @ c5d6edc3

History | View | Annotate | Download (25.2 kB)

1
/*
2
 * QEMU PC System Emulator
3
 * 
4
 * Copyright (c) 2003-2004 Fabrice Bellard
5
 * 
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:
12
 *
13
 * The above copyright notice and this permission notice shall be included in
14
 * all copies or substantial portions of the Software.
15
 *
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
22
 * THE SOFTWARE.
23
 */
24
#include "vl.h"
25

    
26
/* output Bochs bios info messages */
27
//#define DEBUG_BIOS
28

    
29
#define BIOS_FILENAME "bios.bin"
30
#define VGABIOS_FILENAME "vgabios.bin"
31
#define VGABIOS_CIRRUS_FILENAME "vgabios-cirrus.bin"
32
#define LINUX_BOOT_FILENAME "linux_boot.bin"
33

    
34
#define KERNEL_LOAD_ADDR     0x00100000
35
#define INITRD_LOAD_ADDR     0x00600000
36
#define KERNEL_PARAMS_ADDR   0x00090000
37
#define KERNEL_CMDLINE_ADDR  0x00099000
38

    
39
static fdctrl_t *floppy_controller;
40
static RTCState *rtc_state;
41
static PITState *pit;
42
static IOAPICState *ioapic;
43

    
44
static void ioport80_write(void *opaque, uint32_t addr, uint32_t data)
45
{
46
}
47

    
48
/* MSDOS compatibility mode FPU exception support */
49
/* XXX: add IGNNE support */
50
void cpu_set_ferr(CPUX86State *s)
51
{
52
    pic_set_irq(13, 1);
53
}
54

    
55
static void ioportF0_write(void *opaque, uint32_t addr, uint32_t data)
56
{
57
    pic_set_irq(13, 0);
58
}
59

    
60
/* TSC handling */
61

    
62
uint64_t cpu_get_tsc(CPUX86State *env)
63
{
64
    return qemu_get_clock(vm_clock);
65
}
66

    
67
/* IRQ handling */
68
int cpu_get_pic_interrupt(CPUState *env)
69
{
70
    int intno;
71

    
72
    intno = apic_get_interrupt(env);
73
    if (intno >= 0) {
74
        /* set irq request if a PIC irq is still pending */
75
        /* XXX: improve that */
76
        pic_update_irq(isa_pic); 
77
        return intno;
78
    }
79
    /* read the irq from the PIC */
80
    intno = pic_read_irq(isa_pic);
81
    return intno;
82
}
83

    
84
static void pic_irq_request(void *opaque, int level)
85
{
86
    CPUState *env = opaque;
87
    if (level)
88
        cpu_interrupt(env, CPU_INTERRUPT_HARD);
89
    else
90
        cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
91
}
92

    
93
/* PC cmos mappings */
94

    
95
#define REG_EQUIPMENT_BYTE          0x14
96
#define REG_IBM_CENTURY_BYTE        0x32
97
#define REG_IBM_PS2_CENTURY_BYTE    0x37
98

    
99

    
100
static inline int to_bcd(RTCState *s, int a)
101
{
102
    return ((a / 10) << 4) | (a % 10);
103
}
104

    
105
static int cmos_get_fd_drive_type(int fd0)
106
{
107
    int val;
108

    
109
    switch (fd0) {
110
    case 0:
111
        /* 1.44 Mb 3"5 drive */
112
        val = 4;
113
        break;
114
    case 1:
115
        /* 2.88 Mb 3"5 drive */
116
        val = 5;
117
        break;
118
    case 2:
119
        /* 1.2 Mb 5"5 drive */
120
        val = 2;
121
        break;
122
    default:
123
        val = 0;
124
        break;
125
    }
126
    return val;
127
}
128

    
129
static void cmos_init_hd(int type_ofs, int info_ofs, BlockDriverState *hd) 
130
{
131
    RTCState *s = rtc_state;
132
    int cylinders, heads, sectors;
133
    bdrv_get_geometry_hint(hd, &cylinders, &heads, &sectors);
134
    rtc_set_memory(s, type_ofs, 47);
135
    rtc_set_memory(s, info_ofs, cylinders);
136
    rtc_set_memory(s, info_ofs + 1, cylinders >> 8);
137
    rtc_set_memory(s, info_ofs + 2, heads);
138
    rtc_set_memory(s, info_ofs + 3, 0xff);
139
    rtc_set_memory(s, info_ofs + 4, 0xff);
140
    rtc_set_memory(s, info_ofs + 5, 0xc0 | ((heads > 8) << 3));
141
    rtc_set_memory(s, info_ofs + 6, cylinders);
142
    rtc_set_memory(s, info_ofs + 7, cylinders >> 8);
143
    rtc_set_memory(s, info_ofs + 8, sectors);
144
}
145

    
146
/* hd_table must contain 4 block drivers */
147
static void cmos_init(int ram_size, int boot_device, BlockDriverState **hd_table)
148
{
149
    RTCState *s = rtc_state;
150
    int val;
151
    int fd0, fd1, nb;
152
    time_t ti;
153
    struct tm *tm;
154
    int i;
155

    
156
    /* set the CMOS date */
157
    time(&ti);
158
    if (rtc_utc)
159
        tm = gmtime(&ti);
160
    else
161
        tm = localtime(&ti);
162
    rtc_set_date(s, tm);
163

    
164
    val = to_bcd(s, (tm->tm_year / 100) + 19);
165
    rtc_set_memory(s, REG_IBM_CENTURY_BYTE, val);
166
    rtc_set_memory(s, REG_IBM_PS2_CENTURY_BYTE, val);
167

    
168
    /* various important CMOS locations needed by PC/Bochs bios */
169

    
170
    /* memory size */
171
    val = 640; /* base memory in K */
172
    rtc_set_memory(s, 0x15, val);
173
    rtc_set_memory(s, 0x16, val >> 8);
174

    
175
    val = (ram_size / 1024) - 1024;
176
    if (val > 65535)
177
        val = 65535;
178
    rtc_set_memory(s, 0x17, val);
179
    rtc_set_memory(s, 0x18, val >> 8);
180
    rtc_set_memory(s, 0x30, val);
181
    rtc_set_memory(s, 0x31, val >> 8);
182

    
183
    if (ram_size > (16 * 1024 * 1024))
184
        val = (ram_size / 65536) - ((16 * 1024 * 1024) / 65536);
185
    else
186
        val = 0;
187
    if (val > 65535)
188
        val = 65535;
189
    rtc_set_memory(s, 0x34, val);
190
    rtc_set_memory(s, 0x35, val >> 8);
191
    
192
    switch(boot_device) {
193
    case 'a':
194
    case 'b':
195
        rtc_set_memory(s, 0x3d, 0x01); /* floppy boot */
196
        if (!fd_bootchk)
197
            rtc_set_memory(s, 0x38, 0x01); /* disable signature check */
198
        break;
199
    default:
200
    case 'c':
201
        rtc_set_memory(s, 0x3d, 0x02); /* hard drive boot */
202
        break;
203
    case 'd':
204
        rtc_set_memory(s, 0x3d, 0x03); /* CD-ROM boot */
205
        break;
206
    }
207

    
208
    /* floppy type */
209

    
210
    fd0 = fdctrl_get_drive_type(floppy_controller, 0);
211
    fd1 = fdctrl_get_drive_type(floppy_controller, 1);
212

    
213
    val = (cmos_get_fd_drive_type(fd0) << 4) | cmos_get_fd_drive_type(fd1);
214
    rtc_set_memory(s, 0x10, val);
215
    
216
    val = 0;
217
    nb = 0;
218
    if (fd0 < 3)
219
        nb++;
220
    if (fd1 < 3)
221
        nb++;
222
    switch (nb) {
223
    case 0:
224
        break;
225
    case 1:
226
        val |= 0x01; /* 1 drive, ready for boot */
227
        break;
228
    case 2:
229
        val |= 0x41; /* 2 drives, ready for boot */
230
        break;
231
    }
232
    val |= 0x02; /* FPU is there */
233
    val |= 0x04; /* PS/2 mouse installed */
234
    rtc_set_memory(s, REG_EQUIPMENT_BYTE, val);
235

    
236
    /* hard drives */
237

    
238
    rtc_set_memory(s, 0x12, (hd_table[0] ? 0xf0 : 0) | (hd_table[1] ? 0x0f : 0));
239
    if (hd_table[0])
240
        cmos_init_hd(0x19, 0x1b, hd_table[0]);
241
    if (hd_table[1]) 
242
        cmos_init_hd(0x1a, 0x24, hd_table[1]);
243

    
244
    val = 0;
245
    for (i = 0; i < 4; i++) {
246
        if (hd_table[i]) {
247
            int cylinders, heads, sectors, translation;
248
            /* NOTE: bdrv_get_geometry_hint() returns the physical
249
                geometry.  It is always such that: 1 <= sects <= 63, 1
250
                <= heads <= 16, 1 <= cylinders <= 16383. The BIOS
251
                geometry can be different if a translation is done. */
252
            translation = bdrv_get_translation_hint(hd_table[i]);
253
            if (translation == BIOS_ATA_TRANSLATION_AUTO) {
254
                bdrv_get_geometry_hint(hd_table[i], &cylinders, &heads, &sectors);
255
                if (cylinders <= 1024 && heads <= 16 && sectors <= 63) {
256
                    /* No translation. */
257
                    translation = 0;
258
                } else {
259
                    /* LBA translation. */
260
                    translation = 1;
261
                }
262
            } else {
263
                translation--;
264
            }
265
            val |= translation << (i * 2);
266
        }
267
    }
268
    rtc_set_memory(s, 0x39, val);
269
}
270

    
271
void ioport_set_a20(int enable)
272
{
273
    /* XXX: send to all CPUs ? */
274
    cpu_x86_set_a20(first_cpu, enable);
275
}
276

    
277
int ioport_get_a20(void)
278
{
279
    return ((first_cpu->a20_mask >> 20) & 1);
280
}
281

    
282
static void ioport92_write(void *opaque, uint32_t addr, uint32_t val)
283
{
284
    ioport_set_a20((val >> 1) & 1);
285
    /* XXX: bit 0 is fast reset */
286
}
287

    
288
static uint32_t ioport92_read(void *opaque, uint32_t addr)
289
{
290
    return ioport_get_a20() << 1;
291
}
292

    
293
/***********************************************************/
294
/* Bochs BIOS debug ports */
295

    
296
void bochs_bios_write(void *opaque, uint32_t addr, uint32_t val)
297
{
298
    static const char shutdown_str[8] = "Shutdown";
299
    static int shutdown_index = 0;
300
    
301
    switch(addr) {
302
        /* Bochs BIOS messages */
303
    case 0x400:
304
    case 0x401:
305
        fprintf(stderr, "BIOS panic at rombios.c, line %d\n", val);
306
        exit(1);
307
    case 0x402:
308
    case 0x403:
309
#ifdef DEBUG_BIOS
310
        fprintf(stderr, "%c", val);
311
#endif
312
        break;
313
    case 0x8900:
314
        /* same as Bochs power off */
315
        if (val == shutdown_str[shutdown_index]) {
316
            shutdown_index++;
317
            if (shutdown_index == 8) {
318
                shutdown_index = 0;
319
                qemu_system_shutdown_request();
320
            }
321
        } else {
322
            shutdown_index = 0;
323
        }
324
        break;
325

    
326
        /* LGPL'ed VGA BIOS messages */
327
    case 0x501:
328
    case 0x502:
329
        fprintf(stderr, "VGA BIOS panic, line %d\n", val);
330
        exit(1);
331
    case 0x500:
332
    case 0x503:
333
#ifdef DEBUG_BIOS
334
        fprintf(stderr, "%c", val);
335
#endif
336
        break;
337
    }
338
}
339

    
340
void bochs_bios_init(void)
341
{
342
    register_ioport_write(0x400, 1, 2, bochs_bios_write, NULL);
343
    register_ioport_write(0x401, 1, 2, bochs_bios_write, NULL);
344
    register_ioport_write(0x402, 1, 1, bochs_bios_write, NULL);
345
    register_ioport_write(0x403, 1, 1, bochs_bios_write, NULL);
346
    register_ioport_write(0x8900, 1, 1, bochs_bios_write, NULL);
347

    
348
    register_ioport_write(0x501, 1, 2, bochs_bios_write, NULL);
349
    register_ioport_write(0x502, 1, 2, bochs_bios_write, NULL);
350
    register_ioport_write(0x500, 1, 1, bochs_bios_write, NULL);
351
    register_ioport_write(0x503, 1, 1, bochs_bios_write, NULL);
352
}
353

    
354

    
355
int load_kernel(const char *filename, uint8_t *addr, 
356
                uint8_t *real_addr)
357
{
358
    int fd, size;
359
    int setup_sects;
360

    
361
    fd = open(filename, O_RDONLY | O_BINARY);
362
    if (fd < 0)
363
        return -1;
364

    
365
    /* load 16 bit code */
366
    if (read(fd, real_addr, 512) != 512)
367
        goto fail;
368
    setup_sects = real_addr[0x1F1];
369
    if (!setup_sects)
370
        setup_sects = 4;
371
    if (read(fd, real_addr + 512, setup_sects * 512) != 
372
        setup_sects * 512)
373
        goto fail;
374
    
375
    /* load 32 bit code */
376
    size = read(fd, addr, 16 * 1024 * 1024);
377
    if (size < 0)
378
        goto fail;
379
    close(fd);
380
    return size;
381
 fail:
382
    close(fd);
383
    return -1;
384
}
385

    
386
static void main_cpu_reset(void *opaque)
387
{
388
    CPUState *env = opaque;
389
    cpu_reset(env);
390
}
391

    
392
/*************************************************/
393

    
394
static void putb(uint8_t **pp, int val)
395
{
396
    uint8_t *q;
397
    q = *pp;
398
    *q++ = val;
399
    *pp = q;
400
}
401

    
402
static void putstr(uint8_t **pp, const char *str)
403
{
404
    uint8_t *q;
405
    q = *pp;
406
    while (*str)
407
        *q++ = *str++;
408
    *pp = q;
409
}
410

    
411
static void putle16(uint8_t **pp, int val)
412
{
413
    uint8_t *q;
414
    q = *pp;
415
    *q++ = val;
416
    *q++ = val >> 8;
417
    *pp = q;
418
}
419

    
420
static void putle32(uint8_t **pp, int val)
421
{
422
    uint8_t *q;
423
    q = *pp;
424
    *q++ = val;
425
    *q++ = val >> 8;
426
    *q++ = val >> 16;
427
    *q++ = val >> 24;
428
    *pp = q;
429
}
430

    
431
static int mpf_checksum(const uint8_t *data, int len)
432
{
433
    int sum, i;
434
    sum = 0;
435
    for(i = 0; i < len; i++)
436
        sum += data[i];
437
    return sum & 0xff;
438
}
439

    
440
/* Build the Multi Processor table in the BIOS. Same values as Bochs. */
441
static void bios_add_mptable(uint8_t *bios_data)
442
{
443
    uint8_t *mp_config_table, *q, *float_pointer_struct;
444
    int ioapic_id, offset, i, len;
445
    
446
    if (smp_cpus <= 1)
447
        return;
448

    
449
    mp_config_table = bios_data + 0xb000;
450
    q = mp_config_table;
451
    putstr(&q, "PCMP"); /* "PCMP signature */
452
    putle16(&q, 0); /* table length (patched later) */
453
    putb(&q, 4); /* spec rev */
454
    putb(&q, 0); /* checksum (patched later) */
455
    putstr(&q, "QEMUCPU "); /* OEM id */
456
    putstr(&q, "0.1         "); /* vendor id */
457
    putle32(&q, 0); /* OEM table ptr */
458
    putle16(&q, 0); /* OEM table size */
459
    putle16(&q, 20); /* entry count */
460
    putle32(&q, 0xfee00000); /* local APIC addr */
461
    putle16(&q, 0); /* ext table length */
462
    putb(&q, 0); /* ext table checksum */
463
    putb(&q, 0); /* reserved */
464
    
465
    for(i = 0; i < smp_cpus; i++) {
466
        putb(&q, 0); /* entry type = processor */
467
        putb(&q, i); /* APIC id */
468
        putb(&q, 0x11); /* local APIC version number */
469
        if (i == 0)
470
            putb(&q, 3); /* cpu flags: enabled, bootstrap cpu */
471
        else
472
            putb(&q, 1); /* cpu flags: enabled */
473
        putb(&q, 0); /* cpu signature */
474
        putb(&q, 6);
475
        putb(&q, 0);
476
        putb(&q, 0);
477
        putle16(&q, 0x201); /* feature flags */
478
        putle16(&q, 0);
479

    
480
        putle16(&q, 0); /* reserved */
481
        putle16(&q, 0);
482
        putle16(&q, 0);
483
        putle16(&q, 0);
484
    }
485

    
486
    /* isa bus */
487
    putb(&q, 1); /* entry type = bus */
488
    putb(&q, 0); /* bus ID */
489
    putstr(&q, "ISA   ");
490
    
491
    /* ioapic */
492
    ioapic_id = smp_cpus;
493
    putb(&q, 2); /* entry type = I/O APIC */
494
    putb(&q, ioapic_id); /* apic ID */
495
    putb(&q, 0x11); /* I/O APIC version number */
496
    putb(&q, 1); /* enable */
497
    putle32(&q, 0xfec00000); /* I/O APIC addr */
498

    
499
    /* irqs */
500
    for(i = 0; i < 16; i++) {
501
        putb(&q, 3); /* entry type = I/O interrupt */
502
        putb(&q, 0); /* interrupt type = vectored interrupt */
503
        putb(&q, 0); /* flags: po=0, el=0 */
504
        putb(&q, 0);
505
        putb(&q, 0); /* source bus ID = ISA */
506
        putb(&q, i); /* source bus IRQ */
507
        putb(&q, ioapic_id); /* dest I/O APIC ID */
508
        putb(&q, i); /* dest I/O APIC interrupt in */
509
    }
510
    /* patch length */
511
    len = q - mp_config_table;
512
    mp_config_table[4] = len;
513
    mp_config_table[5] = len >> 8;
514

    
515
    mp_config_table[7] = -mpf_checksum(mp_config_table, q - mp_config_table);
516

    
517
    /* align to 16 */
518
    offset = q - bios_data;
519
    offset = (offset + 15) & ~15;
520
    float_pointer_struct = bios_data + offset;
521
    
522
    /* floating pointer structure */
523
    q = float_pointer_struct;
524
    putstr(&q, "_MP_");
525
    /* pointer to MP config table */
526
    putle32(&q, mp_config_table - bios_data + 0x000f0000); 
527

    
528
    putb(&q, 1); /* length in 16 byte units */
529
    putb(&q, 4); /* MP spec revision */
530
    putb(&q, 0); /* checksum (patched later) */
531
    putb(&q, 0); /* MP feature byte 1 */
532

    
533
    putb(&q, 0);
534
    putb(&q, 0);
535
    putb(&q, 0);
536
    putb(&q, 0);
537
    float_pointer_struct[10] = 
538
        -mpf_checksum(float_pointer_struct, q - float_pointer_struct);
539
}
540

    
541

    
542
static const int ide_iobase[2] = { 0x1f0, 0x170 };
543
static const int ide_iobase2[2] = { 0x3f6, 0x376 };
544
static const int ide_irq[2] = { 14, 15 };
545

    
546
#define NE2000_NB_MAX 6
547

    
548
static int ne2000_io[NE2000_NB_MAX] = { 0x300, 0x320, 0x340, 0x360, 0x280, 0x380 };
549
static int ne2000_irq[NE2000_NB_MAX] = { 9, 10, 11, 3, 4, 5 };
550

    
551
static int serial_io[MAX_SERIAL_PORTS] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 };
552
static int serial_irq[MAX_SERIAL_PORTS] = { 4, 3, 4, 3 };
553

    
554
static int parallel_io[MAX_PARALLEL_PORTS] = { 0x378, 0x278, 0x3bc };
555
static int parallel_irq[MAX_PARALLEL_PORTS] = { 7, 7, 7 };
556

    
557
#ifdef HAS_AUDIO
558
static void audio_init (PCIBus *pci_bus)
559
{
560
    struct soundhw *c;
561
    int audio_enabled = 0;
562

    
563
    for (c = soundhw; !audio_enabled && c->name; ++c) {
564
        audio_enabled = c->enabled;
565
    }
566

    
567
    if (audio_enabled) {
568
        AudioState *s;
569

    
570
        s = AUD_init ();
571
        if (s) {
572
            for (c = soundhw; c->name; ++c) {
573
                if (c->enabled) {
574
                    if (c->isa) {
575
                        c->init.init_isa (s);
576
                    }
577
                    else {
578
                        if (pci_bus) {
579
                            c->init.init_pci (pci_bus, s);
580
                        }
581
                    }
582
                }
583
            }
584
        }
585
    }
586
}
587
#endif
588

    
589
static void pc_init_ne2k_isa(NICInfo *nd)
590
{
591
    static int nb_ne2k = 0;
592

    
593
    if (nb_ne2k == NE2000_NB_MAX)
594
        return;
595
    isa_ne2000_init(ne2000_io[nb_ne2k], ne2000_irq[nb_ne2k], nd);
596
    nb_ne2k++;
597
}
598

    
599
/* PC hardware initialisation */
600
static void pc_init1(int ram_size, int vga_ram_size, int boot_device,
601
                     DisplayState *ds, const char **fd_filename, int snapshot,
602
                     const char *kernel_filename, const char *kernel_cmdline,
603
                     const char *initrd_filename,
604
                     int pci_enabled)
605
{
606
    char buf[1024];
607
    int ret, linux_boot, initrd_size, i;
608
    unsigned long bios_offset, vga_bios_offset;
609
    int bios_size, isa_bios_size;
610
    PCIBus *pci_bus;
611
    int piix3_devfn = -1;
612
    CPUState *env;
613
    NICInfo *nd;
614

    
615
    linux_boot = (kernel_filename != NULL);
616

    
617
    /* init CPUs */
618
    for(i = 0; i < smp_cpus; i++) {
619
        env = cpu_init();
620
        if (i != 0)
621
            env->hflags |= HF_HALTED_MASK;
622
        if (smp_cpus > 1) {
623
            /* XXX: enable it in all cases */
624
            env->cpuid_features |= CPUID_APIC;
625
        }
626
        register_savevm("cpu", i, 3, cpu_save, cpu_load, env);
627
        qemu_register_reset(main_cpu_reset, env);
628
        if (pci_enabled) {
629
            apic_init(env);
630
        }
631
    }
632

    
633
    /* allocate RAM */
634
    cpu_register_physical_memory(0, ram_size, 0);
635

    
636
    /* BIOS load */
637
    bios_offset = ram_size + vga_ram_size;
638
    vga_bios_offset = bios_offset + 256 * 1024;
639

    
640
    snprintf(buf, sizeof(buf), "%s/%s", bios_dir, BIOS_FILENAME);
641
    bios_size = get_image_size(buf);
642
    if (bios_size <= 0 || 
643
        (bios_size % 65536) != 0 ||
644
        bios_size > (256 * 1024)) {
645
        goto bios_error;
646
    }
647
    ret = load_image(buf, phys_ram_base + bios_offset);
648
    if (ret != bios_size) {
649
    bios_error:
650
        fprintf(stderr, "qemu: could not load PC bios '%s'\n", buf);
651
        exit(1);
652
    }
653
    if (bios_size == 65536) {
654
        bios_add_mptable(phys_ram_base + bios_offset);
655
    }
656

    
657
    /* VGA BIOS load */
658
    if (cirrus_vga_enabled) {
659
        snprintf(buf, sizeof(buf), "%s/%s", bios_dir, VGABIOS_CIRRUS_FILENAME);
660
    } else {
661
        snprintf(buf, sizeof(buf), "%s/%s", bios_dir, VGABIOS_FILENAME);
662
    }
663
    ret = load_image(buf, phys_ram_base + vga_bios_offset);
664
    
665
    /* setup basic memory access */
666
    cpu_register_physical_memory(0xc0000, 0x10000, 
667
                                 vga_bios_offset | IO_MEM_ROM);
668

    
669
    /* map the last 128KB of the BIOS in ISA space */
670
    isa_bios_size = bios_size;
671
    if (isa_bios_size > (128 * 1024))
672
        isa_bios_size = 128 * 1024;
673
    cpu_register_physical_memory(0xd0000, (192 * 1024) - isa_bios_size, 
674
                                 IO_MEM_UNASSIGNED);
675
    cpu_register_physical_memory(0x100000 - isa_bios_size, 
676
                                 isa_bios_size, 
677
                                 (bios_offset + bios_size - isa_bios_size) | IO_MEM_ROM);
678
    /* map all the bios at the top of memory */
679
    cpu_register_physical_memory((uint32_t)(-bios_size), 
680
                                 bios_size, bios_offset | IO_MEM_ROM);
681
    
682
    bochs_bios_init();
683

    
684
    if (linux_boot) {
685
        uint8_t bootsect[512];
686
        uint8_t old_bootsect[512];
687

    
688
        if (bs_table[0] == NULL) {
689
            fprintf(stderr, "A disk image must be given for 'hda' when booting a Linux kernel\n");
690
            exit(1);
691
        }
692
        snprintf(buf, sizeof(buf), "%s/%s", bios_dir, LINUX_BOOT_FILENAME);
693
        ret = load_image(buf, bootsect);
694
        if (ret != sizeof(bootsect)) {
695
            fprintf(stderr, "qemu: could not load linux boot sector '%s'\n",
696
                    buf);
697
            exit(1);
698
        }
699

    
700
        if (bdrv_read(bs_table[0], 0, old_bootsect, 1) >= 0) {
701
            /* copy the MSDOS partition table */
702
            memcpy(bootsect + 0x1be, old_bootsect + 0x1be, 0x40);
703
        }
704

    
705
        bdrv_set_boot_sector(bs_table[0], bootsect, sizeof(bootsect));
706

    
707
        /* now we can load the kernel */
708
        ret = load_kernel(kernel_filename, 
709
                          phys_ram_base + KERNEL_LOAD_ADDR,
710
                          phys_ram_base + KERNEL_PARAMS_ADDR);
711
        if (ret < 0) {
712
            fprintf(stderr, "qemu: could not load kernel '%s'\n", 
713
                    kernel_filename);
714
            exit(1);
715
        }
716
        
717
        /* load initrd */
718
        initrd_size = 0;
719
        if (initrd_filename) {
720
            initrd_size = load_image(initrd_filename, phys_ram_base + INITRD_LOAD_ADDR);
721
            if (initrd_size < 0) {
722
                fprintf(stderr, "qemu: could not load initial ram disk '%s'\n", 
723
                        initrd_filename);
724
                exit(1);
725
            }
726
        }
727
        if (initrd_size > 0) {
728
            stl_raw(phys_ram_base + KERNEL_PARAMS_ADDR + 0x218, INITRD_LOAD_ADDR);
729
            stl_raw(phys_ram_base + KERNEL_PARAMS_ADDR + 0x21c, initrd_size);
730
        }
731
        pstrcpy(phys_ram_base + KERNEL_CMDLINE_ADDR, 4096,
732
                kernel_cmdline);
733
        stw_raw(phys_ram_base + KERNEL_PARAMS_ADDR + 0x20, 0xA33F);
734
        stw_raw(phys_ram_base + KERNEL_PARAMS_ADDR + 0x22,
735
                KERNEL_CMDLINE_ADDR - KERNEL_PARAMS_ADDR);
736
        /* loader type */
737
        stw_raw(phys_ram_base + KERNEL_PARAMS_ADDR + 0x210, 0x01);
738
    }
739

    
740
    if (pci_enabled) {
741
        pci_bus = i440fx_init();
742
        piix3_devfn = piix3_init(pci_bus);
743
    } else {
744
        pci_bus = NULL;
745
    }
746

    
747
    /* init basic PC hardware */
748
    register_ioport_write(0x80, 1, 1, ioport80_write, NULL);
749

    
750
    register_ioport_write(0xf0, 1, 1, ioportF0_write, NULL);
751

    
752
    if (cirrus_vga_enabled) {
753
        if (pci_enabled) {
754
            pci_cirrus_vga_init(pci_bus, 
755
                                ds, phys_ram_base + ram_size, ram_size, 
756
                                vga_ram_size);
757
        } else {
758
            isa_cirrus_vga_init(ds, phys_ram_base + ram_size, ram_size, 
759
                                vga_ram_size);
760
        }
761
    } else {
762
        vga_initialize(pci_bus, ds, phys_ram_base + ram_size, ram_size, 
763
                       vga_ram_size, 0, 0);
764
    }
765

    
766
    rtc_state = rtc_init(0x70, 8);
767

    
768
    register_ioport_read(0x92, 1, 1, ioport92_read, NULL);
769
    register_ioport_write(0x92, 1, 1, ioport92_write, NULL);
770

    
771
    if (pci_enabled) {
772
        ioapic = ioapic_init();
773
    }
774
    isa_pic = pic_init(pic_irq_request, first_cpu);
775
    pit = pit_init(0x40, 0);
776
    pcspk_init(pit);
777
    if (pci_enabled) {
778
        pic_set_alt_irq_func(isa_pic, ioapic_set_irq, ioapic);
779
    }
780

    
781
    for(i = 0; i < MAX_SERIAL_PORTS; i++) {
782
        if (serial_hds[i]) {
783
            serial_init(&pic_set_irq_new, isa_pic,
784
                        serial_io[i], serial_irq[i], serial_hds[i]);
785
        }
786
    }
787

    
788
    for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
789
        if (parallel_hds[i]) {
790
            parallel_init(parallel_io[i], parallel_irq[i], parallel_hds[i]);
791
        }
792
    }
793

    
794
    for(i = 0; i < nb_nics; i++) {
795
        nd = &nd_table[i];
796
        if (!nd->model) {
797
            if (pci_enabled) {
798
                nd->model = "ne2k_pci";
799
            } else {
800
                nd->model = "ne2k_isa";
801
            }
802
        }
803
        if (strcmp(nd->model, "ne2k_isa") == 0) {
804
            pc_init_ne2k_isa(nd);
805
        } else if (pci_enabled) {
806
            pci_nic_init(pci_bus, nd);
807
        } else {
808
            fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd->model);
809
            exit(1);
810
        }
811
    }
812

    
813
    if (pci_enabled) {
814
        pci_piix3_ide_init(pci_bus, bs_table, piix3_devfn + 1);
815
    } else {
816
        for(i = 0; i < 2; i++) {
817
            isa_ide_init(ide_iobase[i], ide_iobase2[i], ide_irq[i],
818
                         bs_table[2 * i], bs_table[2 * i + 1]);
819
        }
820
    }
821

    
822
    kbd_init();
823
    DMA_init(0);
824
#ifdef HAS_AUDIO
825
    audio_init(pci_enabled ? pci_bus : NULL);
826
#endif
827

    
828
    floppy_controller = fdctrl_init(6, 2, 0, 0x3f0, fd_table);
829

    
830
    cmos_init(ram_size, boot_device, bs_table);
831

    
832
    if (pci_enabled && usb_enabled) {
833
        usb_uhci_init(pci_bus, piix3_devfn + 2);
834
    }
835

    
836
    if (pci_enabled && acpi_enabled) {
837
        piix4_pm_init(pci_bus, piix3_devfn + 3);
838
    }
839

    
840
#if 0
841
    /* ??? Need to figure out some way for the user to
842
       specify SCSI devices.  */
843
    if (pci_enabled) {
844
        void *scsi;
845
        BlockDriverState *bdrv;
846

847
        scsi = lsi_scsi_init(pci_bus, -1);
848
        bdrv = bdrv_new("scsidisk");
849
        bdrv_open(bdrv, "scsi_disk.img", 0);
850
        lsi_scsi_attach(scsi, bdrv, -1);
851
        bdrv = bdrv_new("scsicd");
852
        bdrv_open(bdrv, "scsi_cd.iso", 0);
853
        bdrv_set_type_hint(bdrv, BDRV_TYPE_CDROM);
854
        lsi_scsi_attach(scsi, bdrv, -1);
855
    }
856
#endif
857
    /* must be done after all PCI devices are instanciated */
858
    /* XXX: should be done in the Bochs BIOS */
859
    if (pci_enabled) {
860
        pci_bios_init();
861
        if (acpi_enabled)
862
            acpi_bios_init();
863
    }
864
}
865

    
866
static void pc_init_pci(int ram_size, int vga_ram_size, int boot_device,
867
                        DisplayState *ds, const char **fd_filename, 
868
                        int snapshot, 
869
                        const char *kernel_filename, 
870
                        const char *kernel_cmdline,
871
                        const char *initrd_filename)
872
{
873
    pc_init1(ram_size, vga_ram_size, boot_device,
874
             ds, fd_filename, snapshot,
875
             kernel_filename, kernel_cmdline,
876
             initrd_filename, 1);
877
}
878

    
879
static void pc_init_isa(int ram_size, int vga_ram_size, int boot_device,
880
                        DisplayState *ds, const char **fd_filename, 
881
                        int snapshot, 
882
                        const char *kernel_filename, 
883
                        const char *kernel_cmdline,
884
                        const char *initrd_filename)
885
{
886
    pc_init1(ram_size, vga_ram_size, boot_device,
887
             ds, fd_filename, snapshot,
888
             kernel_filename, kernel_cmdline,
889
             initrd_filename, 0);
890
}
891

    
892
QEMUMachine pc_machine = {
893
    "pc",
894
    "Standard PC",
895
    pc_init_pci,
896
};
897

    
898
QEMUMachine isapc_machine = {
899
    "isapc",
900
    "ISA-only PC",
901
    pc_init_isa,
902
};