boards.h 3.5 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 "hw/qdev.h"
9
#include "qom/object.h"
10

11

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

14 15
typedef void QEMUMachineResetFunc(void);

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

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

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

44 45 46 47
void memory_region_allocate_system_memory(MemoryRegion *mr, Object *owner,
                                          const char *name,
                                          uint64_t ram_size);

P
pbrook 已提交
48
int qemu_register_machine(QEMUMachine *m);
49

50
#define TYPE_MACHINE_SUFFIX "-machine"
51
#define TYPE_MACHINE "machine"
52
#undef MACHINE  /* BSD defines it and QEMU does not use it */
53 54 55 56 57 58 59
#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)

60 61 62
MachineClass *find_default_machine(void);
extern MachineState *current_machine;

63 64 65
/**
 * MachineClass:
 * @qemu_machine: #QEMUMachine
66 67 68 69 70
 * @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.
71 72 73 74 75 76
 */
struct MachineClass {
    /*< private >*/
    ObjectClass parent_class;
    /*< public >*/

77 78 79 80
    const char *name;
    const char *alias;
    const char *desc;

81
    void (*init)(MachineState *state);
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
    void (*reset)(void);
    void (*hot_add_cpu)(const int64_t id, Error **errp);
    int (*kvm_type)(const char *arg);

    BlockInterfaceType block_default_type;
    int max_cpus;
    unsigned int no_serial:1,
        no_parallel:1,
        use_virtcon:1,
        use_sclp:1,
        no_floppy:1,
        no_cdrom:1,
        no_sdcard:1;
    int is_default;
    const char *default_machine_opts;
    const char *default_boot_order;
    GlobalProperty *compat_props;
    const char *hw_version;
100 101 102

    HotplugHandler *(*get_hotplug_handler)(MachineState *machine,
                                           DeviceState *dev);
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
};

/**
 * MachineState:
 */
struct MachineState {
    /*< private >*/
    Object parent_obj;
    /*< 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;
124
    bool iommu;
125

126
    ram_addr_t ram_size;
127 128
    ram_addr_t maxram_size;
    uint64_t   ram_slots;
129
    const char *boot_order;
130 131 132
    char *kernel_filename;
    char *kernel_cmdline;
    char *initrd_filename;
133
    const char *cpu_model;
134 135
};

P
pbrook 已提交
136
#endif