pgtable_32.c 9.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * This file contains the routines setting up the linux page tables.
 *  -- paulus
 *
 *  Derived from arch/ppc/mm/init.c:
 *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
 *
 *  Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au)
 *  and Cort Dougan (PReP) (cort@cs.nmt.edu)
 *    Copyright (C) 1996 Paul Mackerras
 *
 *  Derived from "arch/i386/mm/init.c"
 *    Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
 *
 *  This program is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU General Public License
 *  as published by the Free Software Foundation; either version
 *  2 of the License, or (at your option) any later version.
 *
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/types.h>
#include <linux/mm.h>
#include <linux/vmalloc.h>
#include <linux/init.h>
#include <linux/highmem.h>
Y
Yinghai Lu 已提交
29
#include <linux/memblock.h>
30
#include <linux/slab.h>
31 32 33

#include <asm/pgtable.h>
#include <asm/pgalloc.h>
34
#include <asm/fixmap.h>
35
#include <asm/io.h>
36
#include <asm/setup.h>
37
#include <asm/sections.h>
38 39 40 41

#include "mmu_decl.h"

unsigned long ioremap_bot;
42
EXPORT_SYMBOL(ioremap_bot);	/* aka VMALLOC_END */
43

44
extern char etext[], _stext[], _sinittext[], _einittext[];
45

46
__ref pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
47 48 49
{
	pte_t *pte;

50
	if (slab_is_available()) {
51
		pte = (pte_t *)__get_free_page(GFP_KERNEL|__GFP_ZERO);
52
	} else {
53
		pte = __va(memblock_alloc(PAGE_SIZE, PAGE_SIZE));
54 55 56 57 58 59
		if (pte)
			clear_page(pte);
	}
	return pte;
}

60
pgtable_t pte_alloc_one(struct mm_struct *mm, unsigned long address)
61 62 63
{
	struct page *ptepage;

64
	gfp_t flags = GFP_KERNEL | __GFP_ZERO | __GFP_ACCOUNT;
65 66

	ptepage = alloc_pages(flags, 0);
67 68
	if (!ptepage)
		return NULL;
69 70 71 72
	if (!pgtable_page_ctor(ptepage)) {
		__free_page(ptepage);
		return NULL;
	}
73 74 75 76 77 78
	return ptepage;
}

void __iomem *
ioremap(phys_addr_t addr, unsigned long size)
{
79 80 81
	unsigned long flags = pgprot_val(pgprot_noncached(PAGE_KERNEL));

	return __ioremap_caller(addr, size, flags, __builtin_return_address(0));
82
}
83
EXPORT_SYMBOL(ioremap);
84

A
Anton Blanchard 已提交
85 86 87
void __iomem *
ioremap_wc(phys_addr_t addr, unsigned long size)
{
88 89 90
	unsigned long flags = pgprot_val(pgprot_noncached_wc(PAGE_KERNEL));

	return __ioremap_caller(addr, size, flags, __builtin_return_address(0));
A
Anton Blanchard 已提交
91 92 93
}
EXPORT_SYMBOL(ioremap_wc);

94 95 96
void __iomem *
ioremap_wt(phys_addr_t addr, unsigned long size)
{
97 98 99
	unsigned long flags = pgprot_val(pgprot_cached_wthru(PAGE_KERNEL));

	return __ioremap_caller(addr, size, flags, __builtin_return_address(0));
100 101 102 103 104 105
}
EXPORT_SYMBOL(ioremap_wt);

void __iomem *
ioremap_coherent(phys_addr_t addr, unsigned long size)
{
106 107 108
	unsigned long flags = pgprot_val(pgprot_cached(PAGE_KERNEL));

	return __ioremap_caller(addr, size, flags, __builtin_return_address(0));
109 110 111
}
EXPORT_SYMBOL(ioremap_coherent);

112
void __iomem *
A
Anton Blanchard 已提交
113
ioremap_prot(phys_addr_t addr, unsigned long size, unsigned long flags)
114
{
B
Benjamin Herrenschmidt 已提交
115
	/* writeable implies dirty for kernel addresses */
116
	if ((flags & (_PAGE_RW | _PAGE_RO)) != _PAGE_RO)
B
Benjamin Herrenschmidt 已提交
117 118 119
		flags |= _PAGE_DIRTY | _PAGE_HWWRITE;

	/* we don't want to let _PAGE_USER and _PAGE_EXEC leak out */
120
	flags &= ~(_PAGE_USER | _PAGE_EXEC);
121
	flags |= _PAGE_PRIVILEGED;
122

123
	return __ioremap_caller(addr, size, flags, __builtin_return_address(0));
124
}
A
Anton Blanchard 已提交
125
EXPORT_SYMBOL(ioremap_prot);
126

127 128
void __iomem *
__ioremap(phys_addr_t addr, unsigned long size, unsigned long flags)
129 130 131 132 133 134 135
{
	return __ioremap_caller(addr, size, flags, __builtin_return_address(0));
}

void __iomem *
__ioremap_caller(phys_addr_t addr, unsigned long size, unsigned long flags,
		 void *caller)
136 137 138 139 140 141 142 143
{
	unsigned long v, i;
	phys_addr_t p;
	int err;

	/*
	 * Choose an address to map it to.
	 * Once the vmalloc system is running, we use it.
144
	 * Before then, we use space going down from IOREMAP_TOP
145 146 147 148 149 150 151 152 153 154 155 156
	 * (ioremap_bot records where we're up to).
	 */
	p = addr & PAGE_MASK;
	size = PAGE_ALIGN(addr + size) - p;

	/*
	 * If the address lies within the first 16 MB, assume it's in ISA
	 * memory space
	 */
	if (p < 16*1024*1024)
		p += _ISA_MEM_BASE;

157
#ifndef CONFIG_CRASH_DUMP
158 159 160 161
	/*
	 * Don't allow anybody to remap normal RAM that we're using.
	 * mem_init() sets high_memory so only do the check after that.
	 */
162
	if (slab_is_available() && (p < virt_to_phys(high_memory)) &&
163
	    page_is_ram(__phys_to_pfn(p))) {
164
		printk("__ioremap(): phys addr 0x%llx is RAM lr %ps\n",
165
		       (unsigned long long)p, __builtin_return_address(0));
166 167
		return NULL;
	}
168
#endif
169 170 171 172 173 174

	if (size == 0)
		return NULL;

	/*
	 * Is it already mapped?  Perhaps overlapped by a previous
175
	 * mapping.
176
	 */
177 178
	v = p_block_mapped(p);
	if (v)
179 180
		goto out;

181
	if (slab_is_available()) {
182
		struct vm_struct *area;
183
		area = get_vm_area_caller(size, VM_IOREMAP, caller);
184 185
		if (area == 0)
			return NULL;
186
		area->phys_addr = p;
187 188 189 190 191 192 193 194 195 196 197
		v = (unsigned long) area->addr;
	} else {
		v = (ioremap_bot -= size);
	}

	/*
	 * Should check if it is a candidate for a BAT mapping
	 */

	err = 0;
	for (i = 0; i < size && err == 0; i += PAGE_SIZE)
198
		err = map_kernel_page(v+i, p+i, flags);
199
	if (err) {
200
		if (slab_is_available())
201 202 203 204 205 206 207
			vunmap((void *)v);
		return NULL;
	}

out:
	return (void __iomem *) (v + ((unsigned long)addr & ~PAGE_MASK));
}
208
EXPORT_SYMBOL(__ioremap);
209 210 211 212 213 214 215

void iounmap(volatile void __iomem *addr)
{
	/*
	 * If mapped by BATs then there is nothing to do.
	 * Calling vfree() generates a benign warning.
	 */
216 217
	if (v_block_mapped((unsigned long)addr))
		return;
218 219 220 221

	if (addr > high_memory && (unsigned long) addr < ioremap_bot)
		vunmap((void *) (PAGE_MASK & (unsigned long)addr));
}
222
EXPORT_SYMBOL(iounmap);
223

224
int map_kernel_page(unsigned long va, phys_addr_t pa, int flags)
225 226 227 228 229 230
{
	pmd_t *pd;
	pte_t *pg;
	int err = -ENOMEM;

	/* Use upper 10 bits of VA to index the first level map */
231
	pd = pmd_offset(pud_offset(pgd_offset_k(va), va), va);
232
	/* Use middle 10 bits of VA to index the second-level map */
233
	pg = pte_alloc_kernel(pd, va);
234 235
	if (pg != 0) {
		err = 0;
236 237 238
		/* The PTE should never be already set nor present in the
		 * hash table
		 */
239 240
		BUG_ON((pte_val(*pg) & (_PAGE_PRESENT | _PAGE_HASHPTE)) &&
		       flags);
241 242
		set_pte_at(&init_mm, va, pg, pfn_pte(pa >> PAGE_SHIFT,
						     __pgprot(flags)));
243
	}
244
	smp_wmb();
245 246 247 248
	return err;
}

/*
249
 * Map in a chunk of physical memory starting at start.
250
 */
251
static void __init __mapin_ram_chunk(unsigned long offset, unsigned long top)
252
{
253 254
	unsigned long v, s, f;
	phys_addr_t p;
255
	int ktext;
256

257
	s = offset;
258
	v = PAGE_OFFSET + s;
259
	p = memstart_addr + s;
260
	for (; s < top; s += PAGE_SIZE) {
261 262
		ktext = ((char *)v >= _stext && (char *)v < etext) ||
			((char *)v >= _sinittext && (char *)v < _einittext);
263
		f = ktext ? pgprot_val(PAGE_KERNEL_TEXT) : pgprot_val(PAGE_KERNEL);
264
		map_kernel_page(v, p, f);
265 266 267 268
#ifdef CONFIG_PPC_STD_MMU_32
		if (ktext)
			hash_preload(&init_mm, v, 0, 0x300);
#endif
269 270 271 272 273
		v += PAGE_SIZE;
		p += PAGE_SIZE;
	}
}

274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
void __init mapin_ram(void)
{
	unsigned long s, top;

#ifndef CONFIG_WII
	top = total_lowmem;
	s = mmu_mapin_ram(top);
	__mapin_ram_chunk(s, top);
#else
	if (!wii_hole_size) {
		s = mmu_mapin_ram(total_lowmem);
		__mapin_ram_chunk(s, total_lowmem);
	} else {
		top = wii_hole_start;
		s = mmu_mapin_ram(top);
		__mapin_ram_chunk(s, top);

Y
Yinghai Lu 已提交
291
		top = memblock_end_of_DRAM();
292 293 294 295 296 297
		s = wii_mmu_mapin_mem2(top);
		__mapin_ram_chunk(s, top);
	}
#endif
}

298 299 300 301 302
/* Scan the real Linux page tables and return a PTE pointer for
 * a virtual address in a context.
 * Returns true (1) if PTE was found, zero otherwise.  The pointer to
 * the PTE pointer is unmodified if PTE is not found.
 */
303
static int
304
get_pteptr(struct mm_struct *mm, unsigned long addr, pte_t **ptep, pmd_t **pmdp)
305 306
{
        pgd_t	*pgd;
307
	pud_t	*pud;
308 309 310 311 312 313
        pmd_t	*pmd;
        pte_t	*pte;
        int     retval = 0;

        pgd = pgd_offset(mm, addr & PAGE_MASK);
        if (pgd) {
314 315 316 317 318 319 320 321 322 323 324 325 326 327
		pud = pud_offset(pgd, addr & PAGE_MASK);
		if (pud && pud_present(*pud)) {
			pmd = pmd_offset(pud, addr & PAGE_MASK);
			if (pmd_present(*pmd)) {
				pte = pte_offset_map(pmd, addr & PAGE_MASK);
				if (pte) {
					retval = 1;
					*ptep = pte;
					if (pmdp)
						*pmdp = pmd;
					/* XXX caller needs to do pte_unmap, yuck */
				}
			}
		}
328 329 330 331
        }
        return(retval);
}

332
static int __change_page_attr_noflush(struct page *page, pgprot_t prot)
333 334 335 336 337 338 339 340
{
	pte_t *kpte;
	pmd_t *kpmd;
	unsigned long address;

	BUG_ON(PageHighMem(page));
	address = (unsigned long)page_address(page);

341
	if (v_block_mapped(address))
342 343 344
		return 0;
	if (!get_pteptr(&init_mm, address, &kpte, &kpmd))
		return -EINVAL;
345
	__set_pte_at(&init_mm, address, kpte, mk_pte(page, prot), 0);
346 347 348 349 350 351 352 353
	pte_unmap(kpte);

	return 0;
}

/*
 * Change the page attributes of an page in the linear mapping.
 *
354
 * THIS DOES NOTHING WITH BAT MAPPINGS, DEBUG USE ONLY
355 356 357 358 359
 */
static int change_page_attr(struct page *page, int numpages, pgprot_t prot)
{
	int i, err = 0;
	unsigned long flags;
360
	struct page *start = page;
361 362 363

	local_irq_save(flags);
	for (i = 0; i < numpages; i++, page++) {
364
		err = __change_page_attr_noflush(page, prot);
365 366 367
		if (err)
			break;
	}
368
	wmb();
369
	local_irq_restore(flags);
370 371
	flush_tlb_kernel_range((unsigned long)page_address(start),
			       (unsigned long)page_address(page));
372 373 374
	return err;
}

375 376 377 378 379 380 381 382
void mark_initmem_nx(void)
{
	struct page *page = virt_to_page(_sinittext);
	unsigned long numpages = PFN_UP((unsigned long)_einittext) -
				 PFN_DOWN((unsigned long)_sinittext);

	change_page_attr(page, numpages, PAGE_KERNEL);
}
383

384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
#ifdef CONFIG_STRICT_KERNEL_RWX
void mark_rodata_ro(void)
{
	struct page *page;
	unsigned long numpages;

	page = virt_to_page(_stext);
	numpages = PFN_UP((unsigned long)_etext) -
		   PFN_DOWN((unsigned long)_stext);

	change_page_attr(page, numpages, PAGE_KERNEL_ROX);
	/*
	 * mark .rodata as read only. Use __init_begin rather than __end_rodata
	 * to cover NOTES and EXCEPTION_TABLE.
	 */
	page = virt_to_page(__start_rodata);
	numpages = PFN_UP((unsigned long)__init_begin) -
		   PFN_DOWN((unsigned long)__start_rodata);

	change_page_attr(page, numpages, PAGE_KERNEL_RO);
}
#endif

407
#ifdef CONFIG_DEBUG_PAGEALLOC
408
void __kernel_map_pages(struct page *page, int numpages, int enable)
409 410 411 412 413 414 415
{
	if (PageHighMem(page))
		return;

	change_page_attr(page, numpages, enable ? PAGE_KERNEL : __pgprot(0));
}
#endif /* CONFIG_DEBUG_PAGEALLOC */