MAINTAINERS: Add include/hw/xtensa/mx_pic.h to the XTFPGA machine section
[qemu/kevin.git] / linux-user / xtensa / target_mman.h
blob8fa6337a976d82fc5a57856d0e31ce21bc949aad
1 #ifndef XTENSA_TARGET_MMAN_H
2 #define XTENSA_TARGET_MMAN_H
4 #define TARGET_PROT_SEM 0x10
6 #define TARGET_MAP_NORESERVE 0x0400
7 #define TARGET_MAP_ANONYMOUS 0x0800
8 #define TARGET_MAP_GROWSDOWN 0x1000
9 #define TARGET_MAP_DENYWRITE 0x2000
10 #define TARGET_MAP_EXECUTABLE 0x4000
11 #define TARGET_MAP_LOCKED 0x8000
12 #define TARGET_MAP_POPULATE 0x10000
13 #define TARGET_MAP_NONBLOCK 0x20000
14 #define TARGET_MAP_STACK 0x40000
15 #define TARGET_MAP_HUGETLB 0x80000
18 * arch/xtensa/include/asm/processor.h:
19 * TASK_UNMAPPED_BASE (TASK_SIZE / 2)
21 #define TASK_UNMAPPED_BASE (1u << (TARGET_VIRT_ADDR_SPACE_BITS - 1))
23 /* arch/xtensa/include/asm/elf.h */
24 #define ELF_ET_DYN_BASE \
25 TARGET_PAGE_ALIGN((1u << TARGET_VIRT_ADDR_SPACE_BITS) / 3)
27 #include "../generic/target_mman.h"
29 #endif