blob: fecc0e71286b19b9187093145c4ca836a3b400ee [file] [log] [blame]
Philippe Mathieu-Daudé2b7ae6e2025-04-17 17:59:35 +02001/*
2 * QEMU target info stubs (target specific)
3 *
4 * Copyright (c) Linaro
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9#include "qemu/osdep.h"
10#include "qemu/target-info.h"
Philippe Mathieu-Daudé3d881162025-03-23 12:47:37 +010011#include "qemu/target-info-impl.h"
Philippe Mathieu-Daudé28502122025-03-23 22:46:34 +010012#include "hw/boards.h"
Philippe Mathieu-Daudé2b7ae6e2025-04-17 17:59:35 +020013#include "cpu.h"
14
Philippe Mathieu-Daudé3d881162025-03-23 12:47:37 +010015static const TargetInfo target_info_stub = {
16 .target_name = TARGET_NAME,
Philippe Mathieu-Daudéc1be1352025-03-23 13:20:24 +010017 .long_bits = TARGET_LONG_BITS,
Philippe Mathieu-Daudéb113dfa2025-04-29 20:18:03 +020018 .cpu_type = CPU_RESOLVING_TYPE,
Philippe Mathieu-Daudé28502122025-03-23 22:46:34 +010019 .machine_typename = TYPE_MACHINE,
Philippe Mathieu-Daudé3d881162025-03-23 12:47:37 +010020};
21
22const TargetInfo *target_info(void)
23{
24 return &target_info_stub;
25}