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