10d09e41aSPaolo Bonzini /* Declarations for use by board files for creating devices. */ 20d09e41aSPaolo Bonzini 30d09e41aSPaolo Bonzini #ifndef HW_BOARDS_H 40d09e41aSPaolo Bonzini #define HW_BOARDS_H 50d09e41aSPaolo Bonzini 60d09e41aSPaolo Bonzini #include "sysemu/blockdev.h" 7ac2da55eSEduardo Habkost #include "sysemu/accel.h" 80d09e41aSPaolo Bonzini #include "hw/qdev.h" 936d20cb2SMarcel Apfelbaum #include "qom/object.h" 103811ef14SIgor Mammedov #include "qom/cpu.h" 110d09e41aSPaolo Bonzini 1209ad6438SPeter Maydell /** 1309ad6438SPeter Maydell * memory_region_allocate_system_memory - Allocate a board's main memory 1409ad6438SPeter Maydell * @mr: the #MemoryRegion to be initialized 1509ad6438SPeter Maydell * @owner: the object that tracks the region's reference count 1609ad6438SPeter Maydell * @name: name of the memory region 1709ad6438SPeter Maydell * @ram_size: size of the region in bytes 1809ad6438SPeter Maydell * 1909ad6438SPeter Maydell * This function allocates the main memory for a board model, and 2009ad6438SPeter Maydell * initializes @mr appropriately. It also arranges for the memory 2109ad6438SPeter Maydell * to be migrated (by calling vmstate_register_ram_global()). 2209ad6438SPeter Maydell * 2309ad6438SPeter Maydell * Memory allocated via this function will be backed with the memory 2409ad6438SPeter Maydell * backend the user provided using "-mem-path" or "-numa node,memdev=..." 2509ad6438SPeter Maydell * if appropriate; this is typically used to cause host huge pages to be 2609ad6438SPeter Maydell * used. This function should therefore be called by a board exactly once, 2709ad6438SPeter Maydell * for the primary or largest RAM area it implements. 2809ad6438SPeter Maydell * 2909ad6438SPeter Maydell * For boards where the major RAM is split into two parts in the memory 3009ad6438SPeter Maydell * map, you can deal with this by calling memory_region_allocate_system_memory() 3109ad6438SPeter Maydell * once to get a MemoryRegion with enough RAM for both parts, and then 3209ad6438SPeter Maydell * creating alias MemoryRegions via memory_region_init_alias() which 3309ad6438SPeter Maydell * alias into different parts of the RAM MemoryRegion and can be mapped 3409ad6438SPeter Maydell * into the memory map in the appropriate places. 3509ad6438SPeter Maydell * 3609ad6438SPeter Maydell * Smaller pieces of memory (display RAM, static RAMs, etc) don't need 3709ad6438SPeter Maydell * to be backed via the -mem-path memory backend and can simply 38b08199c6SPeter Maydell * be created via memory_region_allocate_aux_memory() or 39b08199c6SPeter Maydell * memory_region_init_ram(). 4009ad6438SPeter Maydell */ 41dfabb8b9SPaolo Bonzini void memory_region_allocate_system_memory(MemoryRegion *mr, Object *owner, 42dfabb8b9SPaolo Bonzini const char *name, 43dfabb8b9SPaolo Bonzini uint64_t ram_size); 44dfabb8b9SPaolo Bonzini 45dfabb8b9SPaolo Bonzini #define TYPE_MACHINE_SUFFIX "-machine" 46c84a8f01SEduardo Habkost 47c84a8f01SEduardo Habkost /* Machine class name that needs to be used for class-name-based machine 48c84a8f01SEduardo Habkost * type lookup to work. 49c84a8f01SEduardo Habkost */ 50c84a8f01SEduardo Habkost #define MACHINE_TYPE_NAME(machinename) (machinename TYPE_MACHINE_SUFFIX) 51c84a8f01SEduardo Habkost 5236d20cb2SMarcel Apfelbaum #define TYPE_MACHINE "machine" 53c8897e8eSMarcel Apfelbaum #undef MACHINE /* BSD defines it and QEMU does not use it */ 5436d20cb2SMarcel Apfelbaum #define MACHINE(obj) \ 5536d20cb2SMarcel Apfelbaum OBJECT_CHECK(MachineState, (obj), TYPE_MACHINE) 5636d20cb2SMarcel Apfelbaum #define MACHINE_GET_CLASS(obj) \ 5736d20cb2SMarcel Apfelbaum OBJECT_GET_CLASS(MachineClass, (obj), TYPE_MACHINE) 5836d20cb2SMarcel Apfelbaum #define MACHINE_CLASS(klass) \ 5936d20cb2SMarcel Apfelbaum OBJECT_CLASS_CHECK(MachineClass, (klass), TYPE_MACHINE) 6036d20cb2SMarcel Apfelbaum 610056ae24SMarcel Apfelbaum MachineClass *find_default_machine(void); 620056ae24SMarcel Apfelbaum extern MachineState *current_machine; 630056ae24SMarcel Apfelbaum 64482dfe9aSIgor Mammedov void machine_run_board_init(MachineState *machine); 655e97b623SMarcel Apfelbaum bool machine_usb(MachineState *machine); 66d8870d02SMarcel Apfelbaum bool machine_kernel_irqchip_allowed(MachineState *machine); 67d8870d02SMarcel Apfelbaum bool machine_kernel_irqchip_required(MachineState *machine); 6832c18a2dSMatt Gingell bool machine_kernel_irqchip_split(MachineState *machine); 694689b77bSMarcel Apfelbaum int machine_kvm_shadow_mem(MachineState *machine); 706cabe7faSMarcel Apfelbaum int machine_phandle_start(MachineState *machine); 7147c8ca53SMarcel Apfelbaum bool machine_dump_guest_core(MachineState *machine); 7275cc7f01SMarcel Apfelbaum bool machine_mem_merge(MachineState *machine); 7339a3b377SEduardo Habkost void machine_register_compat_props(MachineState *machine); 74f2d672c2SIgor Mammedov HotpluggableCPUList *machine_query_hotpluggable_cpus(MachineState *machine); 757c88e65dSIgor Mammedov void machine_set_cpu_numa_node(MachineState *machine, 767c88e65dSIgor Mammedov const CpuInstanceProperties *props, 777c88e65dSIgor Mammedov Error **errp); 785e97b623SMarcel Apfelbaum 7936d20cb2SMarcel Apfelbaum /** 803811ef14SIgor Mammedov * CPUArchId: 813811ef14SIgor Mammedov * @arch_id - architecture-dependent CPU ID of present or possible CPU 823811ef14SIgor Mammedov * @cpu - pointer to corresponding CPU object if it's present on NULL otherwise 83c67ae933SIgor Mammedov * @props - CPU object properties, initialized by board 84f2d672c2SIgor Mammedov * #vcpus_count - number of threads provided by @cpu object 853811ef14SIgor Mammedov */ 863811ef14SIgor Mammedov typedef struct { 873811ef14SIgor Mammedov uint64_t arch_id; 88f2d672c2SIgor Mammedov int64_t vcpus_count; 89c67ae933SIgor Mammedov CpuInstanceProperties props; 908aba3842SIgor Mammedov Object *cpu; 913811ef14SIgor Mammedov } CPUArchId; 923811ef14SIgor Mammedov 933811ef14SIgor Mammedov /** 943811ef14SIgor Mammedov * CPUArchIdList: 953811ef14SIgor Mammedov * @len - number of @CPUArchId items in @cpus array 963811ef14SIgor Mammedov * @cpus - array of present or possible CPUs for current machine configuration 973811ef14SIgor Mammedov */ 983811ef14SIgor Mammedov typedef struct { 993811ef14SIgor Mammedov int len; 1003811ef14SIgor Mammedov CPUArchId cpus[0]; 1013811ef14SIgor Mammedov } CPUArchIdList; 1023811ef14SIgor Mammedov 1033811ef14SIgor Mammedov /** 10436d20cb2SMarcel Apfelbaum * MachineClass: 105*72649619SEmilio G. Cota * @max_cpus: maximum number of CPUs supported. Default: 1 106*72649619SEmilio G. Cota * @min_cpus: minimum number of CPUs supported. Default: 1 107*72649619SEmilio G. Cota * @default_cpus: number of CPUs instantiated if none are specified. Default: 1 108b7454548SIgor Mammedov * @get_hotplug_handler: this function is called during bus-less 109b7454548SIgor Mammedov * device hotplug. If defined it returns pointer to an instance 110b7454548SIgor Mammedov * of HotplugHandler object, which handles hotplug operation 111b7454548SIgor Mammedov * for a given @dev. It may return NULL if @dev doesn't require 112b7454548SIgor Mammedov * any actions to be performed by hotplug handler. 113ea089eebSIgor Mammedov * @cpu_index_to_instance_props: 114ea089eebSIgor Mammedov * used to provide @cpu_index to socket/core/thread number mapping, allowing 115ea089eebSIgor Mammedov * legacy code to perform maping from cpu_index to topology properties 116ea089eebSIgor Mammedov * Returns: tuple of socket/core/thread ids given cpu_index belongs to. 11757924bcdSIgor Mammedov * used to provide @cpu_index to socket number mapping, allowing 11857924bcdSIgor Mammedov * a machine to group CPU threads belonging to the same socket/package 11957924bcdSIgor Mammedov * Returns: socket number given cpu_index belongs to. 120fac862ffSEduardo Habkost * @hw_version: 121fac862ffSEduardo Habkost * Value of QEMU_VERSION when the machine was added to QEMU. 122fac862ffSEduardo Habkost * Set only by old machines because they need to keep 123fac862ffSEduardo Habkost * compatibility on code that exposed QEMU_VERSION to guests in 124fac862ffSEduardo Habkost * the past (and now use qemu_hw_version()). 1253811ef14SIgor Mammedov * @possible_cpu_arch_ids: 1263811ef14SIgor Mammedov * Returns an array of @CPUArchId architecture-dependent CPU IDs 1273811ef14SIgor Mammedov * which includes CPU IDs for present and possible to hotplug CPUs. 1283811ef14SIgor Mammedov * Caller is responsible for freeing returned list. 12979e07936SIgor Mammedov * @get_default_cpu_node_id: 13079e07936SIgor Mammedov * returns default board specific node_id value for CPU slot specified by 13179e07936SIgor Mammedov * index @idx in @ms->possible_cpus[] 132c5514d0eSIgor Mammedov * @has_hotpluggable_cpus: 133c5514d0eSIgor Mammedov * If true, board supports CPUs creation with -device/device_add. 1346063d4c0SIgor Mammedov * @default_cpu_type: 1356063d4c0SIgor Mammedov * specifies default CPU_TYPE, which will be used for parsing target 1366063d4c0SIgor Mammedov * specific features and for creating CPUs if CPU name wasn't provided 1376063d4c0SIgor Mammedov * explicitly at CLI 13820bccb82SPeter Maydell * @minimum_page_bits: 13920bccb82SPeter Maydell * If non-zero, the board promises never to create a CPU with a page size 14020bccb82SPeter Maydell * smaller than this, so QEMU can use a more efficient larger page 14120bccb82SPeter Maydell * size than the target architecture's minimum. (Attempting to create 14220bccb82SPeter Maydell * such a CPU will fail.) Note that changing this is a migration 14320bccb82SPeter Maydell * compatibility break for the machine. 144ed860129SPeter Maydell * @ignore_memory_transaction_failures: 145ed860129SPeter Maydell * If this is flag is true then the CPU will ignore memory transaction 146ed860129SPeter Maydell * failures which should cause the CPU to take an exception due to an 147ed860129SPeter Maydell * access to an unassigned physical address; the transaction will instead 148ed860129SPeter Maydell * return zero (for a read) or be ignored (for a write). This should be 149ed860129SPeter Maydell * set only by legacy board models which rely on the old RAZ/WI behaviour 150ed860129SPeter Maydell * for handling devices that QEMU does not yet model. New board models 151ed860129SPeter Maydell * should instead use "unimplemented-device" for all memory ranges where 152ed860129SPeter Maydell * the guest will attempt to probe for a device that QEMU doesn't 153ed860129SPeter Maydell * implement and a stub device is required. 15436d20cb2SMarcel Apfelbaum */ 15536d20cb2SMarcel Apfelbaum struct MachineClass { 15636d20cb2SMarcel Apfelbaum /*< private >*/ 15736d20cb2SMarcel Apfelbaum ObjectClass parent_class; 15836d20cb2SMarcel Apfelbaum /*< public >*/ 15936d20cb2SMarcel Apfelbaum 1602709f263SLaszlo Ersek const char *family; /* NULL iff @name identifies a standalone machtype */ 1618ea75371SMarc-André Lureau char *name; 16200b4fbe2SMarcel Apfelbaum const char *alias; 16300b4fbe2SMarcel Apfelbaum const char *desc; 16400b4fbe2SMarcel Apfelbaum 1653ef96221SMarcel Apfelbaum void (*init)(MachineState *state); 16600b4fbe2SMarcel Apfelbaum void (*reset)(void); 16700b4fbe2SMarcel Apfelbaum void (*hot_add_cpu)(const int64_t id, Error **errp); 16800b4fbe2SMarcel Apfelbaum int (*kvm_type)(const char *arg); 16900b4fbe2SMarcel Apfelbaum 17000b4fbe2SMarcel Apfelbaum BlockInterfaceType block_default_type; 17116026518SJohn Snow int units_per_default_bus; 17200b4fbe2SMarcel Apfelbaum int max_cpus; 173*72649619SEmilio G. Cota int min_cpus; 174*72649619SEmilio G. Cota int default_cpus; 17500b4fbe2SMarcel Apfelbaum unsigned int no_serial:1, 17600b4fbe2SMarcel Apfelbaum no_parallel:1, 17700b4fbe2SMarcel Apfelbaum use_virtcon:1, 17800b4fbe2SMarcel Apfelbaum use_sclp:1, 17900b4fbe2SMarcel Apfelbaum no_floppy:1, 18000b4fbe2SMarcel Apfelbaum no_cdrom:1, 18133cd52b5SAlexander Graf no_sdcard:1, 18292055797SPaulo Alcantara has_dynamic_sysbus:1, 183bab47d9aSGerd Hoffmann pci_allow_0_address:1, 184bab47d9aSGerd Hoffmann legacy_fw_cfg_order:1; 18500b4fbe2SMarcel Apfelbaum int is_default; 18600b4fbe2SMarcel Apfelbaum const char *default_machine_opts; 18700b4fbe2SMarcel Apfelbaum const char *default_boot_order; 1886f00494aSGerd Hoffmann const char *default_display; 189bacc344cSIgor Mammedov GArray *compat_props; 19000b4fbe2SMarcel Apfelbaum const char *hw_version; 191076b35b5SNikunj A Dadhania ram_addr_t default_ram_size; 1926063d4c0SIgor Mammedov const char *default_cpu_type; 19371ae9e94SEduardo Habkost bool option_rom_has_mr; 19471ae9e94SEduardo Habkost bool rom_file_has_mr; 19520bccb82SPeter Maydell int minimum_page_bits; 196c5514d0eSIgor Mammedov bool has_hotpluggable_cpus; 197ed860129SPeter Maydell bool ignore_memory_transaction_failures; 19855641213SLaurent Vivier int numa_mem_align_shift; 199c9cf636dSAlistair Francis const char **valid_cpu_types; 2003bfe5716SLaurent Vivier void (*numa_auto_assign_ram)(MachineClass *mc, NodeInfo *nodes, 2013bfe5716SLaurent Vivier int nb_nodes, ram_addr_t size); 202b7454548SIgor Mammedov 203b7454548SIgor Mammedov HotplugHandler *(*get_hotplug_handler)(MachineState *machine, 204b7454548SIgor Mammedov DeviceState *dev); 205ea089eebSIgor Mammedov CpuInstanceProperties (*cpu_index_to_instance_props)(MachineState *machine, 206ea089eebSIgor Mammedov unsigned cpu_index); 20780e5db30SIgor Mammedov const CPUArchIdList *(*possible_cpu_arch_ids)(MachineState *machine); 20879e07936SIgor Mammedov int64_t (*get_default_cpu_node_id)(const MachineState *ms, int idx); 20936d20cb2SMarcel Apfelbaum }; 21036d20cb2SMarcel Apfelbaum 21136d20cb2SMarcel Apfelbaum /** 21236d20cb2SMarcel Apfelbaum * MachineState: 21336d20cb2SMarcel Apfelbaum */ 21436d20cb2SMarcel Apfelbaum struct MachineState { 21536d20cb2SMarcel Apfelbaum /*< private >*/ 21636d20cb2SMarcel Apfelbaum Object parent_obj; 21733cd52b5SAlexander Graf Notifier sysbus_notifier; 21833cd52b5SAlexander Graf 21936d20cb2SMarcel Apfelbaum /*< public >*/ 22036d20cb2SMarcel Apfelbaum 22136d20cb2SMarcel Apfelbaum char *accel; 222d8870d02SMarcel Apfelbaum bool kernel_irqchip_allowed; 223d8870d02SMarcel Apfelbaum bool kernel_irqchip_required; 22432c18a2dSMatt Gingell bool kernel_irqchip_split; 22536d20cb2SMarcel Apfelbaum int kvm_shadow_mem; 22636d20cb2SMarcel Apfelbaum char *dtb; 22736d20cb2SMarcel Apfelbaum char *dumpdtb; 22836d20cb2SMarcel Apfelbaum int phandle_start; 22936d20cb2SMarcel Apfelbaum char *dt_compatible; 23036d20cb2SMarcel Apfelbaum bool dump_guest_core; 23136d20cb2SMarcel Apfelbaum bool mem_merge; 23236d20cb2SMarcel Apfelbaum bool usb; 233c6e76503SPaolo Bonzini bool usb_disabled; 23479814179STiejun Chen bool igd_gfx_passthru; 23536d20cb2SMarcel Apfelbaum char *firmware; 236a52a7fdfSLe Tan bool iommu; 2379850c604SAlexander Graf bool suppress_vmdesc; 238902c053dSGreg Kurz bool enforce_config_section; 239cfc58cf3SEduardo Habkost bool enable_graphics; 24036d20cb2SMarcel Apfelbaum 2413ef96221SMarcel Apfelbaum ram_addr_t ram_size; 242c270fb9eSIgor Mammedov ram_addr_t maxram_size; 243c270fb9eSIgor Mammedov uint64_t ram_slots; 2443ef96221SMarcel Apfelbaum const char *boot_order; 2456b1b1440SMarcel Apfelbaum char *kernel_filename; 2466b1b1440SMarcel Apfelbaum char *kernel_cmdline; 2476b1b1440SMarcel Apfelbaum char *initrd_filename; 2483ef96221SMarcel Apfelbaum const char *cpu_model; 2496063d4c0SIgor Mammedov const char *cpu_type; 250ac2da55eSEduardo Habkost AccelState *accelerator; 25138690a1cSIgor Mammedov CPUArchIdList *possible_cpus; 25236d20cb2SMarcel Apfelbaum }; 25336d20cb2SMarcel Apfelbaum 254ed0b6de3SEduardo Habkost #define DEFINE_MACHINE(namestr, machine_initfn) \ 255ed0b6de3SEduardo Habkost static void machine_initfn##_class_init(ObjectClass *oc, void *data) \ 256ed0b6de3SEduardo Habkost { \ 257ed0b6de3SEduardo Habkost MachineClass *mc = MACHINE_CLASS(oc); \ 258ed0b6de3SEduardo Habkost machine_initfn(mc); \ 259ed0b6de3SEduardo Habkost } \ 260ed0b6de3SEduardo Habkost static const TypeInfo machine_initfn##_typeinfo = { \ 261ed0b6de3SEduardo Habkost .name = MACHINE_TYPE_NAME(namestr), \ 262ed0b6de3SEduardo Habkost .parent = TYPE_MACHINE, \ 263ed0b6de3SEduardo Habkost .class_init = machine_initfn##_class_init, \ 264ed0b6de3SEduardo Habkost }; \ 265ed0b6de3SEduardo Habkost static void machine_initfn##_register_types(void) \ 266ed0b6de3SEduardo Habkost { \ 267ed0b6de3SEduardo Habkost type_register_static(&machine_initfn##_typeinfo); \ 268ed0b6de3SEduardo Habkost } \ 2690e6aac87SEduardo Habkost type_init(machine_initfn##_register_types) 270ed0b6de3SEduardo Habkost 271877f8931SDavid Gibson #define SET_MACHINE_COMPAT(m, COMPAT) \ 272877f8931SDavid Gibson do { \ 273bacc344cSIgor Mammedov int i; \ 274877f8931SDavid Gibson static GlobalProperty props[] = { \ 275877f8931SDavid Gibson COMPAT \ 276877f8931SDavid Gibson { /* end of list */ } \ 277877f8931SDavid Gibson }; \ 278bacc344cSIgor Mammedov if (!m->compat_props) { \ 279bacc344cSIgor Mammedov m->compat_props = g_array_new(false, false, sizeof(void *)); \ 280bacc344cSIgor Mammedov } \ 281bacc344cSIgor Mammedov for (i = 0; props[i].driver != NULL; i++) { \ 282bacc344cSIgor Mammedov GlobalProperty *prop = &props[i]; \ 283bacc344cSIgor Mammedov g_array_append_val(m->compat_props, prop); \ 284bacc344cSIgor Mammedov } \ 285877f8931SDavid Gibson } while (0) 286877f8931SDavid Gibson 2870d09e41aSPaolo Bonzini #endif 288