mirror of
https://github.com/qemu/qemu.git
synced 2026-04-23 22:54:54 +00:00
This commit was created with scripts/clean-includes: ./scripts/clean-includes '--git' 'all' '--all' and manually edited to remove one change to hw/virtio/cbor-helpers.c. All these changes are header files that include osdep.h or some system header that osdep.h pulls in; they don't need to do this. All .c should include qemu/osdep.h first. The script performs three related cleanups: * Ensure .c files include qemu/osdep.h first. * Including it in a .h is redundant, since the .c already includes it. Drop such inclusions. * Likewise, including headers qemu/osdep.h includes is redundant. Drop these, too. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-id: 20260116125830.926296-5-peter.maydell@linaro.org
88 lines
2.4 KiB
C
88 lines
2.4 KiB
C
/*
|
|
* Alpha specific proc functions for linux-user
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
#ifndef ALPHA_TARGET_PROC_H
|
|
#define ALPHA_TARGET_PROC_H
|
|
|
|
#include "target/alpha/cpu.h"
|
|
|
|
static uint8_t alpha_phys_addr_space_bits(CPUAlphaState *env)
|
|
{
|
|
switch (env->implver) {
|
|
case IMPLVER_2106x:
|
|
/* EV4 */
|
|
return 34;
|
|
case IMPLVER_21164:
|
|
/* EV5 */
|
|
return 40;
|
|
case IMPLVER_21264:
|
|
case IMPLVER_21364:
|
|
/* EV6 and EV7*/
|
|
return 44;
|
|
default:
|
|
g_assert_not_reached();
|
|
}
|
|
}
|
|
|
|
static int open_cpuinfo(CPUArchState *cpu_env, int fd)
|
|
{
|
|
int max_cpus = sysconf(_SC_NPROCESSORS_CONF);
|
|
int num_cpus = sysconf(_SC_NPROCESSORS_ONLN);
|
|
unsigned long cpu_mask;
|
|
char model[32];
|
|
const char *p, *q;
|
|
int t;
|
|
|
|
p = object_class_get_name(OBJECT_CLASS(env_cpu(cpu_env)->cc));
|
|
q = strchr(p, '-');
|
|
t = q - p;
|
|
assert(t < sizeof(model));
|
|
memcpy(model, p, t);
|
|
model[t] = 0;
|
|
|
|
t = sched_getaffinity(getpid(), sizeof(cpu_mask), (cpu_set_t *)&cpu_mask);
|
|
if (t < 0) {
|
|
if (num_cpus >= sizeof(cpu_mask) * 8) {
|
|
cpu_mask = -1;
|
|
} else {
|
|
cpu_mask = (1UL << num_cpus) - 1;
|
|
}
|
|
}
|
|
|
|
dprintf(fd,
|
|
"cpu\t\t\t: Alpha\n"
|
|
"cpu model\t\t: %s\n"
|
|
"cpu variation\t\t: 0\n"
|
|
"cpu revision\t\t: 0\n"
|
|
"cpu serial number\t: JA00000000\n"
|
|
"system type\t\t: QEMU\n"
|
|
"system variation\t: QEMU_v" QEMU_VERSION "\n"
|
|
"system revision\t\t: 0\n"
|
|
"system serial number\t: AY00000000\n"
|
|
"cycle frequency [Hz]\t: 250000000\n"
|
|
"timer frequency [Hz]\t: 250.00\n"
|
|
"page size [bytes]\t: %d\n"
|
|
"phys. address bits\t: %d\n"
|
|
"max. addr. space #\t: 255\n"
|
|
"BogoMIPS\t\t: 2500.00\n"
|
|
"kernel unaligned acc\t: 0 (pc=0,va=0)\n"
|
|
"user unaligned acc\t: 0 (pc=0,va=0)\n"
|
|
"platform string\t\t: AlphaServer QEMU user-mode VM\n"
|
|
"cpus detected\t\t: %d\n"
|
|
"cpus active\t\t: %d\n"
|
|
"cpu active mask\t\t: %016lx\n"
|
|
"L1 Icache\t\t: n/a\n"
|
|
"L1 Dcache\t\t: n/a\n"
|
|
"L2 cache\t\t: n/a\n"
|
|
"L3 cache\t\t: n/a\n",
|
|
model, TARGET_PAGE_SIZE, alpha_phys_addr_space_bits(cpu_env),
|
|
max_cpus, num_cpus, cpu_mask);
|
|
|
|
return 0;
|
|
}
|
|
#define HAVE_ARCH_PROC_CPUINFO
|
|
|
|
#endif /* ALPHA_TARGET_PROC_H */
|