blob: ce551ec2cb23077d4f3d29b79890fbc47eb797bc [file] [log] [blame]
Russell Kingd111e8f2006-09-27 15:27:33 +01001/*
2 * linux/arch/arm/mm/mmu.c
3 *
4 * Copyright (C) 1995-2005 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
Russell Kingae8f1542006-09-27 15:38:34 +010010#include <linux/module.h>
Russell Kingd111e8f2006-09-27 15:27:33 +010011#include <linux/kernel.h>
12#include <linux/errno.h>
13#include <linux/init.h>
14#include <linux/bootmem.h>
15#include <linux/mman.h>
16#include <linux/nodemask.h>
17
Russell King0ba8b9b2008-08-10 18:08:10 +010018#include <asm/cputype.h>
Russell Kingd111e8f2006-09-27 15:27:33 +010019#include <asm/mach-types.h>
Russell King37efe642008-12-01 11:53:07 +000020#include <asm/sections.h>
Nicolas Pitre3f973e22008-11-04 00:48:42 -050021#include <asm/cachetype.h>
Russell Kingd111e8f2006-09-27 15:27:33 +010022#include <asm/setup.h>
23#include <asm/sizes.h>
24#include <asm/tlb.h>
Nicolas Pitred73cd422008-09-15 16:44:55 -040025#include <asm/highmem.h>
Russell Kingd111e8f2006-09-27 15:27:33 +010026
27#include <asm/mach/arch.h>
28#include <asm/mach/map.h>
29
30#include "mm.h"
31
32DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
33
Russell Kingd111e8f2006-09-27 15:27:33 +010034/*
35 * empty_zero_page is a special page that is used for
36 * zero-initialized data and COW.
37 */
38struct page *empty_zero_page;
Aneesh Kumar K.V3653f3a2008-04-29 08:11:12 -040039EXPORT_SYMBOL(empty_zero_page);
Russell Kingd111e8f2006-09-27 15:27:33 +010040
41/*
42 * The pmd table for the upper-most set of pages.
43 */
44pmd_t *top_pmd;
45
Russell Kingae8f1542006-09-27 15:38:34 +010046#define CPOLICY_UNCACHED 0
47#define CPOLICY_BUFFERED 1
48#define CPOLICY_WRITETHROUGH 2
49#define CPOLICY_WRITEBACK 3
50#define CPOLICY_WRITEALLOC 4
51
52static unsigned int cachepolicy __initdata = CPOLICY_WRITEBACK;
53static unsigned int ecc_mask __initdata = 0;
Imre_Deak44b18692007-02-11 13:45:13 +010054pgprot_t pgprot_user;
Russell Kingae8f1542006-09-27 15:38:34 +010055pgprot_t pgprot_kernel;
56
Imre_Deak44b18692007-02-11 13:45:13 +010057EXPORT_SYMBOL(pgprot_user);
Russell Kingae8f1542006-09-27 15:38:34 +010058EXPORT_SYMBOL(pgprot_kernel);
59
60struct cachepolicy {
61 const char policy[16];
62 unsigned int cr_mask;
63 unsigned int pmd;
64 unsigned int pte;
65};
66
67static struct cachepolicy cache_policies[] __initdata = {
68 {
69 .policy = "uncached",
70 .cr_mask = CR_W|CR_C,
71 .pmd = PMD_SECT_UNCACHED,
Russell Kingbb30f362008-09-06 20:04:59 +010072 .pte = L_PTE_MT_UNCACHED,
Russell Kingae8f1542006-09-27 15:38:34 +010073 }, {
74 .policy = "buffered",
75 .cr_mask = CR_C,
76 .pmd = PMD_SECT_BUFFERED,
Russell Kingbb30f362008-09-06 20:04:59 +010077 .pte = L_PTE_MT_BUFFERABLE,
Russell Kingae8f1542006-09-27 15:38:34 +010078 }, {
79 .policy = "writethrough",
80 .cr_mask = 0,
81 .pmd = PMD_SECT_WT,
Russell Kingbb30f362008-09-06 20:04:59 +010082 .pte = L_PTE_MT_WRITETHROUGH,
Russell Kingae8f1542006-09-27 15:38:34 +010083 }, {
84 .policy = "writeback",
85 .cr_mask = 0,
86 .pmd = PMD_SECT_WB,
Russell Kingbb30f362008-09-06 20:04:59 +010087 .pte = L_PTE_MT_WRITEBACK,
Russell Kingae8f1542006-09-27 15:38:34 +010088 }, {
89 .policy = "writealloc",
90 .cr_mask = 0,
91 .pmd = PMD_SECT_WBWA,
Russell Kingbb30f362008-09-06 20:04:59 +010092 .pte = L_PTE_MT_WRITEALLOC,
Russell Kingae8f1542006-09-27 15:38:34 +010093 }
94};
95
96/*
Simon Arlott6cbdc8c2007-05-11 20:40:30 +010097 * These are useful for identifying cache coherency
Russell Kingae8f1542006-09-27 15:38:34 +010098 * problems by allowing the cache or the cache and
99 * writebuffer to be turned off. (Note: the write
100 * buffer should not be on and the cache off).
101 */
102static void __init early_cachepolicy(char **p)
103{
104 int i;
105
106 for (i = 0; i < ARRAY_SIZE(cache_policies); i++) {
107 int len = strlen(cache_policies[i].policy);
108
109 if (memcmp(*p, cache_policies[i].policy, len) == 0) {
110 cachepolicy = i;
111 cr_alignment &= ~cache_policies[i].cr_mask;
112 cr_no_alignment &= ~cache_policies[i].cr_mask;
113 *p += len;
114 break;
115 }
116 }
117 if (i == ARRAY_SIZE(cache_policies))
118 printk(KERN_ERR "ERROR: unknown or unsupported cache policy\n");
Catalin Marinas11179d82007-07-20 11:42:24 +0100119 if (cpu_architecture() >= CPU_ARCH_ARMv6) {
120 printk(KERN_WARNING "Only cachepolicy=writeback supported on ARMv6 and later\n");
121 cachepolicy = CPOLICY_WRITEBACK;
122 }
Russell Kingae8f1542006-09-27 15:38:34 +0100123 flush_cache_all();
124 set_cr(cr_alignment);
125}
126__early_param("cachepolicy=", early_cachepolicy);
127
128static void __init early_nocache(char **__unused)
129{
130 char *p = "buffered";
131 printk(KERN_WARNING "nocache is deprecated; use cachepolicy=%s\n", p);
132 early_cachepolicy(&p);
133}
134__early_param("nocache", early_nocache);
135
136static void __init early_nowrite(char **__unused)
137{
138 char *p = "uncached";
139 printk(KERN_WARNING "nowb is deprecated; use cachepolicy=%s\n", p);
140 early_cachepolicy(&p);
141}
142__early_param("nowb", early_nowrite);
143
144static void __init early_ecc(char **p)
145{
146 if (memcmp(*p, "on", 2) == 0) {
147 ecc_mask = PMD_PROTECTION;
148 *p += 2;
149 } else if (memcmp(*p, "off", 3) == 0) {
150 ecc_mask = 0;
151 *p += 3;
152 }
153}
154__early_param("ecc=", early_ecc);
155
156static int __init noalign_setup(char *__unused)
157{
158 cr_alignment &= ~CR_A;
159 cr_no_alignment &= ~CR_A;
160 set_cr(cr_alignment);
161 return 1;
162}
163__setup("noalign", noalign_setup);
164
Russell King255d1f82006-12-18 00:12:47 +0000165#ifndef CONFIG_SMP
166void adjust_cr(unsigned long mask, unsigned long set)
167{
168 unsigned long flags;
169
170 mask &= ~CR_A;
171
172 set &= mask;
173
174 local_irq_save(flags);
175
176 cr_no_alignment = (cr_no_alignment & ~mask) | set;
177 cr_alignment = (cr_alignment & ~mask) | set;
178
179 set_cr((get_cr() & ~mask) | set);
180
181 local_irq_restore(flags);
182}
183#endif
184
Russell King0af92be2007-05-05 20:28:16 +0100185#define PROT_PTE_DEVICE L_PTE_PRESENT|L_PTE_YOUNG|L_PTE_DIRTY|L_PTE_WRITE
Russell Kingb1cce6b2008-11-04 10:52:28 +0000186#define PROT_SECT_DEVICE PMD_TYPE_SECT|PMD_SECT_AP_WRITE
Russell King0af92be2007-05-05 20:28:16 +0100187
Russell Kingb29e9f52007-04-21 10:47:29 +0100188static struct mem_type mem_types[] = {
Russell King0af92be2007-05-05 20:28:16 +0100189 [MT_DEVICE] = { /* Strongly ordered / ARMv6 shared device */
Russell Kingbb30f362008-09-06 20:04:59 +0100190 .prot_pte = PROT_PTE_DEVICE | L_PTE_MT_DEV_SHARED |
191 L_PTE_SHARED,
Russell King0af92be2007-05-05 20:28:16 +0100192 .prot_l1 = PMD_TYPE_TABLE,
Russell Kingb1cce6b2008-11-04 10:52:28 +0000193 .prot_sect = PROT_SECT_DEVICE | PMD_SECT_S,
Russell King0af92be2007-05-05 20:28:16 +0100194 .domain = DOMAIN_IO,
195 },
196 [MT_DEVICE_NONSHARED] = { /* ARMv6 non-shared device */
Russell Kingbb30f362008-09-06 20:04:59 +0100197 .prot_pte = PROT_PTE_DEVICE | L_PTE_MT_DEV_NONSHARED,
Russell King0af92be2007-05-05 20:28:16 +0100198 .prot_l1 = PMD_TYPE_TABLE,
Russell Kingb1cce6b2008-11-04 10:52:28 +0000199 .prot_sect = PROT_SECT_DEVICE,
Russell King0af92be2007-05-05 20:28:16 +0100200 .domain = DOMAIN_IO,
201 },
202 [MT_DEVICE_CACHED] = { /* ioremap_cached */
Russell Kingbb30f362008-09-06 20:04:59 +0100203 .prot_pte = PROT_PTE_DEVICE | L_PTE_MT_DEV_CACHED,
Russell King0af92be2007-05-05 20:28:16 +0100204 .prot_l1 = PMD_TYPE_TABLE,
205 .prot_sect = PROT_SECT_DEVICE | PMD_SECT_WB,
206 .domain = DOMAIN_IO,
207 },
Lennert Buytenhek1ad77a82008-09-05 13:17:11 +0100208 [MT_DEVICE_WC] = { /* ioremap_wc */
Russell Kingbb30f362008-09-06 20:04:59 +0100209 .prot_pte = PROT_PTE_DEVICE | L_PTE_MT_DEV_WC,
Russell King0af92be2007-05-05 20:28:16 +0100210 .prot_l1 = PMD_TYPE_TABLE,
Russell Kingb1cce6b2008-11-04 10:52:28 +0000211 .prot_sect = PROT_SECT_DEVICE,
Russell King0af92be2007-05-05 20:28:16 +0100212 .domain = DOMAIN_IO,
Russell Kingae8f1542006-09-27 15:38:34 +0100213 },
Russell Kingebb4c652008-11-09 11:18:36 +0000214 [MT_UNCACHED] = {
215 .prot_pte = PROT_PTE_DEVICE,
216 .prot_l1 = PMD_TYPE_TABLE,
217 .prot_sect = PMD_TYPE_SECT | PMD_SECT_XN,
218 .domain = DOMAIN_IO,
219 },
Russell Kingae8f1542006-09-27 15:38:34 +0100220 [MT_CACHECLEAN] = {
Russell King9ef79632007-05-05 20:03:35 +0100221 .prot_sect = PMD_TYPE_SECT | PMD_SECT_XN,
Russell Kingae8f1542006-09-27 15:38:34 +0100222 .domain = DOMAIN_KERNEL,
223 },
224 [MT_MINICLEAN] = {
Russell King9ef79632007-05-05 20:03:35 +0100225 .prot_sect = PMD_TYPE_SECT | PMD_SECT_XN | PMD_SECT_MINICACHE,
Russell Kingae8f1542006-09-27 15:38:34 +0100226 .domain = DOMAIN_KERNEL,
227 },
228 [MT_LOW_VECTORS] = {
229 .prot_pte = L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_DIRTY |
230 L_PTE_EXEC,
231 .prot_l1 = PMD_TYPE_TABLE,
232 .domain = DOMAIN_USER,
233 },
234 [MT_HIGH_VECTORS] = {
235 .prot_pte = L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_DIRTY |
236 L_PTE_USER | L_PTE_EXEC,
237 .prot_l1 = PMD_TYPE_TABLE,
238 .domain = DOMAIN_USER,
239 },
240 [MT_MEMORY] = {
Russell King9ef79632007-05-05 20:03:35 +0100241 .prot_sect = PMD_TYPE_SECT | PMD_SECT_AP_WRITE,
Russell Kingae8f1542006-09-27 15:38:34 +0100242 .domain = DOMAIN_KERNEL,
243 },
244 [MT_ROM] = {
Russell King9ef79632007-05-05 20:03:35 +0100245 .prot_sect = PMD_TYPE_SECT,
Russell Kingae8f1542006-09-27 15:38:34 +0100246 .domain = DOMAIN_KERNEL,
247 },
Paul Walmsleye4707dd2009-03-12 20:11:43 +0100248 [MT_MEMORY_NONCACHED] = {
249 .prot_sect = PMD_TYPE_SECT | PMD_SECT_AP_WRITE,
250 .domain = DOMAIN_KERNEL,
251 },
Russell Kingae8f1542006-09-27 15:38:34 +0100252};
253
Russell Kingb29e9f52007-04-21 10:47:29 +0100254const struct mem_type *get_mem_type(unsigned int type)
255{
256 return type < ARRAY_SIZE(mem_types) ? &mem_types[type] : NULL;
257}
Hiroshi DOYU69d3a842009-01-28 21:32:08 +0200258EXPORT_SYMBOL(get_mem_type);
Russell Kingb29e9f52007-04-21 10:47:29 +0100259
Russell Kingae8f1542006-09-27 15:38:34 +0100260/*
261 * Adjust the PMD section entries according to the CPU in use.
262 */
263static void __init build_mem_type_table(void)
264{
265 struct cachepolicy *cp;
266 unsigned int cr = get_cr();
Russell Kingbb30f362008-09-06 20:04:59 +0100267 unsigned int user_pgprot, kern_pgprot, vecs_pgprot;
Russell Kingae8f1542006-09-27 15:38:34 +0100268 int cpu_arch = cpu_architecture();
269 int i;
270
Catalin Marinas11179d82007-07-20 11:42:24 +0100271 if (cpu_arch < CPU_ARCH_ARMv6) {
Russell Kingae8f1542006-09-27 15:38:34 +0100272#if defined(CONFIG_CPU_DCACHE_DISABLE)
Catalin Marinas11179d82007-07-20 11:42:24 +0100273 if (cachepolicy > CPOLICY_BUFFERED)
274 cachepolicy = CPOLICY_BUFFERED;
Russell Kingae8f1542006-09-27 15:38:34 +0100275#elif defined(CONFIG_CPU_DCACHE_WRITETHROUGH)
Catalin Marinas11179d82007-07-20 11:42:24 +0100276 if (cachepolicy > CPOLICY_WRITETHROUGH)
277 cachepolicy = CPOLICY_WRITETHROUGH;
Russell Kingae8f1542006-09-27 15:38:34 +0100278#endif
Catalin Marinas11179d82007-07-20 11:42:24 +0100279 }
Russell Kingae8f1542006-09-27 15:38:34 +0100280 if (cpu_arch < CPU_ARCH_ARMv5) {
281 if (cachepolicy >= CPOLICY_WRITEALLOC)
282 cachepolicy = CPOLICY_WRITEBACK;
283 ecc_mask = 0;
284 }
Russell Kingbb30f362008-09-06 20:04:59 +0100285#ifdef CONFIG_SMP
286 cachepolicy = CPOLICY_WRITEALLOC;
287#endif
Russell Kingae8f1542006-09-27 15:38:34 +0100288
289 /*
Russell Kingb1cce6b2008-11-04 10:52:28 +0000290 * Strip out features not present on earlier architectures.
291 * Pre-ARMv5 CPUs don't have TEX bits. Pre-ARMv6 CPUs or those
292 * without extended page tables don't have the 'Shared' bit.
Lennert Buytenhek1ad77a82008-09-05 13:17:11 +0100293 */
Russell Kingb1cce6b2008-11-04 10:52:28 +0000294 if (cpu_arch < CPU_ARCH_ARMv5)
295 for (i = 0; i < ARRAY_SIZE(mem_types); i++)
296 mem_types[i].prot_sect &= ~PMD_SECT_TEX(7);
297 if ((cpu_arch < CPU_ARCH_ARMv6 || !(cr & CR_XP)) && !cpu_is_xsc3())
298 for (i = 0; i < ARRAY_SIZE(mem_types); i++)
299 mem_types[i].prot_sect &= ~PMD_SECT_S;
Russell Kingae8f1542006-09-27 15:38:34 +0100300
301 /*
Russell Kingb1cce6b2008-11-04 10:52:28 +0000302 * ARMv5 and lower, bit 4 must be set for page tables (was: cache
303 * "update-able on write" bit on ARM610). However, Xscale and
304 * Xscale3 require this bit to be cleared.
Russell Kingae8f1542006-09-27 15:38:34 +0100305 */
Russell Kingb1cce6b2008-11-04 10:52:28 +0000306 if (cpu_is_xscale() || cpu_is_xsc3()) {
Russell King9ef79632007-05-05 20:03:35 +0100307 for (i = 0; i < ARRAY_SIZE(mem_types); i++) {
Russell Kingae8f1542006-09-27 15:38:34 +0100308 mem_types[i].prot_sect &= ~PMD_BIT4;
Russell King9ef79632007-05-05 20:03:35 +0100309 mem_types[i].prot_l1 &= ~PMD_BIT4;
310 }
311 } else if (cpu_arch < CPU_ARCH_ARMv6) {
312 for (i = 0; i < ARRAY_SIZE(mem_types); i++) {
Russell Kingae8f1542006-09-27 15:38:34 +0100313 if (mem_types[i].prot_l1)
314 mem_types[i].prot_l1 |= PMD_BIT4;
Russell King9ef79632007-05-05 20:03:35 +0100315 if (mem_types[i].prot_sect)
316 mem_types[i].prot_sect |= PMD_BIT4;
317 }
318 }
Russell Kingae8f1542006-09-27 15:38:34 +0100319
Russell Kingb1cce6b2008-11-04 10:52:28 +0000320 /*
321 * Mark the device areas according to the CPU/architecture.
322 */
323 if (cpu_is_xsc3() || (cpu_arch >= CPU_ARCH_ARMv6 && (cr & CR_XP))) {
324 if (!cpu_is_xsc3()) {
325 /*
326 * Mark device regions on ARMv6+ as execute-never
327 * to prevent speculative instruction fetches.
328 */
329 mem_types[MT_DEVICE].prot_sect |= PMD_SECT_XN;
330 mem_types[MT_DEVICE_NONSHARED].prot_sect |= PMD_SECT_XN;
331 mem_types[MT_DEVICE_CACHED].prot_sect |= PMD_SECT_XN;
332 mem_types[MT_DEVICE_WC].prot_sect |= PMD_SECT_XN;
333 }
334 if (cpu_arch >= CPU_ARCH_ARMv7 && (cr & CR_TRE)) {
335 /*
336 * For ARMv7 with TEX remapping,
337 * - shared device is SXCB=1100
338 * - nonshared device is SXCB=0100
339 * - write combine device mem is SXCB=0001
340 * (Uncached Normal memory)
341 */
342 mem_types[MT_DEVICE].prot_sect |= PMD_SECT_TEX(1);
343 mem_types[MT_DEVICE_NONSHARED].prot_sect |= PMD_SECT_TEX(1);
344 mem_types[MT_DEVICE_WC].prot_sect |= PMD_SECT_BUFFERABLE;
345 } else if (cpu_is_xsc3()) {
346 /*
347 * For Xscale3,
348 * - shared device is TEXCB=00101
349 * - nonshared device is TEXCB=01000
350 * - write combine device mem is TEXCB=00100
351 * (Inner/Outer Uncacheable in xsc3 parlance)
352 */
353 mem_types[MT_DEVICE].prot_sect |= PMD_SECT_TEX(1) | PMD_SECT_BUFFERED;
354 mem_types[MT_DEVICE_NONSHARED].prot_sect |= PMD_SECT_TEX(2);
355 mem_types[MT_DEVICE_WC].prot_sect |= PMD_SECT_TEX(1);
356 } else {
357 /*
358 * For ARMv6 and ARMv7 without TEX remapping,
359 * - shared device is TEXCB=00001
360 * - nonshared device is TEXCB=01000
361 * - write combine device mem is TEXCB=00100
362 * (Uncached Normal in ARMv6 parlance).
363 */
364 mem_types[MT_DEVICE].prot_sect |= PMD_SECT_BUFFERED;
365 mem_types[MT_DEVICE_NONSHARED].prot_sect |= PMD_SECT_TEX(2);
366 mem_types[MT_DEVICE_WC].prot_sect |= PMD_SECT_TEX(1);
367 }
368 } else {
369 /*
370 * On others, write combining is "Uncached/Buffered"
371 */
372 mem_types[MT_DEVICE_WC].prot_sect |= PMD_SECT_BUFFERABLE;
373 }
374
375 /*
376 * Now deal with the memory-type mappings
377 */
Russell Kingae8f1542006-09-27 15:38:34 +0100378 cp = &cache_policies[cachepolicy];
Russell Kingbb30f362008-09-06 20:04:59 +0100379 vecs_pgprot = kern_pgprot = user_pgprot = cp->pte;
380
381#ifndef CONFIG_SMP
382 /*
383 * Only use write-through for non-SMP systems
384 */
385 if (cpu_arch >= CPU_ARCH_ARMv5 && cachepolicy > CPOLICY_WRITETHROUGH)
386 vecs_pgprot = cache_policies[CPOLICY_WRITETHROUGH].pte;
387#endif
Russell Kingae8f1542006-09-27 15:38:34 +0100388
389 /*
390 * Enable CPU-specific coherency if supported.
391 * (Only available on XSC3 at the moment.)
392 */
Russell Kingb1cce6b2008-11-04 10:52:28 +0000393 if (arch_is_coherent() && cpu_is_xsc3())
394 mem_types[MT_MEMORY].prot_sect |= PMD_SECT_S;
Russell Kingae8f1542006-09-27 15:38:34 +0100395
396 /*
397 * ARMv6 and above have extended page tables.
398 */
399 if (cpu_arch >= CPU_ARCH_ARMv6 && (cr & CR_XP)) {
400 /*
Russell Kingae8f1542006-09-27 15:38:34 +0100401 * Mark cache clean areas and XIP ROM read only
402 * from SVC mode and no access from userspace.
403 */
404 mem_types[MT_ROM].prot_sect |= PMD_SECT_APX|PMD_SECT_AP_WRITE;
405 mem_types[MT_MINICLEAN].prot_sect |= PMD_SECT_APX|PMD_SECT_AP_WRITE;
406 mem_types[MT_CACHECLEAN].prot_sect |= PMD_SECT_APX|PMD_SECT_AP_WRITE;
407
Russell Kingae8f1542006-09-27 15:38:34 +0100408#ifdef CONFIG_SMP
409 /*
410 * Mark memory with the "shared" attribute for SMP systems
411 */
412 user_pgprot |= L_PTE_SHARED;
413 kern_pgprot |= L_PTE_SHARED;
Russell Kingbb30f362008-09-06 20:04:59 +0100414 vecs_pgprot |= L_PTE_SHARED;
Russell Kingae8f1542006-09-27 15:38:34 +0100415 mem_types[MT_MEMORY].prot_sect |= PMD_SECT_S;
Paul Walmsleye4707dd2009-03-12 20:11:43 +0100416 mem_types[MT_MEMORY_NONCACHED].prot_sect |= PMD_SECT_S;
Russell Kingae8f1542006-09-27 15:38:34 +0100417#endif
418 }
419
Paul Walmsleye4707dd2009-03-12 20:11:43 +0100420 /*
421 * Non-cacheable Normal - intended for memory areas that must
422 * not cause dirty cache line writebacks when used
423 */
424 if (cpu_arch >= CPU_ARCH_ARMv6) {
425 if (cpu_arch >= CPU_ARCH_ARMv7 && (cr & CR_TRE)) {
426 /* Non-cacheable Normal is XCB = 001 */
427 mem_types[MT_MEMORY_NONCACHED].prot_sect |=
428 PMD_SECT_BUFFERED;
429 } else {
430 /* For both ARMv6 and non-TEX-remapping ARMv7 */
431 mem_types[MT_MEMORY_NONCACHED].prot_sect |=
432 PMD_SECT_TEX(1);
433 }
434 } else {
435 mem_types[MT_MEMORY_NONCACHED].prot_sect |= PMD_SECT_BUFFERABLE;
436 }
437
Russell Kingae8f1542006-09-27 15:38:34 +0100438 for (i = 0; i < 16; i++) {
439 unsigned long v = pgprot_val(protection_map[i]);
Russell Kingbb30f362008-09-06 20:04:59 +0100440 protection_map[i] = __pgprot(v | user_pgprot);
Russell Kingae8f1542006-09-27 15:38:34 +0100441 }
442
Russell Kingbb30f362008-09-06 20:04:59 +0100443 mem_types[MT_LOW_VECTORS].prot_pte |= vecs_pgprot;
444 mem_types[MT_HIGH_VECTORS].prot_pte |= vecs_pgprot;
Russell Kingae8f1542006-09-27 15:38:34 +0100445
Imre_Deak44b18692007-02-11 13:45:13 +0100446 pgprot_user = __pgprot(L_PTE_PRESENT | L_PTE_YOUNG | user_pgprot);
Russell Kingae8f1542006-09-27 15:38:34 +0100447 pgprot_kernel = __pgprot(L_PTE_PRESENT | L_PTE_YOUNG |
448 L_PTE_DIRTY | L_PTE_WRITE |
449 L_PTE_EXEC | kern_pgprot);
450
451 mem_types[MT_LOW_VECTORS].prot_l1 |= ecc_mask;
452 mem_types[MT_HIGH_VECTORS].prot_l1 |= ecc_mask;
453 mem_types[MT_MEMORY].prot_sect |= ecc_mask | cp->pmd;
454 mem_types[MT_ROM].prot_sect |= cp->pmd;
455
456 switch (cp->pmd) {
457 case PMD_SECT_WT:
458 mem_types[MT_CACHECLEAN].prot_sect |= PMD_SECT_WT;
459 break;
460 case PMD_SECT_WB:
461 case PMD_SECT_WBWA:
462 mem_types[MT_CACHECLEAN].prot_sect |= PMD_SECT_WB;
463 break;
464 }
465 printk("Memory policy: ECC %sabled, Data cache %s\n",
466 ecc_mask ? "en" : "dis", cp->policy);
Russell King2497f0a2007-04-21 09:59:44 +0100467
468 for (i = 0; i < ARRAY_SIZE(mem_types); i++) {
469 struct mem_type *t = &mem_types[i];
470 if (t->prot_l1)
471 t->prot_l1 |= PMD_DOMAIN(t->domain);
472 if (t->prot_sect)
473 t->prot_sect |= PMD_DOMAIN(t->domain);
474 }
Russell Kingae8f1542006-09-27 15:38:34 +0100475}
476
477#define vectors_base() (vectors_high() ? 0xffff0000 : 0)
478
Russell King24e6c692007-04-21 10:21:28 +0100479static void __init alloc_init_pte(pmd_t *pmd, unsigned long addr,
480 unsigned long end, unsigned long pfn,
481 const struct mem_type *type)
Russell Kingae8f1542006-09-27 15:38:34 +0100482{
Russell King24e6c692007-04-21 10:21:28 +0100483 pte_t *pte;
Russell Kingae8f1542006-09-27 15:38:34 +0100484
Russell King24e6c692007-04-21 10:21:28 +0100485 if (pmd_none(*pmd)) {
486 pte = alloc_bootmem_low_pages(2 * PTRS_PER_PTE * sizeof(pte_t));
487 __pmd_populate(pmd, __pa(pte) | type->prot_l1);
488 }
Russell Kingae8f1542006-09-27 15:38:34 +0100489
Russell King24e6c692007-04-21 10:21:28 +0100490 pte = pte_offset_kernel(pmd, addr);
491 do {
Russell King40d192b2008-09-06 21:15:56 +0100492 set_pte_ext(pte, pfn_pte(pfn, __pgprot(type->prot_pte)), 0);
Russell King24e6c692007-04-21 10:21:28 +0100493 pfn++;
494 } while (pte++, addr += PAGE_SIZE, addr != end);
Russell Kingae8f1542006-09-27 15:38:34 +0100495}
496
Russell King24e6c692007-04-21 10:21:28 +0100497static void __init alloc_init_section(pgd_t *pgd, unsigned long addr,
498 unsigned long end, unsigned long phys,
499 const struct mem_type *type)
Russell Kingae8f1542006-09-27 15:38:34 +0100500{
Russell King24e6c692007-04-21 10:21:28 +0100501 pmd_t *pmd = pmd_offset(pgd, addr);
Russell Kingae8f1542006-09-27 15:38:34 +0100502
Russell King24e6c692007-04-21 10:21:28 +0100503 /*
504 * Try a section mapping - end, addr and phys must all be aligned
505 * to a section boundary. Note that PMDs refer to the individual
506 * L1 entries, whereas PGDs refer to a group of L1 entries making
507 * up one logical pointer to an L2 table.
508 */
509 if (((addr | end | phys) & ~SECTION_MASK) == 0) {
510 pmd_t *p = pmd;
Russell Kingae8f1542006-09-27 15:38:34 +0100511
Russell King24e6c692007-04-21 10:21:28 +0100512 if (addr & SECTION_SIZE)
513 pmd++;
514
515 do {
516 *pmd = __pmd(phys | type->prot_sect);
517 phys += SECTION_SIZE;
518 } while (pmd++, addr += SECTION_SIZE, addr != end);
519
520 flush_pmd_entry(p);
521 } else {
522 /*
523 * No need to loop; pte's aren't interested in the
524 * individual L1 entries.
525 */
526 alloc_init_pte(pmd, addr, end, __phys_to_pfn(phys), type);
Russell Kingae8f1542006-09-27 15:38:34 +0100527 }
Russell Kingae8f1542006-09-27 15:38:34 +0100528}
529
Russell King4a56c1e2007-04-21 10:16:48 +0100530static void __init create_36bit_mapping(struct map_desc *md,
531 const struct mem_type *type)
532{
533 unsigned long phys, addr, length, end;
534 pgd_t *pgd;
535
536 addr = md->virtual;
537 phys = (unsigned long)__pfn_to_phys(md->pfn);
538 length = PAGE_ALIGN(md->length);
539
540 if (!(cpu_architecture() >= CPU_ARCH_ARMv6 || cpu_is_xsc3())) {
541 printk(KERN_ERR "MM: CPU does not support supersection "
542 "mapping for 0x%08llx at 0x%08lx\n",
543 __pfn_to_phys((u64)md->pfn), addr);
544 return;
545 }
546
547 /* N.B. ARMv6 supersections are only defined to work with domain 0.
548 * Since domain assignments can in fact be arbitrary, the
549 * 'domain == 0' check below is required to insure that ARMv6
550 * supersections are only allocated for domain 0 regardless
551 * of the actual domain assignments in use.
552 */
553 if (type->domain) {
554 printk(KERN_ERR "MM: invalid domain in supersection "
555 "mapping for 0x%08llx at 0x%08lx\n",
556 __pfn_to_phys((u64)md->pfn), addr);
557 return;
558 }
559
560 if ((addr | length | __pfn_to_phys(md->pfn)) & ~SUPERSECTION_MASK) {
561 printk(KERN_ERR "MM: cannot create mapping for "
562 "0x%08llx at 0x%08lx invalid alignment\n",
563 __pfn_to_phys((u64)md->pfn), addr);
564 return;
565 }
566
567 /*
568 * Shift bits [35:32] of address into bits [23:20] of PMD
569 * (See ARMv6 spec).
570 */
571 phys |= (((md->pfn >> (32 - PAGE_SHIFT)) & 0xF) << 20);
572
573 pgd = pgd_offset_k(addr);
574 end = addr + length;
575 do {
576 pmd_t *pmd = pmd_offset(pgd, addr);
577 int i;
578
579 for (i = 0; i < 16; i++)
580 *pmd++ = __pmd(phys | type->prot_sect | PMD_SECT_SUPER);
581
582 addr += SUPERSECTION_SIZE;
583 phys += SUPERSECTION_SIZE;
584 pgd += SUPERSECTION_SIZE >> PGDIR_SHIFT;
585 } while (addr != end);
586}
587
Russell Kingae8f1542006-09-27 15:38:34 +0100588/*
589 * Create the page directory entries and any necessary
590 * page tables for the mapping specified by `md'. We
591 * are able to cope here with varying sizes and address
592 * offsets, and we take full advantage of sections and
593 * supersections.
594 */
595void __init create_mapping(struct map_desc *md)
596{
Russell King24e6c692007-04-21 10:21:28 +0100597 unsigned long phys, addr, length, end;
Russell Kingd5c98172007-04-21 10:05:32 +0100598 const struct mem_type *type;
Russell King24e6c692007-04-21 10:21:28 +0100599 pgd_t *pgd;
Russell Kingae8f1542006-09-27 15:38:34 +0100600
601 if (md->virtual != vectors_base() && md->virtual < TASK_SIZE) {
602 printk(KERN_WARNING "BUG: not creating mapping for "
603 "0x%08llx at 0x%08lx in user region\n",
604 __pfn_to_phys((u64)md->pfn), md->virtual);
605 return;
606 }
607
608 if ((md->type == MT_DEVICE || md->type == MT_ROM) &&
609 md->virtual >= PAGE_OFFSET && md->virtual < VMALLOC_END) {
610 printk(KERN_WARNING "BUG: mapping for 0x%08llx at 0x%08lx "
611 "overlaps vmalloc space\n",
612 __pfn_to_phys((u64)md->pfn), md->virtual);
613 }
614
Russell Kingd5c98172007-04-21 10:05:32 +0100615 type = &mem_types[md->type];
Russell Kingae8f1542006-09-27 15:38:34 +0100616
617 /*
618 * Catch 36-bit addresses
619 */
Russell King4a56c1e2007-04-21 10:16:48 +0100620 if (md->pfn >= 0x100000) {
621 create_36bit_mapping(md, type);
622 return;
Russell Kingae8f1542006-09-27 15:38:34 +0100623 }
624
Russell King7b9c7b42007-07-04 21:16:33 +0100625 addr = md->virtual & PAGE_MASK;
Russell King24e6c692007-04-21 10:21:28 +0100626 phys = (unsigned long)__pfn_to_phys(md->pfn);
Russell King7b9c7b42007-07-04 21:16:33 +0100627 length = PAGE_ALIGN(md->length + (md->virtual & ~PAGE_MASK));
Russell Kingae8f1542006-09-27 15:38:34 +0100628
Russell King24e6c692007-04-21 10:21:28 +0100629 if (type->prot_l1 == 0 && ((addr | phys | length) & ~SECTION_MASK)) {
Russell Kingae8f1542006-09-27 15:38:34 +0100630 printk(KERN_WARNING "BUG: map for 0x%08lx at 0x%08lx can not "
631 "be mapped using pages, ignoring.\n",
Russell King24e6c692007-04-21 10:21:28 +0100632 __pfn_to_phys(md->pfn), addr);
Russell Kingae8f1542006-09-27 15:38:34 +0100633 return;
634 }
635
Russell King24e6c692007-04-21 10:21:28 +0100636 pgd = pgd_offset_k(addr);
637 end = addr + length;
638 do {
639 unsigned long next = pgd_addr_end(addr, end);
Russell Kingae8f1542006-09-27 15:38:34 +0100640
Russell King24e6c692007-04-21 10:21:28 +0100641 alloc_init_section(pgd, addr, next, phys, type);
Russell Kingae8f1542006-09-27 15:38:34 +0100642
Russell King24e6c692007-04-21 10:21:28 +0100643 phys += next - addr;
644 addr = next;
645 } while (pgd++, addr != end);
Russell Kingae8f1542006-09-27 15:38:34 +0100646}
647
648/*
649 * Create the architecture specific mappings
650 */
651void __init iotable_init(struct map_desc *io_desc, int nr)
652{
653 int i;
654
655 for (i = 0; i < nr; i++)
656 create_mapping(io_desc + i);
657}
658
Russell King6c5da7a2008-09-30 19:31:44 +0100659static unsigned long __initdata vmalloc_reserve = SZ_128M;
660
661/*
662 * vmalloc=size forces the vmalloc area to be exactly 'size'
663 * bytes. This can be used to increase (or decrease) the vmalloc
664 * area - the default is 128m.
665 */
666static void __init early_vmalloc(char **arg)
667{
668 vmalloc_reserve = memparse(*arg, arg);
669
670 if (vmalloc_reserve < SZ_16M) {
671 vmalloc_reserve = SZ_16M;
672 printk(KERN_WARNING
673 "vmalloc area too small, limiting to %luMB\n",
674 vmalloc_reserve >> 20);
675 }
Nicolas Pitre92108072008-09-19 10:43:06 -0400676
677 if (vmalloc_reserve > VMALLOC_END - (PAGE_OFFSET + SZ_32M)) {
678 vmalloc_reserve = VMALLOC_END - (PAGE_OFFSET + SZ_32M);
679 printk(KERN_WARNING
680 "vmalloc area is too big, limiting to %luMB\n",
681 vmalloc_reserve >> 20);
682 }
Russell King6c5da7a2008-09-30 19:31:44 +0100683}
684__early_param("vmalloc=", early_vmalloc);
685
686#define VMALLOC_MIN (void *)(VMALLOC_END - vmalloc_reserve)
687
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400688static void __init sanity_check_meminfo(void)
Lennert Buytenhek60296c72008-08-05 01:56:13 +0200689{
Russell Kingdde58282009-08-15 12:36:00 +0100690 int i, j, highmem = 0;
Lennert Buytenhek60296c72008-08-05 01:56:13 +0200691
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400692 for (i = 0, j = 0; i < meminfo.nr_banks; i++) {
Nicolas Pitrea1bbaec2008-09-02 11:44:21 -0400693 struct membank *bank = &meminfo.bank[j];
694 *bank = meminfo.bank[i];
695
696#ifdef CONFIG_HIGHMEM
Russell Kingdde58282009-08-15 12:36:00 +0100697 if (__va(bank->start) > VMALLOC_MIN ||
698 __va(bank->start) < (void *)PAGE_OFFSET)
699 highmem = 1;
700
701 bank->highmem = highmem;
702
Nicolas Pitrea1bbaec2008-09-02 11:44:21 -0400703 /*
704 * Split those memory banks which are partially overlapping
705 * the vmalloc area greatly simplifying things later.
706 */
707 if (__va(bank->start) < VMALLOC_MIN &&
708 bank->size > VMALLOC_MIN - __va(bank->start)) {
709 if (meminfo.nr_banks >= NR_BANKS) {
710 printk(KERN_CRIT "NR_BANKS too low, "
711 "ignoring high memory\n");
Nicolas Pitre3f973e22008-11-04 00:48:42 -0500712 } else if (cache_is_vipt_aliasing()) {
713 printk(KERN_CRIT "HIGHMEM is not yet supported "
714 "with VIPT aliasing cache, "
715 "ignoring high memory\n");
Nicolas Pitrea1bbaec2008-09-02 11:44:21 -0400716 } else {
717 memmove(bank + 1, bank,
718 (meminfo.nr_banks - i) * sizeof(*bank));
719 meminfo.nr_banks++;
720 i++;
721 bank[1].size -= VMALLOC_MIN - __va(bank->start);
722 bank[1].start = __pa(VMALLOC_MIN - 1) + 1;
Russell Kingdde58282009-08-15 12:36:00 +0100723 bank[1].highmem = highmem = 1;
Nicolas Pitrea1bbaec2008-09-02 11:44:21 -0400724 j++;
725 }
726 bank->size = VMALLOC_MIN - __va(bank->start);
727 }
728#else
Russell King041d7852009-09-27 17:40:42 +0100729 bank->highmem = highmem;
730
Nicolas Pitrea1bbaec2008-09-02 11:44:21 -0400731 /*
732 * Check whether this memory bank would entirely overlap
733 * the vmalloc area.
734 */
Nicolas Pitre3fd98252009-02-18 22:29:22 +0100735 if (__va(bank->start) >= VMALLOC_MIN ||
Mikael Petterssonf0bba9f92009-03-28 19:18:05 +0100736 __va(bank->start) < (void *)PAGE_OFFSET) {
Nicolas Pitrea1bbaec2008-09-02 11:44:21 -0400737 printk(KERN_NOTICE "Ignoring RAM at %.8lx-%.8lx "
738 "(vmalloc region overlap).\n",
739 bank->start, bank->start + bank->size - 1);
740 continue;
741 }
742
743 /*
744 * Check whether this memory bank would partially overlap
745 * the vmalloc area.
746 */
747 if (__va(bank->start + bank->size) > VMALLOC_MIN ||
748 __va(bank->start + bank->size) < __va(bank->start)) {
749 unsigned long newsize = VMALLOC_MIN - __va(bank->start);
750 printk(KERN_NOTICE "Truncating RAM at %.8lx-%.8lx "
751 "to -%.8lx (vmalloc region overlap).\n",
752 bank->start, bank->start + bank->size - 1,
753 bank->start + newsize - 1);
754 bank->size = newsize;
755 }
756#endif
757 j++;
Lennert Buytenhek60296c72008-08-05 01:56:13 +0200758 }
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400759 meminfo.nr_banks = j;
Lennert Buytenhek60296c72008-08-05 01:56:13 +0200760}
761
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400762static inline void prepare_page_table(void)
Russell Kingd111e8f2006-09-27 15:27:33 +0100763{
764 unsigned long addr;
765
766 /*
767 * Clear out all the mappings below the kernel image.
768 */
Russell Kingab4f2ee2008-11-06 17:11:07 +0000769 for (addr = 0; addr < MODULES_VADDR; addr += PGDIR_SIZE)
Russell Kingd111e8f2006-09-27 15:27:33 +0100770 pmd_clear(pmd_off_k(addr));
771
772#ifdef CONFIG_XIP_KERNEL
773 /* The XIP kernel is mapped in the module area -- skip over it */
Russell King37efe642008-12-01 11:53:07 +0000774 addr = ((unsigned long)_etext + PGDIR_SIZE - 1) & PGDIR_MASK;
Russell Kingd111e8f2006-09-27 15:27:33 +0100775#endif
776 for ( ; addr < PAGE_OFFSET; addr += PGDIR_SIZE)
777 pmd_clear(pmd_off_k(addr));
778
779 /*
780 * Clear out all the kernel space mappings, except for the first
781 * memory bank, up to the end of the vmalloc region.
782 */
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400783 for (addr = __phys_to_virt(bank_phys_end(&meminfo.bank[0]));
Russell Kingd111e8f2006-09-27 15:27:33 +0100784 addr < VMALLOC_END; addr += PGDIR_SIZE)
785 pmd_clear(pmd_off_k(addr));
786}
787
788/*
789 * Reserve the various regions of node 0
790 */
791void __init reserve_node_zero(pg_data_t *pgdat)
792{
793 unsigned long res_size = 0;
794
795 /*
796 * Register the kernel text and data with bootmem.
797 * Note that this can only be in node 0.
798 */
799#ifdef CONFIG_XIP_KERNEL
Russell King37efe642008-12-01 11:53:07 +0000800 reserve_bootmem_node(pgdat, __pa(_data), _end - _data,
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800801 BOOTMEM_DEFAULT);
Russell Kingd111e8f2006-09-27 15:27:33 +0100802#else
Russell King37efe642008-12-01 11:53:07 +0000803 reserve_bootmem_node(pgdat, __pa(_stext), _end - _stext,
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800804 BOOTMEM_DEFAULT);
Russell Kingd111e8f2006-09-27 15:27:33 +0100805#endif
806
807 /*
808 * Reserve the page tables. These are already in use,
809 * and can only be in node 0.
810 */
811 reserve_bootmem_node(pgdat, __pa(swapper_pg_dir),
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800812 PTRS_PER_PGD * sizeof(pgd_t), BOOTMEM_DEFAULT);
Russell Kingd111e8f2006-09-27 15:27:33 +0100813
814 /*
815 * Hmm... This should go elsewhere, but we really really need to
816 * stop things allocating the low memory; ideally we need a better
817 * implementation of GFP_DMA which does not assume that DMA-able
818 * memory starts at zero.
819 */
820 if (machine_is_integrator() || machine_is_cintegrator())
821 res_size = __pa(swapper_pg_dir) - PHYS_OFFSET;
822
823 /*
824 * These should likewise go elsewhere. They pre-reserve the
825 * screen memory region at the start of main system memory.
826 */
827 if (machine_is_edb7211())
828 res_size = 0x00020000;
829 if (machine_is_p720t())
830 res_size = 0x00014000;
831
Ben Dooksbbf6f282006-12-07 20:47:58 +0100832 /* H1940 and RX3715 need to reserve this for suspend */
833
834 if (machine_is_h1940() || machine_is_rx3715()) {
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800835 reserve_bootmem_node(pgdat, 0x30003000, 0x1000,
836 BOOTMEM_DEFAULT);
837 reserve_bootmem_node(pgdat, 0x30081000, 0x1000,
838 BOOTMEM_DEFAULT);
Ben Dooks90733412006-12-06 01:50:24 +0100839 }
840
Marek Vasut81854f82009-03-28 12:37:42 +0100841 if (machine_is_palmld() || machine_is_palmtx()) {
842 reserve_bootmem_node(pgdat, 0xa0000000, 0x1000,
843 BOOTMEM_EXCLUSIVE);
844 reserve_bootmem_node(pgdat, 0xa0200000, 0x1000,
845 BOOTMEM_EXCLUSIVE);
846 }
847
Tomas 'Sleep_Walker' Ceche6c3f4b2009-05-18 15:24:14 +0200848 if (machine_is_treo680()) {
849 reserve_bootmem_node(pgdat, 0xa0000000, 0x1000,
850 BOOTMEM_EXCLUSIVE);
851 reserve_bootmem_node(pgdat, 0xa2000000, 0x1000,
852 BOOTMEM_EXCLUSIVE);
853 }
854
Marek Vasut81854f82009-03-28 12:37:42 +0100855 if (machine_is_palmt5())
856 reserve_bootmem_node(pgdat, 0xa0200000, 0x1000,
857 BOOTMEM_EXCLUSIVE);
858
Linus Walleijd98aac72009-04-27 10:21:46 +0100859 /*
860 * U300 - This platform family can share physical memory
861 * between two ARM cpus, one running Linux and the other
862 * running another OS.
863 */
864 if (machine_is_u300()) {
865#ifdef CONFIG_MACH_U300_SINGLE_RAM
866#if ((CONFIG_MACH_U300_ACCESS_MEM_SIZE & 1) == 1) && \
867 CONFIG_MACH_U300_2MB_ALIGNMENT_FIX
868 res_size = 0x00100000;
869#endif
870#endif
871 }
872
Russell Kingd111e8f2006-09-27 15:27:33 +0100873#ifdef CONFIG_SA1111
874 /*
875 * Because of the SA1111 DMA bug, we want to preserve our
876 * precious DMA-able memory...
877 */
878 res_size = __pa(swapper_pg_dir) - PHYS_OFFSET;
879#endif
880 if (res_size)
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800881 reserve_bootmem_node(pgdat, PHYS_OFFSET, res_size,
882 BOOTMEM_DEFAULT);
Russell Kingd111e8f2006-09-27 15:27:33 +0100883}
884
885/*
886 * Set up device the mappings. Since we clear out the page tables for all
887 * mappings above VMALLOC_END, we will remove any debug device mappings.
888 * This means you have to be careful how you debug this function, or any
889 * called function. This means you can't use any function or debugging
890 * method which may touch any device, otherwise the kernel _will_ crash.
891 */
892static void __init devicemaps_init(struct machine_desc *mdesc)
893{
894 struct map_desc map;
895 unsigned long addr;
896 void *vectors;
897
898 /*
899 * Allocate the vector page early.
900 */
901 vectors = alloc_bootmem_low_pages(PAGE_SIZE);
Russell Kingd111e8f2006-09-27 15:27:33 +0100902
903 for (addr = VMALLOC_END; addr; addr += PGDIR_SIZE)
904 pmd_clear(pmd_off_k(addr));
905
906 /*
907 * Map the kernel if it is XIP.
908 * It is always first in the modulearea.
909 */
910#ifdef CONFIG_XIP_KERNEL
911 map.pfn = __phys_to_pfn(CONFIG_XIP_PHYS_ADDR & SECTION_MASK);
Russell Kingab4f2ee2008-11-06 17:11:07 +0000912 map.virtual = MODULES_VADDR;
Russell King37efe642008-12-01 11:53:07 +0000913 map.length = ((unsigned long)_etext - map.virtual + ~SECTION_MASK) & SECTION_MASK;
Russell Kingd111e8f2006-09-27 15:27:33 +0100914 map.type = MT_ROM;
915 create_mapping(&map);
916#endif
917
918 /*
919 * Map the cache flushing regions.
920 */
921#ifdef FLUSH_BASE
922 map.pfn = __phys_to_pfn(FLUSH_BASE_PHYS);
923 map.virtual = FLUSH_BASE;
924 map.length = SZ_1M;
925 map.type = MT_CACHECLEAN;
926 create_mapping(&map);
927#endif
928#ifdef FLUSH_BASE_MINICACHE
929 map.pfn = __phys_to_pfn(FLUSH_BASE_PHYS + SZ_1M);
930 map.virtual = FLUSH_BASE_MINICACHE;
931 map.length = SZ_1M;
932 map.type = MT_MINICLEAN;
933 create_mapping(&map);
934#endif
935
936 /*
937 * Create a mapping for the machine vectors at the high-vectors
938 * location (0xffff0000). If we aren't using high-vectors, also
939 * create a mapping at the low-vectors virtual address.
940 */
941 map.pfn = __phys_to_pfn(virt_to_phys(vectors));
942 map.virtual = 0xffff0000;
943 map.length = PAGE_SIZE;
944 map.type = MT_HIGH_VECTORS;
945 create_mapping(&map);
946
947 if (!vectors_high()) {
948 map.virtual = 0;
949 map.type = MT_LOW_VECTORS;
950 create_mapping(&map);
951 }
952
953 /*
954 * Ask the machine support to map in the statically mapped devices.
955 */
956 if (mdesc->map_io)
957 mdesc->map_io();
958
959 /*
960 * Finally flush the caches and tlb to ensure that we're in a
961 * consistent state wrt the writebuffer. This also ensures that
962 * any write-allocated cache lines in the vector page are written
963 * back. After this point, we can start to touch devices again.
964 */
965 local_flush_tlb_all();
966 flush_cache_all();
967}
968
Nicolas Pitred73cd422008-09-15 16:44:55 -0400969static void __init kmap_init(void)
970{
971#ifdef CONFIG_HIGHMEM
972 pmd_t *pmd = pmd_off_k(PKMAP_BASE);
973 pte_t *pte = alloc_bootmem_low_pages(2 * PTRS_PER_PTE * sizeof(pte_t));
974 BUG_ON(!pmd_none(*pmd) || !pte);
975 __pmd_populate(pmd, __pa(pte) | _PAGE_KERNEL_TABLE);
976 pkmap_page_table = pte + PTRS_PER_PTE;
977#endif
978}
979
Russell Kingd111e8f2006-09-27 15:27:33 +0100980/*
981 * paging_init() sets up the page tables, initialises the zone memory
982 * maps, and sets up the zero page, bad page and bad page tables.
983 */
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400984void __init paging_init(struct machine_desc *mdesc)
Russell Kingd111e8f2006-09-27 15:27:33 +0100985{
986 void *zero_page;
987
988 build_mem_type_table();
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400989 sanity_check_meminfo();
990 prepare_page_table();
991 bootmem_init();
Russell Kingd111e8f2006-09-27 15:27:33 +0100992 devicemaps_init(mdesc);
Nicolas Pitred73cd422008-09-15 16:44:55 -0400993 kmap_init();
Russell Kingd111e8f2006-09-27 15:27:33 +0100994
995 top_pmd = pmd_off_k(0xffff0000);
996
997 /*
Julia Lawall6ce1b872008-12-01 14:15:41 -0800998 * allocate the zero page. Note that this always succeeds and
999 * returns a zeroed result.
Russell Kingd111e8f2006-09-27 15:27:33 +01001000 */
1001 zero_page = alloc_bootmem_low_pages(PAGE_SIZE);
Russell Kingd111e8f2006-09-27 15:27:33 +01001002 empty_zero_page = virt_to_page(zero_page);
1003 flush_dcache_page(empty_zero_page);
1004}
Russell Kingae8f1542006-09-27 15:38:34 +01001005
1006/*
1007 * In order to soft-boot, we need to insert a 1:1 mapping in place of
1008 * the user-mode pages. This will then ensure that we have predictable
1009 * results when turning the mmu off
1010 */
1011void setup_mm_for_reboot(char mode)
1012{
1013 unsigned long base_pmdval;
1014 pgd_t *pgd;
1015 int i;
1016
1017 if (current->mm && current->mm->pgd)
1018 pgd = current->mm->pgd;
1019 else
1020 pgd = init_mm.pgd;
1021
1022 base_pmdval = PMD_SECT_AP_WRITE | PMD_SECT_AP_READ | PMD_TYPE_SECT;
1023 if (cpu_architecture() <= CPU_ARCH_ARMv5TEJ && !cpu_is_xscale())
1024 base_pmdval |= PMD_BIT4;
1025
1026 for (i = 0; i < FIRST_USER_PGD_NR + USER_PTRS_PER_PGD; i++, pgd++) {
1027 unsigned long pmdval = (i << PGDIR_SHIFT) | base_pmdval;
1028 pmd_t *pmd;
1029
1030 pmd = pmd_off(pgd, i << PGDIR_SHIFT);
1031 pmd[0] = __pmd(pmdval);
1032 pmd[1] = __pmd(pmdval + (1 << (PGDIR_SHIFT - 1)));
1033 flush_pmd_entry(pmd);
1034 }
1035}