2022-06-06 15:43:20 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/*
|
|
|
|
* Definitions for loongarch board emulation.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2021 Loongson Technology Corporation Limited
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HW_LOONGARCH_H
|
|
|
|
#define HW_LOONGARCH_H
|
|
|
|
|
|
|
|
#include "target/loongarch/cpu.h"
|
|
|
|
#include "hw/boards.h"
|
|
|
|
#include "qemu/queue.h"
|
2022-06-06 15:43:21 +03:00
|
|
|
#include "hw/intc/loongarch_ipi.h"
|
2022-11-07 05:09:47 +03:00
|
|
|
#include "hw/block/flash.h"
|
2024-04-26 12:15:35 +03:00
|
|
|
#include "hw/loongarch/boot.h"
|
2022-06-06 15:43:20 +03:00
|
|
|
|
2023-04-06 10:25:28 +03:00
|
|
|
#define LOONGARCH_MAX_CPUS 256
|
2022-06-06 15:43:20 +03:00
|
|
|
|
2022-07-12 11:32:01 +03:00
|
|
|
#define VIRT_FWCFG_BASE 0x1e020000UL
|
2022-07-12 11:32:02 +03:00
|
|
|
#define VIRT_BIOS_BASE 0x1c000000UL
|
2024-02-19 13:34:14 +03:00
|
|
|
#define VIRT_BIOS_SIZE (16 * MiB)
|
2022-11-07 05:09:47 +03:00
|
|
|
#define VIRT_FLASH_SECTOR_SIZE (128 * KiB)
|
2024-02-19 13:34:14 +03:00
|
|
|
#define VIRT_FLASH0_BASE VIRT_BIOS_BASE
|
|
|
|
#define VIRT_FLASH0_SIZE VIRT_BIOS_SIZE
|
|
|
|
#define VIRT_FLASH1_BASE 0x1d000000UL
|
|
|
|
#define VIRT_FLASH1_SIZE (16 * MiB)
|
2022-06-06 15:43:20 +03:00
|
|
|
|
2022-07-12 11:32:05 +03:00
|
|
|
#define VIRT_LOWMEM_BASE 0
|
|
|
|
#define VIRT_LOWMEM_SIZE 0x10000000
|
2023-11-27 07:02:31 +03:00
|
|
|
#define VIRT_HIGHMEM_BASE 0x80000000
|
2022-07-12 11:32:05 +03:00
|
|
|
#define VIRT_GED_EVT_ADDR 0x100e0000
|
|
|
|
#define VIRT_GED_MEM_ADDR (VIRT_GED_EVT_ADDR + ACPI_GED_EVT_SEL_LEN)
|
|
|
|
#define VIRT_GED_REG_ADDR (VIRT_GED_MEM_ADDR + MEMORY_HOTPLUG_IO_LEN)
|
|
|
|
|
2024-04-26 12:15:38 +03:00
|
|
|
#define COMMAND_LINE_SIZE 512
|
|
|
|
|
2024-04-26 12:15:42 +03:00
|
|
|
#define FDT_BASE 0x100000
|
|
|
|
|
2022-06-06 15:43:20 +03:00
|
|
|
struct LoongArchMachineState {
|
|
|
|
/*< private >*/
|
|
|
|
MachineState parent_obj;
|
|
|
|
|
|
|
|
MemoryRegion lowmem;
|
|
|
|
MemoryRegion highmem;
|
2022-07-12 11:32:02 +03:00
|
|
|
MemoryRegion bios;
|
|
|
|
bool bios_loaded;
|
2022-07-12 11:32:01 +03:00
|
|
|
/* State for other subsystems/APIs: */
|
|
|
|
FWCfgState *fw_cfg;
|
2022-07-12 11:32:04 +03:00
|
|
|
Notifier machine_done;
|
2023-01-10 06:29:16 +03:00
|
|
|
Notifier powerdown_notifier;
|
2022-07-12 11:32:05 +03:00
|
|
|
OnOffAuto acpi;
|
|
|
|
char *oem_id;
|
|
|
|
char *oem_table_id;
|
|
|
|
DeviceState *acpi_ged;
|
2022-07-12 11:32:06 +03:00
|
|
|
int fdt_size;
|
2022-08-10 10:50:35 +03:00
|
|
|
DeviceState *platform_bus_dev;
|
2022-08-25 06:57:33 +03:00
|
|
|
PCIBus *pci_bus;
|
2024-02-19 13:34:14 +03:00
|
|
|
PFlashCFI01 *flash[2];
|
2023-12-13 07:13:14 +03:00
|
|
|
MemoryRegion system_iocsr;
|
|
|
|
MemoryRegion iocsr_mem;
|
|
|
|
AddressSpace as_iocsr;
|
2024-04-26 12:15:35 +03:00
|
|
|
struct loongarch_boot_info bootinfo;
|
2022-06-06 15:43:20 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#define TYPE_LOONGARCH_MACHINE MACHINE_TYPE_NAME("virt")
|
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(LoongArchMachineState, LOONGARCH_MACHINE)
|
2022-07-12 11:32:05 +03:00
|
|
|
bool loongarch_is_acpi_enabled(LoongArchMachineState *lams);
|
|
|
|
void loongarch_acpi_setup(LoongArchMachineState *lams);
|
2022-06-06 15:43:20 +03:00
|
|
|
#endif
|