hw/loongarch: Add LoongArch ipi interrupt support(IPI)
[qemu.git] / include / hw / loongarch / virt.h
blob09a816191caf89f572908b96271c9a706d41c8e4
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3 * Definitions for loongarch board emulation.
5 * Copyright (C) 2021 Loongson Technology Corporation Limited
6 */
8 #ifndef HW_LOONGARCH_H
9 #define HW_LOONGARCH_H
11 #include "target/loongarch/cpu.h"
12 #include "hw/boards.h"
13 #include "qemu/queue.h"
14 #include "hw/intc/loongarch_ipi.h"
16 #define LOONGARCH_MAX_VCPUS 4
18 #define LOONGARCH_ISA_IO_BASE 0x18000000UL
19 #define LOONGARCH_ISA_IO_SIZE 0x0004000
21 struct LoongArchMachineState {
22 /*< private >*/
23 MachineState parent_obj;
25 IPICore ipi_core[MAX_IPI_CORE_NUM];
26 MemoryRegion lowmem;
27 MemoryRegion highmem;
28 MemoryRegion isa_io;
31 #define TYPE_LOONGARCH_MACHINE MACHINE_TYPE_NAME("virt")
32 OBJECT_DECLARE_SIMPLE_TYPE(LoongArchMachineState, LOONGARCH_MACHINE)
33 #endif