pgtable_32.c 9.3 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)
47
{
48 49 50
	if (!slab_is_available())
		return memblock_alloc(PTE_FRAG_SIZE, PTE_FRAG_SIZE);

51
	return (pte_t *)pte_fragment_alloc(mm, 1);
52 53
}

54
pgtable_t pte_alloc_one(struct mm_struct *mm)
55
{
56
	return (pgtable_t)pte_fragment_alloc(mm, 0);
57 58 59 60 61
}

void __iomem *
ioremap(phys_addr_t addr, unsigned long size)
{
62
	pgprot_t prot = pgprot_noncached(PAGE_KERNEL);
63

64
	return __ioremap_caller(addr, size, prot, __builtin_return_address(0));
65
}
66
EXPORT_SYMBOL(ioremap);
67

A
Anton Blanchard 已提交
68 69 70
void __iomem *
ioremap_wc(phys_addr_t addr, unsigned long size)
{
71
	pgprot_t prot = pgprot_noncached_wc(PAGE_KERNEL);
72

73
	return __ioremap_caller(addr, size, prot, __builtin_return_address(0));
A
Anton Blanchard 已提交
74 75 76
}
EXPORT_SYMBOL(ioremap_wc);

77 78 79
void __iomem *
ioremap_wt(phys_addr_t addr, unsigned long size)
{
80
	pgprot_t prot = pgprot_cached_wthru(PAGE_KERNEL);
81

82
	return __ioremap_caller(addr, size, prot, __builtin_return_address(0));
83 84 85 86 87 88
}
EXPORT_SYMBOL(ioremap_wt);

void __iomem *
ioremap_coherent(phys_addr_t addr, unsigned long size)
{
89
	pgprot_t prot = pgprot_cached(PAGE_KERNEL);
90

91
	return __ioremap_caller(addr, size, prot, __builtin_return_address(0));
92 93 94
}
EXPORT_SYMBOL(ioremap_coherent);

95
void __iomem *
A
Anton Blanchard 已提交
96
ioremap_prot(phys_addr_t addr, unsigned long size, unsigned long flags)
97
{
98 99
	pte_t pte = __pte(flags);

B
Benjamin Herrenschmidt 已提交
100
	/* writeable implies dirty for kernel addresses */
101 102
	if (pte_write(pte))
		pte = pte_mkdirty(pte);
B
Benjamin Herrenschmidt 已提交
103 104

	/* we don't want to let _PAGE_USER and _PAGE_EXEC leak out */
105 106
	pte = pte_exprotect(pte);
	pte = pte_mkprivileged(pte);
107

108
	return __ioremap_caller(addr, size, pte_pgprot(pte), __builtin_return_address(0));
109
}
A
Anton Blanchard 已提交
110
EXPORT_SYMBOL(ioremap_prot);
111

112 113
void __iomem *
__ioremap(phys_addr_t addr, unsigned long size, unsigned long flags)
114
{
115
	return __ioremap_caller(addr, size, __pgprot(flags), __builtin_return_address(0));
116 117 118
}

void __iomem *
119
__ioremap_caller(phys_addr_t addr, unsigned long size, pgprot_t prot, void *caller)
120 121 122 123 124 125 126 127
{
	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.
128
	 * Before then, we use space going down from IOREMAP_TOP
129 130 131 132 133 134 135 136 137 138 139 140
	 * (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;

141
#ifndef CONFIG_CRASH_DUMP
142 143 144 145
	/*
	 * Don't allow anybody to remap normal RAM that we're using.
	 * mem_init() sets high_memory so only do the check after that.
	 */
146
	if (slab_is_available() && p <= virt_to_phys(high_memory - 1) &&
147
	    page_is_ram(__phys_to_pfn(p))) {
148
		printk("__ioremap(): phys addr 0x%llx is RAM lr %ps\n",
149
		       (unsigned long long)p, __builtin_return_address(0));
150 151
		return NULL;
	}
152
#endif
153 154 155 156 157 158

	if (size == 0)
		return NULL;

	/*
	 * Is it already mapped?  Perhaps overlapped by a previous
159
	 * mapping.
160
	 */
161 162
	v = p_block_mapped(p);
	if (v)
163 164
		goto out;

165
	if (slab_is_available()) {
166
		struct vm_struct *area;
167
		area = get_vm_area_caller(size, VM_IOREMAP, caller);
168 169
		if (area == 0)
			return NULL;
170
		area->phys_addr = p;
171 172 173 174 175 176 177 178 179 180 181
		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)
182
		err = map_kernel_page(v + i, p + i, prot);
183
	if (err) {
184
		if (slab_is_available())
185 186 187 188 189 190 191
			vunmap((void *)v);
		return NULL;
	}

out:
	return (void __iomem *) (v + ((unsigned long)addr & ~PAGE_MASK));
}
192
EXPORT_SYMBOL(__ioremap);
193 194 195 196 197 198 199

void iounmap(volatile void __iomem *addr)
{
	/*
	 * If mapped by BATs then there is nothing to do.
	 * Calling vfree() generates a benign warning.
	 */
200 201
	if (v_block_mapped((unsigned long)addr))
		return;
202 203 204 205

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

208
int map_kernel_page(unsigned long va, phys_addr_t pa, pgprot_t prot)
209 210 211 212 213 214
{
	pmd_t *pd;
	pte_t *pg;
	int err = -ENOMEM;

	/* Use upper 10 bits of VA to index the first level map */
215
	pd = pmd_offset(pud_offset(pgd_offset_k(va), va), va);
216
	/* Use middle 10 bits of VA to index the second-level map */
217
	pg = pte_alloc_kernel(pd, va);
218 219
	if (pg != 0) {
		err = 0;
220 221 222
		/* The PTE should never be already set nor present in the
		 * hash table
		 */
223
		BUG_ON((pte_present(*pg) | pte_hashpte(*pg)) && pgprot_val(prot));
224
		set_pte_at(&init_mm, va, pg, pfn_pte(pa >> PAGE_SHIFT, prot));
225
	}
226
	smp_wmb();
227 228 229 230
	return err;
}

/*
231
 * Map in a chunk of physical memory starting at start.
232
 */
233
static void __init __mapin_ram_chunk(unsigned long offset, unsigned long top)
234
{
235
	unsigned long v, s;
236
	phys_addr_t p;
237
	int ktext;
238

239
	s = offset;
240
	v = PAGE_OFFSET + s;
241
	p = memstart_addr + s;
242
	for (; s < top; s += PAGE_SIZE) {
243 244
		ktext = ((char *)v >= _stext && (char *)v < etext) ||
			((char *)v >= _sinittext && (char *)v < _einittext);
245
		map_kernel_page(v, p, ktext ? PAGE_KERNEL_TEXT : PAGE_KERNEL);
246
#ifdef CONFIG_PPC_BOOK3S_32
247
		if (ktext)
248
			hash_preload(&init_mm, v, false, 0x300);
249
#endif
250 251 252 253 254
		v += PAGE_SIZE;
		p += PAGE_SIZE;
	}
}

255 256
void __init mapin_ram(void)
{
257 258 259 260 261
	struct memblock_region *reg;

	for_each_memblock(memory, reg) {
		phys_addr_t base = reg->base;
		phys_addr_t top = min(base + reg->size, total_lowmem);
262

263 264 265 266
		if (base >= top)
			continue;
		base = mmu_mapin_ram(base, top);
		__mapin_ram_chunk(base, top);
267 268 269
	}
}

270 271 272 273 274
/* 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.
 */
275
static int
276
get_pteptr(struct mm_struct *mm, unsigned long addr, pte_t **ptep, pmd_t **pmdp)
277 278
{
        pgd_t	*pgd;
279
	pud_t	*pud;
280 281 282 283 284 285
        pmd_t	*pmd;
        pte_t	*pte;
        int     retval = 0;

        pgd = pgd_offset(mm, addr & PAGE_MASK);
        if (pgd) {
286 287 288 289 290 291 292 293 294 295 296 297 298 299
		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 */
				}
			}
		}
300 301 302 303
        }
        return(retval);
}

304
static int __change_page_attr_noflush(struct page *page, pgprot_t prot)
305 306 307 308 309 310 311 312
{
	pte_t *kpte;
	pmd_t *kpmd;
	unsigned long address;

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

313
	if (v_block_mapped(address))
314 315 316
		return 0;
	if (!get_pteptr(&init_mm, address, &kpte, &kpmd))
		return -EINVAL;
317
	__set_pte_at(&init_mm, address, kpte, mk_pte(page, prot), 0);
318 319 320 321 322 323 324 325
	pte_unmap(kpte);

	return 0;
}

/*
 * Change the page attributes of an page in the linear mapping.
 *
326
 * THIS DOES NOTHING WITH BAT MAPPINGS, DEBUG USE ONLY
327 328 329 330 331
 */
static int change_page_attr(struct page *page, int numpages, pgprot_t prot)
{
	int i, err = 0;
	unsigned long flags;
332
	struct page *start = page;
333 334 335

	local_irq_save(flags);
	for (i = 0; i < numpages; i++, page++) {
336
		err = __change_page_attr_noflush(page, prot);
337 338 339
		if (err)
			break;
	}
340
	wmb();
341
	local_irq_restore(flags);
342 343
	flush_tlb_kernel_range((unsigned long)page_address(start),
			       (unsigned long)page_address(page));
344 345 346
	return err;
}

347 348 349 350 351 352 353 354
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);
}
355

356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
#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

379
#ifdef CONFIG_DEBUG_PAGEALLOC
380
void __kernel_map_pages(struct page *page, int numpages, int enable)
381 382 383 384 385 386 387
{
	if (PageHighMem(page))
		return;

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