| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * This file is subject to the terms and conditions of the GNU General Public | 
 | 3 |  * License.  See the file "COPYING" in the main directory of this archive | 
 | 4 |  * for more details. | 
 | 5 |  * | 
 | 6 |  * Copyright (C) 1994 - 2000 Ralf Baechle | 
 | 7 |  * Copyright (C) 1999, 2000 Silicon Graphics, Inc. | 
 | 8 |  * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com | 
 | 9 |  * Copyright (C) 2000 MIPS Technologies, Inc.  All rights reserved. | 
 | 10 |  */ | 
| Ralf Baechle | b868868 | 2007-09-11 18:05:33 +0100 | [diff] [blame] | 11 | #include <linux/bug.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/init.h> | 
 | 13 | #include <linux/module.h> | 
 | 14 | #include <linux/signal.h> | 
 | 15 | #include <linux/sched.h> | 
| Ralf Baechle | 631330f | 2009-06-19 14:05:26 +0100 | [diff] [blame] | 16 | #include <linux/smp.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/kernel.h> | 
 | 18 | #include <linux/errno.h> | 
 | 19 | #include <linux/string.h> | 
 | 20 | #include <linux/types.h> | 
 | 21 | #include <linux/pagemap.h> | 
 | 22 | #include <linux/ptrace.h> | 
 | 23 | #include <linux/mman.h> | 
 | 24 | #include <linux/mm.h> | 
 | 25 | #include <linux/bootmem.h> | 
 | 26 | #include <linux/highmem.h> | 
 | 27 | #include <linux/swap.h> | 
| Daniel Jacobowitz | 3d50375 | 2005-01-20 19:59:54 -0500 | [diff] [blame] | 28 | #include <linux/proc_fs.h> | 
| Dave Hansen | 22a9835 | 2006-03-27 01:16:04 -0800 | [diff] [blame] | 29 | #include <linux/pfn.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 |  | 
| Ralf Baechle | 9975e77 | 2007-08-13 12:44:41 +0100 | [diff] [blame] | 31 | #include <asm/asm-offsets.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <asm/bootinfo.h> | 
 | 33 | #include <asm/cachectl.h> | 
 | 34 | #include <asm/cpu.h> | 
 | 35 | #include <asm/dma.h> | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 36 | #include <asm/kmap_types.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <asm/mmu_context.h> | 
 | 38 | #include <asm/sections.h> | 
 | 39 | #include <asm/pgtable.h> | 
 | 40 | #include <asm/pgalloc.h> | 
 | 41 | #include <asm/tlb.h> | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 42 | #include <asm/fixmap.h> | 
 | 43 |  | 
 | 44 | /* Atomicity and interruptability */ | 
 | 45 | #ifdef CONFIG_MIPS_MT_SMTC | 
 | 46 |  | 
 | 47 | #include <asm/mipsmtregs.h> | 
 | 48 |  | 
 | 49 | #define ENTER_CRITICAL(flags) \ | 
 | 50 | 	{ \ | 
 | 51 | 	unsigned int mvpflags; \ | 
 | 52 | 	local_irq_save(flags);\ | 
 | 53 | 	mvpflags = dvpe() | 
 | 54 | #define EXIT_CRITICAL(flags) \ | 
 | 55 | 	evpe(mvpflags); \ | 
 | 56 | 	local_irq_restore(flags); \ | 
 | 57 | 	} | 
 | 58 | #else | 
 | 59 |  | 
 | 60 | #define ENTER_CRITICAL(flags) local_irq_save(flags) | 
 | 61 | #define EXIT_CRITICAL(flags) local_irq_restore(flags) | 
 | 62 |  | 
 | 63 | #endif /* CONFIG_MIPS_MT_SMTC */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 |  | 
 | 65 | DEFINE_PER_CPU(struct mmu_gather, mmu_gathers); | 
 | 66 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | /* | 
 | 68 |  * We have up to 8 empty zeroed pages so we can map one of the right colour | 
 | 69 |  * when needed.  This is necessary only on R4000 / R4400 SC and MC versions | 
 | 70 |  * where we have to avoid VCED / VECI exceptions for good performance at | 
 | 71 |  * any price.  Since page is never written to after the initialization we | 
 | 72 |  * don't have to care about aliases on other CPUs. | 
 | 73 |  */ | 
 | 74 | unsigned long empty_zero_page, zero_page_mask; | 
| Ralf Baechle | 497d2ad | 2008-06-06 14:23:06 +0100 | [diff] [blame] | 75 | EXPORT_SYMBOL_GPL(empty_zero_page); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 |  | 
 | 77 | /* | 
 | 78 |  * Not static inline because used by IP27 special magic initialization code | 
 | 79 |  */ | 
 | 80 | unsigned long setup_zero_pages(void) | 
 | 81 | { | 
| Nick Piggin | 8dfcc9b | 2006-03-22 00:08:05 -0800 | [diff] [blame] | 82 | 	unsigned int order; | 
 | 83 | 	unsigned long size; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | 	struct page *page; | 
 | 85 |  | 
 | 86 | 	if (cpu_has_vce) | 
 | 87 | 		order = 3; | 
 | 88 | 	else | 
 | 89 | 		order = 0; | 
 | 90 |  | 
 | 91 | 	empty_zero_page = __get_free_pages(GFP_KERNEL | __GFP_ZERO, order); | 
 | 92 | 	if (!empty_zero_page) | 
 | 93 | 		panic("Oh boy, that early out of memory?"); | 
 | 94 |  | 
| Franck Bui-Huu | 99e3b94 | 2006-10-19 13:19:59 +0200 | [diff] [blame] | 95 | 	page = virt_to_page((void *)empty_zero_page); | 
| Nick Piggin | 8dfcc9b | 2006-03-22 00:08:05 -0800 | [diff] [blame] | 96 | 	split_page(page, order); | 
| Franck Bui-Huu | 99e3b94 | 2006-10-19 13:19:59 +0200 | [diff] [blame] | 97 | 	while (page < virt_to_page((void *)(empty_zero_page + (PAGE_SIZE << order)))) { | 
| Hugh Dickins | 68352e6 | 2005-12-12 00:37:23 -0800 | [diff] [blame] | 98 | 		SetPageReserved(page); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | 		page++; | 
 | 100 | 	} | 
 | 101 |  | 
 | 102 | 	size = PAGE_SIZE << order; | 
 | 103 | 	zero_page_mask = (size - 1) & PAGE_MASK; | 
 | 104 |  | 
 | 105 | 	return 1UL << order; | 
 | 106 | } | 
 | 107 |  | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 108 | #ifdef CONFIG_MIPS_MT_SMTC | 
 | 109 | static pte_t *kmap_coherent_pte; | 
 | 110 | static void __init kmap_coherent_init(void) | 
 | 111 | { | 
 | 112 | 	unsigned long vaddr; | 
 | 113 |  | 
 | 114 | 	/* cache the first coherent kmap pte */ | 
 | 115 | 	vaddr = __fix_to_virt(FIX_CMAP_BEGIN); | 
 | 116 | 	kmap_coherent_pte = kmap_get_fixmap_pte(vaddr); | 
 | 117 | } | 
 | 118 | #else | 
 | 119 | static inline void kmap_coherent_init(void) {} | 
 | 120 | #endif | 
 | 121 |  | 
| Ralf Baechle | 7575a49 | 2007-03-23 21:36:37 +0000 | [diff] [blame] | 122 | void *kmap_coherent(struct page *page, unsigned long addr) | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 123 | { | 
 | 124 | 	enum fixed_addresses idx; | 
 | 125 | 	unsigned long vaddr, flags, entrylo; | 
 | 126 | 	unsigned long old_ctx; | 
 | 127 | 	pte_t pte; | 
 | 128 | 	int tlbidx; | 
 | 129 |  | 
| Ralf Baechle | b868868 | 2007-09-11 18:05:33 +0100 | [diff] [blame] | 130 | 	BUG_ON(Page_dcache_dirty(page)); | 
 | 131 |  | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 132 | 	inc_preempt_count(); | 
 | 133 | 	idx = (addr >> PAGE_SHIFT) & (FIX_N_COLOURS - 1); | 
 | 134 | #ifdef CONFIG_MIPS_MT_SMTC | 
 | 135 | 	idx += FIX_N_COLOURS * smp_processor_id(); | 
 | 136 | #endif | 
 | 137 | 	vaddr = __fix_to_virt(FIX_CMAP_END - idx); | 
 | 138 | 	pte = mk_pte(page, PAGE_KERNEL); | 
| Chris Dearman | 962f480 | 2007-09-19 00:46:32 +0100 | [diff] [blame] | 139 | #if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32) | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 140 | 	entrylo = pte.pte_high; | 
 | 141 | #else | 
 | 142 | 	entrylo = pte_val(pte) >> 6; | 
 | 143 | #endif | 
 | 144 |  | 
 | 145 | 	ENTER_CRITICAL(flags); | 
 | 146 | 	old_ctx = read_c0_entryhi(); | 
 | 147 | 	write_c0_entryhi(vaddr & (PAGE_MASK << 1)); | 
 | 148 | 	write_c0_entrylo0(entrylo); | 
 | 149 | 	write_c0_entrylo1(entrylo); | 
 | 150 | #ifdef CONFIG_MIPS_MT_SMTC | 
 | 151 | 	set_pte(kmap_coherent_pte - (FIX_CMAP_END - idx), pte); | 
 | 152 | 	/* preload TLB instead of local_flush_tlb_one() */ | 
 | 153 | 	mtc0_tlbw_hazard(); | 
 | 154 | 	tlb_probe(); | 
 | 155 | 	tlb_probe_hazard(); | 
 | 156 | 	tlbidx = read_c0_index(); | 
 | 157 | 	mtc0_tlbw_hazard(); | 
 | 158 | 	if (tlbidx < 0) | 
 | 159 | 		tlb_write_random(); | 
 | 160 | 	else | 
 | 161 | 		tlb_write_indexed(); | 
 | 162 | #else | 
 | 163 | 	tlbidx = read_c0_wired(); | 
 | 164 | 	write_c0_wired(tlbidx + 1); | 
 | 165 | 	write_c0_index(tlbidx); | 
 | 166 | 	mtc0_tlbw_hazard(); | 
 | 167 | 	tlb_write_indexed(); | 
 | 168 | #endif | 
 | 169 | 	tlbw_use_hazard(); | 
 | 170 | 	write_c0_entryhi(old_ctx); | 
 | 171 | 	EXIT_CRITICAL(flags); | 
 | 172 |  | 
 | 173 | 	return (void*) vaddr; | 
 | 174 | } | 
 | 175 |  | 
 | 176 | #define UNIQUE_ENTRYHI(idx) (CKSEG0 + ((idx) << (PAGE_SHIFT + 1))) | 
 | 177 |  | 
| Ralf Baechle | eacb9d6 | 2007-04-26 15:46:25 +0100 | [diff] [blame] | 178 | void kunmap_coherent(void) | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 179 | { | 
 | 180 | #ifndef CONFIG_MIPS_MT_SMTC | 
 | 181 | 	unsigned int wired; | 
 | 182 | 	unsigned long flags, old_ctx; | 
 | 183 |  | 
 | 184 | 	ENTER_CRITICAL(flags); | 
 | 185 | 	old_ctx = read_c0_entryhi(); | 
 | 186 | 	wired = read_c0_wired() - 1; | 
 | 187 | 	write_c0_wired(wired); | 
 | 188 | 	write_c0_index(wired); | 
 | 189 | 	write_c0_entryhi(UNIQUE_ENTRYHI(wired)); | 
 | 190 | 	write_c0_entrylo0(0); | 
 | 191 | 	write_c0_entrylo1(0); | 
 | 192 | 	mtc0_tlbw_hazard(); | 
 | 193 | 	tlb_write_indexed(); | 
 | 194 | 	tlbw_use_hazard(); | 
 | 195 | 	write_c0_entryhi(old_ctx); | 
 | 196 | 	EXIT_CRITICAL(flags); | 
 | 197 | #endif | 
 | 198 | 	dec_preempt_count(); | 
 | 199 | 	preempt_check_resched(); | 
 | 200 | } | 
 | 201 |  | 
| Atsushi Nemoto | bcd0228 | 2006-12-12 17:14:56 +0000 | [diff] [blame] | 202 | void copy_user_highpage(struct page *to, struct page *from, | 
 | 203 | 	unsigned long vaddr, struct vm_area_struct *vma) | 
 | 204 | { | 
 | 205 | 	void *vfrom, *vto; | 
 | 206 |  | 
 | 207 | 	vto = kmap_atomic(to, KM_USER1); | 
| Ralf Baechle | 9a74b3e | 2008-02-16 22:34:25 +0000 | [diff] [blame] | 208 | 	if (cpu_has_dc_aliases && | 
 | 209 | 	    page_mapped(from) && !Page_dcache_dirty(from)) { | 
| Atsushi Nemoto | bcd0228 | 2006-12-12 17:14:56 +0000 | [diff] [blame] | 210 | 		vfrom = kmap_coherent(from, vaddr); | 
 | 211 | 		copy_page(vto, vfrom); | 
| Ralf Baechle | eacb9d6 | 2007-04-26 15:46:25 +0100 | [diff] [blame] | 212 | 		kunmap_coherent(); | 
| Atsushi Nemoto | bcd0228 | 2006-12-12 17:14:56 +0000 | [diff] [blame] | 213 | 	} else { | 
 | 214 | 		vfrom = kmap_atomic(from, KM_USER0); | 
 | 215 | 		copy_page(vto, vfrom); | 
 | 216 | 		kunmap_atomic(vfrom, KM_USER0); | 
 | 217 | 	} | 
| Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 218 | 	if ((!cpu_has_ic_fills_f_dc) || | 
| Atsushi Nemoto | bcd0228 | 2006-12-12 17:14:56 +0000 | [diff] [blame] | 219 | 	    pages_do_alias((unsigned long)vto, vaddr & PAGE_MASK)) | 
 | 220 | 		flush_data_cache_page((unsigned long)vto); | 
 | 221 | 	kunmap_atomic(vto, KM_USER1); | 
 | 222 | 	/* Make sure this page is cleared on other CPU's too before using it */ | 
 | 223 | 	smp_wmb(); | 
 | 224 | } | 
 | 225 |  | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 226 | void copy_to_user_page(struct vm_area_struct *vma, | 
 | 227 | 	struct page *page, unsigned long vaddr, void *dst, const void *src, | 
 | 228 | 	unsigned long len) | 
 | 229 | { | 
| Ralf Baechle | 9a74b3e | 2008-02-16 22:34:25 +0000 | [diff] [blame] | 230 | 	if (cpu_has_dc_aliases && | 
 | 231 | 	    page_mapped(page) && !Page_dcache_dirty(page)) { | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 232 | 		void *vto = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK); | 
 | 233 | 		memcpy(vto, src, len); | 
| Ralf Baechle | eacb9d6 | 2007-04-26 15:46:25 +0100 | [diff] [blame] | 234 | 		kunmap_coherent(); | 
| Ralf Baechle | 985c30e | 2007-10-15 16:30:24 +0100 | [diff] [blame] | 235 | 	} else { | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 236 | 		memcpy(dst, src, len); | 
| Ralf Baechle | 985c30e | 2007-10-15 16:30:24 +0100 | [diff] [blame] | 237 | 		if (cpu_has_dc_aliases) | 
 | 238 | 			SetPageDcacheDirty(page); | 
 | 239 | 	} | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 240 | 	if ((vma->vm_flags & VM_EXEC) && !cpu_has_ic_fills_f_dc) | 
 | 241 | 		flush_cache_page(vma, vaddr, page_to_pfn(page)); | 
 | 242 | } | 
 | 243 |  | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 244 | void copy_from_user_page(struct vm_area_struct *vma, | 
 | 245 | 	struct page *page, unsigned long vaddr, void *dst, const void *src, | 
 | 246 | 	unsigned long len) | 
 | 247 | { | 
| Ralf Baechle | 9a74b3e | 2008-02-16 22:34:25 +0000 | [diff] [blame] | 248 | 	if (cpu_has_dc_aliases && | 
 | 249 | 	    page_mapped(page) && !Page_dcache_dirty(page)) { | 
| Ralf Baechle | 985c30e | 2007-10-15 16:30:24 +0100 | [diff] [blame] | 250 | 		void *vfrom = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK); | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 251 | 		memcpy(dst, vfrom, len); | 
| Ralf Baechle | eacb9d6 | 2007-04-26 15:46:25 +0100 | [diff] [blame] | 252 | 		kunmap_coherent(); | 
| Ralf Baechle | 985c30e | 2007-10-15 16:30:24 +0100 | [diff] [blame] | 253 | 	} else { | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 254 | 		memcpy(dst, src, len); | 
| Ralf Baechle | 985c30e | 2007-10-15 16:30:24 +0100 | [diff] [blame] | 255 | 		if (cpu_has_dc_aliases) | 
 | 256 | 			SetPageDcacheDirty(page); | 
 | 257 | 	} | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 258 | } | 
 | 259 |  | 
| Ralf Baechle | 84fd089 | 2005-02-07 16:13:07 +0000 | [diff] [blame] | 260 | void __init fixrange_init(unsigned long start, unsigned long end, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | 	pgd_t *pgd_base) | 
 | 262 | { | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 263 | #if defined(CONFIG_HIGHMEM) || defined(CONFIG_MIPS_MT_SMTC) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | 	pgd_t *pgd; | 
| Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 265 | 	pud_t *pud; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | 	pmd_t *pmd; | 
 | 267 | 	pte_t *pte; | 
| Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 268 | 	int i, j, k; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | 	unsigned long vaddr; | 
 | 270 |  | 
 | 271 | 	vaddr = start; | 
 | 272 | 	i = __pgd_offset(vaddr); | 
| Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 273 | 	j = __pud_offset(vaddr); | 
 | 274 | 	k = __pmd_offset(vaddr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | 	pgd = pgd_base + i; | 
 | 276 |  | 
 | 277 | 	for ( ; (i < PTRS_PER_PGD) && (vaddr != end); pgd++, i++) { | 
| Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 278 | 		pud = (pud_t *)pgd; | 
 | 279 | 		for ( ; (j < PTRS_PER_PUD) && (vaddr != end); pud++, j++) { | 
 | 280 | 			pmd = (pmd_t *)pud; | 
 | 281 | 			for (; (k < PTRS_PER_PMD) && (vaddr != end); pmd++, k++) { | 
 | 282 | 				if (pmd_none(*pmd)) { | 
 | 283 | 					pte = (pte_t *) alloc_bootmem_low_pages(PAGE_SIZE); | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 284 | 					set_pmd(pmd, __pmd((unsigned long)pte)); | 
| Ralf Baechle | b72b709 | 2009-03-30 14:49:44 +0200 | [diff] [blame] | 285 | 					BUG_ON(pte != pte_offset_kernel(pmd, 0)); | 
| Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 286 | 				} | 
 | 287 | 				vaddr += PMD_SIZE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | 			} | 
| Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 289 | 			k = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | 		} | 
 | 291 | 		j = 0; | 
 | 292 | 	} | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 293 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 |  | 
| Yoichi Yuasa | b4819b5 | 2005-06-25 14:54:31 -0700 | [diff] [blame] | 296 | #ifndef CONFIG_NEED_MULTIPLE_NODES | 
| Atsushi Nemoto | 565200a | 2006-07-07 00:26:02 +0900 | [diff] [blame] | 297 | static int __init page_is_ram(unsigned long pagenr) | 
 | 298 | { | 
 | 299 | 	int i; | 
 | 300 |  | 
 | 301 | 	for (i = 0; i < boot_mem_map.nr_map; i++) { | 
 | 302 | 		unsigned long addr, end; | 
 | 303 |  | 
 | 304 | 		if (boot_mem_map.map[i].type != BOOT_MEM_RAM) | 
 | 305 | 			/* not usable memory */ | 
 | 306 | 			continue; | 
 | 307 |  | 
 | 308 | 		addr = PFN_UP(boot_mem_map.map[i].addr); | 
 | 309 | 		end = PFN_DOWN(boot_mem_map.map[i].addr + | 
 | 310 | 			       boot_mem_map.map[i].size); | 
 | 311 |  | 
 | 312 | 		if (pagenr >= addr && pagenr < end) | 
 | 313 | 			return 1; | 
 | 314 | 	} | 
 | 315 |  | 
 | 316 | 	return 0; | 
 | 317 | } | 
 | 318 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | void __init paging_init(void) | 
 | 320 | { | 
| Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 321 | 	unsigned long max_zone_pfns[MAX_NR_ZONES]; | 
 | 322 | 	unsigned long lastpfn; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 |  | 
 | 324 | 	pagetable_init(); | 
 | 325 |  | 
 | 326 | #ifdef CONFIG_HIGHMEM | 
 | 327 | 	kmap_init(); | 
 | 328 | #endif | 
| Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 329 | 	kmap_coherent_init(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 |  | 
| Atsushi Nemoto | 0550233 | 2007-03-21 00:36:02 +0900 | [diff] [blame] | 331 | #ifdef CONFIG_ZONE_DMA | 
| Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 332 | 	max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | #endif | 
| Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 334 | #ifdef CONFIG_ZONE_DMA32 | 
 | 335 | 	max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN; | 
 | 336 | #endif | 
 | 337 | 	max_zone_pfns[ZONE_NORMAL] = max_low_pfn; | 
 | 338 | 	lastpfn = max_low_pfn; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | #ifdef CONFIG_HIGHMEM | 
| Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 340 | 	max_zone_pfns[ZONE_HIGHMEM] = highend_pfn; | 
 | 341 | 	lastpfn = highend_pfn; | 
| Franck Bui-Huu | cbb8fc0 | 2006-12-06 16:48:28 +0100 | [diff] [blame] | 342 |  | 
| Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 343 | 	if (cpu_has_dc_aliases && max_low_pfn != highend_pfn) { | 
| Franck Bui-Huu | cbb8fc0 | 2006-12-06 16:48:28 +0100 | [diff] [blame] | 344 | 		printk(KERN_WARNING "This processor doesn't support highmem." | 
| Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 345 | 		       " %ldk highmem ignored\n", | 
 | 346 | 		       (highend_pfn - max_low_pfn) << (PAGE_SHIFT - 10)); | 
 | 347 | 		max_zone_pfns[ZONE_HIGHMEM] = max_low_pfn; | 
 | 348 | 		lastpfn = max_low_pfn; | 
| Franck Bui-Huu | cbb8fc0 | 2006-12-06 16:48:28 +0100 | [diff] [blame] | 349 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | #endif | 
 | 351 |  | 
| Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 352 | 	free_area_init_nodes(max_zone_pfns); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | } | 
 | 354 |  | 
| Daniel Jacobowitz | 3d50375 | 2005-01-20 19:59:54 -0500 | [diff] [blame] | 355 | #ifdef CONFIG_64BIT | 
 | 356 | static struct kcore_list kcore_kseg0; | 
 | 357 | #endif | 
 | 358 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | void __init mem_init(void) | 
 | 360 | { | 
 | 361 | 	unsigned long codesize, reservedpages, datasize, initsize; | 
 | 362 | 	unsigned long tmp, ram; | 
 | 363 |  | 
 | 364 | #ifdef CONFIG_HIGHMEM | 
 | 365 | #ifdef CONFIG_DISCONTIGMEM | 
 | 366 | #error "CONFIG_HIGHMEM and CONFIG_DISCONTIGMEM dont work together yet" | 
 | 367 | #endif | 
| Atsushi Nemoto | 565200a | 2006-07-07 00:26:02 +0900 | [diff] [blame] | 368 | 	max_mapnr = highend_pfn; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | #else | 
| Atsushi Nemoto | 565200a | 2006-07-07 00:26:02 +0900 | [diff] [blame] | 370 | 	max_mapnr = max_low_pfn; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | #endif | 
 | 372 | 	high_memory = (void *) __va(max_low_pfn << PAGE_SHIFT); | 
 | 373 |  | 
 | 374 | 	totalram_pages += free_all_bootmem(); | 
 | 375 | 	totalram_pages -= setup_zero_pages();	/* Setup zeroed pages.  */ | 
 | 376 |  | 
 | 377 | 	reservedpages = ram = 0; | 
 | 378 | 	for (tmp = 0; tmp < max_low_pfn; tmp++) | 
 | 379 | 		if (page_is_ram(tmp)) { | 
 | 380 | 			ram++; | 
| Chad Reese | b1c231f | 2006-05-30 17:16:49 -0700 | [diff] [blame] | 381 | 			if (PageReserved(pfn_to_page(tmp))) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | 				reservedpages++; | 
 | 383 | 		} | 
| Atsushi Nemoto | 565200a | 2006-07-07 00:26:02 +0900 | [diff] [blame] | 384 | 	num_physpages = ram; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 |  | 
 | 386 | #ifdef CONFIG_HIGHMEM | 
 | 387 | 	for (tmp = highstart_pfn; tmp < highend_pfn; tmp++) { | 
| Ralf Baechle | a8049c5 | 2007-11-04 04:42:03 +0000 | [diff] [blame] | 388 | 		struct page *page = pfn_to_page(tmp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 |  | 
 | 390 | 		if (!page_is_ram(tmp)) { | 
 | 391 | 			SetPageReserved(page); | 
 | 392 | 			continue; | 
 | 393 | 		} | 
 | 394 | 		ClearPageReserved(page); | 
| Nick Piggin | 7835e98 | 2006-03-22 00:08:40 -0800 | [diff] [blame] | 395 | 		init_page_count(page); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | 		__free_page(page); | 
 | 397 | 		totalhigh_pages++; | 
 | 398 | 	} | 
 | 399 | 	totalram_pages += totalhigh_pages; | 
| Atsushi Nemoto | 565200a | 2006-07-07 00:26:02 +0900 | [diff] [blame] | 400 | 	num_physpages += totalhigh_pages; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | #endif | 
 | 402 |  | 
 | 403 | 	codesize =  (unsigned long) &_etext - (unsigned long) &_text; | 
 | 404 | 	datasize =  (unsigned long) &_edata - (unsigned long) &_etext; | 
 | 405 | 	initsize =  (unsigned long) &__init_end - (unsigned long) &__init_begin; | 
 | 406 |  | 
| Daniel Jacobowitz | 3d50375 | 2005-01-20 19:59:54 -0500 | [diff] [blame] | 407 | #ifdef CONFIG_64BIT | 
 | 408 | 	if ((unsigned long) &_text > (unsigned long) CKSEG0) | 
 | 409 | 		/* The -4 is a hack so that user tools don't have to handle | 
 | 410 | 		   the overflow.  */ | 
| KAMEZAWA Hiroyuki | c30bb2a | 2009-09-22 16:45:43 -0700 | [diff] [blame] | 411 | 		kclist_add(&kcore_kseg0, (void *) CKSEG0, | 
 | 412 | 				0x80000000 - 4, KCORE_TEXT); | 
| Daniel Jacobowitz | 3d50375 | 2005-01-20 19:59:54 -0500 | [diff] [blame] | 413 | #endif | 
| Daniel Jacobowitz | 3d50375 | 2005-01-20 19:59:54 -0500 | [diff] [blame] | 414 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | 	printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, " | 
 | 416 | 	       "%ldk reserved, %ldk data, %ldk init, %ldk highmem)\n", | 
| Geert Uytterhoeven | cc013a8 | 2009-09-21 17:02:36 -0700 | [diff] [blame] | 417 | 	       nr_free_pages() << (PAGE_SHIFT-10), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | 	       ram << (PAGE_SHIFT-10), | 
 | 419 | 	       codesize >> 10, | 
 | 420 | 	       reservedpages << (PAGE_SHIFT-10), | 
 | 421 | 	       datasize >> 10, | 
 | 422 | 	       initsize >> 10, | 
 | 423 | 	       (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))); | 
 | 424 | } | 
| Yoichi Yuasa | b4819b5 | 2005-06-25 14:54:31 -0700 | [diff] [blame] | 425 | #endif /* !CONFIG_NEED_MULTIPLE_NODES */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 |  | 
| Atsushi Nemoto | c44e8d5 | 2006-12-30 00:43:59 +0900 | [diff] [blame] | 427 | void free_init_pages(const char *what, unsigned long begin, unsigned long end) | 
| Ralf Baechle | 6fd11a2 | 2006-03-24 13:21:50 +0000 | [diff] [blame] | 428 | { | 
| Franck Bui-Huu | acd86b8 | 2006-10-19 13:20:05 +0200 | [diff] [blame] | 429 | 	unsigned long pfn; | 
| Ralf Baechle | 6fd11a2 | 2006-03-24 13:21:50 +0000 | [diff] [blame] | 430 |  | 
| Franck Bui-Huu | acd86b8 | 2006-10-19 13:20:05 +0200 | [diff] [blame] | 431 | 	for (pfn = PFN_UP(begin); pfn < PFN_DOWN(end); pfn++) { | 
 | 432 | 		struct page *page = pfn_to_page(pfn); | 
 | 433 | 		void *addr = phys_to_virt(PFN_PHYS(pfn)); | 
 | 434 |  | 
 | 435 | 		ClearPageReserved(page); | 
 | 436 | 		init_page_count(page); | 
 | 437 | 		memset(addr, POISON_FREE_INITMEM, PAGE_SIZE); | 
 | 438 | 		__free_page(page); | 
| Ralf Baechle | 6fd11a2 | 2006-03-24 13:21:50 +0000 | [diff] [blame] | 439 | 		totalram_pages++; | 
 | 440 | 	} | 
 | 441 | 	printk(KERN_INFO "Freeing %s: %ldk freed\n", what, (end - begin) >> 10); | 
 | 442 | } | 
 | 443 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | #ifdef CONFIG_BLK_DEV_INITRD | 
 | 445 | void free_initrd_mem(unsigned long start, unsigned long end) | 
 | 446 | { | 
| Franck Bui-Huu | acd86b8 | 2006-10-19 13:20:05 +0200 | [diff] [blame] | 447 | 	free_init_pages("initrd memory", | 
 | 448 | 			virt_to_phys((void *)start), | 
 | 449 | 			virt_to_phys((void *)end)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | } | 
 | 451 | #endif | 
 | 452 |  | 
| Atsushi Nemoto | fb4bb13 | 2007-07-22 23:44:20 +0900 | [diff] [blame] | 453 | void __init_refok free_initmem(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | { | 
| Atsushi Nemoto | c44e8d5 | 2006-12-30 00:43:59 +0900 | [diff] [blame] | 455 | 	prom_free_prom_memory(); | 
| Franck Bui-Huu | acd86b8 | 2006-10-19 13:20:05 +0200 | [diff] [blame] | 456 | 	free_init_pages("unused kernel memory", | 
 | 457 | 			__pa_symbol(&__init_begin), | 
 | 458 | 			__pa_symbol(&__init_end)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | } | 
| Atsushi Nemoto | 69a6c31 | 2007-01-24 01:21:05 +0900 | [diff] [blame] | 460 |  | 
 | 461 | unsigned long pgd_current[NR_CPUS]; | 
 | 462 | /* | 
 | 463 |  * On 64-bit we've got three-level pagetables with a slightly | 
 | 464 |  * different layout ... | 
 | 465 |  */ | 
 | 466 | #define __page_aligned(order) __attribute__((__aligned__(PAGE_SIZE<<order))) | 
| Ralf Baechle | 9975e77 | 2007-08-13 12:44:41 +0100 | [diff] [blame] | 467 |  | 
 | 468 | /* | 
 | 469 |  * gcc 3.3 and older have trouble determining that PTRS_PER_PGD and PGD_ORDER | 
 | 470 |  * are constants.  So we use the variants from asm-offset.h until that gcc | 
 | 471 |  * will officially be retired. | 
 | 472 |  */ | 
 | 473 | pgd_t swapper_pg_dir[_PTRS_PER_PGD] __page_aligned(_PGD_ORDER); | 
| Atsushi Nemoto | 69a6c31 | 2007-01-24 01:21:05 +0900 | [diff] [blame] | 474 | #ifdef CONFIG_64BIT | 
| Atsushi Nemoto | 69a6c31 | 2007-01-24 01:21:05 +0900 | [diff] [blame] | 475 | pmd_t invalid_pmd_table[PTRS_PER_PMD] __page_aligned(PMD_ORDER); | 
 | 476 | #endif | 
 | 477 | pte_t invalid_pte_table[PTRS_PER_PTE] __page_aligned(PTE_ORDER); |