1 /* Declarations for use by board files for creating devices. */ 2 3 #ifndef HW_BOARDS_H 4 #define HW_BOARDS_H 5 6 #include "qemu/typedefs.h" 7 #include "sysemu/blockdev.h" 8 #include "sysemu/accel.h" 9 #include "hw/qdev.h" 10 #include "qom/object.h" 11 12 void memory_region_allocate_system_memory(MemoryRegion *mr, Object *owner, 13 const char *name, 14 uint64_t ram_size); 15 16 #define TYPE_MACHINE_SUFFIX "-machine" 17 18 /* Machine class name that needs to be used for class-name-based machine 19 * type lookup to work. 20 */ 21 #define MACHINE_TYPE_NAME(machinename) (machinename TYPE_MACHINE_SUFFIX) 22 23 #define TYPE_MACHINE "machine" 24 #undef MACHINE /* BSD defines it and QEMU does not use it */ 25 #define MACHINE(obj) \ 26 OBJECT_CHECK(MachineState, (obj), TYPE_MACHINE) 27 #define MACHINE_GET_CLASS(obj) \ 28 OBJECT_GET_CLASS(MachineClass, (obj), TYPE_MACHINE) 29 #define MACHINE_CLASS(klass) \ 30 OBJECT_CLASS_CHECK(MachineClass, (klass), TYPE_MACHINE) 31 32 MachineClass *find_default_machine(void); 33 extern MachineState *current_machine; 34 35 bool machine_usb(MachineState *machine); 36 bool machine_kernel_irqchip_allowed(MachineState *machine); 37 bool machine_kernel_irqchip_required(MachineState *machine); 38 int machine_kvm_shadow_mem(MachineState *machine); 39 int machine_phandle_start(MachineState *machine); 40 bool machine_dump_guest_core(MachineState *machine); 41 bool machine_mem_merge(MachineState *machine); 42 43 /** 44 * MachineClass: 45 * @get_hotplug_handler: this function is called during bus-less 46 * device hotplug. If defined it returns pointer to an instance 47 * of HotplugHandler object, which handles hotplug operation 48 * for a given @dev. It may return NULL if @dev doesn't require 49 * any actions to be performed by hotplug handler. 50 * @cpu_index_to_socket_id: 51 * used to provide @cpu_index to socket number mapping, allowing 52 * a machine to group CPU threads belonging to the same socket/package 53 * Returns: socket number given cpu_index belongs to. 54 */ 55 struct MachineClass { 56 /*< private >*/ 57 ObjectClass parent_class; 58 /*< public >*/ 59 60 const char *family; /* NULL iff @name identifies a standalone machtype */ 61 const char *name; 62 const char *alias; 63 const char *desc; 64 65 void (*init)(MachineState *state); 66 void (*reset)(void); 67 void (*hot_add_cpu)(const int64_t id, Error **errp); 68 int (*kvm_type)(const char *arg); 69 70 BlockInterfaceType block_default_type; 71 int units_per_default_bus; 72 int max_cpus; 73 unsigned int no_serial:1, 74 no_parallel:1, 75 use_virtcon:1, 76 use_sclp:1, 77 no_floppy:1, 78 no_cdrom:1, 79 no_sdcard:1, 80 has_dynamic_sysbus:1, 81 no_tco:1, 82 pci_allow_0_address:1; 83 int is_default; 84 const char *default_machine_opts; 85 const char *default_boot_order; 86 const char *default_display; 87 GlobalProperty *compat_props; 88 const char *hw_version; 89 ram_addr_t default_ram_size; 90 91 HotplugHandler *(*get_hotplug_handler)(MachineState *machine, 92 DeviceState *dev); 93 unsigned (*cpu_index_to_socket_id)(unsigned cpu_index); 94 }; 95 96 /** 97 * MachineState: 98 */ 99 struct MachineState { 100 /*< private >*/ 101 Object parent_obj; 102 Notifier sysbus_notifier; 103 104 /*< public >*/ 105 106 char *accel; 107 bool kernel_irqchip_allowed; 108 bool kernel_irqchip_required; 109 int kvm_shadow_mem; 110 char *dtb; 111 char *dumpdtb; 112 int phandle_start; 113 char *dt_compatible; 114 bool dump_guest_core; 115 bool mem_merge; 116 bool usb; 117 bool usb_disabled; 118 bool igd_gfx_passthru; 119 char *firmware; 120 bool iommu; 121 bool suppress_vmdesc; 122 123 ram_addr_t ram_size; 124 ram_addr_t maxram_size; 125 uint64_t ram_slots; 126 const char *boot_order; 127 char *kernel_filename; 128 char *kernel_cmdline; 129 char *initrd_filename; 130 const char *cpu_model; 131 AccelState *accelerator; 132 }; 133 134 #define DEFINE_MACHINE(namestr, machine_initfn) \ 135 static void machine_initfn##_class_init(ObjectClass *oc, void *data) \ 136 { \ 137 MachineClass *mc = MACHINE_CLASS(oc); \ 138 machine_initfn(mc); \ 139 } \ 140 static const TypeInfo machine_initfn##_typeinfo = { \ 141 .name = MACHINE_TYPE_NAME(namestr), \ 142 .parent = TYPE_MACHINE, \ 143 .class_init = machine_initfn##_class_init, \ 144 }; \ 145 static void machine_initfn##_register_types(void) \ 146 { \ 147 type_register_static(&machine_initfn##_typeinfo); \ 148 } \ 149 machine_init(machine_initfn##_register_types) 150 151 #endif 152