2012-07-02 21:03:20 +08:00
|
|
|
#ifndef PPCE500_H
|
|
|
|
#define PPCE500_H
|
|
|
|
|
2013-08-16 19:13:49 +08:00
|
|
|
#include "hw/boards.h"
|
|
|
|
|
2012-07-02 21:03:20 +08:00
|
|
|
typedef struct PPCE500Params {
|
2012-12-12 20:53:53 +08:00
|
|
|
int pci_first_slot;
|
|
|
|
int pci_nr_slots;
|
2012-07-02 21:03:20 +08:00
|
|
|
|
|
|
|
/* required -- must at least add toplevel board compatible */
|
|
|
|
void (*fixup_devtree)(struct PPCE500Params *params, void *fdt);
|
2013-01-21 23:53:55 +08:00
|
|
|
|
|
|
|
int mpic_version;
|
2012-07-02 21:03:20 +08:00
|
|
|
} PPCE500Params;
|
|
|
|
|
2013-08-16 19:13:49 +08:00
|
|
|
void ppce500_init(QEMUMachineInitArgs *args, PPCE500Params *params);
|
2012-07-02 21:03:20 +08:00
|
|
|
|
|
|
|
#endif
|