boards.h 7.0 KB
Newer Older
P
pbrook 已提交
1 2 3 4 5
/* Declarations for use by board files for creating devices.  */

#ifndef HW_BOARDS_H
#define HW_BOARDS_H

6
#include "sysemu/blockdev.h"
7
#include "sysemu/accel.h"
8
#include "hw/qdev.h"
9
#include "qom/object.h"
10
#include "qom/cpu.h"
11

12 13 14 15 16
void memory_region_allocate_system_memory(MemoryRegion *mr, Object *owner,
                                          const char *name,
                                          uint64_t ram_size);

#define TYPE_MACHINE_SUFFIX "-machine"
17 18 19 20 21 22

/* Machine class name that needs to be used for class-name-based machine
 * type lookup to work.
 */
#define MACHINE_TYPE_NAME(machinename) (machinename TYPE_MACHINE_SUFFIX)

23
#define TYPE_MACHINE "machine"
24
#undef MACHINE  /* BSD defines it and QEMU does not use it */
25 26 27 28 29 30 31
#define MACHINE(obj) \
    OBJECT_CHECK(MachineState, (obj), TYPE_MACHINE)
#define MACHINE_GET_CLASS(obj) \
    OBJECT_GET_CLASS(MachineClass, (obj), TYPE_MACHINE)
#define MACHINE_CLASS(klass) \
    OBJECT_CLASS_CHECK(MachineClass, (klass), TYPE_MACHINE)

32 33 34
MachineClass *find_default_machine(void);
extern MachineState *current_machine;

35
bool machine_usb(MachineState *machine);
36 37
bool machine_kernel_irqchip_allowed(MachineState *machine);
bool machine_kernel_irqchip_required(MachineState *machine);
38
bool machine_kernel_irqchip_split(MachineState *machine);
39
int machine_kvm_shadow_mem(MachineState *machine);
40
int machine_phandle_start(MachineState *machine);
41
bool machine_dump_guest_core(MachineState *machine);
42
bool machine_mem_merge(MachineState *machine);
43
void machine_register_compat_props(MachineState *machine);
44

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
/**
 * CPUArchId:
 * @arch_id - architecture-dependent CPU ID of present or possible CPU
 * @cpu - pointer to corresponding CPU object if it's present on NULL otherwise
 */
typedef struct {
    uint64_t arch_id;
    struct CPUState *cpu;
} CPUArchId;

/**
 * CPUArchIdList:
 * @len - number of @CPUArchId items in @cpus array
 * @cpus - array of present or possible CPUs for current machine configuration
 */
typedef struct {
    int len;
    CPUArchId cpus[0];
} CPUArchIdList;

65 66
/**
 * MachineClass:
67 68 69 70 71
 * @get_hotplug_handler: this function is called during bus-less
 *    device hotplug. If defined it returns pointer to an instance
 *    of HotplugHandler object, which handles hotplug operation
 *    for a given @dev. It may return NULL if @dev doesn't require
 *    any actions to be performed by hotplug handler.
72 73 74 75
 * @cpu_index_to_socket_id:
 *    used to provide @cpu_index to socket number mapping, allowing
 *    a machine to group CPU threads belonging to the same socket/package
 *    Returns: socket number given cpu_index belongs to.
76 77 78 79 80
 * @hw_version:
 *    Value of QEMU_VERSION when the machine was added to QEMU.
 *    Set only by old machines because they need to keep
 *    compatibility on code that exposed QEMU_VERSION to guests in
 *    the past (and now use qemu_hw_version()).
81 82 83 84
 * @possible_cpu_arch_ids:
 *    Returns an array of @CPUArchId architecture-dependent CPU IDs
 *    which includes CPU IDs for present and possible to hotplug CPUs.
 *    Caller is responsible for freeing returned list.
I
Igor Mammedov 已提交
85 86 87 88
 * @query_hotpluggable_cpus:
 *    Returns a @HotpluggableCPUList, which describes CPUs objects which
 *    could be added with -device/device_add.
 *    Caller is responsible for freeing returned list.
89 90 91 92 93 94
 * @minimum_page_bits:
 *    If non-zero, the board promises never to create a CPU with a page size
 *    smaller than this, so QEMU can use a more efficient larger page
 *    size than the target architecture's minimum. (Attempting to create
 *    such a CPU will fail.) Note that changing this is a migration
 *    compatibility break for the machine.
95 96 97 98 99 100
 */
struct MachineClass {
    /*< private >*/
    ObjectClass parent_class;
    /*< public >*/

101
    const char *family; /* NULL iff @name identifies a standalone machtype */
102
    char *name;
103 104 105
    const char *alias;
    const char *desc;

106
    void (*init)(MachineState *state);
107 108 109 110 111
    void (*reset)(void);
    void (*hot_add_cpu)(const int64_t id, Error **errp);
    int (*kvm_type)(const char *arg);

    BlockInterfaceType block_default_type;
112
    int units_per_default_bus;
113 114 115 116 117 118 119
    int max_cpus;
    unsigned int no_serial:1,
        no_parallel:1,
        use_virtcon:1,
        use_sclp:1,
        no_floppy:1,
        no_cdrom:1,
120
        no_sdcard:1,
121
        has_dynamic_sysbus:1,
G
Gerd Hoffmann 已提交
122 123
        pci_allow_0_address:1,
        legacy_fw_cfg_order:1;
124 125 126
    int is_default;
    const char *default_machine_opts;
    const char *default_boot_order;
127
    const char *default_display;
128
    GArray *compat_props;
129
    const char *hw_version;
130
    ram_addr_t default_ram_size;
131 132
    bool option_rom_has_mr;
    bool rom_file_has_mr;
133
    int minimum_page_bits;
134 135 136

    HotplugHandler *(*get_hotplug_handler)(MachineState *machine,
                                           DeviceState *dev);
137
    unsigned (*cpu_index_to_socket_id)(unsigned cpu_index);
138
    CPUArchIdList *(*possible_cpu_arch_ids)(MachineState *machine);
I
Igor Mammedov 已提交
139
    HotpluggableCPUList *(*query_hotpluggable_cpus)(MachineState *machine);
140 141 142 143 144 145 146 147
};

/**
 * MachineState:
 */
struct MachineState {
    /*< private >*/
    Object parent_obj;
148 149
    Notifier sysbus_notifier;

150 151 152
    /*< public >*/

    char *accel;
153 154
    bool kernel_irqchip_allowed;
    bool kernel_irqchip_required;
155
    bool kernel_irqchip_split;
156 157 158 159 160 161 162 163
    int kvm_shadow_mem;
    char *dtb;
    char *dumpdtb;
    int phandle_start;
    char *dt_compatible;
    bool dump_guest_core;
    bool mem_merge;
    bool usb;
164
    bool usb_disabled;
165
    bool igd_gfx_passthru;
166
    char *firmware;
167
    bool iommu;
168
    bool suppress_vmdesc;
169
    bool enforce_config_section;
170
    bool enable_graphics;
171

172
    ram_addr_t ram_size;
173 174
    ram_addr_t maxram_size;
    uint64_t   ram_slots;
175
    const char *boot_order;
176 177 178
    char *kernel_filename;
    char *kernel_cmdline;
    char *initrd_filename;
179
    const char *cpu_model;
180
    AccelState *accelerator;
181 182
};

183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
#define DEFINE_MACHINE(namestr, machine_initfn) \
    static void machine_initfn##_class_init(ObjectClass *oc, void *data) \
    { \
        MachineClass *mc = MACHINE_CLASS(oc); \
        machine_initfn(mc); \
    } \
    static const TypeInfo machine_initfn##_typeinfo = { \
        .name       = MACHINE_TYPE_NAME(namestr), \
        .parent     = TYPE_MACHINE, \
        .class_init = machine_initfn##_class_init, \
    }; \
    static void machine_initfn##_register_types(void) \
    { \
        type_register_static(&machine_initfn##_typeinfo); \
    } \
198
    type_init(machine_initfn##_register_types)
199

200 201
#define SET_MACHINE_COMPAT(m, COMPAT) \
    do {                              \
202
        int i;                        \
203 204 205 206
        static GlobalProperty props[] = {       \
            COMPAT                              \
            { /* end of list */ }               \
        };                                      \
207 208 209 210 211 212 213
        if (!m->compat_props) { \
            m->compat_props = g_array_new(false, false, sizeof(void *)); \
        } \
        for (i = 0; props[i].driver != NULL; i++) {    \
            GlobalProperty *prop = &props[i];          \
            g_array_append_val(m->compat_props, prop); \
        }                                              \
214 215
    } while (0)

P
pbrook 已提交
216
#endif