]> git.proxmox.com Git - mirror_qemu.git/blame - hw/pc.c
Update MIPS TODO.
[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
07de1eaa 35#define INITRD_LOAD_ADDR 0x00600000
80cabfad
FB
36#define KERNEL_PARAMS_ADDR 0x00090000
37#define KERNEL_CMDLINE_ADDR 0x00099000
38
baca51fa 39static fdctrl_t *floppy_controller;
b0a21b53 40static RTCState *rtc_state;
ec844b96 41static PITState *pit;
d592d303 42static IOAPICState *ioapic;
a5954d5c 43static PCIDevice *i440fx_state;
80cabfad 44
b41a2cd1 45static void ioport80_write(void *opaque, uint32_t addr, uint32_t data)
80cabfad
FB
46{
47}
48
f929aad6
FB
49/* MSDOS compatibility mode FPU exception support */
50/* XXX: add IGNNE support */
51void cpu_set_ferr(CPUX86State *s)
52{
53 pic_set_irq(13, 1);
54}
55
56static void ioportF0_write(void *opaque, uint32_t addr, uint32_t data)
57{
58 pic_set_irq(13, 0);
59}
60
28ab0e2e 61/* TSC handling */
28ab0e2e
FB
62uint64_t cpu_get_tsc(CPUX86State *env)
63{
1dce7c3c
FB
64 /* Note: when using kqemu, it is more logical to return the host TSC
65 because kqemu does not trap the RDTSC instruction for
66 performance reasons */
67#if USE_KQEMU
68 if (env->kqemu_enabled) {
69 return cpu_get_real_ticks();
70 } else
71#endif
72 {
73 return cpu_get_ticks();
74 }
28ab0e2e
FB
75}
76
a5954d5c
FB
77/* SMM support */
78void cpu_smm_update(CPUState *env)
79{
80 if (i440fx_state && env == first_cpu)
81 i440fx_set_smm(i440fx_state, (env->hflags >> HF_SMM_SHIFT) & 1);
82}
83
84
3de388f6
FB
85/* IRQ handling */
86int cpu_get_pic_interrupt(CPUState *env)
87{
88 int intno;
89
3de388f6
FB
90 intno = apic_get_interrupt(env);
91 if (intno >= 0) {
92 /* set irq request if a PIC irq is still pending */
93 /* XXX: improve that */
94 pic_update_irq(isa_pic);
95 return intno;
96 }
3de388f6
FB
97 /* read the irq from the PIC */
98 intno = pic_read_irq(isa_pic);
99 return intno;
100}
101
102static void pic_irq_request(void *opaque, int level)
103{
59b8ad81 104 CPUState *env = opaque;
3de388f6 105 if (level)
59b8ad81 106 cpu_interrupt(env, CPU_INTERRUPT_HARD);
3de388f6 107 else
59b8ad81 108 cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
3de388f6
FB
109}
110
b0a21b53
FB
111/* PC cmos mappings */
112
80cabfad
FB
113#define REG_EQUIPMENT_BYTE 0x14
114
777428f2
FB
115static int cmos_get_fd_drive_type(int fd0)
116{
117 int val;
118
119 switch (fd0) {
120 case 0:
121 /* 1.44 Mb 3"5 drive */
122 val = 4;
123 break;
124 case 1:
125 /* 2.88 Mb 3"5 drive */
126 val = 5;
127 break;
128 case 2:
129 /* 1.2 Mb 5"5 drive */
130 val = 2;
131 break;
132 default:
133 val = 0;
134 break;
135 }
136 return val;
137}
138
ba6c2377
FB
139static void cmos_init_hd(int type_ofs, int info_ofs, BlockDriverState *hd)
140{
141 RTCState *s = rtc_state;
142 int cylinders, heads, sectors;
143 bdrv_get_geometry_hint(hd, &cylinders, &heads, &sectors);
144 rtc_set_memory(s, type_ofs, 47);
145 rtc_set_memory(s, info_ofs, cylinders);
146 rtc_set_memory(s, info_ofs + 1, cylinders >> 8);
147 rtc_set_memory(s, info_ofs + 2, heads);
148 rtc_set_memory(s, info_ofs + 3, 0xff);
149 rtc_set_memory(s, info_ofs + 4, 0xff);
150 rtc_set_memory(s, info_ofs + 5, 0xc0 | ((heads > 8) << 3));
151 rtc_set_memory(s, info_ofs + 6, cylinders);
152 rtc_set_memory(s, info_ofs + 7, cylinders >> 8);
153 rtc_set_memory(s, info_ofs + 8, sectors);
154}
155
156/* hd_table must contain 4 block drivers */
157static void cmos_init(int ram_size, int boot_device, BlockDriverState **hd_table)
80cabfad 158{
b0a21b53 159 RTCState *s = rtc_state;
80cabfad 160 int val;
b41a2cd1 161 int fd0, fd1, nb;
ba6c2377 162 int i;
b0a21b53 163
b0a21b53 164 /* various important CMOS locations needed by PC/Bochs bios */
80cabfad
FB
165
166 /* memory size */
333190eb
FB
167 val = 640; /* base memory in K */
168 rtc_set_memory(s, 0x15, val);
169 rtc_set_memory(s, 0x16, val >> 8);
170
80cabfad
FB
171 val = (ram_size / 1024) - 1024;
172 if (val > 65535)
173 val = 65535;
b0a21b53
FB
174 rtc_set_memory(s, 0x17, val);
175 rtc_set_memory(s, 0x18, val >> 8);
176 rtc_set_memory(s, 0x30, val);
177 rtc_set_memory(s, 0x31, val >> 8);
80cabfad 178
9da98861
FB
179 if (ram_size > (16 * 1024 * 1024))
180 val = (ram_size / 65536) - ((16 * 1024 * 1024) / 65536);
181 else
182 val = 0;
80cabfad
FB
183 if (val > 65535)
184 val = 65535;
b0a21b53
FB
185 rtc_set_memory(s, 0x34, val);
186 rtc_set_memory(s, 0x35, val >> 8);
80cabfad
FB
187
188 switch(boot_device) {
189 case 'a':
190 case 'b':
b0a21b53 191 rtc_set_memory(s, 0x3d, 0x01); /* floppy boot */
52ca8d6a
FB
192 if (!fd_bootchk)
193 rtc_set_memory(s, 0x38, 0x01); /* disable signature check */
80cabfad
FB
194 break;
195 default:
196 case 'c':
b0a21b53 197 rtc_set_memory(s, 0x3d, 0x02); /* hard drive boot */
80cabfad
FB
198 break;
199 case 'd':
b0a21b53 200 rtc_set_memory(s, 0x3d, 0x03); /* CD-ROM boot */
80cabfad
FB
201 break;
202 }
80cabfad 203
b41a2cd1
FB
204 /* floppy type */
205
baca51fa
FB
206 fd0 = fdctrl_get_drive_type(floppy_controller, 0);
207 fd1 = fdctrl_get_drive_type(floppy_controller, 1);
80cabfad 208
777428f2 209 val = (cmos_get_fd_drive_type(fd0) << 4) | cmos_get_fd_drive_type(fd1);
b0a21b53
FB
210 rtc_set_memory(s, 0x10, val);
211
212 val = 0;
b41a2cd1 213 nb = 0;
80cabfad
FB
214 if (fd0 < 3)
215 nb++;
216 if (fd1 < 3)
217 nb++;
218 switch (nb) {
219 case 0:
220 break;
221 case 1:
b0a21b53 222 val |= 0x01; /* 1 drive, ready for boot */
80cabfad
FB
223 break;
224 case 2:
b0a21b53 225 val |= 0x41; /* 2 drives, ready for boot */
80cabfad
FB
226 break;
227 }
b0a21b53
FB
228 val |= 0x02; /* FPU is there */
229 val |= 0x04; /* PS/2 mouse installed */
230 rtc_set_memory(s, REG_EQUIPMENT_BYTE, val);
231
ba6c2377
FB
232 /* hard drives */
233
234 rtc_set_memory(s, 0x12, (hd_table[0] ? 0xf0 : 0) | (hd_table[1] ? 0x0f : 0));
235 if (hd_table[0])
236 cmos_init_hd(0x19, 0x1b, hd_table[0]);
237 if (hd_table[1])
238 cmos_init_hd(0x1a, 0x24, hd_table[1]);
239
240 val = 0;
40b6ecc6 241 for (i = 0; i < 4; i++) {
ba6c2377 242 if (hd_table[i]) {
46d4767d
FB
243 int cylinders, heads, sectors, translation;
244 /* NOTE: bdrv_get_geometry_hint() returns the physical
245 geometry. It is always such that: 1 <= sects <= 63, 1
246 <= heads <= 16, 1 <= cylinders <= 16383. The BIOS
247 geometry can be different if a translation is done. */
248 translation = bdrv_get_translation_hint(hd_table[i]);
249 if (translation == BIOS_ATA_TRANSLATION_AUTO) {
250 bdrv_get_geometry_hint(hd_table[i], &cylinders, &heads, &sectors);
251 if (cylinders <= 1024 && heads <= 16 && sectors <= 63) {
252 /* No translation. */
253 translation = 0;
254 } else {
255 /* LBA translation. */
256 translation = 1;
257 }
40b6ecc6 258 } else {
46d4767d 259 translation--;
ba6c2377 260 }
ba6c2377
FB
261 val |= translation << (i * 2);
262 }
40b6ecc6 263 }
ba6c2377 264 rtc_set_memory(s, 0x39, val);
80cabfad
FB
265}
266
59b8ad81
FB
267void ioport_set_a20(int enable)
268{
269 /* XXX: send to all CPUs ? */
270 cpu_x86_set_a20(first_cpu, enable);
271}
272
273int ioport_get_a20(void)
274{
275 return ((first_cpu->a20_mask >> 20) & 1);
276}
277
e1a23744
FB
278static void ioport92_write(void *opaque, uint32_t addr, uint32_t val)
279{
59b8ad81 280 ioport_set_a20((val >> 1) & 1);
e1a23744
FB
281 /* XXX: bit 0 is fast reset */
282}
283
284static uint32_t ioport92_read(void *opaque, uint32_t addr)
285{
59b8ad81 286 return ioport_get_a20() << 1;
e1a23744
FB
287}
288
80cabfad
FB
289/***********************************************************/
290/* Bochs BIOS debug ports */
291
b41a2cd1 292void bochs_bios_write(void *opaque, uint32_t addr, uint32_t val)
80cabfad 293{
a2f659ee
FB
294 static const char shutdown_str[8] = "Shutdown";
295 static int shutdown_index = 0;
296
80cabfad
FB
297 switch(addr) {
298 /* Bochs BIOS messages */
299 case 0x400:
300 case 0x401:
301 fprintf(stderr, "BIOS panic at rombios.c, line %d\n", val);
302 exit(1);
303 case 0x402:
304 case 0x403:
305#ifdef DEBUG_BIOS
306 fprintf(stderr, "%c", val);
307#endif
308 break;
a2f659ee
FB
309 case 0x8900:
310 /* same as Bochs power off */
311 if (val == shutdown_str[shutdown_index]) {
312 shutdown_index++;
313 if (shutdown_index == 8) {
314 shutdown_index = 0;
315 qemu_system_shutdown_request();
316 }
317 } else {
318 shutdown_index = 0;
319 }
320 break;
80cabfad
FB
321
322 /* LGPL'ed VGA BIOS messages */
323 case 0x501:
324 case 0x502:
325 fprintf(stderr, "VGA BIOS panic, line %d\n", val);
326 exit(1);
327 case 0x500:
328 case 0x503:
329#ifdef DEBUG_BIOS
330 fprintf(stderr, "%c", val);
331#endif
332 break;
333 }
334}
335
336void bochs_bios_init(void)
337{
b41a2cd1
FB
338 register_ioport_write(0x400, 1, 2, bochs_bios_write, NULL);
339 register_ioport_write(0x401, 1, 2, bochs_bios_write, NULL);
340 register_ioport_write(0x402, 1, 1, bochs_bios_write, NULL);
341 register_ioport_write(0x403, 1, 1, bochs_bios_write, NULL);
a2f659ee 342 register_ioport_write(0x8900, 1, 1, bochs_bios_write, NULL);
b41a2cd1
FB
343
344 register_ioport_write(0x501, 1, 2, bochs_bios_write, NULL);
345 register_ioport_write(0x502, 1, 2, bochs_bios_write, NULL);
346 register_ioport_write(0x500, 1, 1, bochs_bios_write, NULL);
347 register_ioport_write(0x503, 1, 1, bochs_bios_write, NULL);
80cabfad
FB
348}
349
350
351int load_kernel(const char *filename, uint8_t *addr,
352 uint8_t *real_addr)
353{
354 int fd, size;
355 int setup_sects;
356
096b7ea4 357 fd = open(filename, O_RDONLY | O_BINARY);
80cabfad
FB
358 if (fd < 0)
359 return -1;
360
361 /* load 16 bit code */
362 if (read(fd, real_addr, 512) != 512)
363 goto fail;
364 setup_sects = real_addr[0x1F1];
365 if (!setup_sects)
366 setup_sects = 4;
367 if (read(fd, real_addr + 512, setup_sects * 512) !=
368 setup_sects * 512)
369 goto fail;
370
371 /* load 32 bit code */
372 size = read(fd, addr, 16 * 1024 * 1024);
373 if (size < 0)
374 goto fail;
375 close(fd);
376 return size;
377 fail:
378 close(fd);
379 return -1;
380}
381
59b8ad81
FB
382static void main_cpu_reset(void *opaque)
383{
384 CPUState *env = opaque;
385 cpu_reset(env);
386}
387
b41a2cd1
FB
388static const int ide_iobase[2] = { 0x1f0, 0x170 };
389static const int ide_iobase2[2] = { 0x3f6, 0x376 };
390static const int ide_irq[2] = { 14, 15 };
391
392#define NE2000_NB_MAX 6
393
8d11df9e 394static int ne2000_io[NE2000_NB_MAX] = { 0x300, 0x320, 0x340, 0x360, 0x280, 0x380 };
b41a2cd1
FB
395static int ne2000_irq[NE2000_NB_MAX] = { 9, 10, 11, 3, 4, 5 };
396
8d11df9e
FB
397static int serial_io[MAX_SERIAL_PORTS] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 };
398static int serial_irq[MAX_SERIAL_PORTS] = { 4, 3, 4, 3 };
399
6508fe59
FB
400static int parallel_io[MAX_PARALLEL_PORTS] = { 0x378, 0x278, 0x3bc };
401static int parallel_irq[MAX_PARALLEL_PORTS] = { 7, 7, 7 };
402
6a36d84e
FB
403#ifdef HAS_AUDIO
404static void audio_init (PCIBus *pci_bus)
405{
406 struct soundhw *c;
407 int audio_enabled = 0;
408
409 for (c = soundhw; !audio_enabled && c->name; ++c) {
410 audio_enabled = c->enabled;
411 }
412
413 if (audio_enabled) {
414 AudioState *s;
415
416 s = AUD_init ();
417 if (s) {
418 for (c = soundhw; c->name; ++c) {
419 if (c->enabled) {
420 if (c->isa) {
421 c->init.init_isa (s);
422 }
423 else {
424 if (pci_bus) {
425 c->init.init_pci (pci_bus, s);
426 }
427 }
428 }
429 }
430 }
431 }
432}
433#endif
434
a41b2ff2
PB
435static void pc_init_ne2k_isa(NICInfo *nd)
436{
437 static int nb_ne2k = 0;
438
439 if (nb_ne2k == NE2000_NB_MAX)
440 return;
441 isa_ne2000_init(ne2000_io[nb_ne2k], ne2000_irq[nb_ne2k], nd);
442 nb_ne2k++;
443}
444
80cabfad 445/* PC hardware initialisation */
b5ff2d6e
FB
446static void pc_init1(int ram_size, int vga_ram_size, int boot_device,
447 DisplayState *ds, const char **fd_filename, int snapshot,
448 const char *kernel_filename, const char *kernel_cmdline,
3dbbdc25
FB
449 const char *initrd_filename,
450 int pci_enabled)
80cabfad
FB
451{
452 char buf[1024];
a41b2ff2 453 int ret, linux_boot, initrd_size, i;
9ae02555 454 unsigned long bios_offset, vga_bios_offset, option_rom_offset;
7587cf44 455 int bios_size, isa_bios_size;
46e50e9d 456 PCIBus *pci_bus;
5c3ff3a7 457 int piix3_devfn = -1;
59b8ad81 458 CPUState *env;
a41b2ff2 459 NICInfo *nd;
d592d303 460
80cabfad
FB
461 linux_boot = (kernel_filename != NULL);
462
59b8ad81
FB
463 /* init CPUs */
464 for(i = 0; i < smp_cpus; i++) {
465 env = cpu_init();
466 if (i != 0)
ad49ff9d 467 env->hflags |= HF_HALTED_MASK;
59b8ad81
FB
468 if (smp_cpus > 1) {
469 /* XXX: enable it in all cases */
470 env->cpuid_features |= CPUID_APIC;
471 }
a5954d5c 472 register_savevm("cpu", i, 4, cpu_save, cpu_load, env);
59b8ad81
FB
473 qemu_register_reset(main_cpu_reset, env);
474 if (pci_enabled) {
475 apic_init(env);
476 }
477 }
478
80cabfad
FB
479 /* allocate RAM */
480 cpu_register_physical_memory(0, ram_size, 0);
481
482 /* BIOS load */
7587cf44
FB
483 bios_offset = ram_size + vga_ram_size;
484 vga_bios_offset = bios_offset + 256 * 1024;
485
80cabfad 486 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, BIOS_FILENAME);
7587cf44
FB
487 bios_size = get_image_size(buf);
488 if (bios_size <= 0 ||
489 (bios_size % 65536) != 0 ||
490 bios_size > (256 * 1024)) {
491 goto bios_error;
492 }
493 ret = load_image(buf, phys_ram_base + bios_offset);
494 if (ret != bios_size) {
495 bios_error:
80cabfad
FB
496 fprintf(stderr, "qemu: could not load PC bios '%s'\n", buf);
497 exit(1);
498 }
7587cf44 499
80cabfad 500 /* VGA BIOS load */
de9258a8
FB
501 if (cirrus_vga_enabled) {
502 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, VGABIOS_CIRRUS_FILENAME);
503 } else {
504 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, VGABIOS_FILENAME);
505 }
7587cf44 506 ret = load_image(buf, phys_ram_base + vga_bios_offset);
80cabfad
FB
507
508 /* setup basic memory access */
7587cf44
FB
509 cpu_register_physical_memory(0xc0000, 0x10000,
510 vga_bios_offset | IO_MEM_ROM);
511
512 /* map the last 128KB of the BIOS in ISA space */
513 isa_bios_size = bios_size;
514 if (isa_bios_size > (128 * 1024))
515 isa_bios_size = 128 * 1024;
516 cpu_register_physical_memory(0xd0000, (192 * 1024) - isa_bios_size,
517 IO_MEM_UNASSIGNED);
518 cpu_register_physical_memory(0x100000 - isa_bios_size,
519 isa_bios_size,
520 (bios_offset + bios_size - isa_bios_size) | IO_MEM_ROM);
9ae02555
TS
521
522 option_rom_offset = 0;
523 for (i = 0; i < nb_option_roms; i++) {
524 int offset = bios_offset + bios_size + option_rom_offset;
525 int size;
526
527 size = load_image(option_rom[i], phys_ram_base + offset);
528 if ((size + option_rom_offset) > 0x10000) {
529 fprintf(stderr, "Too many option ROMS\n");
530 exit(1);
531 }
532 cpu_register_physical_memory(0xd0000 + option_rom_offset,
533 size, offset | IO_MEM_ROM);
534 option_rom_offset += size + 2047;
535 option_rom_offset -= (option_rom_offset % 2048);
536 }
537
7587cf44
FB
538 /* map all the bios at the top of memory */
539 cpu_register_physical_memory((uint32_t)(-bios_size),
540 bios_size, bios_offset | IO_MEM_ROM);
80cabfad
FB
541
542 bochs_bios_init();
543
544 if (linux_boot) {
545 uint8_t bootsect[512];
41b9be47 546 uint8_t old_bootsect[512];
80cabfad
FB
547
548 if (bs_table[0] == NULL) {
549 fprintf(stderr, "A disk image must be given for 'hda' when booting a Linux kernel\n");
550 exit(1);
551 }
552 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, LINUX_BOOT_FILENAME);
553 ret = load_image(buf, bootsect);
554 if (ret != sizeof(bootsect)) {
555 fprintf(stderr, "qemu: could not load linux boot sector '%s'\n",
556 buf);
557 exit(1);
558 }
559
41b9be47
FB
560 if (bdrv_read(bs_table[0], 0, old_bootsect, 1) >= 0) {
561 /* copy the MSDOS partition table */
562 memcpy(bootsect + 0x1be, old_bootsect + 0x1be, 0x40);
563 }
564
80cabfad
FB
565 bdrv_set_boot_sector(bs_table[0], bootsect, sizeof(bootsect));
566
567 /* now we can load the kernel */
568 ret = load_kernel(kernel_filename,
569 phys_ram_base + KERNEL_LOAD_ADDR,
570 phys_ram_base + KERNEL_PARAMS_ADDR);
571 if (ret < 0) {
572 fprintf(stderr, "qemu: could not load kernel '%s'\n",
573 kernel_filename);
574 exit(1);
575 }
576
577 /* load initrd */
578 initrd_size = 0;
579 if (initrd_filename) {
580 initrd_size = load_image(initrd_filename, phys_ram_base + INITRD_LOAD_ADDR);
581 if (initrd_size < 0) {
582 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
583 initrd_filename);
584 exit(1);
585 }
586 }
587 if (initrd_size > 0) {
588 stl_raw(phys_ram_base + KERNEL_PARAMS_ADDR + 0x218, INITRD_LOAD_ADDR);
589 stl_raw(phys_ram_base + KERNEL_PARAMS_ADDR + 0x21c, initrd_size);
590 }
591 pstrcpy(phys_ram_base + KERNEL_CMDLINE_ADDR, 4096,
592 kernel_cmdline);
593 stw_raw(phys_ram_base + KERNEL_PARAMS_ADDR + 0x20, 0xA33F);
594 stw_raw(phys_ram_base + KERNEL_PARAMS_ADDR + 0x22,
595 KERNEL_CMDLINE_ADDR - KERNEL_PARAMS_ADDR);
596 /* loader type */
597 stw_raw(phys_ram_base + KERNEL_PARAMS_ADDR + 0x210, 0x01);
598 }
599
69b91039 600 if (pci_enabled) {
a5954d5c 601 pci_bus = i440fx_init(&i440fx_state);
8f1c91d8 602 piix3_devfn = piix3_init(pci_bus, -1);
46e50e9d
FB
603 } else {
604 pci_bus = NULL;
69b91039
FB
605 }
606
80cabfad 607 /* init basic PC hardware */
b41a2cd1 608 register_ioport_write(0x80, 1, 1, ioport80_write, NULL);
80cabfad 609
f929aad6
FB
610 register_ioport_write(0xf0, 1, 1, ioportF0_write, NULL);
611
1f04275e
FB
612 if (cirrus_vga_enabled) {
613 if (pci_enabled) {
46e50e9d
FB
614 pci_cirrus_vga_init(pci_bus,
615 ds, phys_ram_base + ram_size, ram_size,
1f04275e
FB
616 vga_ram_size);
617 } else {
618 isa_cirrus_vga_init(ds, phys_ram_base + ram_size, ram_size,
619 vga_ram_size);
620 }
621 } else {
89b6b508
FB
622 if (pci_enabled) {
623 pci_vga_init(pci_bus, ds, phys_ram_base + ram_size, ram_size,
624 vga_ram_size, 0, 0);
625 } else {
626 isa_vga_init(ds, phys_ram_base + ram_size, ram_size,
627 vga_ram_size);
628 }
1f04275e 629 }
80cabfad 630
b0a21b53 631 rtc_state = rtc_init(0x70, 8);
80cabfad 632
e1a23744
FB
633 register_ioport_read(0x92, 1, 1, ioport92_read, NULL);
634 register_ioport_write(0x92, 1, 1, ioport92_write, NULL);
635
d592d303 636 if (pci_enabled) {
d592d303
FB
637 ioapic = ioapic_init();
638 }
59b8ad81 639 isa_pic = pic_init(pic_irq_request, first_cpu);
ec844b96 640 pit = pit_init(0x40, 0);
fd06c375 641 pcspk_init(pit);
d592d303
FB
642 if (pci_enabled) {
643 pic_set_alt_irq_func(isa_pic, ioapic_set_irq, ioapic);
644 }
b41a2cd1 645
8d11df9e
FB
646 for(i = 0; i < MAX_SERIAL_PORTS; i++) {
647 if (serial_hds[i]) {
e5d13e2f
FB
648 serial_init(&pic_set_irq_new, isa_pic,
649 serial_io[i], serial_irq[i], serial_hds[i]);
8d11df9e
FB
650 }
651 }
b41a2cd1 652
6508fe59
FB
653 for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
654 if (parallel_hds[i]) {
655 parallel_init(parallel_io[i], parallel_irq[i], parallel_hds[i]);
656 }
657 }
658
a41b2ff2
PB
659 for(i = 0; i < nb_nics; i++) {
660 nd = &nd_table[i];
661 if (!nd->model) {
662 if (pci_enabled) {
663 nd->model = "ne2k_pci";
664 } else {
665 nd->model = "ne2k_isa";
666 }
69b91039 667 }
a41b2ff2
PB
668 if (strcmp(nd->model, "ne2k_isa") == 0) {
669 pc_init_ne2k_isa(nd);
670 } else if (pci_enabled) {
abcebc7e 671 pci_nic_init(pci_bus, nd, -1);
a41b2ff2
PB
672 } else {
673 fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd->model);
674 exit(1);
69b91039 675 }
a41b2ff2 676 }
b41a2cd1 677
a41b2ff2 678 if (pci_enabled) {
502a5395 679 pci_piix3_ide_init(pci_bus, bs_table, piix3_devfn + 1);
a41b2ff2 680 } else {
69b91039
FB
681 for(i = 0; i < 2; i++) {
682 isa_ide_init(ide_iobase[i], ide_iobase2[i], ide_irq[i],
683 bs_table[2 * i], bs_table[2 * i + 1]);
684 }
b41a2cd1 685 }
69b91039 686
80cabfad 687 kbd_init();
7c29d0c0 688 DMA_init(0);
6a36d84e
FB
689#ifdef HAS_AUDIO
690 audio_init(pci_enabled ? pci_bus : NULL);
fb065187 691#endif
80cabfad 692
baca51fa 693 floppy_controller = fdctrl_init(6, 2, 0, 0x3f0, fd_table);
b41a2cd1 694
ba6c2377 695 cmos_init(ram_size, boot_device, bs_table);
69b91039 696
bb36d470 697 if (pci_enabled && usb_enabled) {
0d92ed30 698 usb_uhci_init(pci_bus, piix3_devfn + 2);
bb36d470
FB
699 }
700
6515b203 701 if (pci_enabled && acpi_enabled) {
502a5395 702 piix4_pm_init(pci_bus, piix3_devfn + 3);
6515b203 703 }
a5954d5c
FB
704
705 if (i440fx_state) {
706 i440fx_init_memory_mappings(i440fx_state);
707 }
96d30e48
TS
708#if 0
709 /* ??? Need to figure out some way for the user to
710 specify SCSI devices. */
7d8406be
PB
711 if (pci_enabled) {
712 void *scsi;
96d30e48
TS
713 BlockDriverState *bdrv;
714
715 scsi = lsi_scsi_init(pci_bus, -1);
716 bdrv = bdrv_new("scsidisk");
717 bdrv_open(bdrv, "scsi_disk.img", 0);
718 lsi_scsi_attach(scsi, bdrv, -1);
719 bdrv = bdrv_new("scsicd");
720 bdrv_open(bdrv, "scsi_cd.iso", 0);
721 bdrv_set_type_hint(bdrv, BDRV_TYPE_CDROM);
722 lsi_scsi_attach(scsi, bdrv, -1);
7d8406be 723 }
96d30e48 724#endif
80cabfad 725}
b5ff2d6e 726
3dbbdc25
FB
727static void pc_init_pci(int ram_size, int vga_ram_size, int boot_device,
728 DisplayState *ds, const char **fd_filename,
729 int snapshot,
730 const char *kernel_filename,
731 const char *kernel_cmdline,
732 const char *initrd_filename)
733{
734 pc_init1(ram_size, vga_ram_size, boot_device,
735 ds, fd_filename, snapshot,
736 kernel_filename, kernel_cmdline,
737 initrd_filename, 1);
738}
739
740static void pc_init_isa(int ram_size, int vga_ram_size, int boot_device,
741 DisplayState *ds, const char **fd_filename,
742 int snapshot,
743 const char *kernel_filename,
744 const char *kernel_cmdline,
745 const char *initrd_filename)
746{
747 pc_init1(ram_size, vga_ram_size, boot_device,
748 ds, fd_filename, snapshot,
749 kernel_filename, kernel_cmdline,
750 initrd_filename, 0);
751}
752
b5ff2d6e
FB
753QEMUMachine pc_machine = {
754 "pc",
755 "Standard PC",
3dbbdc25
FB
756 pc_init_pci,
757};
758
759QEMUMachine isapc_machine = {
760 "isapc",
761 "ISA-only PC",
762 pc_init_isa,
b5ff2d6e 763};