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 38 39 40

#include "mmu_decl.h"

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

extern char etext[], _stext[];

45
#define PGDIR_ORDER	(32 + PGD_T_LOG2 - PGDIR_SHIFT)
46

47 48 49 50 51 52 53 54 55 56 57 58
#ifndef CONFIG_PPC_4K_PAGES
static struct kmem_cache *pgtable_cache;

void pgtable_cache_init(void)
{
	pgtable_cache = kmem_cache_create("PGDIR cache", 1 << PGDIR_ORDER,
					  1 << PGDIR_ORDER, 0, NULL);
	if (pgtable_cache == NULL)
		panic("Couldn't allocate pgtable caches");
}
#endif

59 60 61 62
pgd_t *pgd_alloc(struct mm_struct *mm)
{
	pgd_t *ret;

63 64
	/* pgdir take page or two with 4K pages and a page fraction otherwise */
#ifndef CONFIG_PPC_4K_PAGES
65
	ret = kmem_cache_alloc(pgtable_cache, GFP_KERNEL | __GFP_ZERO);
66 67 68 69
#else
	ret = (pgd_t *)__get_free_pages(GFP_KERNEL|__GFP_ZERO,
			PGDIR_ORDER - PAGE_SHIFT);
#endif
70 71 72
	return ret;
}

73
void pgd_free(struct mm_struct *mm, pgd_t *pgd)
74
{
75
#ifndef CONFIG_PPC_4K_PAGES
76
	kmem_cache_free(pgtable_cache, (void *)pgd);
77 78 79
#else
	free_pages((unsigned long)pgd, PGDIR_ORDER - PAGE_SHIFT);
#endif
80 81
}

K
Kumar Gala 已提交
82
__init_refok pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
83 84 85
{
	pte_t *pte;

86
	if (slab_is_available()) {
87 88
		pte = (pte_t *)__get_free_page(GFP_KERNEL|__GFP_REPEAT|__GFP_ZERO);
	} else {
89
		pte = __va(memblock_alloc(PAGE_SIZE, PAGE_SIZE));
90 91 92 93 94 95
		if (pte)
			clear_page(pte);
	}
	return pte;
}

96
pgtable_t pte_alloc_one(struct mm_struct *mm, unsigned long address)
97 98 99
{
	struct page *ptepage;

100
	gfp_t flags = GFP_KERNEL | __GFP_REPEAT | __GFP_ZERO;
101 102

	ptepage = alloc_pages(flags, 0);
103 104
	if (!ptepage)
		return NULL;
105 106 107 108
	if (!pgtable_page_ctor(ptepage)) {
		__free_page(ptepage);
		return NULL;
	}
109 110 111 112 113 114
	return ptepage;
}

void __iomem *
ioremap(phys_addr_t addr, unsigned long size)
{
115 116
	return __ioremap_caller(addr, size, _PAGE_NO_CACHE | _PAGE_GUARDED,
				__builtin_return_address(0));
117
}
118
EXPORT_SYMBOL(ioremap);
119

A
Anton Blanchard 已提交
120 121 122 123 124 125 126 127
void __iomem *
ioremap_wc(phys_addr_t addr, unsigned long size)
{
	return __ioremap_caller(addr, size, _PAGE_NO_CACHE,
				__builtin_return_address(0));
}
EXPORT_SYMBOL(ioremap_wc);

128
void __iomem *
A
Anton Blanchard 已提交
129
ioremap_prot(phys_addr_t addr, unsigned long size, unsigned long flags)
130
{
B
Benjamin Herrenschmidt 已提交
131
	/* writeable implies dirty for kernel addresses */
132
	if ((flags & (_PAGE_RW | _PAGE_RO)) != _PAGE_RO)
B
Benjamin Herrenschmidt 已提交
133 134 135
		flags |= _PAGE_DIRTY | _PAGE_HWWRITE;

	/* we don't want to let _PAGE_USER and _PAGE_EXEC leak out */
136
	flags &= ~(_PAGE_USER | _PAGE_EXEC);
B
Benjamin Herrenschmidt 已提交
137

138 139 140 141 142 143 144 145
#ifdef _PAGE_BAP_SR
	/* _PAGE_USER contains _PAGE_BAP_SR on BookE using the new PTE format
	 * which means that we just cleared supervisor access... oops ;-) This
	 * restores it
	 */
	flags |= _PAGE_BAP_SR;
#endif

146
	return __ioremap_caller(addr, size, flags, __builtin_return_address(0));
147
}
A
Anton Blanchard 已提交
148
EXPORT_SYMBOL(ioremap_prot);
149

150 151
void __iomem *
__ioremap(phys_addr_t addr, unsigned long size, unsigned long flags)
152 153 154 155 156 157 158
{
	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)
159 160 161 162 163
{
	unsigned long v, i;
	phys_addr_t p;
	int err;

B
Benjamin Herrenschmidt 已提交
164 165
	/* Make sure we have the base flags */
	if ((flags & _PAGE_PRESENT) == 0)
166
		flags |= pgprot_val(PAGE_KERNEL);
B
Benjamin Herrenschmidt 已提交
167 168 169 170 171

	/* Non-cacheable page cannot be coherent */
	if (flags & _PAGE_NO_CACHE)
		flags &= ~_PAGE_COHERENT;

172 173 174
	/*
	 * Choose an address to map it to.
	 * Once the vmalloc system is running, we use it.
175
	 * Before then, we use space going down from IOREMAP_TOP
176 177 178 179 180 181 182 183 184 185 186 187
	 * (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;

188
#ifndef CONFIG_CRASH_DUMP
189 190 191 192
	/*
	 * Don't allow anybody to remap normal RAM that we're using.
	 * mem_init() sets high_memory so only do the check after that.
	 */
193
	if (slab_is_available() && (p < virt_to_phys(high_memory)) &&
Y
Yinghai Lu 已提交
194
	    !(__allow_ioremap_reserved && memblock_is_region_reserved(p, size))) {
195
		printk("__ioremap(): phys addr 0x%llx is RAM lr %ps\n",
196
		       (unsigned long long)p, __builtin_return_address(0));
197 198
		return NULL;
	}
199
#endif
200 201 202 203 204 205

	if (size == 0)
		return NULL;

	/*
	 * Is it already mapped?  Perhaps overlapped by a previous
206
	 * mapping.
207
	 */
208 209
	v = p_block_mapped(p);
	if (v)
210 211
		goto out;

212
	if (slab_is_available()) {
213
		struct vm_struct *area;
214
		area = get_vm_area_caller(size, VM_IOREMAP, caller);
215 216
		if (area == 0)
			return NULL;
217
		area->phys_addr = p;
218 219 220 221 222 223 224 225 226 227 228 229 230
		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)
		err = map_page(v+i, p+i, flags);
	if (err) {
231
		if (slab_is_available())
232 233 234 235 236 237 238
			vunmap((void *)v);
		return NULL;
	}

out:
	return (void __iomem *) (v + ((unsigned long)addr & ~PAGE_MASK));
}
239
EXPORT_SYMBOL(__ioremap);
240 241 242 243 244 245 246

void iounmap(volatile void __iomem *addr)
{
	/*
	 * If mapped by BATs then there is nothing to do.
	 * Calling vfree() generates a benign warning.
	 */
247 248
	if (v_block_mapped((unsigned long)addr))
		return;
249 250 251 252

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

255
int map_page(unsigned long va, phys_addr_t pa, int flags)
256 257 258 259 260 261
{
	pmd_t *pd;
	pte_t *pg;
	int err = -ENOMEM;

	/* Use upper 10 bits of VA to index the first level map */
262
	pd = pmd_offset(pud_offset(pgd_offset_k(va), va), va);
263
	/* Use middle 10 bits of VA to index the second-level map */
264
	pg = pte_alloc_kernel(pd, va);
265 266
	if (pg != 0) {
		err = 0;
267 268 269
		/* The PTE should never be already set nor present in the
		 * hash table
		 */
270 271
		BUG_ON((pte_val(*pg) & (_PAGE_PRESENT | _PAGE_HASHPTE)) &&
		       flags);
272 273
		set_pte_at(&init_mm, va, pg, pfn_pte(pa >> PAGE_SHIFT,
						     __pgprot(flags)));
274
	}
275
	smp_wmb();
276 277 278 279
	return err;
}

/*
280
 * Map in a chunk of physical memory starting at start.
281
 */
282
void __init __mapin_ram_chunk(unsigned long offset, unsigned long top)
283
{
284 285
	unsigned long v, s, f;
	phys_addr_t p;
286
	int ktext;
287

288
	s = offset;
289
	v = PAGE_OFFSET + s;
290
	p = memstart_addr + s;
291
	for (; s < top; s += PAGE_SIZE) {
292
		ktext = ((char *) v >= _stext && (char *) v < etext);
293
		f = ktext ? pgprot_val(PAGE_KERNEL_TEXT) : pgprot_val(PAGE_KERNEL);
294
		map_page(v, p, f);
295 296 297 298
#ifdef CONFIG_PPC_STD_MMU_32
		if (ktext)
			hash_preload(&init_mm, v, 0, 0x300);
#endif
299 300 301 302 303
		v += PAGE_SIZE;
		p += PAGE_SIZE;
	}
}

304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
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 已提交
321
		top = memblock_end_of_DRAM();
322 323 324 325 326 327
		s = wii_mmu_mapin_mem2(top);
		__mapin_ram_chunk(s, top);
	}
#endif
}

328 329 330 331 332 333
/* 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.
 */
int
334
get_pteptr(struct mm_struct *mm, unsigned long addr, pte_t **ptep, pmd_t **pmdp)
335 336
{
        pgd_t	*pgd;
337
	pud_t	*pud;
338 339 340 341 342 343
        pmd_t	*pmd;
        pte_t	*pte;
        int     retval = 0;

        pgd = pgd_offset(mm, addr & PAGE_MASK);
        if (pgd) {
344 345 346 347 348 349 350 351 352 353 354 355 356 357
		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 */
				}
			}
		}
358 359 360 361
        }
        return(retval);
}

362 363 364 365 366 367 368 369 370 371 372
#ifdef CONFIG_DEBUG_PAGEALLOC

static int __change_page_attr(struct page *page, pgprot_t prot)
{
	pte_t *kpte;
	pmd_t *kpmd;
	unsigned long address;

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

373
	if (v_block_mapped(address))
374 375 376
		return 0;
	if (!get_pteptr(&init_mm, address, &kpte, &kpmd))
		return -EINVAL;
377
	__set_pte_at(&init_mm, address, kpte, mk_pte(page, prot), 0);
378
	wmb();
379
	flush_tlb_page(NULL, address);
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
	pte_unmap(kpte);

	return 0;
}

/*
 * Change the page attributes of an page in the linear mapping.
 *
 * THIS CONFLICTS WITH BAT MAPPINGS, DEBUG USE ONLY
 */
static int change_page_attr(struct page *page, int numpages, pgprot_t prot)
{
	int i, err = 0;
	unsigned long flags;

	local_irq_save(flags);
	for (i = 0; i < numpages; i++, page++) {
		err = __change_page_attr(page, prot);
		if (err)
			break;
	}
	local_irq_restore(flags);
	return err;
}


406
void __kernel_map_pages(struct page *page, int numpages, int enable)
407 408 409 410 411 412 413
{
	if (PageHighMem(page))
		return;

	change_page_attr(page, numpages, enable ? PAGE_KERNEL : __pgprot(0));
}
#endif /* CONFIG_DEBUG_PAGEALLOC */
414 415 416 417 418 419 420 421 422 423 424 425

static int fixmaps;

void __set_fixmap (enum fixed_addresses idx, phys_addr_t phys, pgprot_t flags)
{
	unsigned long address = __fix_to_virt(idx);

	if (idx >= __end_of_fixed_addresses) {
		BUG();
		return;
	}

426
	map_page(address, phys, pgprot_val(flags));
427 428 429 430 431 432 433
	fixmaps++;
}

void __this_fixmap_does_not_exist(void)
{
	WARN_ON(1);
}