mirror of
https://github.com/qemu/qemu.git
synced 2026-07-08 17:46:10 +00:00
For the single-binary, we want to be able to retrieve at runtime the current target among the different ones available. A consequence is that we can't rely on existing target_info() definition since it will create a conflict once more than one target is available. To solve this, we add TargetInfo in QOM, with this hierarchy. We define one class "target-info-X" per target, that inherits from abstract class "target-info". Using concrete vs abstract class ensure we can easily filter "target-info-X" from all QOM types. Associated TargetInfo is directly set through class initialization, without relying on any instance. For user mode, we simply define target_info() like it was done previously. In this patch, we keep the same definition for system-mode also, and it will be replaced in next commits. We will introduce detection of target from QOM, so we need to make sure those types are registered early. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Link: https://lore.kernel.org/qemu-devel/20260514172303.1484273-4-pierrick.bouvier@oss.qualcomm.com Signed-off-by: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>
46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
/*
|
|
* QEMU target info stubs (target specific)
|
|
*
|
|
* Copyright (c) Linaro
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "qemu/target-info.h"
|
|
#include "qemu/target-info-impl.h"
|
|
#include "qemu/target-info-init.h"
|
|
#include "hw/core/boards.h"
|
|
#include "cpu.h"
|
|
#include "exec/cpu-defs.h"
|
|
#include "exec/page-vary.h"
|
|
|
|
/* Validate correct placement of CPUArchState. */
|
|
QEMU_BUILD_BUG_ON(offsetof(ArchCPU, parent_obj) != 0);
|
|
QEMU_BUILD_BUG_ON(offsetof(ArchCPU, env) != sizeof(CPUState));
|
|
|
|
/* Validate target page size, if invariant. */
|
|
#ifndef TARGET_PAGE_BITS_VARY
|
|
QEMU_BUILD_BUG_ON(TARGET_PAGE_BITS < TARGET_PAGE_BITS_MIN);
|
|
#endif
|
|
|
|
static const TargetInfo target_info_stub = {
|
|
.target_name = TARGET_NAME,
|
|
.target_arch = glue(SYS_EMU_TARGET_, TARGET_ARCH),
|
|
.long_bits = TARGET_LONG_BITS,
|
|
.cpu_type = CPU_RESOLVING_TYPE,
|
|
.machine_typename = TYPE_MACHINE,
|
|
.endianness = TARGET_BIG_ENDIAN ? ENDIAN_MODE_BIG : ENDIAN_MODE_LITTLE,
|
|
#ifdef TARGET_PAGE_BITS_VARY
|
|
.page_bits_vary = true,
|
|
# ifdef TARGET_PAGE_BITS_LEGACY
|
|
.page_bits_init = TARGET_PAGE_BITS_LEGACY,
|
|
# endif
|
|
#else
|
|
.page_bits_vary = false,
|
|
.page_bits_init = TARGET_PAGE_BITS,
|
|
#endif
|
|
};
|
|
|
|
target_info_init(target_info_stub)
|