]>
Commit | Line | Data |
---|---|---|
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" | |
26 | #include "fdc.h" | |
27 | #include "pci.h" | |
28 | #include "block.h" | |
29 | #include "sysemu.h" | |
30 | #include "audio/audio.h" | |
31 | #include "net.h" | |
32 | #include "smbus.h" | |
33 | #include "boards.h" | |
80cabfad | 34 | |
b41a2cd1 FB |
35 | /* output Bochs bios info messages */ |
36 | //#define DEBUG_BIOS | |
37 | ||
80cabfad FB |
38 | #define BIOS_FILENAME "bios.bin" |
39 | #define VGABIOS_FILENAME "vgabios.bin" | |
de9258a8 | 40 | #define VGABIOS_CIRRUS_FILENAME "vgabios-cirrus.bin" |
80cabfad | 41 | |
a80274c3 PB |
42 | /* Leave a chunk of memory at the top of RAM for the BIOS ACPI tables. */ |
43 | #define ACPI_DATA_SIZE 0x10000 | |
80cabfad | 44 | |
baca51fa | 45 | static fdctrl_t *floppy_controller; |
b0a21b53 | 46 | static RTCState *rtc_state; |
ec844b96 | 47 | static PITState *pit; |
d592d303 | 48 | static IOAPICState *ioapic; |
a5954d5c | 49 | static PCIDevice *i440fx_state; |
80cabfad | 50 | |
b41a2cd1 | 51 | static void ioport80_write(void *opaque, uint32_t addr, uint32_t data) |
80cabfad FB |
52 | { |
53 | } | |
54 | ||
f929aad6 | 55 | /* MSDOS compatibility mode FPU exception support */ |
d537cf6c | 56 | static qemu_irq ferr_irq; |
f929aad6 FB |
57 | /* XXX: add IGNNE support */ |
58 | void cpu_set_ferr(CPUX86State *s) | |
59 | { | |
d537cf6c | 60 | qemu_irq_raise(ferr_irq); |
f929aad6 FB |
61 | } |
62 | ||
63 | static void ioportF0_write(void *opaque, uint32_t addr, uint32_t data) | |
64 | { | |
d537cf6c | 65 | qemu_irq_lower(ferr_irq); |
f929aad6 FB |
66 | } |
67 | ||
28ab0e2e | 68 | /* TSC handling */ |
28ab0e2e FB |
69 | uint64_t cpu_get_tsc(CPUX86State *env) |
70 | { | |
1dce7c3c FB |
71 | /* Note: when using kqemu, it is more logical to return the host TSC |
72 | because kqemu does not trap the RDTSC instruction for | |
73 | performance reasons */ | |
74 | #if USE_KQEMU | |
75 | if (env->kqemu_enabled) { | |
76 | return cpu_get_real_ticks(); | |
5fafdf24 | 77 | } else |
1dce7c3c FB |
78 | #endif |
79 | { | |
80 | return cpu_get_ticks(); | |
81 | } | |
28ab0e2e FB |
82 | } |
83 | ||
a5954d5c FB |
84 | /* SMM support */ |
85 | void cpu_smm_update(CPUState *env) | |
86 | { | |
87 | if (i440fx_state && env == first_cpu) | |
88 | i440fx_set_smm(i440fx_state, (env->hflags >> HF_SMM_SHIFT) & 1); | |
89 | } | |
90 | ||
91 | ||
3de388f6 FB |
92 | /* IRQ handling */ |
93 | int cpu_get_pic_interrupt(CPUState *env) | |
94 | { | |
95 | int intno; | |
96 | ||
3de388f6 FB |
97 | intno = apic_get_interrupt(env); |
98 | if (intno >= 0) { | |
99 | /* set irq request if a PIC irq is still pending */ | |
100 | /* XXX: improve that */ | |
5fafdf24 | 101 | pic_update_irq(isa_pic); |
3de388f6 FB |
102 | return intno; |
103 | } | |
3de388f6 | 104 | /* read the irq from the PIC */ |
0e21e12b TS |
105 | if (!apic_accept_pic_intr(env)) |
106 | return -1; | |
107 | ||
3de388f6 FB |
108 | intno = pic_read_irq(isa_pic); |
109 | return intno; | |
110 | } | |
111 | ||
d537cf6c | 112 | static void pic_irq_request(void *opaque, int irq, int level) |
3de388f6 | 113 | { |
59b8ad81 | 114 | CPUState *env = opaque; |
0e21e12b | 115 | if (level && apic_accept_pic_intr(env)) |
59b8ad81 | 116 | cpu_interrupt(env, CPU_INTERRUPT_HARD); |
3de388f6 FB |
117 | } |
118 | ||
b0a21b53 FB |
119 | /* PC cmos mappings */ |
120 | ||
80cabfad FB |
121 | #define REG_EQUIPMENT_BYTE 0x14 |
122 | ||
777428f2 FB |
123 | static int cmos_get_fd_drive_type(int fd0) |
124 | { | |
125 | int val; | |
126 | ||
127 | switch (fd0) { | |
128 | case 0: | |
129 | /* 1.44 Mb 3"5 drive */ | |
130 | val = 4; | |
131 | break; | |
132 | case 1: | |
133 | /* 2.88 Mb 3"5 drive */ | |
134 | val = 5; | |
135 | break; | |
136 | case 2: | |
137 | /* 1.2 Mb 5"5 drive */ | |
138 | val = 2; | |
139 | break; | |
140 | default: | |
141 | val = 0; | |
142 | break; | |
143 | } | |
144 | return val; | |
145 | } | |
146 | ||
5fafdf24 | 147 | static void cmos_init_hd(int type_ofs, int info_ofs, BlockDriverState *hd) |
ba6c2377 FB |
148 | { |
149 | RTCState *s = rtc_state; | |
150 | int cylinders, heads, sectors; | |
151 | bdrv_get_geometry_hint(hd, &cylinders, &heads, §ors); | |
152 | rtc_set_memory(s, type_ofs, 47); | |
153 | rtc_set_memory(s, info_ofs, cylinders); | |
154 | rtc_set_memory(s, info_ofs + 1, cylinders >> 8); | |
155 | rtc_set_memory(s, info_ofs + 2, heads); | |
156 | rtc_set_memory(s, info_ofs + 3, 0xff); | |
157 | rtc_set_memory(s, info_ofs + 4, 0xff); | |
158 | rtc_set_memory(s, info_ofs + 5, 0xc0 | ((heads > 8) << 3)); | |
159 | rtc_set_memory(s, info_ofs + 6, cylinders); | |
160 | rtc_set_memory(s, info_ofs + 7, cylinders >> 8); | |
161 | rtc_set_memory(s, info_ofs + 8, sectors); | |
162 | } | |
163 | ||
6ac0e82d AZ |
164 | /* convert boot_device letter to something recognizable by the bios */ |
165 | static int boot_device2nibble(char boot_device) | |
166 | { | |
167 | switch(boot_device) { | |
168 | case 'a': | |
169 | case 'b': | |
170 | return 0x01; /* floppy boot */ | |
171 | case 'c': | |
172 | return 0x02; /* hard drive boot */ | |
173 | case 'd': | |
174 | return 0x03; /* CD-ROM boot */ | |
175 | case 'n': | |
176 | return 0x04; /* Network boot */ | |
177 | } | |
178 | return 0; | |
179 | } | |
180 | ||
ba6c2377 | 181 | /* hd_table must contain 4 block drivers */ |
6ac0e82d | 182 | static void cmos_init(int ram_size, const char *boot_device, BlockDriverState **hd_table) |
80cabfad | 183 | { |
b0a21b53 | 184 | RTCState *s = rtc_state; |
28c5af54 | 185 | int nbds, bds[3] = { 0, }; |
80cabfad | 186 | int val; |
b41a2cd1 | 187 | int fd0, fd1, nb; |
ba6c2377 | 188 | int i; |
b0a21b53 | 189 | |
b0a21b53 | 190 | /* various important CMOS locations needed by PC/Bochs bios */ |
80cabfad FB |
191 | |
192 | /* memory size */ | |
333190eb FB |
193 | val = 640; /* base memory in K */ |
194 | rtc_set_memory(s, 0x15, val); | |
195 | rtc_set_memory(s, 0x16, val >> 8); | |
196 | ||
80cabfad FB |
197 | val = (ram_size / 1024) - 1024; |
198 | if (val > 65535) | |
199 | val = 65535; | |
b0a21b53 FB |
200 | rtc_set_memory(s, 0x17, val); |
201 | rtc_set_memory(s, 0x18, val >> 8); | |
202 | rtc_set_memory(s, 0x30, val); | |
203 | rtc_set_memory(s, 0x31, val >> 8); | |
80cabfad | 204 | |
9da98861 FB |
205 | if (ram_size > (16 * 1024 * 1024)) |
206 | val = (ram_size / 65536) - ((16 * 1024 * 1024) / 65536); | |
207 | else | |
208 | val = 0; | |
80cabfad FB |
209 | if (val > 65535) |
210 | val = 65535; | |
b0a21b53 FB |
211 | rtc_set_memory(s, 0x34, val); |
212 | rtc_set_memory(s, 0x35, val >> 8); | |
3b46e624 | 213 | |
6ac0e82d | 214 | /* set boot devices, and disable floppy signature check if requested */ |
28c5af54 JM |
215 | #define PC_MAX_BOOT_DEVICES 3 |
216 | nbds = strlen(boot_device); | |
217 | if (nbds > PC_MAX_BOOT_DEVICES) { | |
218 | fprintf(stderr, "Too many boot devices for PC\n"); | |
219 | exit(1); | |
220 | } | |
221 | for (i = 0; i < nbds; i++) { | |
222 | bds[i] = boot_device2nibble(boot_device[i]); | |
223 | if (bds[i] == 0) { | |
224 | fprintf(stderr, "Invalid boot device for PC: '%c'\n", | |
225 | boot_device[i]); | |
226 | exit(1); | |
227 | } | |
228 | } | |
229 | rtc_set_memory(s, 0x3d, (bds[1] << 4) | bds[0]); | |
230 | rtc_set_memory(s, 0x38, (bds[2] << 4) | (fd_bootchk ? 0x0 : 0x1)); | |
80cabfad | 231 | |
b41a2cd1 FB |
232 | /* floppy type */ |
233 | ||
baca51fa FB |
234 | fd0 = fdctrl_get_drive_type(floppy_controller, 0); |
235 | fd1 = fdctrl_get_drive_type(floppy_controller, 1); | |
80cabfad | 236 | |
777428f2 | 237 | val = (cmos_get_fd_drive_type(fd0) << 4) | cmos_get_fd_drive_type(fd1); |
b0a21b53 | 238 | rtc_set_memory(s, 0x10, val); |
3b46e624 | 239 | |
b0a21b53 | 240 | val = 0; |
b41a2cd1 | 241 | nb = 0; |
80cabfad FB |
242 | if (fd0 < 3) |
243 | nb++; | |
244 | if (fd1 < 3) | |
245 | nb++; | |
246 | switch (nb) { | |
247 | case 0: | |
248 | break; | |
249 | case 1: | |
b0a21b53 | 250 | val |= 0x01; /* 1 drive, ready for boot */ |
80cabfad FB |
251 | break; |
252 | case 2: | |
b0a21b53 | 253 | val |= 0x41; /* 2 drives, ready for boot */ |
80cabfad FB |
254 | break; |
255 | } | |
b0a21b53 FB |
256 | val |= 0x02; /* FPU is there */ |
257 | val |= 0x04; /* PS/2 mouse installed */ | |
258 | rtc_set_memory(s, REG_EQUIPMENT_BYTE, val); | |
259 | ||
ba6c2377 FB |
260 | /* hard drives */ |
261 | ||
262 | rtc_set_memory(s, 0x12, (hd_table[0] ? 0xf0 : 0) | (hd_table[1] ? 0x0f : 0)); | |
263 | if (hd_table[0]) | |
264 | cmos_init_hd(0x19, 0x1b, hd_table[0]); | |
5fafdf24 | 265 | if (hd_table[1]) |
ba6c2377 FB |
266 | cmos_init_hd(0x1a, 0x24, hd_table[1]); |
267 | ||
268 | val = 0; | |
40b6ecc6 | 269 | for (i = 0; i < 4; i++) { |
ba6c2377 | 270 | if (hd_table[i]) { |
46d4767d FB |
271 | int cylinders, heads, sectors, translation; |
272 | /* NOTE: bdrv_get_geometry_hint() returns the physical | |
273 | geometry. It is always such that: 1 <= sects <= 63, 1 | |
274 | <= heads <= 16, 1 <= cylinders <= 16383. The BIOS | |
275 | geometry can be different if a translation is done. */ | |
276 | translation = bdrv_get_translation_hint(hd_table[i]); | |
277 | if (translation == BIOS_ATA_TRANSLATION_AUTO) { | |
278 | bdrv_get_geometry_hint(hd_table[i], &cylinders, &heads, §ors); | |
279 | if (cylinders <= 1024 && heads <= 16 && sectors <= 63) { | |
280 | /* No translation. */ | |
281 | translation = 0; | |
282 | } else { | |
283 | /* LBA translation. */ | |
284 | translation = 1; | |
285 | } | |
40b6ecc6 | 286 | } else { |
46d4767d | 287 | translation--; |
ba6c2377 | 288 | } |
ba6c2377 FB |
289 | val |= translation << (i * 2); |
290 | } | |
40b6ecc6 | 291 | } |
ba6c2377 | 292 | rtc_set_memory(s, 0x39, val); |
80cabfad FB |
293 | } |
294 | ||
59b8ad81 FB |
295 | void ioport_set_a20(int enable) |
296 | { | |
297 | /* XXX: send to all CPUs ? */ | |
298 | cpu_x86_set_a20(first_cpu, enable); | |
299 | } | |
300 | ||
301 | int ioport_get_a20(void) | |
302 | { | |
303 | return ((first_cpu->a20_mask >> 20) & 1); | |
304 | } | |
305 | ||
e1a23744 FB |
306 | static void ioport92_write(void *opaque, uint32_t addr, uint32_t val) |
307 | { | |
59b8ad81 | 308 | ioport_set_a20((val >> 1) & 1); |
e1a23744 FB |
309 | /* XXX: bit 0 is fast reset */ |
310 | } | |
311 | ||
312 | static uint32_t ioport92_read(void *opaque, uint32_t addr) | |
313 | { | |
59b8ad81 | 314 | return ioport_get_a20() << 1; |
e1a23744 FB |
315 | } |
316 | ||
80cabfad FB |
317 | /***********************************************************/ |
318 | /* Bochs BIOS debug ports */ | |
319 | ||
9596ebb7 | 320 | static void bochs_bios_write(void *opaque, uint32_t addr, uint32_t val) |
80cabfad | 321 | { |
a2f659ee FB |
322 | static const char shutdown_str[8] = "Shutdown"; |
323 | static int shutdown_index = 0; | |
3b46e624 | 324 | |
80cabfad FB |
325 | switch(addr) { |
326 | /* Bochs BIOS messages */ | |
327 | case 0x400: | |
328 | case 0x401: | |
329 | fprintf(stderr, "BIOS panic at rombios.c, line %d\n", val); | |
330 | exit(1); | |
331 | case 0x402: | |
332 | case 0x403: | |
333 | #ifdef DEBUG_BIOS | |
334 | fprintf(stderr, "%c", val); | |
335 | #endif | |
336 | break; | |
a2f659ee FB |
337 | case 0x8900: |
338 | /* same as Bochs power off */ | |
339 | if (val == shutdown_str[shutdown_index]) { | |
340 | shutdown_index++; | |
341 | if (shutdown_index == 8) { | |
342 | shutdown_index = 0; | |
343 | qemu_system_shutdown_request(); | |
344 | } | |
345 | } else { | |
346 | shutdown_index = 0; | |
347 | } | |
348 | break; | |
80cabfad FB |
349 | |
350 | /* LGPL'ed VGA BIOS messages */ | |
351 | case 0x501: | |
352 | case 0x502: | |
353 | fprintf(stderr, "VGA BIOS panic, line %d\n", val); | |
354 | exit(1); | |
355 | case 0x500: | |
356 | case 0x503: | |
357 | #ifdef DEBUG_BIOS | |
358 | fprintf(stderr, "%c", val); | |
359 | #endif | |
360 | break; | |
361 | } | |
362 | } | |
363 | ||
9596ebb7 | 364 | static void bochs_bios_init(void) |
80cabfad | 365 | { |
b41a2cd1 FB |
366 | register_ioport_write(0x400, 1, 2, bochs_bios_write, NULL); |
367 | register_ioport_write(0x401, 1, 2, bochs_bios_write, NULL); | |
368 | register_ioport_write(0x402, 1, 1, bochs_bios_write, NULL); | |
369 | register_ioport_write(0x403, 1, 1, bochs_bios_write, NULL); | |
a2f659ee | 370 | register_ioport_write(0x8900, 1, 1, bochs_bios_write, NULL); |
b41a2cd1 FB |
371 | |
372 | register_ioport_write(0x501, 1, 2, bochs_bios_write, NULL); | |
373 | register_ioport_write(0x502, 1, 2, bochs_bios_write, NULL); | |
374 | register_ioport_write(0x500, 1, 1, bochs_bios_write, NULL); | |
375 | register_ioport_write(0x503, 1, 1, bochs_bios_write, NULL); | |
80cabfad FB |
376 | } |
377 | ||
642a4f96 TS |
378 | /* Generate an initial boot sector which sets state and jump to |
379 | a specified vector */ | |
3f6c925f | 380 | static void generate_bootsect(uint32_t gpr[8], uint16_t segs[6], uint16_t ip) |
642a4f96 TS |
381 | { |
382 | uint8_t bootsect[512], *p; | |
383 | int i; | |
384 | ||
385 | if (bs_table[0] == NULL) { | |
386 | fprintf(stderr, "A disk image must be given for 'hda' when booting " | |
387 | "a Linux kernel\n"); | |
388 | exit(1); | |
389 | } | |
390 | ||
391 | memset(bootsect, 0, sizeof(bootsect)); | |
392 | ||
393 | /* Copy the MSDOS partition table if possible */ | |
394 | bdrv_read(bs_table[0], 0, bootsect, 1); | |
395 | ||
396 | /* Make sure we have a partition signature */ | |
397 | bootsect[510] = 0x55; | |
398 | bootsect[511] = 0xaa; | |
399 | ||
400 | /* Actual code */ | |
401 | p = bootsect; | |
402 | *p++ = 0xfa; /* CLI */ | |
403 | *p++ = 0xfc; /* CLD */ | |
404 | ||
405 | for (i = 0; i < 6; i++) { | |
406 | if (i == 1) /* Skip CS */ | |
407 | continue; | |
408 | ||
409 | *p++ = 0xb8; /* MOV AX,imm16 */ | |
410 | *p++ = segs[i]; | |
411 | *p++ = segs[i] >> 8; | |
412 | *p++ = 0x8e; /* MOV <seg>,AX */ | |
413 | *p++ = 0xc0 + (i << 3); | |
414 | } | |
415 | ||
416 | for (i = 0; i < 8; i++) { | |
417 | *p++ = 0x66; /* 32-bit operand size */ | |
418 | *p++ = 0xb8 + i; /* MOV <reg>,imm32 */ | |
419 | *p++ = gpr[i]; | |
420 | *p++ = gpr[i] >> 8; | |
421 | *p++ = gpr[i] >> 16; | |
422 | *p++ = gpr[i] >> 24; | |
423 | } | |
424 | ||
425 | *p++ = 0xea; /* JMP FAR */ | |
426 | *p++ = ip; /* IP */ | |
427 | *p++ = ip >> 8; | |
428 | *p++ = segs[1]; /* CS */ | |
429 | *p++ = segs[1] >> 8; | |
430 | ||
431 | bdrv_set_boot_sector(bs_table[0], bootsect, sizeof(bootsect)); | |
432 | } | |
80cabfad | 433 | |
9596ebb7 PB |
434 | static int load_kernel(const char *filename, uint8_t *addr, |
435 | uint8_t *real_addr) | |
80cabfad FB |
436 | { |
437 | int fd, size; | |
438 | int setup_sects; | |
439 | ||
096b7ea4 | 440 | fd = open(filename, O_RDONLY | O_BINARY); |
80cabfad FB |
441 | if (fd < 0) |
442 | return -1; | |
443 | ||
444 | /* load 16 bit code */ | |
445 | if (read(fd, real_addr, 512) != 512) | |
446 | goto fail; | |
447 | setup_sects = real_addr[0x1F1]; | |
448 | if (!setup_sects) | |
449 | setup_sects = 4; | |
5fafdf24 | 450 | if (read(fd, real_addr + 512, setup_sects * 512) != |
80cabfad FB |
451 | setup_sects * 512) |
452 | goto fail; | |
642a4f96 | 453 | |
80cabfad FB |
454 | /* load 32 bit code */ |
455 | size = read(fd, addr, 16 * 1024 * 1024); | |
456 | if (size < 0) | |
457 | goto fail; | |
458 | close(fd); | |
459 | return size; | |
460 | fail: | |
461 | close(fd); | |
462 | return -1; | |
463 | } | |
464 | ||
642a4f96 TS |
465 | static long get_file_size(FILE *f) |
466 | { | |
467 | long where, size; | |
468 | ||
469 | /* XXX: on Unix systems, using fstat() probably makes more sense */ | |
470 | ||
471 | where = ftell(f); | |
472 | fseek(f, 0, SEEK_END); | |
473 | size = ftell(f); | |
474 | fseek(f, where, SEEK_SET); | |
475 | ||
476 | return size; | |
477 | } | |
478 | ||
479 | static void load_linux(const char *kernel_filename, | |
480 | const char *initrd_filename, | |
481 | const char *kernel_cmdline) | |
482 | { | |
483 | uint16_t protocol; | |
484 | uint32_t gpr[8]; | |
485 | uint16_t seg[6]; | |
486 | uint16_t real_seg; | |
487 | int setup_size, kernel_size, initrd_size, cmdline_size; | |
488 | uint32_t initrd_max; | |
489 | uint8_t header[1024]; | |
490 | uint8_t *real_addr, *prot_addr, *cmdline_addr, *initrd_addr; | |
491 | FILE *f, *fi; | |
492 | ||
493 | /* Align to 16 bytes as a paranoia measure */ | |
494 | cmdline_size = (strlen(kernel_cmdline)+16) & ~15; | |
495 | ||
496 | /* load the kernel header */ | |
497 | f = fopen(kernel_filename, "rb"); | |
498 | if (!f || !(kernel_size = get_file_size(f)) || | |
499 | fread(header, 1, 1024, f) != 1024) { | |
500 | fprintf(stderr, "qemu: could not load kernel '%s'\n", | |
501 | kernel_filename); | |
502 | exit(1); | |
503 | } | |
504 | ||
505 | /* kernel protocol version */ | |
bc4edd79 | 506 | #if 0 |
642a4f96 | 507 | fprintf(stderr, "header magic: %#x\n", ldl_p(header+0x202)); |
bc4edd79 | 508 | #endif |
642a4f96 TS |
509 | if (ldl_p(header+0x202) == 0x53726448) |
510 | protocol = lduw_p(header+0x206); | |
511 | else | |
512 | protocol = 0; | |
513 | ||
514 | if (protocol < 0x200 || !(header[0x211] & 0x01)) { | |
515 | /* Low kernel */ | |
516 | real_addr = phys_ram_base + 0x90000; | |
517 | cmdline_addr = phys_ram_base + 0x9a000 - cmdline_size; | |
518 | prot_addr = phys_ram_base + 0x10000; | |
519 | } else if (protocol < 0x202) { | |
520 | /* High but ancient kernel */ | |
521 | real_addr = phys_ram_base + 0x90000; | |
522 | cmdline_addr = phys_ram_base + 0x9a000 - cmdline_size; | |
523 | prot_addr = phys_ram_base + 0x100000; | |
524 | } else { | |
525 | /* High and recent kernel */ | |
526 | real_addr = phys_ram_base + 0x10000; | |
527 | cmdline_addr = phys_ram_base + 0x20000; | |
528 | prot_addr = phys_ram_base + 0x100000; | |
529 | } | |
530 | ||
bc4edd79 | 531 | #if 0 |
642a4f96 TS |
532 | fprintf(stderr, |
533 | "qemu: real_addr = %#zx\n" | |
534 | "qemu: cmdline_addr = %#zx\n" | |
535 | "qemu: prot_addr = %#zx\n", | |
536 | real_addr-phys_ram_base, | |
537 | cmdline_addr-phys_ram_base, | |
538 | prot_addr-phys_ram_base); | |
bc4edd79 | 539 | #endif |
642a4f96 TS |
540 | |
541 | /* highest address for loading the initrd */ | |
542 | if (protocol >= 0x203) | |
543 | initrd_max = ldl_p(header+0x22c); | |
544 | else | |
545 | initrd_max = 0x37ffffff; | |
546 | ||
547 | if (initrd_max >= ram_size-ACPI_DATA_SIZE) | |
548 | initrd_max = ram_size-ACPI_DATA_SIZE-1; | |
549 | ||
550 | /* kernel command line */ | |
551 | pstrcpy(cmdline_addr, 4096, kernel_cmdline); | |
552 | ||
553 | if (protocol >= 0x202) { | |
554 | stl_p(header+0x228, cmdline_addr-phys_ram_base); | |
555 | } else { | |
556 | stw_p(header+0x20, 0xA33F); | |
557 | stw_p(header+0x22, cmdline_addr-real_addr); | |
558 | } | |
559 | ||
560 | /* loader type */ | |
561 | /* High nybble = B reserved for Qemu; low nybble is revision number. | |
562 | If this code is substantially changed, you may want to consider | |
563 | incrementing the revision. */ | |
564 | if (protocol >= 0x200) | |
565 | header[0x210] = 0xB0; | |
566 | ||
567 | /* heap */ | |
568 | if (protocol >= 0x201) { | |
569 | header[0x211] |= 0x80; /* CAN_USE_HEAP */ | |
570 | stw_p(header+0x224, cmdline_addr-real_addr-0x200); | |
571 | } | |
572 | ||
573 | /* load initrd */ | |
574 | if (initrd_filename) { | |
575 | if (protocol < 0x200) { | |
576 | fprintf(stderr, "qemu: linux kernel too old to load a ram disk\n"); | |
577 | exit(1); | |
578 | } | |
579 | ||
580 | fi = fopen(initrd_filename, "rb"); | |
581 | if (!fi) { | |
582 | fprintf(stderr, "qemu: could not load initial ram disk '%s'\n", | |
583 | initrd_filename); | |
584 | exit(1); | |
585 | } | |
586 | ||
587 | initrd_size = get_file_size(fi); | |
588 | initrd_addr = phys_ram_base + ((initrd_max-initrd_size) & ~4095); | |
589 | ||
590 | fprintf(stderr, "qemu: loading initrd (%#x bytes) at %#zx\n", | |
591 | initrd_size, initrd_addr-phys_ram_base); | |
592 | ||
593 | if (fread(initrd_addr, 1, initrd_size, fi) != initrd_size) { | |
594 | fprintf(stderr, "qemu: read error on initial ram disk '%s'\n", | |
595 | initrd_filename); | |
596 | exit(1); | |
597 | } | |
598 | fclose(fi); | |
599 | ||
600 | stl_p(header+0x218, initrd_addr-phys_ram_base); | |
601 | stl_p(header+0x21c, initrd_size); | |
602 | } | |
603 | ||
604 | /* store the finalized header and load the rest of the kernel */ | |
605 | memcpy(real_addr, header, 1024); | |
606 | ||
607 | setup_size = header[0x1f1]; | |
608 | if (setup_size == 0) | |
609 | setup_size = 4; | |
610 | ||
611 | setup_size = (setup_size+1)*512; | |
612 | kernel_size -= setup_size; /* Size of protected-mode code */ | |
613 | ||
614 | if (fread(real_addr+1024, 1, setup_size-1024, f) != setup_size-1024 || | |
615 | fread(prot_addr, 1, kernel_size, f) != kernel_size) { | |
616 | fprintf(stderr, "qemu: read error on kernel '%s'\n", | |
617 | kernel_filename); | |
618 | exit(1); | |
619 | } | |
620 | fclose(f); | |
621 | ||
622 | /* generate bootsector to set up the initial register state */ | |
623 | real_seg = (real_addr-phys_ram_base) >> 4; | |
624 | seg[0] = seg[2] = seg[3] = seg[4] = seg[4] = real_seg; | |
625 | seg[1] = real_seg+0x20; /* CS */ | |
626 | memset(gpr, 0, sizeof gpr); | |
627 | gpr[4] = cmdline_addr-real_addr-16; /* SP (-16 is paranoia) */ | |
628 | ||
629 | generate_bootsect(gpr, seg, 0); | |
630 | } | |
631 | ||
59b8ad81 FB |
632 | static void main_cpu_reset(void *opaque) |
633 | { | |
634 | CPUState *env = opaque; | |
635 | cpu_reset(env); | |
636 | } | |
637 | ||
b41a2cd1 FB |
638 | static const int ide_iobase[2] = { 0x1f0, 0x170 }; |
639 | static const int ide_iobase2[2] = { 0x3f6, 0x376 }; | |
640 | static const int ide_irq[2] = { 14, 15 }; | |
641 | ||
642 | #define NE2000_NB_MAX 6 | |
643 | ||
8d11df9e | 644 | static int ne2000_io[NE2000_NB_MAX] = { 0x300, 0x320, 0x340, 0x360, 0x280, 0x380 }; |
b41a2cd1 FB |
645 | static int ne2000_irq[NE2000_NB_MAX] = { 9, 10, 11, 3, 4, 5 }; |
646 | ||
8d11df9e FB |
647 | static int serial_io[MAX_SERIAL_PORTS] = { 0x3f8, 0x2f8, 0x3e8, 0x2e8 }; |
648 | static int serial_irq[MAX_SERIAL_PORTS] = { 4, 3, 4, 3 }; | |
649 | ||
6508fe59 FB |
650 | static int parallel_io[MAX_PARALLEL_PORTS] = { 0x378, 0x278, 0x3bc }; |
651 | static int parallel_irq[MAX_PARALLEL_PORTS] = { 7, 7, 7 }; | |
652 | ||
6a36d84e | 653 | #ifdef HAS_AUDIO |
d537cf6c | 654 | static void audio_init (PCIBus *pci_bus, qemu_irq *pic) |
6a36d84e FB |
655 | { |
656 | struct soundhw *c; | |
657 | int audio_enabled = 0; | |
658 | ||
659 | for (c = soundhw; !audio_enabled && c->name; ++c) { | |
660 | audio_enabled = c->enabled; | |
661 | } | |
662 | ||
663 | if (audio_enabled) { | |
664 | AudioState *s; | |
665 | ||
666 | s = AUD_init (); | |
667 | if (s) { | |
668 | for (c = soundhw; c->name; ++c) { | |
669 | if (c->enabled) { | |
670 | if (c->isa) { | |
d537cf6c | 671 | c->init.init_isa (s, pic); |
6a36d84e FB |
672 | } |
673 | else { | |
674 | if (pci_bus) { | |
675 | c->init.init_pci (pci_bus, s); | |
676 | } | |
677 | } | |
678 | } | |
679 | } | |
680 | } | |
681 | } | |
682 | } | |
683 | #endif | |
684 | ||
d537cf6c | 685 | static void pc_init_ne2k_isa(NICInfo *nd, qemu_irq *pic) |
a41b2ff2 PB |
686 | { |
687 | static int nb_ne2k = 0; | |
688 | ||
689 | if (nb_ne2k == NE2000_NB_MAX) | |
690 | return; | |
d537cf6c | 691 | isa_ne2000_init(ne2000_io[nb_ne2k], pic[ne2000_irq[nb_ne2k]], nd); |
a41b2ff2 PB |
692 | nb_ne2k++; |
693 | } | |
694 | ||
80cabfad | 695 | /* PC hardware initialisation */ |
b881c2c6 BS |
696 | static void pc_init1(int ram_size, int vga_ram_size, |
697 | const char *boot_device, DisplayState *ds, | |
b5ff2d6e | 698 | const char *kernel_filename, const char *kernel_cmdline, |
3dbbdc25 | 699 | const char *initrd_filename, |
a049de61 | 700 | int pci_enabled, const char *cpu_model) |
80cabfad FB |
701 | { |
702 | char buf[1024]; | |
642a4f96 | 703 | int ret, linux_boot, i; |
970ac5a3 FB |
704 | ram_addr_t ram_addr, vga_ram_addr, bios_offset, vga_bios_offset; |
705 | int bios_size, isa_bios_size, vga_bios_size; | |
46e50e9d | 706 | PCIBus *pci_bus; |
5c3ff3a7 | 707 | int piix3_devfn = -1; |
59b8ad81 | 708 | CPUState *env; |
a41b2ff2 | 709 | NICInfo *nd; |
d537cf6c PB |
710 | qemu_irq *cpu_irq; |
711 | qemu_irq *i8259; | |
d592d303 | 712 | |
80cabfad FB |
713 | linux_boot = (kernel_filename != NULL); |
714 | ||
59b8ad81 | 715 | /* init CPUs */ |
a049de61 FB |
716 | if (cpu_model == NULL) { |
717 | #ifdef TARGET_X86_64 | |
718 | cpu_model = "qemu64"; | |
719 | #else | |
720 | cpu_model = "qemu32"; | |
721 | #endif | |
722 | } | |
723 | ||
59b8ad81 | 724 | for(i = 0; i < smp_cpus; i++) { |
aaed909a FB |
725 | env = cpu_init(cpu_model); |
726 | if (!env) { | |
727 | fprintf(stderr, "Unable to find x86 CPU definition\n"); | |
728 | exit(1); | |
729 | } | |
59b8ad81 | 730 | if (i != 0) |
ad49ff9d | 731 | env->hflags |= HF_HALTED_MASK; |
59b8ad81 FB |
732 | if (smp_cpus > 1) { |
733 | /* XXX: enable it in all cases */ | |
734 | env->cpuid_features |= CPUID_APIC; | |
735 | } | |
a5954d5c | 736 | register_savevm("cpu", i, 4, cpu_save, cpu_load, env); |
59b8ad81 FB |
737 | qemu_register_reset(main_cpu_reset, env); |
738 | if (pci_enabled) { | |
739 | apic_init(env); | |
740 | } | |
93342807 | 741 | vmport_init(env); |
59b8ad81 FB |
742 | } |
743 | ||
80cabfad | 744 | /* allocate RAM */ |
970ac5a3 FB |
745 | ram_addr = qemu_ram_alloc(ram_size); |
746 | cpu_register_physical_memory(0, ram_size, ram_addr); | |
80cabfad | 747 | |
970ac5a3 FB |
748 | /* allocate VGA RAM */ |
749 | vga_ram_addr = qemu_ram_alloc(vga_ram_size); | |
7587cf44 | 750 | |
970ac5a3 | 751 | /* BIOS load */ |
1192dad8 JM |
752 | if (bios_name == NULL) |
753 | bios_name = BIOS_FILENAME; | |
754 | snprintf(buf, sizeof(buf), "%s/%s", bios_dir, bios_name); | |
7587cf44 | 755 | bios_size = get_image_size(buf); |
5fafdf24 | 756 | if (bios_size <= 0 || |
970ac5a3 | 757 | (bios_size % 65536) != 0) { |
7587cf44 FB |
758 | goto bios_error; |
759 | } | |
970ac5a3 | 760 | bios_offset = qemu_ram_alloc(bios_size); |
7587cf44 FB |
761 | ret = load_image(buf, phys_ram_base + bios_offset); |
762 | if (ret != bios_size) { | |
763 | bios_error: | |
970ac5a3 | 764 | fprintf(stderr, "qemu: could not load PC BIOS '%s'\n", buf); |
80cabfad FB |
765 | exit(1); |
766 | } | |
7587cf44 | 767 | |
80cabfad | 768 | /* VGA BIOS load */ |
de9258a8 FB |
769 | if (cirrus_vga_enabled) { |
770 | snprintf(buf, sizeof(buf), "%s/%s", bios_dir, VGABIOS_CIRRUS_FILENAME); | |
771 | } else { | |
772 | snprintf(buf, sizeof(buf), "%s/%s", bios_dir, VGABIOS_FILENAME); | |
773 | } | |
970ac5a3 | 774 | vga_bios_size = get_image_size(buf); |
5fafdf24 | 775 | if (vga_bios_size <= 0 || vga_bios_size > 65536) |
970ac5a3 FB |
776 | goto vga_bios_error; |
777 | vga_bios_offset = qemu_ram_alloc(65536); | |
778 | ||
7587cf44 | 779 | ret = load_image(buf, phys_ram_base + vga_bios_offset); |
970ac5a3 FB |
780 | if (ret != vga_bios_size) { |
781 | vga_bios_error: | |
782 | fprintf(stderr, "qemu: could not load VGA BIOS '%s'\n", buf); | |
783 | exit(1); | |
784 | } | |
785 | ||
80cabfad | 786 | /* setup basic memory access */ |
5fafdf24 | 787 | cpu_register_physical_memory(0xc0000, 0x10000, |
7587cf44 FB |
788 | vga_bios_offset | IO_MEM_ROM); |
789 | ||
790 | /* map the last 128KB of the BIOS in ISA space */ | |
791 | isa_bios_size = bios_size; | |
792 | if (isa_bios_size > (128 * 1024)) | |
793 | isa_bios_size = 128 * 1024; | |
5fafdf24 | 794 | cpu_register_physical_memory(0xd0000, (192 * 1024) - isa_bios_size, |
7587cf44 | 795 | IO_MEM_UNASSIGNED); |
5fafdf24 TS |
796 | cpu_register_physical_memory(0x100000 - isa_bios_size, |
797 | isa_bios_size, | |
7587cf44 | 798 | (bios_offset + bios_size - isa_bios_size) | IO_MEM_ROM); |
9ae02555 | 799 | |
970ac5a3 FB |
800 | { |
801 | ram_addr_t option_rom_offset; | |
802 | int size, offset; | |
803 | ||
804 | offset = 0; | |
805 | for (i = 0; i < nb_option_roms; i++) { | |
806 | size = get_image_size(option_rom[i]); | |
807 | if (size < 0) { | |
5fafdf24 | 808 | fprintf(stderr, "Could not load option rom '%s'\n", |
970ac5a3 FB |
809 | option_rom[i]); |
810 | exit(1); | |
811 | } | |
812 | if (size > (0x10000 - offset)) | |
813 | goto option_rom_error; | |
814 | option_rom_offset = qemu_ram_alloc(size); | |
815 | ret = load_image(option_rom[i], phys_ram_base + option_rom_offset); | |
816 | if (ret != size) { | |
817 | option_rom_error: | |
818 | fprintf(stderr, "Too many option ROMS\n"); | |
819 | exit(1); | |
820 | } | |
821 | size = (size + 4095) & ~4095; | |
822 | cpu_register_physical_memory(0xd0000 + offset, | |
823 | size, option_rom_offset | IO_MEM_ROM); | |
824 | offset += size; | |
825 | } | |
9ae02555 TS |
826 | } |
827 | ||
7587cf44 | 828 | /* map all the bios at the top of memory */ |
5fafdf24 | 829 | cpu_register_physical_memory((uint32_t)(-bios_size), |
7587cf44 | 830 | bios_size, bios_offset | IO_MEM_ROM); |
3b46e624 | 831 | |
80cabfad FB |
832 | bochs_bios_init(); |
833 | ||
642a4f96 TS |
834 | if (linux_boot) |
835 | load_linux(kernel_filename, initrd_filename, kernel_cmdline); | |
80cabfad | 836 | |
d537cf6c PB |
837 | cpu_irq = qemu_allocate_irqs(pic_irq_request, first_cpu, 1); |
838 | i8259 = i8259_init(cpu_irq[0]); | |
839 | ferr_irq = i8259[13]; | |
840 | ||
69b91039 | 841 | if (pci_enabled) { |
d537cf6c | 842 | pci_bus = i440fx_init(&i440fx_state, i8259); |
8f1c91d8 | 843 | piix3_devfn = piix3_init(pci_bus, -1); |
46e50e9d FB |
844 | } else { |
845 | pci_bus = NULL; | |
69b91039 FB |
846 | } |
847 | ||
80cabfad | 848 | /* init basic PC hardware */ |
b41a2cd1 | 849 | register_ioport_write(0x80, 1, 1, ioport80_write, NULL); |
80cabfad | 850 | |
f929aad6 FB |
851 | register_ioport_write(0xf0, 1, 1, ioportF0_write, NULL); |
852 | ||
1f04275e FB |
853 | if (cirrus_vga_enabled) { |
854 | if (pci_enabled) { | |
5fafdf24 TS |
855 | pci_cirrus_vga_init(pci_bus, |
856 | ds, phys_ram_base + vga_ram_addr, | |
970ac5a3 | 857 | vga_ram_addr, vga_ram_size); |
1f04275e | 858 | } else { |
5fafdf24 | 859 | isa_cirrus_vga_init(ds, phys_ram_base + vga_ram_addr, |
970ac5a3 | 860 | vga_ram_addr, vga_ram_size); |
1f04275e | 861 | } |
d34cab9f TS |
862 | } else if (vmsvga_enabled) { |
863 | if (pci_enabled) | |
864 | pci_vmsvga_init(pci_bus, ds, phys_ram_base + ram_size, | |
865 | ram_size, vga_ram_size); | |
866 | else | |
867 | fprintf(stderr, "%s: vmware_vga: no PCI bus\n", __FUNCTION__); | |
1f04275e | 868 | } else { |
89b6b508 | 869 | if (pci_enabled) { |
5fafdf24 | 870 | pci_vga_init(pci_bus, ds, phys_ram_base + vga_ram_addr, |
970ac5a3 | 871 | vga_ram_addr, vga_ram_size, 0, 0); |
89b6b508 | 872 | } else { |
5fafdf24 | 873 | isa_vga_init(ds, phys_ram_base + vga_ram_addr, |
970ac5a3 | 874 | vga_ram_addr, vga_ram_size); |
89b6b508 | 875 | } |
1f04275e | 876 | } |
80cabfad | 877 | |
d537cf6c | 878 | rtc_state = rtc_init(0x70, i8259[8]); |
80cabfad | 879 | |
e1a23744 FB |
880 | register_ioport_read(0x92, 1, 1, ioport92_read, NULL); |
881 | register_ioport_write(0x92, 1, 1, ioport92_write, NULL); | |
882 | ||
d592d303 | 883 | if (pci_enabled) { |
d592d303 FB |
884 | ioapic = ioapic_init(); |
885 | } | |
d537cf6c | 886 | pit = pit_init(0x40, i8259[0]); |
fd06c375 | 887 | pcspk_init(pit); |
d592d303 FB |
888 | if (pci_enabled) { |
889 | pic_set_alt_irq_func(isa_pic, ioapic_set_irq, ioapic); | |
890 | } | |
b41a2cd1 | 891 | |
8d11df9e FB |
892 | for(i = 0; i < MAX_SERIAL_PORTS; i++) { |
893 | if (serial_hds[i]) { | |
d537cf6c | 894 | serial_init(serial_io[i], i8259[serial_irq[i]], serial_hds[i]); |
8d11df9e FB |
895 | } |
896 | } | |
b41a2cd1 | 897 | |
6508fe59 FB |
898 | for(i = 0; i < MAX_PARALLEL_PORTS; i++) { |
899 | if (parallel_hds[i]) { | |
d537cf6c PB |
900 | parallel_init(parallel_io[i], i8259[parallel_irq[i]], |
901 | parallel_hds[i]); | |
6508fe59 FB |
902 | } |
903 | } | |
904 | ||
a41b2ff2 PB |
905 | for(i = 0; i < nb_nics; i++) { |
906 | nd = &nd_table[i]; | |
907 | if (!nd->model) { | |
908 | if (pci_enabled) { | |
909 | nd->model = "ne2k_pci"; | |
910 | } else { | |
911 | nd->model = "ne2k_isa"; | |
912 | } | |
69b91039 | 913 | } |
a41b2ff2 | 914 | if (strcmp(nd->model, "ne2k_isa") == 0) { |
d537cf6c | 915 | pc_init_ne2k_isa(nd, i8259); |
a41b2ff2 | 916 | } else if (pci_enabled) { |
c4a7060c BS |
917 | if (strcmp(nd->model, "?") == 0) |
918 | fprintf(stderr, "qemu: Supported ISA NICs: ne2k_isa\n"); | |
abcebc7e | 919 | pci_nic_init(pci_bus, nd, -1); |
c4a7060c BS |
920 | } else if (strcmp(nd->model, "?") == 0) { |
921 | fprintf(stderr, "qemu: Supported ISA NICs: ne2k_isa\n"); | |
922 | exit(1); | |
a41b2ff2 PB |
923 | } else { |
924 | fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd->model); | |
925 | exit(1); | |
69b91039 | 926 | } |
a41b2ff2 | 927 | } |
b41a2cd1 | 928 | |
a41b2ff2 | 929 | if (pci_enabled) { |
d537cf6c | 930 | pci_piix3_ide_init(pci_bus, bs_table, piix3_devfn + 1, i8259); |
a41b2ff2 | 931 | } else { |
69b91039 | 932 | for(i = 0; i < 2; i++) { |
d537cf6c | 933 | isa_ide_init(ide_iobase[i], ide_iobase2[i], i8259[ide_irq[i]], |
69b91039 FB |
934 | bs_table[2 * i], bs_table[2 * i + 1]); |
935 | } | |
b41a2cd1 | 936 | } |
69b91039 | 937 | |
d537cf6c | 938 | i8042_init(i8259[1], i8259[12], 0x60); |
7c29d0c0 | 939 | DMA_init(0); |
6a36d84e | 940 | #ifdef HAS_AUDIO |
d537cf6c | 941 | audio_init(pci_enabled ? pci_bus : NULL, i8259); |
fb065187 | 942 | #endif |
80cabfad | 943 | |
d537cf6c | 944 | floppy_controller = fdctrl_init(i8259[6], 2, 0, 0x3f0, fd_table); |
b41a2cd1 | 945 | |
ba6c2377 | 946 | cmos_init(ram_size, boot_device, bs_table); |
69b91039 | 947 | |
bb36d470 | 948 | if (pci_enabled && usb_enabled) { |
afcc3cdf | 949 | usb_uhci_piix3_init(pci_bus, piix3_devfn + 2); |
bb36d470 FB |
950 | } |
951 | ||
6515b203 | 952 | if (pci_enabled && acpi_enabled) { |
3fffc223 | 953 | uint8_t *eeprom_buf = qemu_mallocz(8 * 256); /* XXX: make this persistent */ |
0ff596d0 PB |
954 | i2c_bus *smbus; |
955 | ||
956 | /* TODO: Populate SPD eeprom data. */ | |
7b717336 | 957 | smbus = piix4_pm_init(pci_bus, piix3_devfn + 3, 0xb100); |
3fffc223 | 958 | for (i = 0; i < 8; i++) { |
0ff596d0 | 959 | smbus_eeprom_device_init(smbus, 0x50 + i, eeprom_buf + (i * 256)); |
3fffc223 | 960 | } |
6515b203 | 961 | } |
3b46e624 | 962 | |
a5954d5c FB |
963 | if (i440fx_state) { |
964 | i440fx_init_memory_mappings(i440fx_state); | |
965 | } | |
96d30e48 TS |
966 | #if 0 |
967 | /* ??? Need to figure out some way for the user to | |
968 | specify SCSI devices. */ | |
7d8406be PB |
969 | if (pci_enabled) { |
970 | void *scsi; | |
96d30e48 TS |
971 | BlockDriverState *bdrv; |
972 | ||
973 | scsi = lsi_scsi_init(pci_bus, -1); | |
974 | bdrv = bdrv_new("scsidisk"); | |
975 | bdrv_open(bdrv, "scsi_disk.img", 0); | |
976 | lsi_scsi_attach(scsi, bdrv, -1); | |
977 | bdrv = bdrv_new("scsicd"); | |
978 | bdrv_open(bdrv, "scsi_cd.iso", 0); | |
979 | bdrv_set_type_hint(bdrv, BDRV_TYPE_CDROM); | |
980 | lsi_scsi_attach(scsi, bdrv, -1); | |
7d8406be | 981 | } |
96d30e48 | 982 | #endif |
80cabfad | 983 | } |
b5ff2d6e | 984 | |
b881c2c6 BS |
985 | static void pc_init_pci(int ram_size, int vga_ram_size, |
986 | const char *boot_device, DisplayState *ds, | |
5fafdf24 | 987 | const char *kernel_filename, |
3dbbdc25 | 988 | const char *kernel_cmdline, |
94fc95cd JM |
989 | const char *initrd_filename, |
990 | const char *cpu_model) | |
3dbbdc25 | 991 | { |
b881c2c6 | 992 | pc_init1(ram_size, vga_ram_size, boot_device, ds, |
3dbbdc25 | 993 | kernel_filename, kernel_cmdline, |
a049de61 | 994 | initrd_filename, 1, cpu_model); |
3dbbdc25 FB |
995 | } |
996 | ||
b881c2c6 BS |
997 | static void pc_init_isa(int ram_size, int vga_ram_size, |
998 | const char *boot_device, DisplayState *ds, | |
5fafdf24 | 999 | const char *kernel_filename, |
3dbbdc25 | 1000 | const char *kernel_cmdline, |
94fc95cd JM |
1001 | const char *initrd_filename, |
1002 | const char *cpu_model) | |
3dbbdc25 | 1003 | { |
b881c2c6 | 1004 | pc_init1(ram_size, vga_ram_size, boot_device, ds, |
3dbbdc25 | 1005 | kernel_filename, kernel_cmdline, |
a049de61 | 1006 | initrd_filename, 0, cpu_model); |
3dbbdc25 FB |
1007 | } |
1008 | ||
b5ff2d6e FB |
1009 | QEMUMachine pc_machine = { |
1010 | "pc", | |
1011 | "Standard PC", | |
3dbbdc25 FB |
1012 | pc_init_pci, |
1013 | }; | |
1014 | ||
1015 | QEMUMachine isapc_machine = { | |
1016 | "isapc", | |
1017 | "ISA-only PC", | |
1018 | pc_init_isa, | |
b5ff2d6e | 1019 | }; |