mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
91e3c43722
Signed-off-by: Anton Johansson <anjo@rev.ng> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230306175230.7110-8-anjo@rev.ng> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
33 lines
885 B
C
33 lines
885 B
C
/*
|
|
* PA-RISC cpu parameters for qemu.
|
|
*
|
|
* Copyright (c) 2016 Richard Henderson <rth@twiddle.net>
|
|
* SPDX-License-Identifier: LGPL-2.0+
|
|
*/
|
|
|
|
#ifndef HPPA_CPU_PARAM_H
|
|
#define HPPA_CPU_PARAM_H
|
|
|
|
#ifdef TARGET_HPPA64
|
|
# define TARGET_LONG_BITS 64
|
|
# define TARGET_REGISTER_BITS 64
|
|
# define TARGET_VIRT_ADDR_SPACE_BITS 64
|
|
# define TARGET_PHYS_ADDR_SPACE_BITS 64
|
|
#elif defined(CONFIG_USER_ONLY)
|
|
# define TARGET_LONG_BITS 32
|
|
# define TARGET_REGISTER_BITS 32
|
|
# define TARGET_VIRT_ADDR_SPACE_BITS 32
|
|
# define TARGET_PHYS_ADDR_SPACE_BITS 32
|
|
#else
|
|
/*
|
|
* In order to form the GVA from space:offset,
|
|
* we need a 64-bit virtual address space.
|
|
*/
|
|
# define TARGET_LONG_BITS 64
|
|
# define TARGET_REGISTER_BITS 32
|
|
# define TARGET_VIRT_ADDR_SPACE_BITS 64
|
|
# define TARGET_PHYS_ADDR_SPACE_BITS 32
|
|
#endif
|
|
#define TARGET_PAGE_BITS 12
|
|
|
|
#endif
|