xref: /openbmc/qemu/include/hw/boards.h (revision 503224f4)
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
385bd366b4SPeter Maydell  * be created via memory_region_init_ram().
3909ad6438SPeter Maydell  */
40dfabb8b9SPaolo Bonzini void memory_region_allocate_system_memory(MemoryRegion *mr, Object *owner,
41dfabb8b9SPaolo Bonzini                                           const char *name,
42dfabb8b9SPaolo Bonzini                                           uint64_t ram_size);
43dfabb8b9SPaolo Bonzini 
44dfabb8b9SPaolo Bonzini #define TYPE_MACHINE_SUFFIX "-machine"
45c84a8f01SEduardo Habkost 
46c84a8f01SEduardo Habkost /* Machine class name that needs to be used for class-name-based machine
47c84a8f01SEduardo Habkost  * type lookup to work.
48c84a8f01SEduardo Habkost  */
49c84a8f01SEduardo Habkost #define MACHINE_TYPE_NAME(machinename) (machinename TYPE_MACHINE_SUFFIX)
50c84a8f01SEduardo Habkost 
5136d20cb2SMarcel Apfelbaum #define TYPE_MACHINE "machine"
52c8897e8eSMarcel Apfelbaum #undef MACHINE  /* BSD defines it and QEMU does not use it */
5336d20cb2SMarcel Apfelbaum #define MACHINE(obj) \
5436d20cb2SMarcel Apfelbaum     OBJECT_CHECK(MachineState, (obj), TYPE_MACHINE)
5536d20cb2SMarcel Apfelbaum #define MACHINE_GET_CLASS(obj) \
5636d20cb2SMarcel Apfelbaum     OBJECT_GET_CLASS(MachineClass, (obj), TYPE_MACHINE)
5736d20cb2SMarcel Apfelbaum #define MACHINE_CLASS(klass) \
5836d20cb2SMarcel Apfelbaum     OBJECT_CLASS_CHECK(MachineClass, (klass), TYPE_MACHINE)
5936d20cb2SMarcel Apfelbaum 
600056ae24SMarcel Apfelbaum MachineClass *find_default_machine(void);
610056ae24SMarcel Apfelbaum extern MachineState *current_machine;
620056ae24SMarcel Apfelbaum 
63482dfe9aSIgor Mammedov void machine_run_board_init(MachineState *machine);
645e97b623SMarcel Apfelbaum bool machine_usb(MachineState *machine);
65d8870d02SMarcel Apfelbaum bool machine_kernel_irqchip_allowed(MachineState *machine);
66d8870d02SMarcel Apfelbaum bool machine_kernel_irqchip_required(MachineState *machine);
6732c18a2dSMatt Gingell bool machine_kernel_irqchip_split(MachineState *machine);
684689b77bSMarcel Apfelbaum int machine_kvm_shadow_mem(MachineState *machine);
696cabe7faSMarcel Apfelbaum int machine_phandle_start(MachineState *machine);
7047c8ca53SMarcel Apfelbaum bool machine_dump_guest_core(MachineState *machine);
7175cc7f01SMarcel Apfelbaum bool machine_mem_merge(MachineState *machine);
72f2d672c2SIgor Mammedov HotpluggableCPUList *machine_query_hotpluggable_cpus(MachineState *machine);
737c88e65dSIgor Mammedov void machine_set_cpu_numa_node(MachineState *machine,
747c88e65dSIgor Mammedov                                const CpuInstanceProperties *props,
757c88e65dSIgor Mammedov                                Error **errp);
765e97b623SMarcel Apfelbaum 
770bd1909dSEduardo Habkost void machine_class_allow_dynamic_sysbus_dev(MachineClass *mc, const char *type);
780bd1909dSEduardo Habkost 
790bd1909dSEduardo Habkost 
8036d20cb2SMarcel Apfelbaum /**
813811ef14SIgor Mammedov  * CPUArchId:
823811ef14SIgor Mammedov  * @arch_id - architecture-dependent CPU ID of present or possible CPU
833811ef14SIgor Mammedov  * @cpu - pointer to corresponding CPU object if it's present on NULL otherwise
84d342eb76SIgor Mammedov  * @type - QOM class name of possible @cpu object
85c67ae933SIgor Mammedov  * @props - CPU object properties, initialized by board
86f2d672c2SIgor Mammedov  * #vcpus_count - number of threads provided by @cpu object
873811ef14SIgor Mammedov  */
883811ef14SIgor Mammedov typedef struct {
893811ef14SIgor Mammedov     uint64_t arch_id;
90f2d672c2SIgor Mammedov     int64_t vcpus_count;
91c67ae933SIgor Mammedov     CpuInstanceProperties props;
928aba3842SIgor Mammedov     Object *cpu;
93d342eb76SIgor Mammedov     const char *type;
943811ef14SIgor Mammedov } CPUArchId;
953811ef14SIgor Mammedov 
963811ef14SIgor Mammedov /**
973811ef14SIgor Mammedov  * CPUArchIdList:
983811ef14SIgor Mammedov  * @len - number of @CPUArchId items in @cpus array
993811ef14SIgor Mammedov  * @cpus - array of present or possible CPUs for current machine configuration
1003811ef14SIgor Mammedov  */
1013811ef14SIgor Mammedov typedef struct {
1023811ef14SIgor Mammedov     int len;
1033811ef14SIgor Mammedov     CPUArchId cpus[0];
1043811ef14SIgor Mammedov } CPUArchIdList;
1053811ef14SIgor Mammedov 
1063811ef14SIgor Mammedov /**
10736d20cb2SMarcel Apfelbaum  * MachineClass:
10808fe6824SThomas Huth  * @deprecation_reason: If set, the machine is marked as deprecated. The
10908fe6824SThomas Huth  *    string should provide some clear information about what to use instead.
11072649619SEmilio G. Cota  * @max_cpus: maximum number of CPUs supported. Default: 1
11172649619SEmilio G. Cota  * @min_cpus: minimum number of CPUs supported. Default: 1
11272649619SEmilio G. Cota  * @default_cpus: number of CPUs instantiated if none are specified. Default: 1
113b7454548SIgor Mammedov  * @get_hotplug_handler: this function is called during bus-less
114b7454548SIgor Mammedov  *    device hotplug. If defined it returns pointer to an instance
115b7454548SIgor Mammedov  *    of HotplugHandler object, which handles hotplug operation
116b7454548SIgor Mammedov  *    for a given @dev. It may return NULL if @dev doesn't require
117b7454548SIgor Mammedov  *    any actions to be performed by hotplug handler.
118ea089eebSIgor Mammedov  * @cpu_index_to_instance_props:
119ea089eebSIgor Mammedov  *    used to provide @cpu_index to socket/core/thread number mapping, allowing
120ea089eebSIgor Mammedov  *    legacy code to perform maping from cpu_index to topology properties
121ea089eebSIgor Mammedov  *    Returns: tuple of socket/core/thread ids given cpu_index belongs to.
12257924bcdSIgor Mammedov  *    used to provide @cpu_index to socket number mapping, allowing
12357924bcdSIgor Mammedov  *    a machine to group CPU threads belonging to the same socket/package
12457924bcdSIgor Mammedov  *    Returns: socket number given cpu_index belongs to.
125fac862ffSEduardo Habkost  * @hw_version:
126fac862ffSEduardo Habkost  *    Value of QEMU_VERSION when the machine was added to QEMU.
127fac862ffSEduardo Habkost  *    Set only by old machines because they need to keep
128fac862ffSEduardo Habkost  *    compatibility on code that exposed QEMU_VERSION to guests in
129fac862ffSEduardo Habkost  *    the past (and now use qemu_hw_version()).
1303811ef14SIgor Mammedov  * @possible_cpu_arch_ids:
1313811ef14SIgor Mammedov  *    Returns an array of @CPUArchId architecture-dependent CPU IDs
1323811ef14SIgor Mammedov  *    which includes CPU IDs for present and possible to hotplug CPUs.
1333811ef14SIgor Mammedov  *    Caller is responsible for freeing returned list.
13479e07936SIgor Mammedov  * @get_default_cpu_node_id:
13579e07936SIgor Mammedov  *    returns default board specific node_id value for CPU slot specified by
13679e07936SIgor Mammedov  *    index @idx in @ms->possible_cpus[]
137c5514d0eSIgor Mammedov  * @has_hotpluggable_cpus:
138c5514d0eSIgor Mammedov  *    If true, board supports CPUs creation with -device/device_add.
1396063d4c0SIgor Mammedov  * @default_cpu_type:
1406063d4c0SIgor Mammedov  *    specifies default CPU_TYPE, which will be used for parsing target
1416063d4c0SIgor Mammedov  *    specific features and for creating CPUs if CPU name wasn't provided
1426063d4c0SIgor Mammedov  *    explicitly at CLI
14320bccb82SPeter Maydell  * @minimum_page_bits:
14420bccb82SPeter Maydell  *    If non-zero, the board promises never to create a CPU with a page size
14520bccb82SPeter Maydell  *    smaller than this, so QEMU can use a more efficient larger page
14620bccb82SPeter Maydell  *    size than the target architecture's minimum. (Attempting to create
14720bccb82SPeter Maydell  *    such a CPU will fail.) Note that changing this is a migration
14820bccb82SPeter Maydell  *    compatibility break for the machine.
149ed860129SPeter Maydell  * @ignore_memory_transaction_failures:
150ed860129SPeter Maydell  *    If this is flag is true then the CPU will ignore memory transaction
151ed860129SPeter Maydell  *    failures which should cause the CPU to take an exception due to an
152ed860129SPeter Maydell  *    access to an unassigned physical address; the transaction will instead
153ed860129SPeter Maydell  *    return zero (for a read) or be ignored (for a write). This should be
154ed860129SPeter Maydell  *    set only by legacy board models which rely on the old RAZ/WI behaviour
155ed860129SPeter Maydell  *    for handling devices that QEMU does not yet model. New board models
156ed860129SPeter Maydell  *    should instead use "unimplemented-device" for all memory ranges where
157ed860129SPeter Maydell  *    the guest will attempt to probe for a device that QEMU doesn't
158ed860129SPeter Maydell  *    implement and a stub device is required.
15936d20cb2SMarcel Apfelbaum  */
16036d20cb2SMarcel Apfelbaum struct MachineClass {
16136d20cb2SMarcel Apfelbaum     /*< private >*/
16236d20cb2SMarcel Apfelbaum     ObjectClass parent_class;
16336d20cb2SMarcel Apfelbaum     /*< public >*/
16436d20cb2SMarcel Apfelbaum 
1652709f263SLaszlo Ersek     const char *family; /* NULL iff @name identifies a standalone machtype */
1668ea75371SMarc-André Lureau     char *name;
16700b4fbe2SMarcel Apfelbaum     const char *alias;
16800b4fbe2SMarcel Apfelbaum     const char *desc;
16908fe6824SThomas Huth     const char *deprecation_reason;
17000b4fbe2SMarcel Apfelbaum 
1713ef96221SMarcel Apfelbaum     void (*init)(MachineState *state);
17200b4fbe2SMarcel Apfelbaum     void (*reset)(void);
17300b4fbe2SMarcel Apfelbaum     void (*hot_add_cpu)(const int64_t id, Error **errp);
17400b4fbe2SMarcel Apfelbaum     int (*kvm_type)(const char *arg);
17500b4fbe2SMarcel Apfelbaum 
17600b4fbe2SMarcel Apfelbaum     BlockInterfaceType block_default_type;
17716026518SJohn Snow     int units_per_default_bus;
17800b4fbe2SMarcel Apfelbaum     int max_cpus;
17972649619SEmilio G. Cota     int min_cpus;
18072649619SEmilio G. Cota     int default_cpus;
18100b4fbe2SMarcel Apfelbaum     unsigned int no_serial:1,
18200b4fbe2SMarcel Apfelbaum         no_parallel:1,
18300b4fbe2SMarcel Apfelbaum         use_virtcon:1,
18400b4fbe2SMarcel Apfelbaum         no_floppy:1,
18500b4fbe2SMarcel Apfelbaum         no_cdrom:1,
18633cd52b5SAlexander Graf         no_sdcard:1,
187bab47d9aSGerd Hoffmann         pci_allow_0_address:1,
188bab47d9aSGerd Hoffmann         legacy_fw_cfg_order:1;
18900b4fbe2SMarcel Apfelbaum     int is_default;
19000b4fbe2SMarcel Apfelbaum     const char *default_machine_opts;
19100b4fbe2SMarcel Apfelbaum     const char *default_boot_order;
1926f00494aSGerd Hoffmann     const char *default_display;
193b66bbee3SMarc-André Lureau     GPtrArray *compat_props;
19400b4fbe2SMarcel Apfelbaum     const char *hw_version;
195076b35b5SNikunj A Dadhania     ram_addr_t default_ram_size;
1966063d4c0SIgor Mammedov     const char *default_cpu_type;
197b2fc91dbSPeter Xu     bool default_kernel_irqchip_split;
19871ae9e94SEduardo Habkost     bool option_rom_has_mr;
19971ae9e94SEduardo Habkost     bool rom_file_has_mr;
20020bccb82SPeter Maydell     int minimum_page_bits;
201c5514d0eSIgor Mammedov     bool has_hotpluggable_cpus;
202ed860129SPeter Maydell     bool ignore_memory_transaction_failures;
20355641213SLaurent Vivier     int numa_mem_align_shift;
204c9cf636dSAlistair Francis     const char **valid_cpu_types;
2050bd1909dSEduardo Habkost     strList *allowed_dynamic_sysbus_devices;
2067b8be49dSDou Liyang     bool auto_enable_numa_with_memhp;
2073bfe5716SLaurent Vivier     void (*numa_auto_assign_ram)(MachineClass *mc, NodeInfo *nodes,
2083bfe5716SLaurent Vivier                                  int nb_nodes, ram_addr_t size);
209907aac2fSMark Cave-Ayland     bool ignore_boot_device_suffixes;
210b7454548SIgor Mammedov 
211b7454548SIgor Mammedov     HotplugHandler *(*get_hotplug_handler)(MachineState *machine,
212b7454548SIgor Mammedov                                            DeviceState *dev);
213ea089eebSIgor Mammedov     CpuInstanceProperties (*cpu_index_to_instance_props)(MachineState *machine,
214ea089eebSIgor Mammedov                                                          unsigned cpu_index);
21580e5db30SIgor Mammedov     const CPUArchIdList *(*possible_cpu_arch_ids)(MachineState *machine);
21679e07936SIgor Mammedov     int64_t (*get_default_cpu_node_id)(const MachineState *ms, int idx);
21736d20cb2SMarcel Apfelbaum };
21836d20cb2SMarcel Apfelbaum 
21936d20cb2SMarcel Apfelbaum /**
220e017da37SDavid Hildenbrand  * DeviceMemoryState:
221b0c14ec4SDavid Hildenbrand  * @base: address in guest physical address space where the memory
222b0c14ec4SDavid Hildenbrand  * address space for memory devices starts
223b0c14ec4SDavid Hildenbrand  * @mr: address space container for memory devices
224b0c14ec4SDavid Hildenbrand  */
225e017da37SDavid Hildenbrand typedef struct DeviceMemoryState {
226b0c14ec4SDavid Hildenbrand     hwaddr base;
227b0c14ec4SDavid Hildenbrand     MemoryRegion mr;
228e017da37SDavid Hildenbrand } DeviceMemoryState;
229b0c14ec4SDavid Hildenbrand 
230b0c14ec4SDavid Hildenbrand /**
23136d20cb2SMarcel Apfelbaum  * MachineState:
23236d20cb2SMarcel Apfelbaum  */
23336d20cb2SMarcel Apfelbaum struct MachineState {
23436d20cb2SMarcel Apfelbaum     /*< private >*/
23536d20cb2SMarcel Apfelbaum     Object parent_obj;
23633cd52b5SAlexander Graf     Notifier sysbus_notifier;
23733cd52b5SAlexander Graf 
23836d20cb2SMarcel Apfelbaum     /*< public >*/
23936d20cb2SMarcel Apfelbaum 
24036d20cb2SMarcel Apfelbaum     char *accel;
241d8870d02SMarcel Apfelbaum     bool kernel_irqchip_allowed;
242d8870d02SMarcel Apfelbaum     bool kernel_irqchip_required;
24332c18a2dSMatt Gingell     bool kernel_irqchip_split;
24436d20cb2SMarcel Apfelbaum     int kvm_shadow_mem;
24536d20cb2SMarcel Apfelbaum     char *dtb;
24636d20cb2SMarcel Apfelbaum     char *dumpdtb;
24736d20cb2SMarcel Apfelbaum     int phandle_start;
24836d20cb2SMarcel Apfelbaum     char *dt_compatible;
24936d20cb2SMarcel Apfelbaum     bool dump_guest_core;
25036d20cb2SMarcel Apfelbaum     bool mem_merge;
25136d20cb2SMarcel Apfelbaum     bool usb;
252c6e76503SPaolo Bonzini     bool usb_disabled;
25379814179STiejun Chen     bool igd_gfx_passthru;
25436d20cb2SMarcel Apfelbaum     char *firmware;
255a52a7fdfSLe Tan     bool iommu;
2569850c604SAlexander Graf     bool suppress_vmdesc;
257902c053dSGreg Kurz     bool enforce_config_section;
258cfc58cf3SEduardo Habkost     bool enable_graphics;
259db588194SBrijesh Singh     char *memory_encryption;
260e017da37SDavid Hildenbrand     DeviceMemoryState *device_memory;
26136d20cb2SMarcel Apfelbaum 
2623ef96221SMarcel Apfelbaum     ram_addr_t ram_size;
263c270fb9eSIgor Mammedov     ram_addr_t maxram_size;
264c270fb9eSIgor Mammedov     uint64_t   ram_slots;
2653ef96221SMarcel Apfelbaum     const char *boot_order;
2666b1b1440SMarcel Apfelbaum     char *kernel_filename;
2676b1b1440SMarcel Apfelbaum     char *kernel_cmdline;
2686b1b1440SMarcel Apfelbaum     char *initrd_filename;
2696063d4c0SIgor Mammedov     const char *cpu_type;
270ac2da55eSEduardo Habkost     AccelState *accelerator;
27138690a1cSIgor Mammedov     CPUArchIdList *possible_cpus;
27236d20cb2SMarcel Apfelbaum };
27336d20cb2SMarcel Apfelbaum 
274ed0b6de3SEduardo Habkost #define DEFINE_MACHINE(namestr, machine_initfn) \
275ed0b6de3SEduardo Habkost     static void machine_initfn##_class_init(ObjectClass *oc, void *data) \
276ed0b6de3SEduardo Habkost     { \
277ed0b6de3SEduardo Habkost         MachineClass *mc = MACHINE_CLASS(oc); \
278ed0b6de3SEduardo Habkost         machine_initfn(mc); \
279ed0b6de3SEduardo Habkost     } \
280ed0b6de3SEduardo Habkost     static const TypeInfo machine_initfn##_typeinfo = { \
281ed0b6de3SEduardo Habkost         .name       = MACHINE_TYPE_NAME(namestr), \
282ed0b6de3SEduardo Habkost         .parent     = TYPE_MACHINE, \
283ed0b6de3SEduardo Habkost         .class_init = machine_initfn##_class_init, \
284ed0b6de3SEduardo Habkost     }; \
285ed0b6de3SEduardo Habkost     static void machine_initfn##_register_types(void) \
286ed0b6de3SEduardo Habkost     { \
287ed0b6de3SEduardo Habkost         type_register_static(&machine_initfn##_typeinfo); \
288ed0b6de3SEduardo Habkost     } \
2890e6aac87SEduardo Habkost     type_init(machine_initfn##_register_types)
290ed0b6de3SEduardo Habkost 
291abd93cc7SMarc-André Lureau extern GlobalProperty hw_compat_3_1[];
292abd93cc7SMarc-André Lureau extern const size_t hw_compat_3_1_len;
293abd93cc7SMarc-André Lureau 
294ddb3235dSMarc-André Lureau extern GlobalProperty hw_compat_3_0[];
295ddb3235dSMarc-André Lureau extern const size_t hw_compat_3_0_len;
296ddb3235dSMarc-André Lureau 
2970d47310bSMarc-André Lureau extern GlobalProperty hw_compat_2_12[];
2980d47310bSMarc-André Lureau extern const size_t hw_compat_2_12_len;
2990d47310bSMarc-André Lureau 
30043df70a9SMarc-André Lureau extern GlobalProperty hw_compat_2_11[];
30143df70a9SMarc-André Lureau extern const size_t hw_compat_2_11_len;
30243df70a9SMarc-André Lureau 
303*503224f4SMarc-André Lureau extern GlobalProperty hw_compat_2_10[];
304*503224f4SMarc-André Lureau extern const size_t hw_compat_2_10_len;
305*503224f4SMarc-André Lureau 
3060d09e41aSPaolo Bonzini #endif
307