stubs: Add a vmstate_dummy struct for CONFIG_USER_ONLY
[qemu/agraf.git] / hw / ppc / e500.h
blob226c93d248d49703d54433b1118d46d4e3a09763
1 #ifndef PPCE500_H
2 #define PPCE500_H
4 typedef struct PPCE500Params {
5 /* Standard QEMU machine init params */
6 ram_addr_t ram_size;
7 const char *boot_device;
8 const char *kernel_filename;
9 const char *kernel_cmdline;
10 const char *initrd_filename;
11 const char *cpu_model;
12 int pci_first_slot;
13 int pci_nr_slots;
15 /* e500-specific params */
17 /* required -- must at least add toplevel board compatible */
18 void (*fixup_devtree)(struct PPCE500Params *params, void *fdt);
20 int mpic_version;
21 } PPCE500Params;
23 void ppce500_init(PPCE500Params *params);
25 #endif