blob: 0007b2adf3a3ebb85e1d1375f824f638e5c09ee0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/m68k/mm/init.c
3 *
4 * Copyright (C) 1995 Hamish Macdonald
5 *
6 * Contains common initialization routines, specific init code moved
7 * to motorola.c and sun3mmu.c
8 */
9
Roman Zippel12d810c2007-05-31 00:40:54 -070010#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/signal.h>
12#include <linux/sched.h>
13#include <linux/mm.h>
14#include <linux/swap.h>
15#include <linux/kernel.h>
16#include <linux/string.h>
17#include <linux/types.h>
18#include <linux/init.h>
19#include <linux/bootmem.h>
20
21#include <asm/setup.h>
22#include <asm/uaccess.h>
23#include <asm/page.h>
24#include <asm/pgalloc.h>
25#include <asm/system.h>
26#include <asm/machdep.h>
27#include <asm/io.h>
28#ifdef CONFIG_ATARI
29#include <asm/atari_stram.h>
30#endif
Geert Uytterhoevenc85627f2008-12-21 12:03:37 +010031#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/tlb.h>
33
34DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
35
Roman Zippel12d810c2007-05-31 00:40:54 -070036pg_data_t pg_data_map[MAX_NUMNODES];
37EXPORT_SYMBOL(pg_data_map);
38
39int m68k_virt_to_node_shift;
40
41#ifndef CONFIG_SINGLE_MEMORY_CHUNK
42pg_data_t *pg_data_table[65];
43EXPORT_SYMBOL(pg_data_table);
44#endif
45
Al Viro66a3f822007-07-20 04:33:28 +010046void __init m68k_setup_node(int node)
Roman Zippel12d810c2007-05-31 00:40:54 -070047{
48#ifndef CONFIG_SINGLE_MEMORY_CHUNK
49 struct mem_info *info = m68k_memory + node;
50 int i, end;
51
52 i = (unsigned long)phys_to_virt(info->addr) >> __virt_to_node_shift();
53 end = (unsigned long)phys_to_virt(info->addr + info->size - 1) >> __virt_to_node_shift();
54 for (; i <= end; i++) {
55 if (pg_data_table[i])
56 printk("overlap at %u for chunk %u\n", i, node);
57 pg_data_table[i] = pg_data_map + node;
58 }
59#endif
Johannes Weinerb61bfa32008-07-23 21:26:55 -070060 pg_data_map[node].bdata = bootmem_node_data + node;
Roman Zippel12d810c2007-05-31 00:40:54 -070061 node_set_online(node);
62}
63
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/*
66 * ZERO_PAGE is a special page that is used for zero-initialized
67 * data and COW.
68 */
69
70void *empty_zero_page;
Aneesh Kumar K.V5fcf4302008-04-29 08:11:12 -040071EXPORT_SYMBOL(empty_zero_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073extern void init_pointer_table(unsigned long ptable);
74
75/* References to section boundaries */
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077extern pmd_t *zero_pgtable;
78
79void __init mem_init(void)
80{
Roman Zippel12d810c2007-05-31 00:40:54 -070081 pg_data_t *pgdat;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 int codepages = 0;
83 int datapages = 0;
84 int initpages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#ifdef CONFIG_ATARI
88 if (MACH_IS_ATARI)
89 atari_stram_mem_init_hook();
90#endif
91
92 /* this will put all memory onto the freelists */
Roman Zippel12d810c2007-05-31 00:40:54 -070093 totalram_pages = num_physpages = 0;
94 for_each_online_pgdat(pgdat) {
95 num_physpages += pgdat->node_present_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Roman Zippel12d810c2007-05-31 00:40:54 -070097 totalram_pages += free_all_bootmem_node(pgdat);
98 for (i = 0; i < pgdat->node_spanned_pages; i++) {
99 struct page *page = pgdat->node_mem_map + i;
100 char *addr = page_to_virt(page);
101
102 if (!PageReserved(page))
103 continue;
104 if (addr >= _text &&
105 addr < _etext)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 codepages++;
Roman Zippel12d810c2007-05-31 00:40:54 -0700107 else if (addr >= __init_begin &&
108 addr < __init_end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 initpages++;
110 else
111 datapages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
113 }
114
115#ifndef CONFIG_SUN3
116 /* insert pointer tables allocated so far into the tablelist */
117 init_pointer_table((unsigned long)kernel_pg_dir);
118 for (i = 0; i < PTRS_PER_PGD; i++) {
119 if (pgd_present(kernel_pg_dir[i]))
120 init_pointer_table(__pgd_page(kernel_pg_dir[i]));
121 }
122
123 /* insert also pointer table that we used to unmap the zero page */
124 if (zero_pgtable)
125 init_pointer_table((unsigned long)zero_pgtable);
126#endif
127
128 printk("Memory: %luk/%luk available (%dk kernel code, %dk data, %dk init)\n",
129 (unsigned long)nr_free_pages() << (PAGE_SHIFT-10),
Roman Zippel12d810c2007-05-31 00:40:54 -0700130 totalram_pages << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 codepages << (PAGE_SHIFT-10),
132 datapages << (PAGE_SHIFT-10),
133 initpages << (PAGE_SHIFT-10));
134}
135
136#ifdef CONFIG_BLK_DEV_INITRD
137void free_initrd_mem(unsigned long start, unsigned long end)
138{
139 int pages = 0;
140 for (; start < end; start += PAGE_SIZE) {
141 ClearPageReserved(virt_to_page(start));
Nick Piggin7835e982006-03-22 00:08:40 -0800142 init_page_count(virt_to_page(start));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 free_page(start);
144 totalram_pages++;
145 pages++;
146 }
147 printk ("Freeing initrd memory: %dk freed\n", pages);
148}
149#endif