]>
Commit | Line | Data |
---|---|---|
87ecb68b PB |
1 | /* Declarations for use by board files for creating devices. */ |
2 | ||
3 | #ifndef HW_BOARDS_H | |
4 | #define HW_BOARDS_H | |
5 | ||
9c17d615 | 6 | #include "sysemu/blockdev.h" |
ac2da55e | 7 | #include "sysemu/accel.h" |
83c9f4ca | 8 | #include "hw/qdev.h" |
36d20cb2 | 9 | #include "qom/object.h" |
3811ef14 | 10 | #include "qom/cpu.h" |
b6b61144 | 11 | |
dfabb8b9 PB |
12 | void memory_region_allocate_system_memory(MemoryRegion *mr, Object *owner, |
13 | const char *name, | |
14 | uint64_t ram_size); | |
15 | ||
dfabb8b9 | 16 | #define TYPE_MACHINE_SUFFIX "-machine" |
c84a8f01 EH |
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 | ||
36d20cb2 | 23 | #define TYPE_MACHINE "machine" |
c8897e8e | 24 | #undef MACHINE /* BSD defines it and QEMU does not use it */ |
36d20cb2 MA |
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 | ||
0056ae24 MA |
32 | MachineClass *find_default_machine(void); |
33 | extern MachineState *current_machine; | |
34 | ||
5e97b623 | 35 | bool machine_usb(MachineState *machine); |
d8870d02 MA |
36 | bool machine_kernel_irqchip_allowed(MachineState *machine); |
37 | bool machine_kernel_irqchip_required(MachineState *machine); | |
32c18a2d | 38 | bool machine_kernel_irqchip_split(MachineState *machine); |
4689b77b | 39 | int machine_kvm_shadow_mem(MachineState *machine); |
6cabe7fa | 40 | int machine_phandle_start(MachineState *machine); |
47c8ca53 | 41 | bool machine_dump_guest_core(MachineState *machine); |
75cc7f01 | 42 | bool machine_mem_merge(MachineState *machine); |
39a3b377 | 43 | void machine_register_compat_props(MachineState *machine); |
f2d672c2 | 44 | HotpluggableCPUList *machine_query_hotpluggable_cpus(MachineState *machine); |
5e97b623 | 45 | |
3811ef14 IM |
46 | /** |
47 | * CPUArchId: | |
48 | * @arch_id - architecture-dependent CPU ID of present or possible CPU | |
49 | * @cpu - pointer to corresponding CPU object if it's present on NULL otherwise | |
c67ae933 | 50 | * @props - CPU object properties, initialized by board |
f2d672c2 | 51 | * #vcpus_count - number of threads provided by @cpu object |
3811ef14 IM |
52 | */ |
53 | typedef struct { | |
54 | uint64_t arch_id; | |
f2d672c2 | 55 | int64_t vcpus_count; |
c67ae933 | 56 | CpuInstanceProperties props; |
8aba3842 | 57 | Object *cpu; |
3811ef14 IM |
58 | } CPUArchId; |
59 | ||
60 | /** | |
61 | * CPUArchIdList: | |
62 | * @len - number of @CPUArchId items in @cpus array | |
63 | * @cpus - array of present or possible CPUs for current machine configuration | |
64 | */ | |
65 | typedef struct { | |
66 | int len; | |
67 | CPUArchId cpus[0]; | |
68 | } CPUArchIdList; | |
69 | ||
36d20cb2 MA |
70 | /** |
71 | * MachineClass: | |
b7454548 IM |
72 | * @get_hotplug_handler: this function is called during bus-less |
73 | * device hotplug. If defined it returns pointer to an instance | |
74 | * of HotplugHandler object, which handles hotplug operation | |
75 | * for a given @dev. It may return NULL if @dev doesn't require | |
76 | * any actions to be performed by hotplug handler. | |
57924bcd IM |
77 | * @cpu_index_to_socket_id: |
78 | * used to provide @cpu_index to socket number mapping, allowing | |
79 | * a machine to group CPU threads belonging to the same socket/package | |
80 | * Returns: socket number given cpu_index belongs to. | |
fac862ff EH |
81 | * @hw_version: |
82 | * Value of QEMU_VERSION when the machine was added to QEMU. | |
83 | * Set only by old machines because they need to keep | |
84 | * compatibility on code that exposed QEMU_VERSION to guests in | |
85 | * the past (and now use qemu_hw_version()). | |
3811ef14 IM |
86 | * @possible_cpu_arch_ids: |
87 | * Returns an array of @CPUArchId architecture-dependent CPU IDs | |
88 | * which includes CPU IDs for present and possible to hotplug CPUs. | |
89 | * Caller is responsible for freeing returned list. | |
d4633541 IM |
90 | * @query_hotpluggable_cpus: |
91 | * Returns a @HotpluggableCPUList, which describes CPUs objects which | |
92 | * could be added with -device/device_add. | |
93 | * Caller is responsible for freeing returned list. | |
20bccb82 PM |
94 | * @minimum_page_bits: |
95 | * If non-zero, the board promises never to create a CPU with a page size | |
96 | * smaller than this, so QEMU can use a more efficient larger page | |
97 | * size than the target architecture's minimum. (Attempting to create | |
98 | * such a CPU will fail.) Note that changing this is a migration | |
99 | * compatibility break for the machine. | |
36d20cb2 MA |
100 | */ |
101 | struct MachineClass { | |
102 | /*< private >*/ | |
103 | ObjectClass parent_class; | |
104 | /*< public >*/ | |
105 | ||
2709f263 | 106 | const char *family; /* NULL iff @name identifies a standalone machtype */ |
8ea75371 | 107 | char *name; |
00b4fbe2 MA |
108 | const char *alias; |
109 | const char *desc; | |
110 | ||
3ef96221 | 111 | void (*init)(MachineState *state); |
00b4fbe2 MA |
112 | void (*reset)(void); |
113 | void (*hot_add_cpu)(const int64_t id, Error **errp); | |
114 | int (*kvm_type)(const char *arg); | |
115 | ||
116 | BlockInterfaceType block_default_type; | |
16026518 | 117 | int units_per_default_bus; |
00b4fbe2 MA |
118 | int max_cpus; |
119 | unsigned int no_serial:1, | |
120 | no_parallel:1, | |
121 | use_virtcon:1, | |
122 | use_sclp:1, | |
123 | no_floppy:1, | |
124 | no_cdrom:1, | |
33cd52b5 | 125 | no_sdcard:1, |
92055797 | 126 | has_dynamic_sysbus:1, |
bab47d9a GH |
127 | pci_allow_0_address:1, |
128 | legacy_fw_cfg_order:1; | |
00b4fbe2 MA |
129 | int is_default; |
130 | const char *default_machine_opts; | |
131 | const char *default_boot_order; | |
6f00494a | 132 | const char *default_display; |
bacc344c | 133 | GArray *compat_props; |
00b4fbe2 | 134 | const char *hw_version; |
076b35b5 | 135 | ram_addr_t default_ram_size; |
71ae9e94 EH |
136 | bool option_rom_has_mr; |
137 | bool rom_file_has_mr; | |
20bccb82 | 138 | int minimum_page_bits; |
b7454548 IM |
139 | |
140 | HotplugHandler *(*get_hotplug_handler)(MachineState *machine, | |
141 | DeviceState *dev); | |
57924bcd | 142 | unsigned (*cpu_index_to_socket_id)(unsigned cpu_index); |
80e5db30 | 143 | const CPUArchIdList *(*possible_cpu_arch_ids)(MachineState *machine); |
d4633541 | 144 | HotpluggableCPUList *(*query_hotpluggable_cpus)(MachineState *machine); |
36d20cb2 MA |
145 | }; |
146 | ||
147 | /** | |
148 | * MachineState: | |
149 | */ | |
150 | struct MachineState { | |
151 | /*< private >*/ | |
152 | Object parent_obj; | |
33cd52b5 AG |
153 | Notifier sysbus_notifier; |
154 | ||
36d20cb2 MA |
155 | /*< public >*/ |
156 | ||
157 | char *accel; | |
d8870d02 MA |
158 | bool kernel_irqchip_allowed; |
159 | bool kernel_irqchip_required; | |
32c18a2d | 160 | bool kernel_irqchip_split; |
36d20cb2 | 161 | int kvm_shadow_mem; |
36d20cb2 MA |
162 | char *dtb; |
163 | char *dumpdtb; | |
164 | int phandle_start; | |
165 | char *dt_compatible; | |
166 | bool dump_guest_core; | |
167 | bool mem_merge; | |
168 | bool usb; | |
c6e76503 | 169 | bool usb_disabled; |
79814179 | 170 | bool igd_gfx_passthru; |
36d20cb2 | 171 | char *firmware; |
a52a7fdf | 172 | bool iommu; |
9850c604 | 173 | bool suppress_vmdesc; |
902c053d | 174 | bool enforce_config_section; |
cfc58cf3 | 175 | bool enable_graphics; |
36d20cb2 | 176 | |
3ef96221 | 177 | ram_addr_t ram_size; |
c270fb9e IM |
178 | ram_addr_t maxram_size; |
179 | uint64_t ram_slots; | |
3ef96221 | 180 | const char *boot_order; |
6b1b1440 MA |
181 | char *kernel_filename; |
182 | char *kernel_cmdline; | |
183 | char *initrd_filename; | |
3ef96221 | 184 | const char *cpu_model; |
ac2da55e | 185 | AccelState *accelerator; |
38690a1c | 186 | CPUArchIdList *possible_cpus; |
36d20cb2 MA |
187 | }; |
188 | ||
ed0b6de3 EH |
189 | #define DEFINE_MACHINE(namestr, machine_initfn) \ |
190 | static void machine_initfn##_class_init(ObjectClass *oc, void *data) \ | |
191 | { \ | |
192 | MachineClass *mc = MACHINE_CLASS(oc); \ | |
193 | machine_initfn(mc); \ | |
194 | } \ | |
195 | static const TypeInfo machine_initfn##_typeinfo = { \ | |
196 | .name = MACHINE_TYPE_NAME(namestr), \ | |
197 | .parent = TYPE_MACHINE, \ | |
198 | .class_init = machine_initfn##_class_init, \ | |
199 | }; \ | |
200 | static void machine_initfn##_register_types(void) \ | |
201 | { \ | |
202 | type_register_static(&machine_initfn##_typeinfo); \ | |
203 | } \ | |
0e6aac87 | 204 | type_init(machine_initfn##_register_types) |
ed0b6de3 | 205 | |
877f8931 DG |
206 | #define SET_MACHINE_COMPAT(m, COMPAT) \ |
207 | do { \ | |
bacc344c | 208 | int i; \ |
877f8931 DG |
209 | static GlobalProperty props[] = { \ |
210 | COMPAT \ | |
211 | { /* end of list */ } \ | |
212 | }; \ | |
bacc344c IM |
213 | if (!m->compat_props) { \ |
214 | m->compat_props = g_array_new(false, false, sizeof(void *)); \ | |
215 | } \ | |
216 | for (i = 0; props[i].driver != NULL; i++) { \ | |
217 | GlobalProperty *prop = &props[i]; \ | |
218 | g_array_append_val(m->compat_props, prop); \ | |
219 | } \ | |
877f8931 DG |
220 | } while (0) |
221 | ||
87ecb68b | 222 | #endif |