]> git.proxmox.com Git - mirror_qemu.git/blame - hw/i386/pc.c
virtio-pci: fix migration for pci bus master
[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 */
83c9f4ca 24#include "hw/hw.h"
0d09e41a
PB
25#include "hw/i386/pc.h"
26#include "hw/char/serial.h"
27#include "hw/i386/apic.h"
28#include "hw/block/fdc.h"
83c9f4ca
PB
29#include "hw/ide.h"
30#include "hw/pci/pci.h"
83c9089e 31#include "monitor/monitor.h"
0d09e41a
PB
32#include "hw/nvram/fw_cfg.h"
33#include "hw/timer/hpet.h"
34#include "hw/i386/smbios.h"
83c9f4ca 35#include "hw/loader.h"
ca20cf32 36#include "elf.h"
47b43a1f 37#include "multiboot.h"
0d09e41a
PB
38#include "hw/timer/mc146818rtc.h"
39#include "hw/timer/i8254.h"
40#include "hw/audio/pcspk.h"
83c9f4ca
PB
41#include "hw/pci/msi.h"
42#include "hw/sysbus.h"
9c17d615
PB
43#include "sysemu/sysemu.h"
44#include "sysemu/kvm.h"
1d31f66b 45#include "kvm_i386.h"
0d09e41a 46#include "hw/xen/xen.h"
9c17d615 47#include "sysemu/blockdev.h"
0d09e41a 48#include "hw/block/block.h"
a19cbfb3 49#include "ui/qemu-spice.h"
022c62cb
PB
50#include "exec/memory.h"
51#include "exec/address-spaces.h"
9c17d615 52#include "sysemu/arch_init.h"
1de7afc9 53#include "qemu/bitmap.h"
0c764a9d 54#include "qemu/config-file.h"
0445259b 55#include "hw/acpi/acpi.h"
5ff020b7 56#include "hw/acpi/cpu_hotplug.h"
53a89e26 57#include "hw/cpu/icc_bus.h"
c649983b 58#include "hw/boards.h"
39848901 59#include "hw/pci/pci_host.h"
72c194f7 60#include "acpi-build.h"
95bee274 61#include "hw/mem/pc-dimm.h"
2e1ac493 62#include "trace.h"
bf1e8939 63#include "qapi/visitor.h"
80cabfad 64
471fd342
BS
65/* debug PC/ISA interrupts */
66//#define DEBUG_IRQ
67
68#ifdef DEBUG_IRQ
69#define DPRINTF(fmt, ...) \
70 do { printf("CPUIRQ: " fmt , ## __VA_ARGS__); } while (0)
71#else
72#define DPRINTF(fmt, ...)
73#endif
74
a80274c3 75/* Leave a chunk of memory at the top of RAM for the BIOS ACPI tables. */
927766c7
MT
76unsigned acpi_data_size = 0x20000;
77void pc_set_legacy_acpi_data_size(void)
78{
79 acpi_data_size = 0x10000;
80}
81
3cce6243 82#define BIOS_CFG_IOPORT 0x510
8a92ea2f 83#define FW_CFG_ACPI_TABLES (FW_CFG_ARCH_LOCAL + 0)
b6f6e3d3 84#define FW_CFG_SMBIOS_ENTRIES (FW_CFG_ARCH_LOCAL + 1)
6b35e7bf 85#define FW_CFG_IRQ0_OVERRIDE (FW_CFG_ARCH_LOCAL + 2)
4c5b10b7 86#define FW_CFG_E820_TABLE (FW_CFG_ARCH_LOCAL + 3)
40ac17cd 87#define FW_CFG_HPET (FW_CFG_ARCH_LOCAL + 4)
80cabfad 88
4c5b10b7
JS
89#define E820_NR_ENTRIES 16
90
91struct e820_entry {
92 uint64_t address;
93 uint64_t length;
94 uint32_t type;
541dc0d4 95} QEMU_PACKED __attribute((__aligned__(4)));
4c5b10b7
JS
96
97struct e820_table {
98 uint32_t count;
99 struct e820_entry entry[E820_NR_ENTRIES];
541dc0d4 100} QEMU_PACKED __attribute((__aligned__(4)));
4c5b10b7 101
7d67110f
GH
102static struct e820_table e820_reserve;
103static struct e820_entry *e820_table;
104static unsigned e820_entries;
dd703b99 105struct hpet_fw_config hpet_cfg = {.count = UINT8_MAX};
4c5b10b7 106
b881fbe9 107void gsi_handler(void *opaque, int n, int level)
1452411b 108{
b881fbe9 109 GSIState *s = opaque;
1452411b 110
b881fbe9
JK
111 DPRINTF("pc: %s GSI %d\n", level ? "raising" : "lowering", n);
112 if (n < ISA_NUM_IRQS) {
113 qemu_set_irq(s->i8259_irq[n], level);
1632dc6a 114 }
b881fbe9 115 qemu_set_irq(s->ioapic_irq[n], level);
2e9947d2 116}
1452411b 117
258711c6
JG
118static void ioport80_write(void *opaque, hwaddr addr, uint64_t data,
119 unsigned size)
80cabfad
FB
120{
121}
122
c02e1eac
JG
123static uint64_t ioport80_read(void *opaque, hwaddr addr, unsigned size)
124{
a6fc23e5 125 return 0xffffffffffffffffULL;
c02e1eac
JG
126}
127
f929aad6 128/* MSDOS compatibility mode FPU exception support */
d537cf6c 129static qemu_irq ferr_irq;
8e78eb28
IY
130
131void pc_register_ferr_irq(qemu_irq irq)
132{
133 ferr_irq = irq;
134}
135
f929aad6
FB
136/* XXX: add IGNNE support */
137void cpu_set_ferr(CPUX86State *s)
138{
d537cf6c 139 qemu_irq_raise(ferr_irq);
f929aad6
FB
140}
141
258711c6
JG
142static void ioportF0_write(void *opaque, hwaddr addr, uint64_t data,
143 unsigned size)
f929aad6 144{
d537cf6c 145 qemu_irq_lower(ferr_irq);
f929aad6
FB
146}
147
c02e1eac
JG
148static uint64_t ioportF0_read(void *opaque, hwaddr addr, unsigned size)
149{
a6fc23e5 150 return 0xffffffffffffffffULL;
c02e1eac
JG
151}
152
28ab0e2e 153/* TSC handling */
28ab0e2e
FB
154uint64_t cpu_get_tsc(CPUX86State *env)
155{
4a1418e0 156 return cpu_get_ticks();
28ab0e2e
FB
157}
158
a5954d5c 159/* SMM support */
f885f1ea
IY
160
161static cpu_set_smm_t smm_set;
162static void *smm_arg;
163
164void cpu_smm_register(cpu_set_smm_t callback, void *arg)
165{
166 assert(smm_set == NULL);
167 assert(smm_arg == NULL);
168 smm_set = callback;
169 smm_arg = arg;
170}
171
4a8fa5dc 172void cpu_smm_update(CPUX86State *env)
a5954d5c 173{
182735ef 174 if (smm_set && smm_arg && CPU(x86_env_get_cpu(env)) == first_cpu) {
f885f1ea 175 smm_set(!!(env->hflags & HF_SMM_MASK), smm_arg);
182735ef 176 }
a5954d5c
FB
177}
178
179
3de388f6 180/* IRQ handling */
4a8fa5dc 181int cpu_get_pic_interrupt(CPUX86State *env)
3de388f6 182{
02e51483 183 X86CPU *cpu = x86_env_get_cpu(env);
3de388f6
FB
184 int intno;
185
02e51483 186 intno = apic_get_interrupt(cpu->apic_state);
3de388f6 187 if (intno >= 0) {
3de388f6
FB
188 return intno;
189 }
3de388f6 190 /* read the irq from the PIC */
02e51483 191 if (!apic_accept_pic_intr(cpu->apic_state)) {
0e21e12b 192 return -1;
cf6d64bf 193 }
0e21e12b 194
3de388f6
FB
195 intno = pic_read_irq(isa_pic);
196 return intno;
197}
198
d537cf6c 199static void pic_irq_request(void *opaque, int irq, int level)
3de388f6 200{
182735ef
AF
201 CPUState *cs = first_cpu;
202 X86CPU *cpu = X86_CPU(cs);
a5b38b51 203
471fd342 204 DPRINTF("pic_irqs: %s irq %d\n", level? "raise" : "lower", irq);
02e51483 205 if (cpu->apic_state) {
bdc44640 206 CPU_FOREACH(cs) {
182735ef 207 cpu = X86_CPU(cs);
02e51483
CF
208 if (apic_accept_pic_intr(cpu->apic_state)) {
209 apic_deliver_pic_intr(cpu->apic_state, level);
cf6d64bf 210 }
d5529471
AJ
211 }
212 } else {
d8ed887b 213 if (level) {
c3affe56 214 cpu_interrupt(cs, CPU_INTERRUPT_HARD);
d8ed887b
AF
215 } else {
216 cpu_reset_interrupt(cs, CPU_INTERRUPT_HARD);
217 }
a5b38b51 218 }
3de388f6
FB
219}
220
b0a21b53
FB
221/* PC cmos mappings */
222
80cabfad
FB
223#define REG_EQUIPMENT_BYTE 0x14
224
d288c7ba 225static int cmos_get_fd_drive_type(FDriveType fd0)
777428f2
FB
226{
227 int val;
228
229 switch (fd0) {
d288c7ba 230 case FDRIVE_DRV_144:
777428f2
FB
231 /* 1.44 Mb 3"5 drive */
232 val = 4;
233 break;
d288c7ba 234 case FDRIVE_DRV_288:
777428f2
FB
235 /* 2.88 Mb 3"5 drive */
236 val = 5;
237 break;
d288c7ba 238 case FDRIVE_DRV_120:
777428f2
FB
239 /* 1.2 Mb 5"5 drive */
240 val = 2;
241 break;
d288c7ba 242 case FDRIVE_DRV_NONE:
777428f2
FB
243 default:
244 val = 0;
245 break;
246 }
247 return val;
248}
249
9139046c
MA
250static void cmos_init_hd(ISADevice *s, int type_ofs, int info_ofs,
251 int16_t cylinders, int8_t heads, int8_t sectors)
ba6c2377 252{
ba6c2377
FB
253 rtc_set_memory(s, type_ofs, 47);
254 rtc_set_memory(s, info_ofs, cylinders);
255 rtc_set_memory(s, info_ofs + 1, cylinders >> 8);
256 rtc_set_memory(s, info_ofs + 2, heads);
257 rtc_set_memory(s, info_ofs + 3, 0xff);
258 rtc_set_memory(s, info_ofs + 4, 0xff);
259 rtc_set_memory(s, info_ofs + 5, 0xc0 | ((heads > 8) << 3));
260 rtc_set_memory(s, info_ofs + 6, cylinders);
261 rtc_set_memory(s, info_ofs + 7, cylinders >> 8);
262 rtc_set_memory(s, info_ofs + 8, sectors);
263}
264
6ac0e82d
AZ
265/* convert boot_device letter to something recognizable by the bios */
266static int boot_device2nibble(char boot_device)
267{
268 switch(boot_device) {
269 case 'a':
270 case 'b':
271 return 0x01; /* floppy boot */
272 case 'c':
273 return 0x02; /* hard drive boot */
274 case 'd':
275 return 0x03; /* CD-ROM boot */
276 case 'n':
277 return 0x04; /* Network boot */
278 }
279 return 0;
280}
281
e1123015 282static int set_boot_dev(ISADevice *s, const char *boot_device)
0ecdffbb
AJ
283{
284#define PC_MAX_BOOT_DEVICES 3
0ecdffbb
AJ
285 int nbds, bds[3] = { 0, };
286 int i;
287
288 nbds = strlen(boot_device);
289 if (nbds > PC_MAX_BOOT_DEVICES) {
1ecda02b 290 error_report("Too many boot devices for PC");
0ecdffbb
AJ
291 return(1);
292 }
293 for (i = 0; i < nbds; i++) {
294 bds[i] = boot_device2nibble(boot_device[i]);
295 if (bds[i] == 0) {
1ecda02b
MA
296 error_report("Invalid boot device for PC: '%c'",
297 boot_device[i]);
0ecdffbb
AJ
298 return(1);
299 }
300 }
301 rtc_set_memory(s, 0x3d, (bds[1] << 4) | bds[0]);
d9346e81 302 rtc_set_memory(s, 0x38, (bds[2] << 4) | (fd_bootchk ? 0x0 : 0x1));
0ecdffbb
AJ
303 return(0);
304}
305
d9346e81
MA
306static int pc_boot_set(void *opaque, const char *boot_device)
307{
e1123015 308 return set_boot_dev(opaque, boot_device);
d9346e81
MA
309}
310
c0897e0c
MA
311typedef struct pc_cmos_init_late_arg {
312 ISADevice *rtc_state;
9139046c 313 BusState *idebus[2];
c0897e0c
MA
314} pc_cmos_init_late_arg;
315
316static void pc_cmos_init_late(void *opaque)
317{
318 pc_cmos_init_late_arg *arg = opaque;
319 ISADevice *s = arg->rtc_state;
9139046c
MA
320 int16_t cylinders;
321 int8_t heads, sectors;
c0897e0c 322 int val;
2adc99b2 323 int i, trans;
c0897e0c 324
9139046c
MA
325 val = 0;
326 if (ide_get_geometry(arg->idebus[0], 0,
327 &cylinders, &heads, &sectors) >= 0) {
328 cmos_init_hd(s, 0x19, 0x1b, cylinders, heads, sectors);
329 val |= 0xf0;
330 }
331 if (ide_get_geometry(arg->idebus[0], 1,
332 &cylinders, &heads, &sectors) >= 0) {
333 cmos_init_hd(s, 0x1a, 0x24, cylinders, heads, sectors);
334 val |= 0x0f;
335 }
336 rtc_set_memory(s, 0x12, val);
c0897e0c
MA
337
338 val = 0;
339 for (i = 0; i < 4; i++) {
9139046c
MA
340 /* NOTE: ide_get_geometry() returns the physical
341 geometry. It is always such that: 1 <= sects <= 63, 1
342 <= heads <= 16, 1 <= cylinders <= 16383. The BIOS
343 geometry can be different if a translation is done. */
344 if (ide_get_geometry(arg->idebus[i / 2], i % 2,
345 &cylinders, &heads, &sectors) >= 0) {
2adc99b2
MA
346 trans = ide_get_bios_chs_trans(arg->idebus[i / 2], i % 2) - 1;
347 assert((trans & ~3) == 0);
348 val |= trans << (i * 2);
c0897e0c
MA
349 }
350 }
351 rtc_set_memory(s, 0x39, val);
352
353 qemu_unregister_reset(pc_cmos_init_late, opaque);
354}
355
b8b7456d
IM
356typedef struct RTCCPUHotplugArg {
357 Notifier cpu_added_notifier;
358 ISADevice *rtc_state;
359} RTCCPUHotplugArg;
360
361static void rtc_notify_cpu_added(Notifier *notifier, void *data)
362{
363 RTCCPUHotplugArg *arg = container_of(notifier, RTCCPUHotplugArg,
364 cpu_added_notifier);
365 ISADevice *s = arg->rtc_state;
366
367 /* increment the number of CPUs */
368 rtc_set_memory(s, 0x5f, rtc_get_memory(s, 0x5f) + 1);
369}
370
845773ab 371void pc_cmos_init(ram_addr_t ram_size, ram_addr_t above_4g_mem_size,
c0897e0c 372 const char *boot_device,
34d4260e 373 ISADevice *floppy, BusState *idebus0, BusState *idebus1,
63ffb564 374 ISADevice *s)
80cabfad 375{
61a8d649 376 int val, nb, i;
980bda8b 377 FDriveType fd_type[2] = { FDRIVE_DRV_NONE, FDRIVE_DRV_NONE };
c0897e0c 378 static pc_cmos_init_late_arg arg;
b8b7456d 379 static RTCCPUHotplugArg cpu_hotplug_cb;
b0a21b53 380
b0a21b53 381 /* various important CMOS locations needed by PC/Bochs bios */
80cabfad
FB
382
383 /* memory size */
e89001f7
MA
384 /* base memory (first MiB) */
385 val = MIN(ram_size / 1024, 640);
333190eb
FB
386 rtc_set_memory(s, 0x15, val);
387 rtc_set_memory(s, 0x16, val >> 8);
e89001f7
MA
388 /* extended memory (next 64MiB) */
389 if (ram_size > 1024 * 1024) {
390 val = (ram_size - 1024 * 1024) / 1024;
391 } else {
392 val = 0;
393 }
80cabfad
FB
394 if (val > 65535)
395 val = 65535;
b0a21b53
FB
396 rtc_set_memory(s, 0x17, val);
397 rtc_set_memory(s, 0x18, val >> 8);
398 rtc_set_memory(s, 0x30, val);
399 rtc_set_memory(s, 0x31, val >> 8);
e89001f7
MA
400 /* memory between 16MiB and 4GiB */
401 if (ram_size > 16 * 1024 * 1024) {
402 val = (ram_size - 16 * 1024 * 1024) / 65536;
403 } else {
9da98861 404 val = 0;
e89001f7 405 }
80cabfad
FB
406 if (val > 65535)
407 val = 65535;
b0a21b53
FB
408 rtc_set_memory(s, 0x34, val);
409 rtc_set_memory(s, 0x35, val >> 8);
e89001f7
MA
410 /* memory above 4GiB */
411 val = above_4g_mem_size / 65536;
412 rtc_set_memory(s, 0x5b, val);
413 rtc_set_memory(s, 0x5c, val >> 8);
414 rtc_set_memory(s, 0x5d, val >> 16);
3b46e624 415
298e01b6
AJ
416 /* set the number of CPU */
417 rtc_set_memory(s, 0x5f, smp_cpus - 1);
b8b7456d
IM
418 /* init CPU hotplug notifier */
419 cpu_hotplug_cb.rtc_state = s;
420 cpu_hotplug_cb.cpu_added_notifier.notify = rtc_notify_cpu_added;
421 qemu_register_cpu_added_notifier(&cpu_hotplug_cb.cpu_added_notifier);
298e01b6 422
e1123015 423 if (set_boot_dev(s, boot_device)) {
28c5af54
JM
424 exit(1);
425 }
80cabfad 426
b41a2cd1 427 /* floppy type */
34d4260e 428 if (floppy) {
34d4260e 429 for (i = 0; i < 2; i++) {
61a8d649 430 fd_type[i] = isa_fdc_get_drive_type(floppy, i);
63ffb564
BS
431 }
432 }
433 val = (cmos_get_fd_drive_type(fd_type[0]) << 4) |
434 cmos_get_fd_drive_type(fd_type[1]);
b0a21b53 435 rtc_set_memory(s, 0x10, val);
3b46e624 436
b0a21b53 437 val = 0;
b41a2cd1 438 nb = 0;
63ffb564 439 if (fd_type[0] < FDRIVE_DRV_NONE) {
80cabfad 440 nb++;
d288c7ba 441 }
63ffb564 442 if (fd_type[1] < FDRIVE_DRV_NONE) {
80cabfad 443 nb++;
d288c7ba 444 }
80cabfad
FB
445 switch (nb) {
446 case 0:
447 break;
448 case 1:
b0a21b53 449 val |= 0x01; /* 1 drive, ready for boot */
80cabfad
FB
450 break;
451 case 2:
b0a21b53 452 val |= 0x41; /* 2 drives, ready for boot */
80cabfad
FB
453 break;
454 }
b0a21b53
FB
455 val |= 0x02; /* FPU is there */
456 val |= 0x04; /* PS/2 mouse installed */
457 rtc_set_memory(s, REG_EQUIPMENT_BYTE, val);
458
ba6c2377 459 /* hard drives */
c0897e0c 460 arg.rtc_state = s;
9139046c
MA
461 arg.idebus[0] = idebus0;
462 arg.idebus[1] = idebus1;
c0897e0c 463 qemu_register_reset(pc_cmos_init_late, &arg);
80cabfad
FB
464}
465
a0881c64
AF
466#define TYPE_PORT92 "port92"
467#define PORT92(obj) OBJECT_CHECK(Port92State, (obj), TYPE_PORT92)
468
4b78a802
BS
469/* port 92 stuff: could be split off */
470typedef struct Port92State {
a0881c64
AF
471 ISADevice parent_obj;
472
23af670e 473 MemoryRegion io;
4b78a802
BS
474 uint8_t outport;
475 qemu_irq *a20_out;
476} Port92State;
477
93ef4192
AG
478static void port92_write(void *opaque, hwaddr addr, uint64_t val,
479 unsigned size)
4b78a802
BS
480{
481 Port92State *s = opaque;
4700a316 482 int oldval = s->outport;
4b78a802 483
c5539cb4 484 DPRINTF("port92: write 0x%02" PRIx64 "\n", val);
4b78a802
BS
485 s->outport = val;
486 qemu_set_irq(*s->a20_out, (val >> 1) & 1);
4700a316 487 if ((val & 1) && !(oldval & 1)) {
4b78a802
BS
488 qemu_system_reset_request();
489 }
490}
491
93ef4192
AG
492static uint64_t port92_read(void *opaque, hwaddr addr,
493 unsigned size)
4b78a802
BS
494{
495 Port92State *s = opaque;
496 uint32_t ret;
497
498 ret = s->outport;
499 DPRINTF("port92: read 0x%02x\n", ret);
500 return ret;
501}
502
503static void port92_init(ISADevice *dev, qemu_irq *a20_out)
504{
a0881c64 505 Port92State *s = PORT92(dev);
4b78a802
BS
506
507 s->a20_out = a20_out;
508}
509
510static const VMStateDescription vmstate_port92_isa = {
511 .name = "port92",
512 .version_id = 1,
513 .minimum_version_id = 1,
d49805ae 514 .fields = (VMStateField[]) {
4b78a802
BS
515 VMSTATE_UINT8(outport, Port92State),
516 VMSTATE_END_OF_LIST()
517 }
518};
519
520static void port92_reset(DeviceState *d)
521{
a0881c64 522 Port92State *s = PORT92(d);
4b78a802
BS
523
524 s->outport &= ~1;
525}
526
23af670e 527static const MemoryRegionOps port92_ops = {
93ef4192
AG
528 .read = port92_read,
529 .write = port92_write,
530 .impl = {
531 .min_access_size = 1,
532 .max_access_size = 1,
533 },
534 .endianness = DEVICE_LITTLE_ENDIAN,
23af670e
RH
535};
536
db895a1e 537static void port92_initfn(Object *obj)
4b78a802 538{
db895a1e 539 Port92State *s = PORT92(obj);
4b78a802 540
1437c94b 541 memory_region_init_io(&s->io, OBJECT(s), &port92_ops, s, "port92", 1);
23af670e 542
4b78a802 543 s->outport = 0;
db895a1e
AF
544}
545
546static void port92_realizefn(DeviceState *dev, Error **errp)
547{
548 ISADevice *isadev = ISA_DEVICE(dev);
549 Port92State *s = PORT92(dev);
550
551 isa_register_ioport(isadev, &s->io, 0x92);
4b78a802
BS
552}
553
8f04ee08
AL
554static void port92_class_initfn(ObjectClass *klass, void *data)
555{
39bffca2 556 DeviceClass *dc = DEVICE_CLASS(klass);
db895a1e 557
db895a1e 558 dc->realize = port92_realizefn;
39bffca2
AL
559 dc->reset = port92_reset;
560 dc->vmsd = &vmstate_port92_isa;
f3b17640
MA
561 /*
562 * Reason: unlike ordinary ISA devices, this one needs additional
563 * wiring: its A20 output line needs to be wired up by
564 * port92_init().
565 */
566 dc->cannot_instantiate_with_device_add_yet = true;
8f04ee08
AL
567}
568
8c43a6f0 569static const TypeInfo port92_info = {
a0881c64 570 .name = TYPE_PORT92,
39bffca2
AL
571 .parent = TYPE_ISA_DEVICE,
572 .instance_size = sizeof(Port92State),
db895a1e 573 .instance_init = port92_initfn,
39bffca2 574 .class_init = port92_class_initfn,
4b78a802
BS
575};
576
83f7d43a 577static void port92_register_types(void)
4b78a802 578{
39bffca2 579 type_register_static(&port92_info);
4b78a802 580}
83f7d43a
AF
581
582type_init(port92_register_types)
4b78a802 583
956a3e6b 584static void handle_a20_line_change(void *opaque, int irq, int level)
59b8ad81 585{
cc36a7a2 586 X86CPU *cpu = opaque;
e1a23744 587
956a3e6b 588 /* XXX: send to all CPUs ? */
4b78a802 589 /* XXX: add logic to handle multiple A20 line sources */
cc36a7a2 590 x86_cpu_set_a20(cpu, level);
e1a23744
FB
591}
592
4c5b10b7
JS
593int e820_add_entry(uint64_t address, uint64_t length, uint32_t type)
594{
7d67110f 595 int index = le32_to_cpu(e820_reserve.count);
4c5b10b7
JS
596 struct e820_entry *entry;
597
7d67110f
GH
598 if (type != E820_RAM) {
599 /* old FW_CFG_E820_TABLE entry -- reservations only */
600 if (index >= E820_NR_ENTRIES) {
601 return -EBUSY;
602 }
603 entry = &e820_reserve.entry[index++];
604
605 entry->address = cpu_to_le64(address);
606 entry->length = cpu_to_le64(length);
607 entry->type = cpu_to_le32(type);
608
609 e820_reserve.count = cpu_to_le32(index);
610 }
4c5b10b7 611
7d67110f
GH
612 /* new "etc/e820" file -- include ram too */
613 e820_table = g_realloc(e820_table,
614 sizeof(struct e820_entry) * (e820_entries+1));
615 e820_table[e820_entries].address = cpu_to_le64(address);
616 e820_table[e820_entries].length = cpu_to_le64(length);
617 e820_table[e820_entries].type = cpu_to_le32(type);
618 e820_entries++;
4c5b10b7 619
7d67110f 620 return e820_entries;
4c5b10b7
JS
621}
622
7bf8ef19
GS
623int e820_get_num_entries(void)
624{
625 return e820_entries;
626}
627
628bool e820_get_entry(int idx, uint32_t type, uint64_t *address, uint64_t *length)
629{
630 if (idx < e820_entries && e820_table[idx].type == cpu_to_le32(type)) {
631 *address = le64_to_cpu(e820_table[idx].address);
632 *length = le64_to_cpu(e820_table[idx].length);
633 return true;
634 }
635 return false;
636}
637
1d934e89
EH
638/* Calculates the limit to CPU APIC ID values
639 *
640 * This function returns the limit for the APIC ID value, so that all
641 * CPU APIC IDs are < pc_apic_id_limit().
642 *
643 * This is used for FW_CFG_MAX_CPUS. See comments on bochs_bios_init().
644 */
645static unsigned int pc_apic_id_limit(unsigned int max_cpus)
646{
647 return x86_cpu_apic_id_from_index(max_cpus - 1) + 1;
648}
649
a88b362c 650static FWCfgState *bochs_bios_init(void)
80cabfad 651{
a88b362c 652 FWCfgState *fw_cfg;
c97294ec
GS
653 uint8_t *smbios_tables, *smbios_anchor;
654 size_t smbios_tables_len, smbios_anchor_len;
11c2fd3e
AL
655 uint64_t *numa_fw_cfg;
656 int i, j;
1d934e89 657 unsigned int apic_id_limit = pc_apic_id_limit(max_cpus);
3cce6243
BS
658
659 fw_cfg = fw_cfg_init(BIOS_CFG_IOPORT, BIOS_CFG_IOPORT + 1, 0, 0);
1d934e89
EH
660 /* FW_CFG_MAX_CPUS is a bit confusing/problematic on x86:
661 *
662 * SeaBIOS needs FW_CFG_MAX_CPUS for CPU hotplug, but the CPU hotplug
663 * QEMU<->SeaBIOS interface is not based on the "CPU index", but on the APIC
664 * ID of hotplugged CPUs[1]. This means that FW_CFG_MAX_CPUS is not the
665 * "maximum number of CPUs", but the "limit to the APIC ID values SeaBIOS
666 * may see".
667 *
668 * So, this means we must not use max_cpus, here, but the maximum possible
669 * APIC ID value, plus one.
670 *
671 * [1] The only kind of "CPU identifier" used between SeaBIOS and QEMU is
672 * the APIC ID, not the "CPU index"
673 */
674 fw_cfg_add_i16(fw_cfg, FW_CFG_MAX_CPUS, (uint16_t)apic_id_limit);
3cce6243 675 fw_cfg_add_i32(fw_cfg, FW_CFG_ID, 1);
905fdcb5 676 fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size);
089da572
MA
677 fw_cfg_add_bytes(fw_cfg, FW_CFG_ACPI_TABLES,
678 acpi_tables, acpi_tables_len);
9b5b76d4 679 fw_cfg_add_i32(fw_cfg, FW_CFG_IRQ0_OVERRIDE, kvm_allows_irq0_override());
b6f6e3d3 680
c97294ec
GS
681 smbios_tables = smbios_get_table_legacy(&smbios_tables_len);
682 if (smbios_tables) {
b6f6e3d3 683 fw_cfg_add_bytes(fw_cfg, FW_CFG_SMBIOS_ENTRIES,
c97294ec
GS
684 smbios_tables, smbios_tables_len);
685 }
686
687 smbios_get_tables(&smbios_tables, &smbios_tables_len,
688 &smbios_anchor, &smbios_anchor_len);
689 if (smbios_anchor) {
690 fw_cfg_add_file(fw_cfg, "etc/smbios/smbios-tables",
691 smbios_tables, smbios_tables_len);
692 fw_cfg_add_file(fw_cfg, "etc/smbios/smbios-anchor",
693 smbios_anchor, smbios_anchor_len);
694 }
695
089da572 696 fw_cfg_add_bytes(fw_cfg, FW_CFG_E820_TABLE,
7d67110f
GH
697 &e820_reserve, sizeof(e820_reserve));
698 fw_cfg_add_file(fw_cfg, "etc/e820", e820_table,
699 sizeof(struct e820_entry) * e820_entries);
11c2fd3e 700
089da572 701 fw_cfg_add_bytes(fw_cfg, FW_CFG_HPET, &hpet_cfg, sizeof(hpet_cfg));
11c2fd3e
AL
702 /* allocate memory for the NUMA channel: one (64bit) word for the number
703 * of nodes, one word for each VCPU->node and one word for each node to
704 * hold the amount of memory.
705 */
1d934e89 706 numa_fw_cfg = g_new0(uint64_t, 1 + apic_id_limit + nb_numa_nodes);
11c2fd3e 707 numa_fw_cfg[0] = cpu_to_le64(nb_numa_nodes);
991dfefd 708 for (i = 0; i < max_cpus; i++) {
1d934e89
EH
709 unsigned int apic_id = x86_cpu_apic_id_from_index(i);
710 assert(apic_id < apic_id_limit);
11c2fd3e 711 for (j = 0; j < nb_numa_nodes; j++) {
8c85901e 712 if (test_bit(i, numa_info[j].node_cpu)) {
1d934e89 713 numa_fw_cfg[apic_id + 1] = cpu_to_le64(j);
11c2fd3e
AL
714 break;
715 }
716 }
717 }
718 for (i = 0; i < nb_numa_nodes; i++) {
8c85901e 719 numa_fw_cfg[apic_id_limit + 1 + i] = cpu_to_le64(numa_info[i].node_mem);
11c2fd3e 720 }
089da572 721 fw_cfg_add_bytes(fw_cfg, FW_CFG_NUMA, numa_fw_cfg,
1d934e89
EH
722 (1 + apic_id_limit + nb_numa_nodes) *
723 sizeof(*numa_fw_cfg));
bf483392
AG
724
725 return fw_cfg;
80cabfad
FB
726}
727
642a4f96
TS
728static long get_file_size(FILE *f)
729{
730 long where, size;
731
732 /* XXX: on Unix systems, using fstat() probably makes more sense */
733
734 where = ftell(f);
735 fseek(f, 0, SEEK_END);
736 size = ftell(f);
737 fseek(f, where, SEEK_SET);
738
739 return size;
740}
741
a88b362c 742static void load_linux(FWCfgState *fw_cfg,
4fc9af53 743 const char *kernel_filename,
0f9d76e5
LG
744 const char *initrd_filename,
745 const char *kernel_cmdline,
a8170e5e 746 hwaddr max_ram_size)
642a4f96
TS
747{
748 uint16_t protocol;
5cea8590 749 int setup_size, kernel_size, initrd_size = 0, cmdline_size;
642a4f96 750 uint32_t initrd_max;
57a46d05 751 uint8_t header[8192], *setup, *kernel, *initrd_data;
a8170e5e 752 hwaddr real_addr, prot_addr, cmdline_addr, initrd_addr = 0;
45a50b16 753 FILE *f;
bf4e5d92 754 char *vmode;
642a4f96
TS
755
756 /* Align to 16 bytes as a paranoia measure */
757 cmdline_size = (strlen(kernel_cmdline)+16) & ~15;
758
759 /* load the kernel header */
760 f = fopen(kernel_filename, "rb");
761 if (!f || !(kernel_size = get_file_size(f)) ||
0f9d76e5
LG
762 fread(header, 1, MIN(ARRAY_SIZE(header), kernel_size), f) !=
763 MIN(ARRAY_SIZE(header), kernel_size)) {
764 fprintf(stderr, "qemu: could not load kernel '%s': %s\n",
765 kernel_filename, strerror(errno));
766 exit(1);
642a4f96
TS
767 }
768
769 /* kernel protocol version */
bc4edd79 770#if 0
642a4f96 771 fprintf(stderr, "header magic: %#x\n", ldl_p(header+0x202));
bc4edd79 772#endif
0f9d76e5
LG
773 if (ldl_p(header+0x202) == 0x53726448) {
774 protocol = lduw_p(header+0x206);
775 } else {
776 /* This looks like a multiboot kernel. If it is, let's stop
777 treating it like a Linux kernel. */
52001445 778 if (load_multiboot(fw_cfg, f, kernel_filename, initrd_filename,
0f9d76e5 779 kernel_cmdline, kernel_size, header)) {
82663ee2 780 return;
0f9d76e5
LG
781 }
782 protocol = 0;
f16408df 783 }
642a4f96
TS
784
785 if (protocol < 0x200 || !(header[0x211] & 0x01)) {
0f9d76e5
LG
786 /* Low kernel */
787 real_addr = 0x90000;
788 cmdline_addr = 0x9a000 - cmdline_size;
789 prot_addr = 0x10000;
642a4f96 790 } else if (protocol < 0x202) {
0f9d76e5
LG
791 /* High but ancient kernel */
792 real_addr = 0x90000;
793 cmdline_addr = 0x9a000 - cmdline_size;
794 prot_addr = 0x100000;
642a4f96 795 } else {
0f9d76e5
LG
796 /* High and recent kernel */
797 real_addr = 0x10000;
798 cmdline_addr = 0x20000;
799 prot_addr = 0x100000;
642a4f96
TS
800 }
801
bc4edd79 802#if 0
642a4f96 803 fprintf(stderr,
0f9d76e5
LG
804 "qemu: real_addr = 0x" TARGET_FMT_plx "\n"
805 "qemu: cmdline_addr = 0x" TARGET_FMT_plx "\n"
806 "qemu: prot_addr = 0x" TARGET_FMT_plx "\n",
807 real_addr,
808 cmdline_addr,
809 prot_addr);
bc4edd79 810#endif
642a4f96
TS
811
812 /* highest address for loading the initrd */
0f9d76e5
LG
813 if (protocol >= 0x203) {
814 initrd_max = ldl_p(header+0x22c);
815 } else {
816 initrd_max = 0x37ffffff;
817 }
642a4f96 818
927766c7
MT
819 if (initrd_max >= max_ram_size - acpi_data_size) {
820 initrd_max = max_ram_size - acpi_data_size - 1;
821 }
642a4f96 822
57a46d05
AG
823 fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_ADDR, cmdline_addr);
824 fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE, strlen(kernel_cmdline)+1);
96f80586 825 fw_cfg_add_string(fw_cfg, FW_CFG_CMDLINE_DATA, kernel_cmdline);
642a4f96
TS
826
827 if (protocol >= 0x202) {
0f9d76e5 828 stl_p(header+0x228, cmdline_addr);
642a4f96 829 } else {
0f9d76e5
LG
830 stw_p(header+0x20, 0xA33F);
831 stw_p(header+0x22, cmdline_addr-real_addr);
642a4f96
TS
832 }
833
bf4e5d92
PT
834 /* handle vga= parameter */
835 vmode = strstr(kernel_cmdline, "vga=");
836 if (vmode) {
837 unsigned int video_mode;
838 /* skip "vga=" */
839 vmode += 4;
840 if (!strncmp(vmode, "normal", 6)) {
841 video_mode = 0xffff;
842 } else if (!strncmp(vmode, "ext", 3)) {
843 video_mode = 0xfffe;
844 } else if (!strncmp(vmode, "ask", 3)) {
845 video_mode = 0xfffd;
846 } else {
847 video_mode = strtol(vmode, NULL, 0);
848 }
849 stw_p(header+0x1fa, video_mode);
850 }
851
642a4f96 852 /* loader type */
5cbdb3a3 853 /* High nybble = B reserved for QEMU; low nybble is revision number.
642a4f96
TS
854 If this code is substantially changed, you may want to consider
855 incrementing the revision. */
0f9d76e5
LG
856 if (protocol >= 0x200) {
857 header[0x210] = 0xB0;
858 }
642a4f96
TS
859 /* heap */
860 if (protocol >= 0x201) {
0f9d76e5
LG
861 header[0x211] |= 0x80; /* CAN_USE_HEAP */
862 stw_p(header+0x224, cmdline_addr-real_addr-0x200);
642a4f96
TS
863 }
864
865 /* load initrd */
866 if (initrd_filename) {
0f9d76e5
LG
867 if (protocol < 0x200) {
868 fprintf(stderr, "qemu: linux kernel too old to load a ram disk\n");
869 exit(1);
870 }
642a4f96 871
0f9d76e5 872 initrd_size = get_image_size(initrd_filename);
d6fa4b77 873 if (initrd_size < 0) {
7454e51d
MT
874 fprintf(stderr, "qemu: error reading initrd %s: %s\n",
875 initrd_filename, strerror(errno));
d6fa4b77
MK
876 exit(1);
877 }
878
45a50b16 879 initrd_addr = (initrd_max-initrd_size) & ~4095;
57a46d05 880
7267c094 881 initrd_data = g_malloc(initrd_size);
57a46d05
AG
882 load_image(initrd_filename, initrd_data);
883
884 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, initrd_addr);
885 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size);
886 fw_cfg_add_bytes(fw_cfg, FW_CFG_INITRD_DATA, initrd_data, initrd_size);
642a4f96 887
0f9d76e5
LG
888 stl_p(header+0x218, initrd_addr);
889 stl_p(header+0x21c, initrd_size);
642a4f96
TS
890 }
891
45a50b16 892 /* load kernel and setup */
642a4f96 893 setup_size = header[0x1f1];
0f9d76e5
LG
894 if (setup_size == 0) {
895 setup_size = 4;
896 }
642a4f96 897 setup_size = (setup_size+1)*512;
45a50b16 898 kernel_size -= setup_size;
642a4f96 899
7267c094
AL
900 setup = g_malloc(setup_size);
901 kernel = g_malloc(kernel_size);
45a50b16 902 fseek(f, 0, SEEK_SET);
5a41ecc5
KS
903 if (fread(setup, 1, setup_size, f) != setup_size) {
904 fprintf(stderr, "fread() failed\n");
905 exit(1);
906 }
907 if (fread(kernel, 1, kernel_size, f) != kernel_size) {
908 fprintf(stderr, "fread() failed\n");
909 exit(1);
910 }
642a4f96 911 fclose(f);
45a50b16 912 memcpy(setup, header, MIN(sizeof(header), setup_size));
57a46d05
AG
913
914 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, prot_addr);
915 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size);
916 fw_cfg_add_bytes(fw_cfg, FW_CFG_KERNEL_DATA, kernel, kernel_size);
917
918 fw_cfg_add_i32(fw_cfg, FW_CFG_SETUP_ADDR, real_addr);
919 fw_cfg_add_i32(fw_cfg, FW_CFG_SETUP_SIZE, setup_size);
920 fw_cfg_add_bytes(fw_cfg, FW_CFG_SETUP_DATA, setup, setup_size);
921
2e55e842
GN
922 option_rom[nb_option_roms].name = "linuxboot.bin";
923 option_rom[nb_option_roms].bootindex = 0;
57a46d05 924 nb_option_roms++;
642a4f96
TS
925}
926
b41a2cd1
FB
927#define NE2000_NB_MAX 6
928
675d6f82
BS
929static const int ne2000_io[NE2000_NB_MAX] = { 0x300, 0x320, 0x340, 0x360,
930 0x280, 0x380 };
931static const int ne2000_irq[NE2000_NB_MAX] = { 9, 10, 11, 3, 4, 5 };
b41a2cd1 932
48a18b3c 933void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd)
a41b2ff2
PB
934{
935 static int nb_ne2k = 0;
936
937 if (nb_ne2k == NE2000_NB_MAX)
938 return;
48a18b3c 939 isa_ne2000_init(bus, ne2000_io[nb_ne2k],
9453c5bc 940 ne2000_irq[nb_ne2k], nd);
a41b2ff2
PB
941 nb_ne2k++;
942}
943
92a16d7a 944DeviceState *cpu_get_current_apic(void)
0e26b7b8 945{
4917cf44
AF
946 if (current_cpu) {
947 X86CPU *cpu = X86_CPU(current_cpu);
02e51483 948 return cpu->apic_state;
0e26b7b8
BS
949 } else {
950 return NULL;
951 }
952}
953
845773ab 954void pc_acpi_smi_interrupt(void *opaque, int irq, int level)
53b67b30 955{
c3affe56 956 X86CPU *cpu = opaque;
53b67b30
BS
957
958 if (level) {
c3affe56 959 cpu_interrupt(CPU(cpu), CPU_INTERRUPT_SMI);
53b67b30
BS
960 }
961}
962
62fc403f
IM
963static X86CPU *pc_new_cpu(const char *cpu_model, int64_t apic_id,
964 DeviceState *icc_bridge, Error **errp)
31050930
IM
965{
966 X86CPU *cpu;
967 Error *local_err = NULL;
968
cd7b87ff
AF
969 cpu = cpu_x86_create(cpu_model, icc_bridge, &local_err);
970 if (local_err != NULL) {
971 error_propagate(errp, local_err);
972 return NULL;
31050930
IM
973 }
974
975 object_property_set_int(OBJECT(cpu), apic_id, "apic-id", &local_err);
976 object_property_set_bool(OBJECT(cpu), true, "realized", &local_err);
977
978 if (local_err) {
31050930 979 error_propagate(errp, local_err);
cd7b87ff
AF
980 object_unref(OBJECT(cpu));
981 cpu = NULL;
31050930
IM
982 }
983 return cpu;
984}
985
c649983b
IM
986static const char *current_cpu_model;
987
988void pc_hot_add_cpu(const int64_t id, Error **errp)
989{
990 DeviceState *icc_bridge;
991 int64_t apic_id = x86_cpu_apic_id_from_index(id);
992
8de433cb
IM
993 if (id < 0) {
994 error_setg(errp, "Invalid CPU id: %" PRIi64, id);
995 return;
996 }
997
c649983b
IM
998 if (cpu_exists(apic_id)) {
999 error_setg(errp, "Unable to add CPU: %" PRIi64
1000 ", it already exists", id);
1001 return;
1002 }
1003
1004 if (id >= max_cpus) {
1005 error_setg(errp, "Unable to add CPU: %" PRIi64
1006 ", max allowed: %d", id, max_cpus - 1);
1007 return;
1008 }
1009
5ff020b7
EH
1010 if (apic_id >= ACPI_CPU_HOTPLUG_ID_LIMIT) {
1011 error_setg(errp, "Unable to add CPU: %" PRIi64
1012 ", resulting APIC ID (%" PRIi64 ") is too large",
1013 id, apic_id);
1014 return;
1015 }
1016
c649983b
IM
1017 icc_bridge = DEVICE(object_resolve_path_type("icc-bridge",
1018 TYPE_ICC_BRIDGE, NULL));
1019 pc_new_cpu(current_cpu_model, apic_id, icc_bridge, errp);
1020}
1021
62fc403f 1022void pc_cpus_init(const char *cpu_model, DeviceState *icc_bridge)
70166477
IY
1023{
1024 int i;
53a89e26 1025 X86CPU *cpu = NULL;
31050930 1026 Error *error = NULL;
f03bd716 1027 unsigned long apic_id_limit;
70166477
IY
1028
1029 /* init CPUs */
1030 if (cpu_model == NULL) {
1031#ifdef TARGET_X86_64
1032 cpu_model = "qemu64";
1033#else
1034 cpu_model = "qemu32";
1035#endif
1036 }
c649983b 1037 current_cpu_model = cpu_model;
70166477 1038
f03bd716
EH
1039 apic_id_limit = pc_apic_id_limit(max_cpus);
1040 if (apic_id_limit > ACPI_CPU_HOTPLUG_ID_LIMIT) {
1041 error_report("max_cpus is too large. APIC ID of last CPU is %lu",
1042 apic_id_limit - 1);
1043 exit(1);
1044 }
1045
bdeec802 1046 for (i = 0; i < smp_cpus; i++) {
53a89e26
IM
1047 cpu = pc_new_cpu(cpu_model, x86_cpu_apic_id_from_index(i),
1048 icc_bridge, &error);
31050930 1049 if (error) {
4a44d85e 1050 error_report("%s", error_get_pretty(error));
31050930 1051 error_free(error);
bdeec802
IM
1052 exit(1);
1053 }
70166477 1054 }
53a89e26
IM
1055
1056 /* map APIC MMIO area if CPU has APIC */
02e51483 1057 if (cpu && cpu->apic_state) {
53a89e26
IM
1058 /* XXX: what if the base changes? */
1059 sysbus_mmio_map_overlap(SYS_BUS_DEVICE(icc_bridge), 0,
1060 APIC_DEFAULT_ADDRESS, 0x1000);
1061 }
c97294ec
GS
1062
1063 /* tell smbios about cpuid version and features */
1064 smbios_set_cpuid(cpu->env.cpuid_version, cpu->env.features[FEAT_1_EDX]);
70166477
IY
1065}
1066
f8c457b8
MT
1067/* pci-info ROM file. Little endian format */
1068typedef struct PcRomPciInfo {
1069 uint64_t w32_min;
1070 uint64_t w32_max;
1071 uint64_t w64_min;
1072 uint64_t w64_max;
1073} PcRomPciInfo;
1074
3459a625
MT
1075typedef struct PcGuestInfoState {
1076 PcGuestInfo info;
1077 Notifier machine_done;
1078} PcGuestInfoState;
1079
1080static
1081void pc_guest_info_machine_done(Notifier *notifier, void *data)
1082{
1083 PcGuestInfoState *guest_info_state = container_of(notifier,
1084 PcGuestInfoState,
1085 machine_done);
72c194f7 1086 acpi_setup(&guest_info_state->info);
3459a625
MT
1087}
1088
1089PcGuestInfo *pc_guest_info_init(ram_addr_t below_4g_mem_size,
1090 ram_addr_t above_4g_mem_size)
1091{
1092 PcGuestInfoState *guest_info_state = g_malloc0(sizeof *guest_info_state);
1093 PcGuestInfo *guest_info = &guest_info_state->info;
b20c9bd5
MT
1094 int i, j;
1095
f30ee8a9 1096 guest_info->ram_size_below_4g = below_4g_mem_size;
b20c9bd5
MT
1097 guest_info->ram_size = below_4g_mem_size + above_4g_mem_size;
1098 guest_info->apic_id_limit = pc_apic_id_limit(max_cpus);
1099 guest_info->apic_xrupt_override = kvm_allows_irq0_override();
1100 guest_info->numa_nodes = nb_numa_nodes;
8c85901e 1101 guest_info->node_mem = g_malloc0(guest_info->numa_nodes *
b20c9bd5 1102 sizeof *guest_info->node_mem);
8c85901e
WG
1103 for (i = 0; i < nb_numa_nodes; i++) {
1104 guest_info->node_mem[i] = numa_info[i].node_mem;
1105 }
1106
b20c9bd5
MT
1107 guest_info->node_cpu = g_malloc0(guest_info->apic_id_limit *
1108 sizeof *guest_info->node_cpu);
1109
1110 for (i = 0; i < max_cpus; i++) {
1111 unsigned int apic_id = x86_cpu_apic_id_from_index(i);
1112 assert(apic_id < guest_info->apic_id_limit);
1113 for (j = 0; j < nb_numa_nodes; j++) {
8c85901e 1114 if (test_bit(i, numa_info[j].node_cpu)) {
b20c9bd5
MT
1115 guest_info->node_cpu[apic_id] = j;
1116 break;
1117 }
1118 }
1119 }
3459a625 1120
3459a625
MT
1121 guest_info_state->machine_done.notify = pc_guest_info_machine_done;
1122 qemu_add_machine_init_done_notifier(&guest_info_state->machine_done);
1123 return guest_info;
1124}
1125
83d08f26
MT
1126/* setup pci memory address space mapping into system address space */
1127void pc_pci_as_mapping_init(Object *owner, MemoryRegion *system_memory,
1128 MemoryRegion *pci_address_space)
39848901 1129{
83d08f26
MT
1130 /* Set to lower priority than RAM */
1131 memory_region_add_subregion_overlap(system_memory, 0x0,
1132 pci_address_space, -1);
39848901
IM
1133}
1134
f7e4dd6c
GH
1135void pc_acpi_init(const char *default_dsdt)
1136{
c5a98cf3 1137 char *filename;
f7e4dd6c
GH
1138
1139 if (acpi_tables != NULL) {
1140 /* manually set via -acpitable, leave it alone */
1141 return;
1142 }
1143
1144 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, default_dsdt);
1145 if (filename == NULL) {
1146 fprintf(stderr, "WARNING: failed to find %s\n", default_dsdt);
c5a98cf3
LE
1147 } else {
1148 char *arg;
1149 QemuOpts *opts;
1150 Error *err = NULL;
f7e4dd6c 1151
c5a98cf3 1152 arg = g_strdup_printf("file=%s", filename);
0c764a9d 1153
c5a98cf3
LE
1154 /* creates a deep copy of "arg" */
1155 opts = qemu_opts_parse(qemu_find_opts("acpi"), arg, 0);
1156 g_assert(opts != NULL);
0c764a9d 1157
1a4b2666 1158 acpi_table_add_builtin(opts, &err);
c5a98cf3 1159 if (err) {
4a44d85e
SA
1160 error_report("WARNING: failed to load %s: %s", filename,
1161 error_get_pretty(err));
c5a98cf3
LE
1162 error_free(err);
1163 }
1164 g_free(arg);
1165 g_free(filename);
f7e4dd6c 1166 }
f7e4dd6c
GH
1167}
1168
b33a5bbf
CL
1169FWCfgState *xen_load_linux(const char *kernel_filename,
1170 const char *kernel_cmdline,
1171 const char *initrd_filename,
1172 ram_addr_t below_4g_mem_size,
1173 PcGuestInfo *guest_info)
1174{
1175 int i;
1176 FWCfgState *fw_cfg;
1177
1178 assert(kernel_filename != NULL);
1179
1180 fw_cfg = fw_cfg_init(BIOS_CFG_IOPORT, BIOS_CFG_IOPORT + 1, 0, 0);
1181 rom_set_fw(fw_cfg);
1182
1183 load_linux(fw_cfg, kernel_filename, initrd_filename,
1184 kernel_cmdline, below_4g_mem_size);
1185 for (i = 0; i < nb_option_roms; i++) {
1186 assert(!strcmp(option_rom[i].name, "linuxboot.bin") ||
1187 !strcmp(option_rom[i].name, "multiboot.bin"));
1188 rom_add_option(option_rom[i].name, option_rom[i].bootindex);
1189 }
1190 guest_info->fw_cfg = fw_cfg;
1191 return fw_cfg;
1192}
1193
9521d42b
PB
1194FWCfgState *pc_memory_init(MachineState *machine,
1195 MemoryRegion *system_memory,
a88b362c
LE
1196 ram_addr_t below_4g_mem_size,
1197 ram_addr_t above_4g_mem_size,
1198 MemoryRegion *rom_memory,
3459a625
MT
1199 MemoryRegion **ram_memory,
1200 PcGuestInfo *guest_info)
80cabfad 1201{
cbc5b5f3
JJ
1202 int linux_boot, i;
1203 MemoryRegion *ram, *option_rom_mr;
00cb2a99 1204 MemoryRegion *ram_below_4g, *ram_above_4g;
a88b362c 1205 FWCfgState *fw_cfg;
619d11e4 1206 PCMachineState *pcms = PC_MACHINE(machine);
d592d303 1207
9521d42b
PB
1208 assert(machine->ram_size == below_4g_mem_size + above_4g_mem_size);
1209
1210 linux_boot = (machine->kernel_filename != NULL);
80cabfad 1211
00cb2a99 1212 /* Allocate RAM. We allocate it as a single memory region and use
66a0a2cb 1213 * aliases to address portions of it, mostly for backwards compatibility
00cb2a99
AK
1214 * with older qemus that used qemu_ram_alloc().
1215 */
7267c094 1216 ram = g_malloc(sizeof(*ram));
9521d42b
PB
1217 memory_region_allocate_system_memory(ram, NULL, "pc.ram",
1218 machine->ram_size);
ae0a5466 1219 *ram_memory = ram;
7267c094 1220 ram_below_4g = g_malloc(sizeof(*ram_below_4g));
2c9b15ca 1221 memory_region_init_alias(ram_below_4g, NULL, "ram-below-4g", ram,
00cb2a99
AK
1222 0, below_4g_mem_size);
1223 memory_region_add_subregion(system_memory, 0, ram_below_4g);
7db16f24 1224 e820_add_entry(0, below_4g_mem_size, E820_RAM);
bbe80adf 1225 if (above_4g_mem_size > 0) {
7267c094 1226 ram_above_4g = g_malloc(sizeof(*ram_above_4g));
2c9b15ca 1227 memory_region_init_alias(ram_above_4g, NULL, "ram-above-4g", ram,
00cb2a99
AK
1228 below_4g_mem_size, above_4g_mem_size);
1229 memory_region_add_subregion(system_memory, 0x100000000ULL,
1230 ram_above_4g);
0624c7f9 1231 e820_add_entry(0x100000000ULL, above_4g_mem_size, E820_RAM);
bbe80adf 1232 }
82b36dc3 1233
ca8336f3
IM
1234 if (!guest_info->has_reserved_memory &&
1235 (machine->ram_slots ||
9521d42b 1236 (machine->maxram_size > machine->ram_size))) {
ca8336f3
IM
1237 MachineClass *mc = MACHINE_GET_CLASS(machine);
1238
1239 error_report("\"-memory 'slots|maxmem'\" is not supported by: %s",
1240 mc->name);
1241 exit(EXIT_FAILURE);
1242 }
1243
619d11e4 1244 /* initialize hotplug memory address space */
de268e13 1245 if (guest_info->has_reserved_memory &&
9521d42b 1246 (machine->ram_size < machine->maxram_size)) {
619d11e4 1247 ram_addr_t hotplug_mem_size =
9521d42b 1248 machine->maxram_size - machine->ram_size;
619d11e4 1249
a0cc8856
IM
1250 if (machine->ram_slots > ACPI_MAX_RAM_SLOTS) {
1251 error_report("unsupported amount of memory slots: %"PRIu64,
1252 machine->ram_slots);
1253 exit(EXIT_FAILURE);
1254 }
1255
619d11e4
IM
1256 pcms->hotplug_memory_base =
1257 ROUND_UP(0x100000000ULL + above_4g_mem_size, 1ULL << 30);
1258
1259 if ((pcms->hotplug_memory_base + hotplug_mem_size) <
1260 hotplug_mem_size) {
1261 error_report("unsupported amount of maximum memory: " RAM_ADDR_FMT,
1262 machine->maxram_size);
1263 exit(EXIT_FAILURE);
1264 }
1265
1266 memory_region_init(&pcms->hotplug_memory, OBJECT(pcms),
1267 "hotplug-memory", hotplug_mem_size);
1268 memory_region_add_subregion(system_memory, pcms->hotplug_memory_base,
1269 &pcms->hotplug_memory);
1270 }
cbc5b5f3
JJ
1271
1272 /* Initialize PC system firmware */
6dd2a5c9 1273 pc_system_firmware_init(rom_memory, guest_info->isapc_ram_fw);
00cb2a99 1274
7267c094 1275 option_rom_mr = g_malloc(sizeof(*option_rom_mr));
2c9b15ca 1276 memory_region_init_ram(option_rom_mr, NULL, "pc.rom", PC_ROM_SIZE);
c5705a77 1277 vmstate_register_ram_global(option_rom_mr);
4463aee6 1278 memory_region_add_subregion_overlap(rom_memory,
00cb2a99
AK
1279 PC_ROM_MIN_VGA,
1280 option_rom_mr,
1281 1);
f753ff16 1282
bf483392 1283 fw_cfg = bochs_bios_init();
8832cb80 1284 rom_set_fw(fw_cfg);
1d108d97 1285
de268e13
IM
1286 if (guest_info->has_reserved_memory && pcms->hotplug_memory_base) {
1287 uint64_t *val = g_malloc(sizeof(*val));
1288 *val = cpu_to_le64(ROUND_UP(pcms->hotplug_memory_base, 0x1ULL << 30));
1289 fw_cfg_add_file(fw_cfg, "etc/reserved-memory-end", val, sizeof(*val));
1290 }
1291
f753ff16 1292 if (linux_boot) {
9521d42b
PB
1293 load_linux(fw_cfg, machine->kernel_filename, machine->initrd_filename,
1294 machine->kernel_cmdline, below_4g_mem_size);
f753ff16
PB
1295 }
1296
1297 for (i = 0; i < nb_option_roms; i++) {
2e55e842 1298 rom_add_option(option_rom[i].name, option_rom[i].bootindex);
406c8df3 1299 }
3459a625 1300 guest_info->fw_cfg = fw_cfg;
459ae5ea 1301 return fw_cfg;
3d53f5c3
IY
1302}
1303
845773ab
IY
1304qemu_irq *pc_allocate_cpu_irq(void)
1305{
1306 return qemu_allocate_irqs(pic_irq_request, NULL, 1);
1307}
1308
48a18b3c 1309DeviceState *pc_vga_init(ISABus *isa_bus, PCIBus *pci_bus)
765d7908 1310{
ad6d45fa
AL
1311 DeviceState *dev = NULL;
1312
16094b75
AJ
1313 if (pci_bus) {
1314 PCIDevice *pcidev = pci_vga_init(pci_bus);
1315 dev = pcidev ? &pcidev->qdev : NULL;
1316 } else if (isa_bus) {
1317 ISADevice *isadev = isa_vga_init(isa_bus);
4a17cc4f 1318 dev = isadev ? DEVICE(isadev) : NULL;
765d7908 1319 }
ad6d45fa 1320 return dev;
765d7908
IY
1321}
1322
4556bd8b
BS
1323static void cpu_request_exit(void *opaque, int irq, int level)
1324{
4917cf44 1325 CPUState *cpu = current_cpu;
4556bd8b 1326
4917cf44
AF
1327 if (cpu && level) {
1328 cpu_exit(cpu);
4556bd8b
BS
1329 }
1330}
1331
258711c6
JG
1332static const MemoryRegionOps ioport80_io_ops = {
1333 .write = ioport80_write,
c02e1eac 1334 .read = ioport80_read,
258711c6
JG
1335 .endianness = DEVICE_NATIVE_ENDIAN,
1336 .impl = {
1337 .min_access_size = 1,
1338 .max_access_size = 1,
1339 },
1340};
1341
1342static const MemoryRegionOps ioportF0_io_ops = {
1343 .write = ioportF0_write,
c02e1eac 1344 .read = ioportF0_read,
258711c6
JG
1345 .endianness = DEVICE_NATIVE_ENDIAN,
1346 .impl = {
1347 .min_access_size = 1,
1348 .max_access_size = 1,
1349 },
1350};
1351
48a18b3c 1352void pc_basic_device_init(ISABus *isa_bus, qemu_irq *gsi,
1611977c 1353 ISADevice **rtc_state,
34d4260e 1354 ISADevice **floppy,
7a10ef51
LPF
1355 bool no_vmport,
1356 uint32 hpet_irqs)
ffe513da
IY
1357{
1358 int i;
1359 DriveInfo *fd[MAX_FD];
ce967e2f
JK
1360 DeviceState *hpet = NULL;
1361 int pit_isa_irq = 0;
1362 qemu_irq pit_alt_irq = NULL;
7d932dfd 1363 qemu_irq rtc_irq = NULL;
956a3e6b 1364 qemu_irq *a20_line;
c2d8d311 1365 ISADevice *i8042, *port92, *vmmouse, *pit = NULL;
4556bd8b 1366 qemu_irq *cpu_exit_irq;
258711c6
JG
1367 MemoryRegion *ioport80_io = g_new(MemoryRegion, 1);
1368 MemoryRegion *ioportF0_io = g_new(MemoryRegion, 1);
ffe513da 1369
2c9b15ca 1370 memory_region_init_io(ioport80_io, NULL, &ioport80_io_ops, NULL, "ioport80", 1);
258711c6 1371 memory_region_add_subregion(isa_bus->address_space_io, 0x80, ioport80_io);
ffe513da 1372
2c9b15ca 1373 memory_region_init_io(ioportF0_io, NULL, &ioportF0_io_ops, NULL, "ioportF0", 1);
258711c6 1374 memory_region_add_subregion(isa_bus->address_space_io, 0xf0, ioportF0_io);
ffe513da 1375
5d17c0d2
JK
1376 /*
1377 * Check if an HPET shall be created.
1378 *
1379 * Without KVM_CAP_PIT_STATE2, we cannot switch off the in-kernel PIT
1380 * when the HPET wants to take over. Thus we have to disable the latter.
1381 */
1382 if (!no_hpet && (!kvm_irqchip_in_kernel() || kvm_has_pit_state2())) {
7a10ef51 1383 /* In order to set property, here not using sysbus_try_create_simple */
51116102 1384 hpet = qdev_try_create(NULL, TYPE_HPET);
dd703b99 1385 if (hpet) {
7a10ef51
LPF
1386 /* For pc-piix-*, hpet's intcap is always IRQ2. For pc-q35-1.7
1387 * and earlier, use IRQ2 for compat. Otherwise, use IRQ16~23,
1388 * IRQ8 and IRQ2.
1389 */
1390 uint8_t compat = object_property_get_int(OBJECT(hpet),
1391 HPET_INTCAP, NULL);
1392 if (!compat) {
1393 qdev_prop_set_uint32(hpet, HPET_INTCAP, hpet_irqs);
1394 }
1395 qdev_init_nofail(hpet);
1396 sysbus_mmio_map(SYS_BUS_DEVICE(hpet), 0, HPET_BASE);
1397
b881fbe9 1398 for (i = 0; i < GSI_NUM_PINS; i++) {
1356b98d 1399 sysbus_connect_irq(SYS_BUS_DEVICE(hpet), i, gsi[i]);
dd703b99 1400 }
ce967e2f
JK
1401 pit_isa_irq = -1;
1402 pit_alt_irq = qdev_get_gpio_in(hpet, HPET_LEGACY_PIT_INT);
1403 rtc_irq = qdev_get_gpio_in(hpet, HPET_LEGACY_RTC_INT);
822557eb 1404 }
ffe513da 1405 }
48a18b3c 1406 *rtc_state = rtc_init(isa_bus, 2000, rtc_irq);
7d932dfd
JK
1407
1408 qemu_register_boot_set(pc_boot_set, *rtc_state);
1409
c2d8d311
SS
1410 if (!xen_enabled()) {
1411 if (kvm_irqchip_in_kernel()) {
1412 pit = kvm_pit_init(isa_bus, 0x40);
1413 } else {
1414 pit = pit_init(isa_bus, 0x40, pit_isa_irq, pit_alt_irq);
1415 }
1416 if (hpet) {
1417 /* connect PIT to output control line of the HPET */
4a17cc4f 1418 qdev_connect_gpio_out(hpet, 0, qdev_get_gpio_in(DEVICE(pit), 0));
c2d8d311
SS
1419 }
1420 pcspk_init(isa_bus, pit);
ce967e2f 1421 }
ffe513da
IY
1422
1423 for(i = 0; i < MAX_SERIAL_PORTS; i++) {
1424 if (serial_hds[i]) {
48a18b3c 1425 serial_isa_init(isa_bus, i, serial_hds[i]);
ffe513da
IY
1426 }
1427 }
1428
1429 for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
1430 if (parallel_hds[i]) {
48a18b3c 1431 parallel_init(isa_bus, i, parallel_hds[i]);
ffe513da
IY
1432 }
1433 }
1434
182735ef 1435 a20_line = qemu_allocate_irqs(handle_a20_line_change, first_cpu, 2);
48a18b3c 1436 i8042 = isa_create_simple(isa_bus, "i8042");
4b78a802 1437 i8042_setup_a20_line(i8042, &a20_line[0]);
1611977c 1438 if (!no_vmport) {
48a18b3c
HP
1439 vmport_init(isa_bus);
1440 vmmouse = isa_try_create(isa_bus, "vmmouse");
1611977c
AP
1441 } else {
1442 vmmouse = NULL;
1443 }
86d86414 1444 if (vmmouse) {
4a17cc4f
AF
1445 DeviceState *dev = DEVICE(vmmouse);
1446 qdev_prop_set_ptr(dev, "ps2_mouse", i8042);
1447 qdev_init_nofail(dev);
86d86414 1448 }
48a18b3c 1449 port92 = isa_create_simple(isa_bus, "port92");
4b78a802 1450 port92_init(port92, &a20_line[1]);
956a3e6b 1451
4556bd8b
BS
1452 cpu_exit_irq = qemu_allocate_irqs(cpu_request_exit, NULL, 1);
1453 DMA_init(0, cpu_exit_irq);
ffe513da
IY
1454
1455 for(i = 0; i < MAX_FD; i++) {
1456 fd[i] = drive_get(IF_FLOPPY, 0, i);
1457 }
48a18b3c 1458 *floppy = fdctrl_init_isa(isa_bus, fd);
ffe513da
IY
1459}
1460
9011a1a7
IY
1461void pc_nic_init(ISABus *isa_bus, PCIBus *pci_bus)
1462{
1463 int i;
1464
1465 for (i = 0; i < nb_nics; i++) {
1466 NICInfo *nd = &nd_table[i];
1467
1468 if (!pci_bus || (nd->model && strcmp(nd->model, "ne2k_isa") == 0)) {
1469 pc_init_ne2k_isa(isa_bus, nd);
1470 } else {
29b358f9 1471 pci_nic_init_nofail(nd, pci_bus, "e1000", NULL);
9011a1a7
IY
1472 }
1473 }
1474}
1475
845773ab 1476void pc_pci_device_init(PCIBus *pci_bus)
e3a5cf42
IY
1477{
1478 int max_bus;
1479 int bus;
1480
1481 max_bus = drive_get_max_bus(IF_SCSI);
1482 for (bus = 0; bus <= max_bus; bus++) {
1483 pci_create_simple(pci_bus, -1, "lsi53c895a");
1484 }
1485}
a39e3564
JB
1486
1487void ioapic_init_gsi(GSIState *gsi_state, const char *parent_name)
1488{
1489 DeviceState *dev;
1490 SysBusDevice *d;
1491 unsigned int i;
1492
1493 if (kvm_irqchip_in_kernel()) {
1494 dev = qdev_create(NULL, "kvm-ioapic");
1495 } else {
1496 dev = qdev_create(NULL, "ioapic");
1497 }
1498 if (parent_name) {
1499 object_property_add_child(object_resolve_path(parent_name, NULL),
1500 "ioapic", OBJECT(dev), NULL);
1501 }
1502 qdev_init_nofail(dev);
1356b98d 1503 d = SYS_BUS_DEVICE(dev);
3a4a4697 1504 sysbus_mmio_map(d, 0, IO_APIC_DEFAULT_ADDRESS);
a39e3564
JB
1505
1506 for (i = 0; i < IOAPIC_NUM_PINS; i++) {
1507 gsi_state->ioapic_irq[i] = qdev_get_gpio_in(dev, i);
1508 }
1509}
d5747cac
IM
1510
1511static void pc_generic_machine_class_init(ObjectClass *oc, void *data)
1512{
1513 MachineClass *mc = MACHINE_CLASS(oc);
1514 QEMUMachine *qm = data;
1515
1516 mc->name = qm->name;
1517 mc->alias = qm->alias;
1518 mc->desc = qm->desc;
1519 mc->init = qm->init;
1520 mc->reset = qm->reset;
1521 mc->hot_add_cpu = qm->hot_add_cpu;
1522 mc->kvm_type = qm->kvm_type;
1523 mc->block_default_type = qm->block_default_type;
1524 mc->max_cpus = qm->max_cpus;
1525 mc->no_serial = qm->no_serial;
1526 mc->no_parallel = qm->no_parallel;
1527 mc->use_virtcon = qm->use_virtcon;
1528 mc->use_sclp = qm->use_sclp;
1529 mc->no_floppy = qm->no_floppy;
1530 mc->no_cdrom = qm->no_cdrom;
1531 mc->no_sdcard = qm->no_sdcard;
1532 mc->is_default = qm->is_default;
1533 mc->default_machine_opts = qm->default_machine_opts;
1534 mc->default_boot_order = qm->default_boot_order;
1535 mc->compat_props = qm->compat_props;
1536 mc->hw_version = qm->hw_version;
1537}
1538
1539void qemu_register_pc_machine(QEMUMachine *m)
1540{
1541 char *name = g_strconcat(m->name, TYPE_MACHINE_SUFFIX, NULL);
1542 TypeInfo ti = {
1543 .name = name,
1544 .parent = TYPE_PC_MACHINE,
1545 .class_init = pc_generic_machine_class_init,
1546 .class_data = (void *)m,
1547 };
1548
1549 type_register(&ti);
1550 g_free(name);
1551}
1552
95bee274
IM
1553static void pc_dimm_plug(HotplugHandler *hotplug_dev,
1554 DeviceState *dev, Error **errp)
1555{
0cd03d89 1556 int slot;
3fbcdc27 1557 HotplugHandlerClass *hhc;
95bee274
IM
1558 Error *local_err = NULL;
1559 PCMachineState *pcms = PC_MACHINE(hotplug_dev);
0cd03d89 1560 MachineState *machine = MACHINE(hotplug_dev);
95bee274
IM
1561 PCDIMMDevice *dimm = PC_DIMM(dev);
1562 PCDIMMDeviceClass *ddc = PC_DIMM_GET_CLASS(dimm);
1563 MemoryRegion *mr = ddc->get_memory_region(dimm);
1564 uint64_t addr = object_property_get_int(OBJECT(dimm), PC_DIMM_ADDR_PROP,
1565 &local_err);
1566 if (local_err) {
1567 goto out;
1568 }
1569
0b312571
IM
1570 addr = pc_dimm_get_free_addr(pcms->hotplug_memory_base,
1571 memory_region_size(&pcms->hotplug_memory),
1572 !addr ? NULL : &addr,
1573 memory_region_size(mr), &local_err);
1574 if (local_err) {
1575 goto out;
1576 }
0cd03d89 1577
0b312571 1578 object_property_set_int(OBJECT(dev), addr, PC_DIMM_ADDR_PROP, &local_err);
0cd03d89
IM
1579 if (local_err) {
1580 goto out;
1581 }
2e1ac493 1582 trace_mhp_pc_dimm_assigned_address(addr);
0cd03d89
IM
1583
1584 slot = object_property_get_int(OBJECT(dev), PC_DIMM_SLOT_PROP, &local_err);
1585 if (local_err) {
1586 goto out;
1587 }
1588
1589 slot = pc_dimm_get_free_slot(slot == PC_DIMM_UNASSIGNED_SLOT ? NULL : &slot,
1590 machine->ram_slots, &local_err);
1591 if (local_err) {
1592 goto out;
1593 }
1594 object_property_set_int(OBJECT(dev), slot, PC_DIMM_SLOT_PROP, &local_err);
1595 if (local_err) {
1596 goto out;
1597 }
2e1ac493 1598 trace_mhp_pc_dimm_assigned_slot(slot);
0b312571 1599
3fbcdc27
IM
1600 if (!pcms->acpi_dev) {
1601 error_setg(&local_err,
1602 "memory hotplug is not enabled: missing acpi device");
1603 goto out;
1604 }
1605
95bee274
IM
1606 memory_region_add_subregion(&pcms->hotplug_memory,
1607 addr - pcms->hotplug_memory_base, mr);
1608 vmstate_register_ram(mr, dev);
3fbcdc27
IM
1609
1610 hhc = HOTPLUG_HANDLER_GET_CLASS(pcms->acpi_dev);
1611 hhc->plug(HOTPLUG_HANDLER(pcms->acpi_dev), dev, &local_err);
95bee274
IM
1612out:
1613 error_propagate(errp, local_err);
1614}
1615
1616static void pc_machine_device_plug_cb(HotplugHandler *hotplug_dev,
1617 DeviceState *dev, Error **errp)
1618{
1619 if (object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) {
1620 pc_dimm_plug(hotplug_dev, dev, errp);
1621 }
1622}
1623
1624static HotplugHandler *pc_get_hotpug_handler(MachineState *machine,
1625 DeviceState *dev)
1626{
1627 PCMachineClass *pcmc = PC_MACHINE_GET_CLASS(machine);
1628
1629 if (object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) {
1630 return HOTPLUG_HANDLER(machine);
1631 }
1632
1633 return pcmc->get_hotplug_handler ?
1634 pcmc->get_hotplug_handler(machine, dev) : NULL;
1635}
1636
bf1e8939
IM
1637static void
1638pc_machine_get_hotplug_memory_region_size(Object *obj, Visitor *v, void *opaque,
1639 const char *name, Error **errp)
1640{
1641 PCMachineState *pcms = PC_MACHINE(obj);
1642 int64_t value = memory_region_size(&pcms->hotplug_memory);
1643
1644 visit_type_int(v, &value, name, errp);
1645}
1646
c87b1520
DS
1647static void pc_machine_get_max_ram_below_4g(Object *obj, Visitor *v,
1648 void *opaque, const char *name,
1649 Error **errp)
1650{
1651 PCMachineState *pcms = PC_MACHINE(obj);
1652 uint64_t value = pcms->max_ram_below_4g;
1653
1654 visit_type_size(v, &value, name, errp);
1655}
1656
1657static void pc_machine_set_max_ram_below_4g(Object *obj, Visitor *v,
1658 void *opaque, const char *name,
1659 Error **errp)
1660{
1661 PCMachineState *pcms = PC_MACHINE(obj);
1662 Error *error = NULL;
1663 uint64_t value;
1664
1665 visit_type_size(v, &value, name, &error);
1666 if (error) {
1667 error_propagate(errp, error);
1668 return;
1669 }
1670 if (value > (1ULL << 32)) {
1671 error_set(&error, ERROR_CLASS_GENERIC_ERROR,
1672 "Machine option 'max-ram-below-4g=%"PRIu64
1673 "' expects size less than or equal to 4G", value);
1674 error_propagate(errp, error);
1675 return;
1676 }
1677
1678 if (value < (1ULL << 20)) {
1679 error_report("Warning: small max_ram_below_4g(%"PRIu64
1680 ") less than 1M. BIOS may not work..",
1681 value);
1682 }
1683
1684 pcms->max_ram_below_4g = value;
1685}
1686
bf1e8939
IM
1687static void pc_machine_initfn(Object *obj)
1688{
c87b1520
DS
1689 PCMachineState *pcms = PC_MACHINE(obj);
1690
bf1e8939
IM
1691 object_property_add(obj, PC_MACHINE_MEMHP_REGION_SIZE, "int",
1692 pc_machine_get_hotplug_memory_region_size,
1693 NULL, NULL, NULL, NULL);
c87b1520
DS
1694 pcms->max_ram_below_4g = 1ULL << 32; /* 4G */
1695 object_property_add(obj, PC_MACHINE_MAX_RAM_BELOW_4G, "size",
1696 pc_machine_get_max_ram_below_4g,
1697 pc_machine_set_max_ram_below_4g,
1698 NULL, NULL, NULL);
bf1e8939
IM
1699}
1700
95bee274
IM
1701static void pc_machine_class_init(ObjectClass *oc, void *data)
1702{
1703 MachineClass *mc = MACHINE_CLASS(oc);
1704 PCMachineClass *pcmc = PC_MACHINE_CLASS(oc);
1705 HotplugHandlerClass *hc = HOTPLUG_HANDLER_CLASS(oc);
1706
1707 pcmc->get_hotplug_handler = mc->get_hotplug_handler;
1708 mc->get_hotplug_handler = pc_get_hotpug_handler;
1709 hc->plug = pc_machine_device_plug_cb;
1710}
1711
d5747cac
IM
1712static const TypeInfo pc_machine_info = {
1713 .name = TYPE_PC_MACHINE,
1714 .parent = TYPE_MACHINE,
1715 .abstract = true,
1716 .instance_size = sizeof(PCMachineState),
bf1e8939 1717 .instance_init = pc_machine_initfn,
d5747cac 1718 .class_size = sizeof(PCMachineClass),
95bee274
IM
1719 .class_init = pc_machine_class_init,
1720 .interfaces = (InterfaceInfo[]) {
1721 { TYPE_HOTPLUG_HANDLER },
1722 { }
1723 },
d5747cac
IM
1724};
1725
1726static void pc_machine_register_types(void)
1727{
1728 type_register_static(&pc_machine_info);
1729}
1730
1731type_init(pc_machine_register_types)