2019-03-22 11:51:19 -07:00
|
|
|
/*
|
|
|
|
|
* ARM cpu parameters for qemu.
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2003 Fabrice Bellard
|
2024-09-11 17:12:04 +02:00
|
|
|
* SPDX-License-Identifier: LGPL-2.0-or-later
|
2019-03-22 11:51:19 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef ARM_CPU_PARAM_H
|
2022-05-06 15:49:10 +02:00
|
|
|
#define ARM_CPU_PARAM_H
|
2019-03-22 11:51:19 -07:00
|
|
|
|
|
|
|
|
#ifdef TARGET_AARCH64
|
2022-03-01 11:59:50 -10:00
|
|
|
# define TARGET_PHYS_ADDR_SPACE_BITS 52
|
2022-03-01 11:59:49 -10:00
|
|
|
# define TARGET_VIRT_ADDR_SPACE_BITS 52
|
2019-03-22 11:51:19 -07:00
|
|
|
#else
|
|
|
|
|
# define TARGET_PHYS_ADDR_SPACE_BITS 40
|
|
|
|
|
# define TARGET_VIRT_ADDR_SPACE_BITS 32
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_USER_ONLY
|
2025-04-30 18:46:41 -07:00
|
|
|
# if defined(TARGET_AARCH64) && defined(CONFIG_LINUX)
|
2024-01-02 12:58:05 +11:00
|
|
|
/* Allow user-only to vary page size from 4k */
|
|
|
|
|
# define TARGET_PAGE_BITS_VARY
|
|
|
|
|
# else
|
|
|
|
|
# define TARGET_PAGE_BITS 12
|
2021-02-12 10:48:51 -08:00
|
|
|
# endif
|
2023-12-05 14:31:59 +01:00
|
|
|
#else /* !CONFIG_USER_ONLY */
|
2019-03-22 11:51:19 -07:00
|
|
|
/*
|
|
|
|
|
* ARMv7 and later CPUs have 4K pages minimum, but ARMv5 and v6
|
|
|
|
|
* have to support 1K tiny pages.
|
|
|
|
|
*/
|
|
|
|
|
# define TARGET_PAGE_BITS_VARY
|
2025-03-28 14:28:06 -05:00
|
|
|
# define TARGET_PAGE_BITS_LEGACY 10
|
2023-12-05 14:31:59 +01:00
|
|
|
#endif /* !CONFIG_USER_ONLY */
|
2022-10-10 20:18:48 -07:00
|
|
|
|
2025-03-19 12:46:47 +01:00
|
|
|
/*
|
|
|
|
|
* ARM-specific extra insn start words:
|
|
|
|
|
* 1: Conditional execution bits
|
|
|
|
|
* 2: Partial exception syndrome for data aborts
|
|
|
|
|
*/
|
|
|
|
|
#define TARGET_INSN_START_EXTRA_WORDS 2
|
|
|
|
|
|
2019-03-22 11:51:19 -07:00
|
|
|
#endif
|