blob: 10901398e4a28787abd2392f19a1b109ab070706 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mm/ioremap.c
3 *
4 * Re-map IO memory to kernel address space so that we can access it.
5 *
6 * (C) Copyright 1995 1996 Linus Torvalds
7 *
8 * Hacked for ARM by Phil Blundell <philb@gnu.org>
9 * Hacked to allow all architectures to build, and various cleanups
10 * by Russell King
11 *
12 * This allows a driver to remap an arbitrary region of bus memory into
13 * virtual space. One should *only* use readl, writel, memcpy_toio and
14 * so on with such remapped areas.
15 *
16 * Because the ARM only has a 32-bit address space we can't address the
17 * whole of the (physical) PCI space at once. PCI huge-mode addressing
18 * allows us to circumvent this restriction by splitting PCI space into
19 * two 2GB chunks and mapping only one at a time into processor memory.
20 * We use MMU protection domains to trap any attempt to access the bank
21 * that is not currently mapped. (This isn't fully implemented yet.)
22 */
23#include <linux/module.h>
24#include <linux/errno.h>
25#include <linux/mm.h>
26#include <linux/vmalloc.h>
27
28#include <asm/cacheflush.h>
Russell King674c0452005-10-28 14:25:28 +010029#include <asm/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/io.h>
31#include <asm/tlbflush.h>
32
33static inline void
34remap_area_pte(pte_t * pte, unsigned long address, unsigned long size,
35 unsigned long phys_addr, pgprot_t pgprot)
36{
37 unsigned long end;
38
39 address &= ~PMD_MASK;
40 end = address + size;
41 if (end > PMD_SIZE)
42 end = PMD_SIZE;
43 BUG_ON(address >= end);
44 do {
45 if (!pte_none(*pte))
46 goto bad;
47
48 set_pte(pte, pfn_pte(phys_addr >> PAGE_SHIFT, pgprot));
49 address += PAGE_SIZE;
50 phys_addr += PAGE_SIZE;
51 pte++;
52 } while (address && (address < end));
53 return;
54
55 bad:
56 printk("remap_area_pte: page already exists\n");
57 BUG();
58}
59
60static inline int
61remap_area_pmd(pmd_t * pmd, unsigned long address, unsigned long size,
62 unsigned long phys_addr, unsigned long flags)
63{
64 unsigned long end;
65 pgprot_t pgprot;
66
67 address &= ~PGDIR_MASK;
68 end = address + size;
69
70 if (end > PGDIR_SIZE)
71 end = PGDIR_SIZE;
72
73 phys_addr -= address;
74 BUG_ON(address >= end);
75
76 pgprot = __pgprot(L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_DIRTY | L_PTE_WRITE | flags);
77 do {
Hugh Dickins872fec12005-10-29 18:16:21 -070078 pte_t * pte = pte_alloc_kernel(pmd, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 if (!pte)
80 return -ENOMEM;
81 remap_area_pte(pte, address, end - address, address + phys_addr, pgprot);
82 address = (address + PMD_SIZE) & PMD_MASK;
83 pmd++;
84 } while (address && (address < end));
85 return 0;
86}
87
88static int
89remap_area_pages(unsigned long start, unsigned long phys_addr,
90 unsigned long size, unsigned long flags)
91{
92 unsigned long address = start;
93 unsigned long end = start + size;
94 int err = 0;
95 pgd_t * dir;
96
97 phys_addr -= address;
98 dir = pgd_offset(&init_mm, address);
99 BUG_ON(address >= end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 do {
101 pmd_t *pmd = pmd_alloc(&init_mm, dir, address);
102 if (!pmd) {
103 err = -ENOMEM;
104 break;
105 }
106 if (remap_area_pmd(pmd, address, end - address,
107 phys_addr + address, flags)) {
108 err = -ENOMEM;
109 break;
110 }
111
112 address = (address + PGDIR_SIZE) & PGDIR_MASK;
113 dir++;
114 } while (address && (address < end));
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 flush_cache_vmap(start, end);
117 return err;
118}
119
120/*
121 * Remap an arbitrary physical address space into the kernel virtual
122 * address space. Needed when the kernel wants to access high addresses
123 * directly.
124 *
125 * NOTE! We need to allow non-page-aligned mappings too: we will obviously
126 * have to convert them into an offset in a page-aligned mapping, but the
127 * caller shouldn't need to know that small detail.
128 *
129 * 'flags' are the extra L_PTE_ flags that you want to specify for this
130 * mapping. See include/asm-arm/proc-armv/pgtable.h for more information.
131 */
132void __iomem *
Russell King67a19012005-11-17 16:48:00 +0000133__ioremap(unsigned long phys_addr, size_t size, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 void * addr;
136 struct vm_struct * area;
137 unsigned long offset, last_addr;
138
139 /* Don't allow wraparound or zero size */
140 last_addr = phys_addr + size - 1;
141 if (!size || last_addr < phys_addr)
142 return NULL;
143
144 /*
145 * Mappings have to be page-aligned
146 */
147 offset = phys_addr & ~PAGE_MASK;
148 phys_addr &= PAGE_MASK;
149 size = PAGE_ALIGN(last_addr + 1) - phys_addr;
150
151 /*
152 * Ok, go for it..
153 */
154 area = get_vm_area(size, VM_IOREMAP);
155 if (!area)
156 return NULL;
157 addr = area->addr;
158 if (remap_area_pages((unsigned long) addr, phys_addr, size, flags)) {
159 vfree(addr);
160 return NULL;
161 }
162 return (void __iomem *) (offset + (char *)addr);
163}
164EXPORT_SYMBOL(__ioremap);
165
166void __iounmap(void __iomem *addr)
167{
168 vfree((void *) (PAGE_MASK & (unsigned long) addr));
169}
170EXPORT_SYMBOL(__iounmap);
Russell King09f05512005-06-20 18:44:37 +0100171
172#ifdef __io
173void __iomem *ioport_map(unsigned long port, unsigned int nr)
174{
175 return __io(port);
176}
177EXPORT_SYMBOL(ioport_map);
178
179void ioport_unmap(void __iomem *addr)
180{
181}
182EXPORT_SYMBOL(ioport_unmap);
183#endif
184
185#ifdef CONFIG_PCI
186#include <linux/pci.h>
187#include <linux/ioport.h>
188
189void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long maxlen)
190{
191 unsigned long start = pci_resource_start(dev, bar);
192 unsigned long len = pci_resource_len(dev, bar);
193 unsigned long flags = pci_resource_flags(dev, bar);
194
195 if (!len || !start)
196 return NULL;
197 if (maxlen && len > maxlen)
198 len = maxlen;
199 if (flags & IORESOURCE_IO)
200 return ioport_map(start, len);
201 if (flags & IORESOURCE_MEM) {
202 if (flags & IORESOURCE_CACHEABLE)
203 return ioremap(start, len);
204 return ioremap_nocache(start, len);
205 }
206 return NULL;
207}
208EXPORT_SYMBOL(pci_iomap);
209
210void pci_iounmap(struct pci_dev *dev, void __iomem *addr)
211{
212 if ((unsigned long)addr >= VMALLOC_START &&
213 (unsigned long)addr < VMALLOC_END)
214 iounmap(addr);
215}
216EXPORT_SYMBOL(pci_iounmap);
217#endif