Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
990 B
C
Raw Permalink Normal View History

2019-03-22 11:51:19 -07:00
/*
* ARM cpu parameters for qemu.
*
* Copyright (c) 2003 Fabrice Bellard
* 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
# if defined(TARGET_AARCH64) && defined(CONFIG_LINUX)
/* Allow user-only to vary page size from 4k */
# define TARGET_PAGE_BITS_VARY
# else
# define TARGET_PAGE_BITS 12
# endif
#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
# define TARGET_PAGE_BITS_LEGACY 10
#endif /* !CONFIG_USER_ONLY */
2022-10-10 20:18:48 -07: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