mtd: spear_smi: Fix Write Burst mode
[linux/fpc-iii.git] / arch / microblaze / mm / pgtable.c
blob010bb9cee2e417bc41b8e3f116bd57ef77bd3ec0
1 /*
2 * This file contains the routines setting up the linux page tables.
4 * Copyright (C) 2008 Michal Simek
5 * Copyright (C) 2008 PetaLogix
7 * Copyright (C) 2007 Xilinx, Inc. All rights reserved.
9 * Derived from arch/ppc/mm/pgtable.c:
10 * -- paulus
12 * Derived from arch/ppc/mm/init.c:
13 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
15 * Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au)
16 * and Cort Dougan (PReP) (cort@cs.nmt.edu)
17 * Copyright (C) 1996 Paul Mackerras
18 * Amiga/APUS changes by Jesper Skov (jskov@cygnus.co.uk).
20 * Derived from "arch/i386/mm/init.c"
21 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
23 * This file is subject to the terms and conditions of the GNU General
24 * Public License. See the file COPYING in the main directory of this
25 * archive for more details.
29 #include <linux/export.h>
30 #include <linux/kernel.h>
31 #include <linux/types.h>
32 #include <linux/vmalloc.h>
33 #include <linux/init.h>
34 #include <linux/mm_types.h>
36 #include <asm/pgtable.h>
37 #include <asm/pgalloc.h>
38 #include <linux/io.h>
39 #include <asm/mmu.h>
40 #include <asm/sections.h>
41 #include <asm/fixmap.h>
43 unsigned long ioremap_base;
44 unsigned long ioremap_bot;
45 EXPORT_SYMBOL(ioremap_bot);
47 static void __iomem *__ioremap(phys_addr_t addr, unsigned long size,
48 unsigned long flags)
50 unsigned long v, i;
51 phys_addr_t p;
52 int err;
55 * Choose an address to map it to.
56 * Once the vmalloc system is running, we use it.
57 * Before then, we use space going down from ioremap_base
58 * (ioremap_bot records where we're up to).
60 p = addr & PAGE_MASK;
61 size = PAGE_ALIGN(addr + size) - p;
64 * Don't allow anybody to remap normal RAM that we're using.
65 * mem_init() sets high_memory so only do the check after that.
67 * However, allow remap of rootfs: TBD
70 if (mem_init_done &&
71 p >= memory_start && p < virt_to_phys(high_memory) &&
72 !(p >= __virt_to_phys((phys_addr_t)__bss_stop) &&
73 p < __virt_to_phys((phys_addr_t)__bss_stop))) {
74 pr_warn("__ioremap(): phys addr "PTE_FMT" is RAM lr %ps\n",
75 (unsigned long)p, __builtin_return_address(0));
76 return NULL;
79 if (size == 0)
80 return NULL;
83 * Is it already mapped? If the whole area is mapped then we're
84 * done, otherwise remap it since we want to keep the virt addrs for
85 * each request contiguous.
87 * We make the assumption here that if the bottom and top
88 * of the range we want are mapped then it's mapped to the
89 * same virt address (and this is contiguous).
90 * -- Cort
93 if (mem_init_done) {
94 struct vm_struct *area;
95 area = get_vm_area(size, VM_IOREMAP);
96 if (area == NULL)
97 return NULL;
98 v = (unsigned long) area->addr;
99 } else {
100 v = (ioremap_bot -= size);
103 if ((flags & _PAGE_PRESENT) == 0)
104 flags |= _PAGE_KERNEL;
105 if (flags & _PAGE_NO_CACHE)
106 flags |= _PAGE_GUARDED;
108 err = 0;
109 for (i = 0; i < size && err == 0; i += PAGE_SIZE)
110 err = map_page(v + i, p + i, flags);
111 if (err) {
112 if (mem_init_done)
113 vfree((void *)v);
114 return NULL;
117 return (void __iomem *) (v + ((unsigned long)addr & ~PAGE_MASK));
120 void __iomem *ioremap(phys_addr_t addr, unsigned long size)
122 return __ioremap(addr, size, _PAGE_NO_CACHE);
124 EXPORT_SYMBOL(ioremap);
126 void iounmap(volatile void __iomem *addr)
128 if ((__force void *)addr > high_memory &&
129 (unsigned long) addr < ioremap_bot)
130 vfree((void *) (PAGE_MASK & (unsigned long) addr));
132 EXPORT_SYMBOL(iounmap);
135 int map_page(unsigned long va, phys_addr_t pa, int flags)
137 pmd_t *pd;
138 pte_t *pg;
139 int err = -ENOMEM;
140 /* Use upper 10 bits of VA to index the first level map */
141 pd = pmd_offset(pgd_offset_k(va), va);
142 /* Use middle 10 bits of VA to index the second-level map */
143 pg = pte_alloc_kernel(pd, va); /* from powerpc - pgtable.c */
144 /* pg = pte_alloc_kernel(&init_mm, pd, va); */
146 if (pg != NULL) {
147 err = 0;
148 set_pte_at(&init_mm, va, pg, pfn_pte(pa >> PAGE_SHIFT,
149 __pgprot(flags)));
150 if (unlikely(mem_init_done))
151 _tlbie(va);
153 return err;
157 * Map in all of physical memory starting at CONFIG_KERNEL_START.
159 void __init mapin_ram(void)
161 unsigned long v, p, s, f;
163 v = CONFIG_KERNEL_START;
164 p = memory_start;
165 for (s = 0; s < lowmem_size; s += PAGE_SIZE) {
166 f = _PAGE_PRESENT | _PAGE_ACCESSED |
167 _PAGE_SHARED | _PAGE_HWEXEC;
168 if ((char *) v < _stext || (char *) v >= _etext)
169 f |= _PAGE_WRENABLE;
170 else
171 /* On the MicroBlaze, no user access
172 forces R/W kernel access */
173 f |= _PAGE_USER;
174 map_page(v, p, f);
175 v += PAGE_SIZE;
176 p += PAGE_SIZE;
180 /* is x a power of 2? */
181 #define is_power_of_2(x) ((x) != 0 && (((x) & ((x) - 1)) == 0))
183 /* Scan the real Linux page tables and return a PTE pointer for
184 * a virtual address in a context.
185 * Returns true (1) if PTE was found, zero otherwise. The pointer to
186 * the PTE pointer is unmodified if PTE is not found.
188 static int get_pteptr(struct mm_struct *mm, unsigned long addr, pte_t **ptep)
190 pgd_t *pgd;
191 pmd_t *pmd;
192 pte_t *pte;
193 int retval = 0;
195 pgd = pgd_offset(mm, addr & PAGE_MASK);
196 if (pgd) {
197 pmd = pmd_offset(pgd, addr & PAGE_MASK);
198 if (pmd_present(*pmd)) {
199 pte = pte_offset_kernel(pmd, addr & PAGE_MASK);
200 if (pte) {
201 retval = 1;
202 *ptep = pte;
206 return retval;
209 /* Find physical address for this virtual address. Normally used by
210 * I/O functions, but anyone can call it.
212 unsigned long iopa(unsigned long addr)
214 unsigned long pa;
216 pte_t *pte;
217 struct mm_struct *mm;
219 /* Allow mapping of user addresses (within the thread)
220 * for DMA if necessary.
222 if (addr < TASK_SIZE)
223 mm = current->mm;
224 else
225 mm = &init_mm;
227 pa = 0;
228 if (get_pteptr(mm, addr, &pte))
229 pa = (pte_val(*pte) & PAGE_MASK) | (addr & ~PAGE_MASK);
231 return pa;
234 __ref pte_t *pte_alloc_one_kernel(struct mm_struct *mm)
236 pte_t *pte;
237 if (mem_init_done) {
238 pte = (pte_t *)__get_free_page(GFP_KERNEL | __GFP_ZERO);
239 } else {
240 pte = (pte_t *)early_get_page();
241 if (pte)
242 clear_page(pte);
244 return pte;
247 void __set_fixmap(enum fixed_addresses idx, phys_addr_t phys, pgprot_t flags)
249 unsigned long address = __fix_to_virt(idx);
251 if (idx >= __end_of_fixed_addresses)
252 BUG();
254 map_page(address, phys, pgprot_val(flags));