These changes are the raw update to qemu-2.6.
[kvmfornfv.git] / qemu / include / hw / arm / virt-acpi-build.h
1 /*
2  *
3  * Copyright (c) 2015 HUAWEI TECHNOLOGIES CO.,LTD.
4  *
5  * Author: Shannon Zhao <zhaoshenglong@huawei.com>
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms and conditions of the GNU General Public License,
9  * version 2 or later, as published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
14  * more details.
15  *
16  * You should have received a copy of the GNU General Public License along with
17  * this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef QEMU_VIRT_ACPI_BUILD_H
21 #define QEMU_VIRT_ACPI_BUILD_H
22
23 #include "qemu-common.h"
24 #include "hw/arm/virt.h"
25
26 #define ACPI_GICC_ENABLED 1
27
28 typedef struct VirtGuestInfo {
29     int smp_cpus;
30     FWCfgState *fw_cfg;
31     const MemMapEntry *memmap;
32     const int *irqmap;
33     bool use_highmem;
34     int gic_version;
35 } VirtGuestInfo;
36
37
38 typedef struct VirtGuestInfoState {
39     VirtGuestInfo info;
40     Notifier machine_done;
41 } VirtGuestInfoState;
42
43 void virt_acpi_setup(VirtGuestInfo *guest_info);
44
45 #endif