]> git.proxmox.com Git - qemu.git/blame - hw/pc.c
pc: move rtc declarations from pc.h into a dedicated header file.
[qemu.git] / hw / pc.c
CommitLineData
80cabfad
FB
1/*
2 * QEMU PC System Emulator
5fafdf24 3 *
80cabfad 4 * Copyright (c) 2003-2004 Fabrice Bellard
5fafdf24 5 *
80cabfad
FB
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 */
87ecb68b
PB
24#include "hw.h"
25#include "pc.h"
aa28b9bf 26#include "apic.h"
87ecb68b
PB
27#include "fdc.h"
28#include "pci.h"
18e08a55 29#include "vmware_vga.h"
376253ec 30#include "monitor.h"
3cce6243 31#include "fw_cfg.h"
16b29ae1 32#include "hpet_emul.h"
b6f6e3d3 33#include "smbios.h"
ca20cf32
BS
34#include "loader.h"
35#include "elf.h"
52001445 36#include "multiboot.h"
80cabfad 37
b41a2cd1
FB
38/* output Bochs bios info messages */
39//#define DEBUG_BIOS
40
80cabfad 41#define BIOS_FILENAME "bios.bin"
80cabfad 42
7fb4fdcf
AZ
43#define PC_MAX_BIOS_SIZE (4 * 1024 * 1024)
44
a80274c3
PB
45/* Leave a chunk of memory at the top of RAM for the BIOS ACPI tables. */
46#define ACPI_DATA_SIZE 0x10000
3cce6243 47#define BIOS_CFG_IOPORT 0x510
8a92ea2f 48#define FW_CFG_ACPI_TABLES (FW_CFG_ARCH_LOCAL + 0)
b6f6e3d3 49#define FW_CFG_SMBIOS_ENTRIES (FW_CFG_ARCH_LOCAL + 1)
6b35e7bf 50#define FW_CFG_IRQ0_OVERRIDE (FW_CFG_ARCH_LOCAL + 2)
4c5b10b7 51#define FW_CFG_E820_TABLE (FW_CFG_ARCH_LOCAL + 3)
80cabfad 52
4c5b10b7
JS
53#define E820_NR_ENTRIES 16
54
55struct e820_entry {
56 uint64_t address;
57 uint64_t length;
58 uint32_t type;
59};
60
61struct e820_table {
62 uint32_t count;
63 struct e820_entry entry[E820_NR_ENTRIES];
64};
65
66static struct e820_table e820_table;
67
845773ab 68void isa_irq_handler(void *opaque, int n, int level)
1452411b
AK
69{
70 IsaIrqState *isa = (IsaIrqState *)opaque;
71
1632dc6a
AK
72 if (n < 16) {
73 qemu_set_irq(isa->i8259[n], level);
74 }
2c8d9340
GH
75 if (isa->ioapic)
76 qemu_set_irq(isa->ioapic[n], level);
1632dc6a 77};
1452411b 78
b41a2cd1 79static void ioport80_write(void *opaque, uint32_t addr, uint32_t data)
80cabfad
FB
80{
81}
82
f929aad6 83/* MSDOS compatibility mode FPU exception support */
d537cf6c 84static qemu_irq ferr_irq;
8e78eb28
IY
85
86void pc_register_ferr_irq(qemu_irq irq)
87{
88 ferr_irq = irq;
89}
90
f929aad6
FB
91/* XXX: add IGNNE support */
92void cpu_set_ferr(CPUX86State *s)
93{
d537cf6c 94 qemu_irq_raise(ferr_irq);
f929aad6
FB
95}
96
97static void ioportF0_write(void *opaque, uint32_t addr, uint32_t data)
98{
d537cf6c 99 qemu_irq_lower(ferr_irq);
f929aad6
FB
100}
101
28ab0e2e 102/* TSC handling */
28ab0e2e
FB
103uint64_t cpu_get_tsc(CPUX86State *env)
104{
4a1418e0 105 return cpu_get_ticks();
28ab0e2e
FB
106}
107
a5954d5c 108/* SMM support */
f885f1ea
IY
109
110static cpu_set_smm_t smm_set;
111static void *smm_arg;
112
113void cpu_smm_register(cpu_set_smm_t callback, void *arg)
114{
115 assert(smm_set == NULL);
116 assert(smm_arg == NULL);
117 smm_set = callback;
118 smm_arg = arg;
119}
120
a5954d5c
FB
121void cpu_smm_update(CPUState *env)
122{
f885f1ea
IY
123 if (smm_set && smm_arg && env == first_cpu)
124 smm_set(!!(env->hflags & HF_SMM_MASK), smm_arg);
a5954d5c
FB
125}
126
127
3de388f6
FB
128/* IRQ handling */
129int cpu_get_pic_interrupt(CPUState *env)
130{
131 int intno;
132
3de388f6
FB
133 intno = apic_get_interrupt(env);
134 if (intno >= 0) {
135 /* set irq request if a PIC irq is still pending */
136 /* XXX: improve that */
5fafdf24 137 pic_update_irq(isa_pic);
3de388f6
FB
138 return intno;
139 }
3de388f6 140 /* read the irq from the PIC */
0e21e12b
TS
141 if (!apic_accept_pic_intr(env))
142 return -1;
143
3de388f6
FB
144 intno = pic_read_irq(isa_pic);
145 return intno;
146}
147
d537cf6c 148static void pic_irq_request(void *opaque, int irq, int level)
3de388f6 149{
a5b38b51
AJ
150 CPUState *env = first_cpu;
151
d5529471
AJ
152 if (env->apic_state) {
153 while (env) {
154 if (apic_accept_pic_intr(env))
1a7de94a 155 apic_deliver_pic_intr(env, level);
d5529471
AJ
156 env = env->next_cpu;
157 }
158 } else {
b614106a
AJ
159 if (level)
160 cpu_interrupt(env, CPU_INTERRUPT_HARD);
161 else
162 cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
a5b38b51 163 }
3de388f6
FB
164}
165
b0a21b53
FB
166/* PC cmos mappings */
167
80cabfad
FB
168#define REG_EQUIPMENT_BYTE 0x14
169
777428f2
FB
170static int cmos_get_fd_drive_type(int fd0)
171{
172 int val;
173
174 switch (fd0) {
175 case 0:
176 /* 1.44 Mb 3"5 drive */
177 val = 4;
178 break;
179 case 1:
180 /* 2.88 Mb 3"5 drive */
181 val = 5;
182 break;
183 case 2:
184 /* 1.2 Mb 5"5 drive */
185 val = 2;
186 break;
187 default:
188 val = 0;
189 break;
190 }
191 return val;
192}
193
ec2654fb
IY
194static void cmos_init_hd(int type_ofs, int info_ofs, BlockDriverState *hd,
195 RTCState *s)
ba6c2377 196{
ba6c2377
FB
197 int cylinders, heads, sectors;
198 bdrv_get_geometry_hint(hd, &cylinders, &heads, &sectors);
199 rtc_set_memory(s, type_ofs, 47);
200 rtc_set_memory(s, info_ofs, cylinders);
201 rtc_set_memory(s, info_ofs + 1, cylinders >> 8);
202 rtc_set_memory(s, info_ofs + 2, heads);
203 rtc_set_memory(s, info_ofs + 3, 0xff);
204 rtc_set_memory(s, info_ofs + 4, 0xff);
205 rtc_set_memory(s, info_ofs + 5, 0xc0 | ((heads > 8) << 3));
206 rtc_set_memory(s, info_ofs + 6, cylinders);
207 rtc_set_memory(s, info_ofs + 7, cylinders >> 8);
208 rtc_set_memory(s, info_ofs + 8, sectors);
209}
210
6ac0e82d
AZ
211/* convert boot_device letter to something recognizable by the bios */
212static int boot_device2nibble(char boot_device)
213{
214 switch(boot_device) {
215 case 'a':
216 case 'b':
217 return 0x01; /* floppy boot */
218 case 'c':
219 return 0x02; /* hard drive boot */
220 case 'd':
221 return 0x03; /* CD-ROM boot */
222 case 'n':
223 return 0x04; /* Network boot */
224 }
225 return 0;
226}
227
d9346e81 228static int set_boot_dev(RTCState *s, const char *boot_device, int fd_bootchk)
0ecdffbb
AJ
229{
230#define PC_MAX_BOOT_DEVICES 3
0ecdffbb
AJ
231 int nbds, bds[3] = { 0, };
232 int i;
233
234 nbds = strlen(boot_device);
235 if (nbds > PC_MAX_BOOT_DEVICES) {
1ecda02b 236 error_report("Too many boot devices for PC");
0ecdffbb
AJ
237 return(1);
238 }
239 for (i = 0; i < nbds; i++) {
240 bds[i] = boot_device2nibble(boot_device[i]);
241 if (bds[i] == 0) {
1ecda02b
MA
242 error_report("Invalid boot device for PC: '%c'",
243 boot_device[i]);
0ecdffbb
AJ
244 return(1);
245 }
246 }
247 rtc_set_memory(s, 0x3d, (bds[1] << 4) | bds[0]);
d9346e81 248 rtc_set_memory(s, 0x38, (bds[2] << 4) | (fd_bootchk ? 0x0 : 0x1));
0ecdffbb
AJ
249 return(0);
250}
251
d9346e81
MA
252static int pc_boot_set(void *opaque, const char *boot_device)
253{
254 return set_boot_dev(opaque, boot_device, 0);
255}
256
ba6c2377 257/* hd_table must contain 4 block drivers */
845773ab
IY
258void pc_cmos_init(ram_addr_t ram_size, ram_addr_t above_4g_mem_size,
259 const char *boot_device, DriveInfo **hd_table,
260 FDCtrl *floppy_controller, RTCState *s)
80cabfad 261{
80cabfad 262 int val;
b41a2cd1 263 int fd0, fd1, nb;
ba6c2377 264 int i;
b0a21b53 265
b0a21b53 266 /* various important CMOS locations needed by PC/Bochs bios */
80cabfad
FB
267
268 /* memory size */
333190eb
FB
269 val = 640; /* base memory in K */
270 rtc_set_memory(s, 0x15, val);
271 rtc_set_memory(s, 0x16, val >> 8);
272
80cabfad
FB
273 val = (ram_size / 1024) - 1024;
274 if (val > 65535)
275 val = 65535;
b0a21b53
FB
276 rtc_set_memory(s, 0x17, val);
277 rtc_set_memory(s, 0x18, val >> 8);
278 rtc_set_memory(s, 0x30, val);
279 rtc_set_memory(s, 0x31, val >> 8);
80cabfad 280
00f82b8a
AJ
281 if (above_4g_mem_size) {
282 rtc_set_memory(s, 0x5b, (unsigned int)above_4g_mem_size >> 16);
283 rtc_set_memory(s, 0x5c, (unsigned int)above_4g_mem_size >> 24);
284 rtc_set_memory(s, 0x5d, (uint64_t)above_4g_mem_size >> 32);
285 }
286
9da98861
FB
287 if (ram_size > (16 * 1024 * 1024))
288 val = (ram_size / 65536) - ((16 * 1024 * 1024) / 65536);
289 else
290 val = 0;
80cabfad
FB
291 if (val > 65535)
292 val = 65535;
b0a21b53
FB
293 rtc_set_memory(s, 0x34, val);
294 rtc_set_memory(s, 0x35, val >> 8);
3b46e624 295
298e01b6
AJ
296 /* set the number of CPU */
297 rtc_set_memory(s, 0x5f, smp_cpus - 1);
298
6ac0e82d 299 /* set boot devices, and disable floppy signature check if requested */
d9346e81 300 if (set_boot_dev(s, boot_device, fd_bootchk)) {
28c5af54
JM
301 exit(1);
302 }
80cabfad 303
b41a2cd1
FB
304 /* floppy type */
305
baca51fa
FB
306 fd0 = fdctrl_get_drive_type(floppy_controller, 0);
307 fd1 = fdctrl_get_drive_type(floppy_controller, 1);
80cabfad 308
777428f2 309 val = (cmos_get_fd_drive_type(fd0) << 4) | cmos_get_fd_drive_type(fd1);
b0a21b53 310 rtc_set_memory(s, 0x10, val);
3b46e624 311
b0a21b53 312 val = 0;
b41a2cd1 313 nb = 0;
80cabfad
FB
314 if (fd0 < 3)
315 nb++;
316 if (fd1 < 3)
317 nb++;
318 switch (nb) {
319 case 0:
320 break;
321 case 1:
b0a21b53 322 val |= 0x01; /* 1 drive, ready for boot */
80cabfad
FB
323 break;
324 case 2:
b0a21b53 325 val |= 0x41; /* 2 drives, ready for boot */
80cabfad
FB
326 break;
327 }
b0a21b53
FB
328 val |= 0x02; /* FPU is there */
329 val |= 0x04; /* PS/2 mouse installed */
330 rtc_set_memory(s, REG_EQUIPMENT_BYTE, val);
331
ba6c2377
FB
332 /* hard drives */
333
334 rtc_set_memory(s, 0x12, (hd_table[0] ? 0xf0 : 0) | (hd_table[1] ? 0x0f : 0));
335 if (hd_table[0])
ec2654fb 336 cmos_init_hd(0x19, 0x1b, hd_table[0]->bdrv, s);
5fafdf24 337 if (hd_table[1])
ec2654fb 338 cmos_init_hd(0x1a, 0x24, hd_table[1]->bdrv, s);
ba6c2377
FB
339
340 val = 0;
40b6ecc6 341 for (i = 0; i < 4; i++) {
ba6c2377 342 if (hd_table[i]) {
46d4767d
FB
343 int cylinders, heads, sectors, translation;
344 /* NOTE: bdrv_get_geometry_hint() returns the physical
345 geometry. It is always such that: 1 <= sects <= 63, 1
346 <= heads <= 16, 1 <= cylinders <= 16383. The BIOS
347 geometry can be different if a translation is done. */
f455e98c 348 translation = bdrv_get_translation_hint(hd_table[i]->bdrv);
46d4767d 349 if (translation == BIOS_ATA_TRANSLATION_AUTO) {
f455e98c 350 bdrv_get_geometry_hint(hd_table[i]->bdrv, &cylinders, &heads, &sectors);
46d4767d
FB
351 if (cylinders <= 1024 && heads <= 16 && sectors <= 63) {
352 /* No translation. */
353 translation = 0;
354 } else {
355 /* LBA translation. */
356 translation = 1;
357 }
40b6ecc6 358 } else {
46d4767d 359 translation--;
ba6c2377 360 }
ba6c2377
FB
361 val |= translation << (i * 2);
362 }
40b6ecc6 363 }
ba6c2377 364 rtc_set_memory(s, 0x39, val);
80cabfad
FB
365}
366
59b8ad81
FB
367void ioport_set_a20(int enable)
368{
369 /* XXX: send to all CPUs ? */
370 cpu_x86_set_a20(first_cpu, enable);
371}
372
373int ioport_get_a20(void)
374{
375 return ((first_cpu->a20_mask >> 20) & 1);
376}
377
e1a23744
FB
378static void ioport92_write(void *opaque, uint32_t addr, uint32_t val)
379{
59b8ad81 380 ioport_set_a20((val >> 1) & 1);
e1a23744
FB
381 /* XXX: bit 0 is fast reset */
382}
383
384static uint32_t ioport92_read(void *opaque, uint32_t addr)
385{
59b8ad81 386 return ioport_get_a20() << 1;
e1a23744
FB
387}
388
80cabfad
FB
389/***********************************************************/
390/* Bochs BIOS debug ports */
391
9596ebb7 392static void bochs_bios_write(void *opaque, uint32_t addr, uint32_t val)
80cabfad 393{
a2f659ee
FB
394 static const char shutdown_str[8] = "Shutdown";
395 static int shutdown_index = 0;
3b46e624 396
80cabfad
FB
397 switch(addr) {
398 /* Bochs BIOS messages */
399 case 0x400:
400 case 0x401:
401 fprintf(stderr, "BIOS panic at rombios.c, line %d\n", val);
402 exit(1);
403 case 0x402:
404 case 0x403:
405#ifdef DEBUG_BIOS
406 fprintf(stderr, "%c", val);
407#endif
408 break;
a2f659ee
FB
409 case 0x8900:
410 /* same as Bochs power off */
411 if (val == shutdown_str[shutdown_index]) {
412 shutdown_index++;
413 if (shutdown_index == 8) {
414 shutdown_index = 0;
415 qemu_system_shutdown_request();
416 }
417 } else {
418 shutdown_index = 0;
419 }
420 break;
80cabfad
FB
421
422 /* LGPL'ed VGA BIOS messages */
423 case 0x501:
424 case 0x502:
425 fprintf(stderr, "VGA BIOS panic, line %d\n", val);
426 exit(1);
427 case 0x500:
428 case 0x503:
429#ifdef DEBUG_BIOS
430 fprintf(stderr, "%c", val);
431#endif
432 break;
433 }
434}
435
4c5b10b7
JS
436int e820_add_entry(uint64_t address, uint64_t length, uint32_t type)
437{
438 int index = e820_table.count;
439 struct e820_entry *entry;
440
441 if (index >= E820_NR_ENTRIES)
442 return -EBUSY;
443 entry = &e820_table.entry[index];
444
445 entry->address = address;
446 entry->length = length;
447 entry->type = type;
448
449 e820_table.count++;
450 return e820_table.count;
451}
452
bf483392 453static void *bochs_bios_init(void)
80cabfad 454{
3cce6243 455 void *fw_cfg;
b6f6e3d3
AL
456 uint8_t *smbios_table;
457 size_t smbios_len;
11c2fd3e
AL
458 uint64_t *numa_fw_cfg;
459 int i, j;
3cce6243 460
b41a2cd1
FB
461 register_ioport_write(0x400, 1, 2, bochs_bios_write, NULL);
462 register_ioport_write(0x401, 1, 2, bochs_bios_write, NULL);
463 register_ioport_write(0x402, 1, 1, bochs_bios_write, NULL);
464 register_ioport_write(0x403, 1, 1, bochs_bios_write, NULL);
a2f659ee 465 register_ioport_write(0x8900, 1, 1, bochs_bios_write, NULL);
b41a2cd1
FB
466
467 register_ioport_write(0x501, 1, 2, bochs_bios_write, NULL);
468 register_ioport_write(0x502, 1, 2, bochs_bios_write, NULL);
469 register_ioport_write(0x500, 1, 1, bochs_bios_write, NULL);
470 register_ioport_write(0x503, 1, 1, bochs_bios_write, NULL);
3cce6243
BS
471
472 fw_cfg = fw_cfg_init(BIOS_CFG_IOPORT, BIOS_CFG_IOPORT + 1, 0, 0);
bf483392 473
3cce6243 474 fw_cfg_add_i32(fw_cfg, FW_CFG_ID, 1);
905fdcb5 475 fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size);
80deece2
BS
476 fw_cfg_add_bytes(fw_cfg, FW_CFG_ACPI_TABLES, (uint8_t *)acpi_tables,
477 acpi_tables_len);
6b35e7bf 478 fw_cfg_add_bytes(fw_cfg, FW_CFG_IRQ0_OVERRIDE, &irq0override, 1);
b6f6e3d3
AL
479
480 smbios_table = smbios_get_table(&smbios_len);
481 if (smbios_table)
482 fw_cfg_add_bytes(fw_cfg, FW_CFG_SMBIOS_ENTRIES,
483 smbios_table, smbios_len);
4c5b10b7
JS
484 fw_cfg_add_bytes(fw_cfg, FW_CFG_E820_TABLE, (uint8_t *)&e820_table,
485 sizeof(struct e820_table));
11c2fd3e
AL
486
487 /* allocate memory for the NUMA channel: one (64bit) word for the number
488 * of nodes, one word for each VCPU->node and one word for each node to
489 * hold the amount of memory.
490 */
491 numa_fw_cfg = qemu_mallocz((1 + smp_cpus + nb_numa_nodes) * 8);
492 numa_fw_cfg[0] = cpu_to_le64(nb_numa_nodes);
493 for (i = 0; i < smp_cpus; i++) {
494 for (j = 0; j < nb_numa_nodes; j++) {
495 if (node_cpumask[j] & (1 << i)) {
496 numa_fw_cfg[i + 1] = cpu_to_le64(j);
497 break;
498 }
499 }
500 }
501 for (i = 0; i < nb_numa_nodes; i++) {
502 numa_fw_cfg[smp_cpus + 1 + i] = cpu_to_le64(node_mem[i]);
503 }
504 fw_cfg_add_bytes(fw_cfg, FW_CFG_NUMA, (uint8_t *)numa_fw_cfg,
505 (1 + smp_cpus + nb_numa_nodes) * 8);
bf483392
AG
506
507 return fw_cfg;
80cabfad
FB
508}
509
642a4f96
TS
510static long get_file_size(FILE *f)
511{
512 long where, size;
513
514 /* XXX: on Unix systems, using fstat() probably makes more sense */
515
516 where = ftell(f);
517 fseek(f, 0, SEEK_END);
518 size = ftell(f);
519 fseek(f, where, SEEK_SET);
520
521 return size;
522}
523
f16408df 524static void load_linux(void *fw_cfg,
4fc9af53 525 const char *kernel_filename,
642a4f96 526 const char *initrd_filename,
e6ade764 527 const char *kernel_cmdline,
45a50b16 528 target_phys_addr_t max_ram_size)
642a4f96
TS
529{
530 uint16_t protocol;
5cea8590 531 int setup_size, kernel_size, initrd_size = 0, cmdline_size;
642a4f96 532 uint32_t initrd_max;
57a46d05 533 uint8_t header[8192], *setup, *kernel, *initrd_data;
c227f099 534 target_phys_addr_t real_addr, prot_addr, cmdline_addr, initrd_addr = 0;
45a50b16 535 FILE *f;
bf4e5d92 536 char *vmode;
642a4f96
TS
537
538 /* Align to 16 bytes as a paranoia measure */
539 cmdline_size = (strlen(kernel_cmdline)+16) & ~15;
540
541 /* load the kernel header */
542 f = fopen(kernel_filename, "rb");
543 if (!f || !(kernel_size = get_file_size(f)) ||
f16408df
AG
544 fread(header, 1, MIN(ARRAY_SIZE(header), kernel_size), f) !=
545 MIN(ARRAY_SIZE(header), kernel_size)) {
850810d0
JF
546 fprintf(stderr, "qemu: could not load kernel '%s': %s\n",
547 kernel_filename, strerror(errno));
642a4f96
TS
548 exit(1);
549 }
550
551 /* kernel protocol version */
bc4edd79 552#if 0
642a4f96 553 fprintf(stderr, "header magic: %#x\n", ldl_p(header+0x202));
bc4edd79 554#endif
642a4f96
TS
555 if (ldl_p(header+0x202) == 0x53726448)
556 protocol = lduw_p(header+0x206);
f16408df
AG
557 else {
558 /* This looks like a multiboot kernel. If it is, let's stop
559 treating it like a Linux kernel. */
52001445
AL
560 if (load_multiboot(fw_cfg, f, kernel_filename, initrd_filename,
561 kernel_cmdline, kernel_size, header))
82663ee2 562 return;
642a4f96 563 protocol = 0;
f16408df 564 }
642a4f96
TS
565
566 if (protocol < 0x200 || !(header[0x211] & 0x01)) {
567 /* Low kernel */
a37af289
BS
568 real_addr = 0x90000;
569 cmdline_addr = 0x9a000 - cmdline_size;
570 prot_addr = 0x10000;
642a4f96
TS
571 } else if (protocol < 0x202) {
572 /* High but ancient kernel */
a37af289
BS
573 real_addr = 0x90000;
574 cmdline_addr = 0x9a000 - cmdline_size;
575 prot_addr = 0x100000;
642a4f96
TS
576 } else {
577 /* High and recent kernel */
a37af289
BS
578 real_addr = 0x10000;
579 cmdline_addr = 0x20000;
580 prot_addr = 0x100000;
642a4f96
TS
581 }
582
bc4edd79 583#if 0
642a4f96 584 fprintf(stderr,
526ccb7a
AZ
585 "qemu: real_addr = 0x" TARGET_FMT_plx "\n"
586 "qemu: cmdline_addr = 0x" TARGET_FMT_plx "\n"
587 "qemu: prot_addr = 0x" TARGET_FMT_plx "\n",
a37af289
BS
588 real_addr,
589 cmdline_addr,
590 prot_addr);
bc4edd79 591#endif
642a4f96
TS
592
593 /* highest address for loading the initrd */
594 if (protocol >= 0x203)
595 initrd_max = ldl_p(header+0x22c);
596 else
597 initrd_max = 0x37ffffff;
598
e6ade764
GC
599 if (initrd_max >= max_ram_size-ACPI_DATA_SIZE)
600 initrd_max = max_ram_size-ACPI_DATA_SIZE-1;
642a4f96 601
57a46d05
AG
602 fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_ADDR, cmdline_addr);
603 fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE, strlen(kernel_cmdline)+1);
604 fw_cfg_add_bytes(fw_cfg, FW_CFG_CMDLINE_DATA,
605 (uint8_t*)strdup(kernel_cmdline),
606 strlen(kernel_cmdline)+1);
642a4f96
TS
607
608 if (protocol >= 0x202) {
a37af289 609 stl_p(header+0x228, cmdline_addr);
642a4f96
TS
610 } else {
611 stw_p(header+0x20, 0xA33F);
612 stw_p(header+0x22, cmdline_addr-real_addr);
613 }
614
bf4e5d92
PT
615 /* handle vga= parameter */
616 vmode = strstr(kernel_cmdline, "vga=");
617 if (vmode) {
618 unsigned int video_mode;
619 /* skip "vga=" */
620 vmode += 4;
621 if (!strncmp(vmode, "normal", 6)) {
622 video_mode = 0xffff;
623 } else if (!strncmp(vmode, "ext", 3)) {
624 video_mode = 0xfffe;
625 } else if (!strncmp(vmode, "ask", 3)) {
626 video_mode = 0xfffd;
627 } else {
628 video_mode = strtol(vmode, NULL, 0);
629 }
630 stw_p(header+0x1fa, video_mode);
631 }
632
642a4f96
TS
633 /* loader type */
634 /* High nybble = B reserved for Qemu; low nybble is revision number.
635 If this code is substantially changed, you may want to consider
636 incrementing the revision. */
637 if (protocol >= 0x200)
638 header[0x210] = 0xB0;
639
640 /* heap */
641 if (protocol >= 0x201) {
642 header[0x211] |= 0x80; /* CAN_USE_HEAP */
643 stw_p(header+0x224, cmdline_addr-real_addr-0x200);
644 }
645
646 /* load initrd */
647 if (initrd_filename) {
648 if (protocol < 0x200) {
649 fprintf(stderr, "qemu: linux kernel too old to load a ram disk\n");
650 exit(1);
651 }
652
45a50b16 653 initrd_size = get_image_size(initrd_filename);
d6fa4b77
MK
654 if (initrd_size < 0) {
655 fprintf(stderr, "qemu: error reading initrd %s\n",
656 initrd_filename);
657 exit(1);
658 }
659
45a50b16 660 initrd_addr = (initrd_max-initrd_size) & ~4095;
57a46d05
AG
661
662 initrd_data = qemu_malloc(initrd_size);
663 load_image(initrd_filename, initrd_data);
664
665 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, initrd_addr);
666 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size);
667 fw_cfg_add_bytes(fw_cfg, FW_CFG_INITRD_DATA, initrd_data, initrd_size);
642a4f96 668
a37af289 669 stl_p(header+0x218, initrd_addr);
642a4f96
TS
670 stl_p(header+0x21c, initrd_size);
671 }
672
45a50b16 673 /* load kernel and setup */
642a4f96
TS
674 setup_size = header[0x1f1];
675 if (setup_size == 0)
676 setup_size = 4;
642a4f96 677 setup_size = (setup_size+1)*512;
45a50b16 678 kernel_size -= setup_size;
642a4f96 679
45a50b16
GH
680 setup = qemu_malloc(setup_size);
681 kernel = qemu_malloc(kernel_size);
682 fseek(f, 0, SEEK_SET);
5a41ecc5
KS
683 if (fread(setup, 1, setup_size, f) != setup_size) {
684 fprintf(stderr, "fread() failed\n");
685 exit(1);
686 }
687 if (fread(kernel, 1, kernel_size, f) != kernel_size) {
688 fprintf(stderr, "fread() failed\n");
689 exit(1);
690 }
642a4f96 691 fclose(f);
45a50b16 692 memcpy(setup, header, MIN(sizeof(header), setup_size));
57a46d05
AG
693
694 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, prot_addr);
695 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size);
696 fw_cfg_add_bytes(fw_cfg, FW_CFG_KERNEL_DATA, kernel, kernel_size);
697
698 fw_cfg_add_i32(fw_cfg, FW_CFG_SETUP_ADDR, real_addr);
699 fw_cfg_add_i32(fw_cfg, FW_CFG_SETUP_SIZE, setup_size);
700 fw_cfg_add_bytes(fw_cfg, FW_CFG_SETUP_DATA, setup, setup_size);
701
702 option_rom[nb_option_roms] = "linuxboot.bin";
703 nb_option_roms++;
642a4f96
TS
704}
705
b41a2cd1
FB
706#define NE2000_NB_MAX 6
707
675d6f82
BS
708static const int ne2000_io[NE2000_NB_MAX] = { 0x300, 0x320, 0x340, 0x360,
709 0x280, 0x380 };
710static const int ne2000_irq[NE2000_NB_MAX] = { 9, 10, 11, 3, 4, 5 };
b41a2cd1 711
675d6f82
BS
712static const int parallel_io[MAX_PARALLEL_PORTS] = { 0x378, 0x278, 0x3bc };
713static const int parallel_irq[MAX_PARALLEL_PORTS] = { 7, 7, 7 };
6508fe59 714
6a36d84e 715#ifdef HAS_AUDIO
845773ab 716void pc_audio_init (PCIBus *pci_bus, qemu_irq *pic)
6a36d84e
FB
717{
718 struct soundhw *c;
6a36d84e 719
3a8bae3e 720 for (c = soundhw; c->name; ++c) {
721 if (c->enabled) {
722 if (c->isa) {
723 c->init.init_isa(pic);
724 } else {
725 if (pci_bus) {
726 c->init.init_pci(pci_bus);
6a36d84e
FB
727 }
728 }
729 }
730 }
731}
732#endif
733
845773ab 734void pc_init_ne2k_isa(NICInfo *nd)
a41b2ff2
PB
735{
736 static int nb_ne2k = 0;
737
738 if (nb_ne2k == NE2000_NB_MAX)
739 return;
3a38d437 740 isa_ne2000_init(ne2000_io[nb_ne2k],
9453c5bc 741 ne2000_irq[nb_ne2k], nd);
a41b2ff2
PB
742 nb_ne2k++;
743}
744
678e12cc
GN
745int cpu_is_bsp(CPUState *env)
746{
6cb2996c
JK
747 /* We hard-wire the BSP to the first CPU. */
748 return env->cpu_index == 0;
678e12cc
GN
749}
750
53b67b30
BS
751/* set CMOS shutdown status register (index 0xF) as S3_resume(0xFE)
752 BIOS will read it and start S3 resume at POST Entry */
845773ab 753void pc_cmos_set_s3_resume(void *opaque, int irq, int level)
53b67b30
BS
754{
755 RTCState *s = opaque;
756
757 if (level) {
758 rtc_set_memory(s, 0xF, 0xFE);
759 }
760}
761
845773ab 762void pc_acpi_smi_interrupt(void *opaque, int irq, int level)
53b67b30
BS
763{
764 CPUState *s = opaque;
765
766 if (level) {
767 cpu_interrupt(s, CPU_INTERRUPT_SMI);
768 }
769}
770
3a31f36a
JK
771static CPUState *pc_new_cpu(const char *cpu_model)
772{
773 CPUState *env;
774
775 env = cpu_init(cpu_model);
776 if (!env) {
777 fprintf(stderr, "Unable to find x86 CPU definition\n");
778 exit(1);
779 }
780 if ((env->cpuid_features & CPUID_APIC) || smp_cpus > 1) {
781 env->cpuid_apic_id = env->cpu_index;
782 /* APIC reset callback resets cpu */
783 apic_init(env);
784 } else {
785 qemu_register_reset((QEMUResetHandler*)cpu_reset, env);
786 }
787 return env;
788}
789
845773ab 790void pc_cpus_init(const char *cpu_model)
70166477
IY
791{
792 int i;
793
794 /* init CPUs */
795 if (cpu_model == NULL) {
796#ifdef TARGET_X86_64
797 cpu_model = "qemu64";
798#else
799 cpu_model = "qemu32";
800#endif
801 }
802
803 for(i = 0; i < smp_cpus; i++) {
804 pc_new_cpu(cpu_model);
805 }
806}
807
845773ab
IY
808void pc_memory_init(ram_addr_t ram_size,
809 const char *kernel_filename,
810 const char *kernel_cmdline,
811 const char *initrd_filename,
812 ram_addr_t *below_4g_mem_size_p,
813 ram_addr_t *above_4g_mem_size_p)
80cabfad 814{
5cea8590 815 char *filename;
642a4f96 816 int ret, linux_boot, i;
c227f099
AL
817 ram_addr_t ram_addr, bios_offset, option_rom_offset;
818 ram_addr_t below_4g_mem_size, above_4g_mem_size = 0;
45a50b16 819 int bios_size, isa_bios_size;
3d53f5c3 820 void **fw_cfg;
d592d303 821
00f82b8a
AJ
822 if (ram_size >= 0xe0000000 ) {
823 above_4g_mem_size = ram_size - 0xe0000000;
824 below_4g_mem_size = 0xe0000000;
825 } else {
826 below_4g_mem_size = ram_size;
827 }
3d53f5c3
IY
828 *above_4g_mem_size_p = above_4g_mem_size;
829 *below_4g_mem_size_p = below_4g_mem_size;
00f82b8a 830
80cabfad
FB
831 linux_boot = (kernel_filename != NULL);
832
833 /* allocate RAM */
60e4c631 834 ram_addr = qemu_ram_alloc(below_4g_mem_size);
82b36dc3 835 cpu_register_physical_memory(0, 0xa0000, ram_addr);
82b36dc3
AL
836 cpu_register_physical_memory(0x100000,
837 below_4g_mem_size - 0x100000,
60e4c631 838 ram_addr + 0x100000);
00f82b8a
AJ
839
840 /* above 4giga memory allocation */
841 if (above_4g_mem_size > 0) {
8a637d44
PB
842#if TARGET_PHYS_ADDR_BITS == 32
843 hw_error("To much RAM for 32-bit physical address");
844#else
82b36dc3
AL
845 ram_addr = qemu_ram_alloc(above_4g_mem_size);
846 cpu_register_physical_memory(0x100000000ULL,
526ccb7a 847 above_4g_mem_size,
82b36dc3 848 ram_addr);
8a637d44 849#endif
00f82b8a 850 }
80cabfad 851
82b36dc3 852
970ac5a3 853 /* BIOS load */
1192dad8
JM
854 if (bios_name == NULL)
855 bios_name = BIOS_FILENAME;
5cea8590
PB
856 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
857 if (filename) {
858 bios_size = get_image_size(filename);
859 } else {
860 bios_size = -1;
861 }
5fafdf24 862 if (bios_size <= 0 ||
970ac5a3 863 (bios_size % 65536) != 0) {
7587cf44
FB
864 goto bios_error;
865 }
970ac5a3 866 bios_offset = qemu_ram_alloc(bios_size);
51edd4e6
GH
867 ret = rom_add_file_fixed(bios_name, (uint32_t)(-bios_size));
868 if (ret != 0) {
7587cf44 869 bios_error:
5cea8590 870 fprintf(stderr, "qemu: could not load PC BIOS '%s'\n", bios_name);
80cabfad
FB
871 exit(1);
872 }
5cea8590
PB
873 if (filename) {
874 qemu_free(filename);
875 }
7587cf44
FB
876 /* map the last 128KB of the BIOS in ISA space */
877 isa_bios_size = bios_size;
878 if (isa_bios_size > (128 * 1024))
879 isa_bios_size = 128 * 1024;
5fafdf24
TS
880 cpu_register_physical_memory(0x100000 - isa_bios_size,
881 isa_bios_size,
7587cf44 882 (bios_offset + bios_size - isa_bios_size) | IO_MEM_ROM);
9ae02555 883
45a50b16
GH
884 option_rom_offset = qemu_ram_alloc(PC_ROM_SIZE);
885 cpu_register_physical_memory(PC_ROM_MIN_VGA, PC_ROM_SIZE, option_rom_offset);
f753ff16 886
1d108d97
AG
887 /* map all the bios at the top of memory */
888 cpu_register_physical_memory((uint32_t)(-bios_size),
889 bios_size, bios_offset | IO_MEM_ROM);
890
bf483392 891 fw_cfg = bochs_bios_init();
8832cb80 892 rom_set_fw(fw_cfg);
1d108d97 893
f753ff16 894 if (linux_boot) {
3d53f5c3 895 load_linux(*fw_cfg, kernel_filename, initrd_filename, kernel_cmdline, below_4g_mem_size);
f753ff16
PB
896 }
897
898 for (i = 0; i < nb_option_roms; i++) {
45a50b16 899 rom_add_option(option_rom[i]);
406c8df3 900 }
3d53f5c3
IY
901}
902
845773ab
IY
903qemu_irq *pc_allocate_cpu_irq(void)
904{
905 return qemu_allocate_irqs(pic_irq_request, NULL, 1);
906}
907
908void pc_vga_init(PCIBus *pci_bus)
765d7908
IY
909{
910 if (cirrus_vga_enabled) {
911 if (pci_bus) {
912 pci_cirrus_vga_init(pci_bus);
913 } else {
914 isa_cirrus_vga_init();
915 }
916 } else if (vmsvga_enabled) {
917 if (pci_bus)
918 pci_vmsvga_init(pci_bus);
919 else
920 fprintf(stderr, "%s: vmware_vga: no PCI bus\n", __FUNCTION__);
921 } else if (std_vga_enabled) {
922 if (pci_bus) {
923 pci_vga_init(pci_bus, 0, 0);
924 } else {
925 isa_vga_init();
926 }
927 }
928}
929
845773ab
IY
930void pc_basic_device_init(qemu_irq *isa_irq,
931 FDCtrl **floppy_controller,
932 RTCState **rtc_state)
ffe513da
IY
933{
934 int i;
935 DriveInfo *fd[MAX_FD];
936 PITState *pit;
937
938 register_ioport_write(0x80, 1, 1, ioport80_write, NULL);
939
940 register_ioport_write(0xf0, 1, 1, ioportF0_write, NULL);
941
942 *rtc_state = rtc_init(2000);
943
944 qemu_register_boot_set(pc_boot_set, *rtc_state);
945
946 register_ioport_read(0x92, 1, 1, ioport92_read, NULL);
947 register_ioport_write(0x92, 1, 1, ioport92_write, NULL);
948
949 pit = pit_init(0x40, isa_reserve_irq(0));
950 pcspk_init(pit);
951 if (!no_hpet) {
952 hpet_init(isa_irq);
953 }
954
955 for(i = 0; i < MAX_SERIAL_PORTS; i++) {
956 if (serial_hds[i]) {
957 serial_isa_init(i, serial_hds[i]);
958 }
959 }
960
961 for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
962 if (parallel_hds[i]) {
963 parallel_init(i, parallel_hds[i]);
964 }
965 }
966
967 isa_create_simple("i8042");
968 DMA_init(0);
969
970 for(i = 0; i < MAX_FD; i++) {
971 fd[i] = drive_get(IF_FLOPPY, 0, i);
972 }
973 *floppy_controller = fdctrl_init_isa(fd);
974}
975
845773ab 976void pc_pci_device_init(PCIBus *pci_bus)
e3a5cf42
IY
977{
978 int max_bus;
979 int bus;
980
981 max_bus = drive_get_max_bus(IF_SCSI);
982 for (bus = 0; bus <= max_bus; bus++) {
983 pci_create_simple(pci_bus, -1, "lsi53c895a");
984 }
985}