hw/acpi/aml-build: Only generate cluster node in PPTT when specified
[qemu.git] / include / hw / boards.h
blobb0abbdd5dc217a68e751fdb0ddb325573f77bcb5
1 /* Declarations for use by board files for creating devices. */
3 #ifndef HW_BOARDS_H
4 #define HW_BOARDS_H
6 #include "exec/memory.h"
7 #include "sysemu/hostmem.h"
8 #include "sysemu/blockdev.h"
9 #include "qemu/accel.h"
10 #include "qapi/qapi-types-machine.h"
11 #include "qemu/module.h"
12 #include "qom/object.h"
13 #include "hw/core/cpu.h"
15 #define TYPE_MACHINE_SUFFIX "-machine"
17 /* Machine class name that needs to be used for class-name-based machine
18 * type lookup to work.
20 #define MACHINE_TYPE_NAME(machinename) (machinename TYPE_MACHINE_SUFFIX)
22 #define TYPE_MACHINE "machine"
23 #undef MACHINE /* BSD defines it and QEMU does not use it */
24 OBJECT_DECLARE_TYPE(MachineState, MachineClass, MACHINE)
26 extern MachineState *current_machine;
28 void machine_run_board_init(MachineState *machine, const char *mem_path, Error **errp);
29 bool machine_usb(MachineState *machine);
30 int machine_phandle_start(MachineState *machine);
31 bool machine_dump_guest_core(MachineState *machine);
32 bool machine_mem_merge(MachineState *machine);
33 HotpluggableCPUList *machine_query_hotpluggable_cpus(MachineState *machine);
34 void machine_set_cpu_numa_node(MachineState *machine,
35 const CpuInstanceProperties *props,
36 Error **errp);
37 void machine_parse_smp_config(MachineState *ms,
38 const SMPConfiguration *config, Error **errp);
40 /**
41 * machine_class_allow_dynamic_sysbus_dev: Add type to list of valid devices
42 * @mc: Machine class
43 * @type: type to allow (should be a subtype of TYPE_SYS_BUS_DEVICE)
45 * Add the QOM type @type to the list of devices of which are subtypes
46 * of TYPE_SYS_BUS_DEVICE but which are still permitted to be dynamically
47 * created (eg by the user on the command line with -device).
48 * By default if the user tries to create any devices on the command line
49 * that are subtypes of TYPE_SYS_BUS_DEVICE they will get an error message;
50 * for the special cases which are permitted for this machine model, the
51 * machine model class init code must call this function to add them
52 * to the list of specifically permitted devices.
54 void machine_class_allow_dynamic_sysbus_dev(MachineClass *mc, const char *type);
56 /**
57 * device_type_is_dynamic_sysbus: Check if type is an allowed sysbus device
58 * type for the machine class.
59 * @mc: Machine class
60 * @type: type to check (should be a subtype of TYPE_SYS_BUS_DEVICE)
62 * Returns: true if @type is a type in the machine's list of
63 * dynamically pluggable sysbus devices; otherwise false.
65 * Check if the QOM type @type is in the list of allowed sysbus device
66 * types (see machine_class_allowed_dynamic_sysbus_dev()).
67 * Note that if @type has a parent type in the list, it is allowed too.
69 bool device_type_is_dynamic_sysbus(MachineClass *mc, const char *type);
71 /**
72 * device_is_dynamic_sysbus: test whether device is a dynamic sysbus device
73 * @mc: Machine class
74 * @dev: device to check
76 * Returns: true if @dev is a sysbus device on the machine's list
77 * of dynamically pluggable sysbus devices; otherwise false.
79 * This function checks whether @dev is a valid dynamic sysbus device,
80 * by first confirming that it is a sysbus device and then checking it
81 * against the list of permitted dynamic sysbus devices which has been
82 * set up by the machine using machine_class_allow_dynamic_sysbus_dev().
84 * It is valid to call this with something that is not a subclass of
85 * TYPE_SYS_BUS_DEVICE; the function will return false in this case.
86 * This allows hotplug callback functions to be written as:
87 * if (device_is_dynamic_sysbus(mc, dev)) {
88 * handle dynamic sysbus case;
89 * } else if (some other kind of hotplug) {
90 * handle that;
91 * }
93 bool device_is_dynamic_sysbus(MachineClass *mc, DeviceState *dev);
96 * Checks that backend isn't used, preps it for exclusive usage and
97 * returns migratable MemoryRegion provided by backend.
99 MemoryRegion *machine_consume_memdev(MachineState *machine,
100 HostMemoryBackend *backend);
103 * CPUArchId:
104 * @arch_id - architecture-dependent CPU ID of present or possible CPU
105 * @cpu - pointer to corresponding CPU object if it's present on NULL otherwise
106 * @type - QOM class name of possible @cpu object
107 * @props - CPU object properties, initialized by board
108 * #vcpus_count - number of threads provided by @cpu object
110 typedef struct CPUArchId {
111 uint64_t arch_id;
112 int64_t vcpus_count;
113 CpuInstanceProperties props;
114 Object *cpu;
115 const char *type;
116 } CPUArchId;
119 * CPUArchIdList:
120 * @len - number of @CPUArchId items in @cpus array
121 * @cpus - array of present or possible CPUs for current machine configuration
123 typedef struct {
124 int len;
125 CPUArchId cpus[];
126 } CPUArchIdList;
129 * SMPCompatProps:
130 * @prefer_sockets - whether sockets are preferred over cores in smp parsing
131 * @dies_supported - whether dies are supported by the machine
132 * @clusters_supported - whether clusters are supported by the machine
133 * @has_clusters - whether clusters are explicitly specified in the user
134 * provided SMP configuration
136 typedef struct {
137 bool prefer_sockets;
138 bool dies_supported;
139 bool clusters_supported;
140 bool has_clusters;
141 } SMPCompatProps;
144 * MachineClass:
145 * @deprecation_reason: If set, the machine is marked as deprecated. The
146 * string should provide some clear information about what to use instead.
147 * @max_cpus: maximum number of CPUs supported. Default: 1
148 * @min_cpus: minimum number of CPUs supported. Default: 1
149 * @default_cpus: number of CPUs instantiated if none are specified. Default: 1
150 * @is_default:
151 * If true QEMU will use this machine by default if no '-M' option is given.
152 * @get_hotplug_handler: this function is called during bus-less
153 * device hotplug. If defined it returns pointer to an instance
154 * of HotplugHandler object, which handles hotplug operation
155 * for a given @dev. It may return NULL if @dev doesn't require
156 * any actions to be performed by hotplug handler.
157 * @cpu_index_to_instance_props:
158 * used to provide @cpu_index to socket/core/thread number mapping, allowing
159 * legacy code to perform maping from cpu_index to topology properties
160 * Returns: tuple of socket/core/thread ids given cpu_index belongs to.
161 * used to provide @cpu_index to socket number mapping, allowing
162 * a machine to group CPU threads belonging to the same socket/package
163 * Returns: socket number given cpu_index belongs to.
164 * @hw_version:
165 * Value of QEMU_VERSION when the machine was added to QEMU.
166 * Set only by old machines because they need to keep
167 * compatibility on code that exposed QEMU_VERSION to guests in
168 * the past (and now use qemu_hw_version()).
169 * @possible_cpu_arch_ids:
170 * Returns an array of @CPUArchId architecture-dependent CPU IDs
171 * which includes CPU IDs for present and possible to hotplug CPUs.
172 * Caller is responsible for freeing returned list.
173 * @get_default_cpu_node_id:
174 * returns default board specific node_id value for CPU slot specified by
175 * index @idx in @ms->possible_cpus[]
176 * @has_hotpluggable_cpus:
177 * If true, board supports CPUs creation with -device/device_add.
178 * @default_cpu_type:
179 * specifies default CPU_TYPE, which will be used for parsing target
180 * specific features and for creating CPUs if CPU name wasn't provided
181 * explicitly at CLI
182 * @minimum_page_bits:
183 * If non-zero, the board promises never to create a CPU with a page size
184 * smaller than this, so QEMU can use a more efficient larger page
185 * size than the target architecture's minimum. (Attempting to create
186 * such a CPU will fail.) Note that changing this is a migration
187 * compatibility break for the machine.
188 * @ignore_memory_transaction_failures:
189 * If this is flag is true then the CPU will ignore memory transaction
190 * failures which should cause the CPU to take an exception due to an
191 * access to an unassigned physical address; the transaction will instead
192 * return zero (for a read) or be ignored (for a write). This should be
193 * set only by legacy board models which rely on the old RAZ/WI behaviour
194 * for handling devices that QEMU does not yet model. New board models
195 * should instead use "unimplemented-device" for all memory ranges where
196 * the guest will attempt to probe for a device that QEMU doesn't
197 * implement and a stub device is required.
198 * @kvm_type:
199 * Return the type of KVM corresponding to the kvm-type string option or
200 * computed based on other criteria such as the host kernel capabilities.
201 * kvm-type may be NULL if it is not needed.
202 * @numa_mem_supported:
203 * true if '--numa node.mem' option is supported and false otherwise
204 * @hotplug_allowed:
205 * If the hook is provided, then it'll be called for each device
206 * hotplug to check whether the device hotplug is allowed. Return
207 * true to grant allowance or false to reject the hotplug. When
208 * false is returned, an error must be set to show the reason of
209 * the rejection. If the hook is not provided, all hotplug will be
210 * allowed.
211 * @default_ram_id:
212 * Specifies inital RAM MemoryRegion name to be used for default backend
213 * creation if user explicitly hasn't specified backend with "memory-backend"
214 * property.
215 * It also will be used as a way to optin into "-m" option support.
216 * If it's not set by board, '-m' will be ignored and generic code will
217 * not create default RAM MemoryRegion.
218 * @fixup_ram_size:
219 * Amends user provided ram size (with -m option) using machine
220 * specific algorithm. To be used by old machine types for compat
221 * purposes only.
222 * Applies only to default memory backend, i.e., explicit memory backend
223 * wasn't used.
225 struct MachineClass {
226 /*< private >*/
227 ObjectClass parent_class;
228 /*< public >*/
230 const char *family; /* NULL iff @name identifies a standalone machtype */
231 char *name;
232 const char *alias;
233 const char *desc;
234 const char *deprecation_reason;
236 void (*init)(MachineState *state);
237 void (*reset)(MachineState *state, ShutdownCause reason);
238 void (*wakeup)(MachineState *state);
239 int (*kvm_type)(MachineState *machine, const char *arg);
241 BlockInterfaceType block_default_type;
242 int units_per_default_bus;
243 int max_cpus;
244 int min_cpus;
245 int default_cpus;
246 unsigned int no_serial:1,
247 no_parallel:1,
248 no_floppy:1,
249 no_cdrom:1,
250 no_sdcard:1,
251 pci_allow_0_address:1,
252 legacy_fw_cfg_order:1;
253 bool is_default;
254 const char *default_machine_opts;
255 const char *default_boot_order;
256 const char *default_display;
257 GPtrArray *compat_props;
258 const char *hw_version;
259 ram_addr_t default_ram_size;
260 const char *default_cpu_type;
261 bool default_kernel_irqchip_split;
262 bool option_rom_has_mr;
263 bool rom_file_has_mr;
264 int minimum_page_bits;
265 bool has_hotpluggable_cpus;
266 bool ignore_memory_transaction_failures;
267 int numa_mem_align_shift;
268 const char **valid_cpu_types;
269 strList *allowed_dynamic_sysbus_devices;
270 bool auto_enable_numa_with_memhp;
271 bool auto_enable_numa_with_memdev;
272 bool ignore_boot_device_suffixes;
273 bool smbus_no_migration_support;
274 bool nvdimm_supported;
275 bool numa_mem_supported;
276 bool auto_enable_numa;
277 SMPCompatProps smp_props;
278 const char *default_ram_id;
280 HotplugHandler *(*get_hotplug_handler)(MachineState *machine,
281 DeviceState *dev);
282 bool (*hotplug_allowed)(MachineState *state, DeviceState *dev,
283 Error **errp);
284 CpuInstanceProperties (*cpu_index_to_instance_props)(MachineState *machine,
285 unsigned cpu_index);
286 const CPUArchIdList *(*possible_cpu_arch_ids)(MachineState *machine);
287 int64_t (*get_default_cpu_node_id)(const MachineState *ms, int idx);
288 ram_addr_t (*fixup_ram_size)(ram_addr_t size);
292 * DeviceMemoryState:
293 * @base: address in guest physical address space where the memory
294 * address space for memory devices starts
295 * @mr: address space container for memory devices
297 typedef struct DeviceMemoryState {
298 hwaddr base;
299 MemoryRegion mr;
300 } DeviceMemoryState;
303 * CpuTopology:
304 * @cpus: the number of present logical processors on the machine
305 * @sockets: the number of sockets on the machine
306 * @dies: the number of dies in one socket
307 * @clusters: the number of clusters in one die
308 * @cores: the number of cores in one cluster
309 * @threads: the number of threads in one core
310 * @max_cpus: the maximum number of logical processors on the machine
312 typedef struct CpuTopology {
313 unsigned int cpus;
314 unsigned int sockets;
315 unsigned int dies;
316 unsigned int clusters;
317 unsigned int cores;
318 unsigned int threads;
319 unsigned int max_cpus;
320 } CpuTopology;
323 * MachineState:
325 struct MachineState {
326 /*< private >*/
327 Object parent_obj;
329 /*< public >*/
331 void *fdt;
332 char *dtb;
333 char *dumpdtb;
334 int phandle_start;
335 char *dt_compatible;
336 bool dump_guest_core;
337 bool mem_merge;
338 bool usb;
339 bool usb_disabled;
340 char *firmware;
341 bool iommu;
342 bool suppress_vmdesc;
343 bool enable_graphics;
344 ConfidentialGuestSupport *cgs;
345 HostMemoryBackend *memdev;
347 * convenience alias to ram_memdev_id backend memory region
348 * or to numa container memory region
350 MemoryRegion *ram;
351 DeviceMemoryState *device_memory;
353 ram_addr_t ram_size;
354 ram_addr_t maxram_size;
355 uint64_t ram_slots;
356 BootConfiguration boot_config;
357 char *kernel_filename;
358 char *kernel_cmdline;
359 char *initrd_filename;
360 const char *cpu_type;
361 AccelState *accelerator;
362 CPUArchIdList *possible_cpus;
363 CpuTopology smp;
364 struct NVDIMMState *nvdimms_state;
365 struct NumaState *numa_state;
368 #define DEFINE_MACHINE(namestr, machine_initfn) \
369 static void machine_initfn##_class_init(ObjectClass *oc, void *data) \
371 MachineClass *mc = MACHINE_CLASS(oc); \
372 machine_initfn(mc); \
374 static const TypeInfo machine_initfn##_typeinfo = { \
375 .name = MACHINE_TYPE_NAME(namestr), \
376 .parent = TYPE_MACHINE, \
377 .class_init = machine_initfn##_class_init, \
378 }; \
379 static void machine_initfn##_register_types(void) \
381 type_register_static(&machine_initfn##_typeinfo); \
383 type_init(machine_initfn##_register_types)
385 extern GlobalProperty hw_compat_7_2[];
386 extern const size_t hw_compat_7_2_len;
388 extern GlobalProperty hw_compat_7_1[];
389 extern const size_t hw_compat_7_1_len;
391 extern GlobalProperty hw_compat_7_0[];
392 extern const size_t hw_compat_7_0_len;
394 extern GlobalProperty hw_compat_6_2[];
395 extern const size_t hw_compat_6_2_len;
397 extern GlobalProperty hw_compat_6_1[];
398 extern const size_t hw_compat_6_1_len;
400 extern GlobalProperty hw_compat_6_0[];
401 extern const size_t hw_compat_6_0_len;
403 extern GlobalProperty hw_compat_5_2[];
404 extern const size_t hw_compat_5_2_len;
406 extern GlobalProperty hw_compat_5_1[];
407 extern const size_t hw_compat_5_1_len;
409 extern GlobalProperty hw_compat_5_0[];
410 extern const size_t hw_compat_5_0_len;
412 extern GlobalProperty hw_compat_4_2[];
413 extern const size_t hw_compat_4_2_len;
415 extern GlobalProperty hw_compat_4_1[];
416 extern const size_t hw_compat_4_1_len;
418 extern GlobalProperty hw_compat_4_0[];
419 extern const size_t hw_compat_4_0_len;
421 extern GlobalProperty hw_compat_3_1[];
422 extern const size_t hw_compat_3_1_len;
424 extern GlobalProperty hw_compat_3_0[];
425 extern const size_t hw_compat_3_0_len;
427 extern GlobalProperty hw_compat_2_12[];
428 extern const size_t hw_compat_2_12_len;
430 extern GlobalProperty hw_compat_2_11[];
431 extern const size_t hw_compat_2_11_len;
433 extern GlobalProperty hw_compat_2_10[];
434 extern const size_t hw_compat_2_10_len;
436 extern GlobalProperty hw_compat_2_9[];
437 extern const size_t hw_compat_2_9_len;
439 extern GlobalProperty hw_compat_2_8[];
440 extern const size_t hw_compat_2_8_len;
442 extern GlobalProperty hw_compat_2_7[];
443 extern const size_t hw_compat_2_7_len;
445 extern GlobalProperty hw_compat_2_6[];
446 extern const size_t hw_compat_2_6_len;
448 extern GlobalProperty hw_compat_2_5[];
449 extern const size_t hw_compat_2_5_len;
451 extern GlobalProperty hw_compat_2_4[];
452 extern const size_t hw_compat_2_4_len;
454 extern GlobalProperty hw_compat_2_3[];
455 extern const size_t hw_compat_2_3_len;
457 extern GlobalProperty hw_compat_2_2[];
458 extern const size_t hw_compat_2_2_len;
460 extern GlobalProperty hw_compat_2_1[];
461 extern const size_t hw_compat_2_1_len;
463 #endif