mirror of
https://github.com/xemu-project/xemu.git
synced 2026-07-11 01:24:41 +02:00
38c5ab4003
Register machines to be able to run with the qemu-system-arm
and qemu-system-aarch64 binaries, except few machines which
are only available on the qemu-system-aarch64 binary:
$ git grep TARGET_AARCH64 hw/arm/meson.build
hw/arm/meson.build:31:arm_common_ss.add(when: ['CONFIG_RASPI', 'TARGET_AARCH64'], if_true: files('bcm2838.c', 'raspi4b.c'))
hw/arm/meson.build:50:arm_common_ss.add(when: ['CONFIG_ASPEED_SOC', 'TARGET_AARCH64'], if_true: files('aspeed_ast27x0.c'))
$ git grep -W AARCH64 hw/arm/Kconfig
hw/arm/Kconfig=185=config SBSA_REF
hw/arm/Kconfig-186- bool
hw/arm/Kconfig-187- default y
hw/arm/Kconfig:188: depends on TCG && AARCH64
--
hw/arm/Kconfig=413=config XLNX_ZYNQMP_ARM
hw/arm/Kconfig-414- bool
hw/arm/Kconfig-415- default y if PIXMAN
hw/arm/Kconfig:416: depends on TCG && AARCH64
--
hw/arm/Kconfig=435=config XLNX_VERSAL
hw/arm/Kconfig-436- bool
hw/arm/Kconfig-437- default y
hw/arm/Kconfig:438: depends on TCG && AARCH64
--
hw/arm/Kconfig=475=config NPCM8XX
hw/arm/Kconfig-476- bool
hw/arm/Kconfig-477- default y
hw/arm/Kconfig:478: depends on TCG && AARCH64
--
hw/arm/Kconfig=605=config FSL_IMX8MP_EVK
hw/arm/Kconfig-606- bool
hw/arm/Kconfig-607- default y
hw/arm/Kconfig:608: depends on TCG && AARCH64
$ git grep -wW TARGET_AARCH64 hw/arm | fgrep -4 MACHINE_TYPE_NAME
...
hw/arm/aspeed.c:1939:#ifdef TARGET_AARCH64
hw/arm/aspeed.c-1940- }, {
hw/arm/aspeed.c-1941- .name = MACHINE_TYPE_NAME("ast2700a0-evb"),
hw/arm/aspeed.c-1949- .name = MACHINE_TYPE_NAME("ast2700a1-evb"),
hw/arm/raspi.c:420:#ifdef TARGET_AARCH64
hw/arm/raspi.c-421- }, {
hw/arm/raspi.c-422- .name = MACHINE_TYPE_NAME("raspi3ap"),
hw/arm/raspi.c-429- }, {
hw/arm/raspi.c-430- .name = MACHINE_TYPE_NAME("raspi3b"),
This can be verified as:
$ diff -u0 <(qemu-system-arm -M help) <(qemu-system-aarch64 -M help)
@@ -1,0 +2,3 @@
+xlnx-versal-virt AMD Versal Virtual development board (alias of amd-versal-virt)
+amd-versal-virt AMD Versal Virtual development board
+amd-versal2-virt AMD Versal Gen 2 Virtual development board
@@ -4,0 +8,5 @@
+ast2700a0-evb Aspeed AST2700 A0 EVB (Cortex-A35)
+ast2700-evb Aspeed AST2700 A1 EVB (Cortex-A35) (alias of ast2700a1-evb)
+ast2700a1-evb Aspeed AST2700 A1 EVB (Cortex-A35)
+ast2700fc ast2700 full core support (alias of ast2700fc)
+ast2700fc ast2700 full core support
@@ -20,0 +29 @@
+imx8mp-evk NXP i.MX 8M Plus EVK Board
@@ -47,0 +57 @@
+npcm845-evb Nuvoton NPCM845 Evaluation Board (Cortex-A35)
@@ -60,0 +71,3 @@
+raspi3ap Raspberry Pi 3A+ (revision 1.0)
+raspi3b Raspberry Pi 3B (revision 1.2)
+raspi4b Raspberry Pi 4B (revision 1.5)
@@ -66,0 +80 @@
+sbsa-ref QEMU 'SBSA Reference' ARM Virtual Machine
@@ -99,0 +114 @@
+xlnx-zcu102 Xilinx ZynqMP ZCU102 board with 4xA53s and 2xR5Fs based on the value of smp
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Acked-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20251021205741.57109-5-philmd@linaro.org>
155 lines
5.2 KiB
C
155 lines
5.2 KiB
C
/*
|
|
* Copyright (c) 2013 Jean-Christophe Dubois <jcd@tribudubois.net>
|
|
*
|
|
* PDK Board System emulation.
|
|
*
|
|
* Based on hw/arm/kzm.c
|
|
*
|
|
* Copyright (c) 2008 OKL and 2011 NICTA
|
|
* Written by Hans at OK-Labs
|
|
* Updated by Peter Chubb.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "qapi/error.h"
|
|
#include "hw/qdev-properties.h"
|
|
#include "hw/arm/fsl-imx25.h"
|
|
#include "hw/arm/boot.h"
|
|
#include "hw/arm/machines-qom.h"
|
|
#include "hw/boards.h"
|
|
#include "qemu/error-report.h"
|
|
#include "system/qtest.h"
|
|
#include "hw/i2c/i2c.h"
|
|
#include "qemu/cutils.h"
|
|
|
|
/* Memory map for PDK Emulation Baseboard:
|
|
* 0x00000000-0x7fffffff See i.MX25 SOC fr support
|
|
* 0x80000000-0x87ffffff RAM + Alias EMULATED
|
|
* 0x90000000-0x9fffffff RAM + Alias EMULATED
|
|
* 0xa0000000-0xa7ffffff Flash IGNORED
|
|
* 0xa8000000-0xafffffff Flash IGNORED
|
|
* 0xb0000000-0xb1ffffff SRAM IGNORED
|
|
* 0xb2000000-0xb3ffffff SRAM IGNORED
|
|
* 0xb4000000-0xb5ffffff CS4 IGNORED
|
|
* 0xb6000000-0xb8000fff Reserved IGNORED
|
|
* 0xb8001000-0xb8001fff SDRAM CTRL reg IGNORED
|
|
* 0xb8002000-0xb8002fff WEIM CTRL reg IGNORED
|
|
* 0xb8003000-0xb8003fff M3IF CTRL reg IGNORED
|
|
* 0xb8004000-0xb8004fff EMI CTRL reg IGNORED
|
|
* 0xb8005000-0xbaffffff Reserved IGNORED
|
|
* 0xbb000000-0xbb000fff NAND flash area buf IGNORED
|
|
* 0xbb001000-0xbb0011ff NAND flash reserved IGNORED
|
|
* 0xbb001200-0xbb001dff Reserved IGNORED
|
|
* 0xbb001e00-0xbb001fff NAN flash CTRL reg IGNORED
|
|
* 0xbb012000-0xbfffffff Reserved IGNORED
|
|
* 0xc0000000-0xffffffff Reserved IGNORED
|
|
*/
|
|
|
|
typedef struct IMX25PDK {
|
|
FslIMX25State soc;
|
|
MemoryRegion ram_alias;
|
|
} IMX25PDK;
|
|
|
|
static struct arm_boot_info imx25_pdk_binfo;
|
|
|
|
static void imx25_pdk_init(MachineState *machine)
|
|
{
|
|
IMX25PDK *s = g_new0(IMX25PDK, 1);
|
|
unsigned int ram_size;
|
|
unsigned int alias_offset;
|
|
int i;
|
|
|
|
object_initialize_child(OBJECT(machine), "soc", &s->soc, TYPE_FSL_IMX25);
|
|
|
|
qdev_realize(DEVICE(&s->soc), NULL, &error_fatal);
|
|
|
|
/* We need to initialize our memory */
|
|
if (machine->ram_size > (FSL_IMX25_SDRAM0_SIZE + FSL_IMX25_SDRAM1_SIZE)) {
|
|
char *sz = size_to_str(FSL_IMX25_SDRAM0_SIZE + FSL_IMX25_SDRAM1_SIZE);
|
|
error_report("RAM size more than %s is not supported", sz);
|
|
g_free(sz);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
memory_region_add_subregion(get_system_memory(), FSL_IMX25_SDRAM0_ADDR,
|
|
machine->ram);
|
|
|
|
/* initialize the alias memory if any */
|
|
for (i = 0, ram_size = machine->ram_size, alias_offset = 0;
|
|
(i < 2) && ram_size; i++) {
|
|
unsigned int size;
|
|
static const struct {
|
|
hwaddr addr;
|
|
unsigned int size;
|
|
} ram[2] = {
|
|
{ FSL_IMX25_SDRAM0_ADDR, FSL_IMX25_SDRAM0_SIZE },
|
|
{ FSL_IMX25_SDRAM1_ADDR, FSL_IMX25_SDRAM1_SIZE },
|
|
};
|
|
|
|
size = MIN(ram_size, ram[i].size);
|
|
|
|
ram_size -= size;
|
|
|
|
if (size < ram[i].size) {
|
|
memory_region_init_alias(&s->ram_alias, NULL, "ram.alias",
|
|
machine->ram,
|
|
alias_offset, ram[i].size - size);
|
|
memory_region_add_subregion(get_system_memory(),
|
|
ram[i].addr + size, &s->ram_alias);
|
|
}
|
|
|
|
alias_offset += ram[i].size;
|
|
}
|
|
|
|
imx25_pdk_binfo.ram_size = machine->ram_size;
|
|
imx25_pdk_binfo.loader_start = FSL_IMX25_SDRAM0_ADDR;
|
|
imx25_pdk_binfo.board_id = 1771;
|
|
|
|
for (i = 0; i < FSL_IMX25_NUM_ESDHCS; i++) {
|
|
BusState *bus;
|
|
DeviceState *carddev;
|
|
DriveInfo *di;
|
|
BlockBackend *blk;
|
|
|
|
di = drive_get(IF_SD, 0, i);
|
|
blk = di ? blk_by_legacy_dinfo(di) : NULL;
|
|
bus = qdev_get_child_bus(DEVICE(&s->soc.esdhc[i]), "sd-bus");
|
|
carddev = qdev_new(TYPE_SD_CARD);
|
|
qdev_prop_set_drive_err(carddev, "drive", blk, &error_fatal);
|
|
qdev_realize_and_unref(carddev, bus, &error_fatal);
|
|
}
|
|
|
|
/*
|
|
* We test explicitly for qtest here as it is not done (yet?) in
|
|
* arm_load_kernel(). Without this the "make check" command would
|
|
* fail.
|
|
*/
|
|
if (!qtest_enabled()) {
|
|
arm_load_kernel(&s->soc.cpu, machine, &imx25_pdk_binfo);
|
|
}
|
|
}
|
|
|
|
static void imx25_pdk_machine_init(MachineClass *mc)
|
|
{
|
|
mc->desc = "ARM i.MX25 PDK board (ARM926)";
|
|
mc->init = imx25_pdk_init;
|
|
mc->ignore_memory_transaction_failures = true;
|
|
mc->default_ram_id = "imx25.ram";
|
|
mc->auto_create_sdcard = true;
|
|
}
|
|
|
|
DEFINE_MACHINE_ARM("imx25-pdk", imx25_pdk_machine_init)
|