blob: 7fb6eff644b3abb8dc407de03b40bf04c458e0c6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 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
5 *
6 * (C) Copyright 1995 1996 Linus Torvalds
7 */
8
Thomas Gleixnere9332ca2008-01-30 13:34:05 +01009#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/init.h>
Haavard Skinnemoena148ecf2006-09-30 23:29:17 -070011#include <linux/io.h>
Thomas Gleixner3cbd09e2008-01-30 13:34:05 +010012#include <linux/module.h>
13#include <linux/slab.h>
14#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Thomas Gleixner3cbd09e2008-01-30 13:34:05 +010016#include <asm/cacheflush.h>
17#include <asm/e820.h>
18#include <asm/fixmap.h>
19#include <asm/pgtable.h>
20#include <asm/tlbflush.h>
Jeremy Fitzhardingef6df72e2008-01-30 13:34:11 +010021#include <asm/pgalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +010023enum ioremap_mode {
24 IOR_MODE_UNCACHED,
25 IOR_MODE_CACHED,
26};
27
Thomas Gleixner240d3a72008-01-30 13:34:05 +010028#ifdef CONFIG_X86_64
29
30unsigned long __phys_addr(unsigned long x)
31{
32 if (x >= __START_KERNEL_map)
33 return x - __START_KERNEL_map + phys_base;
34 return x - PAGE_OFFSET;
35}
36EXPORT_SYMBOL(__phys_addr);
37
38#endif
39
Thomas Gleixner5f5192b2008-01-30 13:34:06 +010040int page_is_ram(unsigned long pagenr)
41{
42 unsigned long addr, end;
43 int i;
44
Arjan van de Vend8a9e6a2008-02-18 09:54:33 -080045 /*
46 * A special case is the first 4Kb of memory;
47 * This is a BIOS owned area, not kernel ram, but generally
48 * not listed as such in the E820 table.
49 */
50 if (pagenr == 0)
51 return 0;
52
53
Thomas Gleixner5f5192b2008-01-30 13:34:06 +010054 for (i = 0; i < e820.nr_map; i++) {
55 /*
56 * Not usable memory:
57 */
58 if (e820.map[i].type != E820_RAM)
59 continue;
Thomas Gleixner5f5192b2008-01-30 13:34:06 +010060 addr = (e820.map[i].addr + PAGE_SIZE-1) >> PAGE_SHIFT;
61 end = (e820.map[i].addr + e820.map[i].size) >> PAGE_SHIFT;
Thomas Gleixner950f9d92008-01-30 13:34:06 +010062
63 /*
64 * Sanity check: Some BIOSen report areas as RAM that
65 * are not. Notably the 640->1Mb area, which is the
66 * PCI BIOS area.
67 */
68 if (addr >= (BIOS_BEGIN >> PAGE_SHIFT) &&
69 end < (BIOS_END >> PAGE_SHIFT))
70 continue;
71
Thomas Gleixner5f5192b2008-01-30 13:34:06 +010072 if ((pagenr >= addr) && (pagenr < end))
73 return 1;
74 }
75 return 0;
76}
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/*
Thomas Gleixnere9332ca2008-01-30 13:34:05 +010079 * Fix up the linear direct mapping of the kernel to avoid cache attribute
80 * conflicts.
81 */
Thomas Gleixner75ab43b2008-02-04 16:48:05 +010082static int ioremap_change_attr(unsigned long vaddr, unsigned long size,
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +010083 enum ioremap_mode mode)
Thomas Gleixnere9332ca2008-01-30 13:34:05 +010084{
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +010085 unsigned long nrpages = size >> PAGE_SHIFT;
Harvey Harrison93809be2008-02-01 17:49:43 +010086 int err;
Thomas Gleixnere9332ca2008-01-30 13:34:05 +010087
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +010088 switch (mode) {
89 case IOR_MODE_UNCACHED:
90 default:
91 err = set_memory_uc(vaddr, nrpages);
92 break;
93 case IOR_MODE_CACHED:
94 err = set_memory_wb(vaddr, nrpages);
95 break;
96 }
Thomas Gleixnere9332ca2008-01-30 13:34:05 +010097
98 return err;
99}
100
101/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 * Remap an arbitrary physical address space into the kernel virtual
103 * address space. Needed when the kernel wants to access high addresses
104 * directly.
105 *
106 * NOTE! We need to allow non-page-aligned mappings too: we will obviously
107 * have to convert them into an offset in a page-aligned mapping, but the
108 * caller shouldn't need to know that small detail.
109 */
Thomas Gleixner5f868152008-01-30 13:34:06 +0100110static void __iomem *__ioremap(unsigned long phys_addr, unsigned long size,
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100111 enum ioremap_mode mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Thomas Gleixnere66aadb2008-02-04 16:48:05 +0100113 unsigned long pfn, offset, last_addr, vaddr;
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100114 struct vm_struct *area;
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100115 pgprot_t prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 /* Don't allow wraparound or zero size */
118 last_addr = phys_addr + size - 1;
119 if (!size || last_addr < phys_addr)
120 return NULL;
121
122 /*
123 * Don't remap the low PCI/ISA area, it's always mapped..
124 */
125 if (phys_addr >= ISA_START_ADDRESS && last_addr < ISA_END_ADDRESS)
Thomas Gleixner4b40fce2008-01-30 13:34:05 +0100126 return (__force void __iomem *)phys_to_virt(phys_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 /*
129 * Don't allow anybody to remap normal RAM that we're using..
130 */
Ingo Molnar38cb47b2008-02-04 16:47:54 +0100131 for (pfn = phys_addr >> PAGE_SHIFT; pfn < max_pfn_mapped &&
132 (pfn << PAGE_SHIFT) < last_addr; pfn++) {
133 if (page_is_ram(pfn) && pfn_valid(pfn) &&
134 !PageReserved(pfn_to_page(pfn)))
Thomas Gleixner266b9f82008-01-30 13:34:06 +0100135 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
137
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100138 switch (mode) {
139 case IOR_MODE_UNCACHED:
140 default:
141 prot = PAGE_KERNEL_NOCACHE;
142 break;
143 case IOR_MODE_CACHED:
144 prot = PAGE_KERNEL;
145 break;
146 }
Haavard Skinnemoena148ecf2006-09-30 23:29:17 -0700147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 /*
149 * Mappings have to be page-aligned
150 */
151 offset = phys_addr & ~PAGE_MASK;
152 phys_addr &= PAGE_MASK;
153 size = PAGE_ALIGN(last_addr+1) - phys_addr;
154
155 /*
156 * Ok, go for it..
157 */
Thomas Gleixner74ff2852008-01-30 13:34:05 +0100158 area = get_vm_area(size, VM_IOREMAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (!area)
160 return NULL;
161 area->phys_addr = phys_addr;
Thomas Gleixnere66aadb2008-02-04 16:48:05 +0100162 vaddr = (unsigned long) area->addr;
163 if (ioremap_page_range(vaddr, vaddr + size, phys_addr, prot)) {
164 remove_vm_area((void *)(vaddr & PAGE_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return NULL;
166 }
Thomas Gleixnere9332ca2008-01-30 13:34:05 +0100167
Thomas Gleixner75ab43b2008-02-04 16:48:05 +0100168 if (ioremap_change_attr(vaddr, size, mode) < 0) {
Thomas Gleixnere66aadb2008-02-04 16:48:05 +0100169 vunmap(area->addr);
Thomas Gleixnere9332ca2008-01-30 13:34:05 +0100170 return NULL;
171 }
172
Thomas Gleixnere66aadb2008-02-04 16:48:05 +0100173 return (void __iomem *) (vaddr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176/**
177 * ioremap_nocache - map bus memory into CPU space
178 * @offset: bus address of the memory
179 * @size: size of the resource to map
180 *
181 * ioremap_nocache performs a platform specific sequence of operations to
182 * make bus memory CPU accessible via the readb/readw/readl/writeb/
183 * writew/writel functions and the other mmio helpers. The returned
184 * address is not guaranteed to be usable directly as a virtual
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100185 * address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 *
187 * This version of ioremap ensures that the memory is marked uncachable
188 * on the CPU as well as honouring existing caching rules from things like
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100189 * the PCI bus. Note that there are other caches and buffers on many
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 * busses. In particular driver authors should read up on PCI writes
191 *
192 * It's useful if some control registers are in such an area and
193 * write combining or read caching is not desirable:
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100194 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 * Must be freed with iounmap.
196 */
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100197void __iomem *ioremap_nocache(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100199 return __ioremap(phys_addr, size, IOR_MODE_UNCACHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700201EXPORT_SYMBOL(ioremap_nocache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Thomas Gleixner5f868152008-01-30 13:34:06 +0100203void __iomem *ioremap_cache(unsigned long phys_addr, unsigned long size)
204{
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100205 return __ioremap(phys_addr, size, IOR_MODE_CACHED);
Thomas Gleixner5f868152008-01-30 13:34:06 +0100206}
207EXPORT_SYMBOL(ioremap_cache);
208
Andi Kleenbf5421c2005-12-12 22:17:09 -0800209/**
210 * iounmap - Free a IO remapping
211 * @addr: virtual address from ioremap_*
212 *
213 * Caller must ensure there is only one unmapping for the same pointer.
214 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215void iounmap(volatile void __iomem *addr)
216{
Andi Kleenbf5421c2005-12-12 22:17:09 -0800217 struct vm_struct *p, *o;
Andrew Mortonc23a4e962005-07-07 17:56:02 -0700218
219 if ((void __force *)addr <= high_memory)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return;
221
222 /*
223 * __ioremap special-cases the PCI/ISA range by not instantiating a
224 * vm_area and by simply returning an address into the kernel mapping
225 * of ISA space. So handle that here.
226 */
227 if (addr >= phys_to_virt(ISA_START_ADDRESS) &&
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100228 addr < phys_to_virt(ISA_END_ADDRESS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return;
230
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100231 addr = (volatile void __iomem *)
232 (PAGE_MASK & (unsigned long __force)addr);
Andi Kleenbf5421c2005-12-12 22:17:09 -0800233
234 /* Use the vm area unlocked, assuming the caller
235 ensures there isn't another iounmap for the same address
236 in parallel. Reuse of the virtual address is prevented by
237 leaving it in the global lists until we're done with it.
238 cpa takes care of the direct mappings. */
239 read_lock(&vmlist_lock);
240 for (p = vmlist; p; p = p->next) {
241 if (p->addr == addr)
242 break;
243 }
244 read_unlock(&vmlist_lock);
245
246 if (!p) {
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100247 printk(KERN_ERR "iounmap: bad address %p\n", addr);
Andrew Mortonc23a4e962005-07-07 17:56:02 -0700248 dump_stack();
Andi Kleenbf5421c2005-12-12 22:17:09 -0800249 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251
Andi Kleenbf5421c2005-12-12 22:17:09 -0800252 /* Finally remove it */
253 o = remove_vm_area((void *)addr);
254 BUG_ON(p != o || o == NULL);
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100255 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700257EXPORT_SYMBOL(iounmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Thomas Gleixner240d3a72008-01-30 13:34:05 +0100259#ifdef CONFIG_X86_32
Ingo Molnard18d6d62008-01-30 13:33:45 +0100260
261int __initdata early_ioremap_debug;
262
263static int __init early_ioremap_debug_setup(char *str)
264{
265 early_ioremap_debug = 1;
266
Huang, Ying793b24a2008-01-30 13:33:45 +0100267 return 0;
Ingo Molnard18d6d62008-01-30 13:33:45 +0100268}
Huang, Ying793b24a2008-01-30 13:33:45 +0100269early_param("early_ioremap_debug", early_ioremap_debug_setup);
Ingo Molnard18d6d62008-01-30 13:33:45 +0100270
Huang, Ying0947b2f2008-01-30 13:33:44 +0100271static __initdata int after_paging_init;
Ian Campbell551889a62008-02-09 23:24:09 +0100272static __initdata pte_t bm_pte[PAGE_SIZE/sizeof(pte_t)]
Huang, Ying0947b2f2008-01-30 13:33:44 +0100273 __attribute__((aligned(PAGE_SIZE)));
274
Ian Campbell551889a62008-02-09 23:24:09 +0100275static inline pmd_t * __init early_ioremap_pmd(unsigned long addr)
Huang, Ying0947b2f2008-01-30 13:33:44 +0100276{
Jeremy Fitzhardinge37cc8d72008-02-13 16:20:35 +0100277 /* Don't assume we're using swapper_pg_dir at this point */
278 pgd_t *base = __va(read_cr3());
279 pgd_t *pgd = &base[pgd_index(addr)];
Ian Campbell551889a62008-02-09 23:24:09 +0100280 pud_t *pud = pud_offset(pgd, addr);
281 pmd_t *pmd = pmd_offset(pud, addr);
282
283 return pmd;
Huang, Ying0947b2f2008-01-30 13:33:44 +0100284}
285
Ian Campbell551889a62008-02-09 23:24:09 +0100286static inline pte_t * __init early_ioremap_pte(unsigned long addr)
Huang, Ying0947b2f2008-01-30 13:33:44 +0100287{
Ian Campbell551889a62008-02-09 23:24:09 +0100288 return &bm_pte[pte_index(addr)];
Huang, Ying0947b2f2008-01-30 13:33:44 +0100289}
290
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100291void __init early_ioremap_init(void)
Huang, Ying0947b2f2008-01-30 13:33:44 +0100292{
Ian Campbell551889a62008-02-09 23:24:09 +0100293 pmd_t *pmd;
Huang, Ying0947b2f2008-01-30 13:33:44 +0100294
Ingo Molnard18d6d62008-01-30 13:33:45 +0100295 if (early_ioremap_debug)
Ingo Molnaradafdf62008-01-30 13:34:08 +0100296 printk(KERN_INFO "early_ioremap_init()\n");
Ingo Molnard18d6d62008-01-30 13:33:45 +0100297
Ian Campbell551889a62008-02-09 23:24:09 +0100298 pmd = early_ioremap_pmd(fix_to_virt(FIX_BTMAP_BEGIN));
Huang, Ying0947b2f2008-01-30 13:33:44 +0100299 memset(bm_pte, 0, sizeof(bm_pte));
Ian Campbellb6fbb662008-02-09 23:24:09 +0100300 pmd_populate_kernel(&init_mm, pmd, bm_pte);
Ian Campbell551889a62008-02-09 23:24:09 +0100301
Ingo Molnar0e3a9542008-01-30 13:33:49 +0100302 /*
Ian Campbell551889a62008-02-09 23:24:09 +0100303 * The boot-ioremap range spans multiple pmds, for which
Ingo Molnar0e3a9542008-01-30 13:33:49 +0100304 * we are not prepared:
305 */
Ian Campbell551889a62008-02-09 23:24:09 +0100306 if (pmd != early_ioremap_pmd(fix_to_virt(FIX_BTMAP_END))) {
Ingo Molnar0e3a9542008-01-30 13:33:49 +0100307 WARN_ON(1);
Ian Campbell551889a62008-02-09 23:24:09 +0100308 printk(KERN_WARNING "pmd %p != %p\n",
309 pmd, early_ioremap_pmd(fix_to_virt(FIX_BTMAP_END)));
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100310 printk(KERN_WARNING "fix_to_virt(FIX_BTMAP_BEGIN): %08lx\n",
Ian Campbell551889a62008-02-09 23:24:09 +0100311 fix_to_virt(FIX_BTMAP_BEGIN));
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100312 printk(KERN_WARNING "fix_to_virt(FIX_BTMAP_END): %08lx\n",
Ian Campbell551889a62008-02-09 23:24:09 +0100313 fix_to_virt(FIX_BTMAP_END));
Ingo Molnar0e3a9542008-01-30 13:33:49 +0100314
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100315 printk(KERN_WARNING "FIX_BTMAP_END: %d\n", FIX_BTMAP_END);
316 printk(KERN_WARNING "FIX_BTMAP_BEGIN: %d\n",
317 FIX_BTMAP_BEGIN);
Ingo Molnar0e3a9542008-01-30 13:33:49 +0100318 }
Huang, Ying0947b2f2008-01-30 13:33:44 +0100319}
320
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100321void __init early_ioremap_clear(void)
Huang, Ying0947b2f2008-01-30 13:33:44 +0100322{
Ian Campbell551889a62008-02-09 23:24:09 +0100323 pmd_t *pmd;
Huang, Ying0947b2f2008-01-30 13:33:44 +0100324
Ingo Molnard18d6d62008-01-30 13:33:45 +0100325 if (early_ioremap_debug)
Ingo Molnaradafdf62008-01-30 13:34:08 +0100326 printk(KERN_INFO "early_ioremap_clear()\n");
Ingo Molnard18d6d62008-01-30 13:33:45 +0100327
Ian Campbell551889a62008-02-09 23:24:09 +0100328 pmd = early_ioremap_pmd(fix_to_virt(FIX_BTMAP_BEGIN));
329 pmd_clear(pmd);
Ian Campbellb6fbb662008-02-09 23:24:09 +0100330 paravirt_release_pt(__pa(bm_pte) >> PAGE_SHIFT);
Huang, Ying0947b2f2008-01-30 13:33:44 +0100331 __flush_tlb_all();
332}
333
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100334void __init early_ioremap_reset(void)
Huang, Ying0947b2f2008-01-30 13:33:44 +0100335{
336 enum fixed_addresses idx;
Ian Campbell551889a62008-02-09 23:24:09 +0100337 unsigned long addr, phys;
338 pte_t *pte;
Huang, Ying0947b2f2008-01-30 13:33:44 +0100339
340 after_paging_init = 1;
Huang, Ying64a8f852008-01-30 13:33:44 +0100341 for (idx = FIX_BTMAP_BEGIN; idx >= FIX_BTMAP_END; idx--) {
Huang, Ying0947b2f2008-01-30 13:33:44 +0100342 addr = fix_to_virt(idx);
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100343 pte = early_ioremap_pte(addr);
Ian Campbell551889a62008-02-09 23:24:09 +0100344 if (pte_present(*pte)) {
345 phys = pte_val(*pte) & PAGE_MASK;
Huang, Ying0947b2f2008-01-30 13:33:44 +0100346 set_fixmap(idx, phys);
347 }
348 }
349}
350
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100351static void __init __early_set_fixmap(enum fixed_addresses idx,
Huang, Ying0947b2f2008-01-30 13:33:44 +0100352 unsigned long phys, pgprot_t flags)
353{
Ian Campbell551889a62008-02-09 23:24:09 +0100354 unsigned long addr = __fix_to_virt(idx);
355 pte_t *pte;
Huang, Ying0947b2f2008-01-30 13:33:44 +0100356
357 if (idx >= __end_of_fixed_addresses) {
358 BUG();
359 return;
360 }
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100361 pte = early_ioremap_pte(addr);
Huang, Ying0947b2f2008-01-30 13:33:44 +0100362 if (pgprot_val(flags))
Ian Campbell551889a62008-02-09 23:24:09 +0100363 set_pte(pte, pfn_pte(phys >> PAGE_SHIFT, flags));
Huang, Ying0947b2f2008-01-30 13:33:44 +0100364 else
Ian Campbell551889a62008-02-09 23:24:09 +0100365 pte_clear(NULL, addr, pte);
Huang, Ying0947b2f2008-01-30 13:33:44 +0100366 __flush_tlb_one(addr);
367}
368
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100369static inline void __init early_set_fixmap(enum fixed_addresses idx,
Huang, Ying0947b2f2008-01-30 13:33:44 +0100370 unsigned long phys)
371{
372 if (after_paging_init)
373 set_fixmap(idx, phys);
374 else
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100375 __early_set_fixmap(idx, phys, PAGE_KERNEL);
Huang, Ying0947b2f2008-01-30 13:33:44 +0100376}
377
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100378static inline void __init early_clear_fixmap(enum fixed_addresses idx)
Huang, Ying0947b2f2008-01-30 13:33:44 +0100379{
380 if (after_paging_init)
381 clear_fixmap(idx);
382 else
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100383 __early_set_fixmap(idx, 0, __pgprot(0));
Huang, Ying0947b2f2008-01-30 13:33:44 +0100384}
385
Ingo Molnar1b42f512008-01-30 13:33:45 +0100386
387int __initdata early_ioremap_nested;
388
Ingo Molnard690b2a2008-01-30 13:33:47 +0100389static int __init check_early_ioremap_leak(void)
390{
391 if (!early_ioremap_nested)
392 return 0;
393
394 printk(KERN_WARNING
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100395 "Debug warning: early ioremap leak of %d areas detected.\n",
396 early_ioremap_nested);
Ingo Molnard690b2a2008-01-30 13:33:47 +0100397 printk(KERN_WARNING
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100398 "please boot with early_ioremap_debug and report the dmesg.\n");
Ingo Molnard690b2a2008-01-30 13:33:47 +0100399 WARN_ON(1);
400
401 return 1;
402}
403late_initcall(check_early_ioremap_leak);
404
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100405void __init *early_ioremap(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
407 unsigned long offset, last_addr;
Ingo Molnar1b42f512008-01-30 13:33:45 +0100408 unsigned int nrpages, nesting;
409 enum fixed_addresses idx0, idx;
410
411 WARN_ON(system_state != SYSTEM_BOOTING);
412
413 nesting = early_ioremap_nested;
Ingo Molnard18d6d62008-01-30 13:33:45 +0100414 if (early_ioremap_debug) {
Ingo Molnaradafdf62008-01-30 13:34:08 +0100415 printk(KERN_INFO "early_ioremap(%08lx, %08lx) [%d] => ",
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100416 phys_addr, size, nesting);
Ingo Molnard18d6d62008-01-30 13:33:45 +0100417 dump_stack();
418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 /* Don't allow wraparound or zero size */
421 last_addr = phys_addr + size - 1;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100422 if (!size || last_addr < phys_addr) {
423 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return NULL;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100427 if (nesting >= FIX_BTMAPS_NESTING) {
428 WARN_ON(1);
Ingo Molnar1b42f512008-01-30 13:33:45 +0100429 return NULL;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100430 }
Ingo Molnar1b42f512008-01-30 13:33:45 +0100431 early_ioremap_nested++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 /*
433 * Mappings have to be page-aligned
434 */
435 offset = phys_addr & ~PAGE_MASK;
436 phys_addr &= PAGE_MASK;
437 size = PAGE_ALIGN(last_addr) - phys_addr;
438
439 /*
440 * Mappings have to fit in the FIX_BTMAP area.
441 */
442 nrpages = size >> PAGE_SHIFT;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100443 if (nrpages > NR_FIX_BTMAPS) {
444 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 return NULL;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 /*
449 * Ok, go for it..
450 */
Ingo Molnar1b42f512008-01-30 13:33:45 +0100451 idx0 = FIX_BTMAP_BEGIN - NR_FIX_BTMAPS*nesting;
452 idx = idx0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 while (nrpages > 0) {
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100454 early_set_fixmap(idx, phys_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 phys_addr += PAGE_SIZE;
456 --idx;
457 --nrpages;
458 }
Ingo Molnard18d6d62008-01-30 13:33:45 +0100459 if (early_ioremap_debug)
460 printk(KERN_CONT "%08lx + %08lx\n", offset, fix_to_virt(idx0));
Ingo Molnar1b42f512008-01-30 13:33:45 +0100461
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100462 return (void *) (offset + fix_to_virt(idx0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100465void __init early_iounmap(void *addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 unsigned long virt_addr;
468 unsigned long offset;
469 unsigned int nrpages;
470 enum fixed_addresses idx;
Ingo Molnar1b42f512008-01-30 13:33:45 +0100471 unsigned int nesting;
472
473 nesting = --early_ioremap_nested;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100474 WARN_ON(nesting < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Ingo Molnard18d6d62008-01-30 13:33:45 +0100476 if (early_ioremap_debug) {
Ingo Molnaradafdf62008-01-30 13:34:08 +0100477 printk(KERN_INFO "early_iounmap(%p, %08lx) [%d]\n", addr,
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100478 size, nesting);
Ingo Molnard18d6d62008-01-30 13:33:45 +0100479 dump_stack();
480 }
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 virt_addr = (unsigned long)addr;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100483 if (virt_addr < fix_to_virt(FIX_BTMAP_BEGIN)) {
484 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 return;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 offset = virt_addr & ~PAGE_MASK;
488 nrpages = PAGE_ALIGN(offset + size - 1) >> PAGE_SHIFT;
489
Ingo Molnar1b42f512008-01-30 13:33:45 +0100490 idx = FIX_BTMAP_BEGIN - NR_FIX_BTMAPS*nesting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 while (nrpages > 0) {
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100492 early_clear_fixmap(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 --idx;
494 --nrpages;
495 }
496}
Ingo Molnar1b42f512008-01-30 13:33:45 +0100497
498void __this_fixmap_does_not_exist(void)
499{
500 WARN_ON(1);
501}
Thomas Gleixner240d3a72008-01-30 13:34:05 +0100502
503#endif /* CONFIG_X86_32 */