pc: acpi: mark all possible CPUs as enabled in SRAT
[qemu.git] / hw / ppc / e500.h
blob9f61ab2b1c12964c31670827771f90c9ca9bb6d6
1 #ifndef PPCE500_H
2 #define PPCE500_H
4 #include "hw/boards.h"
6 typedef struct PPCE500Params {
7 int pci_first_slot;
8 int pci_nr_slots;
10 /* required -- must at least add toplevel board compatible */
11 void (*fixup_devtree)(struct PPCE500Params *params, void *fdt);
13 int mpic_version;
14 bool has_mpc8xxx_gpio;
15 bool has_platform_bus;
16 hwaddr platform_bus_base;
17 hwaddr platform_bus_size;
18 int platform_bus_first_irq;
19 int platform_bus_num_irqs;
20 } PPCE500Params;
22 void ppce500_init(MachineState *machine, PPCE500Params *params);
24 #endif