blob: 6b9bf023a700559b87ae7ac89570d9bbd26d1f05 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#include <linux/sched.h>
3#include <linux/kernel.h>
4#include <linux/errno.h>
5#include <linux/mm.h>
Prarit Bhargava27eb0b22007-10-17 18:04:34 +02006#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/swap.h>
8#include <linux/smp.h>
9#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/pagemap.h>
11#include <linux/spinlock.h>
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/pgtable.h>
14#include <asm/pgalloc.h>
15#include <asm/fixmap.h>
Ingo Molnar66441bd2017-01-27 10:27:10 +010016#include <asm/e820/api.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/tlb.h>
18#include <asm/tlbflush.h>
Ingo Molnar56f0e742010-05-03 09:19:43 +020019#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Pekka Enberg2b688df2009-03-03 12:55:04 +020021unsigned int __VMALLOC_RESERVE = 128 << 20;
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/*
24 * Associate a virtual page frame with a given physical page frame
25 * and protection flags for that frame.
26 */
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -070027void set_pte_vaddr(unsigned long vaddr, pte_t pteval)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
29 pgd_t *pgd;
Kirill A. Shutemove0c4f672017-03-13 17:33:05 +030030 p4d_t *p4d;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 pud_t *pud;
32 pmd_t *pmd;
33 pte_t *pte;
34
35 pgd = swapper_pg_dir + pgd_index(vaddr);
36 if (pgd_none(*pgd)) {
37 BUG();
38 return;
39 }
Kirill A. Shutemove0c4f672017-03-13 17:33:05 +030040 p4d = p4d_offset(pgd, vaddr);
41 if (p4d_none(*p4d)) {
42 BUG();
43 return;
44 }
45 pud = pud_offset(p4d, vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 if (pud_none(*pud)) {
47 BUG();
48 return;
49 }
50 pmd = pmd_offset(pud, vaddr);
51 if (pmd_none(*pmd)) {
52 BUG();
53 return;
54 }
55 pte = pte_offset_kernel(pmd, vaddr);
Dave Hansendcb32d92016-07-07 17:19:15 -070056 if (!pte_none(pteval))
Jeremy Fitzhardingeb40c7572009-03-18 13:03:32 -070057 set_pte_at(&init_mm, vaddr, pte, pteval);
Jan Beulichb0bfece2006-12-07 02:14:09 +010058 else
59 pte_clear(&init_mm, vaddr, pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61 /*
62 * It's enough to flush this one mapping.
63 * (PGE mappings get flushed as well)
64 */
65 __flush_tlb_one(vaddr);
66}
67
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -070068unsigned long __FIXADDR_TOP = 0xfffff000;
69EXPORT_SYMBOL(__FIXADDR_TOP);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -070070
Yinghai Lubef15682008-06-22 17:40:10 -070071/*
72 * vmalloc=size forces the vmalloc area to be exactly 'size'
73 * bytes. This can be used to increase (or decrease) the
74 * vmalloc area - the default is 128m.
75 */
76static int __init parse_vmalloc(char *arg)
77{
78 if (!arg)
79 return -EINVAL;
80
Dave Younge621bd12008-08-20 16:43:03 -070081 /* Add VMALLOC_OFFSET to the parsed value due to vm area guard hole*/
82 __VMALLOC_RESERVE = memparse(arg, &arg) + VMALLOC_OFFSET;
Yinghai Lubef15682008-06-22 17:40:10 -070083 return 0;
84}
85early_param("vmalloc", parse_vmalloc);
86
87/*
88 * reservetop=size reserves a hole at the top of the kernel address space which
89 * a hypervisor can load into later. Needed for dynamically loaded hypervisors,
90 * so relocating the fixmap can be done before paging initialization.
91 */
92static int __init parse_reservetop(char *arg)
93{
94 unsigned long address;
95
96 if (!arg)
97 return -EINVAL;
98
99 address = memparse(arg, &arg);
100 reserve_top_address(address);
Mark Salter5b7c73e2014-04-07 15:39:49 -0700101 early_ioremap_init();
Yinghai Lubef15682008-06-22 17:40:10 -0700102 return 0;
103}
104early_param("reservetop", parse_reservetop);