mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-30 19:15:42 +00:00 
			
		
		
		
	 a489d1951c
			
		
	
	
		a489d1951c
		
	
	
	
	
		
			
			This converts existing DECLARE_OBJ_CHECKERS usage to OBJECT_DECLARE_TYPE when possible. $ ./scripts/codeconverter/converter.py -i \ --pattern=AddObjectDeclareType $(git grep -l '' -- '*.[ch]') Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Cédric Le Goater <clg@kaod.org> Acked-by: Paul Durrant <paul@xen.org> Message-Id: <20200916182519.415636-5-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef PPCE500_H
 | |
| #define PPCE500_H
 | |
| 
 | |
| #include "hw/boards.h"
 | |
| #include "hw/platform-bus.h"
 | |
| #include "qom/object.h"
 | |
| 
 | |
| struct PPCE500MachineState {
 | |
|     /*< private >*/
 | |
|     MachineState parent_obj;
 | |
| 
 | |
|     /* points to instance of TYPE_PLATFORM_BUS_DEVICE if
 | |
|      * board supports dynamic sysbus devices
 | |
|      */
 | |
|     PlatformBusDevice *pbus_dev;
 | |
| };
 | |
| 
 | |
| struct PPCE500MachineClass {
 | |
|     /*< private >*/
 | |
|     MachineClass parent_class;
 | |
| 
 | |
|     /* required -- must at least add toplevel board compatible */
 | |
|     void (*fixup_devtree)(void *fdt);
 | |
| 
 | |
|     int pci_first_slot;
 | |
|     int pci_nr_slots;
 | |
| 
 | |
|     int mpic_version;
 | |
|     bool has_mpc8xxx_gpio;
 | |
|     bool has_platform_bus;
 | |
|     hwaddr platform_bus_base;
 | |
|     hwaddr platform_bus_size;
 | |
|     int platform_bus_first_irq;
 | |
|     int platform_bus_num_irqs;
 | |
|     hwaddr ccsrbar_base;
 | |
|     hwaddr pci_pio_base;
 | |
|     hwaddr pci_mmio_base;
 | |
|     hwaddr pci_mmio_bus_base;
 | |
|     hwaddr spin_base;
 | |
| };
 | |
| 
 | |
| void ppce500_init(MachineState *machine);
 | |
| 
 | |
| hwaddr booke206_page_size_to_tlb(uint64_t size);
 | |
| 
 | |
| #define TYPE_PPCE500_MACHINE      "ppce500-base-machine"
 | |
| OBJECT_DECLARE_TYPE(PPCE500MachineState, PPCE500MachineClass, PPCE500_MACHINE)
 | |
| 
 | |
| #endif
 |