1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 #ifndef _ASM_POWERPC_PAGE_64_H
3 #define _ASM_POWERPC_PAGE_64_H
6 * Copyright (C) 2001 PPC64 Team, IBM Corp
9 #include <asm/asm-const.h>
12 * We always define HW_PAGE_SHIFT to 12 as use of 64K pages remains Linux
13 * specific, every notion of page number shared with the firmware, TCEs,
14 * iommu, etc... still uses a page size of 4K.
16 #define HW_PAGE_SHIFT 12
17 #define HW_PAGE_SIZE (ASM_CONST(1) << HW_PAGE_SHIFT)
18 #define HW_PAGE_MASK (~(HW_PAGE_SIZE-1))
21 * PAGE_FACTOR is the number of bits factor between PAGE_SHIFT and
22 * HW_PAGE_SHIFT, that is 4K pages.
24 #define PAGE_FACTOR (PAGE_SHIFT - HW_PAGE_SHIFT)
26 /* Segment size; normal 256M segments */
28 #define SID_MASK ASM_CONST(0xfffffffff)
29 #define ESID_MASK 0xfffffffff0000000UL
30 #define GET_ESID(x) (((x) >> SID_SHIFT) & SID_MASK)
33 #define SID_SHIFT_1T 40
34 #define SID_MASK_1T 0xffffffUL
35 #define ESID_MASK_1T 0xffffff0000000000UL
36 #define GET_ESID_1T(x) (((x) >> SID_SHIFT_1T) & SID_MASK_1T)
39 #include <asm/cache.h>
41 typedef unsigned long pte_basic_t
;
43 static inline void clear_page(void *addr
)
45 unsigned long iterations
;
46 unsigned long onex
, twox
, fourx
, eightx
;
48 iterations
= ppc64_caches
.l1d
.blocks_per_page
/ 8;
51 * Some verisions of gcc use multiply instructions to
52 * calculate the offsets so lets give it a hand to
55 onex
= ppc64_caches
.l1d
.block_size
;
61 "mtctr %1 # clear_page\n\
74 : "r" (iterations
), "0" (addr
), "b" (onex
), "b" (twox
),
75 "b" (twox
+onex
), "b" (fourx
), "b" (fourx
+onex
),
76 "b" (twox
+fourx
), "b" (eightx
-onex
), "r" (eightx
)
80 extern void copy_page(void *to
, void *from
);
82 /* Log 2 of page table size */
83 extern u64 ppc64_pft_size
;
85 #endif /* __ASSEMBLY__ */
87 #define VM_DATA_DEFAULT_FLAGS \
89 VM_DATA_DEFAULT_FLAGS32 : VM_DATA_DEFAULT_FLAGS64)
92 * This is the default if a program doesn't have a PT_GNU_STACK
93 * program header entry. The PPC64 ELF ABI has a non executable stack
94 * stack by default, so in the absence of a PT_GNU_STACK program header
95 * we turn execute permission off.
97 #define VM_STACK_DEFAULT_FLAGS32 (VM_READ | VM_WRITE | VM_EXEC | \
98 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
100 #define VM_STACK_DEFAULT_FLAGS64 (VM_READ | VM_WRITE | \
101 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
103 #define VM_STACK_DEFAULT_FLAGS \
105 VM_STACK_DEFAULT_FLAGS32 : VM_STACK_DEFAULT_FLAGS64)
107 #include <asm-generic/getorder.h>
109 #endif /* _ASM_POWERPC_PAGE_64_H */