boards.h 2.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 "sysemu/blockdev.h"
7
#include "sysemu/qemumachine.h"
8
#include "hw/qdev.h"
9
#include "qom/object.h"
10

11
typedef struct QEMUMachineInitArgs {
12
    const QEMUMachine *machine;
13
    ram_addr_t ram_size;
14
    const char *boot_order;
15 16 17 18 19 20 21
    const char *kernel_filename;
    const char *kernel_cmdline;
    const char *initrd_filename;
    const char *cpu_model;
} QEMUMachineInitArgs;

typedef void QEMUMachineInitFunc(QEMUMachineInitArgs *args);
P
pbrook 已提交
22

23 24
typedef void QEMUMachineResetFunc(void);

25 26
typedef void QEMUMachineHotAddCPUFunc(const int64_t id, Error **errp);

27 28
typedef int QEMUMachineGetKvmtypeFunc(const char *arg);

29
struct QEMUMachine {
P
pbrook 已提交
30
    const char *name;
M
Mark McLoughlin 已提交
31
    const char *alias;
P
pbrook 已提交
32 33
    const char *desc;
    QEMUMachineInitFunc *init;
34
    QEMUMachineResetFunc *reset;
35
    QEMUMachineHotAddCPUFunc *hot_add_cpu;
36
    QEMUMachineGetKvmtypeFunc *kvm_type;
37
    BlockInterfaceType block_default_type;
38
    int max_cpus;
39
    unsigned int no_serial:1,
40 41
        no_parallel:1,
        use_virtcon:1,
42
        use_sclp:1,
G
Gerd Hoffmann 已提交
43 44 45
        no_floppy:1,
        no_cdrom:1,
        no_sdcard:1;
46
    int is_default;
47
    const char *default_machine_opts;
48
    const char *default_boot_order;
49
    GlobalProperty *compat_props;
P
pbrook 已提交
50
    struct QEMUMachine *next;
51
    const char *hw_version;
52
};
P
pbrook 已提交
53

54
#define TYPE_MACHINE_SUFFIX "-machine"
P
pbrook 已提交
55
int qemu_register_machine(QEMUMachine *m);
56
QEMUMachine *find_default_machine(void);
P
pbrook 已提交
57

58 59
extern QEMUMachine *current_machine;

60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
#define TYPE_MACHINE "machine"
#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)

typedef struct MachineState MachineState;
typedef struct MachineClass MachineClass;

/**
 * MachineClass:
 * @qemu_machine: #QEMUMachine
 */
struct MachineClass {
    /*< private >*/
    ObjectClass parent_class;
    /*< public >*/

    QEMUMachine *qemu_machine;
};

/**
 * MachineState:
 */
struct MachineState {
    /*< private >*/
    Object parent_obj;
    /*< public >*/

    char *accel;
    bool kernel_irqchip;
    int kvm_shadow_mem;
    char *kernel;
    char *initrd;
    char *append;
    char *dtb;
    char *dumpdtb;
    int phandle_start;
    char *dt_compatible;
    bool dump_guest_core;
    bool mem_merge;
    bool usb;
    char *firmware;

    QEMUMachineInitArgs init_args;
};

P
pbrook 已提交
109
#endif