master
h 21 lines 376 Bytes
Raw
1 /*
2 * MIPS cpu parameters for qemu.
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6
7 #ifndef MIPS_CPU_PARAM_H
8 #define MIPS_CPU_PARAM_H
9
10 #ifdef TARGET_ABI_MIPSN64
11 #define TARGET_VIRT_ADDR_SPACE_BITS 48
12 #else
13 # ifdef CONFIG_USER_ONLY
14 # define TARGET_VIRT_ADDR_SPACE_BITS 31
15 # else
16 # define TARGET_VIRT_ADDR_SPACE_BITS 32
17 #endif
18 #endif
19 #define TARGET_PAGE_BITS 12
20
21 #endif