This source file includes following definitions.
- paging_init
- mem_init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 #include <linux/signal.h>
21 #include <linux/sched.h>
22 #include <linux/kernel.h>
23 #include <linux/errno.h>
24 #include <linux/string.h>
25 #include <linux/types.h>
26 #include <linux/ptrace.h>
27 #include <linux/mman.h>
28 #include <linux/mm.h>
29 #include <linux/swap.h>
30 #include <linux/init.h>
31 #include <linux/highmem.h>
32 #include <linux/pagemap.h>
33 #include <linux/memblock.h>
34 #include <linux/gfp.h>
35
36 #include <asm/setup.h>
37 #include <asm/segment.h>
38 #include <asm/page.h>
39 #include <asm/pgtable.h>
40 #include <asm/sections.h>
41
42
43
44
45
46 unsigned long empty_zero_page;
47
48
49
50
51
52
53
54 void __init paging_init(void)
55 {
56
57
58
59
60 unsigned long start_mem = PAGE_ALIGN(memory_start);
61 unsigned long end_mem = memory_end & PAGE_MASK;
62
63 pr_debug("start_mem is %#lx\nvirtual_end is %#lx\n",
64 start_mem, end_mem);
65
66
67
68
69
70 empty_zero_page = (unsigned long)memblock_alloc(PAGE_SIZE, PAGE_SIZE);
71 if (!empty_zero_page)
72 panic("%s: Failed to allocate %lu bytes align=0x%lx\n",
73 __func__, PAGE_SIZE, PAGE_SIZE);
74
75
76
77
78 set_fs(USER_DS);
79
80 pr_debug("before free_area_init\n");
81
82 pr_debug("free_area_init -> start_mem is %#lx\nvirtual_end is %#lx\n",
83 start_mem, end_mem);
84
85 {
86 unsigned long zones_size[MAX_NR_ZONES] = {0, };
87
88 zones_size[ZONE_NORMAL] = (end_mem - PAGE_OFFSET) >> PAGE_SHIFT;
89 free_area_init(zones_size);
90 }
91 }
92
93 void __init mem_init(void)
94 {
95 pr_devel("Mem_init: start=%lx, end=%lx\n", memory_start, memory_end);
96
97 high_memory = (void *) (memory_end & PAGE_MASK);
98 max_mapnr = MAP_NR(high_memory);
99
100
101 memblock_free_all();
102
103 mem_init_print_info(NULL);
104 }