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-06-06 15:43:20 +03:00
|
|
|
|
|
|
|
#define LOONGARCH_MAX_VCPUS 4
|
|
|
|
|
|
|
|
#define LOONGARCH_ISA_IO_BASE 0x18000000UL
|
|
|
|
#define LOONGARCH_ISA_IO_SIZE 0x0004000
|
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
|
|
|
|
#define VIRT_BIOS_SIZE (4 * MiB)
|
2022-06-06 15:43:20 +03:00
|
|
|
|
|
|
|
struct LoongArchMachineState {
|
|
|
|
/*< private >*/
|
|
|
|
MachineState parent_obj;
|
|
|
|
|
2022-06-06 15:43:21 +03:00
|
|
|
IPICore ipi_core[MAX_IPI_CORE_NUM];
|
2022-06-06 15:43:20 +03:00
|
|
|
MemoryRegion lowmem;
|
|
|
|
MemoryRegion highmem;
|
|
|
|
MemoryRegion isa_io;
|
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;
|
2022-06-06 15:43:20 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#define TYPE_LOONGARCH_MACHINE MACHINE_TYPE_NAME("virt")
|
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(LoongArchMachineState, LOONGARCH_MACHINE)
|
|
|
|
#endif
|