]> git.proxmox.com Git - mirror_qemu.git/blame_incremental - include/hw/i386/pc.h
pc: Move {above,below}_4g_mem_size variables to PCMachineState
[mirror_qemu.git] / include / hw / i386 / pc.h
... / ...
CommitLineData
1#ifndef HW_PC_H
2#define HW_PC_H
3
4#include "qemu-common.h"
5#include "qemu/typedefs.h"
6#include "exec/memory.h"
7#include "hw/boards.h"
8#include "hw/isa/isa.h"
9#include "hw/block/fdc.h"
10#include "net/net.h"
11#include "hw/i386/ioapic.h"
12
13#include "qemu/range.h"
14#include "qemu/bitmap.h"
15#include "sysemu/sysemu.h"
16#include "hw/pci/pci.h"
17#include "hw/boards.h"
18#include "hw/compat.h"
19#include "hw/mem/pc-dimm.h"
20
21#define HPET_INTCAP "hpet-intcap"
22
23/**
24 * PCMachineState:
25 * @acpi_dev: link to ACPI PM device that performs ACPI hotplug handling
26 * @enforce_aligned_dimm: check that DIMM's address/size is aligned by
27 * backend's alignment value if provided
28 */
29struct PCMachineState {
30 /*< private >*/
31 MachineState parent_obj;
32
33 /* <public> */
34 MemoryHotplugState hotplug_memory;
35
36 HotplugHandler *acpi_dev;
37 ISADevice *rtc;
38
39 uint64_t max_ram_below_4g;
40 OnOffAuto vmport;
41 OnOffAuto smm;
42 bool enforce_aligned_dimm;
43 ram_addr_t below_4g_mem_size, above_4g_mem_size;
44};
45
46#define PC_MACHINE_ACPI_DEVICE_PROP "acpi-device"
47#define PC_MACHINE_MEMHP_REGION_SIZE "hotplug-memory-region-size"
48#define PC_MACHINE_MAX_RAM_BELOW_4G "max-ram-below-4g"
49#define PC_MACHINE_VMPORT "vmport"
50#define PC_MACHINE_SMM "smm"
51#define PC_MACHINE_ENFORCE_ALIGNED_DIMM "enforce-aligned-dimm"
52
53/**
54 * PCMachineClass:
55 * @get_hotplug_handler: pointer to parent class callback @get_hotplug_handler
56 */
57struct PCMachineClass {
58 /*< private >*/
59 MachineClass parent_class;
60
61 /*< public >*/
62 HotplugHandler *(*get_hotplug_handler)(MachineState *machine,
63 DeviceState *dev);
64};
65
66#define TYPE_PC_MACHINE "generic-pc-machine"
67#define PC_MACHINE(obj) \
68 OBJECT_CHECK(PCMachineState, (obj), TYPE_PC_MACHINE)
69#define PC_MACHINE_GET_CLASS(obj) \
70 OBJECT_GET_CLASS(PCMachineClass, (obj), TYPE_PC_MACHINE)
71#define PC_MACHINE_CLASS(klass) \
72 OBJECT_CLASS_CHECK(PCMachineClass, (klass), TYPE_PC_MACHINE)
73
74/* PC-style peripherals (also used by other machines). */
75
76typedef struct PcPciInfo {
77 Range w32;
78 Range w64;
79} PcPciInfo;
80
81#define ACPI_PM_PROP_S3_DISABLED "disable_s3"
82#define ACPI_PM_PROP_S4_DISABLED "disable_s4"
83#define ACPI_PM_PROP_S4_VAL "s4_val"
84#define ACPI_PM_PROP_SCI_INT "sci_int"
85#define ACPI_PM_PROP_ACPI_ENABLE_CMD "acpi_enable_cmd"
86#define ACPI_PM_PROP_ACPI_DISABLE_CMD "acpi_disable_cmd"
87#define ACPI_PM_PROP_PM_IO_BASE "pm_io_base"
88#define ACPI_PM_PROP_GPE0_BLK "gpe0_blk"
89#define ACPI_PM_PROP_GPE0_BLK_LEN "gpe0_blk_len"
90#define ACPI_PM_PROP_TCO_ENABLED "enable_tco"
91
92struct PcGuestInfo {
93 bool isapc_ram_fw;
94 hwaddr ram_size, ram_size_below_4g;
95 unsigned apic_id_limit;
96 bool apic_xrupt_override;
97 uint64_t numa_nodes;
98 uint64_t *node_mem;
99 uint64_t *node_cpu;
100 FWCfgState *fw_cfg;
101 int legacy_acpi_table_size;
102 bool has_acpi_build;
103 bool has_reserved_memory;
104 bool rsdp_in_ram;
105};
106
107/* parallel.c */
108
109void parallel_hds_isa_init(ISABus *bus, int n);
110
111bool parallel_mm_init(MemoryRegion *address_space,
112 hwaddr base, int it_shift, qemu_irq irq,
113 CharDriverState *chr);
114
115/* i8259.c */
116
117extern DeviceState *isa_pic;
118qemu_irq *i8259_init(ISABus *bus, qemu_irq parent_irq);
119qemu_irq *kvm_i8259_init(ISABus *bus);
120int pic_read_irq(DeviceState *d);
121int pic_get_output(DeviceState *d);
122void hmp_info_pic(Monitor *mon, const QDict *qdict);
123void hmp_info_irq(Monitor *mon, const QDict *qdict);
124
125/* Global System Interrupts */
126
127#define GSI_NUM_PINS IOAPIC_NUM_PINS
128
129typedef struct GSIState {
130 qemu_irq i8259_irq[ISA_NUM_IRQS];
131 qemu_irq ioapic_irq[IOAPIC_NUM_PINS];
132} GSIState;
133
134void gsi_handler(void *opaque, int n, int level);
135
136/* vmport.c */
137typedef uint32_t (VMPortReadFunc)(void *opaque, uint32_t address);
138
139static inline void vmport_init(ISABus *bus)
140{
141 isa_create_simple(bus, "vmport");
142}
143
144void vmport_register(unsigned char command, VMPortReadFunc *func, void *opaque);
145void vmmouse_get_data(uint32_t *data);
146void vmmouse_set_data(const uint32_t *data);
147
148/* pckbd.c */
149
150void i8042_init(qemu_irq kbd_irq, qemu_irq mouse_irq, uint32_t io_base);
151void i8042_mm_init(qemu_irq kbd_irq, qemu_irq mouse_irq,
152 MemoryRegion *region, ram_addr_t size,
153 hwaddr mask);
154void i8042_isa_mouse_fake_event(void *opaque);
155void i8042_setup_a20_line(ISADevice *dev, qemu_irq *a20_out);
156
157/* pc.c */
158extern int fd_bootchk;
159
160bool pc_machine_is_smm_enabled(PCMachineState *pcms);
161void pc_register_ferr_irq(qemu_irq irq);
162void pc_acpi_smi_interrupt(void *opaque, int irq, int level);
163
164void pc_cpus_init(const char *cpu_model, DeviceState *icc_bridge);
165void pc_hot_add_cpu(const int64_t id, Error **errp);
166void pc_acpi_init(const char *default_dsdt);
167
168PcGuestInfo *pc_guest_info_init(ram_addr_t below_4g_mem_size,
169 ram_addr_t above_4g_mem_size);
170
171void pc_set_legacy_acpi_data_size(void);
172
173#define PCI_HOST_PROP_PCI_HOLE_START "pci-hole-start"
174#define PCI_HOST_PROP_PCI_HOLE_END "pci-hole-end"
175#define PCI_HOST_PROP_PCI_HOLE64_START "pci-hole64-start"
176#define PCI_HOST_PROP_PCI_HOLE64_END "pci-hole64-end"
177#define PCI_HOST_PROP_PCI_HOLE64_SIZE "pci-hole64-size"
178#define DEFAULT_PCI_HOLE64_SIZE (~0x0ULL)
179
180
181void pc_pci_as_mapping_init(Object *owner, MemoryRegion *system_memory,
182 MemoryRegion *pci_address_space);
183
184FWCfgState *xen_load_linux(const char *kernel_filename,
185 const char *kernel_cmdline,
186 const char *initrd_filename,
187 ram_addr_t below_4g_mem_size,
188 PcGuestInfo *guest_info);
189FWCfgState *pc_memory_init(PCMachineState *pcms,
190 MemoryRegion *system_memory,
191 ram_addr_t below_4g_mem_size,
192 ram_addr_t above_4g_mem_size,
193 MemoryRegion *rom_memory,
194 MemoryRegion **ram_memory,
195 PcGuestInfo *guest_info);
196qemu_irq pc_allocate_cpu_irq(void);
197DeviceState *pc_vga_init(ISABus *isa_bus, PCIBus *pci_bus);
198void pc_basic_device_init(ISABus *isa_bus, qemu_irq *gsi,
199 ISADevice **rtc_state,
200 bool create_fdctrl,
201 bool no_vmport,
202 uint32 hpet_irqs);
203void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd);
204void pc_cmos_init(PCMachineState *pcms,
205 ram_addr_t ram_size, ram_addr_t above_4g_mem_size,
206 const char *boot_device,
207 BusState *ide0, BusState *ide1,
208 ISADevice *s);
209void pc_nic_init(ISABus *isa_bus, PCIBus *pci_bus);
210void pc_pci_device_init(PCIBus *pci_bus);
211
212typedef void (*cpu_set_smm_t)(int smm, void *arg);
213
214void ioapic_init_gsi(GSIState *gsi_state, const char *parent_name);
215
216/* acpi_piix.c */
217
218I2CBus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
219 qemu_irq sci_irq, qemu_irq smi_irq,
220 int smm_enabled, DeviceState **piix4_pm);
221void piix4_smbus_register_device(SMBusDevice *dev, uint8_t addr);
222
223/* hpet.c */
224extern int no_hpet;
225
226/* piix_pci.c */
227struct PCII440FXState;
228typedef struct PCII440FXState PCII440FXState;
229
230PCIBus *i440fx_init(PCII440FXState **pi440fx_state, int *piix_devfn,
231 ISABus **isa_bus, qemu_irq *pic,
232 MemoryRegion *address_space_mem,
233 MemoryRegion *address_space_io,
234 ram_addr_t ram_size,
235 ram_addr_t below_4g_mem_size,
236 ram_addr_t above_4g_mem_size,
237 MemoryRegion *pci_memory,
238 MemoryRegion *ram_memory);
239
240PCIBus *find_i440fx(void);
241/* piix4.c */
242extern PCIDevice *piix4_dev;
243int piix4_init(PCIBus *bus, ISABus **isa_bus, int devfn);
244
245/* vga.c */
246enum vga_retrace_method {
247 VGA_RETRACE_DUMB,
248 VGA_RETRACE_PRECISE
249};
250
251extern enum vga_retrace_method vga_retrace_method;
252
253int isa_vga_mm_init(hwaddr vram_base,
254 hwaddr ctrl_base, int it_shift,
255 MemoryRegion *address_space);
256
257/* ne2000.c */
258static inline bool isa_ne2000_init(ISABus *bus, int base, int irq, NICInfo *nd)
259{
260 DeviceState *dev;
261 ISADevice *isadev;
262
263 qemu_check_nic_model(nd, "ne2k_isa");
264
265 isadev = isa_try_create(bus, "ne2k_isa");
266 if (!isadev) {
267 return false;
268 }
269 dev = DEVICE(isadev);
270 qdev_prop_set_uint32(dev, "iobase", base);
271 qdev_prop_set_uint32(dev, "irq", irq);
272 qdev_set_nic_properties(dev, nd);
273 qdev_init_nofail(dev);
274 return true;
275}
276
277/* pc_sysfw.c */
278void pc_system_firmware_init(MemoryRegion *rom_memory,
279 bool isapc_ram_fw);
280
281/* pvpanic.c */
282uint16_t pvpanic_port(void);
283
284/* e820 types */
285#define E820_RAM 1
286#define E820_RESERVED 2
287#define E820_ACPI 3
288#define E820_NVS 4
289#define E820_UNUSABLE 5
290
291int e820_add_entry(uint64_t, uint64_t, uint32_t);
292int e820_get_num_entries(void);
293bool e820_get_entry(int, uint32_t, uint64_t *, uint64_t *);
294
295#define PC_COMPAT_2_3 \
296 HW_COMPAT_2_3 \
297 {\
298 .driver = TYPE_X86_CPU,\
299 .property = "arat",\
300 .value = "off",\
301 },{\
302 .driver = "qemu64" "-" TYPE_X86_CPU,\
303 .property = "level",\
304 .value = stringify(4),\
305 },{\
306 .driver = "kvm64" "-" TYPE_X86_CPU,\
307 .property = "level",\
308 .value = stringify(5),\
309 },{\
310 .driver = "pentium3" "-" TYPE_X86_CPU,\
311 .property = "level",\
312 .value = stringify(2),\
313 },{\
314 .driver = "n270" "-" TYPE_X86_CPU,\
315 .property = "level",\
316 .value = stringify(5),\
317 },{\
318 .driver = "Conroe" "-" TYPE_X86_CPU,\
319 .property = "level",\
320 .value = stringify(4),\
321 },{\
322 .driver = "Penryn" "-" TYPE_X86_CPU,\
323 .property = "level",\
324 .value = stringify(4),\
325 },{\
326 .driver = "Nehalem" "-" TYPE_X86_CPU,\
327 .property = "level",\
328 .value = stringify(4),\
329 },{\
330 .driver = "n270" "-" TYPE_X86_CPU,\
331 .property = "xlevel",\
332 .value = stringify(0x8000000a),\
333 },{\
334 .driver = "Penryn" "-" TYPE_X86_CPU,\
335 .property = "xlevel",\
336 .value = stringify(0x8000000a),\
337 },{\
338 .driver = "Conroe" "-" TYPE_X86_CPU,\
339 .property = "xlevel",\
340 .value = stringify(0x8000000a),\
341 },{\
342 .driver = "Nehalem" "-" TYPE_X86_CPU,\
343 .property = "xlevel",\
344 .value = stringify(0x8000000a),\
345 },{\
346 .driver = "Westmere" "-" TYPE_X86_CPU,\
347 .property = "xlevel",\
348 .value = stringify(0x8000000a),\
349 },{\
350 .driver = "SandyBridge" "-" TYPE_X86_CPU,\
351 .property = "xlevel",\
352 .value = stringify(0x8000000a),\
353 },{\
354 .driver = "IvyBridge" "-" TYPE_X86_CPU,\
355 .property = "xlevel",\
356 .value = stringify(0x8000000a),\
357 },{\
358 .driver = "Haswell" "-" TYPE_X86_CPU,\
359 .property = "xlevel",\
360 .value = stringify(0x8000000a),\
361 },{\
362 .driver = "Haswell-noTSX" "-" TYPE_X86_CPU,\
363 .property = "xlevel",\
364 .value = stringify(0x8000000a),\
365 },{\
366 .driver = "Broadwell" "-" TYPE_X86_CPU,\
367 .property = "xlevel",\
368 .value = stringify(0x8000000a),\
369 },{\
370 .driver = "Broadwell-noTSX" "-" TYPE_X86_CPU,\
371 .property = "xlevel",\
372 .value = stringify(0x8000000a),\
373 },
374
375#define PC_COMPAT_2_2 \
376 PC_COMPAT_2_3 \
377 HW_COMPAT_2_2 \
378 {\
379 .driver = "kvm64" "-" TYPE_X86_CPU,\
380 .property = "vme",\
381 .value = "off",\
382 },\
383 {\
384 .driver = "kvm32" "-" TYPE_X86_CPU,\
385 .property = "vme",\
386 .value = "off",\
387 },\
388 {\
389 .driver = "Conroe" "-" TYPE_X86_CPU,\
390 .property = "vme",\
391 .value = "off",\
392 },\
393 {\
394 .driver = "Penryn" "-" TYPE_X86_CPU,\
395 .property = "vme",\
396 .value = "off",\
397 },\
398 {\
399 .driver = "Nehalem" "-" TYPE_X86_CPU,\
400 .property = "vme",\
401 .value = "off",\
402 },\
403 {\
404 .driver = "Westmere" "-" TYPE_X86_CPU,\
405 .property = "vme",\
406 .value = "off",\
407 },\
408 {\
409 .driver = "SandyBridge" "-" TYPE_X86_CPU,\
410 .property = "vme",\
411 .value = "off",\
412 },\
413 {\
414 .driver = "Haswell" "-" TYPE_X86_CPU,\
415 .property = "vme",\
416 .value = "off",\
417 },\
418 {\
419 .driver = "Broadwell" "-" TYPE_X86_CPU,\
420 .property = "vme",\
421 .value = "off",\
422 },\
423 {\
424 .driver = "Opteron_G1" "-" TYPE_X86_CPU,\
425 .property = "vme",\
426 .value = "off",\
427 },\
428 {\
429 .driver = "Opteron_G2" "-" TYPE_X86_CPU,\
430 .property = "vme",\
431 .value = "off",\
432 },\
433 {\
434 .driver = "Opteron_G3" "-" TYPE_X86_CPU,\
435 .property = "vme",\
436 .value = "off",\
437 },\
438 {\
439 .driver = "Opteron_G4" "-" TYPE_X86_CPU,\
440 .property = "vme",\
441 .value = "off",\
442 },\
443 {\
444 .driver = "Opteron_G5" "-" TYPE_X86_CPU,\
445 .property = "vme",\
446 .value = "off",\
447 },\
448 {\
449 .driver = "Haswell" "-" TYPE_X86_CPU,\
450 .property = "f16c",\
451 .value = "off",\
452 },\
453 {\
454 .driver = "Haswell" "-" TYPE_X86_CPU,\
455 .property = "rdrand",\
456 .value = "off",\
457 },\
458 {\
459 .driver = "Broadwell" "-" TYPE_X86_CPU,\
460 .property = "f16c",\
461 .value = "off",\
462 },\
463 {\
464 .driver = "Broadwell" "-" TYPE_X86_CPU,\
465 .property = "rdrand",\
466 .value = "off",\
467 },
468
469#define PC_COMPAT_2_1 \
470 PC_COMPAT_2_2 \
471 HW_COMPAT_2_1 \
472 {\
473 .driver = "coreduo" "-" TYPE_X86_CPU,\
474 .property = "vmx",\
475 .value = "on",\
476 },\
477 {\
478 .driver = "core2duo" "-" TYPE_X86_CPU,\
479 .property = "vmx",\
480 .value = "on",\
481 },
482
483#define PC_COMPAT_2_0 \
484 PC_COMPAT_2_1 \
485 {\
486 .driver = "virtio-scsi-pci",\
487 .property = "any_layout",\
488 .value = "off",\
489 },{\
490 .driver = "PIIX4_PM",\
491 .property = "memory-hotplug-support",\
492 .value = "off",\
493 },\
494 {\
495 .driver = "apic",\
496 .property = "version",\
497 .value = stringify(0x11),\
498 },\
499 {\
500 .driver = "nec-usb-xhci",\
501 .property = "superspeed-ports-first",\
502 .value = "off",\
503 },\
504 {\
505 .driver = "nec-usb-xhci",\
506 .property = "force-pcie-endcap",\
507 .value = "on",\
508 },\
509 {\
510 .driver = "pci-serial",\
511 .property = "prog_if",\
512 .value = stringify(0),\
513 },\
514 {\
515 .driver = "pci-serial-2x",\
516 .property = "prog_if",\
517 .value = stringify(0),\
518 },\
519 {\
520 .driver = "pci-serial-4x",\
521 .property = "prog_if",\
522 .value = stringify(0),\
523 },\
524 {\
525 .driver = "virtio-net-pci",\
526 .property = "guest_announce",\
527 .value = "off",\
528 },\
529 {\
530 .driver = "ICH9-LPC",\
531 .property = "memory-hotplug-support",\
532 .value = "off",\
533 },{\
534 .driver = "xio3130-downstream",\
535 .property = COMPAT_PROP_PCP,\
536 .value = "off",\
537 },{\
538 .driver = "ioh3420",\
539 .property = COMPAT_PROP_PCP,\
540 .value = "off",\
541 },
542
543#define PC_COMPAT_1_7 \
544 PC_COMPAT_2_0 \
545 {\
546 .driver = TYPE_USB_DEVICE,\
547 .property = "msos-desc",\
548 .value = "no",\
549 },\
550 {\
551 .driver = "PIIX4_PM",\
552 .property = "acpi-pci-hotplug-with-bridge-support",\
553 .value = "off",\
554 },\
555 {\
556 .driver = "hpet",\
557 .property = HPET_INTCAP,\
558 .value = stringify(4),\
559 },
560
561#define PC_COMPAT_1_6 \
562 PC_COMPAT_1_7 \
563 {\
564 .driver = "e1000",\
565 .property = "mitigation",\
566 .value = "off",\
567 },{\
568 .driver = "qemu64-" TYPE_X86_CPU,\
569 .property = "model",\
570 .value = stringify(2),\
571 },{\
572 .driver = "qemu32-" TYPE_X86_CPU,\
573 .property = "model",\
574 .value = stringify(3),\
575 },{\
576 .driver = "i440FX-pcihost",\
577 .property = "short_root_bus",\
578 .value = stringify(1),\
579 },{\
580 .driver = "q35-pcihost",\
581 .property = "short_root_bus",\
582 .value = stringify(1),\
583 },
584
585#define PC_COMPAT_1_5 \
586 PC_COMPAT_1_6 \
587 {\
588 .driver = "Conroe-" TYPE_X86_CPU,\
589 .property = "model",\
590 .value = stringify(2),\
591 },{\
592 .driver = "Conroe-" TYPE_X86_CPU,\
593 .property = "level",\
594 .value = stringify(2),\
595 },{\
596 .driver = "Penryn-" TYPE_X86_CPU,\
597 .property = "model",\
598 .value = stringify(2),\
599 },{\
600 .driver = "Penryn-" TYPE_X86_CPU,\
601 .property = "level",\
602 .value = stringify(2),\
603 },{\
604 .driver = "Nehalem-" TYPE_X86_CPU,\
605 .property = "model",\
606 .value = stringify(2),\
607 },{\
608 .driver = "Nehalem-" TYPE_X86_CPU,\
609 .property = "level",\
610 .value = stringify(2),\
611 },{\
612 .driver = "virtio-net-pci",\
613 .property = "any_layout",\
614 .value = "off",\
615 },{\
616 .driver = TYPE_X86_CPU,\
617 .property = "pmu",\
618 .value = "on",\
619 },{\
620 .driver = "i440FX-pcihost",\
621 .property = "short_root_bus",\
622 .value = stringify(0),\
623 },{\
624 .driver = "q35-pcihost",\
625 .property = "short_root_bus",\
626 .value = stringify(0),\
627 },
628
629#define PC_COMPAT_1_4 \
630 PC_COMPAT_1_5 \
631 {\
632 .driver = "scsi-hd",\
633 .property = "discard_granularity",\
634 .value = stringify(0),\
635 },{\
636 .driver = "scsi-cd",\
637 .property = "discard_granularity",\
638 .value = stringify(0),\
639 },{\
640 .driver = "scsi-disk",\
641 .property = "discard_granularity",\
642 .value = stringify(0),\
643 },{\
644 .driver = "ide-hd",\
645 .property = "discard_granularity",\
646 .value = stringify(0),\
647 },{\
648 .driver = "ide-cd",\
649 .property = "discard_granularity",\
650 .value = stringify(0),\
651 },{\
652 .driver = "ide-drive",\
653 .property = "discard_granularity",\
654 .value = stringify(0),\
655 },{\
656 .driver = "virtio-blk-pci",\
657 .property = "discard_granularity",\
658 .value = stringify(0),\
659 },{\
660 .driver = "virtio-serial-pci",\
661 .property = "vectors",\
662 /* DEV_NVECTORS_UNSPECIFIED as a uint32_t string */\
663 .value = stringify(0xFFFFFFFF),\
664 },{ \
665 .driver = "virtio-net-pci", \
666 .property = "ctrl_guest_offloads", \
667 .value = "off", \
668 },{\
669 .driver = "e1000",\
670 .property = "romfile",\
671 .value = "pxe-e1000.rom",\
672 },{\
673 .driver = "ne2k_pci",\
674 .property = "romfile",\
675 .value = "pxe-ne2k_pci.rom",\
676 },{\
677 .driver = "pcnet",\
678 .property = "romfile",\
679 .value = "pxe-pcnet.rom",\
680 },{\
681 .driver = "rtl8139",\
682 .property = "romfile",\
683 .value = "pxe-rtl8139.rom",\
684 },{\
685 .driver = "virtio-net-pci",\
686 .property = "romfile",\
687 .value = "pxe-virtio.rom",\
688 },{\
689 .driver = "486-" TYPE_X86_CPU,\
690 .property = "model",\
691 .value = stringify(0),\
692 },\
693 {\
694 .driver = "n270" "-" TYPE_X86_CPU,\
695 .property = "movbe",\
696 .value = "off",\
697 },\
698 {\
699 .driver = "Westmere" "-" TYPE_X86_CPU,\
700 .property = "pclmulqdq",\
701 .value = "off",\
702 },
703
704#define DEFINE_PC_MACHINE(suffix, namestr, initfn, optsfn) \
705 static void pc_machine_##suffix##_class_init(ObjectClass *oc, void *data) \
706 { \
707 MachineClass *mc = MACHINE_CLASS(oc); \
708 optsfn(mc); \
709 mc->name = namestr; \
710 mc->init = initfn; \
711 } \
712 static const TypeInfo pc_machine_type_##suffix = { \
713 .name = namestr TYPE_MACHINE_SUFFIX, \
714 .parent = TYPE_PC_MACHINE, \
715 .class_init = pc_machine_##suffix##_class_init, \
716 }; \
717 static void pc_machine_init_##suffix(void) \
718 { \
719 type_register(&pc_machine_type_##suffix); \
720 } \
721 machine_init(pc_machine_init_##suffix)
722
723#define SET_MACHINE_COMPAT(m, COMPAT) do { \
724 static GlobalProperty props[] = { \
725 COMPAT \
726 { /* end of list */ } \
727 }; \
728 (m)->compat_props = props; \
729} while (0)
730
731#endif