boards.h 2.8 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 13 14
typedef struct MachineState MachineState;

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

16 17
typedef void QEMUMachineResetFunc(void);

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

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

22
struct QEMUMachine {
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 max_cpus;
32
    unsigned int no_serial:1,
33 34
        no_parallel:1,
        use_virtcon:1,
35
        use_sclp:1,
G
Gerd Hoffmann 已提交
36 37 38
        no_floppy:1,
        no_cdrom:1,
        no_sdcard:1;
39
    int is_default;
40
    const char *default_machine_opts;
41
    const char *default_boot_order;
42
    GlobalProperty *compat_props;
43
    const char *hw_version;
44
};
P
pbrook 已提交
45

46
#define TYPE_MACHINE_SUFFIX "-machine"
P
pbrook 已提交
47
int qemu_register_machine(QEMUMachine *m);
48

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

58 59 60
MachineClass *find_default_machine(void);
extern MachineState *current_machine;

61 62 63 64 65 66 67 68 69
/**
 * MachineClass:
 * @qemu_machine: #QEMUMachine
 */
struct MachineClass {
    /*< private >*/
    ObjectClass parent_class;
    /*< public >*/

70 71 72 73
    const char *name;
    const char *alias;
    const char *desc;

74
    void (*init)(MachineState *state);
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
    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;
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
};

/**
 * 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;

115 116
    ram_addr_t ram_size;
    const char *boot_order;
117 118 119
    char *kernel_filename;
    char *kernel_cmdline;
    char *initrd_filename;
120
    const char *cpu_model;
121 122
};

P
pbrook 已提交
123
#endif