[POWERPC] Remove ioremap64 and fixup_bigphys_addr
[safe/jmp/linux-2.6] / arch / powerpc / mm / pgtable_32.c
1 /*
2  * This file contains the routines setting up the linux page tables.
3  *  -- paulus
4  *
5  *  Derived from arch/ppc/mm/init.c:
6  *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
7  *
8  *  Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au)
9  *  and Cort Dougan (PReP) (cort@cs.nmt.edu)
10  *    Copyright (C) 1996 Paul Mackerras
11  *  Amiga/APUS changes by Jesper Skov (jskov@cygnus.co.uk).
12  *
13  *  Derived from "arch/i386/mm/init.c"
14  *    Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
15  *
16  *  This program is free software; you can redistribute it and/or
17  *  modify it under the terms of the GNU General Public License
18  *  as published by the Free Software Foundation; either version
19  *  2 of the License, or (at your option) any later version.
20  *
21  */
22
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/types.h>
26 #include <linux/mm.h>
27 #include <linux/vmalloc.h>
28 #include <linux/init.h>
29 #include <linux/highmem.h>
30
31 #include <asm/pgtable.h>
32 #include <asm/pgalloc.h>
33 #include <asm/io.h>
34
35 #include "mmu_decl.h"
36
37 unsigned long ioremap_base;
38 unsigned long ioremap_bot;
39 EXPORT_SYMBOL(ioremap_bot);     /* aka VMALLOC_END */
40 int io_bat_index;
41
42 #if defined(CONFIG_6xx) || defined(CONFIG_POWER3)
43 #define HAVE_BATS       1
44 #endif
45
46 #if defined(CONFIG_FSL_BOOKE)
47 #define HAVE_TLBCAM     1
48 #endif
49
50 extern char etext[], _stext[];
51
52 #ifdef CONFIG_SMP
53 extern void hash_page_sync(void);
54 #endif
55
56 #ifdef HAVE_BATS
57 extern unsigned long v_mapped_by_bats(unsigned long va);
58 extern unsigned long p_mapped_by_bats(unsigned long pa);
59 void setbat(int index, unsigned long virt, unsigned long phys,
60             unsigned int size, int flags);
61
62 #else /* !HAVE_BATS */
63 #define v_mapped_by_bats(x)     (0UL)
64 #define p_mapped_by_bats(x)     (0UL)
65 #endif /* HAVE_BATS */
66
67 #ifdef HAVE_TLBCAM
68 extern unsigned int tlbcam_index;
69 extern unsigned long v_mapped_by_tlbcam(unsigned long va);
70 extern unsigned long p_mapped_by_tlbcam(unsigned long pa);
71 #else /* !HAVE_TLBCAM */
72 #define v_mapped_by_tlbcam(x)   (0UL)
73 #define p_mapped_by_tlbcam(x)   (0UL)
74 #endif /* HAVE_TLBCAM */
75
76 #ifdef CONFIG_PTE_64BIT
77 /* 44x uses an 8kB pgdir because it has 8-byte Linux PTEs. */
78 #define PGDIR_ORDER     1
79 #else
80 #define PGDIR_ORDER     0
81 #endif
82
83 pgd_t *pgd_alloc(struct mm_struct *mm)
84 {
85         pgd_t *ret;
86
87         ret = (pgd_t *)__get_free_pages(GFP_KERNEL|__GFP_ZERO, PGDIR_ORDER);
88         return ret;
89 }
90
91 void pgd_free(pgd_t *pgd)
92 {
93         free_pages((unsigned long)pgd, PGDIR_ORDER);
94 }
95
96 pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
97 {
98         pte_t *pte;
99         extern int mem_init_done;
100         extern void *early_get_page(void);
101
102         if (mem_init_done) {
103                 pte = (pte_t *)__get_free_page(GFP_KERNEL|__GFP_REPEAT|__GFP_ZERO);
104         } else {
105                 pte = (pte_t *)early_get_page();
106                 if (pte)
107                         clear_page(pte);
108         }
109         return pte;
110 }
111
112 struct page *pte_alloc_one(struct mm_struct *mm, unsigned long address)
113 {
114         struct page *ptepage;
115
116 #ifdef CONFIG_HIGHPTE
117         gfp_t flags = GFP_KERNEL | __GFP_HIGHMEM | __GFP_REPEAT;
118 #else
119         gfp_t flags = GFP_KERNEL | __GFP_REPEAT;
120 #endif
121
122         ptepage = alloc_pages(flags, 0);
123         if (ptepage)
124                 clear_highpage(ptepage);
125         return ptepage;
126 }
127
128 void pte_free_kernel(pte_t *pte)
129 {
130 #ifdef CONFIG_SMP
131         hash_page_sync();
132 #endif
133         free_page((unsigned long)pte);
134 }
135
136 void pte_free(struct page *ptepage)
137 {
138 #ifdef CONFIG_SMP
139         hash_page_sync();
140 #endif
141         __free_page(ptepage);
142 }
143
144 void __iomem *
145 ioremap(phys_addr_t addr, unsigned long size)
146 {
147         return __ioremap(addr, size, _PAGE_NO_CACHE);
148 }
149 EXPORT_SYMBOL(ioremap);
150
151 void __iomem *
152 __ioremap(phys_addr_t addr, unsigned long size, unsigned long flags)
153 {
154         unsigned long v, i;
155         phys_addr_t p;
156         int err;
157
158         /*
159          * Choose an address to map it to.
160          * Once the vmalloc system is running, we use it.
161          * Before then, we use space going down from ioremap_base
162          * (ioremap_bot records where we're up to).
163          */
164         p = addr & PAGE_MASK;
165         size = PAGE_ALIGN(addr + size) - p;
166
167         /*
168          * If the address lies within the first 16 MB, assume it's in ISA
169          * memory space
170          */
171         if (p < 16*1024*1024)
172                 p += _ISA_MEM_BASE;
173
174         /*
175          * Don't allow anybody to remap normal RAM that we're using.
176          * mem_init() sets high_memory so only do the check after that.
177          */
178         if (mem_init_done && (p < virt_to_phys(high_memory))) {
179                 printk("__ioremap(): phys addr "PHYS_FMT" is RAM lr %p\n", p,
180                        __builtin_return_address(0));
181                 return NULL;
182         }
183
184         if (size == 0)
185                 return NULL;
186
187         /*
188          * Is it already mapped?  Perhaps overlapped by a previous
189          * BAT mapping.  If the whole area is mapped then we're done,
190          * otherwise remap it since we want to keep the virt addrs for
191          * each request contiguous.
192          *
193          * We make the assumption here that if the bottom and top
194          * of the range we want are mapped then it's mapped to the
195          * same virt address (and this is contiguous).
196          *  -- Cort
197          */
198         if ((v = p_mapped_by_bats(p)) /*&& p_mapped_by_bats(p+size-1)*/ )
199                 goto out;
200
201         if ((v = p_mapped_by_tlbcam(p)))
202                 goto out;
203
204         if (mem_init_done) {
205                 struct vm_struct *area;
206                 area = get_vm_area(size, VM_IOREMAP);
207                 if (area == 0)
208                         return NULL;
209                 v = (unsigned long) area->addr;
210         } else {
211                 v = (ioremap_bot -= size);
212         }
213
214         if ((flags & _PAGE_PRESENT) == 0)
215                 flags |= _PAGE_KERNEL;
216         if (flags & _PAGE_NO_CACHE)
217                 flags |= _PAGE_GUARDED;
218
219         /*
220          * Should check if it is a candidate for a BAT mapping
221          */
222
223         err = 0;
224         for (i = 0; i < size && err == 0; i += PAGE_SIZE)
225                 err = map_page(v+i, p+i, flags);
226         if (err) {
227                 if (mem_init_done)
228                         vunmap((void *)v);
229                 return NULL;
230         }
231
232 out:
233         return (void __iomem *) (v + ((unsigned long)addr & ~PAGE_MASK));
234 }
235 EXPORT_SYMBOL(__ioremap);
236
237 void iounmap(volatile void __iomem *addr)
238 {
239         /*
240          * If mapped by BATs then there is nothing to do.
241          * Calling vfree() generates a benign warning.
242          */
243         if (v_mapped_by_bats((unsigned long)addr)) return;
244
245         if (addr > high_memory && (unsigned long) addr < ioremap_bot)
246                 vunmap((void *) (PAGE_MASK & (unsigned long)addr));
247 }
248 EXPORT_SYMBOL(iounmap);
249
250 void __iomem *ioport_map(unsigned long port, unsigned int len)
251 {
252         return (void __iomem *) (port + _IO_BASE);
253 }
254
255 void ioport_unmap(void __iomem *addr)
256 {
257         /* Nothing to do */
258 }
259 EXPORT_SYMBOL(ioport_map);
260 EXPORT_SYMBOL(ioport_unmap);
261
262 int
263 map_page(unsigned long va, phys_addr_t pa, int flags)
264 {
265         pmd_t *pd;
266         pte_t *pg;
267         int err = -ENOMEM;
268
269         /* Use upper 10 bits of VA to index the first level map */
270         pd = pmd_offset(pgd_offset_k(va), va);
271         /* Use middle 10 bits of VA to index the second-level map */
272         pg = pte_alloc_kernel(pd, va);
273         if (pg != 0) {
274                 err = 0;
275                 set_pte_at(&init_mm, va, pg, pfn_pte(pa >> PAGE_SHIFT, __pgprot(flags)));
276                 if (mem_init_done)
277                         flush_HPTE(0, va, pmd_val(*pd));
278         }
279         return err;
280 }
281
282 /*
283  * Map in all of physical memory starting at KERNELBASE.
284  */
285 void __init mapin_ram(void)
286 {
287         unsigned long v, p, s, f;
288
289         s = mmu_mapin_ram();
290         v = KERNELBASE + s;
291         p = PPC_MEMSTART + s;
292         for (; s < total_lowmem; s += PAGE_SIZE) {
293                 if ((char *) v >= _stext && (char *) v < etext)
294                         f = _PAGE_RAM_TEXT;
295                 else
296                         f = _PAGE_RAM;
297                 map_page(v, p, f);
298                 v += PAGE_SIZE;
299                 p += PAGE_SIZE;
300         }
301 }
302
303 /* is x a power of 2? */
304 #define is_power_of_2(x)        ((x) != 0 && (((x) & ((x) - 1)) == 0))
305
306 /* is x a power of 4? */
307 #define is_power_of_4(x)        ((x) != 0 && (((x) & (x-1)) == 0) && (ffs(x) & 1))
308
309 /*
310  * Set up a mapping for a block of I/O.
311  * virt, phys, size must all be page-aligned.
312  * This should only be called before ioremap is called.
313  */
314 void __init io_block_mapping(unsigned long virt, phys_addr_t phys,
315                              unsigned int size, int flags)
316 {
317         int i;
318
319         if (virt > KERNELBASE && virt < ioremap_bot)
320                 ioremap_bot = ioremap_base = virt;
321
322 #ifdef HAVE_BATS
323         /*
324          * Use a BAT for this if possible...
325          */
326         if (io_bat_index < 2 && is_power_of_2(size)
327             && (virt & (size - 1)) == 0 && (phys & (size - 1)) == 0) {
328                 setbat(io_bat_index, virt, phys, size, flags);
329                 ++io_bat_index;
330                 return;
331         }
332 #endif /* HAVE_BATS */
333
334 #ifdef HAVE_TLBCAM
335         /*
336          * Use a CAM for this if possible...
337          */
338         if (tlbcam_index < num_tlbcam_entries && is_power_of_4(size)
339             && (virt & (size - 1)) == 0 && (phys & (size - 1)) == 0) {
340                 settlbcam(tlbcam_index, virt, phys, size, flags, 0);
341                 ++tlbcam_index;
342                 return;
343         }
344 #endif /* HAVE_TLBCAM */
345
346         /* No BATs available, put it in the page tables. */
347         for (i = 0; i < size; i += PAGE_SIZE)
348                 map_page(virt + i, phys + i, flags);
349 }
350
351 /* Scan the real Linux page tables and return a PTE pointer for
352  * a virtual address in a context.
353  * Returns true (1) if PTE was found, zero otherwise.  The pointer to
354  * the PTE pointer is unmodified if PTE is not found.
355  */
356 int
357 get_pteptr(struct mm_struct *mm, unsigned long addr, pte_t **ptep, pmd_t **pmdp)
358 {
359         pgd_t   *pgd;
360         pmd_t   *pmd;
361         pte_t   *pte;
362         int     retval = 0;
363
364         pgd = pgd_offset(mm, addr & PAGE_MASK);
365         if (pgd) {
366                 pmd = pmd_offset(pgd, addr & PAGE_MASK);
367                 if (pmd_present(*pmd)) {
368                         pte = pte_offset_map(pmd, addr & PAGE_MASK);
369                         if (pte) {
370                                 retval = 1;
371                                 *ptep = pte;
372                                 if (pmdp)
373                                         *pmdp = pmd;
374                                 /* XXX caller needs to do pte_unmap, yuck */
375                         }
376                 }
377         }
378         return(retval);
379 }
380
381 /* Find physical address for this virtual address.  Normally used by
382  * I/O functions, but anyone can call it.
383  */
384 unsigned long iopa(unsigned long addr)
385 {
386         unsigned long pa;
387
388         /* I don't know why this won't work on PMacs or CHRP.  It
389          * appears there is some bug, or there is some implicit
390          * mapping done not properly represented by BATs or in page
391          * tables.......I am actively working on resolving this, but
392          * can't hold up other stuff.  -- Dan
393          */
394         pte_t *pte;
395         struct mm_struct *mm;
396
397         /* Check the BATs */
398         pa = v_mapped_by_bats(addr);
399         if (pa)
400                 return pa;
401
402         /* Allow mapping of user addresses (within the thread)
403          * for DMA if necessary.
404          */
405         if (addr < TASK_SIZE)
406                 mm = current->mm;
407         else
408                 mm = &init_mm;
409
410         pa = 0;
411         if (get_pteptr(mm, addr, &pte, NULL)) {
412                 pa = (pte_val(*pte) & PAGE_MASK) | (addr & ~PAGE_MASK);
413                 pte_unmap(pte);
414         }
415
416         return(pa);
417 }
418
419 /* This is will find the virtual address for a physical one....
420  * Swiped from APUS, could be dangerous :-).
421  * This is only a placeholder until I really find a way to make this
422  * work.  -- Dan
423  */
424 unsigned long
425 mm_ptov (unsigned long paddr)
426 {
427         unsigned long ret;
428 #if 0
429         if (paddr < 16*1024*1024)
430                 ret = ZTWO_VADDR(paddr);
431         else {
432                 int i;
433
434                 for (i = 0; i < kmap_chunk_count;){
435                         unsigned long phys = kmap_chunks[i++];
436                         unsigned long size = kmap_chunks[i++];
437                         unsigned long virt = kmap_chunks[i++];
438                         if (paddr >= phys
439                             && paddr < (phys + size)){
440                                 ret = virt + paddr - phys;
441                                 goto exit;
442                         }
443                 }
444         
445                 ret = (unsigned long) __va(paddr);
446         }
447 exit:
448 #ifdef DEBUGPV
449         printk ("PTOV(%lx)=%lx\n", paddr, ret);
450 #endif
451 #else
452         ret = (unsigned long)paddr + KERNELBASE;
453 #endif
454         return ret;
455 }
456