blob: 1ab2385ecefee5bd195e26949d62eb30ca51ccd1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/sh/mm/ioremap.c
3 *
Paul Mundtd9b94872010-01-18 21:08:32 +09004 * (C) Copyright 1995 1996 Linus Torvalds
5 * (C) Copyright 2005 - 2010 Paul Mundt
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Re-map IO memory to kernel address space so that we can access it.
8 * This is needed for high PCI addresses that aren't mapped in the
9 * 640k-1MB IO memory area on PC's
10 *
Paul Mundtb66c1a32006-01-16 22:14:15 -080011 * This file is subject to the terms and conditions of the GNU General
12 * Public License. See the file "COPYING" in the main directory of this
13 * archive for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/vmalloc.h>
Paul Mundtb66c1a32006-01-16 22:14:15 -080016#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/mm.h>
Paul Mundta3e61d52006-09-27 16:45:22 +090018#include <linux/pci.h>
Haavard Skinnemoen5b3e1a82006-12-08 02:38:07 -080019#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/page.h>
21#include <asm/pgalloc.h>
Paul Mundtb66c1a32006-01-16 22:14:15 -080022#include <asm/addrspace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/cacheflush.h>
24#include <asm/tlbflush.h>
Paul Mundt0fd14752007-06-04 10:58:23 +090025#include <asm/mmu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * Remap an arbitrary physical address space into the kernel virtual
29 * address space. Needed when the kernel wants to access high addresses
30 * directly.
31 *
32 * NOTE! We need to allow non-page-aligned mappings too: we will obviously
33 * have to convert them into an offset in a page-aligned mapping, but the
34 * caller shouldn't need to know that small detail.
35 */
Paul Mundtaf141532010-01-18 21:45:00 +090036void __iomem * __init_refok
Paul Mundt90e7d642010-02-23 16:20:53 +090037__ioremap_caller(phys_addr_t phys_addr, unsigned long size,
Paul Mundtd57d6402010-01-19 13:34:38 +090038 pgprot_t pgprot, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
Paul Mundtbf3cded2009-12-14 14:23:41 +090040 struct vm_struct *area;
Paul Mundtb66c1a32006-01-16 22:14:15 -080041 unsigned long offset, last_addr, addr, orig_addr;
Paul Mundt90e7d642010-02-23 16:20:53 +090042 void __iomem *mapped;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44 /* Don't allow wraparound or zero size */
45 last_addr = phys_addr + size - 1;
46 if (!size || last_addr < phys_addr)
47 return NULL;
48
49 /*
Paul Mundt90e7d642010-02-23 16:20:53 +090050 * If we can't yet use the regular approach, go the fixmap route.
51 */
52 if (!mem_init_done)
53 return ioremap_fixed(phys_addr, size, pgprot);
54
55 /*
56 * First try to remap through the PMB.
57 * PMB entries are all pre-faulted.
58 */
59 mapped = pmb_remap_caller(phys_addr, size, pgprot, caller);
60 if (mapped && !IS_ERR(mapped))
61 return mapped;
62
63 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * Mappings have to be page-aligned
65 */
66 offset = phys_addr & ~PAGE_MASK;
67 phys_addr &= PAGE_MASK;
68 size = PAGE_ALIGN(last_addr+1) - phys_addr;
69
70 /*
71 * Ok, go for it..
72 */
Paul Mundtbf3cded2009-12-14 14:23:41 +090073 area = get_vm_area_caller(size, VM_IOREMAP, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 if (!area)
75 return NULL;
76 area->phys_addr = phys_addr;
Paul Mundtb66c1a32006-01-16 22:14:15 -080077 orig_addr = addr = (unsigned long)area->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Paul Mundt90e7d642010-02-23 16:20:53 +090079 if (ioremap_page_range(addr, addr + size, phys_addr, pgprot)) {
80 vunmap((void *)orig_addr);
81 return NULL;
Paul Mundtb66c1a32006-01-16 22:14:15 -080082 }
Paul Mundtb66c1a32006-01-16 22:14:15 -080083
84 return (void __iomem *)(offset + (char *)orig_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
Paul Mundtbf3cded2009-12-14 14:23:41 +090086EXPORT_SYMBOL(__ioremap_caller);
Paul Mundtb66c1a32006-01-16 22:14:15 -080087
Paul Mundt78bf04f2010-01-17 01:45:26 +090088/*
89 * Simple checks for non-translatable mappings.
90 */
91static inline int iomapping_nontranslatable(unsigned long offset)
92{
93#ifdef CONFIG_29BIT
94 /*
95 * In 29-bit mode this includes the fixed P1/P2 areas, as well as
96 * parts of P3.
97 */
98 if (PXSEG(offset) < P3SEG || offset >= P3_ADDR_MAX)
99 return 1;
100#endif
101
Paul Mundt78bf04f2010-01-17 01:45:26 +0900102 return 0;
103}
104
Paul Mundtb66c1a32006-01-16 22:14:15 -0800105void __iounmap(void __iomem *addr)
106{
107 unsigned long vaddr = (unsigned long __force)addr;
108 struct vm_struct *p;
109
Paul Mundt78bf04f2010-01-17 01:45:26 +0900110 /*
111 * Nothing to do if there is no translatable mapping.
112 */
113 if (iomapping_nontranslatable(vaddr))
Paul Mundtb66c1a32006-01-16 22:14:15 -0800114 return;
115
Paul Mundt12b6b012010-01-18 21:33:08 +0900116 /*
117 * There's no VMA if it's from an early fixed mapping.
118 */
119 if (iounmap_fixed(addr) == 0)
120 return;
121
Paul Mundtb66c1a32006-01-16 22:14:15 -0800122 /*
Paul Mundt90e7d642010-02-23 16:20:53 +0900123 * If the PMB handled it, there's nothing else to do.
Paul Mundtb66c1a32006-01-16 22:14:15 -0800124 */
Paul Mundt90e7d642010-02-23 16:20:53 +0900125 if (pmb_unmap(addr) == 0)
126 return;
Paul Mundtb66c1a32006-01-16 22:14:15 -0800127
128 p = remove_vm_area((void *)(vaddr & PAGE_MASK));
129 if (!p) {
Harvey Harrison866e6b92008-03-04 15:23:47 -0800130 printk(KERN_ERR "%s: bad address %p\n", __func__, addr);
Paul Mundtb66c1a32006-01-16 22:14:15 -0800131 return;
132 }
133
134 kfree(p);
135}
136EXPORT_SYMBOL(__iounmap);