blob: ab33a32df2a8e34541c6784f04fb7032b62457cc [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Kees Cookcb18ef02016-05-09 13:22:05 -07002/*
3 * Helper routines for building identity mapping page tables. This is
4 * included by both the compressed kernel and the regular kernel.
5 */
Yinghai Lucf4fb152016-05-06 15:01:34 -07006
Rafael J. Wysockie4630fd2016-08-08 15:31:31 +02007static void ident_pmd_init(struct x86_mapping_info *info, pmd_t *pmd_page,
Yinghai Lucf4fb152016-05-06 15:01:34 -07008 unsigned long addr, unsigned long end)
9{
10 addr &= PMD_MASK;
11 for (; addr < end; addr += PMD_SIZE) {
12 pmd_t *pmd = pmd_page + pmd_index(addr);
13
Rafael J. Wysockie4630fd2016-08-08 15:31:31 +020014 if (pmd_present(*pmd))
15 continue;
16
Xunlei Pang66aad4f2017-05-04 09:42:50 +080017 set_pmd(pmd, __pmd((addr - info->offset) | info->page_flag));
Yinghai Lucf4fb152016-05-06 15:01:34 -070018 }
19}
Kees Cookcb18ef02016-05-09 13:22:05 -070020
Yinghai Lucf4fb152016-05-06 15:01:34 -070021static int ident_pud_init(struct x86_mapping_info *info, pud_t *pud_page,
22 unsigned long addr, unsigned long end)
23{
24 unsigned long next;
25
26 for (; addr < end; addr = next) {
27 pud_t *pud = pud_page + pud_index(addr);
28 pmd_t *pmd;
29
30 next = (addr & PUD_MASK) + PUD_SIZE;
31 if (next > end)
32 next = end;
33
Xunlei Pang66aad4f2017-05-04 09:42:50 +080034 if (info->direct_gbpages) {
35 pud_t pudval;
36
37 if (pud_present(*pud))
38 continue;
39
40 addr &= PUD_MASK;
41 pudval = __pud((addr - info->offset) | info->page_flag);
42 set_pud(pud, pudval);
43 continue;
44 }
45
Yinghai Lucf4fb152016-05-06 15:01:34 -070046 if (pud_present(*pud)) {
47 pmd = pmd_offset(pud, 0);
Rafael J. Wysockie4630fd2016-08-08 15:31:31 +020048 ident_pmd_init(info, pmd, addr, next);
Yinghai Lucf4fb152016-05-06 15:01:34 -070049 continue;
50 }
51 pmd = (pmd_t *)info->alloc_pgt_page(info->context);
52 if (!pmd)
53 return -ENOMEM;
Rafael J. Wysockie4630fd2016-08-08 15:31:31 +020054 ident_pmd_init(info, pmd, addr, next);
Tom Lendackybba4ed02017-07-17 16:10:28 -050055 set_pud(pud, __pud(__pa(pmd) | info->kernpg_flag));
Yinghai Lucf4fb152016-05-06 15:01:34 -070056 }
57
58 return 0;
59}
60
Kirill A. Shutemovea3b5e62017-03-13 17:33:07 +030061static int ident_p4d_init(struct x86_mapping_info *info, p4d_t *p4d_page,
62 unsigned long addr, unsigned long end)
63{
64 unsigned long next;
65
66 for (; addr < end; addr = next) {
67 p4d_t *p4d = p4d_page + p4d_index(addr);
68 pud_t *pud;
69
70 next = (addr & P4D_MASK) + P4D_SIZE;
71 if (next > end)
72 next = end;
73
74 if (p4d_present(*p4d)) {
75 pud = pud_offset(p4d, 0);
76 ident_pud_init(info, pud, addr, next);
77 continue;
78 }
79 pud = (pud_t *)info->alloc_pgt_page(info->context);
80 if (!pud)
81 return -ENOMEM;
82 ident_pud_init(info, pud, addr, next);
Tom Lendackybba4ed02017-07-17 16:10:28 -050083 set_p4d(p4d, __p4d(__pa(pud) | info->kernpg_flag));
Kirill A. Shutemovea3b5e62017-03-13 17:33:07 +030084 }
85
86 return 0;
87}
88
Yinghai Lucf4fb152016-05-06 15:01:34 -070089int kernel_ident_mapping_init(struct x86_mapping_info *info, pgd_t *pgd_page,
Rafael J. Wysockie4630fd2016-08-08 15:31:31 +020090 unsigned long pstart, unsigned long pend)
Yinghai Lucf4fb152016-05-06 15:01:34 -070091{
Rafael J. Wysockie4630fd2016-08-08 15:31:31 +020092 unsigned long addr = pstart + info->offset;
93 unsigned long end = pend + info->offset;
Yinghai Lucf4fb152016-05-06 15:01:34 -070094 unsigned long next;
95 int result;
Yinghai Lucf4fb152016-05-06 15:01:34 -070096
Tom Lendackybba4ed02017-07-17 16:10:28 -050097 /* Set the default pagetable flags if not supplied */
98 if (!info->kernpg_flag)
99 info->kernpg_flag = _KERNPG_TABLE;
100
Yinghai Lucf4fb152016-05-06 15:01:34 -0700101 for (; addr < end; addr = next) {
Rafael J. Wysockie4630fd2016-08-08 15:31:31 +0200102 pgd_t *pgd = pgd_page + pgd_index(addr);
Kirill A. Shutemovea3b5e62017-03-13 17:33:07 +0300103 p4d_t *p4d;
Yinghai Lucf4fb152016-05-06 15:01:34 -0700104
105 next = (addr & PGDIR_MASK) + PGDIR_SIZE;
106 if (next > end)
107 next = end;
108
109 if (pgd_present(*pgd)) {
Kirill A. Shutemovea3b5e62017-03-13 17:33:07 +0300110 p4d = p4d_offset(pgd, 0);
111 result = ident_p4d_init(info, p4d, addr, next);
Yinghai Lucf4fb152016-05-06 15:01:34 -0700112 if (result)
113 return result;
114 continue;
115 }
116
Kirill A. Shutemovea3b5e62017-03-13 17:33:07 +0300117 p4d = (p4d_t *)info->alloc_pgt_page(info->context);
118 if (!p4d)
Yinghai Lucf4fb152016-05-06 15:01:34 -0700119 return -ENOMEM;
Kirill A. Shutemovea3b5e62017-03-13 17:33:07 +0300120 result = ident_p4d_init(info, p4d, addr, next);
Yinghai Lucf4fb152016-05-06 15:01:34 -0700121 if (result)
122 return result;
Kirill A. Shutemovea3b5e62017-03-13 17:33:07 +0300123 if (IS_ENABLED(CONFIG_X86_5LEVEL)) {
Tom Lendackybba4ed02017-07-17 16:10:28 -0500124 set_pgd(pgd, __pgd(__pa(p4d) | info->kernpg_flag));
Kirill A. Shutemovea3b5e62017-03-13 17:33:07 +0300125 } else {
126 /*
127 * With p4d folded, pgd is equal to p4d.
128 * The pgd entry has to point to the pud page table in this case.
129 */
130 pud_t *pud = pud_offset(p4d, 0);
Tom Lendackybba4ed02017-07-17 16:10:28 -0500131 set_pgd(pgd, __pgd(__pa(pud) | info->kernpg_flag));
Kirill A. Shutemovea3b5e62017-03-13 17:33:07 +0300132 }
Yinghai Lucf4fb152016-05-06 15:01:34 -0700133 }
134
135 return 0;
136}