blob: 75cc0978d45d7d7acc43d65615b766c78df9ab1a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/sched.h>
2#include <linux/kernel.h>
3#include <linux/errno.h>
4#include <linux/mm.h>
Prarit Bhargava27eb0b22007-10-17 18:04:34 +02005#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/swap.h>
7#include <linux/smp.h>
8#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/pagemap.h>
10#include <linux/spinlock.h>
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -070011#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/pgtable.h>
14#include <asm/pgalloc.h>
15#include <asm/fixmap.h>
16#include <asm/e820.h>
17#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;
30 pud_t *pud;
31 pmd_t *pmd;
32 pte_t *pte;
33
34 pgd = swapper_pg_dir + pgd_index(vaddr);
35 if (pgd_none(*pgd)) {
36 BUG();
37 return;
38 }
39 pud = pud_offset(pgd, vaddr);
40 if (pud_none(*pud)) {
41 BUG();
42 return;
43 }
44 pmd = pmd_offset(pud, vaddr);
45 if (pmd_none(*pmd)) {
46 BUG();
47 return;
48 }
49 pte = pte_offset_kernel(pmd, vaddr);
Jeremy Fitzhardinged494a962008-06-17 11:41:59 -070050 if (pte_val(pteval))
Jeremy Fitzhardingeb40c7572009-03-18 13:03:32 -070051 set_pte_at(&init_mm, vaddr, pte, pteval);
Jan Beulichb0bfece2006-12-07 02:14:09 +010052 else
53 pte_clear(&init_mm, vaddr, pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55 /*
56 * It's enough to flush this one mapping.
57 * (PGE mappings get flushed as well)
58 */
59 __flush_tlb_one(vaddr);
60}
61
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -070062unsigned long __FIXADDR_TOP = 0xfffff000;
63EXPORT_SYMBOL(__FIXADDR_TOP);
Jeremy Fitzhardinge052e7992006-09-25 23:32:25 -070064
Yinghai Lubef15682008-06-22 17:40:10 -070065/*
66 * vmalloc=size forces the vmalloc area to be exactly 'size'
67 * bytes. This can be used to increase (or decrease) the
68 * vmalloc area - the default is 128m.
69 */
70static int __init parse_vmalloc(char *arg)
71{
72 if (!arg)
73 return -EINVAL;
74
Dave Younge621bd12008-08-20 16:43:03 -070075 /* Add VMALLOC_OFFSET to the parsed value due to vm area guard hole*/
76 __VMALLOC_RESERVE = memparse(arg, &arg) + VMALLOC_OFFSET;
Yinghai Lubef15682008-06-22 17:40:10 -070077 return 0;
78}
79early_param("vmalloc", parse_vmalloc);
80
81/*
82 * reservetop=size reserves a hole at the top of the kernel address space which
83 * a hypervisor can load into later. Needed for dynamically loaded hypervisors,
84 * so relocating the fixmap can be done before paging initialization.
85 */
86static int __init parse_reservetop(char *arg)
87{
88 unsigned long address;
89
90 if (!arg)
91 return -EINVAL;
92
93 address = memparse(arg, &arg);
94 reserve_top_address(address);
Mark Salter5b7c73e2014-04-07 15:39:49 -070095 early_ioremap_init();
Yinghai Lubef15682008-06-22 17:40:10 -070096 return 0;
97}
98early_param("reservetop", parse_reservetop);