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

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

26 lines
495 B
C
Raw Normal View History

2019-03-22 11:51:19 -07:00
/*
* MIPS cpu parameters for qemu.
*
* SPDX-License-Identifier: LGPL-2.0-or-later
2019-03-22 11:51:19 -07:00
*/
#ifndef MIPS_CPU_PARAM_H
2022-05-06 15:49:10 +02:00
#define MIPS_CPU_PARAM_H
2019-03-22 11:51:19 -07:00
#ifdef TARGET_ABI_MIPSN64
2019-03-22 11:51:19 -07:00
#define TARGET_PHYS_ADDR_SPACE_BITS 48
#define TARGET_VIRT_ADDR_SPACE_BITS 48
#else
#define TARGET_PHYS_ADDR_SPACE_BITS 40
# ifdef CONFIG_USER_ONLY
# define TARGET_VIRT_ADDR_SPACE_BITS 31
# else
# define TARGET_VIRT_ADDR_SPACE_BITS 32
#endif
#endif
#define TARGET_PAGE_BITS 12
#define TARGET_INSN_START_EXTRA_WORDS 2
2019-03-22 11:51:19 -07:00
#endif