ppc/xive: Add support for PQ state bits offload
[qemu.git] / include / hw / misc / virt_ctrl.h
blob25a237e51874d2ffd77dafabc451bcf9f8159a4d
1 /*
2 * SPDX-License-Identifier: GPL-2.0-or-later
4 * Virt system Controller
5 */
7 #ifndef VIRT_CTRL_H
8 #define VIRT_CTRL_H
10 #define TYPE_VIRT_CTRL "virt-ctrl"
11 OBJECT_DECLARE_SIMPLE_TYPE(VirtCtrlState, VIRT_CTRL)
13 struct VirtCtrlState {
14 SysBusDevice parent_obj;
16 MemoryRegion iomem;
17 qemu_irq irq;
19 uint32_t irq_enabled;
22 #endif