]> git.proxmox.com Git - mirror_qemu.git/blame - hw/i386/pc.c
9pfs: Fix CLI parsing crash on error
[mirror_qemu.git] / hw / i386 / 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 */
e688df6b 24
b6a0aa05 25#include "qemu/osdep.h"
d471bf3e 26#include "qemu/units.h"
83c9f4ca 27#include "hw/hw.h"
0d09e41a
PB
28#include "hw/i386/pc.h"
29#include "hw/char/serial.h"
bb3d5ea8 30#include "hw/char/parallel.h"
0d09e41a 31#include "hw/i386/apic.h"
54a40293
EH
32#include "hw/i386/topology.h"
33#include "sysemu/cpus.h"
0d09e41a 34#include "hw/block/fdc.h"
83c9f4ca
PB
35#include "hw/ide.h"
36#include "hw/pci/pci.h"
2118196b 37#include "hw/pci/pci_bus.h"
0d09e41a
PB
38#include "hw/nvram/fw_cfg.h"
39#include "hw/timer/hpet.h"
60d8f328 40#include "hw/smbios/smbios.h"
83c9f4ca 41#include "hw/loader.h"
ca20cf32 42#include "elf.h"
47b43a1f 43#include "multiboot.h"
0d09e41a 44#include "hw/timer/mc146818rtc.h"
55f613ac 45#include "hw/dma/i8257.h"
0d09e41a 46#include "hw/timer/i8254.h"
47973a2d 47#include "hw/input/i8042.h"
0d09e41a 48#include "hw/audio/pcspk.h"
83c9f4ca
PB
49#include "hw/pci/msi.h"
50#include "hw/sysbus.h"
9c17d615 51#include "sysemu/sysemu.h"
e35704ba 52#include "sysemu/numa.h"
9c17d615 53#include "sysemu/kvm.h"
b1c12027 54#include "sysemu/qtest.h"
1d31f66b 55#include "kvm_i386.h"
0d09e41a 56#include "hw/xen/xen.h"
a19cbfb3 57#include "ui/qemu-spice.h"
022c62cb
PB
58#include "exec/memory.h"
59#include "exec/address-spaces.h"
9c17d615 60#include "sysemu/arch_init.h"
1de7afc9 61#include "qemu/bitmap.h"
0c764a9d 62#include "qemu/config-file.h"
d49b6836 63#include "qemu/error-report.h"
922a01a0 64#include "qemu/option.h"
0445259b 65#include "hw/acpi/acpi.h"
5ff020b7 66#include "hw/acpi/cpu_hotplug.h"
c649983b 67#include "hw/boards.h"
72c194f7 68#include "acpi-build.h"
95bee274 69#include "hw/mem/pc-dimm.h"
e688df6b 70#include "qapi/error.h"
9af23989 71#include "qapi/qapi-visit-common.h"
bf1e8939 72#include "qapi/visitor.h"
15eafc2e 73#include "qom/cpu.h"
1255166b 74#include "hw/nmi.h"
60c5e104 75#include "hw/i386/intel_iommu.h"
489983d6 76#include "hw/net/ne2000-isa.h"
80cabfad 77
471fd342
BS
78/* debug PC/ISA interrupts */
79//#define DEBUG_IRQ
80
81#ifdef DEBUG_IRQ
82#define DPRINTF(fmt, ...) \
83 do { printf("CPUIRQ: " fmt , ## __VA_ARGS__); } while (0)
84#else
85#define DPRINTF(fmt, ...)
86#endif
87
8a92ea2f 88#define FW_CFG_ACPI_TABLES (FW_CFG_ARCH_LOCAL + 0)
b6f6e3d3 89#define FW_CFG_SMBIOS_ENTRIES (FW_CFG_ARCH_LOCAL + 1)
6b35e7bf 90#define FW_CFG_IRQ0_OVERRIDE (FW_CFG_ARCH_LOCAL + 2)
4c5b10b7 91#define FW_CFG_E820_TABLE (FW_CFG_ARCH_LOCAL + 3)
40ac17cd 92#define FW_CFG_HPET (FW_CFG_ARCH_LOCAL + 4)
80cabfad 93
4c5b10b7
JS
94#define E820_NR_ENTRIES 16
95
96struct e820_entry {
97 uint64_t address;
98 uint64_t length;
99 uint32_t type;
541dc0d4 100} QEMU_PACKED __attribute((__aligned__(4)));
4c5b10b7
JS
101
102struct e820_table {
103 uint32_t count;
104 struct e820_entry entry[E820_NR_ENTRIES];
541dc0d4 105} QEMU_PACKED __attribute((__aligned__(4)));
4c5b10b7 106
7d67110f
GH
107static struct e820_table e820_reserve;
108static struct e820_entry *e820_table;
109static unsigned e820_entries;
dd703b99 110struct hpet_fw_config hpet_cfg = {.count = UINT8_MAX};
4c5b10b7 111
b881fbe9 112void gsi_handler(void *opaque, int n, int level)
1452411b 113{
b881fbe9 114 GSIState *s = opaque;
1452411b 115
b881fbe9
JK
116 DPRINTF("pc: %s GSI %d\n", level ? "raising" : "lowering", n);
117 if (n < ISA_NUM_IRQS) {
118 qemu_set_irq(s->i8259_irq[n], level);
1632dc6a 119 }
b881fbe9 120 qemu_set_irq(s->ioapic_irq[n], level);
2e9947d2 121}
1452411b 122
258711c6
JG
123static void ioport80_write(void *opaque, hwaddr addr, uint64_t data,
124 unsigned size)
80cabfad
FB
125{
126}
127
c02e1eac
JG
128static uint64_t ioport80_read(void *opaque, hwaddr addr, unsigned size)
129{
a6fc23e5 130 return 0xffffffffffffffffULL;
c02e1eac
JG
131}
132
f929aad6 133/* MSDOS compatibility mode FPU exception support */
d537cf6c 134static qemu_irq ferr_irq;
8e78eb28
IY
135
136void pc_register_ferr_irq(qemu_irq irq)
137{
138 ferr_irq = irq;
139}
140
f929aad6
FB
141/* XXX: add IGNNE support */
142void cpu_set_ferr(CPUX86State *s)
143{
d537cf6c 144 qemu_irq_raise(ferr_irq);
f929aad6
FB
145}
146
258711c6
JG
147static void ioportF0_write(void *opaque, hwaddr addr, uint64_t data,
148 unsigned size)
f929aad6 149{
d537cf6c 150 qemu_irq_lower(ferr_irq);
f929aad6
FB
151}
152
c02e1eac
JG
153static uint64_t ioportF0_read(void *opaque, hwaddr addr, unsigned size)
154{
a6fc23e5 155 return 0xffffffffffffffffULL;
c02e1eac
JG
156}
157
28ab0e2e 158/* TSC handling */
28ab0e2e
FB
159uint64_t cpu_get_tsc(CPUX86State *env)
160{
4a1418e0 161 return cpu_get_ticks();
28ab0e2e
FB
162}
163
3de388f6 164/* IRQ handling */
4a8fa5dc 165int cpu_get_pic_interrupt(CPUX86State *env)
3de388f6 166{
02e51483 167 X86CPU *cpu = x86_env_get_cpu(env);
3de388f6
FB
168 int intno;
169
bb93e099
WL
170 if (!kvm_irqchip_in_kernel()) {
171 intno = apic_get_interrupt(cpu->apic_state);
172 if (intno >= 0) {
173 return intno;
174 }
175 /* read the irq from the PIC */
176 if (!apic_accept_pic_intr(cpu->apic_state)) {
177 return -1;
178 }
cf6d64bf 179 }
0e21e12b 180
3de388f6
FB
181 intno = pic_read_irq(isa_pic);
182 return intno;
183}
184
d537cf6c 185static void pic_irq_request(void *opaque, int irq, int level)
3de388f6 186{
182735ef
AF
187 CPUState *cs = first_cpu;
188 X86CPU *cpu = X86_CPU(cs);
a5b38b51 189
471fd342 190 DPRINTF("pic_irqs: %s irq %d\n", level? "raise" : "lower", irq);
bb93e099 191 if (cpu->apic_state && !kvm_irqchip_in_kernel()) {
bdc44640 192 CPU_FOREACH(cs) {
182735ef 193 cpu = X86_CPU(cs);
02e51483
CF
194 if (apic_accept_pic_intr(cpu->apic_state)) {
195 apic_deliver_pic_intr(cpu->apic_state, level);
cf6d64bf 196 }
d5529471
AJ
197 }
198 } else {
d8ed887b 199 if (level) {
c3affe56 200 cpu_interrupt(cs, CPU_INTERRUPT_HARD);
d8ed887b
AF
201 } else {
202 cpu_reset_interrupt(cs, CPU_INTERRUPT_HARD);
203 }
a5b38b51 204 }
3de388f6
FB
205}
206
b0a21b53
FB
207/* PC cmos mappings */
208
80cabfad
FB
209#define REG_EQUIPMENT_BYTE 0x14
210
bda05509 211int cmos_get_fd_drive_type(FloppyDriveType fd0)
777428f2
FB
212{
213 int val;
214
215 switch (fd0) {
2da44dd0 216 case FLOPPY_DRIVE_TYPE_144:
777428f2
FB
217 /* 1.44 Mb 3"5 drive */
218 val = 4;
219 break;
2da44dd0 220 case FLOPPY_DRIVE_TYPE_288:
777428f2
FB
221 /* 2.88 Mb 3"5 drive */
222 val = 5;
223 break;
2da44dd0 224 case FLOPPY_DRIVE_TYPE_120:
777428f2
FB
225 /* 1.2 Mb 5"5 drive */
226 val = 2;
227 break;
2da44dd0 228 case FLOPPY_DRIVE_TYPE_NONE:
777428f2
FB
229 default:
230 val = 0;
231 break;
232 }
233 return val;
234}
235
9139046c
MA
236static void cmos_init_hd(ISADevice *s, int type_ofs, int info_ofs,
237 int16_t cylinders, int8_t heads, int8_t sectors)
ba6c2377 238{
ba6c2377
FB
239 rtc_set_memory(s, type_ofs, 47);
240 rtc_set_memory(s, info_ofs, cylinders);
241 rtc_set_memory(s, info_ofs + 1, cylinders >> 8);
242 rtc_set_memory(s, info_ofs + 2, heads);
243 rtc_set_memory(s, info_ofs + 3, 0xff);
244 rtc_set_memory(s, info_ofs + 4, 0xff);
245 rtc_set_memory(s, info_ofs + 5, 0xc0 | ((heads > 8) << 3));
246 rtc_set_memory(s, info_ofs + 6, cylinders);
247 rtc_set_memory(s, info_ofs + 7, cylinders >> 8);
248 rtc_set_memory(s, info_ofs + 8, sectors);
249}
250
6ac0e82d
AZ
251/* convert boot_device letter to something recognizable by the bios */
252static int boot_device2nibble(char boot_device)
253{
254 switch(boot_device) {
255 case 'a':
256 case 'b':
257 return 0x01; /* floppy boot */
258 case 'c':
259 return 0x02; /* hard drive boot */
260 case 'd':
261 return 0x03; /* CD-ROM boot */
262 case 'n':
263 return 0x04; /* Network boot */
264 }
265 return 0;
266}
267
ddcd5531 268static void set_boot_dev(ISADevice *s, const char *boot_device, Error **errp)
0ecdffbb
AJ
269{
270#define PC_MAX_BOOT_DEVICES 3
0ecdffbb
AJ
271 int nbds, bds[3] = { 0, };
272 int i;
273
274 nbds = strlen(boot_device);
275 if (nbds > PC_MAX_BOOT_DEVICES) {
ddcd5531
GA
276 error_setg(errp, "Too many boot devices for PC");
277 return;
0ecdffbb
AJ
278 }
279 for (i = 0; i < nbds; i++) {
280 bds[i] = boot_device2nibble(boot_device[i]);
281 if (bds[i] == 0) {
ddcd5531
GA
282 error_setg(errp, "Invalid boot device for PC: '%c'",
283 boot_device[i]);
284 return;
0ecdffbb
AJ
285 }
286 }
287 rtc_set_memory(s, 0x3d, (bds[1] << 4) | bds[0]);
d9346e81 288 rtc_set_memory(s, 0x38, (bds[2] << 4) | (fd_bootchk ? 0x0 : 0x1));
0ecdffbb
AJ
289}
290
ddcd5531 291static void pc_boot_set(void *opaque, const char *boot_device, Error **errp)
d9346e81 292{
ddcd5531 293 set_boot_dev(opaque, boot_device, errp);
d9346e81
MA
294}
295
7444ca4e
LE
296static void pc_cmos_init_floppy(ISADevice *rtc_state, ISADevice *floppy)
297{
298 int val, nb, i;
2da44dd0
JS
299 FloppyDriveType fd_type[2] = { FLOPPY_DRIVE_TYPE_NONE,
300 FLOPPY_DRIVE_TYPE_NONE };
7444ca4e
LE
301
302 /* floppy type */
303 if (floppy) {
304 for (i = 0; i < 2; i++) {
305 fd_type[i] = isa_fdc_get_drive_type(floppy, i);
306 }
307 }
308 val = (cmos_get_fd_drive_type(fd_type[0]) << 4) |
309 cmos_get_fd_drive_type(fd_type[1]);
310 rtc_set_memory(rtc_state, 0x10, val);
311
312 val = rtc_get_memory(rtc_state, REG_EQUIPMENT_BYTE);
313 nb = 0;
2da44dd0 314 if (fd_type[0] != FLOPPY_DRIVE_TYPE_NONE) {
7444ca4e
LE
315 nb++;
316 }
2da44dd0 317 if (fd_type[1] != FLOPPY_DRIVE_TYPE_NONE) {
7444ca4e
LE
318 nb++;
319 }
320 switch (nb) {
321 case 0:
322 break;
323 case 1:
324 val |= 0x01; /* 1 drive, ready for boot */
325 break;
326 case 2:
327 val |= 0x41; /* 2 drives, ready for boot */
328 break;
329 }
330 rtc_set_memory(rtc_state, REG_EQUIPMENT_BYTE, val);
331}
332
c0897e0c
MA
333typedef struct pc_cmos_init_late_arg {
334 ISADevice *rtc_state;
9139046c 335 BusState *idebus[2];
c0897e0c
MA
336} pc_cmos_init_late_arg;
337
b86f4613
LE
338typedef struct check_fdc_state {
339 ISADevice *floppy;
340 bool multiple;
341} CheckFdcState;
342
343static int check_fdc(Object *obj, void *opaque)
344{
345 CheckFdcState *state = opaque;
346 Object *fdc;
347 uint32_t iobase;
348 Error *local_err = NULL;
349
350 fdc = object_dynamic_cast(obj, TYPE_ISA_FDC);
351 if (!fdc) {
352 return 0;
353 }
354
1ea1572a 355 iobase = object_property_get_uint(obj, "iobase", &local_err);
b86f4613
LE
356 if (local_err || iobase != 0x3f0) {
357 error_free(local_err);
358 return 0;
359 }
360
361 if (state->floppy) {
362 state->multiple = true;
363 } else {
364 state->floppy = ISA_DEVICE(obj);
365 }
366 return 0;
367}
368
369static const char * const fdc_container_path[] = {
370 "/unattached", "/peripheral", "/peripheral-anon"
371};
372
424e4a87
RK
373/*
374 * Locate the FDC at IO address 0x3f0, in order to configure the CMOS registers
375 * and ACPI objects.
376 */
377ISADevice *pc_find_fdc0(void)
378{
379 int i;
380 Object *container;
381 CheckFdcState state = { 0 };
382
383 for (i = 0; i < ARRAY_SIZE(fdc_container_path); i++) {
384 container = container_get(qdev_get_machine(), fdc_container_path[i]);
385 object_child_foreach(container, check_fdc, &state);
386 }
387
388 if (state.multiple) {
3dc6f869
AF
389 warn_report("multiple floppy disk controllers with "
390 "iobase=0x3f0 have been found");
433672b0 391 error_printf("the one being picked for CMOS setup might not reflect "
9e5d2c52 392 "your intent");
424e4a87
RK
393 }
394
395 return state.floppy;
396}
397
c0897e0c
MA
398static void pc_cmos_init_late(void *opaque)
399{
400 pc_cmos_init_late_arg *arg = opaque;
401 ISADevice *s = arg->rtc_state;
9139046c
MA
402 int16_t cylinders;
403 int8_t heads, sectors;
c0897e0c 404 int val;
2adc99b2 405 int i, trans;
c0897e0c 406
9139046c 407 val = 0;
272f0428
CP
408 if (arg->idebus[0] && ide_get_geometry(arg->idebus[0], 0,
409 &cylinders, &heads, &sectors) >= 0) {
9139046c
MA
410 cmos_init_hd(s, 0x19, 0x1b, cylinders, heads, sectors);
411 val |= 0xf0;
412 }
272f0428
CP
413 if (arg->idebus[0] && ide_get_geometry(arg->idebus[0], 1,
414 &cylinders, &heads, &sectors) >= 0) {
9139046c
MA
415 cmos_init_hd(s, 0x1a, 0x24, cylinders, heads, sectors);
416 val |= 0x0f;
417 }
418 rtc_set_memory(s, 0x12, val);
c0897e0c
MA
419
420 val = 0;
421 for (i = 0; i < 4; i++) {
9139046c
MA
422 /* NOTE: ide_get_geometry() returns the physical
423 geometry. It is always such that: 1 <= sects <= 63, 1
424 <= heads <= 16, 1 <= cylinders <= 16383. The BIOS
425 geometry can be different if a translation is done. */
272f0428
CP
426 if (arg->idebus[i / 2] &&
427 ide_get_geometry(arg->idebus[i / 2], i % 2,
9139046c 428 &cylinders, &heads, &sectors) >= 0) {
2adc99b2
MA
429 trans = ide_get_bios_chs_trans(arg->idebus[i / 2], i % 2) - 1;
430 assert((trans & ~3) == 0);
431 val |= trans << (i * 2);
c0897e0c
MA
432 }
433 }
434 rtc_set_memory(s, 0x39, val);
435
424e4a87 436 pc_cmos_init_floppy(s, pc_find_fdc0());
b86f4613 437
c0897e0c
MA
438 qemu_unregister_reset(pc_cmos_init_late, opaque);
439}
440
23d30407 441void pc_cmos_init(PCMachineState *pcms,
220a8846 442 BusState *idebus0, BusState *idebus1,
63ffb564 443 ISADevice *s)
80cabfad 444{
7444ca4e 445 int val;
c0897e0c 446 static pc_cmos_init_late_arg arg;
b0a21b53 447
b0a21b53 448 /* various important CMOS locations needed by PC/Bochs bios */
80cabfad
FB
449
450 /* memory size */
e89001f7 451 /* base memory (first MiB) */
d471bf3e 452 val = MIN(pcms->below_4g_mem_size / KiB, 640);
333190eb
FB
453 rtc_set_memory(s, 0x15, val);
454 rtc_set_memory(s, 0x16, val >> 8);
e89001f7 455 /* extended memory (next 64MiB) */
d471bf3e
PB
456 if (pcms->below_4g_mem_size > 1 * MiB) {
457 val = (pcms->below_4g_mem_size - 1 * MiB) / KiB;
e89001f7
MA
458 } else {
459 val = 0;
460 }
80cabfad
FB
461 if (val > 65535)
462 val = 65535;
b0a21b53
FB
463 rtc_set_memory(s, 0x17, val);
464 rtc_set_memory(s, 0x18, val >> 8);
465 rtc_set_memory(s, 0x30, val);
466 rtc_set_memory(s, 0x31, val >> 8);
e89001f7 467 /* memory between 16MiB and 4GiB */
d471bf3e
PB
468 if (pcms->below_4g_mem_size > 16 * MiB) {
469 val = (pcms->below_4g_mem_size - 16 * MiB) / (64 * KiB);
e89001f7 470 } else {
9da98861 471 val = 0;
e89001f7 472 }
80cabfad
FB
473 if (val > 65535)
474 val = 65535;
b0a21b53
FB
475 rtc_set_memory(s, 0x34, val);
476 rtc_set_memory(s, 0x35, val >> 8);
e89001f7 477 /* memory above 4GiB */
88076854 478 val = pcms->above_4g_mem_size / 65536;
e89001f7
MA
479 rtc_set_memory(s, 0x5b, val);
480 rtc_set_memory(s, 0x5c, val >> 8);
481 rtc_set_memory(s, 0x5d, val >> 16);
3b46e624 482
23d30407 483 object_property_add_link(OBJECT(pcms), "rtc_state",
2d996150 484 TYPE_ISA_DEVICE,
ec68007a 485 (Object **)&pcms->rtc,
2d996150 486 object_property_allow_set_link,
265b578c 487 OBJ_PROP_LINK_STRONG, &error_abort);
23d30407 488 object_property_set_link(OBJECT(pcms), OBJECT(s),
2d996150 489 "rtc_state", &error_abort);
298e01b6 490
007b0657 491 set_boot_dev(s, MACHINE(pcms)->boot_order, &error_fatal);
80cabfad 492
b0a21b53 493 val = 0;
b0a21b53
FB
494 val |= 0x02; /* FPU is there */
495 val |= 0x04; /* PS/2 mouse installed */
496 rtc_set_memory(s, REG_EQUIPMENT_BYTE, val);
497
b86f4613 498 /* hard drives and FDC */
c0897e0c 499 arg.rtc_state = s;
9139046c
MA
500 arg.idebus[0] = idebus0;
501 arg.idebus[1] = idebus1;
c0897e0c 502 qemu_register_reset(pc_cmos_init_late, &arg);
80cabfad
FB
503}
504
a0881c64
AF
505#define TYPE_PORT92 "port92"
506#define PORT92(obj) OBJECT_CHECK(Port92State, (obj), TYPE_PORT92)
507
4b78a802
BS
508/* port 92 stuff: could be split off */
509typedef struct Port92State {
a0881c64
AF
510 ISADevice parent_obj;
511
23af670e 512 MemoryRegion io;
4b78a802 513 uint8_t outport;
d812b3d6 514 qemu_irq a20_out;
4b78a802
BS
515} Port92State;
516
93ef4192
AG
517static void port92_write(void *opaque, hwaddr addr, uint64_t val,
518 unsigned size)
4b78a802
BS
519{
520 Port92State *s = opaque;
4700a316 521 int oldval = s->outport;
4b78a802 522
c5539cb4 523 DPRINTF("port92: write 0x%02" PRIx64 "\n", val);
4b78a802 524 s->outport = val;
d812b3d6 525 qemu_set_irq(s->a20_out, (val >> 1) & 1);
4700a316 526 if ((val & 1) && !(oldval & 1)) {
cf83f140 527 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET);
4b78a802
BS
528 }
529}
530
93ef4192
AG
531static uint64_t port92_read(void *opaque, hwaddr addr,
532 unsigned size)
4b78a802
BS
533{
534 Port92State *s = opaque;
535 uint32_t ret;
536
537 ret = s->outport;
538 DPRINTF("port92: read 0x%02x\n", ret);
539 return ret;
540}
541
d80fe99d 542static void port92_init(ISADevice *dev, qemu_irq a20_out)
4b78a802 543{
d80fe99d 544 qdev_connect_gpio_out_named(DEVICE(dev), PORT92_A20_LINE, 0, a20_out);
4b78a802
BS
545}
546
547static const VMStateDescription vmstate_port92_isa = {
548 .name = "port92",
549 .version_id = 1,
550 .minimum_version_id = 1,
d49805ae 551 .fields = (VMStateField[]) {
4b78a802
BS
552 VMSTATE_UINT8(outport, Port92State),
553 VMSTATE_END_OF_LIST()
554 }
555};
556
557static void port92_reset(DeviceState *d)
558{
a0881c64 559 Port92State *s = PORT92(d);
4b78a802
BS
560
561 s->outport &= ~1;
562}
563
23af670e 564static const MemoryRegionOps port92_ops = {
93ef4192
AG
565 .read = port92_read,
566 .write = port92_write,
567 .impl = {
568 .min_access_size = 1,
569 .max_access_size = 1,
570 },
571 .endianness = DEVICE_LITTLE_ENDIAN,
23af670e
RH
572};
573
db895a1e 574static void port92_initfn(Object *obj)
4b78a802 575{
db895a1e 576 Port92State *s = PORT92(obj);
4b78a802 577
1437c94b 578 memory_region_init_io(&s->io, OBJECT(s), &port92_ops, s, "port92", 1);
23af670e 579
4b78a802 580 s->outport = 0;
d812b3d6
EV
581
582 qdev_init_gpio_out_named(DEVICE(obj), &s->a20_out, PORT92_A20_LINE, 1);
db895a1e
AF
583}
584
585static void port92_realizefn(DeviceState *dev, Error **errp)
586{
587 ISADevice *isadev = ISA_DEVICE(dev);
588 Port92State *s = PORT92(dev);
589
590 isa_register_ioport(isadev, &s->io, 0x92);
4b78a802
BS
591}
592
8f04ee08
AL
593static void port92_class_initfn(ObjectClass *klass, void *data)
594{
39bffca2 595 DeviceClass *dc = DEVICE_CLASS(klass);
db895a1e 596
db895a1e 597 dc->realize = port92_realizefn;
39bffca2
AL
598 dc->reset = port92_reset;
599 dc->vmsd = &vmstate_port92_isa;
f3b17640
MA
600 /*
601 * Reason: unlike ordinary ISA devices, this one needs additional
602 * wiring: its A20 output line needs to be wired up by
603 * port92_init().
604 */
e90f2a8c 605 dc->user_creatable = false;
8f04ee08
AL
606}
607
8c43a6f0 608static const TypeInfo port92_info = {
a0881c64 609 .name = TYPE_PORT92,
39bffca2
AL
610 .parent = TYPE_ISA_DEVICE,
611 .instance_size = sizeof(Port92State),
db895a1e 612 .instance_init = port92_initfn,
39bffca2 613 .class_init = port92_class_initfn,
4b78a802
BS
614};
615
83f7d43a 616static void port92_register_types(void)
4b78a802 617{
39bffca2 618 type_register_static(&port92_info);
4b78a802 619}
83f7d43a
AF
620
621type_init(port92_register_types)
4b78a802 622
956a3e6b 623static void handle_a20_line_change(void *opaque, int irq, int level)
59b8ad81 624{
cc36a7a2 625 X86CPU *cpu = opaque;
e1a23744 626
956a3e6b 627 /* XXX: send to all CPUs ? */
4b78a802 628 /* XXX: add logic to handle multiple A20 line sources */
cc36a7a2 629 x86_cpu_set_a20(cpu, level);
e1a23744
FB
630}
631
4c5b10b7
JS
632int e820_add_entry(uint64_t address, uint64_t length, uint32_t type)
633{
7d67110f 634 int index = le32_to_cpu(e820_reserve.count);
4c5b10b7
JS
635 struct e820_entry *entry;
636
7d67110f
GH
637 if (type != E820_RAM) {
638 /* old FW_CFG_E820_TABLE entry -- reservations only */
639 if (index >= E820_NR_ENTRIES) {
640 return -EBUSY;
641 }
642 entry = &e820_reserve.entry[index++];
643
644 entry->address = cpu_to_le64(address);
645 entry->length = cpu_to_le64(length);
646 entry->type = cpu_to_le32(type);
647
648 e820_reserve.count = cpu_to_le32(index);
649 }
4c5b10b7 650
7d67110f 651 /* new "etc/e820" file -- include ram too */
ab3ad07f 652 e820_table = g_renew(struct e820_entry, e820_table, e820_entries + 1);
7d67110f
GH
653 e820_table[e820_entries].address = cpu_to_le64(address);
654 e820_table[e820_entries].length = cpu_to_le64(length);
655 e820_table[e820_entries].type = cpu_to_le32(type);
656 e820_entries++;
4c5b10b7 657
7d67110f 658 return e820_entries;
4c5b10b7
JS
659}
660
7bf8ef19
GS
661int e820_get_num_entries(void)
662{
663 return e820_entries;
664}
665
666bool e820_get_entry(int idx, uint32_t type, uint64_t *address, uint64_t *length)
667{
668 if (idx < e820_entries && e820_table[idx].type == cpu_to_le32(type)) {
669 *address = le64_to_cpu(e820_table[idx].address);
670 *length = le64_to_cpu(e820_table[idx].length);
671 return true;
672 }
673 return false;
674}
675
54a40293
EH
676/* Enables contiguous-apic-ID mode, for compatibility */
677static bool compat_apic_id_mode;
678
679void enable_compat_apic_id_mode(void)
680{
681 compat_apic_id_mode = true;
682}
683
684/* Calculates initial APIC ID for a specific CPU index
685 *
686 * Currently we need to be able to calculate the APIC ID from the CPU index
687 * alone (without requiring a CPU object), as the QEMU<->Seabios interfaces have
688 * no concept of "CPU index", and the NUMA tables on fw_cfg need the APIC ID of
689 * all CPUs up to max_cpus.
690 */
691static uint32_t x86_cpu_apic_id_from_index(unsigned int cpu_index)
692{
693 uint32_t correct_id;
694 static bool warned;
695
696 correct_id = x86_apicid_from_cpu_idx(smp_cores, smp_threads, cpu_index);
697 if (compat_apic_id_mode) {
b1c12027 698 if (cpu_index != correct_id && !warned && !qtest_enabled()) {
54a40293
EH
699 error_report("APIC IDs set in compatibility mode, "
700 "CPU topology won't match the configuration");
701 warned = true;
702 }
703 return cpu_index;
704 } else {
705 return correct_id;
706 }
707}
708
f2098f48 709static void pc_build_smbios(PCMachineState *pcms)
80cabfad 710{
c97294ec
GS
711 uint8_t *smbios_tables, *smbios_anchor;
712 size_t smbios_tables_len, smbios_anchor_len;
89cc4a27
WH
713 struct smbios_phys_mem_area *mem_array;
714 unsigned i, array_count;
38690a1c
IM
715 MachineState *ms = MACHINE(pcms);
716 X86CPU *cpu = X86_CPU(ms->possible_cpus->cpus[0].cpu);
f2098f48
IM
717
718 /* tell smbios about cpuid version and features */
719 smbios_set_cpuid(cpu->env.cpuid_version, cpu->env.features[FEAT_1_EDX]);
5fd0a9d4
WH
720
721 smbios_tables = smbios_get_table_legacy(&smbios_tables_len);
722 if (smbios_tables) {
f2098f48 723 fw_cfg_add_bytes(pcms->fw_cfg, FW_CFG_SMBIOS_ENTRIES,
5fd0a9d4
WH
724 smbios_tables, smbios_tables_len);
725 }
726
89cc4a27
WH
727 /* build the array of physical mem area from e820 table */
728 mem_array = g_malloc0(sizeof(*mem_array) * e820_get_num_entries());
729 for (i = 0, array_count = 0; i < e820_get_num_entries(); i++) {
730 uint64_t addr, len;
731
732 if (e820_get_entry(i, E820_RAM, &addr, &len)) {
733 mem_array[array_count].address = addr;
734 mem_array[array_count].length = len;
735 array_count++;
736 }
737 }
738 smbios_get_tables(mem_array, array_count,
739 &smbios_tables, &smbios_tables_len,
5fd0a9d4 740 &smbios_anchor, &smbios_anchor_len);
89cc4a27
WH
741 g_free(mem_array);
742
5fd0a9d4 743 if (smbios_anchor) {
f2098f48 744 fw_cfg_add_file(pcms->fw_cfg, "etc/smbios/smbios-tables",
5fd0a9d4 745 smbios_tables, smbios_tables_len);
f2098f48 746 fw_cfg_add_file(pcms->fw_cfg, "etc/smbios/smbios-anchor",
5fd0a9d4
WH
747 smbios_anchor, smbios_anchor_len);
748 }
749}
750
ebde2465 751static FWCfgState *bochs_bios_init(AddressSpace *as, PCMachineState *pcms)
5fd0a9d4
WH
752{
753 FWCfgState *fw_cfg;
11c2fd3e 754 uint64_t *numa_fw_cfg;
ea265072
IM
755 int i;
756 const CPUArchIdList *cpus;
757 MachineClass *mc = MACHINE_GET_CLASS(pcms);
3cce6243 758
305ae888 759 fw_cfg = fw_cfg_init_io_dma(FW_CFG_IO_BASE, FW_CFG_IO_BASE + 4, as);
e3cadac0 760 fw_cfg_add_i16(fw_cfg, FW_CFG_NB_CPUS, pcms->boot_cpus);
c886fc4c 761
1d934e89
EH
762 /* FW_CFG_MAX_CPUS is a bit confusing/problematic on x86:
763 *
a3abd0f2
IM
764 * For machine types prior to 1.8, SeaBIOS needs FW_CFG_MAX_CPUS for
765 * building MPTable, ACPI MADT, ACPI CPU hotplug and ACPI SRAT table,
766 * that tables are based on xAPIC ID and QEMU<->SeaBIOS interface
767 * for CPU hotplug also uses APIC ID and not "CPU index".
768 * This means that FW_CFG_MAX_CPUS is not the "maximum number of CPUs",
769 * but the "limit to the APIC ID values SeaBIOS may see".
1d934e89 770 *
a3abd0f2
IM
771 * So for compatibility reasons with old BIOSes we are stuck with
772 * "etc/max-cpus" actually being apic_id_limit
1d934e89 773 */
ebde2465 774 fw_cfg_add_i16(fw_cfg, FW_CFG_MAX_CPUS, (uint16_t)pcms->apic_id_limit);
905fdcb5 775 fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size);
089da572
MA
776 fw_cfg_add_bytes(fw_cfg, FW_CFG_ACPI_TABLES,
777 acpi_tables, acpi_tables_len);
9b5b76d4 778 fw_cfg_add_i32(fw_cfg, FW_CFG_IRQ0_OVERRIDE, kvm_allows_irq0_override());
b6f6e3d3 779
089da572 780 fw_cfg_add_bytes(fw_cfg, FW_CFG_E820_TABLE,
7d67110f
GH
781 &e820_reserve, sizeof(e820_reserve));
782 fw_cfg_add_file(fw_cfg, "etc/e820", e820_table,
783 sizeof(struct e820_entry) * e820_entries);
11c2fd3e 784
089da572 785 fw_cfg_add_bytes(fw_cfg, FW_CFG_HPET, &hpet_cfg, sizeof(hpet_cfg));
11c2fd3e
AL
786 /* allocate memory for the NUMA channel: one (64bit) word for the number
787 * of nodes, one word for each VCPU->node and one word for each node to
788 * hold the amount of memory.
789 */
ebde2465 790 numa_fw_cfg = g_new0(uint64_t, 1 + pcms->apic_id_limit + nb_numa_nodes);
11c2fd3e 791 numa_fw_cfg[0] = cpu_to_le64(nb_numa_nodes);
ea265072
IM
792 cpus = mc->possible_cpu_arch_ids(MACHINE(pcms));
793 for (i = 0; i < cpus->len; i++) {
794 unsigned int apic_id = cpus->cpus[i].arch_id;
ebde2465 795 assert(apic_id < pcms->apic_id_limit);
d41f3e75 796 numa_fw_cfg[apic_id + 1] = cpu_to_le64(cpus->cpus[i].props.node_id);
11c2fd3e
AL
797 }
798 for (i = 0; i < nb_numa_nodes; i++) {
ebde2465
IM
799 numa_fw_cfg[pcms->apic_id_limit + 1 + i] =
800 cpu_to_le64(numa_info[i].node_mem);
11c2fd3e 801 }
089da572 802 fw_cfg_add_bytes(fw_cfg, FW_CFG_NUMA, numa_fw_cfg,
ebde2465 803 (1 + pcms->apic_id_limit + nb_numa_nodes) *
1d934e89 804 sizeof(*numa_fw_cfg));
bf483392
AG
805
806 return fw_cfg;
80cabfad
FB
807}
808
642a4f96
TS
809static long get_file_size(FILE *f)
810{
811 long where, size;
812
813 /* XXX: on Unix systems, using fstat() probably makes more sense */
814
815 where = ftell(f);
816 fseek(f, 0, SEEK_END);
817 size = ftell(f);
818 fseek(f, where, SEEK_SET);
819
820 return size;
821}
822
3cbeb524
AB
823/* setup_data types */
824#define SETUP_NONE 0
825#define SETUP_E820_EXT 1
826#define SETUP_DTB 2
827#define SETUP_PCI 3
828#define SETUP_EFI 4
829
830struct setup_data {
831 uint64_t next;
832 uint32_t type;
833 uint32_t len;
834 uint8_t data[0];
835} __attribute__((packed));
836
df1f79fd
EH
837static void load_linux(PCMachineState *pcms,
838 FWCfgState *fw_cfg)
642a4f96
TS
839{
840 uint16_t protocol;
f3839fda
LZ
841 int setup_size, kernel_size, cmdline_size;
842 int64_t initrd_size = 0;
3cbeb524 843 int dtb_size, setup_data_offset;
642a4f96 844 uint32_t initrd_max;
57a46d05 845 uint8_t header[8192], *setup, *kernel, *initrd_data;
a8170e5e 846 hwaddr real_addr, prot_addr, cmdline_addr, initrd_addr = 0;
45a50b16 847 FILE *f;
bf4e5d92 848 char *vmode;
df1f79fd 849 MachineState *machine = MACHINE(pcms);
cd4040ec 850 PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms);
3cbeb524 851 struct setup_data *setup_data;
df1f79fd
EH
852 const char *kernel_filename = machine->kernel_filename;
853 const char *initrd_filename = machine->initrd_filename;
3cbeb524 854 const char *dtb_filename = machine->dtb;
df1f79fd 855 const char *kernel_cmdline = machine->kernel_cmdline;
642a4f96
TS
856
857 /* Align to 16 bytes as a paranoia measure */
858 cmdline_size = (strlen(kernel_cmdline)+16) & ~15;
859
860 /* load the kernel header */
861 f = fopen(kernel_filename, "rb");
862 if (!f || !(kernel_size = get_file_size(f)) ||
0f9d76e5
LG
863 fread(header, 1, MIN(ARRAY_SIZE(header), kernel_size), f) !=
864 MIN(ARRAY_SIZE(header), kernel_size)) {
865 fprintf(stderr, "qemu: could not load kernel '%s': %s\n",
866 kernel_filename, strerror(errno));
867 exit(1);
642a4f96
TS
868 }
869
870 /* kernel protocol version */
bc4edd79 871#if 0
642a4f96 872 fprintf(stderr, "header magic: %#x\n", ldl_p(header+0x202));
bc4edd79 873#endif
0f9d76e5
LG
874 if (ldl_p(header+0x202) == 0x53726448) {
875 protocol = lduw_p(header+0x206);
876 } else {
877 /* This looks like a multiboot kernel. If it is, let's stop
878 treating it like a Linux kernel. */
52001445 879 if (load_multiboot(fw_cfg, f, kernel_filename, initrd_filename,
0f9d76e5 880 kernel_cmdline, kernel_size, header)) {
82663ee2 881 return;
0f9d76e5
LG
882 }
883 protocol = 0;
f16408df 884 }
642a4f96
TS
885
886 if (protocol < 0x200 || !(header[0x211] & 0x01)) {
0f9d76e5
LG
887 /* Low kernel */
888 real_addr = 0x90000;
889 cmdline_addr = 0x9a000 - cmdline_size;
890 prot_addr = 0x10000;
642a4f96 891 } else if (protocol < 0x202) {
0f9d76e5
LG
892 /* High but ancient kernel */
893 real_addr = 0x90000;
894 cmdline_addr = 0x9a000 - cmdline_size;
895 prot_addr = 0x100000;
642a4f96 896 } else {
0f9d76e5
LG
897 /* High and recent kernel */
898 real_addr = 0x10000;
899 cmdline_addr = 0x20000;
900 prot_addr = 0x100000;
642a4f96
TS
901 }
902
bc4edd79 903#if 0
642a4f96 904 fprintf(stderr,
0f9d76e5
LG
905 "qemu: real_addr = 0x" TARGET_FMT_plx "\n"
906 "qemu: cmdline_addr = 0x" TARGET_FMT_plx "\n"
907 "qemu: prot_addr = 0x" TARGET_FMT_plx "\n",
908 real_addr,
909 cmdline_addr,
910 prot_addr);
bc4edd79 911#endif
642a4f96
TS
912
913 /* highest address for loading the initrd */
0f9d76e5
LG
914 if (protocol >= 0x203) {
915 initrd_max = ldl_p(header+0x22c);
916 } else {
917 initrd_max = 0x37ffffff;
918 }
642a4f96 919
cd4040ec
EH
920 if (initrd_max >= pcms->below_4g_mem_size - pcmc->acpi_data_size) {
921 initrd_max = pcms->below_4g_mem_size - pcmc->acpi_data_size - 1;
927766c7 922 }
642a4f96 923
57a46d05
AG
924 fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_ADDR, cmdline_addr);
925 fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE, strlen(kernel_cmdline)+1);
96f80586 926 fw_cfg_add_string(fw_cfg, FW_CFG_CMDLINE_DATA, kernel_cmdline);
642a4f96
TS
927
928 if (protocol >= 0x202) {
0f9d76e5 929 stl_p(header+0x228, cmdline_addr);
642a4f96 930 } else {
0f9d76e5
LG
931 stw_p(header+0x20, 0xA33F);
932 stw_p(header+0x22, cmdline_addr-real_addr);
642a4f96
TS
933 }
934
bf4e5d92
PT
935 /* handle vga= parameter */
936 vmode = strstr(kernel_cmdline, "vga=");
937 if (vmode) {
938 unsigned int video_mode;
939 /* skip "vga=" */
940 vmode += 4;
941 if (!strncmp(vmode, "normal", 6)) {
942 video_mode = 0xffff;
943 } else if (!strncmp(vmode, "ext", 3)) {
944 video_mode = 0xfffe;
945 } else if (!strncmp(vmode, "ask", 3)) {
946 video_mode = 0xfffd;
947 } else {
948 video_mode = strtol(vmode, NULL, 0);
949 }
950 stw_p(header+0x1fa, video_mode);
951 }
952
642a4f96 953 /* loader type */
5cbdb3a3 954 /* High nybble = B reserved for QEMU; low nybble is revision number.
642a4f96
TS
955 If this code is substantially changed, you may want to consider
956 incrementing the revision. */
0f9d76e5
LG
957 if (protocol >= 0x200) {
958 header[0x210] = 0xB0;
959 }
642a4f96
TS
960 /* heap */
961 if (protocol >= 0x201) {
0f9d76e5
LG
962 header[0x211] |= 0x80; /* CAN_USE_HEAP */
963 stw_p(header+0x224, cmdline_addr-real_addr-0x200);
642a4f96
TS
964 }
965
966 /* load initrd */
967 if (initrd_filename) {
0f9d76e5
LG
968 if (protocol < 0x200) {
969 fprintf(stderr, "qemu: linux kernel too old to load a ram disk\n");
970 exit(1);
971 }
642a4f96 972
0f9d76e5 973 initrd_size = get_image_size(initrd_filename);
d6fa4b77 974 if (initrd_size < 0) {
7454e51d
MT
975 fprintf(stderr, "qemu: error reading initrd %s: %s\n",
976 initrd_filename, strerror(errno));
d6fa4b77 977 exit(1);
f3839fda
LZ
978 } else if (initrd_size >= initrd_max) {
979 fprintf(stderr, "qemu: initrd is too large, cannot support."
980 "(max: %"PRIu32", need %"PRId64")\n", initrd_max, initrd_size);
981 exit(1);
d6fa4b77
MK
982 }
983
45a50b16 984 initrd_addr = (initrd_max-initrd_size) & ~4095;
57a46d05 985
7267c094 986 initrd_data = g_malloc(initrd_size);
57a46d05
AG
987 load_image(initrd_filename, initrd_data);
988
989 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, initrd_addr);
990 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size);
991 fw_cfg_add_bytes(fw_cfg, FW_CFG_INITRD_DATA, initrd_data, initrd_size);
642a4f96 992
0f9d76e5
LG
993 stl_p(header+0x218, initrd_addr);
994 stl_p(header+0x21c, initrd_size);
642a4f96
TS
995 }
996
45a50b16 997 /* load kernel and setup */
642a4f96 998 setup_size = header[0x1f1];
0f9d76e5
LG
999 if (setup_size == 0) {
1000 setup_size = 4;
1001 }
642a4f96 1002 setup_size = (setup_size+1)*512;
ec5fd402
PB
1003 if (setup_size > kernel_size) {
1004 fprintf(stderr, "qemu: invalid kernel header\n");
1005 exit(1);
1006 }
45a50b16 1007 kernel_size -= setup_size;
642a4f96 1008
7267c094
AL
1009 setup = g_malloc(setup_size);
1010 kernel = g_malloc(kernel_size);
45a50b16 1011 fseek(f, 0, SEEK_SET);
5a41ecc5
KS
1012 if (fread(setup, 1, setup_size, f) != setup_size) {
1013 fprintf(stderr, "fread() failed\n");
1014 exit(1);
1015 }
1016 if (fread(kernel, 1, kernel_size, f) != kernel_size) {
1017 fprintf(stderr, "fread() failed\n");
1018 exit(1);
1019 }
642a4f96 1020 fclose(f);
3cbeb524
AB
1021
1022 /* append dtb to kernel */
1023 if (dtb_filename) {
1024 if (protocol < 0x209) {
1025 fprintf(stderr, "qemu: Linux kernel too old to load a dtb\n");
1026 exit(1);
1027 }
1028
1029 dtb_size = get_image_size(dtb_filename);
1030 if (dtb_size <= 0) {
1031 fprintf(stderr, "qemu: error reading dtb %s: %s\n",
1032 dtb_filename, strerror(errno));
1033 exit(1);
1034 }
1035
1036 setup_data_offset = QEMU_ALIGN_UP(kernel_size, 16);
1037 kernel_size = setup_data_offset + sizeof(struct setup_data) + dtb_size;
1038 kernel = g_realloc(kernel, kernel_size);
1039
1040 stq_p(header+0x250, prot_addr + setup_data_offset);
1041
1042 setup_data = (struct setup_data *)(kernel + setup_data_offset);
1043 setup_data->next = 0;
1044 setup_data->type = cpu_to_le32(SETUP_DTB);
1045 setup_data->len = cpu_to_le32(dtb_size);
1046
1047 load_image_size(dtb_filename, setup_data->data, dtb_size);
1048 }
1049
45a50b16 1050 memcpy(setup, header, MIN(sizeof(header), setup_size));
57a46d05
AG
1051
1052 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, prot_addr);
1053 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size);
1054 fw_cfg_add_bytes(fw_cfg, FW_CFG_KERNEL_DATA, kernel, kernel_size);
1055
1056 fw_cfg_add_i32(fw_cfg, FW_CFG_SETUP_ADDR, real_addr);
1057 fw_cfg_add_i32(fw_cfg, FW_CFG_SETUP_SIZE, setup_size);
1058 fw_cfg_add_bytes(fw_cfg, FW_CFG_SETUP_DATA, setup, setup_size);
1059
98e753a6
IM
1060 option_rom[nb_option_roms].bootindex = 0;
1061 option_rom[nb_option_roms].name = "linuxboot.bin";
1062 if (pcmc->linuxboot_dma_enabled && fw_cfg_dma_enabled(fw_cfg)) {
b2a575a1 1063 option_rom[nb_option_roms].name = "linuxboot_dma.bin";
b2a575a1 1064 }
57a46d05 1065 nb_option_roms++;
642a4f96
TS
1066}
1067
b41a2cd1
FB
1068#define NE2000_NB_MAX 6
1069
675d6f82
BS
1070static const int ne2000_io[NE2000_NB_MAX] = { 0x300, 0x320, 0x340, 0x360,
1071 0x280, 0x380 };
1072static const int ne2000_irq[NE2000_NB_MAX] = { 9, 10, 11, 3, 4, 5 };
b41a2cd1 1073
48a18b3c 1074void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd)
a41b2ff2
PB
1075{
1076 static int nb_ne2k = 0;
1077
1078 if (nb_ne2k == NE2000_NB_MAX)
1079 return;
48a18b3c 1080 isa_ne2000_init(bus, ne2000_io[nb_ne2k],
9453c5bc 1081 ne2000_irq[nb_ne2k], nd);
a41b2ff2
PB
1082 nb_ne2k++;
1083}
1084
92a16d7a 1085DeviceState *cpu_get_current_apic(void)
0e26b7b8 1086{
4917cf44
AF
1087 if (current_cpu) {
1088 X86CPU *cpu = X86_CPU(current_cpu);
02e51483 1089 return cpu->apic_state;
0e26b7b8
BS
1090 } else {
1091 return NULL;
1092 }
1093}
1094
845773ab 1095void pc_acpi_smi_interrupt(void *opaque, int irq, int level)
53b67b30 1096{
c3affe56 1097 X86CPU *cpu = opaque;
53b67b30
BS
1098
1099 if (level) {
c3affe56 1100 cpu_interrupt(CPU(cpu), CPU_INTERRUPT_SMI);
53b67b30
BS
1101 }
1102}
1103
074281d6 1104static void pc_new_cpu(const char *typename, int64_t apic_id, Error **errp)
31050930 1105{
074281d6 1106 Object *cpu = NULL;
31050930
IM
1107 Error *local_err = NULL;
1108
074281d6 1109 cpu = object_new(typename);
31050930 1110
c7b4efb4 1111 object_property_set_uint(cpu, apic_id, "apic-id", &local_err);
074281d6 1112 object_property_set_bool(cpu, true, "realized", &local_err);
31050930 1113
074281d6 1114 object_unref(cpu);
021c9d25 1115 error_propagate(errp, local_err);
31050930
IM
1116}
1117
c649983b
IM
1118void pc_hot_add_cpu(const int64_t id, Error **errp)
1119{
38690a1c 1120 MachineState *ms = MACHINE(qdev_get_machine());
c649983b 1121 int64_t apic_id = x86_cpu_apic_id_from_index(id);
0e3bd562 1122 Error *local_err = NULL;
c649983b 1123
8de433cb
IM
1124 if (id < 0) {
1125 error_setg(errp, "Invalid CPU id: %" PRIi64, id);
1126 return;
1127 }
1128
5ff020b7
EH
1129 if (apic_id >= ACPI_CPU_HOTPLUG_ID_LIMIT) {
1130 error_setg(errp, "Unable to add CPU: %" PRIi64
1131 ", resulting APIC ID (%" PRIi64 ") is too large",
1132 id, apic_id);
1133 return;
1134 }
1135
311ca98d 1136 pc_new_cpu(ms->cpu_type, apic_id, &local_err);
0e3bd562
AF
1137 if (local_err) {
1138 error_propagate(errp, local_err);
1139 return;
1140 }
c649983b
IM
1141}
1142
4884b7bf 1143void pc_cpus_init(PCMachineState *pcms)
70166477
IY
1144{
1145 int i;
c96a1c0b 1146 const CPUArchIdList *possible_cpus;
311ca98d 1147 MachineState *ms = MACHINE(pcms);
c96a1c0b 1148 MachineClass *mc = MACHINE_GET_CLASS(pcms);
70166477 1149
ebde2465
IM
1150 /* Calculates the limit to CPU APIC ID values
1151 *
1152 * Limit for the APIC ID value, so that all
1153 * CPU APIC IDs are < pcms->apic_id_limit.
1154 *
1155 * This is used for FW_CFG_MAX_CPUS. See comments on bochs_bios_init().
1156 */
1157 pcms->apic_id_limit = x86_cpu_apic_id_from_index(max_cpus - 1) + 1;
311ca98d 1158 possible_cpus = mc->possible_cpu_arch_ids(ms);
c96a1c0b 1159 for (i = 0; i < smp_cpus; i++) {
d342eb76
IM
1160 pc_new_cpu(possible_cpus->cpus[i].type, possible_cpus->cpus[i].arch_id,
1161 &error_fatal);
70166477
IY
1162 }
1163}
1164
217f1b4a
HZ
1165static void pc_build_feature_control_file(PCMachineState *pcms)
1166{
38690a1c
IM
1167 MachineState *ms = MACHINE(pcms);
1168 X86CPU *cpu = X86_CPU(ms->possible_cpus->cpus[0].cpu);
217f1b4a
HZ
1169 CPUX86State *env = &cpu->env;
1170 uint32_t unused, ecx, edx;
1171 uint64_t feature_control_bits = 0;
1172 uint64_t *val;
1173
1174 cpu_x86_cpuid(env, 1, 0, &unused, &unused, &ecx, &edx);
1175 if (ecx & CPUID_EXT_VMX) {
1176 feature_control_bits |= FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX;
1177 }
1178
1179 if ((edx & (CPUID_EXT2_MCE | CPUID_EXT2_MCA)) ==
1180 (CPUID_EXT2_MCE | CPUID_EXT2_MCA) &&
1181 (env->mcg_cap & MCG_LMCE_P)) {
1182 feature_control_bits |= FEATURE_CONTROL_LMCE;
1183 }
1184
1185 if (!feature_control_bits) {
1186 return;
1187 }
1188
1189 val = g_malloc(sizeof(*val));
1190 *val = cpu_to_le64(feature_control_bits | FEATURE_CONTROL_LOCKED);
1191 fw_cfg_add_file(pcms->fw_cfg, "etc/msr_feature_control", val, sizeof(*val));
1192}
1193
e3cadac0
IM
1194static void rtc_set_cpus_count(ISADevice *rtc, uint16_t cpus_count)
1195{
1196 if (cpus_count > 0xff) {
1197 /* If the number of CPUs can't be represented in 8 bits, the
1198 * BIOS must use "FW_CFG_NB_CPUS". Set RTC field to 0 just
1199 * to make old BIOSes fail more predictably.
1200 */
1201 rtc_set_memory(rtc, 0x5f, 0);
1202 } else {
1203 rtc_set_memory(rtc, 0x5f, cpus_count - 1);
1204 }
1205}
1206
3459a625 1207static
9ebeed0c 1208void pc_machine_done(Notifier *notifier, void *data)
3459a625 1209{
9ebeed0c
EH
1210 PCMachineState *pcms = container_of(notifier,
1211 PCMachineState, machine_done);
1212 PCIBus *bus = pcms->bus;
2118196b 1213
ba157b69 1214 /* set the number of CPUs */
e3cadac0 1215 rtc_set_cpus_count(pcms->rtc, pcms->boot_cpus);
ba157b69 1216
2118196b
MA
1217 if (bus) {
1218 int extra_hosts = 0;
1219
1220 QLIST_FOREACH(bus, &bus->child, sibling) {
1221 /* look for expander root buses */
1222 if (pci_bus_is_root(bus)) {
1223 extra_hosts++;
1224 }
1225 }
f264d360 1226 if (extra_hosts && pcms->fw_cfg) {
2118196b
MA
1227 uint64_t *val = g_malloc(sizeof(*val));
1228 *val = cpu_to_le64(extra_hosts);
f264d360 1229 fw_cfg_add_file(pcms->fw_cfg,
2118196b
MA
1230 "etc/extra-pci-roots", val, sizeof(*val));
1231 }
1232 }
1233
bb292f5a 1234 acpi_setup();
6d42eefa 1235 if (pcms->fw_cfg) {
f2098f48 1236 pc_build_smbios(pcms);
217f1b4a 1237 pc_build_feature_control_file(pcms);
e3cadac0
IM
1238 /* update FW_CFG_NB_CPUS to account for -device added CPUs */
1239 fw_cfg_modify_i16(pcms->fw_cfg, FW_CFG_NB_CPUS, pcms->boot_cpus);
6d42eefa 1240 }
60c5e104 1241
1a26f466 1242 if (pcms->apic_id_limit > 255 && !xen_enabled()) {
60c5e104
IM
1243 IntelIOMMUState *iommu = INTEL_IOMMU_DEVICE(x86_iommu_get_default());
1244
1245 if (!iommu || !iommu->x86_iommu.intr_supported ||
1246 iommu->intr_eim != ON_OFF_AUTO_ON) {
1247 error_report("current -smp configuration requires "
1248 "Extended Interrupt Mode enabled. "
1249 "You can add an IOMMU using: "
1250 "-device intel-iommu,intremap=on,eim=on");
1251 exit(EXIT_FAILURE);
1252 }
1253 }
3459a625
MT
1254}
1255
e4e8ba04 1256void pc_guest_info_init(PCMachineState *pcms)
3459a625 1257{
1f3aba37 1258 int i;
b20c9bd5 1259
dd4c2f01
EH
1260 pcms->apic_xrupt_override = kvm_allows_irq0_override();
1261 pcms->numa_nodes = nb_numa_nodes;
1262 pcms->node_mem = g_malloc0(pcms->numa_nodes *
1263 sizeof *pcms->node_mem);
8c85901e 1264 for (i = 0; i < nb_numa_nodes; i++) {
dd4c2f01 1265 pcms->node_mem[i] = numa_info[i].node_mem;
8c85901e
WG
1266 }
1267
9ebeed0c
EH
1268 pcms->machine_done.notify = pc_machine_done;
1269 qemu_add_machine_init_done_notifier(&pcms->machine_done);
3459a625
MT
1270}
1271
83d08f26
MT
1272/* setup pci memory address space mapping into system address space */
1273void pc_pci_as_mapping_init(Object *owner, MemoryRegion *system_memory,
1274 MemoryRegion *pci_address_space)
39848901 1275{
83d08f26
MT
1276 /* Set to lower priority than RAM */
1277 memory_region_add_subregion_overlap(system_memory, 0x0,
1278 pci_address_space, -1);
39848901
IM
1279}
1280
f7e4dd6c
GH
1281void pc_acpi_init(const char *default_dsdt)
1282{
c5a98cf3 1283 char *filename;
f7e4dd6c
GH
1284
1285 if (acpi_tables != NULL) {
1286 /* manually set via -acpitable, leave it alone */
1287 return;
1288 }
1289
1290 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, default_dsdt);
1291 if (filename == NULL) {
2ab4b135 1292 warn_report("failed to find %s", default_dsdt);
c5a98cf3 1293 } else {
5bdb59a2
MA
1294 QemuOpts *opts = qemu_opts_create(qemu_find_opts("acpi"), NULL, 0,
1295 &error_abort);
c5a98cf3 1296 Error *err = NULL;
f7e4dd6c 1297
5bdb59a2 1298 qemu_opt_set(opts, "file", filename, &error_abort);
0c764a9d 1299
1a4b2666 1300 acpi_table_add_builtin(opts, &err);
c5a98cf3 1301 if (err) {
88f83f35 1302 warn_reportf_err(err, "failed to load %s: ", filename);
c5a98cf3 1303 }
c5a98cf3 1304 g_free(filename);
f7e4dd6c 1305 }
f7e4dd6c
GH
1306}
1307
7bc35e0f 1308void xen_load_linux(PCMachineState *pcms)
b33a5bbf
CL
1309{
1310 int i;
1311 FWCfgState *fw_cfg;
1312
df1f79fd 1313 assert(MACHINE(pcms)->kernel_filename != NULL);
b33a5bbf 1314
305ae888 1315 fw_cfg = fw_cfg_init_io(FW_CFG_IO_BASE);
e3cadac0 1316 fw_cfg_add_i16(fw_cfg, FW_CFG_NB_CPUS, pcms->boot_cpus);
b33a5bbf
CL
1317 rom_set_fw(fw_cfg);
1318
df1f79fd 1319 load_linux(pcms, fw_cfg);
b33a5bbf
CL
1320 for (i = 0; i < nb_option_roms; i++) {
1321 assert(!strcmp(option_rom[i].name, "linuxboot.bin") ||
b2a575a1 1322 !strcmp(option_rom[i].name, "linuxboot_dma.bin") ||
b33a5bbf
CL
1323 !strcmp(option_rom[i].name, "multiboot.bin"));
1324 rom_add_option(option_rom[i].name, option_rom[i].bootindex);
1325 }
f264d360 1326 pcms->fw_cfg = fw_cfg;
b33a5bbf
CL
1327}
1328
5934e216
EH
1329void pc_memory_init(PCMachineState *pcms,
1330 MemoryRegion *system_memory,
1331 MemoryRegion *rom_memory,
1332 MemoryRegion **ram_memory)
80cabfad 1333{
cbc5b5f3
JJ
1334 int linux_boot, i;
1335 MemoryRegion *ram, *option_rom_mr;
00cb2a99 1336 MemoryRegion *ram_below_4g, *ram_above_4g;
a88b362c 1337 FWCfgState *fw_cfg;
62b160c0 1338 MachineState *machine = MACHINE(pcms);
16a9e8a5 1339 PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms);
d592d303 1340
c8d163bc
EH
1341 assert(machine->ram_size == pcms->below_4g_mem_size +
1342 pcms->above_4g_mem_size);
9521d42b
PB
1343
1344 linux_boot = (machine->kernel_filename != NULL);
80cabfad 1345
00cb2a99 1346 /* Allocate RAM. We allocate it as a single memory region and use
66a0a2cb 1347 * aliases to address portions of it, mostly for backwards compatibility
00cb2a99
AK
1348 * with older qemus that used qemu_ram_alloc().
1349 */
7267c094 1350 ram = g_malloc(sizeof(*ram));
9521d42b
PB
1351 memory_region_allocate_system_memory(ram, NULL, "pc.ram",
1352 machine->ram_size);
ae0a5466 1353 *ram_memory = ram;
7267c094 1354 ram_below_4g = g_malloc(sizeof(*ram_below_4g));
2c9b15ca 1355 memory_region_init_alias(ram_below_4g, NULL, "ram-below-4g", ram,
c8d163bc 1356 0, pcms->below_4g_mem_size);
00cb2a99 1357 memory_region_add_subregion(system_memory, 0, ram_below_4g);
c8d163bc
EH
1358 e820_add_entry(0, pcms->below_4g_mem_size, E820_RAM);
1359 if (pcms->above_4g_mem_size > 0) {
7267c094 1360 ram_above_4g = g_malloc(sizeof(*ram_above_4g));
2c9b15ca 1361 memory_region_init_alias(ram_above_4g, NULL, "ram-above-4g", ram,
c8d163bc
EH
1362 pcms->below_4g_mem_size,
1363 pcms->above_4g_mem_size);
00cb2a99
AK
1364 memory_region_add_subregion(system_memory, 0x100000000ULL,
1365 ram_above_4g);
c8d163bc 1366 e820_add_entry(0x100000000ULL, pcms->above_4g_mem_size, E820_RAM);
bbe80adf 1367 }
82b36dc3 1368
bb292f5a 1369 if (!pcmc->has_reserved_memory &&
ca8336f3 1370 (machine->ram_slots ||
9521d42b 1371 (machine->maxram_size > machine->ram_size))) {
ca8336f3
IM
1372 MachineClass *mc = MACHINE_GET_CLASS(machine);
1373
1374 error_report("\"-memory 'slots|maxmem'\" is not supported by: %s",
1375 mc->name);
1376 exit(EXIT_FAILURE);
1377 }
1378
b0c14ec4
DH
1379 /* always allocate the device memory information */
1380 machine->device_memory = g_malloc0(sizeof(*machine->device_memory));
1381
f2ffbe2b 1382 /* initialize device memory address space */
bb292f5a 1383 if (pcmc->has_reserved_memory &&
9521d42b 1384 (machine->ram_size < machine->maxram_size)) {
f2ffbe2b 1385 ram_addr_t device_mem_size = machine->maxram_size - machine->ram_size;
619d11e4 1386
a0cc8856
IM
1387 if (machine->ram_slots > ACPI_MAX_RAM_SLOTS) {
1388 error_report("unsupported amount of memory slots: %"PRIu64,
1389 machine->ram_slots);
1390 exit(EXIT_FAILURE);
1391 }
1392
f2c38522
PK
1393 if (QEMU_ALIGN_UP(machine->maxram_size,
1394 TARGET_PAGE_SIZE) != machine->maxram_size) {
1395 error_report("maximum memory size must by aligned to multiple of "
1396 "%d bytes", TARGET_PAGE_SIZE);
1397 exit(EXIT_FAILURE);
1398 }
1399
b0c14ec4 1400 machine->device_memory->base =
d471bf3e 1401 ROUND_UP(0x100000000ULL + pcms->above_4g_mem_size, 1 * GiB);
619d11e4 1402
16a9e8a5 1403 if (pcmc->enforce_aligned_dimm) {
f2ffbe2b 1404 /* size device region assuming 1G page max alignment per slot */
d471bf3e 1405 device_mem_size += (1 * GiB) * machine->ram_slots;
085f8e88
IM
1406 }
1407
f2ffbe2b
DH
1408 if ((machine->device_memory->base + device_mem_size) <
1409 device_mem_size) {
619d11e4
IM
1410 error_report("unsupported amount of maximum memory: " RAM_ADDR_FMT,
1411 machine->maxram_size);
1412 exit(EXIT_FAILURE);
1413 }
1414
b0c14ec4 1415 memory_region_init(&machine->device_memory->mr, OBJECT(pcms),
f2ffbe2b 1416 "device-memory", device_mem_size);
b0c14ec4
DH
1417 memory_region_add_subregion(system_memory, machine->device_memory->base,
1418 &machine->device_memory->mr);
619d11e4 1419 }
cbc5b5f3
JJ
1420
1421 /* Initialize PC system firmware */
5db3f0de 1422 pc_system_firmware_init(rom_memory, !pcmc->pci_enabled);
00cb2a99 1423
7267c094 1424 option_rom_mr = g_malloc(sizeof(*option_rom_mr));
98a99ce0 1425 memory_region_init_ram(option_rom_mr, NULL, "pc.rom", PC_ROM_SIZE,
f8ed85ac 1426 &error_fatal);
208fa0e4
IM
1427 if (pcmc->pci_enabled) {
1428 memory_region_set_readonly(option_rom_mr, true);
1429 }
4463aee6 1430 memory_region_add_subregion_overlap(rom_memory,
00cb2a99
AK
1431 PC_ROM_MIN_VGA,
1432 option_rom_mr,
1433 1);
f753ff16 1434
ebde2465 1435 fw_cfg = bochs_bios_init(&address_space_memory, pcms);
c886fc4c 1436
8832cb80 1437 rom_set_fw(fw_cfg);
1d108d97 1438
b0c14ec4 1439 if (pcmc->has_reserved_memory && machine->device_memory->base) {
de268e13 1440 uint64_t *val = g_malloc(sizeof(*val));
2f8b5008 1441 PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms);
b0c14ec4 1442 uint64_t res_mem_end = machine->device_memory->base;
2f8b5008
IM
1443
1444 if (!pcmc->broken_reserved_end) {
b0c14ec4 1445 res_mem_end += memory_region_size(&machine->device_memory->mr);
2f8b5008 1446 }
d471bf3e 1447 *val = cpu_to_le64(ROUND_UP(res_mem_end, 1 * GiB));
de268e13
IM
1448 fw_cfg_add_file(fw_cfg, "etc/reserved-memory-end", val, sizeof(*val));
1449 }
1450
f753ff16 1451 if (linux_boot) {
df1f79fd 1452 load_linux(pcms, fw_cfg);
f753ff16
PB
1453 }
1454
1455 for (i = 0; i < nb_option_roms; i++) {
2e55e842 1456 rom_add_option(option_rom[i].name, option_rom[i].bootindex);
406c8df3 1457 }
f264d360 1458 pcms->fw_cfg = fw_cfg;
cb135f59
PX
1459
1460 /* Init default IOAPIC address space */
1461 pcms->ioapic_as = &address_space_memory;
3d53f5c3
IY
1462}
1463
9fa99d25
MA
1464/*
1465 * The 64bit pci hole starts after "above 4G RAM" and
1466 * potentially the space reserved for memory hotplug.
1467 */
1468uint64_t pc_pci_hole64_start(void)
1469{
1470 PCMachineState *pcms = PC_MACHINE(qdev_get_machine());
1471 PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms);
b0c14ec4 1472 MachineState *ms = MACHINE(pcms);
9fa99d25
MA
1473 uint64_t hole64_start = 0;
1474
b0c14ec4
DH
1475 if (pcmc->has_reserved_memory && ms->device_memory->base) {
1476 hole64_start = ms->device_memory->base;
9fa99d25 1477 if (!pcmc->broken_reserved_end) {
b0c14ec4 1478 hole64_start += memory_region_size(&ms->device_memory->mr);
9fa99d25
MA
1479 }
1480 } else {
1481 hole64_start = 0x100000000ULL + pcms->above_4g_mem_size;
1482 }
1483
d471bf3e 1484 return ROUND_UP(hole64_start, 1 * GiB);
9fa99d25
MA
1485}
1486
0b0cc076 1487qemu_irq pc_allocate_cpu_irq(void)
845773ab 1488{
0b0cc076 1489 return qemu_allocate_irq(pic_irq_request, NULL, 0);
845773ab
IY
1490}
1491
48a18b3c 1492DeviceState *pc_vga_init(ISABus *isa_bus, PCIBus *pci_bus)
765d7908 1493{
ad6d45fa
AL
1494 DeviceState *dev = NULL;
1495
bab47d9a 1496 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_VGA);
16094b75
AJ
1497 if (pci_bus) {
1498 PCIDevice *pcidev = pci_vga_init(pci_bus);
1499 dev = pcidev ? &pcidev->qdev : NULL;
1500 } else if (isa_bus) {
1501 ISADevice *isadev = isa_vga_init(isa_bus);
4a17cc4f 1502 dev = isadev ? DEVICE(isadev) : NULL;
765d7908 1503 }
bab47d9a 1504 rom_reset_order_override();
ad6d45fa 1505 return dev;
765d7908
IY
1506}
1507
258711c6
JG
1508static const MemoryRegionOps ioport80_io_ops = {
1509 .write = ioport80_write,
c02e1eac 1510 .read = ioport80_read,
258711c6
JG
1511 .endianness = DEVICE_NATIVE_ENDIAN,
1512 .impl = {
1513 .min_access_size = 1,
1514 .max_access_size = 1,
1515 },
1516};
1517
1518static const MemoryRegionOps ioportF0_io_ops = {
1519 .write = ioportF0_write,
c02e1eac 1520 .read = ioportF0_read,
258711c6
JG
1521 .endianness = DEVICE_NATIVE_ENDIAN,
1522 .impl = {
1523 .min_access_size = 1,
1524 .max_access_size = 1,
1525 },
1526};
1527
ac64273c
PMD
1528static void pc_superio_init(ISABus *isa_bus, bool create_fdctrl, bool no_vmport)
1529{
1530 int i;
1531 DriveInfo *fd[MAX_FD];
1532 qemu_irq *a20_line;
1533 ISADevice *i8042, *port92, *vmmouse;
1534
def337ff 1535 serial_hds_isa_init(isa_bus, 0, MAX_ISA_SERIAL_PORTS);
ac64273c
PMD
1536 parallel_hds_isa_init(isa_bus, MAX_PARALLEL_PORTS);
1537
1538 for (i = 0; i < MAX_FD; i++) {
1539 fd[i] = drive_get(IF_FLOPPY, 0, i);
1540 create_fdctrl |= !!fd[i];
1541 }
1542 if (create_fdctrl) {
1543 fdctrl_init_isa(isa_bus, fd);
1544 }
1545
1546 i8042 = isa_create_simple(isa_bus, "i8042");
1547 if (!no_vmport) {
1548 vmport_init(isa_bus);
1549 vmmouse = isa_try_create(isa_bus, "vmmouse");
1550 } else {
1551 vmmouse = NULL;
1552 }
1553 if (vmmouse) {
1554 DeviceState *dev = DEVICE(vmmouse);
1555 qdev_prop_set_ptr(dev, "ps2_mouse", i8042);
1556 qdev_init_nofail(dev);
1557 }
1558 port92 = isa_create_simple(isa_bus, "port92");
1559
1560 a20_line = qemu_allocate_irqs(handle_a20_line_change, first_cpu, 2);
1561 i8042_setup_a20_line(i8042, a20_line[0]);
1562 port92_init(port92, a20_line[1]);
1563 g_free(a20_line);
1564}
1565
48a18b3c 1566void pc_basic_device_init(ISABus *isa_bus, qemu_irq *gsi,
1611977c 1567 ISADevice **rtc_state,
fd53c87c 1568 bool create_fdctrl,
7a10ef51 1569 bool no_vmport,
feddd2fd 1570 bool has_pit,
3a87d009 1571 uint32_t hpet_irqs)
ffe513da
IY
1572{
1573 int i;
ce967e2f
JK
1574 DeviceState *hpet = NULL;
1575 int pit_isa_irq = 0;
1576 qemu_irq pit_alt_irq = NULL;
7d932dfd 1577 qemu_irq rtc_irq = NULL;
ac64273c 1578 ISADevice *pit = NULL;
258711c6
JG
1579 MemoryRegion *ioport80_io = g_new(MemoryRegion, 1);
1580 MemoryRegion *ioportF0_io = g_new(MemoryRegion, 1);
ffe513da 1581
2c9b15ca 1582 memory_region_init_io(ioport80_io, NULL, &ioport80_io_ops, NULL, "ioport80", 1);
258711c6 1583 memory_region_add_subregion(isa_bus->address_space_io, 0x80, ioport80_io);
ffe513da 1584
2c9b15ca 1585 memory_region_init_io(ioportF0_io, NULL, &ioportF0_io_ops, NULL, "ioportF0", 1);
258711c6 1586 memory_region_add_subregion(isa_bus->address_space_io, 0xf0, ioportF0_io);
ffe513da 1587
5d17c0d2
JK
1588 /*
1589 * Check if an HPET shall be created.
1590 *
1591 * Without KVM_CAP_PIT_STATE2, we cannot switch off the in-kernel PIT
1592 * when the HPET wants to take over. Thus we have to disable the latter.
1593 */
1594 if (!no_hpet && (!kvm_irqchip_in_kernel() || kvm_has_pit_state2())) {
7a10ef51 1595 /* In order to set property, here not using sysbus_try_create_simple */
51116102 1596 hpet = qdev_try_create(NULL, TYPE_HPET);
dd703b99 1597 if (hpet) {
7a10ef51
LPF
1598 /* For pc-piix-*, hpet's intcap is always IRQ2. For pc-q35-1.7
1599 * and earlier, use IRQ2 for compat. Otherwise, use IRQ16~23,
1600 * IRQ8 and IRQ2.
1601 */
5d7fb0f2 1602 uint8_t compat = object_property_get_uint(OBJECT(hpet),
7a10ef51
LPF
1603 HPET_INTCAP, NULL);
1604 if (!compat) {
1605 qdev_prop_set_uint32(hpet, HPET_INTCAP, hpet_irqs);
1606 }
1607 qdev_init_nofail(hpet);
1608 sysbus_mmio_map(SYS_BUS_DEVICE(hpet), 0, HPET_BASE);
1609
b881fbe9 1610 for (i = 0; i < GSI_NUM_PINS; i++) {
1356b98d 1611 sysbus_connect_irq(SYS_BUS_DEVICE(hpet), i, gsi[i]);
dd703b99 1612 }
ce967e2f
JK
1613 pit_isa_irq = -1;
1614 pit_alt_irq = qdev_get_gpio_in(hpet, HPET_LEGACY_PIT_INT);
1615 rtc_irq = qdev_get_gpio_in(hpet, HPET_LEGACY_RTC_INT);
822557eb 1616 }
ffe513da 1617 }
6c646a11 1618 *rtc_state = mc146818_rtc_init(isa_bus, 2000, rtc_irq);
7d932dfd
JK
1619
1620 qemu_register_boot_set(pc_boot_set, *rtc_state);
1621
feddd2fd 1622 if (!xen_enabled() && has_pit) {
15eafc2e 1623 if (kvm_pit_in_kernel()) {
c2d8d311
SS
1624 pit = kvm_pit_init(isa_bus, 0x40);
1625 } else {
acf695ec 1626 pit = i8254_pit_init(isa_bus, 0x40, pit_isa_irq, pit_alt_irq);
c2d8d311
SS
1627 }
1628 if (hpet) {
1629 /* connect PIT to output control line of the HPET */
4a17cc4f 1630 qdev_connect_gpio_out(hpet, 0, qdev_get_gpio_in(DEVICE(pit), 0));
c2d8d311
SS
1631 }
1632 pcspk_init(isa_bus, pit);
ce967e2f 1633 }
ffe513da 1634
55f613ac 1635 i8257_dma_init(isa_bus, 0);
ffe513da 1636
ac64273c
PMD
1637 /* Super I/O */
1638 pc_superio_init(isa_bus, create_fdctrl, no_vmport);
ffe513da
IY
1639}
1640
4b9c264b 1641void pc_nic_init(PCMachineClass *pcmc, ISABus *isa_bus, PCIBus *pci_bus)
9011a1a7
IY
1642{
1643 int i;
1644
bab47d9a 1645 rom_set_order_override(FW_CFG_ORDER_OVERRIDE_NIC);
9011a1a7
IY
1646 for (i = 0; i < nb_nics; i++) {
1647 NICInfo *nd = &nd_table[i];
4b9c264b 1648 const char *model = nd->model ? nd->model : pcmc->default_nic_model;
9011a1a7 1649
4b9c264b 1650 if (g_str_equal(model, "ne2k_isa")) {
9011a1a7
IY
1651 pc_init_ne2k_isa(isa_bus, nd);
1652 } else {
4b9c264b 1653 pci_nic_init_nofail(nd, pci_bus, model, NULL);
9011a1a7
IY
1654 }
1655 }
bab47d9a 1656 rom_reset_order_override();
9011a1a7
IY
1657}
1658
a39e3564
JB
1659void ioapic_init_gsi(GSIState *gsi_state, const char *parent_name)
1660{
1661 DeviceState *dev;
1662 SysBusDevice *d;
1663 unsigned int i;
1664
15eafc2e 1665 if (kvm_ioapic_in_kernel()) {
a39e3564
JB
1666 dev = qdev_create(NULL, "kvm-ioapic");
1667 } else {
1668 dev = qdev_create(NULL, "ioapic");
1669 }
1670 if (parent_name) {
1671 object_property_add_child(object_resolve_path(parent_name, NULL),
1672 "ioapic", OBJECT(dev), NULL);
1673 }
1674 qdev_init_nofail(dev);
1356b98d 1675 d = SYS_BUS_DEVICE(dev);
3a4a4697 1676 sysbus_mmio_map(d, 0, IO_APIC_DEFAULT_ADDRESS);
a39e3564
JB
1677
1678 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
1679 gsi_state->ioapic_irq[i] = qdev_get_gpio_in(dev, i);
1680 }
1681}
d5747cac 1682
d468115b
DH
1683static void pc_memory_pre_plug(HotplugHandler *hotplug_dev, DeviceState *dev,
1684 Error **errp)
1685{
1686 const PCMachineState *pcms = PC_MACHINE(hotplug_dev);
b0e62443 1687 const PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(pcms);
d468115b 1688 const bool is_nvdimm = object_dynamic_cast(OBJECT(dev), TYPE_NVDIMM);
b0e62443 1689 const uint64_t legacy_align = TARGET_PAGE_SIZE;
d468115b
DH
1690
1691 /*
1692 * When -no-acpi is used with Q35 machine type, no ACPI is built,
1693 * but pcms->acpi_dev is still created. Check !acpi_enabled in
1694 * addition to cover this case.
1695 */
1696 if (!pcms->acpi_dev || !acpi_enabled) {
1697 error_setg(errp,
1698 "memory hotplug is not enabled: missing acpi device or acpi disabled");
1699 return;
1700 }
1701
1702 if (is_nvdimm && !pcms->acpi_nvdimm_state.is_enabled) {
1703 error_setg(errp, "nvdimm is not enabled: missing 'nvdimm' in '-M'");
1704 return;
1705 }
8f1ffe5b 1706
b0e62443
DH
1707 pc_dimm_pre_plug(dev, MACHINE(hotplug_dev),
1708 pcmc->enforce_aligned_dimm ? NULL : &legacy_align, errp);
d468115b
DH
1709}
1710
bb6e2f7a
DH
1711static void pc_memory_plug(HotplugHandler *hotplug_dev,
1712 DeviceState *dev, Error **errp)
95bee274 1713{
3fbcdc27 1714 HotplugHandlerClass *hhc;
95bee274
IM
1715 Error *local_err = NULL;
1716 PCMachineState *pcms = PC_MACHINE(hotplug_dev);
7f3cf2d6 1717 bool is_nvdimm = object_dynamic_cast(OBJECT(dev), TYPE_NVDIMM);
95bee274 1718
b0e62443 1719 pc_dimm_plug(dev, MACHINE(pcms), &local_err);
43bbb49e 1720 if (local_err) {
b8865591
IM
1721 goto out;
1722 }
1723
7f3cf2d6 1724 if (is_nvdimm) {
284197e4 1725 nvdimm_plug(&pcms->acpi_nvdimm_state);
c7f8d0f3
XG
1726 }
1727
3fbcdc27 1728 hhc = HOTPLUG_HANDLER_GET_CLASS(pcms->acpi_dev);
8e23184b 1729 hhc->plug(HOTPLUG_HANDLER(pcms->acpi_dev), dev, &error_abort);
95bee274
IM
1730out:
1731 error_propagate(errp, local_err);
1732}
1733
bb6e2f7a
DH
1734static void pc_memory_unplug_request(HotplugHandler *hotplug_dev,
1735 DeviceState *dev, Error **errp)
64fec58e
TC
1736{
1737 HotplugHandlerClass *hhc;
1738 Error *local_err = NULL;
1739 PCMachineState *pcms = PC_MACHINE(hotplug_dev);
1740
8cd91ace
HZ
1741 /*
1742 * When -no-acpi is used with Q35 machine type, no ACPI is built,
1743 * but pcms->acpi_dev is still created. Check !acpi_enabled in
1744 * addition to cover this case.
1745 */
1746 if (!pcms->acpi_dev || !acpi_enabled) {
64fec58e 1747 error_setg(&local_err,
8cd91ace 1748 "memory hotplug is not enabled: missing acpi device or acpi disabled");
64fec58e
TC
1749 goto out;
1750 }
1751
b097cc52
XG
1752 if (object_dynamic_cast(OBJECT(dev), TYPE_NVDIMM)) {
1753 error_setg(&local_err,
1754 "nvdimm device hot unplug is not supported yet.");
1755 goto out;
1756 }
1757
64fec58e
TC
1758 hhc = HOTPLUG_HANDLER_GET_CLASS(pcms->acpi_dev);
1759 hhc->unplug_request(HOTPLUG_HANDLER(pcms->acpi_dev), dev, &local_err);
1760
1761out:
1762 error_propagate(errp, local_err);
1763}
1764
bb6e2f7a
DH
1765static void pc_memory_unplug(HotplugHandler *hotplug_dev,
1766 DeviceState *dev, Error **errp)
f7d3e29d
TC
1767{
1768 PCMachineState *pcms = PC_MACHINE(hotplug_dev);
f7d3e29d
TC
1769 HotplugHandlerClass *hhc;
1770 Error *local_err = NULL;
1771
1772 hhc = HOTPLUG_HANDLER_GET_CLASS(pcms->acpi_dev);
1773 hhc->unplug(HOTPLUG_HANDLER(pcms->acpi_dev), dev, &local_err);
1774
1775 if (local_err) {
1776 goto out;
1777 }
1778
284878ee 1779 pc_dimm_unplug(dev, MACHINE(pcms));
f7d3e29d
TC
1780 object_unparent(OBJECT(dev));
1781
1782 out:
1783 error_propagate(errp, local_err);
1784}
1785
3811ef14
IM
1786static int pc_apic_cmp(const void *a, const void *b)
1787{
1788 CPUArchId *apic_a = (CPUArchId *)a;
1789 CPUArchId *apic_b = (CPUArchId *)b;
1790
1791 return apic_a->arch_id - apic_b->arch_id;
1792}
1793
7baef5cf 1794/* returns pointer to CPUArchId descriptor that matches CPU's apic_id
38690a1c 1795 * in ms->possible_cpus->cpus, if ms->possible_cpus->cpus has no
b12227af 1796 * entry corresponding to CPU's apic_id returns NULL.
7baef5cf 1797 */
1ea69c0e 1798static CPUArchId *pc_find_cpu_slot(MachineState *ms, uint32_t id, int *idx)
7baef5cf 1799{
7baef5cf
IM
1800 CPUArchId apic_id, *found_cpu;
1801
1ea69c0e 1802 apic_id.arch_id = id;
38690a1c
IM
1803 found_cpu = bsearch(&apic_id, ms->possible_cpus->cpus,
1804 ms->possible_cpus->len, sizeof(*ms->possible_cpus->cpus),
7baef5cf
IM
1805 pc_apic_cmp);
1806 if (found_cpu && idx) {
38690a1c 1807 *idx = found_cpu - ms->possible_cpus->cpus;
7baef5cf
IM
1808 }
1809 return found_cpu;
1810}
1811
5279569e
GZ
1812static void pc_cpu_plug(HotplugHandler *hotplug_dev,
1813 DeviceState *dev, Error **errp)
1814{
7baef5cf 1815 CPUArchId *found_cpu;
5279569e
GZ
1816 HotplugHandlerClass *hhc;
1817 Error *local_err = NULL;
1ea69c0e 1818 X86CPU *cpu = X86_CPU(dev);
5279569e
GZ
1819 PCMachineState *pcms = PC_MACHINE(hotplug_dev);
1820
a44a49db
IM
1821 if (pcms->acpi_dev) {
1822 hhc = HOTPLUG_HANDLER_GET_CLASS(pcms->acpi_dev);
1823 hhc->plug(HOTPLUG_HANDLER(pcms->acpi_dev), dev, &local_err);
1824 if (local_err) {
1825 goto out;
1826 }
5279569e
GZ
1827 }
1828
e3cadac0
IM
1829 /* increment the number of CPUs */
1830 pcms->boot_cpus++;
26ef65be 1831 if (pcms->rtc) {
e3cadac0 1832 rtc_set_cpus_count(pcms->rtc, pcms->boot_cpus);
26ef65be
IM
1833 }
1834 if (pcms->fw_cfg) {
e3cadac0 1835 fw_cfg_modify_i16(pcms->fw_cfg, FW_CFG_NB_CPUS, pcms->boot_cpus);
2d996150
GZ
1836 }
1837
1ea69c0e 1838 found_cpu = pc_find_cpu_slot(MACHINE(pcms), cpu->apic_id, NULL);
8aba3842 1839 found_cpu->cpu = OBJECT(dev);
5279569e
GZ
1840out:
1841 error_propagate(errp, local_err);
1842}
8872c25a
IM
1843static void pc_cpu_unplug_request_cb(HotplugHandler *hotplug_dev,
1844 DeviceState *dev, Error **errp)
1845{
73360e27 1846 int idx = -1;
8872c25a
IM
1847 HotplugHandlerClass *hhc;
1848 Error *local_err = NULL;
1ea69c0e 1849 X86CPU *cpu = X86_CPU(dev);
8872c25a
IM
1850 PCMachineState *pcms = PC_MACHINE(hotplug_dev);
1851
75ba2ddb
IM
1852 if (!pcms->acpi_dev) {
1853 error_setg(&local_err, "CPU hot unplug not supported without ACPI");
1854 goto out;
1855 }
1856
1ea69c0e 1857 pc_find_cpu_slot(MACHINE(pcms), cpu->apic_id, &idx);
73360e27
IM
1858 assert(idx != -1);
1859 if (idx == 0) {
1860 error_setg(&local_err, "Boot CPU is unpluggable");
1861 goto out;
1862 }
1863
8872c25a
IM
1864 hhc = HOTPLUG_HANDLER_GET_CLASS(pcms->acpi_dev);
1865 hhc->unplug_request(HOTPLUG_HANDLER(pcms->acpi_dev), dev, &local_err);
1866
1867 if (local_err) {
1868 goto out;
1869 }
1870
1871 out:
1872 error_propagate(errp, local_err);
1873
1874}
1875
1876static void pc_cpu_unplug_cb(HotplugHandler *hotplug_dev,
1877 DeviceState *dev, Error **errp)
1878{
8fe6374e 1879 CPUArchId *found_cpu;
8872c25a
IM
1880 HotplugHandlerClass *hhc;
1881 Error *local_err = NULL;
1ea69c0e 1882 X86CPU *cpu = X86_CPU(dev);
8872c25a
IM
1883 PCMachineState *pcms = PC_MACHINE(hotplug_dev);
1884
1885 hhc = HOTPLUG_HANDLER_GET_CLASS(pcms->acpi_dev);
1886 hhc->unplug(HOTPLUG_HANDLER(pcms->acpi_dev), dev, &local_err);
1887
1888 if (local_err) {
1889 goto out;
1890 }
1891
1ea69c0e 1892 found_cpu = pc_find_cpu_slot(MACHINE(pcms), cpu->apic_id, NULL);
8fe6374e
IM
1893 found_cpu->cpu = NULL;
1894 object_unparent(OBJECT(dev));
8872c25a 1895
e3cadac0
IM
1896 /* decrement the number of CPUs */
1897 pcms->boot_cpus--;
1898 /* Update the number of CPUs in CMOS */
1899 rtc_set_cpus_count(pcms->rtc, pcms->boot_cpus);
1900 fw_cfg_modify_i16(pcms->fw_cfg, FW_CFG_NB_CPUS, pcms->boot_cpus);
8872c25a
IM
1901 out:
1902 error_propagate(errp, local_err);
1903}
5279569e 1904
4ec60c76
IM
1905static void pc_cpu_pre_plug(HotplugHandler *hotplug_dev,
1906 DeviceState *dev, Error **errp)
1907{
1908 int idx;
a15d2728 1909 CPUState *cs;
e8f7b83e 1910 CPUArchId *cpu_slot;
d89c2b8b 1911 X86CPUTopoInfo topo;
4ec60c76 1912 X86CPU *cpu = X86_CPU(dev);
6970c5ff 1913 MachineState *ms = MACHINE(hotplug_dev);
4ec60c76 1914 PCMachineState *pcms = PC_MACHINE(hotplug_dev);
4ec60c76 1915
6970c5ff
IM
1916 if(!object_dynamic_cast(OBJECT(cpu), ms->cpu_type)) {
1917 error_setg(errp, "Invalid CPU type, expected cpu type: '%s'",
1918 ms->cpu_type);
1919 return;
1920 }
1921
e8f7b83e
IM
1922 /* if APIC ID is not set, set it based on socket/core/thread properties */
1923 if (cpu->apic_id == UNASSIGNED_APIC_ID) {
1924 int max_socket = (max_cpus - 1) / smp_threads / smp_cores;
1925
1926 if (cpu->socket_id < 0) {
1927 error_setg(errp, "CPU socket-id is not set");
1928 return;
1929 } else if (cpu->socket_id > max_socket) {
1930 error_setg(errp, "Invalid CPU socket-id: %u must be in range 0:%u",
1931 cpu->socket_id, max_socket);
1932 return;
1933 }
1934 if (cpu->core_id < 0) {
1935 error_setg(errp, "CPU core-id is not set");
1936 return;
1937 } else if (cpu->core_id > (smp_cores - 1)) {
1938 error_setg(errp, "Invalid CPU core-id: %u must be in range 0:%u",
1939 cpu->core_id, smp_cores - 1);
1940 return;
1941 }
1942 if (cpu->thread_id < 0) {
1943 error_setg(errp, "CPU thread-id is not set");
1944 return;
1945 } else if (cpu->thread_id > (smp_threads - 1)) {
1946 error_setg(errp, "Invalid CPU thread-id: %u must be in range 0:%u",
1947 cpu->thread_id, smp_threads - 1);
1948 return;
1949 }
1950
1951 topo.pkg_id = cpu->socket_id;
1952 topo.core_id = cpu->core_id;
1953 topo.smt_id = cpu->thread_id;
1954 cpu->apic_id = apicid_from_topo_ids(smp_cores, smp_threads, &topo);
1955 }
1956
1ea69c0e 1957 cpu_slot = pc_find_cpu_slot(MACHINE(pcms), cpu->apic_id, &idx);
4ec60c76 1958 if (!cpu_slot) {
38690a1c
IM
1959 MachineState *ms = MACHINE(pcms);
1960
e8f7b83e
IM
1961 x86_topo_ids_from_apicid(cpu->apic_id, smp_cores, smp_threads, &topo);
1962 error_setg(errp, "Invalid CPU [socket: %u, core: %u, thread: %u] with"
1963 " APIC ID %" PRIu32 ", valid index range 0:%d",
1964 topo.pkg_id, topo.core_id, topo.smt_id, cpu->apic_id,
38690a1c 1965 ms->possible_cpus->len - 1);
4ec60c76
IM
1966 return;
1967 }
1968
1969 if (cpu_slot->cpu) {
1970 error_setg(errp, "CPU[%d] with APIC ID %" PRIu32 " exists",
1971 idx, cpu->apic_id);
1972 return;
1973 }
d89c2b8b
IM
1974
1975 /* if 'address' properties socket-id/core-id/thread-id are not set, set them
c5514d0e 1976 * so that machine_query_hotpluggable_cpus would show correct values
d89c2b8b
IM
1977 */
1978 /* TODO: move socket_id/core_id/thread_id checks into x86_cpu_realizefn()
1979 * once -smp refactoring is complete and there will be CPU private
1980 * CPUState::nr_cores and CPUState::nr_threads fields instead of globals */
1981 x86_topo_ids_from_apicid(cpu->apic_id, smp_cores, smp_threads, &topo);
1982 if (cpu->socket_id != -1 && cpu->socket_id != topo.pkg_id) {
1983 error_setg(errp, "property socket-id: %u doesn't match set apic-id:"
1984 " 0x%x (socket-id: %u)", cpu->socket_id, cpu->apic_id, topo.pkg_id);
1985 return;
1986 }
1987 cpu->socket_id = topo.pkg_id;
1988
1989 if (cpu->core_id != -1 && cpu->core_id != topo.core_id) {
1990 error_setg(errp, "property core-id: %u doesn't match set apic-id:"
1991 " 0x%x (core-id: %u)", cpu->core_id, cpu->apic_id, topo.core_id);
1992 return;
1993 }
1994 cpu->core_id = topo.core_id;
1995
1996 if (cpu->thread_id != -1 && cpu->thread_id != topo.smt_id) {
1997 error_setg(errp, "property thread-id: %u doesn't match set apic-id:"
1998 " 0x%x (thread-id: %u)", cpu->thread_id, cpu->apic_id, topo.smt_id);
1999 return;
2000 }
2001 cpu->thread_id = topo.smt_id;
a15d2728 2002
e9688fab
RK
2003 if (cpu->hyperv_vpindex && !kvm_hv_vpindex_settable()) {
2004 error_setg(errp, "kernel doesn't allow setting HyperV VP_INDEX");
2005 return;
2006 }
2007
a15d2728
IM
2008 cs = CPU(cpu);
2009 cs->cpu_index = idx;
93b2a8cb 2010
a0ceb640 2011 numa_cpu_pre_plug(cpu_slot, dev, errp);
4ec60c76
IM
2012}
2013
2014static void pc_machine_device_pre_plug_cb(HotplugHandler *hotplug_dev,
2015 DeviceState *dev, Error **errp)
2016{
d468115b
DH
2017 if (object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) {
2018 pc_memory_pre_plug(hotplug_dev, dev, errp);
2019 } else if (object_dynamic_cast(OBJECT(dev), TYPE_CPU)) {
4ec60c76
IM
2020 pc_cpu_pre_plug(hotplug_dev, dev, errp);
2021 }
2022}
2023
95bee274
IM
2024static void pc_machine_device_plug_cb(HotplugHandler *hotplug_dev,
2025 DeviceState *dev, Error **errp)
2026{
2027 if (object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) {
bb6e2f7a 2028 pc_memory_plug(hotplug_dev, dev, errp);
5279569e
GZ
2029 } else if (object_dynamic_cast(OBJECT(dev), TYPE_CPU)) {
2030 pc_cpu_plug(hotplug_dev, dev, errp);
95bee274
IM
2031 }
2032}
2033
d9c5c5b8
TC
2034static void pc_machine_device_unplug_request_cb(HotplugHandler *hotplug_dev,
2035 DeviceState *dev, Error **errp)
2036{
64fec58e 2037 if (object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) {
bb6e2f7a 2038 pc_memory_unplug_request(hotplug_dev, dev, errp);
8872c25a
IM
2039 } else if (object_dynamic_cast(OBJECT(dev), TYPE_CPU)) {
2040 pc_cpu_unplug_request_cb(hotplug_dev, dev, errp);
64fec58e
TC
2041 } else {
2042 error_setg(errp, "acpi: device unplug request for not supported device"
2043 " type: %s", object_get_typename(OBJECT(dev)));
2044 }
d9c5c5b8
TC
2045}
2046
232391c1
TC
2047static void pc_machine_device_unplug_cb(HotplugHandler *hotplug_dev,
2048 DeviceState *dev, Error **errp)
2049{
f7d3e29d 2050 if (object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) {
bb6e2f7a 2051 pc_memory_unplug(hotplug_dev, dev, errp);
8872c25a
IM
2052 } else if (object_dynamic_cast(OBJECT(dev), TYPE_CPU)) {
2053 pc_cpu_unplug_cb(hotplug_dev, dev, errp);
f7d3e29d
TC
2054 } else {
2055 error_setg(errp, "acpi: device unplug for not supported device"
2056 " type: %s", object_get_typename(OBJECT(dev)));
2057 }
232391c1
TC
2058}
2059
95bee274
IM
2060static HotplugHandler *pc_get_hotpug_handler(MachineState *machine,
2061 DeviceState *dev)
2062{
5279569e
GZ
2063 if (object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM) ||
2064 object_dynamic_cast(OBJECT(dev), TYPE_CPU)) {
95bee274
IM
2065 return HOTPLUG_HANDLER(machine);
2066 }
2067
38aefb57 2068 return NULL;
95bee274
IM
2069}
2070
bf1e8939 2071static void
f2ffbe2b
DH
2072pc_machine_get_device_memory_region_size(Object *obj, Visitor *v,
2073 const char *name, void *opaque,
2074 Error **errp)
bf1e8939 2075{
b0c14ec4
DH
2076 MachineState *ms = MACHINE(obj);
2077 int64_t value = memory_region_size(&ms->device_memory->mr);
bf1e8939 2078
51e72bc1 2079 visit_type_int(v, name, &value, errp);
bf1e8939
IM
2080}
2081
c87b1520 2082static void pc_machine_get_max_ram_below_4g(Object *obj, Visitor *v,
d7bce999
EB
2083 const char *name, void *opaque,
2084 Error **errp)
c87b1520
DS
2085{
2086 PCMachineState *pcms = PC_MACHINE(obj);
2087 uint64_t value = pcms->max_ram_below_4g;
2088
51e72bc1 2089 visit_type_size(v, name, &value, errp);
c87b1520
DS
2090}
2091
2092static void pc_machine_set_max_ram_below_4g(Object *obj, Visitor *v,
d7bce999
EB
2093 const char *name, void *opaque,
2094 Error **errp)
c87b1520
DS
2095{
2096 PCMachineState *pcms = PC_MACHINE(obj);
2097 Error *error = NULL;
2098 uint64_t value;
2099
51e72bc1 2100 visit_type_size(v, name, &value, &error);
c87b1520
DS
2101 if (error) {
2102 error_propagate(errp, error);
2103 return;
2104 }
d471bf3e 2105 if (value > 4 * GiB) {
455b0fde
EB
2106 error_setg(&error,
2107 "Machine option 'max-ram-below-4g=%"PRIu64
2108 "' expects size less than or equal to 4G", value);
c87b1520
DS
2109 error_propagate(errp, error);
2110 return;
2111 }
2112
d471bf3e 2113 if (value < 1 * MiB) {
9e5d2c52
AF
2114 warn_report("Only %" PRIu64 " bytes of RAM below the 4GiB boundary,"
2115 "BIOS may not work with less than 1MiB", value);
c87b1520
DS
2116 }
2117
2118 pcms->max_ram_below_4g = value;
2119}
2120
d7bce999
EB
2121static void pc_machine_get_vmport(Object *obj, Visitor *v, const char *name,
2122 void *opaque, Error **errp)
9b23cfb7
DDAG
2123{
2124 PCMachineState *pcms = PC_MACHINE(obj);
d1048bef 2125 OnOffAuto vmport = pcms->vmport;
9b23cfb7 2126
51e72bc1 2127 visit_type_OnOffAuto(v, name, &vmport, errp);
9b23cfb7
DDAG
2128}
2129
d7bce999
EB
2130static void pc_machine_set_vmport(Object *obj, Visitor *v, const char *name,
2131 void *opaque, Error **errp)
9b23cfb7
DDAG
2132{
2133 PCMachineState *pcms = PC_MACHINE(obj);
2134
51e72bc1 2135 visit_type_OnOffAuto(v, name, &pcms->vmport, errp);
9b23cfb7
DDAG
2136}
2137
355023f2
PB
2138bool pc_machine_is_smm_enabled(PCMachineState *pcms)
2139{
2140 bool smm_available = false;
2141
2142 if (pcms->smm == ON_OFF_AUTO_OFF) {
2143 return false;
2144 }
2145
2146 if (tcg_enabled() || qtest_enabled()) {
2147 smm_available = true;
2148 } else if (kvm_enabled()) {
2149 smm_available = kvm_has_smm();
2150 }
2151
2152 if (smm_available) {
2153 return true;
2154 }
2155
2156 if (pcms->smm == ON_OFF_AUTO_ON) {
2157 error_report("System Management Mode not supported by this hypervisor.");
2158 exit(1);
2159 }
2160 return false;
2161}
2162
d7bce999
EB
2163static void pc_machine_get_smm(Object *obj, Visitor *v, const char *name,
2164 void *opaque, Error **errp)
355023f2
PB
2165{
2166 PCMachineState *pcms = PC_MACHINE(obj);
2167 OnOffAuto smm = pcms->smm;
2168
51e72bc1 2169 visit_type_OnOffAuto(v, name, &smm, errp);
355023f2
PB
2170}
2171
d7bce999
EB
2172static void pc_machine_set_smm(Object *obj, Visitor *v, const char *name,
2173 void *opaque, Error **errp)
355023f2
PB
2174{
2175 PCMachineState *pcms = PC_MACHINE(obj);
2176
51e72bc1 2177 visit_type_OnOffAuto(v, name, &pcms->smm, errp);
355023f2
PB
2178}
2179
87252e1b
XG
2180static bool pc_machine_get_nvdimm(Object *obj, Error **errp)
2181{
2182 PCMachineState *pcms = PC_MACHINE(obj);
2183
5fe79386 2184 return pcms->acpi_nvdimm_state.is_enabled;
87252e1b
XG
2185}
2186
2187static void pc_machine_set_nvdimm(Object *obj, bool value, Error **errp)
2188{
2189 PCMachineState *pcms = PC_MACHINE(obj);
2190
5fe79386 2191 pcms->acpi_nvdimm_state.is_enabled = value;
87252e1b
XG
2192}
2193
11c39b5c 2194static char *pc_machine_get_nvdimm_persistence(Object *obj, Error **errp)
9ab3aad2
RZ
2195{
2196 PCMachineState *pcms = PC_MACHINE(obj);
9ab3aad2 2197
11c39b5c 2198 return g_strdup(pcms->acpi_nvdimm_state.persistence_string);
9ab3aad2
RZ
2199}
2200
11c39b5c 2201static void pc_machine_set_nvdimm_persistence(Object *obj, const char *value,
9ab3aad2
RZ
2202 Error **errp)
2203{
2204 PCMachineState *pcms = PC_MACHINE(obj);
11c39b5c
RZ
2205 AcpiNVDIMMState *nvdimm_state = &pcms->acpi_nvdimm_state;
2206
2207 if (strcmp(value, "cpu") == 0)
2208 nvdimm_state->persistence = 3;
2209 else if (strcmp(value, "mem-ctrl") == 0)
2210 nvdimm_state->persistence = 2;
2211 else {
2212 error_report("-machine nvdimm-persistence=%s: unsupported option", value);
2213 exit(EXIT_FAILURE);
9ab3aad2
RZ
2214 }
2215
11c39b5c
RZ
2216 g_free(nvdimm_state->persistence_string);
2217 nvdimm_state->persistence_string = g_strdup(value);
9ab3aad2
RZ
2218}
2219
be232eb0
CP
2220static bool pc_machine_get_smbus(Object *obj, Error **errp)
2221{
2222 PCMachineState *pcms = PC_MACHINE(obj);
2223
2224 return pcms->smbus;
2225}
2226
2227static void pc_machine_set_smbus(Object *obj, bool value, Error **errp)
2228{
2229 PCMachineState *pcms = PC_MACHINE(obj);
2230
2231 pcms->smbus = value;
2232}
2233
272f0428
CP
2234static bool pc_machine_get_sata(Object *obj, Error **errp)
2235{
2236 PCMachineState *pcms = PC_MACHINE(obj);
2237
2238 return pcms->sata;
2239}
2240
2241static void pc_machine_set_sata(Object *obj, bool value, Error **errp)
2242{
2243 PCMachineState *pcms = PC_MACHINE(obj);
2244
2245 pcms->sata = value;
2246}
2247
feddd2fd
CP
2248static bool pc_machine_get_pit(Object *obj, Error **errp)
2249{
2250 PCMachineState *pcms = PC_MACHINE(obj);
2251
2252 return pcms->pit;
2253}
2254
2255static void pc_machine_set_pit(Object *obj, bool value, Error **errp)
2256{
2257 PCMachineState *pcms = PC_MACHINE(obj);
2258
2259 pcms->pit = value;
2260}
2261
bf1e8939
IM
2262static void pc_machine_initfn(Object *obj)
2263{
c87b1520
DS
2264 PCMachineState *pcms = PC_MACHINE(obj);
2265
5ec7d098 2266 pcms->max_ram_below_4g = 0; /* use default */
355023f2 2267 pcms->smm = ON_OFF_AUTO_AUTO;
d1048bef 2268 pcms->vmport = ON_OFF_AUTO_AUTO;
87252e1b 2269 /* nvdimm is disabled on default. */
5fe79386 2270 pcms->acpi_nvdimm_state.is_enabled = false;
021746c1
WL
2271 /* acpi build is enabled by default if machine supports it */
2272 pcms->acpi_build_enabled = PC_MACHINE_GET_CLASS(pcms)->has_acpi_build;
be232eb0 2273 pcms->smbus = true;
272f0428 2274 pcms->sata = true;
feddd2fd 2275 pcms->pit = true;
bf1e8939
IM
2276}
2277
ae50c55a
ZG
2278static void pc_machine_reset(void)
2279{
2280 CPUState *cs;
2281 X86CPU *cpu;
2282
2283 qemu_devices_reset();
2284
2285 /* Reset APIC after devices have been reset to cancel
2286 * any changes that qemu_devices_reset() might have done.
2287 */
2288 CPU_FOREACH(cs) {
2289 cpu = X86_CPU(cs);
2290
2291 if (cpu->apic_state) {
2292 device_reset(cpu->apic_state);
2293 }
2294 }
2295}
2296
ea089eeb
IM
2297static CpuInstanceProperties
2298pc_cpu_index_to_props(MachineState *ms, unsigned cpu_index)
fb43b73b 2299{
ea089eeb
IM
2300 MachineClass *mc = MACHINE_GET_CLASS(ms);
2301 const CPUArchIdList *possible_cpus = mc->possible_cpu_arch_ids(ms);
2302
2303 assert(cpu_index < possible_cpus->len);
2304 return possible_cpus->cpus[cpu_index].props;
fb43b73b
IM
2305}
2306
79e07936
IM
2307static int64_t pc_get_default_cpu_node_id(const MachineState *ms, int idx)
2308{
2309 X86CPUTopoInfo topo;
2310
2311 assert(idx < ms->possible_cpus->len);
2312 x86_topo_ids_from_apicid(ms->possible_cpus->cpus[idx].arch_id,
2313 smp_cores, smp_threads, &topo);
2314 return topo.pkg_id % nb_numa_nodes;
2315}
2316
c96a1c0b 2317static const CPUArchIdList *pc_possible_cpu_arch_ids(MachineState *ms)
3811ef14 2318{
c96a1c0b
IM
2319 int i;
2320
2321 if (ms->possible_cpus) {
2322 /*
2323 * make sure that max_cpus hasn't changed since the first use, i.e.
2324 * -smp hasn't been parsed after it
2325 */
2326 assert(ms->possible_cpus->len == max_cpus);
2327 return ms->possible_cpus;
2328 }
2329
2330 ms->possible_cpus = g_malloc0(sizeof(CPUArchIdList) +
2331 sizeof(CPUArchId) * max_cpus);
2332 ms->possible_cpus->len = max_cpus;
2333 for (i = 0; i < ms->possible_cpus->len; i++) {
c67ae933
IM
2334 X86CPUTopoInfo topo;
2335
d342eb76 2336 ms->possible_cpus->cpus[i].type = ms->cpu_type;
f2d672c2 2337 ms->possible_cpus->cpus[i].vcpus_count = 1;
c96a1c0b 2338 ms->possible_cpus->cpus[i].arch_id = x86_cpu_apic_id_from_index(i);
c67ae933
IM
2339 x86_topo_ids_from_apicid(ms->possible_cpus->cpus[i].arch_id,
2340 smp_cores, smp_threads, &topo);
2341 ms->possible_cpus->cpus[i].props.has_socket_id = true;
2342 ms->possible_cpus->cpus[i].props.socket_id = topo.pkg_id;
2343 ms->possible_cpus->cpus[i].props.has_core_id = true;
2344 ms->possible_cpus->cpus[i].props.core_id = topo.core_id;
2345 ms->possible_cpus->cpus[i].props.has_thread_id = true;
2346 ms->possible_cpus->cpus[i].props.thread_id = topo.smt_id;
c96a1c0b
IM
2347 }
2348 return ms->possible_cpus;
3811ef14
IM
2349}
2350
1255166b
BD
2351static void x86_nmi(NMIState *n, int cpu_index, Error **errp)
2352{
2353 /* cpu index isn't used */
2354 CPUState *cs;
2355
2356 CPU_FOREACH(cs) {
2357 X86CPU *cpu = X86_CPU(cs);
2358
2359 if (!cpu->apic_state) {
2360 cpu_interrupt(cs, CPU_INTERRUPT_NMI);
2361 } else {
2362 apic_deliver_nmi(cpu->apic_state);
2363 }
2364 }
2365}
2366
95bee274
IM
2367static void pc_machine_class_init(ObjectClass *oc, void *data)
2368{
2369 MachineClass *mc = MACHINE_CLASS(oc);
2370 PCMachineClass *pcmc = PC_MACHINE_CLASS(oc);
2371 HotplugHandlerClass *hc = HOTPLUG_HANDLER_CLASS(oc);
1255166b 2372 NMIClass *nc = NMI_CLASS(oc);
95bee274 2373
7102fa70
EH
2374 pcmc->pci_enabled = true;
2375 pcmc->has_acpi_build = true;
2376 pcmc->rsdp_in_ram = true;
2377 pcmc->smbios_defaults = true;
2378 pcmc->smbios_uuid_encoded = true;
2379 pcmc->gigabyte_align = true;
2380 pcmc->has_reserved_memory = true;
2381 pcmc->kvmclock_enabled = true;
16a9e8a5 2382 pcmc->enforce_aligned_dimm = true;
cd4040ec
EH
2383 /* BIOS ACPI tables: 128K. Other BIOS datastructures: less than 4K reported
2384 * to be used at the moment, 32K should be enough for a while. */
2385 pcmc->acpi_data_size = 0x20000 + 0x8000;
36f96c4b 2386 pcmc->save_tsc_khz = true;
98e753a6 2387 pcmc->linuxboot_dma_enabled = true;
debbdc00 2388 assert(!mc->get_hotplug_handler);
95bee274 2389 mc->get_hotplug_handler = pc_get_hotpug_handler;
ea089eeb 2390 mc->cpu_index_to_instance_props = pc_cpu_index_to_props;
79e07936 2391 mc->get_default_cpu_node_id = pc_get_default_cpu_node_id;
3811ef14 2392 mc->possible_cpu_arch_ids = pc_possible_cpu_arch_ids;
7b8be49d 2393 mc->auto_enable_numa_with_memhp = true;
c5514d0e 2394 mc->has_hotpluggable_cpus = true;
41742767 2395 mc->default_boot_order = "cad";
4458fb3a 2396 mc->hot_add_cpu = pc_hot_add_cpu;
2059839b 2397 mc->block_default_type = IF_IDE;
4458fb3a 2398 mc->max_cpus = 255;
ae50c55a 2399 mc->reset = pc_machine_reset;
4ec60c76 2400 hc->pre_plug = pc_machine_device_pre_plug_cb;
95bee274 2401 hc->plug = pc_machine_device_plug_cb;
d9c5c5b8 2402 hc->unplug_request = pc_machine_device_unplug_request_cb;
232391c1 2403 hc->unplug = pc_machine_device_unplug_cb;
1255166b 2404 nc->nmi_monitor_handler = x86_nmi;
311ca98d 2405 mc->default_cpu_type = TARGET_DEFAULT_CPU_TYPE;
0efc257d 2406
f2ffbe2b
DH
2407 object_class_property_add(oc, PC_MACHINE_DEVMEM_REGION_SIZE, "int",
2408 pc_machine_get_device_memory_region_size, NULL,
0efc257d
EH
2409 NULL, NULL, &error_abort);
2410
2411 object_class_property_add(oc, PC_MACHINE_MAX_RAM_BELOW_4G, "size",
2412 pc_machine_get_max_ram_below_4g, pc_machine_set_max_ram_below_4g,
2413 NULL, NULL, &error_abort);
2414
2415 object_class_property_set_description(oc, PC_MACHINE_MAX_RAM_BELOW_4G,
2416 "Maximum ram below the 4G boundary (32bit boundary)", &error_abort);
2417
2418 object_class_property_add(oc, PC_MACHINE_SMM, "OnOffAuto",
2419 pc_machine_get_smm, pc_machine_set_smm,
2420 NULL, NULL, &error_abort);
2421 object_class_property_set_description(oc, PC_MACHINE_SMM,
2422 "Enable SMM (pc & q35)", &error_abort);
2423
2424 object_class_property_add(oc, PC_MACHINE_VMPORT, "OnOffAuto",
2425 pc_machine_get_vmport, pc_machine_set_vmport,
2426 NULL, NULL, &error_abort);
2427 object_class_property_set_description(oc, PC_MACHINE_VMPORT,
2428 "Enable vmport (pc & q35)", &error_abort);
2429
2430 object_class_property_add_bool(oc, PC_MACHINE_NVDIMM,
2431 pc_machine_get_nvdimm, pc_machine_set_nvdimm, &error_abort);
be232eb0 2432
11c39b5c
RZ
2433 object_class_property_add_str(oc, PC_MACHINE_NVDIMM_PERSIST,
2434 pc_machine_get_nvdimm_persistence,
2435 pc_machine_set_nvdimm_persistence, &error_abort);
9ab3aad2 2436
be232eb0
CP
2437 object_class_property_add_bool(oc, PC_MACHINE_SMBUS,
2438 pc_machine_get_smbus, pc_machine_set_smbus, &error_abort);
272f0428
CP
2439
2440 object_class_property_add_bool(oc, PC_MACHINE_SATA,
2441 pc_machine_get_sata, pc_machine_set_sata, &error_abort);
feddd2fd
CP
2442
2443 object_class_property_add_bool(oc, PC_MACHINE_PIT,
2444 pc_machine_get_pit, pc_machine_set_pit, &error_abort);
95bee274
IM
2445}
2446
d5747cac
IM
2447static const TypeInfo pc_machine_info = {
2448 .name = TYPE_PC_MACHINE,
2449 .parent = TYPE_MACHINE,
2450 .abstract = true,
2451 .instance_size = sizeof(PCMachineState),
bf1e8939 2452 .instance_init = pc_machine_initfn,
d5747cac 2453 .class_size = sizeof(PCMachineClass),
95bee274
IM
2454 .class_init = pc_machine_class_init,
2455 .interfaces = (InterfaceInfo[]) {
2456 { TYPE_HOTPLUG_HANDLER },
1255166b 2457 { TYPE_NMI },
95bee274
IM
2458 { }
2459 },
d5747cac
IM
2460};
2461
2462static void pc_machine_register_types(void)
2463{
2464 type_register_static(&pc_machine_info);
2465}
2466
2467type_init(pc_machine_register_types)