Blame view

arch/mips/mm/init.c 12.7 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
  /*
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
   * for more details.
   *
   * Copyright (C) 1994 - 2000 Ralf Baechle
   * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
   * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
   * Copyright (C) 2000 MIPS Technologies, Inc.  All rights reserved.
   */
b868868ae   Ralf Baechle   [MIPS] Fix aliasi...
11
  #include <linux/bug.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  #include <linux/init.h>
  #include <linux/module.h>
  #include <linux/signal.h>
  #include <linux/sched.h>
  #include <linux/kernel.h>
  #include <linux/errno.h>
  #include <linux/string.h>
  #include <linux/types.h>
  #include <linux/pagemap.h>
  #include <linux/ptrace.h>
  #include <linux/mman.h>
  #include <linux/mm.h>
  #include <linux/bootmem.h>
  #include <linux/highmem.h>
  #include <linux/swap.h>
3d503753b   Daniel Jacobowitz   [MIPS] Support /p...
27
  #include <linux/proc_fs.h>
22a9835c3   Dave Hansen   [PATCH] unify PFN...
28
  #include <linux/pfn.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29

9975e77df   Ralf Baechle   [MIPS] Gcc 3.3 bu...
30
  #include <asm/asm-offsets.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
31
32
33
34
  #include <asm/bootinfo.h>
  #include <asm/cachectl.h>
  #include <asm/cpu.h>
  #include <asm/dma.h>
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
35
  #include <asm/kmap_types.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
36
37
38
39
40
  #include <asm/mmu_context.h>
  #include <asm/sections.h>
  #include <asm/pgtable.h>
  #include <asm/pgalloc.h>
  #include <asm/tlb.h>
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  #include <asm/fixmap.h>
  
  /* Atomicity and interruptability */
  #ifdef CONFIG_MIPS_MT_SMTC
  
  #include <asm/mipsmtregs.h>
  
  #define ENTER_CRITICAL(flags) \
  	{ \
  	unsigned int mvpflags; \
  	local_irq_save(flags);\
  	mvpflags = dvpe()
  #define EXIT_CRITICAL(flags) \
  	evpe(mvpflags); \
  	local_irq_restore(flags); \
  	}
  #else
  
  #define ENTER_CRITICAL(flags) local_irq_save(flags)
  #define EXIT_CRITICAL(flags) local_irq_restore(flags)
  
  #endif /* CONFIG_MIPS_MT_SMTC */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
63
64
  
  DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
65
66
67
68
69
70
71
72
73
74
75
76
77
78
  /*
   * We have up to 8 empty zeroed pages so we can map one of the right colour
   * when needed.  This is necessary only on R4000 / R4400 SC and MC versions
   * where we have to avoid VCED / VECI exceptions for good performance at
   * any price.  Since page is never written to after the initialization we
   * don't have to care about aliases on other CPUs.
   */
  unsigned long empty_zero_page, zero_page_mask;
  
  /*
   * Not static inline because used by IP27 special magic initialization code
   */
  unsigned long setup_zero_pages(void)
  {
8dfcc9ba2   Nick Piggin   [PATCH] mm: split...
79
80
  	unsigned int order;
  	unsigned long size;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
81
82
83
84
85
86
87
88
89
90
  	struct page *page;
  
  	if (cpu_has_vce)
  		order = 3;
  	else
  		order = 0;
  
  	empty_zero_page = __get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
  	if (!empty_zero_page)
  		panic("Oh boy, that early out of memory?");
99e3b942c   Franck Bui-Huu   [MIPS] page.h: re...
91
  	page = virt_to_page((void *)empty_zero_page);
8dfcc9ba2   Nick Piggin   [PATCH] mm: split...
92
  	split_page(page, order);
99e3b942c   Franck Bui-Huu   [MIPS] page.h: re...
93
  	while (page < virt_to_page((void *)(empty_zero_page + (PAGE_SIZE << order)))) {
68352e6ee   Hugh Dickins   [PATCH] mips: set...
94
  		SetPageReserved(page);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
95
96
97
98
99
100
101
102
  		page++;
  	}
  
  	size = PAGE_SIZE << order;
  	zero_page_mask = (size - 1) & PAGE_MASK;
  
  	return 1UL << order;
  }
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
103
104
105
106
  /*
   * These are almost like kmap_atomic / kunmap_atmic except they take an
   * additional address argument as the hint.
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
107
108
  
  #define kmap_get_fixmap_pte(vaddr)					\
c6e8b5877   Ralf Baechle   Update MIPS to us...
109
  	pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr), (vaddr)), (vaddr)), (vaddr))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
110

f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
111
112
113
114
115
116
117
118
119
120
121
122
123
  #ifdef CONFIG_MIPS_MT_SMTC
  static pte_t *kmap_coherent_pte;
  static void __init kmap_coherent_init(void)
  {
  	unsigned long vaddr;
  
  	/* cache the first coherent kmap pte */
  	vaddr = __fix_to_virt(FIX_CMAP_BEGIN);
  	kmap_coherent_pte = kmap_get_fixmap_pte(vaddr);
  }
  #else
  static inline void kmap_coherent_init(void) {}
  #endif
7575a49f2   Ralf Baechle   [MIPS] Implement ...
124
  void *kmap_coherent(struct page *page, unsigned long addr)
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
125
126
127
128
129
130
  {
  	enum fixed_addresses idx;
  	unsigned long vaddr, flags, entrylo;
  	unsigned long old_ctx;
  	pte_t pte;
  	int tlbidx;
b868868ae   Ralf Baechle   [MIPS] Fix aliasi...
131
  	BUG_ON(Page_dcache_dirty(page));
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
  	inc_preempt_count();
  	idx = (addr >> PAGE_SHIFT) & (FIX_N_COLOURS - 1);
  #ifdef CONFIG_MIPS_MT_SMTC
  	idx += FIX_N_COLOURS * smp_processor_id();
  #endif
  	vaddr = __fix_to_virt(FIX_CMAP_END - idx);
  	pte = mk_pte(page, PAGE_KERNEL);
  #if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32_R1)
  	entrylo = pte.pte_high;
  #else
  	entrylo = pte_val(pte) >> 6;
  #endif
  
  	ENTER_CRITICAL(flags);
  	old_ctx = read_c0_entryhi();
  	write_c0_entryhi(vaddr & (PAGE_MASK << 1));
  	write_c0_entrylo0(entrylo);
  	write_c0_entrylo1(entrylo);
  #ifdef CONFIG_MIPS_MT_SMTC
  	set_pte(kmap_coherent_pte - (FIX_CMAP_END - idx), pte);
  	/* preload TLB instead of local_flush_tlb_one() */
  	mtc0_tlbw_hazard();
  	tlb_probe();
  	tlb_probe_hazard();
  	tlbidx = read_c0_index();
  	mtc0_tlbw_hazard();
  	if (tlbidx < 0)
  		tlb_write_random();
  	else
  		tlb_write_indexed();
  #else
  	tlbidx = read_c0_wired();
  	write_c0_wired(tlbidx + 1);
  	write_c0_index(tlbidx);
  	mtc0_tlbw_hazard();
  	tlb_write_indexed();
  #endif
  	tlbw_use_hazard();
  	write_c0_entryhi(old_ctx);
  	EXIT_CRITICAL(flags);
  
  	return (void*) vaddr;
  }
  
  #define UNIQUE_ENTRYHI(idx) (CKSEG0 + ((idx) << (PAGE_SHIFT + 1)))
eacb9d619   Ralf Baechle   [MIPS] Remove unu...
177
  void kunmap_coherent(void)
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
  {
  #ifndef CONFIG_MIPS_MT_SMTC
  	unsigned int wired;
  	unsigned long flags, old_ctx;
  
  	ENTER_CRITICAL(flags);
  	old_ctx = read_c0_entryhi();
  	wired = read_c0_wired() - 1;
  	write_c0_wired(wired);
  	write_c0_index(wired);
  	write_c0_entryhi(UNIQUE_ENTRYHI(wired));
  	write_c0_entrylo0(0);
  	write_c0_entrylo1(0);
  	mtc0_tlbw_hazard();
  	tlb_write_indexed();
  	tlbw_use_hazard();
  	write_c0_entryhi(old_ctx);
  	EXIT_CRITICAL(flags);
  #endif
  	dec_preempt_count();
  	preempt_check_resched();
  }
bcd022801   Atsushi Nemoto   [PATCH] MIPS: Fix...
200
201
202
203
204
205
  void copy_user_highpage(struct page *to, struct page *from,
  	unsigned long vaddr, struct vm_area_struct *vma)
  {
  	void *vfrom, *vto;
  
  	vto = kmap_atomic(to, KM_USER1);
985c30ef4   Ralf Baechle   [MIPS] Fix aliasi...
206
  	if (cpu_has_dc_aliases && page_mapped(from)) {
bcd022801   Atsushi Nemoto   [PATCH] MIPS: Fix...
207
208
  		vfrom = kmap_coherent(from, vaddr);
  		copy_page(vto, vfrom);
eacb9d619   Ralf Baechle   [MIPS] Remove unu...
209
  		kunmap_coherent();
bcd022801   Atsushi Nemoto   [PATCH] MIPS: Fix...
210
211
212
213
214
215
216
217
218
219
220
221
222
223
  	} else {
  		vfrom = kmap_atomic(from, KM_USER0);
  		copy_page(vto, vfrom);
  		kunmap_atomic(vfrom, KM_USER0);
  	}
  	if (((vma->vm_flags & VM_EXEC) && !cpu_has_ic_fills_f_dc) ||
  	    pages_do_alias((unsigned long)vto, vaddr & PAGE_MASK))
  		flush_data_cache_page((unsigned long)vto);
  	kunmap_atomic(vto, KM_USER1);
  	/* Make sure this page is cleared on other CPU's too before using it */
  	smp_wmb();
  }
  
  EXPORT_SYMBOL(copy_user_highpage);
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
224
225
226
227
  void copy_to_user_page(struct vm_area_struct *vma,
  	struct page *page, unsigned long vaddr, void *dst, const void *src,
  	unsigned long len)
  {
985c30ef4   Ralf Baechle   [MIPS] Fix aliasi...
228
  	if (cpu_has_dc_aliases && page_mapped(page)) {
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
229
230
  		void *vto = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
  		memcpy(vto, src, len);
eacb9d619   Ralf Baechle   [MIPS] Remove unu...
231
  		kunmap_coherent();
985c30ef4   Ralf Baechle   [MIPS] Fix aliasi...
232
  	} else {
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
233
  		memcpy(dst, src, len);
985c30ef4   Ralf Baechle   [MIPS] Fix aliasi...
234
235
236
  		if (cpu_has_dc_aliases)
  			SetPageDcacheDirty(page);
  	}
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
237
238
239
240
241
242
243
244
245
246
  	if ((vma->vm_flags & VM_EXEC) && !cpu_has_ic_fills_f_dc)
  		flush_cache_page(vma, vaddr, page_to_pfn(page));
  }
  
  EXPORT_SYMBOL(copy_to_user_page);
  
  void copy_from_user_page(struct vm_area_struct *vma,
  	struct page *page, unsigned long vaddr, void *dst, const void *src,
  	unsigned long len)
  {
985c30ef4   Ralf Baechle   [MIPS] Fix aliasi...
247
248
  	if (cpu_has_dc_aliases && page_mapped(page)) {
  		void *vfrom = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
249
  		memcpy(dst, vfrom, len);
eacb9d619   Ralf Baechle   [MIPS] Remove unu...
250
  		kunmap_coherent();
985c30ef4   Ralf Baechle   [MIPS] Fix aliasi...
251
  	} else {
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
252
  		memcpy(dst, src, len);
985c30ef4   Ralf Baechle   [MIPS] Fix aliasi...
253
254
255
  		if (cpu_has_dc_aliases)
  			SetPageDcacheDirty(page);
  	}
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
256
257
258
259
260
261
  }
  
  EXPORT_SYMBOL(copy_from_user_page);
  
  
  #ifdef CONFIG_HIGHMEM
bf15f7679   Ralf Baechle   [MIPS] Declare hi...
262
  unsigned long highstart_pfn, highend_pfn;
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
263
264
  pte_t *kmap_pte;
  pgprot_t kmap_prot;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
265
266
267
268
269
270
271
272
273
274
  static void __init kmap_init(void)
  {
  	unsigned long kmap_vstart;
  
  	/* cache the first kmap pte */
  	kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
  	kmap_pte = kmap_get_fixmap_pte(kmap_vstart);
  
  	kmap_prot = PAGE_KERNEL;
  }
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
275
  #endif /* CONFIG_HIGHMEM */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
276

84fd089a4   Ralf Baechle   Delete duplicate ...
277
  void __init fixrange_init(unsigned long start, unsigned long end,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
278
279
  	pgd_t *pgd_base)
  {
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
280
  #if defined(CONFIG_HIGHMEM) || defined(CONFIG_MIPS_MT_SMTC)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
281
  	pgd_t *pgd;
c6e8b5877   Ralf Baechle   Update MIPS to us...
282
  	pud_t *pud;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
283
284
  	pmd_t *pmd;
  	pte_t *pte;
c6e8b5877   Ralf Baechle   Update MIPS to us...
285
  	int i, j, k;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
286
287
288
289
  	unsigned long vaddr;
  
  	vaddr = start;
  	i = __pgd_offset(vaddr);
c6e8b5877   Ralf Baechle   Update MIPS to us...
290
291
  	j = __pud_offset(vaddr);
  	k = __pmd_offset(vaddr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
292
293
294
  	pgd = pgd_base + i;
  
  	for ( ; (i < PTRS_PER_PGD) && (vaddr != end); pgd++, i++) {
c6e8b5877   Ralf Baechle   Update MIPS to us...
295
296
297
298
299
300
  		pud = (pud_t *)pgd;
  		for ( ; (j < PTRS_PER_PUD) && (vaddr != end); pud++, j++) {
  			pmd = (pmd_t *)pud;
  			for (; (k < PTRS_PER_PMD) && (vaddr != end); pmd++, k++) {
  				if (pmd_none(*pmd)) {
  					pte = (pte_t *) alloc_bootmem_low_pages(PAGE_SIZE);
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
301
  					set_pmd(pmd, __pmd((unsigned long)pte));
c6e8b5877   Ralf Baechle   Update MIPS to us...
302
303
304
305
  					if (pte != pte_offset_kernel(pmd, 0))
  						BUG();
  				}
  				vaddr += PMD_SIZE;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
306
  			}
c6e8b5877   Ralf Baechle   Update MIPS to us...
307
  			k = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
308
309
310
  		}
  		j = 0;
  	}
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
311
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
312
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
313

b4819b593   Yoichi Yuasa   [PATCH] mips: add...
314
  #ifndef CONFIG_NEED_MULTIPLE_NODES
565200a14   Atsushi Nemoto   [MIPS] Do not cou...
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
  static int __init page_is_ram(unsigned long pagenr)
  {
  	int i;
  
  	for (i = 0; i < boot_mem_map.nr_map; i++) {
  		unsigned long addr, end;
  
  		if (boot_mem_map.map[i].type != BOOT_MEM_RAM)
  			/* not usable memory */
  			continue;
  
  		addr = PFN_UP(boot_mem_map.map[i].addr);
  		end = PFN_DOWN(boot_mem_map.map[i].addr +
  			       boot_mem_map.map[i].size);
  
  		if (pagenr >= addr && pagenr < end)
  			return 1;
  	}
  
  	return 0;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
336
337
  void __init paging_init(void)
  {
cce335ae4   Ralf Baechle   [MIPS] 64-bit Sib...
338
339
  	unsigned long max_zone_pfns[MAX_NR_ZONES];
  	unsigned long lastpfn;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
340
341
342
343
344
345
  
  	pagetable_init();
  
  #ifdef CONFIG_HIGHMEM
  	kmap_init();
  #endif
f8829caee   Ralf Baechle   [MIPS] Fix aliasi...
346
  	kmap_coherent_init();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
347

055023393   Atsushi Nemoto   [MIPS] Select ZON...
348
  #ifdef CONFIG_ZONE_DMA
cce335ae4   Ralf Baechle   [MIPS] 64-bit Sib...
349
  	max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
350
  #endif
cce335ae4   Ralf Baechle   [MIPS] 64-bit Sib...
351
352
353
354
355
  #ifdef CONFIG_ZONE_DMA32
  	max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
  #endif
  	max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
  	lastpfn = max_low_pfn;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
356
  #ifdef CONFIG_HIGHMEM
cce335ae4   Ralf Baechle   [MIPS] 64-bit Sib...
357
358
  	max_zone_pfns[ZONE_HIGHMEM] = highend_pfn;
  	lastpfn = highend_pfn;
cbb8fc079   Franck Bui-Huu   [MIPS] paging_ini...
359

cce335ae4   Ralf Baechle   [MIPS] 64-bit Sib...
360
  	if (cpu_has_dc_aliases && max_low_pfn != highend_pfn) {
cbb8fc079   Franck Bui-Huu   [MIPS] paging_ini...
361
  		printk(KERN_WARNING "This processor doesn't support highmem."
cce335ae4   Ralf Baechle   [MIPS] 64-bit Sib...
362
363
364
365
366
  		       " %ldk highmem ignored
  ",
  		       (highend_pfn - max_low_pfn) << (PAGE_SHIFT - 10));
  		max_zone_pfns[ZONE_HIGHMEM] = max_low_pfn;
  		lastpfn = max_low_pfn;
cbb8fc079   Franck Bui-Huu   [MIPS] paging_ini...
367
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
368
  #endif
cce335ae4   Ralf Baechle   [MIPS] 64-bit Sib...
369
  	free_area_init_nodes(max_zone_pfns);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
370
  }
3d503753b   Daniel Jacobowitz   [MIPS] Support /p...
371
372
373
374
  static struct kcore_list kcore_mem, kcore_vmalloc;
  #ifdef CONFIG_64BIT
  static struct kcore_list kcore_kseg0;
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
375
376
377
378
379
380
381
382
383
  void __init mem_init(void)
  {
  	unsigned long codesize, reservedpages, datasize, initsize;
  	unsigned long tmp, ram;
  
  #ifdef CONFIG_HIGHMEM
  #ifdef CONFIG_DISCONTIGMEM
  #error "CONFIG_HIGHMEM and CONFIG_DISCONTIGMEM dont work together yet"
  #endif
565200a14   Atsushi Nemoto   [MIPS] Do not cou...
384
  	max_mapnr = highend_pfn;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
385
  #else
565200a14   Atsushi Nemoto   [MIPS] Do not cou...
386
  	max_mapnr = max_low_pfn;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
387
388
389
390
391
392
393
394
395
396
  #endif
  	high_memory = (void *) __va(max_low_pfn << PAGE_SHIFT);
  
  	totalram_pages += free_all_bootmem();
  	totalram_pages -= setup_zero_pages();	/* Setup zeroed pages.  */
  
  	reservedpages = ram = 0;
  	for (tmp = 0; tmp < max_low_pfn; tmp++)
  		if (page_is_ram(tmp)) {
  			ram++;
b1c231f5a   Chad Reese   [MIPS] Fix sparse...
397
  			if (PageReserved(pfn_to_page(tmp)))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
398
399
  				reservedpages++;
  		}
565200a14   Atsushi Nemoto   [MIPS] Do not cou...
400
  	num_physpages = ram;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
401
402
403
  
  #ifdef CONFIG_HIGHMEM
  	for (tmp = highstart_pfn; tmp < highend_pfn; tmp++) {
a8049c53c   Ralf Baechle   [MIPS] Convert re...
404
  		struct page *page = pfn_to_page(tmp);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
405
406
407
408
409
410
  
  		if (!page_is_ram(tmp)) {
  			SetPageReserved(page);
  			continue;
  		}
  		ClearPageReserved(page);
7835e98b2   Nick Piggin   [PATCH] remove se...
411
  		init_page_count(page);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
412
413
414
415
  		__free_page(page);
  		totalhigh_pages++;
  	}
  	totalram_pages += totalhigh_pages;
565200a14   Atsushi Nemoto   [MIPS] Do not cou...
416
  	num_physpages += totalhigh_pages;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
417
418
419
420
421
  #endif
  
  	codesize =  (unsigned long) &_etext - (unsigned long) &_text;
  	datasize =  (unsigned long) &_edata - (unsigned long) &_etext;
  	initsize =  (unsigned long) &__init_end - (unsigned long) &__init_begin;
3d503753b   Daniel Jacobowitz   [MIPS] Support /p...
422
423
424
425
426
427
428
429
430
  #ifdef CONFIG_64BIT
  	if ((unsigned long) &_text > (unsigned long) CKSEG0)
  		/* The -4 is a hack so that user tools don't have to handle
  		   the overflow.  */
  		kclist_add(&kcore_kseg0, (void *) CKSEG0, 0x80000000 - 4);
  #endif
  	kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
  	kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
  		   VMALLOC_END-VMALLOC_START);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
431
432
433
434
435
436
437
438
439
440
441
  	printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
  	       "%ldk reserved, %ldk data, %ldk init, %ldk highmem)
  ",
  	       (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
  	       ram << (PAGE_SHIFT-10),
  	       codesize >> 10,
  	       reservedpages << (PAGE_SHIFT-10),
  	       datasize >> 10,
  	       initsize >> 10,
  	       (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10)));
  }
b4819b593   Yoichi Yuasa   [PATCH] mips: add...
442
  #endif /* !CONFIG_NEED_MULTIPLE_NODES */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
443

c44e8d5e4   Atsushi Nemoto   [MIPS] prom_free_...
444
  void free_init_pages(const char *what, unsigned long begin, unsigned long end)
6fd11a217   Ralf Baechle   [MIPS] Cleanup fr...
445
  {
acd86b862   Franck Bui-Huu   [MIPS] Make free_...
446
  	unsigned long pfn;
6fd11a217   Ralf Baechle   [MIPS] Cleanup fr...
447

acd86b862   Franck Bui-Huu   [MIPS] Make free_...
448
449
450
451
452
453
454
455
  	for (pfn = PFN_UP(begin); pfn < PFN_DOWN(end); pfn++) {
  		struct page *page = pfn_to_page(pfn);
  		void *addr = phys_to_virt(PFN_PHYS(pfn));
  
  		ClearPageReserved(page);
  		init_page_count(page);
  		memset(addr, POISON_FREE_INITMEM, PAGE_SIZE);
  		__free_page(page);
6fd11a217   Ralf Baechle   [MIPS] Cleanup fr...
456
457
458
459
460
  		totalram_pages++;
  	}
  	printk(KERN_INFO "Freeing %s: %ldk freed
  ", what, (end - begin) >> 10);
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
461
462
463
  #ifdef CONFIG_BLK_DEV_INITRD
  void free_initrd_mem(unsigned long start, unsigned long end)
  {
acd86b862   Franck Bui-Huu   [MIPS] Make free_...
464
465
466
  	free_init_pages("initrd memory",
  			virt_to_phys((void *)start),
  			virt_to_phys((void *)end));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
467
468
  }
  #endif
fb4bb133a   Atsushi Nemoto   [MIPS] Mark prom_...
469
  void __init_refok free_initmem(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
470
  {
c44e8d5e4   Atsushi Nemoto   [MIPS] prom_free_...
471
  	prom_free_prom_memory();
acd86b862   Franck Bui-Huu   [MIPS] Make free_...
472
473
474
  	free_init_pages("unused kernel memory",
  			__pa_symbol(&__init_begin),
  			__pa_symbol(&__init_end));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
475
  }
69a6c312e   Atsushi Nemoto   [MIPS] Move some ...
476
477
478
479
480
481
482
  
  unsigned long pgd_current[NR_CPUS];
  /*
   * On 64-bit we've got three-level pagetables with a slightly
   * different layout ...
   */
  #define __page_aligned(order) __attribute__((__aligned__(PAGE_SIZE<<order)))
9975e77df   Ralf Baechle   [MIPS] Gcc 3.3 bu...
483
484
485
486
487
488
489
  
  /*
   * gcc 3.3 and older have trouble determining that PTRS_PER_PGD and PGD_ORDER
   * are constants.  So we use the variants from asm-offset.h until that gcc
   * will officially be retired.
   */
  pgd_t swapper_pg_dir[_PTRS_PER_PGD] __page_aligned(_PGD_ORDER);
69a6c312e   Atsushi Nemoto   [MIPS] Move some ...
490
491
492
493
494
495
496
  #ifdef CONFIG_64BIT
  #ifdef MODULE_START
  pgd_t module_pg_dir[PTRS_PER_PGD] __page_aligned(PGD_ORDER);
  #endif
  pmd_t invalid_pmd_table[PTRS_PER_PMD] __page_aligned(PMD_ORDER);
  #endif
  pte_t invalid_pte_table[PTRS_PER_PTE] __page_aligned(PTE_ORDER);