pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 1 | /* Declarations for use by board files for creating devices. */ |
| 2 | |
| 3 | #ifndef HW_BOARDS_H |
| 4 | #define HW_BOARDS_H |
| 5 | |
Markus Armbruster | d484205 | 2019-08-12 07:23:46 +0200 | [diff] [blame] | 6 | #include "exec/memory.h" |
Igor Mammedov | aa8b183 | 2020-02-19 11:08:36 -0500 | [diff] [blame] | 7 | #include "sysemu/hostmem.h" |
Paolo Bonzini | 9c17d61 | 2012-12-17 18:20:04 +0100 | [diff] [blame] | 8 | #include "sysemu/blockdev.h" |
Claudio Fontana | 940e43a | 2021-02-04 17:39:24 +0100 | [diff] [blame] | 9 | #include "qemu/accel.h" |
Markus Armbruster | 8ac25c8 | 2019-06-19 22:10:41 +0200 | [diff] [blame] | 10 | #include "qapi/qapi-types-machine.h" |
Markus Armbruster | 0b8fa32 | 2019-05-23 16:35:07 +0200 | [diff] [blame] | 11 | #include "qemu/module.h" |
Marcel Apfelbaum | 36d20cb | 2014-03-05 19:30:45 +0200 | [diff] [blame] | 12 | #include "qom/object.h" |
Markus Armbruster | 2e5b09f | 2019-07-09 17:20:52 +0200 | [diff] [blame] | 13 | #include "hw/core/cpu.h" |
Gerd Hoffmann | b6b6114 | 2009-07-15 13:48:21 +0200 | [diff] [blame] | 14 | |
Paolo Bonzini | dfabb8b | 2014-05-14 17:43:15 +0800 | [diff] [blame] | 15 | #define TYPE_MACHINE_SUFFIX "-machine" |
Eduardo Habkost | c84a8f0 | 2015-08-20 14:54:27 -0700 | [diff] [blame] | 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 | |
Marcel Apfelbaum | 36d20cb | 2014-03-05 19:30:45 +0200 | [diff] [blame] | 22 | #define TYPE_MACHINE "machine" |
Marcel Apfelbaum | c8897e8 | 2014-03-18 17:26:35 +0200 | [diff] [blame] | 23 | #undef MACHINE /* BSD defines it and QEMU does not use it */ |
Eduardo Habkost | a489d19 | 2020-09-16 14:25:18 -0400 | [diff] [blame] | 24 | OBJECT_DECLARE_TYPE(MachineState, MachineClass, MACHINE) |
Marcel Apfelbaum | 36d20cb | 2014-03-05 19:30:45 +0200 | [diff] [blame] | 25 | |
Marcel Apfelbaum | 0056ae2 | 2014-03-05 19:30:47 +0200 | [diff] [blame] | 26 | extern MachineState *current_machine; |
| 27 | |
Igor Mammedov | 482dfe9 | 2017-05-10 13:29:58 +0200 | [diff] [blame] | 28 | void machine_run_board_init(MachineState *machine); |
Marcel Apfelbaum | 5e97b62 | 2015-01-06 15:29:13 +0200 | [diff] [blame] | 29 | bool machine_usb(MachineState *machine); |
Marcel Apfelbaum | 6cabe7f | 2015-02-04 17:43:53 +0200 | [diff] [blame] | 30 | int machine_phandle_start(MachineState *machine); |
Marcel Apfelbaum | 47c8ca5 | 2015-02-04 17:43:54 +0200 | [diff] [blame] | 31 | bool machine_dump_guest_core(MachineState *machine); |
Marcel Apfelbaum | 75cc7f0 | 2015-02-04 17:43:55 +0200 | [diff] [blame] | 32 | bool machine_mem_merge(MachineState *machine); |
Igor Mammedov | f2d672c | 2017-02-09 12:08:38 +0100 | [diff] [blame] | 33 | HotpluggableCPUList *machine_query_hotpluggable_cpus(MachineState *machine); |
Igor Mammedov | 7c88e65 | 2017-05-10 13:29:50 +0200 | [diff] [blame] | 34 | void machine_set_cpu_numa_node(MachineState *machine, |
| 35 | const CpuInstanceProperties *props, |
| 36 | Error **errp); |
Philippe Mathieu-Daudé | 3e2f149 | 2021-11-11 10:21:23 +0100 | [diff] [blame] | 37 | void machine_parse_smp_config(MachineState *ms, |
| 38 | const SMPConfiguration *config, Error **errp); |
Marcel Apfelbaum | 5e97b62 | 2015-01-06 15:29:13 +0200 | [diff] [blame] | 39 | |
Peter Maydell | 387c0e8 | 2021-03-25 15:33:07 +0000 | [diff] [blame] | 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) |
| 44 | * |
| 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. |
| 53 | */ |
Eduardo Habkost | 0bd1909 | 2017-11-25 13:16:05 -0200 | [diff] [blame] | 54 | void machine_class_allow_dynamic_sysbus_dev(MachineClass *mc, const char *type); |
Peter Maydell | 387c0e8 | 2021-03-25 15:33:07 +0000 | [diff] [blame] | 55 | |
Peter Maydell | 0fb124d | 2021-03-25 15:33:08 +0000 | [diff] [blame] | 56 | /** |
Damien Hedde | b5fdf41 | 2021-10-29 16:22:56 +0200 | [diff] [blame] | 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) |
| 61 | * |
| 62 | * Returns: true if @type is a type in the machine's list of |
| 63 | * dynamically pluggable sysbus devices; otherwise false. |
| 64 | * |
| 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. |
| 68 | */ |
| 69 | bool device_type_is_dynamic_sysbus(MachineClass *mc, const char *type); |
| 70 | |
| 71 | /** |
Peter Maydell | 0fb124d | 2021-03-25 15:33:08 +0000 | [diff] [blame] | 72 | * device_is_dynamic_sysbus: test whether device is a dynamic sysbus device |
| 73 | * @mc: Machine class |
| 74 | * @dev: device to check |
| 75 | * |
| 76 | * Returns: true if @dev is a sysbus device on the machine's list |
| 77 | * of dynamically pluggable sysbus devices; otherwise false. |
| 78 | * |
| 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(). |
| 83 | * |
| 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 | * } |
| 92 | */ |
| 93 | bool device_is_dynamic_sysbus(MachineClass *mc, DeviceState *dev); |
| 94 | |
Igor Mammedov | 82b911a | 2020-02-19 11:08:38 -0500 | [diff] [blame] | 95 | /* |
| 96 | * Checks that backend isn't used, preps it for exclusive usage and |
| 97 | * returns migratable MemoryRegion provided by backend. |
| 98 | */ |
| 99 | MemoryRegion *machine_consume_memdev(MachineState *machine, |
| 100 | HostMemoryBackend *backend); |
Eduardo Habkost | 0bd1909 | 2017-11-25 13:16:05 -0200 | [diff] [blame] | 101 | |
Marcel Apfelbaum | 36d20cb | 2014-03-05 19:30:45 +0200 | [diff] [blame] | 102 | /** |
Igor Mammedov | 3811ef1 | 2016-03-03 15:28:56 +0100 | [diff] [blame] | 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 |
Igor Mammedov | d342eb7 | 2018-01-10 16:22:50 +0100 | [diff] [blame] | 106 | * @type - QOM class name of possible @cpu object |
Igor Mammedov | c67ae93 | 2017-02-09 12:08:34 +0100 | [diff] [blame] | 107 | * @props - CPU object properties, initialized by board |
Igor Mammedov | f2d672c | 2017-02-09 12:08:38 +0100 | [diff] [blame] | 108 | * #vcpus_count - number of threads provided by @cpu object |
Igor Mammedov | 3811ef1 | 2016-03-03 15:28:56 +0100 | [diff] [blame] | 109 | */ |
Markus Armbruster | a44432b | 2019-08-12 07:23:53 +0200 | [diff] [blame] | 110 | typedef struct CPUArchId { |
Igor Mammedov | 3811ef1 | 2016-03-03 15:28:56 +0100 | [diff] [blame] | 111 | uint64_t arch_id; |
Igor Mammedov | f2d672c | 2017-02-09 12:08:38 +0100 | [diff] [blame] | 112 | int64_t vcpus_count; |
Igor Mammedov | c67ae93 | 2017-02-09 12:08:34 +0100 | [diff] [blame] | 113 | CpuInstanceProperties props; |
Igor Mammedov | 8aba384 | 2017-02-09 12:08:36 +0100 | [diff] [blame] | 114 | Object *cpu; |
Igor Mammedov | d342eb7 | 2018-01-10 16:22:50 +0100 | [diff] [blame] | 115 | const char *type; |
Igor Mammedov | 3811ef1 | 2016-03-03 15:28:56 +0100 | [diff] [blame] | 116 | } CPUArchId; |
| 117 | |
| 118 | /** |
| 119 | * CPUArchIdList: |
| 120 | * @len - number of @CPUArchId items in @cpus array |
| 121 | * @cpus - array of present or possible CPUs for current machine configuration |
| 122 | */ |
| 123 | typedef struct { |
| 124 | int len; |
Philippe Mathieu-Daudé | 880a781 | 2020-03-04 16:38:16 +0100 | [diff] [blame] | 125 | CPUArchId cpus[]; |
Igor Mammedov | 3811ef1 | 2016-03-03 15:28:56 +0100 | [diff] [blame] | 126 | } CPUArchIdList; |
| 127 | |
| 128 | /** |
Yanan Wang | e4a97a8 | 2021-09-29 10:58:12 +0800 | [diff] [blame] | 129 | * SMPCompatProps: |
Yanan Wang | 2b52619 | 2021-09-29 10:58:14 +0800 | [diff] [blame] | 130 | * @prefer_sockets - whether sockets are preferred over cores in smp parsing |
Yanan Wang | e4a97a8 | 2021-09-29 10:58:12 +0800 | [diff] [blame] | 131 | * @dies_supported - whether dies are supported by the machine |
Yanan Wang | 864c3b5 | 2021-12-28 17:22:09 +0800 | [diff] [blame] | 132 | * @clusters_supported - whether clusters are supported by the machine |
Yanan Wang | e4a97a8 | 2021-09-29 10:58:12 +0800 | [diff] [blame] | 133 | */ |
| 134 | typedef struct { |
Yanan Wang | 2b52619 | 2021-09-29 10:58:14 +0800 | [diff] [blame] | 135 | bool prefer_sockets; |
Yanan Wang | e4a97a8 | 2021-09-29 10:58:12 +0800 | [diff] [blame] | 136 | bool dies_supported; |
Yanan Wang | 864c3b5 | 2021-12-28 17:22:09 +0800 | [diff] [blame] | 137 | bool clusters_supported; |
Yanan Wang | e4a97a8 | 2021-09-29 10:58:12 +0800 | [diff] [blame] | 138 | } SMPCompatProps; |
| 139 | |
| 140 | /** |
Marcel Apfelbaum | 36d20cb | 2014-03-05 19:30:45 +0200 | [diff] [blame] | 141 | * MachineClass: |
Thomas Huth | 08fe682 | 2018-06-25 11:05:12 +0200 | [diff] [blame] | 142 | * @deprecation_reason: If set, the machine is marked as deprecated. The |
| 143 | * string should provide some clear information about what to use instead. |
Emilio G. Cota | 7264961 | 2017-11-13 13:55:27 +0000 | [diff] [blame] | 144 | * @max_cpus: maximum number of CPUs supported. Default: 1 |
| 145 | * @min_cpus: minimum number of CPUs supported. Default: 1 |
| 146 | * @default_cpus: number of CPUs instantiated if none are specified. Default: 1 |
Philippe Mathieu-Daudé | ea0ac7f | 2020-02-07 17:19:47 +0100 | [diff] [blame] | 147 | * @is_default: |
| 148 | * If true QEMU will use this machine by default if no '-M' option is given. |
Igor Mammedov | b745454 | 2014-06-02 15:25:03 +0200 | [diff] [blame] | 149 | * @get_hotplug_handler: this function is called during bus-less |
| 150 | * device hotplug. If defined it returns pointer to an instance |
| 151 | * of HotplugHandler object, which handles hotplug operation |
| 152 | * for a given @dev. It may return NULL if @dev doesn't require |
| 153 | * any actions to be performed by hotplug handler. |
Igor Mammedov | ea089ee | 2017-05-10 13:29:45 +0200 | [diff] [blame] | 154 | * @cpu_index_to_instance_props: |
| 155 | * used to provide @cpu_index to socket/core/thread number mapping, allowing |
| 156 | * legacy code to perform maping from cpu_index to topology properties |
| 157 | * Returns: tuple of socket/core/thread ids given cpu_index belongs to. |
Igor Mammedov | 57924bc | 2015-03-19 17:09:21 +0000 | [diff] [blame] | 158 | * used to provide @cpu_index to socket number mapping, allowing |
| 159 | * a machine to group CPU threads belonging to the same socket/package |
| 160 | * Returns: socket number given cpu_index belongs to. |
Eduardo Habkost | fac862f | 2015-11-12 15:29:54 -0200 | [diff] [blame] | 161 | * @hw_version: |
| 162 | * Value of QEMU_VERSION when the machine was added to QEMU. |
| 163 | * Set only by old machines because they need to keep |
| 164 | * compatibility on code that exposed QEMU_VERSION to guests in |
| 165 | * the past (and now use qemu_hw_version()). |
Igor Mammedov | 3811ef1 | 2016-03-03 15:28:56 +0100 | [diff] [blame] | 166 | * @possible_cpu_arch_ids: |
| 167 | * Returns an array of @CPUArchId architecture-dependent CPU IDs |
| 168 | * which includes CPU IDs for present and possible to hotplug CPUs. |
| 169 | * Caller is responsible for freeing returned list. |
Igor Mammedov | 79e0793 | 2017-06-01 12:53:28 +0200 | [diff] [blame] | 170 | * @get_default_cpu_node_id: |
| 171 | * returns default board specific node_id value for CPU slot specified by |
| 172 | * index @idx in @ms->possible_cpus[] |
Igor Mammedov | c5514d0 | 2017-02-10 11:20:57 +0100 | [diff] [blame] | 173 | * @has_hotpluggable_cpus: |
| 174 | * If true, board supports CPUs creation with -device/device_add. |
Igor Mammedov | 6063d4c | 2017-09-13 18:04:55 +0200 | [diff] [blame] | 175 | * @default_cpu_type: |
| 176 | * specifies default CPU_TYPE, which will be used for parsing target |
| 177 | * specific features and for creating CPUs if CPU name wasn't provided |
| 178 | * explicitly at CLI |
Peter Maydell | 20bccb8 | 2016-10-24 16:26:49 +0100 | [diff] [blame] | 179 | * @minimum_page_bits: |
| 180 | * If non-zero, the board promises never to create a CPU with a page size |
| 181 | * smaller than this, so QEMU can use a more efficient larger page |
| 182 | * size than the target architecture's minimum. (Attempting to create |
| 183 | * such a CPU will fail.) Note that changing this is a migration |
| 184 | * compatibility break for the machine. |
Peter Maydell | ed86012 | 2017-09-07 13:54:54 +0100 | [diff] [blame] | 185 | * @ignore_memory_transaction_failures: |
| 186 | * If this is flag is true then the CPU will ignore memory transaction |
| 187 | * failures which should cause the CPU to take an exception due to an |
| 188 | * access to an unassigned physical address; the transaction will instead |
| 189 | * return zero (for a read) or be ignored (for a write). This should be |
| 190 | * set only by legacy board models which rely on the old RAZ/WI behaviour |
| 191 | * for handling devices that QEMU does not yet model. New board models |
| 192 | * should instead use "unimplemented-device" for all memory ranges where |
| 193 | * the guest will attempt to probe for a device that QEMU doesn't |
| 194 | * implement and a stub device is required. |
Eric Auger | dc0ca80 | 2019-03-04 11:13:33 +0100 | [diff] [blame] | 195 | * @kvm_type: |
| 196 | * Return the type of KVM corresponding to the kvm-type string option or |
| 197 | * computed based on other criteria such as the host kernel capabilities. |
Andrew Jones | 516fc0a | 2021-03-10 14:52:17 +0100 | [diff] [blame] | 198 | * kvm-type may be NULL if it is not needed. |
Igor Mammedov | cd5ff83 | 2019-06-10 15:10:07 +0200 | [diff] [blame] | 199 | * @numa_mem_supported: |
| 200 | * true if '--numa node.mem' option is supported and false otherwise |
Peter Xu | d2321d3 | 2019-09-16 16:07:16 +0800 | [diff] [blame] | 201 | * @hotplug_allowed: |
| 202 | * If the hook is provided, then it'll be called for each device |
| 203 | * hotplug to check whether the device hotplug is allowed. Return |
| 204 | * true to grant allowance or false to reject the hotplug. When |
| 205 | * false is returned, an error must be set to show the reason of |
| 206 | * the rejection. If the hook is not provided, all hotplug will be |
| 207 | * allowed. |
Igor Mammedov | 900c0ba | 2020-02-19 11:08:37 -0500 | [diff] [blame] | 208 | * @default_ram_id: |
| 209 | * Specifies inital RAM MemoryRegion name to be used for default backend |
| 210 | * creation if user explicitly hasn't specified backend with "memory-backend" |
| 211 | * property. |
| 212 | * It also will be used as a way to optin into "-m" option support. |
| 213 | * If it's not set by board, '-m' will be ignored and generic code will |
| 214 | * not create default RAM MemoryRegion. |
Christian Borntraeger | 5c30ef9 | 2020-04-01 08:37:54 -0400 | [diff] [blame] | 215 | * @fixup_ram_size: |
| 216 | * Amends user provided ram size (with -m option) using machine |
| 217 | * specific algorithm. To be used by old machine types for compat |
| 218 | * purposes only. |
| 219 | * Applies only to default memory backend, i.e., explicit memory backend |
| 220 | * wasn't used. |
Marcel Apfelbaum | 36d20cb | 2014-03-05 19:30:45 +0200 | [diff] [blame] | 221 | */ |
| 222 | struct MachineClass { |
| 223 | /*< private >*/ |
| 224 | ObjectClass parent_class; |
| 225 | /*< public >*/ |
| 226 | |
Laszlo Ersek | 2709f26 | 2014-09-22 22:38:35 +0200 | [diff] [blame] | 227 | const char *family; /* NULL iff @name identifies a standalone machtype */ |
Marc-André Lureau | 8ea7537 | 2016-07-13 12:45:50 +0200 | [diff] [blame] | 228 | char *name; |
Marcel Apfelbaum | 00b4fbe | 2014-04-09 20:34:50 +0300 | [diff] [blame] | 229 | const char *alias; |
| 230 | const char *desc; |
Thomas Huth | 08fe682 | 2018-06-25 11:05:12 +0200 | [diff] [blame] | 231 | const char *deprecation_reason; |
Marcel Apfelbaum | 00b4fbe | 2014-04-09 20:34:50 +0300 | [diff] [blame] | 232 | |
Marcel Apfelbaum | 3ef9622 | 2014-05-07 17:42:57 +0300 | [diff] [blame] | 233 | void (*init)(MachineState *state); |
Like Xu | a062859 | 2019-05-19 04:54:20 +0800 | [diff] [blame] | 234 | void (*reset)(MachineState *state); |
Nicholas Piggin | 4b5e06c | 2019-07-22 15:32:13 +1000 | [diff] [blame] | 235 | void (*wakeup)(MachineState *state); |
Eric Auger | dc0ca80 | 2019-03-04 11:13:33 +0100 | [diff] [blame] | 236 | int (*kvm_type)(MachineState *machine, const char *arg); |
Marcel Apfelbaum | 00b4fbe | 2014-04-09 20:34:50 +0300 | [diff] [blame] | 237 | |
| 238 | BlockInterfaceType block_default_type; |
John Snow | 1602651 | 2014-10-01 14:19:26 -0400 | [diff] [blame] | 239 | int units_per_default_bus; |
Marcel Apfelbaum | 00b4fbe | 2014-04-09 20:34:50 +0300 | [diff] [blame] | 240 | int max_cpus; |
Emilio G. Cota | 7264961 | 2017-11-13 13:55:27 +0000 | [diff] [blame] | 241 | int min_cpus; |
| 242 | int default_cpus; |
Marcel Apfelbaum | 00b4fbe | 2014-04-09 20:34:50 +0300 | [diff] [blame] | 243 | unsigned int no_serial:1, |
| 244 | no_parallel:1, |
Marcel Apfelbaum | 00b4fbe | 2014-04-09 20:34:50 +0300 | [diff] [blame] | 245 | no_floppy:1, |
| 246 | no_cdrom:1, |
Alexander Graf | 33cd52b | 2014-07-01 16:14:41 +0200 | [diff] [blame] | 247 | no_sdcard:1, |
Gerd Hoffmann | bab47d9 | 2016-04-07 09:12:58 -0500 | [diff] [blame] | 248 | pci_allow_0_address:1, |
| 249 | legacy_fw_cfg_order:1; |
Philippe Mathieu-Daudé | ea0ac7f | 2020-02-07 17:19:47 +0100 | [diff] [blame] | 250 | bool is_default; |
Marcel Apfelbaum | 00b4fbe | 2014-04-09 20:34:50 +0300 | [diff] [blame] | 251 | const char *default_machine_opts; |
| 252 | const char *default_boot_order; |
Gerd Hoffmann | 6f00494 | 2014-10-28 10:09:11 +0100 | [diff] [blame] | 253 | const char *default_display; |
Marc-André Lureau | b66bbee | 2018-12-01 23:44:11 +0400 | [diff] [blame] | 254 | GPtrArray *compat_props; |
Marcel Apfelbaum | 00b4fbe | 2014-04-09 20:34:50 +0300 | [diff] [blame] | 255 | const char *hw_version; |
Nikunj A Dadhania | 076b35b | 2015-05-07 15:33:57 +1000 | [diff] [blame] | 256 | ram_addr_t default_ram_size; |
Igor Mammedov | 6063d4c | 2017-09-13 18:04:55 +0200 | [diff] [blame] | 257 | const char *default_cpu_type; |
Peter Xu | b2fc91d | 2018-12-20 13:40:35 +0800 | [diff] [blame] | 258 | bool default_kernel_irqchip_split; |
Eduardo Habkost | 71ae9e9 | 2015-12-01 20:58:08 -0200 | [diff] [blame] | 259 | bool option_rom_has_mr; |
| 260 | bool rom_file_has_mr; |
Peter Maydell | 20bccb8 | 2016-10-24 16:26:49 +0100 | [diff] [blame] | 261 | int minimum_page_bits; |
Igor Mammedov | c5514d0 | 2017-02-10 11:20:57 +0100 | [diff] [blame] | 262 | bool has_hotpluggable_cpus; |
Peter Maydell | ed86012 | 2017-09-07 13:54:54 +0100 | [diff] [blame] | 263 | bool ignore_memory_transaction_failures; |
Laurent Vivier | 5564121 | 2017-03-21 11:25:42 +0100 | [diff] [blame] | 264 | int numa_mem_align_shift; |
Alistair Francis | c9cf636 | 2017-10-03 13:05:09 -0700 | [diff] [blame] | 265 | const char **valid_cpu_types; |
Eduardo Habkost | 0bd1909 | 2017-11-25 13:16:05 -0200 | [diff] [blame] | 266 | strList *allowed_dynamic_sysbus_devices; |
Dou Liyang | 7b8be49 | 2017-11-14 10:34:01 +0800 | [diff] [blame] | 267 | bool auto_enable_numa_with_memhp; |
David Hildenbrand | 195784a | 2020-06-26 09:22:48 +0200 | [diff] [blame] | 268 | bool auto_enable_numa_with_memdev; |
Mark Cave-Ayland | 907aac2 | 2018-08-10 13:40:27 +0100 | [diff] [blame] | 269 | bool ignore_boot_device_suffixes; |
Corey Minyard | 7fccf2a | 2018-11-14 14:41:01 -0600 | [diff] [blame] | 270 | bool smbus_no_migration_support; |
Eric Auger | f6a0d06 | 2019-03-08 19:20:53 +0100 | [diff] [blame] | 271 | bool nvdimm_supported; |
Igor Mammedov | cd5ff83 | 2019-06-10 15:10:07 +0200 | [diff] [blame] | 272 | bool numa_mem_supported; |
Tao Xu | 0533ef5 | 2019-09-05 16:32:38 +0800 | [diff] [blame] | 273 | bool auto_enable_numa; |
Yanan Wang | e4a97a8 | 2021-09-29 10:58:12 +0800 | [diff] [blame] | 274 | SMPCompatProps smp_props; |
Igor Mammedov | 900c0ba | 2020-02-19 11:08:37 -0500 | [diff] [blame] | 275 | const char *default_ram_id; |
Igor Mammedov | b745454 | 2014-06-02 15:25:03 +0200 | [diff] [blame] | 276 | |
| 277 | HotplugHandler *(*get_hotplug_handler)(MachineState *machine, |
| 278 | DeviceState *dev); |
Peter Xu | d2321d3 | 2019-09-16 16:07:16 +0800 | [diff] [blame] | 279 | bool (*hotplug_allowed)(MachineState *state, DeviceState *dev, |
| 280 | Error **errp); |
Igor Mammedov | ea089ee | 2017-05-10 13:29:45 +0200 | [diff] [blame] | 281 | CpuInstanceProperties (*cpu_index_to_instance_props)(MachineState *machine, |
| 282 | unsigned cpu_index); |
Igor Mammedov | 80e5db3 | 2017-01-18 18:13:20 +0100 | [diff] [blame] | 283 | const CPUArchIdList *(*possible_cpu_arch_ids)(MachineState *machine); |
Igor Mammedov | 79e0793 | 2017-06-01 12:53:28 +0200 | [diff] [blame] | 284 | int64_t (*get_default_cpu_node_id)(const MachineState *ms, int idx); |
Christian Borntraeger | 5c30ef9 | 2020-04-01 08:37:54 -0400 | [diff] [blame] | 285 | ram_addr_t (*fixup_ram_size)(ram_addr_t size); |
Marcel Apfelbaum | 36d20cb | 2014-03-05 19:30:45 +0200 | [diff] [blame] | 286 | }; |
| 287 | |
| 288 | /** |
David Hildenbrand | e017da3 | 2018-04-23 18:51:23 +0200 | [diff] [blame] | 289 | * DeviceMemoryState: |
David Hildenbrand | b0c14ec | 2018-04-23 18:51:17 +0200 | [diff] [blame] | 290 | * @base: address in guest physical address space where the memory |
| 291 | * address space for memory devices starts |
| 292 | * @mr: address space container for memory devices |
| 293 | */ |
David Hildenbrand | e017da3 | 2018-04-23 18:51:23 +0200 | [diff] [blame] | 294 | typedef struct DeviceMemoryState { |
David Hildenbrand | b0c14ec | 2018-04-23 18:51:17 +0200 | [diff] [blame] | 295 | hwaddr base; |
| 296 | MemoryRegion mr; |
David Hildenbrand | e017da3 | 2018-04-23 18:51:23 +0200 | [diff] [blame] | 297 | } DeviceMemoryState; |
David Hildenbrand | b0c14ec | 2018-04-23 18:51:17 +0200 | [diff] [blame] | 298 | |
| 299 | /** |
Like Xu | edeeec9 | 2019-05-19 04:54:19 +0800 | [diff] [blame] | 300 | * CpuTopology: |
| 301 | * @cpus: the number of present logical processors on the machine |
Babu Moger | 8cb30e3 | 2020-03-11 17:53:06 -0500 | [diff] [blame] | 302 | * @sockets: the number of sockets on the machine |
Yanan Wang | 003f230 | 2021-09-29 10:58:11 +0800 | [diff] [blame] | 303 | * @dies: the number of dies in one socket |
Yanan Wang | 864c3b5 | 2021-12-28 17:22:09 +0800 | [diff] [blame] | 304 | * @clusters: the number of clusters in one die |
| 305 | * @cores: the number of cores in one cluster |
Yanan Wang | 003f230 | 2021-09-29 10:58:11 +0800 | [diff] [blame] | 306 | * @threads: the number of threads in one core |
Like Xu | edeeec9 | 2019-05-19 04:54:19 +0800 | [diff] [blame] | 307 | * @max_cpus: the maximum number of logical processors on the machine |
| 308 | */ |
| 309 | typedef struct CpuTopology { |
| 310 | unsigned int cpus; |
Yanan Wang | 003f230 | 2021-09-29 10:58:11 +0800 | [diff] [blame] | 311 | unsigned int sockets; |
Paolo Bonzini | 67872eb | 2021-06-17 17:53:03 +0200 | [diff] [blame] | 312 | unsigned int dies; |
Yanan Wang | 864c3b5 | 2021-12-28 17:22:09 +0800 | [diff] [blame] | 313 | unsigned int clusters; |
Like Xu | edeeec9 | 2019-05-19 04:54:19 +0800 | [diff] [blame] | 314 | unsigned int cores; |
| 315 | unsigned int threads; |
Like Xu | edeeec9 | 2019-05-19 04:54:19 +0800 | [diff] [blame] | 316 | unsigned int max_cpus; |
| 317 | } CpuTopology; |
| 318 | |
| 319 | /** |
Marcel Apfelbaum | 36d20cb | 2014-03-05 19:30:45 +0200 | [diff] [blame] | 320 | * MachineState: |
| 321 | */ |
| 322 | struct MachineState { |
| 323 | /*< private >*/ |
| 324 | Object parent_obj; |
Alexander Graf | 33cd52b | 2014-07-01 16:14:41 +0200 | [diff] [blame] | 325 | |
Marcel Apfelbaum | 36d20cb | 2014-03-05 19:30:45 +0200 | [diff] [blame] | 326 | /*< public >*/ |
| 327 | |
Alex Bennée | a6487d3 | 2021-03-03 17:36:36 +0000 | [diff] [blame] | 328 | void *fdt; |
Marcel Apfelbaum | 36d20cb | 2014-03-05 19:30:45 +0200 | [diff] [blame] | 329 | char *dtb; |
| 330 | char *dumpdtb; |
| 331 | int phandle_start; |
| 332 | char *dt_compatible; |
| 333 | bool dump_guest_core; |
| 334 | bool mem_merge; |
| 335 | bool usb; |
Paolo Bonzini | c6e7650 | 2015-03-23 18:05:28 +0100 | [diff] [blame] | 336 | bool usb_disabled; |
Marcel Apfelbaum | 36d20cb | 2014-03-05 19:30:45 +0200 | [diff] [blame] | 337 | char *firmware; |
Le Tan | a52a7fd | 2014-08-16 13:55:40 +0800 | [diff] [blame] | 338 | bool iommu; |
Alexander Graf | 9850c60 | 2015-02-23 13:56:42 +0100 | [diff] [blame] | 339 | bool suppress_vmdesc; |
Eduardo Habkost | cfc58cf | 2016-04-19 16:55:25 -0300 | [diff] [blame] | 340 | bool enable_graphics; |
David Gibson | e0292d7 | 2020-12-04 12:51:51 +1100 | [diff] [blame] | 341 | ConfidentialGuestSupport *cgs; |
Igor Mammedov | aa8b183 | 2020-02-19 11:08:36 -0500 | [diff] [blame] | 342 | char *ram_memdev_id; |
Igor Mammedov | 82b911a | 2020-02-19 11:08:38 -0500 | [diff] [blame] | 343 | /* |
| 344 | * convenience alias to ram_memdev_id backend memory region |
| 345 | * or to numa container memory region |
| 346 | */ |
| 347 | MemoryRegion *ram; |
David Hildenbrand | e017da3 | 2018-04-23 18:51:23 +0200 | [diff] [blame] | 348 | DeviceMemoryState *device_memory; |
Marcel Apfelbaum | 36d20cb | 2014-03-05 19:30:45 +0200 | [diff] [blame] | 349 | |
Marcel Apfelbaum | 3ef9622 | 2014-05-07 17:42:57 +0300 | [diff] [blame] | 350 | ram_addr_t ram_size; |
Igor Mammedov | c270fb9 | 2014-06-02 15:25:02 +0200 | [diff] [blame] | 351 | ram_addr_t maxram_size; |
| 352 | uint64_t ram_slots; |
Marcel Apfelbaum | 3ef9622 | 2014-05-07 17:42:57 +0300 | [diff] [blame] | 353 | const char *boot_order; |
Paolo Bonzini | 4b7acd2 | 2020-11-13 02:41:38 -0500 | [diff] [blame] | 354 | const char *boot_once; |
Marcel Apfelbaum | 6b1b144 | 2014-05-26 15:40:58 +0300 | [diff] [blame] | 355 | char *kernel_filename; |
| 356 | char *kernel_cmdline; |
| 357 | char *initrd_filename; |
Igor Mammedov | 6063d4c | 2017-09-13 18:04:55 +0200 | [diff] [blame] | 358 | const char *cpu_type; |
Eduardo Habkost | ac2da55 | 2014-09-26 17:45:31 -0300 | [diff] [blame] | 359 | AccelState *accelerator; |
Igor Mammedov | 38690a1 | 2017-02-09 12:08:32 +0100 | [diff] [blame] | 360 | CPUArchIdList *possible_cpus; |
Like Xu | edeeec9 | 2019-05-19 04:54:19 +0800 | [diff] [blame] | 361 | CpuTopology smp; |
Eric Auger | f6a0d06 | 2019-03-08 19:20:53 +0100 | [diff] [blame] | 362 | struct NVDIMMState *nvdimms_state; |
Tao Xu | aa57020 | 2019-08-09 14:57:22 +0800 | [diff] [blame] | 363 | struct NumaState *numa_state; |
Marcel Apfelbaum | 36d20cb | 2014-03-05 19:30:45 +0200 | [diff] [blame] | 364 | }; |
| 365 | |
Eduardo Habkost | ed0b6de | 2015-09-04 15:37:06 -0300 | [diff] [blame] | 366 | #define DEFINE_MACHINE(namestr, machine_initfn) \ |
| 367 | static void machine_initfn##_class_init(ObjectClass *oc, void *data) \ |
| 368 | { \ |
| 369 | MachineClass *mc = MACHINE_CLASS(oc); \ |
| 370 | machine_initfn(mc); \ |
| 371 | } \ |
| 372 | static const TypeInfo machine_initfn##_typeinfo = { \ |
| 373 | .name = MACHINE_TYPE_NAME(namestr), \ |
| 374 | .parent = TYPE_MACHINE, \ |
| 375 | .class_init = machine_initfn##_class_init, \ |
| 376 | }; \ |
| 377 | static void machine_initfn##_register_types(void) \ |
| 378 | { \ |
| 379 | type_register_static(&machine_initfn##_typeinfo); \ |
| 380 | } \ |
Eduardo Habkost | 0e6aac8 | 2016-02-16 18:59:04 -0200 | [diff] [blame] | 381 | type_init(machine_initfn##_register_types) |
Eduardo Habkost | ed0b6de | 2015-09-04 15:37:06 -0300 | [diff] [blame] | 382 | |
Cornelia Huck | 0ca7036 | 2022-03-16 15:55:21 +0100 | [diff] [blame] | 383 | extern GlobalProperty hw_compat_7_0[]; |
| 384 | extern const size_t hw_compat_7_0_len; |
| 385 | |
Cornelia Huck | 01854af | 2021-12-17 15:39:48 +0100 | [diff] [blame] | 386 | extern GlobalProperty hw_compat_6_2[]; |
| 387 | extern const size_t hw_compat_6_2_len; |
| 388 | |
Yanan Wang | 52e64f5 | 2021-08-31 09:54:26 +0800 | [diff] [blame] | 389 | extern GlobalProperty hw_compat_6_1[]; |
| 390 | extern const size_t hw_compat_6_1_len; |
| 391 | |
Cornelia Huck | da7e13c | 2021-03-31 13:19:00 +0200 | [diff] [blame] | 392 | extern GlobalProperty hw_compat_6_0[]; |
| 393 | extern const size_t hw_compat_6_0_len; |
| 394 | |
Cornelia Huck | 576a00b | 2020-11-09 18:39:28 +0100 | [diff] [blame] | 395 | extern GlobalProperty hw_compat_5_2[]; |
| 396 | extern const size_t hw_compat_5_2_len; |
| 397 | |
Cornelia Huck | 3ff3c5d | 2020-08-19 16:40:16 +0200 | [diff] [blame] | 398 | extern GlobalProperty hw_compat_5_1[]; |
| 399 | extern const size_t hw_compat_5_1_len; |
| 400 | |
Cornelia Huck | 541aaa1 | 2020-04-29 16:46:05 +0200 | [diff] [blame] | 401 | extern GlobalProperty hw_compat_5_0[]; |
| 402 | extern const size_t hw_compat_5_0_len; |
| 403 | |
Evgeny Yakovlev | 5f25857 | 2019-11-05 21:22:17 +0300 | [diff] [blame] | 404 | extern GlobalProperty hw_compat_4_2[]; |
| 405 | extern const size_t hw_compat_4_2_len; |
| 406 | |
Cornelia Huck | 9aec2e5 | 2019-07-24 12:35:24 +0200 | [diff] [blame] | 407 | extern GlobalProperty hw_compat_4_1[]; |
| 408 | extern const size_t hw_compat_4_1_len; |
| 409 | |
Cornelia Huck | 9bf2650 | 2019-04-11 12:20:25 +0200 | [diff] [blame] | 410 | extern GlobalProperty hw_compat_4_0[]; |
| 411 | extern const size_t hw_compat_4_0_len; |
| 412 | |
Marc-André Lureau | abd93cc | 2018-12-12 19:36:30 +0400 | [diff] [blame] | 413 | extern GlobalProperty hw_compat_3_1[]; |
| 414 | extern const size_t hw_compat_3_1_len; |
| 415 | |
Marc-André Lureau | ddb3235 | 2018-12-12 19:36:30 +0400 | [diff] [blame] | 416 | extern GlobalProperty hw_compat_3_0[]; |
| 417 | extern const size_t hw_compat_3_0_len; |
| 418 | |
Marc-André Lureau | 0d47310 | 2018-12-12 19:36:30 +0400 | [diff] [blame] | 419 | extern GlobalProperty hw_compat_2_12[]; |
| 420 | extern const size_t hw_compat_2_12_len; |
| 421 | |
Marc-André Lureau | 43df70a | 2018-12-12 19:36:30 +0400 | [diff] [blame] | 422 | extern GlobalProperty hw_compat_2_11[]; |
| 423 | extern const size_t hw_compat_2_11_len; |
| 424 | |
Marc-André Lureau | 503224f | 2018-12-12 19:36:30 +0400 | [diff] [blame] | 425 | extern GlobalProperty hw_compat_2_10[]; |
| 426 | extern const size_t hw_compat_2_10_len; |
| 427 | |
Marc-André Lureau | 3e80315 | 2018-12-12 19:36:30 +0400 | [diff] [blame] | 428 | extern GlobalProperty hw_compat_2_9[]; |
| 429 | extern const size_t hw_compat_2_9_len; |
| 430 | |
Marc-André Lureau | edc24cc | 2018-12-12 19:36:30 +0400 | [diff] [blame] | 431 | extern GlobalProperty hw_compat_2_8[]; |
| 432 | extern const size_t hw_compat_2_8_len; |
| 433 | |
Marc-André Lureau | 5a99506 | 2018-12-12 19:36:30 +0400 | [diff] [blame] | 434 | extern GlobalProperty hw_compat_2_7[]; |
| 435 | extern const size_t hw_compat_2_7_len; |
| 436 | |
Marc-André Lureau | ff8f261 | 2018-12-12 19:36:30 +0400 | [diff] [blame] | 437 | extern GlobalProperty hw_compat_2_6[]; |
| 438 | extern const size_t hw_compat_2_6_len; |
| 439 | |
Marc-André Lureau | fe75961 | 2018-12-12 19:36:30 +0400 | [diff] [blame] | 440 | extern GlobalProperty hw_compat_2_5[]; |
| 441 | extern const size_t hw_compat_2_5_len; |
| 442 | |
Marc-André Lureau | 2f99b9c | 2018-12-12 19:36:30 +0400 | [diff] [blame] | 443 | extern GlobalProperty hw_compat_2_4[]; |
| 444 | extern const size_t hw_compat_2_4_len; |
| 445 | |
Marc-André Lureau | 8995dd9 | 2018-12-12 19:36:30 +0400 | [diff] [blame] | 446 | extern GlobalProperty hw_compat_2_3[]; |
| 447 | extern const size_t hw_compat_2_3_len; |
| 448 | |
Marc-André Lureau | 1c30044 | 2018-12-12 19:36:30 +0400 | [diff] [blame] | 449 | extern GlobalProperty hw_compat_2_2[]; |
| 450 | extern const size_t hw_compat_2_2_len; |
| 451 | |
Marc-André Lureau | c4fc569 | 2018-12-12 19:36:30 +0400 | [diff] [blame] | 452 | extern GlobalProperty hw_compat_2_1[]; |
| 453 | extern const size_t hw_compat_2_1_len; |
| 454 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 455 | #endif |