xref: /qemu/include/hw/loongarch/virt.h (revision 58ee60d2d29437d1ddb02640a12a3f028307594c)
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 #include "hw/block/flash.h"
16 #include "hw/loongarch/boot.h"
17 
18 #define LOONGARCH_MAX_CPUS      256
19 
20 #define VIRT_FWCFG_BASE         0x1e020000UL
21 #define VIRT_BIOS_BASE          0x1c000000UL
22 #define VIRT_BIOS_SIZE          (16 * MiB)
23 #define VIRT_FLASH_SECTOR_SIZE  (128 * KiB)
24 #define VIRT_FLASH0_BASE        VIRT_BIOS_BASE
25 #define VIRT_FLASH0_SIZE        VIRT_BIOS_SIZE
26 #define VIRT_FLASH1_BASE        0x1d000000UL
27 #define VIRT_FLASH1_SIZE        (16 * MiB)
28 
29 #define VIRT_LOWMEM_BASE        0
30 #define VIRT_LOWMEM_SIZE        0x10000000
31 #define VIRT_HIGHMEM_BASE       0x80000000
32 #define VIRT_GED_EVT_ADDR       0x100e0000
33 #define VIRT_GED_MEM_ADDR       (VIRT_GED_EVT_ADDR + ACPI_GED_EVT_SEL_LEN)
34 #define VIRT_GED_REG_ADDR       (VIRT_GED_MEM_ADDR + MEMORY_HOTPLUG_IO_LEN)
35 
36 #define COMMAND_LINE_SIZE       512
37 
38 struct LoongArchMachineState {
39     /*< private >*/
40     MachineState parent_obj;
41 
42     MemoryRegion lowmem;
43     MemoryRegion highmem;
44     MemoryRegion bios;
45     bool         bios_loaded;
46     /* State for other subsystems/APIs: */
47     FWCfgState  *fw_cfg;
48     Notifier     machine_done;
49     Notifier     powerdown_notifier;
50     OnOffAuto    acpi;
51     char         *oem_id;
52     char         *oem_table_id;
53     DeviceState  *acpi_ged;
54     int          fdt_size;
55     DeviceState *platform_bus_dev;
56     PCIBus       *pci_bus;
57     PFlashCFI01  *flash[2];
58     MemoryRegion system_iocsr;
59     MemoryRegion iocsr_mem;
60     AddressSpace as_iocsr;
61     struct loongarch_boot_info bootinfo;
62 };
63 
64 #define TYPE_LOONGARCH_MACHINE  MACHINE_TYPE_NAME("virt")
65 OBJECT_DECLARE_SIMPLE_TYPE(LoongArchMachineState, LOONGARCH_MACHINE)
66 bool loongarch_is_acpi_enabled(LoongArchMachineState *lams);
67 void loongarch_acpi_setup(LoongArchMachineState *lams);
68 #endif
69