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