Merge branch 'bugfixes' of git://git.linux-nfs.org/projects/trondmy/nfs-2.6
[linux-2.6/mini2440.git] / arch / x86 / mm / ioremap.c
blob2feb9bdedaaf01fd2f66e08899fb160bf810d220
1 /*
2 * Re-map IO memory to kernel address space so that we can access it.
3 * This is needed for high PCI addresses that aren't mapped in the
4 * 640k-1MB IO memory area on PC's
6 * (C) Copyright 1995 1996 Linus Torvalds
7 */
9 #include <linux/bootmem.h>
10 #include <linux/init.h>
11 #include <linux/io.h>
12 #include <linux/module.h>
13 #include <linux/slab.h>
14 #include <linux/vmalloc.h>
15 #include <linux/mmiotrace.h>
17 #include <asm/cacheflush.h>
18 #include <asm/e820.h>
19 #include <asm/fixmap.h>
20 #include <asm/pgtable.h>
21 #include <asm/tlbflush.h>
22 #include <asm/pgalloc.h>
23 #include <asm/pat.h>
25 #include "physaddr.h"
27 int page_is_ram(unsigned long pagenr)
29 resource_size_t addr, end;
30 int i;
33 * A special case is the first 4Kb of memory;
34 * This is a BIOS owned area, not kernel ram, but generally
35 * not listed as such in the E820 table.
37 if (pagenr == 0)
38 return 0;
41 * Second special case: Some BIOSen report the PC BIOS
42 * area (640->1Mb) as ram even though it is not.
44 if (pagenr >= (BIOS_BEGIN >> PAGE_SHIFT) &&
45 pagenr < (BIOS_END >> PAGE_SHIFT))
46 return 0;
48 for (i = 0; i < e820.nr_map; i++) {
50 * Not usable memory:
52 if (e820.map[i].type != E820_RAM)
53 continue;
54 addr = (e820.map[i].addr + PAGE_SIZE-1) >> PAGE_SHIFT;
55 end = (e820.map[i].addr + e820.map[i].size) >> PAGE_SHIFT;
58 if ((pagenr >= addr) && (pagenr < end))
59 return 1;
61 return 0;
65 * Fix up the linear direct mapping of the kernel to avoid cache attribute
66 * conflicts.
68 int ioremap_change_attr(unsigned long vaddr, unsigned long size,
69 unsigned long prot_val)
71 unsigned long nrpages = size >> PAGE_SHIFT;
72 int err;
74 switch (prot_val) {
75 case _PAGE_CACHE_UC:
76 default:
77 err = _set_memory_uc(vaddr, nrpages);
78 break;
79 case _PAGE_CACHE_WC:
80 err = _set_memory_wc(vaddr, nrpages);
81 break;
82 case _PAGE_CACHE_WB:
83 err = _set_memory_wb(vaddr, nrpages);
84 break;
87 return err;
91 * Remap an arbitrary physical address space into the kernel virtual
92 * address space. Needed when the kernel wants to access high addresses
93 * directly.
95 * NOTE! We need to allow non-page-aligned mappings too: we will obviously
96 * have to convert them into an offset in a page-aligned mapping, but the
97 * caller shouldn't need to know that small detail.
99 static void __iomem *__ioremap_caller(resource_size_t phys_addr,
100 unsigned long size, unsigned long prot_val, void *caller)
102 unsigned long pfn, offset, vaddr;
103 resource_size_t last_addr;
104 const resource_size_t unaligned_phys_addr = phys_addr;
105 const unsigned long unaligned_size = size;
106 struct vm_struct *area;
107 unsigned long new_prot_val;
108 pgprot_t prot;
109 int retval;
110 void __iomem *ret_addr;
112 /* Don't allow wraparound or zero size */
113 last_addr = phys_addr + size - 1;
114 if (!size || last_addr < phys_addr)
115 return NULL;
117 if (!phys_addr_valid(phys_addr)) {
118 printk(KERN_WARNING "ioremap: invalid physical address %llx\n",
119 (unsigned long long)phys_addr);
120 WARN_ON_ONCE(1);
121 return NULL;
125 * Don't remap the low PCI/ISA area, it's always mapped..
127 if (is_ISA_range(phys_addr, last_addr))
128 return (__force void __iomem *)phys_to_virt(phys_addr);
131 * Check if the request spans more than any BAR in the iomem resource
132 * tree.
134 WARN_ONCE(iomem_map_sanity_check(phys_addr, size),
135 KERN_INFO "Info: mapping multiple BARs. Your kernel is fine.");
138 * Don't allow anybody to remap normal RAM that we're using..
140 for (pfn = phys_addr >> PAGE_SHIFT;
141 (pfn << PAGE_SHIFT) < (last_addr & PAGE_MASK);
142 pfn++) {
144 int is_ram = page_is_ram(pfn);
146 if (is_ram && pfn_valid(pfn) && !PageReserved(pfn_to_page(pfn)))
147 return NULL;
148 WARN_ON_ONCE(is_ram);
152 * Mappings have to be page-aligned
154 offset = phys_addr & ~PAGE_MASK;
155 phys_addr &= PAGE_MASK;
156 size = PAGE_ALIGN(last_addr+1) - phys_addr;
158 retval = reserve_memtype(phys_addr, (u64)phys_addr + size,
159 prot_val, &new_prot_val);
160 if (retval) {
161 printk(KERN_ERR "ioremap reserve_memtype failed %d\n", retval);
162 return NULL;
165 if (prot_val != new_prot_val) {
166 if (!is_new_memtype_allowed(phys_addr, size,
167 prot_val, new_prot_val)) {
168 printk(KERN_ERR
169 "ioremap error for 0x%llx-0x%llx, requested 0x%lx, got 0x%lx\n",
170 (unsigned long long)phys_addr,
171 (unsigned long long)(phys_addr + size),
172 prot_val, new_prot_val);
173 goto err_free_memtype;
175 prot_val = new_prot_val;
178 switch (prot_val) {
179 case _PAGE_CACHE_UC:
180 default:
181 prot = PAGE_KERNEL_IO_NOCACHE;
182 break;
183 case _PAGE_CACHE_UC_MINUS:
184 prot = PAGE_KERNEL_IO_UC_MINUS;
185 break;
186 case _PAGE_CACHE_WC:
187 prot = PAGE_KERNEL_IO_WC;
188 break;
189 case _PAGE_CACHE_WB:
190 prot = PAGE_KERNEL_IO;
191 break;
195 * Ok, go for it..
197 area = get_vm_area_caller(size, VM_IOREMAP, caller);
198 if (!area)
199 goto err_free_memtype;
200 area->phys_addr = phys_addr;
201 vaddr = (unsigned long) area->addr;
203 if (kernel_map_sync_memtype(phys_addr, size, prot_val))
204 goto err_free_area;
206 if (ioremap_page_range(vaddr, vaddr + size, phys_addr, prot))
207 goto err_free_area;
209 ret_addr = (void __iomem *) (vaddr + offset);
210 mmiotrace_ioremap(unaligned_phys_addr, unaligned_size, ret_addr);
212 return ret_addr;
213 err_free_area:
214 free_vm_area(area);
215 err_free_memtype:
216 free_memtype(phys_addr, phys_addr + size);
217 return NULL;
221 * ioremap_nocache - map bus memory into CPU space
222 * @offset: bus address of the memory
223 * @size: size of the resource to map
225 * ioremap_nocache performs a platform specific sequence of operations to
226 * make bus memory CPU accessible via the readb/readw/readl/writeb/
227 * writew/writel functions and the other mmio helpers. The returned
228 * address is not guaranteed to be usable directly as a virtual
229 * address.
231 * This version of ioremap ensures that the memory is marked uncachable
232 * on the CPU as well as honouring existing caching rules from things like
233 * the PCI bus. Note that there are other caches and buffers on many
234 * busses. In particular driver authors should read up on PCI writes
236 * It's useful if some control registers are in such an area and
237 * write combining or read caching is not desirable:
239 * Must be freed with iounmap.
241 void __iomem *ioremap_nocache(resource_size_t phys_addr, unsigned long size)
244 * Ideally, this should be:
245 * pat_enabled ? _PAGE_CACHE_UC : _PAGE_CACHE_UC_MINUS;
247 * Till we fix all X drivers to use ioremap_wc(), we will use
248 * UC MINUS.
250 unsigned long val = _PAGE_CACHE_UC_MINUS;
252 return __ioremap_caller(phys_addr, size, val,
253 __builtin_return_address(0));
255 EXPORT_SYMBOL(ioremap_nocache);
258 * ioremap_wc - map memory into CPU space write combined
259 * @offset: bus address of the memory
260 * @size: size of the resource to map
262 * This version of ioremap ensures that the memory is marked write combining.
263 * Write combining allows faster writes to some hardware devices.
265 * Must be freed with iounmap.
267 void __iomem *ioremap_wc(resource_size_t phys_addr, unsigned long size)
269 if (pat_enabled)
270 return __ioremap_caller(phys_addr, size, _PAGE_CACHE_WC,
271 __builtin_return_address(0));
272 else
273 return ioremap_nocache(phys_addr, size);
275 EXPORT_SYMBOL(ioremap_wc);
277 void __iomem *ioremap_cache(resource_size_t phys_addr, unsigned long size)
279 return __ioremap_caller(phys_addr, size, _PAGE_CACHE_WB,
280 __builtin_return_address(0));
282 EXPORT_SYMBOL(ioremap_cache);
284 static void __iomem *ioremap_default(resource_size_t phys_addr,
285 unsigned long size)
287 unsigned long flags;
288 void __iomem *ret;
289 int err;
292 * - WB for WB-able memory and no other conflicting mappings
293 * - UC_MINUS for non-WB-able memory with no other conflicting mappings
294 * - Inherit from confliting mappings otherwise
296 err = reserve_memtype(phys_addr, phys_addr + size,
297 _PAGE_CACHE_WB, &flags);
298 if (err < 0)
299 return NULL;
301 ret = __ioremap_caller(phys_addr, size, flags,
302 __builtin_return_address(0));
304 free_memtype(phys_addr, phys_addr + size);
305 return ret;
308 void __iomem *ioremap_prot(resource_size_t phys_addr, unsigned long size,
309 unsigned long prot_val)
311 return __ioremap_caller(phys_addr, size, (prot_val & _PAGE_CACHE_MASK),
312 __builtin_return_address(0));
314 EXPORT_SYMBOL(ioremap_prot);
317 * iounmap - Free a IO remapping
318 * @addr: virtual address from ioremap_*
320 * Caller must ensure there is only one unmapping for the same pointer.
322 void iounmap(volatile void __iomem *addr)
324 struct vm_struct *p, *o;
326 if ((void __force *)addr <= high_memory)
327 return;
330 * __ioremap special-cases the PCI/ISA range by not instantiating a
331 * vm_area and by simply returning an address into the kernel mapping
332 * of ISA space. So handle that here.
334 if ((void __force *)addr >= phys_to_virt(ISA_START_ADDRESS) &&
335 (void __force *)addr < phys_to_virt(ISA_END_ADDRESS))
336 return;
338 addr = (volatile void __iomem *)
339 (PAGE_MASK & (unsigned long __force)addr);
341 mmiotrace_iounmap(addr);
343 /* Use the vm area unlocked, assuming the caller
344 ensures there isn't another iounmap for the same address
345 in parallel. Reuse of the virtual address is prevented by
346 leaving it in the global lists until we're done with it.
347 cpa takes care of the direct mappings. */
348 read_lock(&vmlist_lock);
349 for (p = vmlist; p; p = p->next) {
350 if (p->addr == (void __force *)addr)
351 break;
353 read_unlock(&vmlist_lock);
355 if (!p) {
356 printk(KERN_ERR "iounmap: bad address %p\n", addr);
357 dump_stack();
358 return;
361 free_memtype(p->phys_addr, p->phys_addr + get_vm_area_size(p));
363 /* Finally remove it */
364 o = remove_vm_area((void __force *)addr);
365 BUG_ON(p != o || o == NULL);
366 kfree(p);
368 EXPORT_SYMBOL(iounmap);
371 * Convert a physical pointer to a virtual kernel pointer for /dev/mem
372 * access
374 void *xlate_dev_mem_ptr(unsigned long phys)
376 void *addr;
377 unsigned long start = phys & PAGE_MASK;
379 /* If page is RAM, we can use __va. Otherwise ioremap and unmap. */
380 if (page_is_ram(start >> PAGE_SHIFT))
381 return __va(phys);
383 addr = (void __force *)ioremap_default(start, PAGE_SIZE);
384 if (addr)
385 addr = (void *)((unsigned long)addr | (phys & ~PAGE_MASK));
387 return addr;
390 void unxlate_dev_mem_ptr(unsigned long phys, void *addr)
392 if (page_is_ram(phys >> PAGE_SHIFT))
393 return;
395 iounmap((void __iomem *)((unsigned long)addr & PAGE_MASK));
396 return;
399 static int __initdata early_ioremap_debug;
401 static int __init early_ioremap_debug_setup(char *str)
403 early_ioremap_debug = 1;
405 return 0;
407 early_param("early_ioremap_debug", early_ioremap_debug_setup);
409 static __initdata int after_paging_init;
410 static pte_t bm_pte[PAGE_SIZE/sizeof(pte_t)] __page_aligned_bss;
412 static inline pmd_t * __init early_ioremap_pmd(unsigned long addr)
414 /* Don't assume we're using swapper_pg_dir at this point */
415 pgd_t *base = __va(read_cr3());
416 pgd_t *pgd = &base[pgd_index(addr)];
417 pud_t *pud = pud_offset(pgd, addr);
418 pmd_t *pmd = pmd_offset(pud, addr);
420 return pmd;
423 static inline pte_t * __init early_ioremap_pte(unsigned long addr)
425 return &bm_pte[pte_index(addr)];
428 static unsigned long slot_virt[FIX_BTMAPS_SLOTS] __initdata;
430 void __init early_ioremap_init(void)
432 pmd_t *pmd;
433 int i;
435 if (early_ioremap_debug)
436 printk(KERN_INFO "early_ioremap_init()\n");
438 for (i = 0; i < FIX_BTMAPS_SLOTS; i++)
439 slot_virt[i] = __fix_to_virt(FIX_BTMAP_BEGIN - NR_FIX_BTMAPS*i);
441 pmd = early_ioremap_pmd(fix_to_virt(FIX_BTMAP_BEGIN));
442 memset(bm_pte, 0, sizeof(bm_pte));
443 pmd_populate_kernel(&init_mm, pmd, bm_pte);
446 * The boot-ioremap range spans multiple pmds, for which
447 * we are not prepared:
449 if (pmd != early_ioremap_pmd(fix_to_virt(FIX_BTMAP_END))) {
450 WARN_ON(1);
451 printk(KERN_WARNING "pmd %p != %p\n",
452 pmd, early_ioremap_pmd(fix_to_virt(FIX_BTMAP_END)));
453 printk(KERN_WARNING "fix_to_virt(FIX_BTMAP_BEGIN): %08lx\n",
454 fix_to_virt(FIX_BTMAP_BEGIN));
455 printk(KERN_WARNING "fix_to_virt(FIX_BTMAP_END): %08lx\n",
456 fix_to_virt(FIX_BTMAP_END));
458 printk(KERN_WARNING "FIX_BTMAP_END: %d\n", FIX_BTMAP_END);
459 printk(KERN_WARNING "FIX_BTMAP_BEGIN: %d\n",
460 FIX_BTMAP_BEGIN);
464 void __init early_ioremap_reset(void)
466 after_paging_init = 1;
469 static void __init __early_set_fixmap(enum fixed_addresses idx,
470 phys_addr_t phys, pgprot_t flags)
472 unsigned long addr = __fix_to_virt(idx);
473 pte_t *pte;
475 if (idx >= __end_of_fixed_addresses) {
476 BUG();
477 return;
479 pte = early_ioremap_pte(addr);
481 if (pgprot_val(flags))
482 set_pte(pte, pfn_pte(phys >> PAGE_SHIFT, flags));
483 else
484 pte_clear(&init_mm, addr, pte);
485 __flush_tlb_one(addr);
488 static inline void __init early_set_fixmap(enum fixed_addresses idx,
489 phys_addr_t phys, pgprot_t prot)
491 if (after_paging_init)
492 __set_fixmap(idx, phys, prot);
493 else
494 __early_set_fixmap(idx, phys, prot);
497 static inline void __init early_clear_fixmap(enum fixed_addresses idx)
499 if (after_paging_init)
500 clear_fixmap(idx);
501 else
502 __early_set_fixmap(idx, 0, __pgprot(0));
505 static void __iomem *prev_map[FIX_BTMAPS_SLOTS] __initdata;
506 static unsigned long prev_size[FIX_BTMAPS_SLOTS] __initdata;
508 static int __init check_early_ioremap_leak(void)
510 int count = 0;
511 int i;
513 for (i = 0; i < FIX_BTMAPS_SLOTS; i++)
514 if (prev_map[i])
515 count++;
517 if (!count)
518 return 0;
519 WARN(1, KERN_WARNING
520 "Debug warning: early ioremap leak of %d areas detected.\n",
521 count);
522 printk(KERN_WARNING
523 "please boot with early_ioremap_debug and report the dmesg.\n");
525 return 1;
527 late_initcall(check_early_ioremap_leak);
529 static void __init __iomem *
530 __early_ioremap(resource_size_t phys_addr, unsigned long size, pgprot_t prot)
532 unsigned long offset;
533 resource_size_t last_addr;
534 unsigned int nrpages;
535 enum fixed_addresses idx0, idx;
536 int i, slot;
538 WARN_ON(system_state != SYSTEM_BOOTING);
540 slot = -1;
541 for (i = 0; i < FIX_BTMAPS_SLOTS; i++) {
542 if (!prev_map[i]) {
543 slot = i;
544 break;
548 if (slot < 0) {
549 printk(KERN_INFO "early_iomap(%08llx, %08lx) not found slot\n",
550 (u64)phys_addr, size);
551 WARN_ON(1);
552 return NULL;
555 if (early_ioremap_debug) {
556 printk(KERN_INFO "early_ioremap(%08llx, %08lx) [%d] => ",
557 (u64)phys_addr, size, slot);
558 dump_stack();
561 /* Don't allow wraparound or zero size */
562 last_addr = phys_addr + size - 1;
563 if (!size || last_addr < phys_addr) {
564 WARN_ON(1);
565 return NULL;
568 prev_size[slot] = size;
570 * Mappings have to be page-aligned
572 offset = phys_addr & ~PAGE_MASK;
573 phys_addr &= PAGE_MASK;
574 size = PAGE_ALIGN(last_addr + 1) - phys_addr;
577 * Mappings have to fit in the FIX_BTMAP area.
579 nrpages = size >> PAGE_SHIFT;
580 if (nrpages > NR_FIX_BTMAPS) {
581 WARN_ON(1);
582 return NULL;
586 * Ok, go for it..
588 idx0 = FIX_BTMAP_BEGIN - NR_FIX_BTMAPS*slot;
589 idx = idx0;
590 while (nrpages > 0) {
591 early_set_fixmap(idx, phys_addr, prot);
592 phys_addr += PAGE_SIZE;
593 --idx;
594 --nrpages;
596 if (early_ioremap_debug)
597 printk(KERN_CONT "%08lx + %08lx\n", offset, slot_virt[slot]);
599 prev_map[slot] = (void __iomem *)(offset + slot_virt[slot]);
600 return prev_map[slot];
603 /* Remap an IO device */
604 void __init __iomem *
605 early_ioremap(resource_size_t phys_addr, unsigned long size)
607 return __early_ioremap(phys_addr, size, PAGE_KERNEL_IO);
610 /* Remap memory */
611 void __init __iomem *
612 early_memremap(resource_size_t phys_addr, unsigned long size)
614 return __early_ioremap(phys_addr, size, PAGE_KERNEL);
617 void __init early_iounmap(void __iomem *addr, unsigned long size)
619 unsigned long virt_addr;
620 unsigned long offset;
621 unsigned int nrpages;
622 enum fixed_addresses idx;
623 int i, slot;
625 slot = -1;
626 for (i = 0; i < FIX_BTMAPS_SLOTS; i++) {
627 if (prev_map[i] == addr) {
628 slot = i;
629 break;
633 if (slot < 0) {
634 printk(KERN_INFO "early_iounmap(%p, %08lx) not found slot\n",
635 addr, size);
636 WARN_ON(1);
637 return;
640 if (prev_size[slot] != size) {
641 printk(KERN_INFO "early_iounmap(%p, %08lx) [%d] size not consistent %08lx\n",
642 addr, size, slot, prev_size[slot]);
643 WARN_ON(1);
644 return;
647 if (early_ioremap_debug) {
648 printk(KERN_INFO "early_iounmap(%p, %08lx) [%d]\n", addr,
649 size, slot);
650 dump_stack();
653 virt_addr = (unsigned long)addr;
654 if (virt_addr < fix_to_virt(FIX_BTMAP_BEGIN)) {
655 WARN_ON(1);
656 return;
658 offset = virt_addr & ~PAGE_MASK;
659 nrpages = PAGE_ALIGN(offset + size - 1) >> PAGE_SHIFT;
661 idx = FIX_BTMAP_BEGIN - NR_FIX_BTMAPS*slot;
662 while (nrpages > 0) {
663 early_clear_fixmap(idx);
664 --idx;
665 --nrpages;
667 prev_map[slot] = NULL;