]> git.proxmox.com Git - mirror_qemu.git/blob - target/sparc/cpu-param.h
accel/tcg: Replace CPUState.env_ptr with cpu_env()
[mirror_qemu.git] / target / sparc / cpu-param.h
1 /*
2 * Sparc cpu parameters for qemu.
3 *
4 * SPDX-License-Identifier: LGPL-2.0+
5 */
6
7 #ifndef SPARC_CPU_PARAM_H
8 #define SPARC_CPU_PARAM_H
9
10 #ifdef TARGET_SPARC64
11 # define TARGET_LONG_BITS 64
12 # define TARGET_PAGE_BITS 13 /* 8k */
13 # define TARGET_PHYS_ADDR_SPACE_BITS 41
14 # ifdef TARGET_ABI32
15 # define TARGET_VIRT_ADDR_SPACE_BITS 32
16 # else
17 # define TARGET_VIRT_ADDR_SPACE_BITS 44
18 # endif
19 #else
20 # define TARGET_LONG_BITS 32
21 # define TARGET_PAGE_BITS 12 /* 4k */
22 # define TARGET_PHYS_ADDR_SPACE_BITS 36
23 # define TARGET_VIRT_ADDR_SPACE_BITS 32
24 #endif
25
26 #endif