pgtable_64.c 5.5 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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
/*
 *  This file contains ioremap and related functions for 64-bit machines.
 *
 *  Derived from arch/ppc64/mm/init.c
 *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
 *
 *  Modifications by Paul Mackerras (PowerMac) (paulus@samba.org)
 *  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
 *
 *  Dave Engebretsen <engebret@us.ibm.com>
 *      Rework for PPC64 port.
 *
 *  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/signal.h>
#include <linux/sched.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/string.h>
#include <linux/types.h>
#include <linux/mman.h>
#include <linux/mm.h>
#include <linux/swap.h>
#include <linux/stddef.h>
#include <linux/vmalloc.h>
#include <linux/init.h>

#include <asm/pgalloc.h>
#include <asm/page.h>
#include <asm/prom.h>
#include <asm/io.h>
#include <asm/mmu_context.h>
#include <asm/pgtable.h>
#include <asm/mmu.h>
#include <asm/smp.h>
#include <asm/machdep.h>
#include <asm/tlb.h>
#include <asm/processor.h>
#include <asm/cputable.h>
#include <asm/sections.h>
#include <asm/system.h>
#include <asm/abs_addr.h>
52
#include <asm/firmware.h>
D
David Gibson 已提交
53 54

#include "mmu_decl.h"
55

56
unsigned long ioremap_bot = IOREMAP_BASE;
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77

/*
 * map_io_page currently only called by __ioremap
 * map_io_page adds an entry to the ioremap page table
 * and adds an entry to the HPT, possibly bolting it
 */
static int map_io_page(unsigned long ea, unsigned long pa, int flags)
{
	pgd_t *pgdp;
	pud_t *pudp;
	pmd_t *pmdp;
	pte_t *ptep;

	if (mem_init_done) {
		pgdp = pgd_offset_k(ea);
		pudp = pud_alloc(&init_mm, pgdp, ea);
		if (!pudp)
			return -ENOMEM;
		pmdp = pmd_alloc(&init_mm, pudp, ea);
		if (!pmdp)
			return -ENOMEM;
P
Paul Mackerras 已提交
78
		ptep = pte_alloc_kernel(pmdp, ea);
79 80 81 82 83 84 85 86 87
		if (!ptep)
			return -ENOMEM;
		set_pte_at(&init_mm, ea, ptep, pfn_pte(pa >> PAGE_SHIFT,
							  __pgprot(flags)));
	} else {
		/*
		 * If the mm subsystem is not fully up, we cannot create a
		 * linux page table entry for this mapping.  Simply bolt an
		 * entry in the hardware page table.
88
		 *
89
		 */
90 91
		if (htab_bolt_mapping(ea, (unsigned long)ea + PAGE_SIZE,
				      pa, flags, mmu_io_psize)) {
92 93 94 95
			printk(KERN_ERR "Failed to do bolted mapping IO "
			       "memory at %016lx !\n", pa);
			return -ENOMEM;
		}
96 97 98 99 100
	}
	return 0;
}


101 102 103 104 105
/**
 * __ioremap_at - Low level function to establish the page tables
 *                for an IO mapping
 */
void __iomem * __ioremap_at(phys_addr_t pa, void *ea, unsigned long size,
106 107 108 109 110 111 112
			    unsigned long flags)
{
	unsigned long i;

	if ((flags & _PAGE_PRESENT) == 0)
		flags |= pgprot_val(PAGE_KERNEL);

113 114 115 116
	WARN_ON(pa & ~PAGE_MASK);
	WARN_ON(((unsigned long)ea) & ~PAGE_MASK);
	WARN_ON(size & ~PAGE_MASK);

117
	for (i = 0; i < size; i += PAGE_SIZE)
118
		if (map_io_page((unsigned long)ea+i, pa+i, flags))
119 120
			return NULL;

121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
	return (void __iomem *)ea;
}

/**
 * __iounmap_from - Low level function to tear down the page tables
 *                  for an IO mapping. This is used for mappings that
 *                  are manipulated manually, like partial unmapping of
 *                  PCI IOs or ISA space.
 */
void __iounmap_at(void *ea, unsigned long size)
{
	WARN_ON(((unsigned long)ea) & ~PAGE_MASK);
	WARN_ON(size & ~PAGE_MASK);

	unmap_kernel_range((unsigned long)ea, size);
136 137
}

138
void __iomem * __ioremap(phys_addr_t addr, unsigned long size,
139 140
			 unsigned long flags)
{
141
	phys_addr_t paligned;
142 143 144 145 146 147 148 149 150 151 152
	void __iomem *ret;

	/*
	 * Choose an address to map it to.
	 * Once the imalloc system is running, we use it.
	 * Before that, we map using addresses going
	 * up from ioremap_bot.  imalloc will use
	 * the addresses from ioremap_bot through
	 * IMALLOC_END
	 * 
	 */
153 154
	paligned = addr & PAGE_MASK;
	size = PAGE_ALIGN(addr + size) - paligned;
155

156
	if ((size == 0) || (paligned == 0))
157 158 159 160
		return NULL;

	if (mem_init_done) {
		struct vm_struct *area;
161 162 163

		area = __get_vm_area(size, VM_IOREMAP,
				     ioremap_bot, IOREMAP_END);
164 165
		if (area == NULL)
			return NULL;
166
		ret = __ioremap_at(paligned, area->addr, size, flags);
167
		if (!ret)
168
			vunmap(area->addr);
169
	} else {
170
		ret = __ioremap_at(paligned, (void *)ioremap_bot, size, flags);
171 172 173
		if (ret)
			ioremap_bot += size;
	}
174 175 176

	if (ret)
		ret += addr & ~PAGE_MASK;
177 178 179
	return ret;
}

180

181
void __iomem * ioremap(phys_addr_t addr, unsigned long size)
182 183 184 185 186 187 188 189
{
	unsigned long flags = _PAGE_NO_CACHE | _PAGE_GUARDED;

	if (ppc_md.ioremap)
		return ppc_md.ioremap(addr, size, flags);
	return __ioremap(addr, size, flags);
}

190
void __iomem * ioremap_flags(phys_addr_t addr, unsigned long size,
191 192 193 194 195 196 197 198
			     unsigned long flags)
{
	if (ppc_md.ioremap)
		return ppc_md.ioremap(addr, size, flags);
	return __ioremap(addr, size, flags);
}


199 200 201 202
/*  
 * Unmap an IO region and remove it from imalloc'd list.
 * Access to IO memory should be serialized by driver.
 */
203
void __iounmap(volatile void __iomem *token)
204 205 206 207 208 209
{
	void *addr;

	if (!mem_init_done)
		return;
	
210 211 212 213 214 215 216 217
	addr = (void *) ((unsigned long __force)
			 PCI_FIX_ADDR(token) & PAGE_MASK);
	if ((unsigned long)addr < ioremap_bot) {
		printk(KERN_WARNING "Attempt to iounmap early bolted mapping"
		       " at 0x%p\n", addr);
		return;
	}
	vunmap(addr);
218 219
}

220
void iounmap(volatile void __iomem *token)
221 222 223 224 225 226 227
{
	if (ppc_md.iounmap)
		ppc_md.iounmap(token);
	else
		__iounmap(token);
}

228
EXPORT_SYMBOL(ioremap);
229
EXPORT_SYMBOL(ioremap_flags);
230 231
EXPORT_SYMBOL(__ioremap);
EXPORT_SYMBOL(iounmap);
232
EXPORT_SYMBOL(__iounmap);