blob: 120a49bfb9c645b83d2deb6a635a922f9af9f62a [file] [log] [blame]
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001/*
2 * This file contains the routines setting up the linux page tables.
3 * -- paulus
4 *
5 * Derived from arch/ppc/mm/init.c:
6 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
7 *
8 * Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au)
9 * and Cort Dougan (PReP) (cort@cs.nmt.edu)
10 * Copyright (C) 1996 Paul Mackerras
Paul Mackerras14cf11a2005-09-26 16:04:21 +100011 *
12 * Derived from "arch/i386/mm/init.c"
13 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
19 *
20 */
21
Paul Mackerras14cf11a2005-09-26 16:04:21 +100022#include <linux/kernel.h>
23#include <linux/module.h>
24#include <linux/types.h>
25#include <linux/mm.h>
26#include <linux/vmalloc.h>
27#include <linux/init.h>
28#include <linux/highmem.h>
Yinghai Lu95f72d12010-07-12 14:36:09 +100029#include <linux/memblock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100031
32#include <asm/pgtable.h>
33#include <asm/pgalloc.h>
Kumar Gala2c419bd2008-04-23 23:05:20 +100034#include <asm/fixmap.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100035#include <asm/io.h>
David Howellsae3a1972012-03-28 18:30:02 +010036#include <asm/setup.h>
Christophe Leroy95902e62017-08-02 15:51:05 +020037#include <asm/sections.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100038
39#include "mmu_decl.h"
40
Paul Mackerras14cf11a2005-09-26 16:04:21 +100041unsigned long ioremap_bot;
Olaf Hering920573b2006-03-14 21:21:11 +010042EXPORT_SYMBOL(ioremap_bot); /* aka VMALLOC_END */
Paul Mackerras14cf11a2005-09-26 16:04:21 +100043
Christophe Leroy060ef9d2016-02-10 08:17:08 +010044extern char etext[], _stext[], _sinittext[], _einittext[];
Paul Mackerras14cf11a2005-09-26 16:04:21 +100045
Fabian Frederickbd721ea2016-08-02 14:03:33 -070046__ref pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100047{
48 pte_t *pte;
Paul Mackerras14cf11a2005-09-26 16:04:21 +100049
Michael Ellermanf691fa12015-03-30 14:10:37 +110050 if (slab_is_available()) {
Michal Hocko32d6bd92016-06-24 14:48:47 -070051 pte = (pte_t *)__get_free_page(GFP_KERNEL|__GFP_ZERO);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100052 } else {
Anton Blanchard10239732014-09-17 22:15:33 +100053 pte = __va(memblock_alloc(PAGE_SIZE, PAGE_SIZE));
Paul Mackerras14cf11a2005-09-26 16:04:21 +100054 if (pte)
55 clear_page(pte);
56 }
57 return pte;
58}
59
Martin Schwidefsky2f569af2008-02-08 04:22:04 -080060pgtable_t pte_alloc_one(struct mm_struct *mm, unsigned long address)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100061{
62 struct page *ptepage;
63
Balbir Singhabd667b2017-05-02 15:17:05 +100064 gfp_t flags = GFP_KERNEL | __GFP_ZERO | __GFP_ACCOUNT;
Paul Mackerras14cf11a2005-09-26 16:04:21 +100065
66 ptepage = alloc_pages(flags, 0);
Martin Schwidefsky2f569af2008-02-08 04:22:04 -080067 if (!ptepage)
68 return NULL;
Kirill A. Shutemov4f8049432013-11-14 14:31:38 -080069 if (!pgtable_page_ctor(ptepage)) {
70 __free_page(ptepage);
71 return NULL;
72 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +100073 return ptepage;
74}
75
Paul Mackerras14cf11a2005-09-26 16:04:21 +100076void __iomem *
77ioremap(phys_addr_t addr, unsigned long size)
78{
Benjamin Herrenschmidt1cdab552009-02-22 16:19:14 +000079 return __ioremap_caller(addr, size, _PAGE_NO_CACHE | _PAGE_GUARDED,
80 __builtin_return_address(0));
Paul Mackerras14cf11a2005-09-26 16:04:21 +100081}
Olaf Hering920573b2006-03-14 21:21:11 +010082EXPORT_SYMBOL(ioremap);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100083
84void __iomem *
Anton Blanchardbe135f42011-05-08 21:41:59 +000085ioremap_wc(phys_addr_t addr, unsigned long size)
86{
87 return __ioremap_caller(addr, size, _PAGE_NO_CACHE,
88 __builtin_return_address(0));
89}
90EXPORT_SYMBOL(ioremap_wc);
91
92void __iomem *
Anton Blanchard40f1ce72011-05-08 21:43:47 +000093ioremap_prot(phys_addr_t addr, unsigned long size, unsigned long flags)
Benjamin Herrenschmidt68a64352006-11-13 09:27:39 +110094{
Benjamin Herrenschmidta1f242f2008-07-23 21:27:08 -070095 /* writeable implies dirty for kernel addresses */
LEROY Christophea7b9f672015-01-19 17:04:38 +010096 if ((flags & (_PAGE_RW | _PAGE_RO)) != _PAGE_RO)
Benjamin Herrenschmidta1f242f2008-07-23 21:27:08 -070097 flags |= _PAGE_DIRTY | _PAGE_HWWRITE;
98
99 /* we don't want to let _PAGE_USER and _PAGE_EXEC leak out */
Benjamin Herrenschmidtea3cc332009-08-18 19:00:34 +0000100 flags &= ~(_PAGE_USER | _PAGE_EXEC);
Christophe Leroy812fadc2018-01-12 13:45:27 +0100101 flags |= _PAGE_PRIVILEGED;
Benjamin Herrenschmidt55052ee2010-04-07 14:39:36 +1000102
Benjamin Herrenschmidt1cdab552009-02-22 16:19:14 +0000103 return __ioremap_caller(addr, size, flags, __builtin_return_address(0));
Benjamin Herrenschmidt68a64352006-11-13 09:27:39 +1100104}
Anton Blanchard40f1ce72011-05-08 21:43:47 +0000105EXPORT_SYMBOL(ioremap_prot);
Benjamin Herrenschmidt68a64352006-11-13 09:27:39 +1100106
107void __iomem *
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000108__ioremap(phys_addr_t addr, unsigned long size, unsigned long flags)
109{
Benjamin Herrenschmidt1cdab552009-02-22 16:19:14 +0000110 return __ioremap_caller(addr, size, flags, __builtin_return_address(0));
111}
112
113void __iomem *
114__ioremap_caller(phys_addr_t addr, unsigned long size, unsigned long flags,
115 void *caller)
116{
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000117 unsigned long v, i;
118 phys_addr_t p;
119 int err;
120
Benjamin Herrenschmidta1f242f2008-07-23 21:27:08 -0700121 /* Make sure we have the base flags */
122 if ((flags & _PAGE_PRESENT) == 0)
Michael Ellerman4f9c53c2015-03-25 20:11:57 +1100123 flags |= pgprot_val(PAGE_KERNEL);
Benjamin Herrenschmidta1f242f2008-07-23 21:27:08 -0700124
125 /* Non-cacheable page cannot be coherent */
126 if (flags & _PAGE_NO_CACHE)
127 flags &= ~_PAGE_COHERENT;
128
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000129 /*
130 * Choose an address to map it to.
131 * Once the vmalloc system is running, we use it.
Christophe Leroye974cd42016-02-09 17:08:10 +0100132 * Before then, we use space going down from IOREMAP_TOP
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000133 * (ioremap_bot records where we're up to).
134 */
135 p = addr & PAGE_MASK;
136 size = PAGE_ALIGN(addr + size) - p;
137
138 /*
139 * If the address lies within the first 16 MB, assume it's in ISA
140 * memory space
141 */
142 if (p < 16*1024*1024)
143 p += _ISA_MEM_BASE;
144
Anton Vorontsov01695a92008-12-17 10:09:10 +0000145#ifndef CONFIG_CRASH_DUMP
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000146 /*
147 * Don't allow anybody to remap normal RAM that we're using.
148 * mem_init() sets high_memory so only do the check after that.
149 */
Michael Ellermanf691fa12015-03-30 14:10:37 +1100150 if (slab_is_available() && (p < virt_to_phys(high_memory)) &&
Jonathan Neuschäfer7e140592018-03-28 02:25:44 +0200151 page_is_ram(__phys_to_pfn(p))) {
Scott Woodcc834582015-03-11 22:13:46 -0500152 printk("__ioremap(): phys addr 0x%llx is RAM lr %ps\n",
David Gibson37f01d62007-04-24 15:05:18 +1000153 (unsigned long long)p, __builtin_return_address(0));
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000154 return NULL;
155 }
Anton Vorontsov01695a92008-12-17 10:09:10 +0000156#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000157
158 if (size == 0)
159 return NULL;
160
161 /*
162 * Is it already mapped? Perhaps overlapped by a previous
Christophe Leroy3084cdb2016-02-09 17:07:58 +0100163 * mapping.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000164 */
Christophe Leroy3084cdb2016-02-09 17:07:58 +0100165 v = p_block_mapped(p);
166 if (v)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000167 goto out;
168
Michael Ellermanf691fa12015-03-30 14:10:37 +1100169 if (slab_is_available()) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000170 struct vm_struct *area;
Benjamin Herrenschmidt1cdab552009-02-22 16:19:14 +0000171 area = get_vm_area_caller(size, VM_IOREMAP, caller);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000172 if (area == 0)
173 return NULL;
Michael Ellerman7a9d1252010-11-28 18:26:36 +0000174 area->phys_addr = p;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000175 v = (unsigned long) area->addr;
176 } else {
177 v = (ioremap_bot -= size);
178 }
179
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000180 /*
181 * Should check if it is a candidate for a BAT mapping
182 */
183
184 err = 0;
185 for (i = 0; i < size && err == 0; i += PAGE_SIZE)
Christophe Leroy4386c092017-05-29 17:31:56 +0200186 err = map_kernel_page(v+i, p+i, flags);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000187 if (err) {
Michael Ellermanf691fa12015-03-30 14:10:37 +1100188 if (slab_is_available())
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000189 vunmap((void *)v);
190 return NULL;
191 }
192
193out:
194 return (void __iomem *) (v + ((unsigned long)addr & ~PAGE_MASK));
195}
Olaf Hering920573b2006-03-14 21:21:11 +0100196EXPORT_SYMBOL(__ioremap);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000197
198void iounmap(volatile void __iomem *addr)
199{
200 /*
201 * If mapped by BATs then there is nothing to do.
202 * Calling vfree() generates a benign warning.
203 */
Christophe Leroy3084cdb2016-02-09 17:07:58 +0100204 if (v_block_mapped((unsigned long)addr))
205 return;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000206
207 if (addr > high_memory && (unsigned long) addr < ioremap_bot)
208 vunmap((void *) (PAGE_MASK & (unsigned long)addr));
209}
Olaf Hering920573b2006-03-14 21:21:11 +0100210EXPORT_SYMBOL(iounmap);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000211
Christophe Leroy4386c092017-05-29 17:31:56 +0200212int map_kernel_page(unsigned long va, phys_addr_t pa, int flags)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000213{
214 pmd_t *pd;
215 pte_t *pg;
216 int err = -ENOMEM;
217
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000218 /* Use upper 10 bits of VA to index the first level map */
David Gibsond1953c82007-05-08 12:46:49 +1000219 pd = pmd_offset(pud_offset(pgd_offset_k(va), va), va);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000220 /* Use middle 10 bits of VA to index the second-level map */
Paul Mackerrase2f2e582005-10-31 14:40:03 +1100221 pg = pte_alloc_kernel(pd, va);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000222 if (pg != 0) {
223 err = 0;
Benjamin Herrenschmidt3be4e692007-04-12 15:30:21 +1000224 /* The PTE should never be already set nor present in the
225 * hash table
226 */
Anton Vorontsov7021d862008-12-29 06:40:35 +0000227 BUG_ON((pte_val(*pg) & (_PAGE_PRESENT | _PAGE_HASHPTE)) &&
228 flags);
Benjamin Herrenschmidt3be4e692007-04-12 15:30:21 +1000229 set_pte_at(&init_mm, va, pg, pfn_pte(pa >> PAGE_SHIFT,
230 __pgprot(flags)));
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000231 }
Scott Wood47ce8af2013-10-11 19:22:37 -0500232 smp_wmb();
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000233 return err;
234}
235
236/*
Albert Herranzde324002009-12-12 06:31:53 +0000237 * Map in a chunk of physical memory starting at start.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000238 */
Christophe Leroy86b19522017-08-02 15:51:07 +0200239static void __init __mapin_ram_chunk(unsigned long offset, unsigned long top)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000240{
Kumar Gala99c62dd72008-04-16 05:52:21 +1000241 unsigned long v, s, f;
242 phys_addr_t p;
Benjamin Herrenschmidtee4f2ea2007-04-12 15:30:22 +1000243 int ktext;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000244
Albert Herranzde324002009-12-12 06:31:53 +0000245 s = offset;
Dale Farnsworthccdcef72008-12-17 10:09:13 +0000246 v = PAGE_OFFSET + s;
Kumar Gala99c62dd72008-04-16 05:52:21 +1000247 p = memstart_addr + s;
Albert Herranzde324002009-12-12 06:31:53 +0000248 for (; s < top; s += PAGE_SIZE) {
Christophe Leroy060ef9d2016-02-10 08:17:08 +0100249 ktext = ((char *)v >= _stext && (char *)v < etext) ||
250 ((char *)v >= _sinittext && (char *)v < _einittext);
Michael Ellerman4f9c53c2015-03-25 20:11:57 +1100251 f = ktext ? pgprot_val(PAGE_KERNEL_TEXT) : pgprot_val(PAGE_KERNEL);
Christophe Leroy4386c092017-05-29 17:31:56 +0200252 map_kernel_page(v, p, f);
Benjamin Herrenschmidtee4f2ea2007-04-12 15:30:22 +1000253#ifdef CONFIG_PPC_STD_MMU_32
254 if (ktext)
255 hash_preload(&init_mm, v, 0, 0x300);
256#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000257 v += PAGE_SIZE;
258 p += PAGE_SIZE;
259 }
260}
261
Albert Herranzde324002009-12-12 06:31:53 +0000262void __init mapin_ram(void)
263{
264 unsigned long s, top;
265
266#ifndef CONFIG_WII
267 top = total_lowmem;
268 s = mmu_mapin_ram(top);
269 __mapin_ram_chunk(s, top);
270#else
271 if (!wii_hole_size) {
272 s = mmu_mapin_ram(total_lowmem);
273 __mapin_ram_chunk(s, total_lowmem);
274 } else {
275 top = wii_hole_start;
276 s = mmu_mapin_ram(top);
277 __mapin_ram_chunk(s, top);
278
Yinghai Lu95f72d12010-07-12 14:36:09 +1000279 top = memblock_end_of_DRAM();
Albert Herranzde324002009-12-12 06:31:53 +0000280 s = wii_mmu_mapin_mem2(top);
281 __mapin_ram_chunk(s, top);
282 }
283#endif
284}
285
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000286/* Scan the real Linux page tables and return a PTE pointer for
287 * a virtual address in a context.
288 * Returns true (1) if PTE was found, zero otherwise. The pointer to
289 * the PTE pointer is unmodified if PTE is not found.
290 */
Christophe Leroy86b19522017-08-02 15:51:07 +0200291static int
Eugene Suroveginbab70a42006-03-28 10:13:12 -0800292get_pteptr(struct mm_struct *mm, unsigned long addr, pte_t **ptep, pmd_t **pmdp)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000293{
294 pgd_t *pgd;
David Gibsond1953c82007-05-08 12:46:49 +1000295 pud_t *pud;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000296 pmd_t *pmd;
297 pte_t *pte;
298 int retval = 0;
299
300 pgd = pgd_offset(mm, addr & PAGE_MASK);
301 if (pgd) {
David Gibsond1953c82007-05-08 12:46:49 +1000302 pud = pud_offset(pgd, addr & PAGE_MASK);
303 if (pud && pud_present(*pud)) {
304 pmd = pmd_offset(pud, addr & PAGE_MASK);
305 if (pmd_present(*pmd)) {
306 pte = pte_offset_map(pmd, addr & PAGE_MASK);
307 if (pte) {
308 retval = 1;
309 *ptep = pte;
310 if (pmdp)
311 *pmdp = pmd;
312 /* XXX caller needs to do pte_unmap, yuck */
313 }
314 }
315 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000316 }
317 return(retval);
318}
319
Christophe Leroye6119392017-08-02 15:51:01 +0200320static int __change_page_attr_noflush(struct page *page, pgprot_t prot)
Benjamin Herrenschmidt88df6e92007-04-12 15:30:22 +1000321{
322 pte_t *kpte;
323 pmd_t *kpmd;
324 unsigned long address;
325
326 BUG_ON(PageHighMem(page));
327 address = (unsigned long)page_address(page);
328
Christophe Leroy3084cdb2016-02-09 17:07:58 +0100329 if (v_block_mapped(address))
Benjamin Herrenschmidt88df6e92007-04-12 15:30:22 +1000330 return 0;
331 if (!get_pteptr(&init_mm, address, &kpte, &kpmd))
332 return -EINVAL;
Benjamin Herrenschmidt50891452009-12-08 21:08:44 +0000333 __set_pte_at(&init_mm, address, kpte, mk_pte(page, prot), 0);
Benjamin Herrenschmidt88df6e92007-04-12 15:30:22 +1000334 pte_unmap(kpte);
335
336 return 0;
337}
338
339/*
340 * Change the page attributes of an page in the linear mapping.
341 *
Christophe Leroy3184cc42017-08-02 15:51:03 +0200342 * THIS DOES NOTHING WITH BAT MAPPINGS, DEBUG USE ONLY
Benjamin Herrenschmidt88df6e92007-04-12 15:30:22 +1000343 */
344static int change_page_attr(struct page *page, int numpages, pgprot_t prot)
345{
346 int i, err = 0;
347 unsigned long flags;
Christophe Leroye6119392017-08-02 15:51:01 +0200348 struct page *start = page;
Benjamin Herrenschmidt88df6e92007-04-12 15:30:22 +1000349
350 local_irq_save(flags);
351 for (i = 0; i < numpages; i++, page++) {
Christophe Leroye6119392017-08-02 15:51:01 +0200352 err = __change_page_attr_noflush(page, prot);
Benjamin Herrenschmidt88df6e92007-04-12 15:30:22 +1000353 if (err)
354 break;
355 }
Christophe Leroye6119392017-08-02 15:51:01 +0200356 wmb();
Guenter Roeck7c6a4f32017-09-24 10:30:43 -0700357 local_irq_restore(flags);
Christophe Leroye6119392017-08-02 15:51:01 +0200358 flush_tlb_kernel_range((unsigned long)page_address(start),
359 (unsigned long)page_address(page));
Benjamin Herrenschmidt88df6e92007-04-12 15:30:22 +1000360 return err;
361}
362
Christophe Leroy3184cc42017-08-02 15:51:03 +0200363void mark_initmem_nx(void)
364{
365 struct page *page = virt_to_page(_sinittext);
366 unsigned long numpages = PFN_UP((unsigned long)_einittext) -
367 PFN_DOWN((unsigned long)_sinittext);
Benjamin Herrenschmidt88df6e92007-04-12 15:30:22 +1000368
Christophe Leroy3184cc42017-08-02 15:51:03 +0200369 change_page_attr(page, numpages, PAGE_KERNEL);
370}
371
Christophe Leroy95902e62017-08-02 15:51:05 +0200372#ifdef CONFIG_STRICT_KERNEL_RWX
373void mark_rodata_ro(void)
374{
375 struct page *page;
376 unsigned long numpages;
377
378 page = virt_to_page(_stext);
379 numpages = PFN_UP((unsigned long)_etext) -
380 PFN_DOWN((unsigned long)_stext);
381
382 change_page_attr(page, numpages, PAGE_KERNEL_ROX);
383 /*
384 * mark .rodata as read only. Use __init_begin rather than __end_rodata
385 * to cover NOTES and EXCEPTION_TABLE.
386 */
387 page = virt_to_page(__start_rodata);
388 numpages = PFN_UP((unsigned long)__init_begin) -
389 PFN_DOWN((unsigned long)__start_rodata);
390
391 change_page_attr(page, numpages, PAGE_KERNEL_RO);
392}
393#endif
394
Christophe Leroy3184cc42017-08-02 15:51:03 +0200395#ifdef CONFIG_DEBUG_PAGEALLOC
Joonsoo Kim031bc572014-12-12 16:55:52 -0800396void __kernel_map_pages(struct page *page, int numpages, int enable)
Benjamin Herrenschmidt88df6e92007-04-12 15:30:22 +1000397{
398 if (PageHighMem(page))
399 return;
400
401 change_page_attr(page, numpages, enable ? PAGE_KERNEL : __pgprot(0));
402}
403#endif /* CONFIG_DEBUG_PAGEALLOC */