boards.h 4.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 "qemu/typedefs.h"
7
#include "sysemu/blockdev.h"
8
#include "sysemu/accel.h"
9
#include "hw/qdev.h"
10
#include "qom/object.h"
11

12

13
typedef void QEMUMachineInitFunc(MachineState *ms);
P
pbrook 已提交
14

15 16
typedef void QEMUMachineResetFunc(void);

17 18
typedef void QEMUMachineHotAddCPUFunc(const int64_t id, Error **errp);

19 20
typedef int QEMUMachineGetKvmtypeFunc(const char *arg);

21
struct QEMUMachine {
22
    const char *family; /* NULL iff @name identifies a standalone machtype */
P
pbrook 已提交
23
    const char *name;
M
Mark McLoughlin 已提交
24
    const char *alias;
P
pbrook 已提交
25 26
    const char *desc;
    QEMUMachineInitFunc *init;
27
    QEMUMachineResetFunc *reset;
28
    QEMUMachineHotAddCPUFunc *hot_add_cpu;
29
    QEMUMachineGetKvmtypeFunc *kvm_type;
30
    BlockInterfaceType block_default_type;
31
    int units_per_default_bus;
32
    int max_cpus;
33
    unsigned int no_serial:1,
34 35
        no_parallel:1,
        use_virtcon:1,
36
        use_sclp:1,
G
Gerd Hoffmann 已提交
37 38
        no_floppy:1,
        no_cdrom:1,
39 40
        no_sdcard:1,
        has_dynamic_sysbus:1;
41
    int is_default;
42
    const char *default_machine_opts;
43
    const char *default_boot_order;
44
    const char *default_display;
45
    GlobalProperty *compat_props;
46
    const char *hw_version;
47
};
P
pbrook 已提交
48

49 50 51 52
void memory_region_allocate_system_memory(MemoryRegion *mr, Object *owner,
                                          const char *name,
                                          uint64_t ram_size);

P
pbrook 已提交
53
int qemu_register_machine(QEMUMachine *m);
54

55
#define TYPE_MACHINE_SUFFIX "-machine"
56
#define TYPE_MACHINE "machine"
57
#undef MACHINE  /* BSD defines it and QEMU does not use it */
58 59 60 61 62 63 64
#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)

65 66 67
MachineClass *find_default_machine(void);
extern MachineState *current_machine;

68
bool machine_usb(MachineState *machine);
69
bool machine_iommu(MachineState *machine);
70

71 72 73
/**
 * MachineClass:
 * @qemu_machine: #QEMUMachine
74 75 76 77 78
 * @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.
79 80 81 82 83 84
 */
struct MachineClass {
    /*< private >*/
    ObjectClass parent_class;
    /*< public >*/

85
    const char *family; /* NULL iff @name identifies a standalone machtype */
86 87 88 89
    const char *name;
    const char *alias;
    const char *desc;

90
    void (*init)(MachineState *state);
91 92 93 94 95
    void (*reset)(void);
    void (*hot_add_cpu)(const int64_t id, Error **errp);
    int (*kvm_type)(const char *arg);

    BlockInterfaceType block_default_type;
96
    int units_per_default_bus;
97 98 99 100 101 102 103
    int max_cpus;
    unsigned int no_serial:1,
        no_parallel:1,
        use_virtcon:1,
        use_sclp:1,
        no_floppy:1,
        no_cdrom:1,
104 105
        no_sdcard:1,
        has_dynamic_sysbus:1;
106 107 108
    int is_default;
    const char *default_machine_opts;
    const char *default_boot_order;
109
    const char *default_display;
110 111
    GlobalProperty *compat_props;
    const char *hw_version;
112 113 114

    HotplugHandler *(*get_hotplug_handler)(MachineState *machine,
                                           DeviceState *dev);
115 116 117 118 119 120 121 122
};

/**
 * MachineState:
 */
struct MachineState {
    /*< private >*/
    Object parent_obj;
123 124
    Notifier sysbus_notifier;

125 126 127 128 129 130 131 132 133 134 135 136 137
    /*< public >*/

    char *accel;
    bool kernel_irqchip;
    int kvm_shadow_mem;
    char *dtb;
    char *dumpdtb;
    int phandle_start;
    char *dt_compatible;
    bool dump_guest_core;
    bool mem_merge;
    bool usb;
    char *firmware;
138
    bool iommu;
139

140
    ram_addr_t ram_size;
141 142
    ram_addr_t maxram_size;
    uint64_t   ram_slots;
143
    const char *boot_order;
144 145 146
    char *kernel_filename;
    char *kernel_cmdline;
    char *initrd_filename;
147
    const char *cpu_model;
148
    AccelState *accelerator;
149 150
};

P
pbrook 已提交
151
#endif