2019-03-22 11:51:19 -07:00
|
|
|
/*
|
|
|
|
|
* MIPS cpu parameters for qemu.
|
|
|
|
|
*
|
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 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
|
|
|
|
2022-03-28 11:59:42 +08: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
|
|
|
|
|
|
2025-03-19 12:46:47 +01:00
|
|
|
#define TARGET_INSN_START_EXTRA_WORDS 2
|
|
|
|
|
|
2019-03-22 11:51:19 -07:00
|
|
|
#endif
|