Files
xemu/target/arm/cpu-param.h
T

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

41 lines
883 B
C
Raw 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+
*/
#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
# define TARGET_LONG_BITS 64
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_LONG_BITS 32
# define TARGET_PHYS_ADDR_SPACE_BITS 40
# define TARGET_VIRT_ADDR_SPACE_BITS 32
#endif
#ifdef CONFIG_USER_ONLY
# ifdef TARGET_AARCH64
# define TARGET_TAGGED_ADDRESSES
/* Allow user-only to vary page size from 4k */
# define TARGET_PAGE_BITS_VARY
# define TARGET_PAGE_BITS_MIN 12
# else
# define TARGET_PAGE_BITS 12
# endif
2019-03-22 11:51:19 -07:00
#else
/*
* 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_MIN 10
2022-10-10 20:18:48 -07:00
2019-03-22 11:51:19 -07:00
#endif
#endif