2012-07-02 13:03:20 +00:00
|
|
|
#ifndef PPCE500_H
|
|
|
|
#define PPCE500_H
|
|
|
|
|
2013-08-16 11:13:49 +00:00
|
|
|
#include "hw/boards.h"
|
2018-05-10 17:10:56 +00:00
|
|
|
#include "hw/platform-bus.h"
|
2020-09-03 20:43:22 +00:00
|
|
|
#include "qom/object.h"
|
2013-08-16 11:13:49 +00:00
|
|
|
|
2020-09-03 20:43:22 +00:00
|
|
|
struct PPCE500MachineState {
|
2018-04-18 14:28:02 +00:00
|
|
|
/*< private >*/
|
|
|
|
MachineState parent_obj;
|
|
|
|
|
2018-05-10 17:10:56 +00:00
|
|
|
/* points to instance of TYPE_PLATFORM_BUS_DEVICE if
|
|
|
|
* board supports dynamic sysbus devices
|
|
|
|
*/
|
|
|
|
PlatformBusDevice *pbus_dev;
|
2020-09-03 20:43:22 +00:00
|
|
|
};
|
2018-04-18 14:28:02 +00:00
|
|
|
|
2020-09-03 20:43:22 +00:00
|
|
|
struct PPCE500MachineClass {
|
2018-04-18 14:28:02 +00:00
|
|
|
/*< private >*/
|
|
|
|
MachineClass parent_class;
|
2012-07-02 13:03:20 +00:00
|
|
|
|
|
|
|
/* required -- must at least add toplevel board compatible */
|
2018-04-18 14:28:02 +00:00
|
|
|
void (*fixup_devtree)(void *fdt);
|
|
|
|
|
|
|
|
int pci_first_slot;
|
|
|
|
int pci_nr_slots;
|
2013-01-21 15:53:55 +00:00
|
|
|
|
|
|
|
int mpic_version;
|
2014-10-01 14:00:49 +00:00
|
|
|
bool has_mpc8xxx_gpio;
|
2014-07-01 14:27:09 +00:00
|
|
|
bool has_platform_bus;
|
|
|
|
hwaddr platform_bus_base;
|
|
|
|
hwaddr platform_bus_size;
|
|
|
|
int platform_bus_first_irq;
|
|
|
|
int platform_bus_num_irqs;
|
2014-11-07 15:50:44 +00:00
|
|
|
hwaddr ccsrbar_base;
|
|
|
|
hwaddr pci_pio_base;
|
2014-11-12 21:44:52 +00:00
|
|
|
hwaddr pci_mmio_base;
|
|
|
|
hwaddr pci_mmio_bus_base;
|
2014-11-07 15:50:44 +00:00
|
|
|
hwaddr spin_base;
|
2020-09-03 20:43:22 +00:00
|
|
|
};
|
2012-07-02 13:03:20 +00:00
|
|
|
|
2018-04-18 14:28:02 +00:00
|
|
|
void ppce500_init(MachineState *machine);
|
2012-07-02 13:03:20 +00:00
|
|
|
|
2016-06-28 13:50:05 +00:00
|
|
|
hwaddr booke206_page_size_to_tlb(uint64_t size);
|
|
|
|
|
2018-04-18 14:28:02 +00:00
|
|
|
#define TYPE_PPCE500_MACHINE "ppce500-base-machine"
|
2020-09-16 18:25:18 +00:00
|
|
|
OBJECT_DECLARE_TYPE(PPCE500MachineState, PPCE500MachineClass, PPCE500_MACHINE)
|
2018-04-18 14:28:02 +00:00
|
|
|
|
2012-07-02 13:03:20 +00:00
|
|
|
#endif
|