blob: 56234c6fcd61a295186eebf6bf98f11be24227b6 [file] [log] [blame]
Michael Ellerman5cd16ee2005-11-11 14:25:24 +11001#ifndef _ASM_POWERPC_PAGE_64_H
2#define _ASM_POWERPC_PAGE_64_H
3
4/*
5 * Copyright (C) 2001 PPC64 Team, IBM Corp
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 */
12
13/*
14 * We always define HW_PAGE_SHIFT to 12 as use of 64K pages remains Linux
15 * specific, every notion of page number shared with the firmware, TCEs,
16 * iommu, etc... still uses a page size of 4K.
17 */
18#define HW_PAGE_SHIFT 12
19#define HW_PAGE_SIZE (ASM_CONST(1) << HW_PAGE_SHIFT)
20#define HW_PAGE_MASK (~(HW_PAGE_SIZE-1))
21
22/*
23 * PAGE_FACTOR is the number of bits factor between PAGE_SHIFT and
24 * HW_PAGE_SHIFT, that is 4K pages.
25 */
26#define PAGE_FACTOR (PAGE_SHIFT - HW_PAGE_SHIFT)
27
Paul Mackerras1189be62007-10-11 20:37:10 +100028/* Segment size; normal 256M segments */
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110029#define SID_SHIFT 28
Stephen Rothwell16a15a32007-08-20 14:58:36 +100030#define SID_MASK ASM_CONST(0xfffffffff)
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110031#define ESID_MASK 0xfffffffff0000000UL
32#define GET_ESID(x) (((x) >> SID_SHIFT) & SID_MASK)
33
Paul Mackerras1189be62007-10-11 20:37:10 +100034/* 1T segments */
35#define SID_SHIFT_1T 40
36#define SID_MASK_1T 0xffffffUL
37#define ESID_MASK_1T 0xffffff0000000000UL
38#define GET_ESID_1T(x) (((x) >> SID_SHIFT_1T) & SID_MASK_1T)
39
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110040#ifndef __ASSEMBLY__
41#include <asm/cache.h>
42
43typedef unsigned long pte_basic_t;
44
Anton Blancharde35735b92014-10-02 15:44:21 +100045static inline void clear_page(void *addr)
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110046{
Anton Blancharde35735b92014-10-02 15:44:21 +100047 unsigned long iterations;
48 unsigned long onex, twox, fourx, eightx;
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110049
Benjamin Herrenschmidte2827fe2017-01-08 17:31:47 -060050 iterations = ppc64_caches.l1d.blocks_per_page / 8;
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110051
Anton Blancharde35735b92014-10-02 15:44:21 +100052 /*
53 * Some verisions of gcc use multiply instructions to
54 * calculate the offsets so lets give it a hand to
55 * do better.
56 */
Benjamin Herrenschmidte2827fe2017-01-08 17:31:47 -060057 onex = ppc64_caches.l1d.block_size;
Anton Blancharde35735b92014-10-02 15:44:21 +100058 twox = onex << 1;
59 fourx = onex << 2;
60 eightx = onex << 3;
61
62 asm volatile(
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110063 "mtctr %1 # clear_page\n\
Anton Blancharde35735b92014-10-02 15:44:21 +100064 .balign 16\n\
651: dcbz 0,%0\n\
66 dcbz %3,%0\n\
67 dcbz %4,%0\n\
68 dcbz %5,%0\n\
69 dcbz %6,%0\n\
70 dcbz %7,%0\n\
71 dcbz %8,%0\n\
72 dcbz %9,%0\n\
73 add %0,%0,%10\n\
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110074 bdnz+ 1b"
Anton Blancharde35735b92014-10-02 15:44:21 +100075 : "=&r" (addr)
76 : "r" (iterations), "0" (addr), "b" (onex), "b" (twox),
77 "b" (twox+onex), "b" (fourx), "b" (fourx+onex),
78 "b" (twox+fourx), "b" (eightx-onex), "r" (eightx)
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110079 : "ctr", "memory");
80}
81
Anton Blanchardd988f0e2011-05-08 21:18:38 +000082extern void copy_page(void *to, void *from);
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110083
84/* Log 2 of page table size */
85extern u64 ppc64_pft_size;
86
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110087#endif /* __ASSEMBLY__ */
88
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +100089#ifdef CONFIG_PPC_MM_SLICES
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110090
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +100091#define SLICE_LOW_SHIFT 28
92#define SLICE_HIGH_SHIFT 40
Michael Ellerman5cd16ee2005-11-11 14:25:24 +110093
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +100094#define SLICE_LOW_TOP (0x100000000ul)
95#define SLICE_NUM_LOW (SLICE_LOW_TOP >> SLICE_LOW_SHIFT)
Aneesh Kumar K.Vdd1842a2016-04-29 23:25:49 +100096#define SLICE_NUM_HIGH (H_PGTABLE_RANGE >> SLICE_HIGH_SHIFT)
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +100097
98#define GET_LOW_SLICE_INDEX(addr) ((addr) >> SLICE_LOW_SHIFT)
99#define GET_HIGH_SLICE_INDEX(addr) ((addr) >> SLICE_HIGH_SHIFT)
100
101#ifndef __ASSEMBLY__
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000102struct mm_struct;
103
104extern unsigned long slice_get_unmapped_area(unsigned long addr,
105 unsigned long len,
106 unsigned long flags,
107 unsigned int psize,
Michel Lespinasse34d07172013-04-29 11:53:52 -0700108 int topdown);
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000109
110extern unsigned int get_slice_psize(struct mm_struct *mm,
111 unsigned long addr);
112
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000113extern void slice_set_user_psize(struct mm_struct *mm, unsigned int psize);
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000114extern void slice_set_range_psize(struct mm_struct *mm, unsigned long start,
115 unsigned long len, unsigned int psize);
116
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000117#endif /* __ASSEMBLY__ */
118#else
119#define slice_init()
Michael Ellerman4e003742017-10-19 15:08:43 +1100120#ifdef CONFIG_PPC_BOOK3S_64
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000121#define get_slice_psize(mm, addr) ((mm)->context.user_psize)
Stephen Rothwelle8ff0642007-08-15 16:51:18 +1000122#define slice_set_user_psize(mm, psize) \
123do { \
124 (mm)->context.user_psize = (psize); \
125 (mm)->context.sllp = SLB_VSID_USER | mmu_psize_defs[(psize)].sllp; \
126} while (0)
Michael Ellerman4e003742017-10-19 15:08:43 +1100127#else /* !CONFIG_PPC_BOOK3S_64 */
Benjamin Herrenschmidt57e2a992009-07-28 11:59:34 +1000128#ifdef CONFIG_PPC_64K_PAGES
129#define get_slice_psize(mm, addr) MMU_PAGE_64K
130#else /* CONFIG_PPC_64K_PAGES */
131#define get_slice_psize(mm, addr) MMU_PAGE_4K
132#endif /* !CONFIG_PPC_64K_PAGES */
133#define slice_set_user_psize(mm, psize) do { BUG(); } while(0)
Michael Ellerman4e003742017-10-19 15:08:43 +1100134#endif /* CONFIG_PPC_BOOK3S_64 */
Benjamin Herrenschmidt57e2a992009-07-28 11:59:34 +1000135
Paul Mackerras3a8247c2008-06-18 15:29:12 +1000136#define slice_set_range_psize(mm, start, len, psize) \
137 slice_set_user_psize((mm), (psize))
Benjamin Herrenschmidtd0f13e32007-05-08 16:27:27 +1000138#endif /* CONFIG_PPC_MM_SLICES */
139
140#ifdef CONFIG_HUGETLB_PAGE
141
Becky Bruce76512952011-10-10 10:50:36 +0000142#ifdef CONFIG_PPC_MM_SLICES
Michael Ellerman5cd16ee2005-11-11 14:25:24 +1100143#define HAVE_ARCH_HUGETLB_UNMAPPED_AREA
Becky Bruce76512952011-10-10 10:50:36 +0000144#endif
Michael Ellerman5cd16ee2005-11-11 14:25:24 +1100145
Michael Ellerman5cd16ee2005-11-11 14:25:24 +1100146#endif /* !CONFIG_HUGETLB_PAGE */
147
Michael Ellerman5cd16ee2005-11-11 14:25:24 +1100148#define VM_DATA_DEFAULT_FLAGS \
Denis Kirjanovcab175f2010-08-27 03:49:11 +0000149 (is_32bit_task() ? \
Michael Ellerman5cd16ee2005-11-11 14:25:24 +1100150 VM_DATA_DEFAULT_FLAGS32 : VM_DATA_DEFAULT_FLAGS64)
151
152/*
153 * This is the default if a program doesn't have a PT_GNU_STACK
154 * program header entry. The PPC64 ELF ABI has a non executable stack
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300155 * stack by default, so in the absence of a PT_GNU_STACK program header
Michael Ellerman5cd16ee2005-11-11 14:25:24 +1100156 * we turn execute permission off.
157 */
158#define VM_STACK_DEFAULT_FLAGS32 (VM_READ | VM_WRITE | VM_EXEC | \
159 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
160
161#define VM_STACK_DEFAULT_FLAGS64 (VM_READ | VM_WRITE | \
162 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
163
164#define VM_STACK_DEFAULT_FLAGS \
Denis Kirjanovcab175f2010-08-27 03:49:11 +0000165 (is_32bit_task() ? \
Michael Ellerman5cd16ee2005-11-11 14:25:24 +1100166 VM_STACK_DEFAULT_FLAGS32 : VM_STACK_DEFAULT_FLAGS64)
167
Arnd Bergmann5b17e1c2009-05-13 22:56:30 +0000168#include <asm-generic/getorder.h>
Michael Ellerman5cd16ee2005-11-11 14:25:24 +1100169
Michael Ellerman5cd16ee2005-11-11 14:25:24 +1100170#endif /* _ASM_POWERPC_PAGE_64_H */