]> git.proxmox.com Git - mirror_qemu.git/blame - hw/pc.c
gcc4 warning (Paul Brook)
[mirror_qemu.git] / hw / pc.c
CommitLineData
80cabfad
FB
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 */
80cabfad
FB
24#include "vl.h"
25
b41a2cd1
FB
26/* output Bochs bios info messages */
27//#define DEBUG_BIOS
28
80cabfad
FB
29#define BIOS_FILENAME "bios.bin"
30#define VGABIOS_FILENAME "vgabios.bin"
de9258a8 31#define VGABIOS_CIRRUS_FILENAME "vgabios-cirrus.bin"
80cabfad
FB
32#define LINUX_BOOT_FILENAME "linux_boot.bin"
33
34#define KERNEL_LOAD_ADDR 0x00100000
35#define INITRD_LOAD_ADDR 0x00400000
36#define KERNEL_PARAMS_ADDR 0x00090000
37#define KERNEL_CMDLINE_ADDR 0x00099000
38
39int speaker_data_on;
40int dummy_refresh_clock;
baca51fa 41static fdctrl_t *floppy_controller;
b0a21b53 42static RTCState *rtc_state;
ec844b96 43static PITState *pit;
d592d303 44static IOAPICState *ioapic;
80cabfad 45
b41a2cd1 46static void ioport80_write(void *opaque, uint32_t addr, uint32_t data)
80cabfad
FB
47{
48}
49
f929aad6
FB
50/* MSDOS compatibility mode FPU exception support */
51/* XXX: add IGNNE support */
52void cpu_set_ferr(CPUX86State *s)
53{
54 pic_set_irq(13, 1);
55}
56
57static void ioportF0_write(void *opaque, uint32_t addr, uint32_t data)
58{
59 pic_set_irq(13, 0);
60}
61
28ab0e2e
FB
62/* TSC handling */
63
64uint64_t cpu_get_tsc(CPUX86State *env)
65{
66 return qemu_get_clock(vm_clock);
67}
68
3de388f6
FB
69/* IRQ handling */
70int cpu_get_pic_interrupt(CPUState *env)
71{
72 int intno;
73
3de388f6
FB
74 intno = apic_get_interrupt(env);
75 if (intno >= 0) {
76 /* set irq request if a PIC irq is still pending */
77 /* XXX: improve that */
78 pic_update_irq(isa_pic);
79 return intno;
80 }
3de388f6
FB
81 /* read the irq from the PIC */
82 intno = pic_read_irq(isa_pic);
83 return intno;
84}
85
86static void pic_irq_request(void *opaque, int level)
87{
88 if (level)
89 cpu_interrupt(cpu_single_env, CPU_INTERRUPT_HARD);
90 else
91 cpu_reset_interrupt(cpu_single_env, CPU_INTERRUPT_HARD);
92}
93
b0a21b53
FB
94/* PC cmos mappings */
95
80cabfad 96#define REG_EQUIPMENT_BYTE 0x14
b0a21b53
FB
97#define REG_IBM_CENTURY_BYTE 0x32
98#define REG_IBM_PS2_CENTURY_BYTE 0x37
99
100
101static inline int to_bcd(RTCState *s, int a)
102{
103 return ((a / 10) << 4) | (a % 10);
104}
80cabfad 105
777428f2
FB
106static int cmos_get_fd_drive_type(int fd0)
107{
108 int val;
109
110 switch (fd0) {
111 case 0:
112 /* 1.44 Mb 3"5 drive */
113 val = 4;
114 break;
115 case 1:
116 /* 2.88 Mb 3"5 drive */
117 val = 5;
118 break;
119 case 2:
120 /* 1.2 Mb 5"5 drive */
121 val = 2;
122 break;
123 default:
124 val = 0;
125 break;
126 }
127 return val;
128}
129
ba6c2377
FB
130static void cmos_init_hd(int type_ofs, int info_ofs, BlockDriverState *hd)
131{
132 RTCState *s = rtc_state;
133 int cylinders, heads, sectors;
134 bdrv_get_geometry_hint(hd, &cylinders, &heads, &sectors);
135 rtc_set_memory(s, type_ofs, 47);
136 rtc_set_memory(s, info_ofs, cylinders);
137 rtc_set_memory(s, info_ofs + 1, cylinders >> 8);
138 rtc_set_memory(s, info_ofs + 2, heads);
139 rtc_set_memory(s, info_ofs + 3, 0xff);
140 rtc_set_memory(s, info_ofs + 4, 0xff);
141 rtc_set_memory(s, info_ofs + 5, 0xc0 | ((heads > 8) << 3));
142 rtc_set_memory(s, info_ofs + 6, cylinders);
143 rtc_set_memory(s, info_ofs + 7, cylinders >> 8);
144 rtc_set_memory(s, info_ofs + 8, sectors);
145}
146
147/* hd_table must contain 4 block drivers */
148static void cmos_init(int ram_size, int boot_device, BlockDriverState **hd_table)
80cabfad 149{
b0a21b53 150 RTCState *s = rtc_state;
80cabfad 151 int val;
b41a2cd1 152 int fd0, fd1, nb;
b0a21b53
FB
153 time_t ti;
154 struct tm *tm;
ba6c2377 155 int i;
b0a21b53
FB
156
157 /* set the CMOS date */
158 time(&ti);
ee22c2f7
FB
159 if (rtc_utc)
160 tm = gmtime(&ti);
161 else
162 tm = localtime(&ti);
b0a21b53
FB
163 rtc_set_date(s, tm);
164
165 val = to_bcd(s, (tm->tm_year / 100) + 19);
166 rtc_set_memory(s, REG_IBM_CENTURY_BYTE, val);
167 rtc_set_memory(s, REG_IBM_PS2_CENTURY_BYTE, val);
80cabfad 168
b0a21b53 169 /* various important CMOS locations needed by PC/Bochs bios */
80cabfad
FB
170
171 /* memory size */
333190eb
FB
172 val = 640; /* base memory in K */
173 rtc_set_memory(s, 0x15, val);
174 rtc_set_memory(s, 0x16, val >> 8);
175
80cabfad
FB
176 val = (ram_size / 1024) - 1024;
177 if (val > 65535)
178 val = 65535;
b0a21b53
FB
179 rtc_set_memory(s, 0x17, val);
180 rtc_set_memory(s, 0x18, val >> 8);
181 rtc_set_memory(s, 0x30, val);
182 rtc_set_memory(s, 0x31, val >> 8);
80cabfad 183
9da98861
FB
184 if (ram_size > (16 * 1024 * 1024))
185 val = (ram_size / 65536) - ((16 * 1024 * 1024) / 65536);
186 else
187 val = 0;
80cabfad
FB
188 if (val > 65535)
189 val = 65535;
b0a21b53
FB
190 rtc_set_memory(s, 0x34, val);
191 rtc_set_memory(s, 0x35, val >> 8);
80cabfad
FB
192
193 switch(boot_device) {
194 case 'a':
195 case 'b':
b0a21b53 196 rtc_set_memory(s, 0x3d, 0x01); /* floppy boot */
80cabfad
FB
197 break;
198 default:
199 case 'c':
b0a21b53 200 rtc_set_memory(s, 0x3d, 0x02); /* hard drive boot */
80cabfad
FB
201 break;
202 case 'd':
b0a21b53 203 rtc_set_memory(s, 0x3d, 0x03); /* CD-ROM boot */
80cabfad
FB
204 break;
205 }
80cabfad 206
b41a2cd1
FB
207 /* floppy type */
208
baca51fa
FB
209 fd0 = fdctrl_get_drive_type(floppy_controller, 0);
210 fd1 = fdctrl_get_drive_type(floppy_controller, 1);
80cabfad 211
777428f2 212 val = (cmos_get_fd_drive_type(fd0) << 4) | cmos_get_fd_drive_type(fd1);
b0a21b53
FB
213 rtc_set_memory(s, 0x10, val);
214
215 val = 0;
b41a2cd1 216 nb = 0;
80cabfad
FB
217 if (fd0 < 3)
218 nb++;
219 if (fd1 < 3)
220 nb++;
221 switch (nb) {
222 case 0:
223 break;
224 case 1:
b0a21b53 225 val |= 0x01; /* 1 drive, ready for boot */
80cabfad
FB
226 break;
227 case 2:
b0a21b53 228 val |= 0x41; /* 2 drives, ready for boot */
80cabfad
FB
229 break;
230 }
b0a21b53
FB
231 val |= 0x02; /* FPU is there */
232 val |= 0x04; /* PS/2 mouse installed */
233 rtc_set_memory(s, REG_EQUIPMENT_BYTE, val);
234
ba6c2377
FB
235 /* hard drives */
236
237 rtc_set_memory(s, 0x12, (hd_table[0] ? 0xf0 : 0) | (hd_table[1] ? 0x0f : 0));
238 if (hd_table[0])
239 cmos_init_hd(0x19, 0x1b, hd_table[0]);
240 if (hd_table[1])
241 cmos_init_hd(0x1a, 0x24, hd_table[1]);
242
243 val = 0;
40b6ecc6 244 for (i = 0; i < 4; i++) {
ba6c2377 245 if (hd_table[i]) {
46d4767d
FB
246 int cylinders, heads, sectors, translation;
247 /* NOTE: bdrv_get_geometry_hint() returns the physical
248 geometry. It is always such that: 1 <= sects <= 63, 1
249 <= heads <= 16, 1 <= cylinders <= 16383. The BIOS
250 geometry can be different if a translation is done. */
251 translation = bdrv_get_translation_hint(hd_table[i]);
252 if (translation == BIOS_ATA_TRANSLATION_AUTO) {
253 bdrv_get_geometry_hint(hd_table[i], &cylinders, &heads, &sectors);
254 if (cylinders <= 1024 && heads <= 16 && sectors <= 63) {
255 /* No translation. */
256 translation = 0;
257 } else {
258 /* LBA translation. */
259 translation = 1;
260 }
40b6ecc6 261 } else {
46d4767d 262 translation--;
ba6c2377 263 }
ba6c2377
FB
264 val |= translation << (i * 2);
265 }
40b6ecc6 266 }
ba6c2377
FB
267 rtc_set_memory(s, 0x39, val);
268
269 /* Disable check of 0x55AA signature on the last two bytes of
270 first sector of disk. XXX: make it the default ? */
271 // rtc_set_memory(s, 0x38, 1);
80cabfad
FB
272}
273
b41a2cd1 274static void speaker_ioport_write(void *opaque, uint32_t addr, uint32_t val)
80cabfad
FB
275{
276 speaker_data_on = (val >> 1) & 1;
ec844b96 277 pit_set_gate(pit, 2, val & 1);
80cabfad
FB
278}
279
b41a2cd1 280static uint32_t speaker_ioport_read(void *opaque, uint32_t addr)
80cabfad
FB
281{
282 int out;
ec844b96 283 out = pit_get_out(pit, 2, qemu_get_clock(vm_clock));
80cabfad 284 dummy_refresh_clock ^= 1;
ec844b96 285 return (speaker_data_on << 1) | pit_get_gate(pit, 2) | (out << 5) |
80cabfad
FB
286 (dummy_refresh_clock << 4);
287}
288
e1a23744
FB
289static void ioport92_write(void *opaque, uint32_t addr, uint32_t val)
290{
291 cpu_x86_set_a20(cpu_single_env, (val >> 1) & 1);
292 /* XXX: bit 0 is fast reset */
293}
294
295static uint32_t ioport92_read(void *opaque, uint32_t addr)
296{
297 return ((cpu_single_env->a20_mask >> 20) & 1) << 1;
298}
299
80cabfad
FB
300/***********************************************************/
301/* Bochs BIOS debug ports */
302
b41a2cd1 303void bochs_bios_write(void *opaque, uint32_t addr, uint32_t val)
80cabfad 304{
a2f659ee
FB
305 static const char shutdown_str[8] = "Shutdown";
306 static int shutdown_index = 0;
307
80cabfad
FB
308 switch(addr) {
309 /* Bochs BIOS messages */
310 case 0x400:
311 case 0x401:
312 fprintf(stderr, "BIOS panic at rombios.c, line %d\n", val);
313 exit(1);
314 case 0x402:
315 case 0x403:
316#ifdef DEBUG_BIOS
317 fprintf(stderr, "%c", val);
318#endif
319 break;
a2f659ee
FB
320 case 0x8900:
321 /* same as Bochs power off */
322 if (val == shutdown_str[shutdown_index]) {
323 shutdown_index++;
324 if (shutdown_index == 8) {
325 shutdown_index = 0;
326 qemu_system_shutdown_request();
327 }
328 } else {
329 shutdown_index = 0;
330 }
331 break;
80cabfad
FB
332
333 /* LGPL'ed VGA BIOS messages */
334 case 0x501:
335 case 0x502:
336 fprintf(stderr, "VGA BIOS panic, line %d\n", val);
337 exit(1);
338 case 0x500:
339 case 0x503:
340#ifdef DEBUG_BIOS
341 fprintf(stderr, "%c", val);
342#endif
343 break;
344 }
345}
346
347void bochs_bios_init(void)
348{
b41a2cd1
FB
349 register_ioport_write(0x400, 1, 2, bochs_bios_write, NULL);
350 register_ioport_write(0x401, 1, 2, bochs_bios_write, NULL);
351 register_ioport_write(0x402, 1, 1, bochs_bios_write, NULL);
352 register_ioport_write(0x403, 1, 1, bochs_bios_write, NULL);
a2f659ee 353 register_ioport_write(0x8900, 1, 1, bochs_bios_write, NULL);
b41a2cd1
FB
354
355 register_ioport_write(0x501, 1, 2, bochs_bios_write, NULL);
356 register_ioport_write(0x502, 1, 2, bochs_bios_write, NULL);
357 register_ioport_write(0x500, 1, 1, bochs_bios_write, NULL);
358 register_ioport_write(0x503, 1, 1, bochs_bios_write, NULL);
80cabfad
FB
359}
360
361
362int load_kernel(const char *filename, uint8_t *addr,
363 uint8_t *real_addr)
364{
365 int fd, size;
366 int setup_sects;
367
096b7ea4 368 fd = open(filename, O_RDONLY | O_BINARY);
80cabfad
FB
369 if (fd < 0)
370 return -1;
371
372 /* load 16 bit code */
373 if (read(fd, real_addr, 512) != 512)
374 goto fail;
375 setup_sects = real_addr[0x1F1];
376 if (!setup_sects)
377 setup_sects = 4;
378 if (read(fd, real_addr + 512, setup_sects * 512) !=
379 setup_sects * 512)
380 goto fail;
381
382 /* load 32 bit code */
383 size = read(fd, addr, 16 * 1024 * 1024);
384 if (size < 0)
385 goto fail;
386 close(fd);
387 return size;
388 fail:
389 close(fd);
390 return -1;
391}
392
b41a2cd1
FB
393static const int ide_iobase[2] = { 0x1f0, 0x170 };
394static const int ide_iobase2[2] = { 0x3f6, 0x376 };
395static const int ide_irq[2] = { 14, 15 };
396
397#define NE2000_NB_MAX 6
398
8d11df9e 399static int ne2000_io[NE2000_NB_MAX] = { 0x300, 0x320, 0x340, 0x360, 0x280, 0x380 };
b41a2cd1
FB
400static int ne2000_irq[NE2000_NB_MAX] = { 9, 10, 11, 3, 4, 5 };
401
8d11df9e
FB
402static int serial_io[MAX_SERIAL_PORTS] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 };
403static int serial_irq[MAX_SERIAL_PORTS] = { 4, 3, 4, 3 };
404
6508fe59
FB
405static int parallel_io[MAX_PARALLEL_PORTS] = { 0x378, 0x278, 0x3bc };
406static int parallel_irq[MAX_PARALLEL_PORTS] = { 7, 7, 7 };
407
80cabfad 408/* PC hardware initialisation */
b5ff2d6e
FB
409static void pc_init1(int ram_size, int vga_ram_size, int boot_device,
410 DisplayState *ds, const char **fd_filename, int snapshot,
411 const char *kernel_filename, const char *kernel_cmdline,
412 const char *initrd_filename)
80cabfad
FB
413{
414 char buf[1024];
82c643ff 415 int ret, linux_boot, initrd_size, i, nb_nics1;
7587cf44
FB
416 unsigned long bios_offset, vga_bios_offset;
417 int bios_size, isa_bios_size;
46e50e9d 418 PCIBus *pci_bus;
d592d303 419
80cabfad
FB
420 linux_boot = (kernel_filename != NULL);
421
422 /* allocate RAM */
423 cpu_register_physical_memory(0, ram_size, 0);
424
425 /* BIOS load */
7587cf44
FB
426 bios_offset = ram_size + vga_ram_size;
427 vga_bios_offset = bios_offset + 256 * 1024;
428
80cabfad 429 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, BIOS_FILENAME);
7587cf44
FB
430 bios_size = get_image_size(buf);
431 if (bios_size <= 0 ||
432 (bios_size % 65536) != 0 ||
433 bios_size > (256 * 1024)) {
434 goto bios_error;
435 }
436 ret = load_image(buf, phys_ram_base + bios_offset);
437 if (ret != bios_size) {
438 bios_error:
80cabfad
FB
439 fprintf(stderr, "qemu: could not load PC bios '%s'\n", buf);
440 exit(1);
441 }
7587cf44 442
80cabfad 443 /* VGA BIOS load */
de9258a8
FB
444 if (cirrus_vga_enabled) {
445 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, VGABIOS_CIRRUS_FILENAME);
446 } else {
447 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, VGABIOS_FILENAME);
448 }
7587cf44 449 ret = load_image(buf, phys_ram_base + vga_bios_offset);
80cabfad
FB
450
451 /* setup basic memory access */
7587cf44
FB
452 cpu_register_physical_memory(0xc0000, 0x10000,
453 vga_bios_offset | IO_MEM_ROM);
454
455 /* map the last 128KB of the BIOS in ISA space */
456 isa_bios_size = bios_size;
457 if (isa_bios_size > (128 * 1024))
458 isa_bios_size = 128 * 1024;
459 cpu_register_physical_memory(0xd0000, (192 * 1024) - isa_bios_size,
460 IO_MEM_UNASSIGNED);
461 cpu_register_physical_memory(0x100000 - isa_bios_size,
462 isa_bios_size,
463 (bios_offset + bios_size - isa_bios_size) | IO_MEM_ROM);
464 /* map all the bios at the top of memory */
465 cpu_register_physical_memory((uint32_t)(-bios_size),
466 bios_size, bios_offset | IO_MEM_ROM);
80cabfad
FB
467
468 bochs_bios_init();
469
470 if (linux_boot) {
471 uint8_t bootsect[512];
41b9be47 472 uint8_t old_bootsect[512];
80cabfad
FB
473
474 if (bs_table[0] == NULL) {
475 fprintf(stderr, "A disk image must be given for 'hda' when booting a Linux kernel\n");
476 exit(1);
477 }
478 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, LINUX_BOOT_FILENAME);
479 ret = load_image(buf, bootsect);
480 if (ret != sizeof(bootsect)) {
481 fprintf(stderr, "qemu: could not load linux boot sector '%s'\n",
482 buf);
483 exit(1);
484 }
485
41b9be47
FB
486 if (bdrv_read(bs_table[0], 0, old_bootsect, 1) >= 0) {
487 /* copy the MSDOS partition table */
488 memcpy(bootsect + 0x1be, old_bootsect + 0x1be, 0x40);
489 }
490
80cabfad
FB
491 bdrv_set_boot_sector(bs_table[0], bootsect, sizeof(bootsect));
492
493 /* now we can load the kernel */
494 ret = load_kernel(kernel_filename,
495 phys_ram_base + KERNEL_LOAD_ADDR,
496 phys_ram_base + KERNEL_PARAMS_ADDR);
497 if (ret < 0) {
498 fprintf(stderr, "qemu: could not load kernel '%s'\n",
499 kernel_filename);
500 exit(1);
501 }
502
503 /* load initrd */
504 initrd_size = 0;
505 if (initrd_filename) {
506 initrd_size = load_image(initrd_filename, phys_ram_base + INITRD_LOAD_ADDR);
507 if (initrd_size < 0) {
508 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
509 initrd_filename);
510 exit(1);
511 }
512 }
513 if (initrd_size > 0) {
514 stl_raw(phys_ram_base + KERNEL_PARAMS_ADDR + 0x218, INITRD_LOAD_ADDR);
515 stl_raw(phys_ram_base + KERNEL_PARAMS_ADDR + 0x21c, initrd_size);
516 }
517 pstrcpy(phys_ram_base + KERNEL_CMDLINE_ADDR, 4096,
518 kernel_cmdline);
519 stw_raw(phys_ram_base + KERNEL_PARAMS_ADDR + 0x20, 0xA33F);
520 stw_raw(phys_ram_base + KERNEL_PARAMS_ADDR + 0x22,
521 KERNEL_CMDLINE_ADDR - KERNEL_PARAMS_ADDR);
522 /* loader type */
523 stw_raw(phys_ram_base + KERNEL_PARAMS_ADDR + 0x210, 0x01);
524 }
525
69b91039 526 if (pci_enabled) {
46e50e9d
FB
527 pci_bus = i440fx_init();
528 piix3_init(pci_bus);
529 } else {
530 pci_bus = NULL;
69b91039
FB
531 }
532
80cabfad 533 /* init basic PC hardware */
b41a2cd1 534 register_ioport_write(0x80, 1, 1, ioport80_write, NULL);
80cabfad 535
f929aad6
FB
536 register_ioport_write(0xf0, 1, 1, ioportF0_write, NULL);
537
1f04275e
FB
538 if (cirrus_vga_enabled) {
539 if (pci_enabled) {
46e50e9d
FB
540 pci_cirrus_vga_init(pci_bus,
541 ds, phys_ram_base + ram_size, ram_size,
1f04275e
FB
542 vga_ram_size);
543 } else {
544 isa_cirrus_vga_init(ds, phys_ram_base + ram_size, ram_size,
545 vga_ram_size);
546 }
547 } else {
46e50e9d 548 vga_initialize(pci_bus, ds, phys_ram_base + ram_size, ram_size,
d5295253 549 vga_ram_size, 0, 0);
1f04275e 550 }
80cabfad 551
b0a21b53 552 rtc_state = rtc_init(0x70, 8);
b41a2cd1
FB
553 register_ioport_read(0x61, 1, 1, speaker_ioport_read, NULL);
554 register_ioport_write(0x61, 1, 1, speaker_ioport_write, NULL);
80cabfad 555
e1a23744
FB
556 register_ioport_read(0x92, 1, 1, ioport92_read, NULL);
557 register_ioport_write(0x92, 1, 1, ioport92_write, NULL);
558
d592d303 559 if (pci_enabled) {
75598f61 560 apic_init(cpu_single_env);
d592d303
FB
561 ioapic = ioapic_init();
562 }
3de388f6 563 isa_pic = pic_init(pic_irq_request, cpu_single_env);
ec844b96 564 pit = pit_init(0x40, 0);
d592d303
FB
565 if (pci_enabled) {
566 pic_set_alt_irq_func(isa_pic, ioapic_set_irq, ioapic);
567 }
b41a2cd1 568
8d11df9e
FB
569 for(i = 0; i < MAX_SERIAL_PORTS; i++) {
570 if (serial_hds[i]) {
571 serial_init(serial_io[i], serial_irq[i], serial_hds[i]);
572 }
573 }
b41a2cd1 574
6508fe59
FB
575 for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
576 if (parallel_hds[i]) {
577 parallel_init(parallel_io[i], parallel_irq[i], parallel_hds[i]);
578 }
579 }
580
69b91039
FB
581 if (pci_enabled) {
582 for(i = 0; i < nb_nics; i++) {
46e50e9d 583 pci_ne2000_init(pci_bus, &nd_table[i]);
69b91039 584 }
46e50e9d 585 pci_piix3_ide_init(pci_bus, bs_table);
69b91039
FB
586 } else {
587 nb_nics1 = nb_nics;
588 if (nb_nics1 > NE2000_NB_MAX)
589 nb_nics1 = NE2000_NB_MAX;
590 for(i = 0; i < nb_nics1; i++) {
591 isa_ne2000_init(ne2000_io[i], ne2000_irq[i], &nd_table[i]);
592 }
b41a2cd1 593
69b91039
FB
594 for(i = 0; i < 2; i++) {
595 isa_ide_init(ide_iobase[i], ide_iobase2[i], ide_irq[i],
596 bs_table[2 * i], bs_table[2 * i + 1]);
597 }
b41a2cd1 598 }
69b91039 599
80cabfad 600 kbd_init();
7c29d0c0 601 DMA_init(0);
67b915a5 602
aaaa7df6 603 if (audio_enabled) {
aaaa7df6 604 AUD_init();
fb065187
FB
605 if (sb16_enabled)
606 SB16_init ();
fb065187
FB
607#ifdef CONFIG_ADLIB
608 if (adlib_enabled)
609 Adlib_init ();
610#endif
1d14ffa9 611#ifdef CONFIG_GUS
fb065187
FB
612 if (gus_enabled)
613 GUS_init ();
614#endif
1d14ffa9
FB
615 if (pci_enabled && es1370_enabled)
616 es1370_init (pci_bus);
aaaa7df6 617 }
80cabfad 618
baca51fa 619 floppy_controller = fdctrl_init(6, 2, 0, 0x3f0, fd_table);
b41a2cd1 620
ba6c2377 621 cmos_init(ram_size, boot_device, bs_table);
69b91039
FB
622
623 /* must be done after all PCI devices are instanciated */
624 /* XXX: should be done in the Bochs BIOS */
625 if (pci_enabled) {
626 pci_bios_init();
627 }
80cabfad 628}
b5ff2d6e
FB
629
630QEMUMachine pc_machine = {
631 "pc",
632 "Standard PC",
633 pc_init1,
634};