]>
Commit | Line | Data |
---|---|---|
e6eaabeb SW |
1 | #ifndef PPCE500_H |
2 | #define PPCE500_H | |
3 | ||
92238367 MA |
4 | #include "hw/boards.h" |
5 | ||
e6eaabeb | 6 | typedef struct PPCE500Params { |
492ec48d AG |
7 | int pci_first_slot; |
8 | int pci_nr_slots; | |
e6eaabeb | 9 | |
e6eaabeb SW |
10 | /* required -- must at least add toplevel board compatible */ |
11 | void (*fixup_devtree)(struct PPCE500Params *params, void *fdt); | |
f5fba9d2 SW |
12 | |
13 | int mpic_version; | |
e6eaabeb SW |
14 | } PPCE500Params; |
15 | ||
3ef96221 | 16 | void ppce500_init(MachineState *machine, PPCE500Params *params); |
e6eaabeb SW |
17 | |
18 | #endif |