blob: 2c3fa71895033d6373e6ee949e59b00f8af99467 [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
45 for (i = 0; i < e820.nr_map; i++) {
46 /*
47 * Not usable memory:
48 */
49 if (e820.map[i].type != E820_RAM)
50 continue;
Thomas Gleixner5f5192b2008-01-30 13:34:06 +010051 addr = (e820.map[i].addr + PAGE_SIZE-1) >> PAGE_SHIFT;
52 end = (e820.map[i].addr + e820.map[i].size) >> PAGE_SHIFT;
Thomas Gleixner950f9d92008-01-30 13:34:06 +010053
54 /*
55 * Sanity check: Some BIOSen report areas as RAM that
56 * are not. Notably the 640->1Mb area, which is the
57 * PCI BIOS area.
58 */
59 if (addr >= (BIOS_BEGIN >> PAGE_SHIFT) &&
60 end < (BIOS_END >> PAGE_SHIFT))
61 continue;
62
Thomas Gleixner5f5192b2008-01-30 13:34:06 +010063 if ((pagenr >= addr) && (pagenr < end))
64 return 1;
65 }
66 return 0;
67}
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
Thomas Gleixnere9332ca2008-01-30 13:34:05 +010070 * Fix up the linear direct mapping of the kernel to avoid cache attribute
71 * conflicts.
72 */
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +010073static int ioremap_change_attr(unsigned long paddr, unsigned long size,
74 enum ioremap_mode mode)
Thomas Gleixnere9332ca2008-01-30 13:34:05 +010075{
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +010076 unsigned long vaddr = (unsigned long)__va(paddr);
77 unsigned long nrpages = size >> PAGE_SHIFT;
Harvey Harrison93809be2008-02-01 17:49:43 +010078 unsigned int level;
79 int err;
Thomas Gleixnere9332ca2008-01-30 13:34:05 +010080
81 /* No change for pages after the last mapping */
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +010082 if ((paddr + size - 1) >= (max_pfn_mapped << PAGE_SHIFT))
Thomas Gleixnere9332ca2008-01-30 13:34:05 +010083 return 0;
84
Thomas Gleixnere9332ca2008-01-30 13:34:05 +010085 /*
86 * If there is no identity map for this address,
87 * change_page_attr_addr is unnecessary
88 */
89 if (!lookup_address(vaddr, &level))
90 return 0;
91
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +010092 switch (mode) {
93 case IOR_MODE_UNCACHED:
94 default:
95 err = set_memory_uc(vaddr, nrpages);
96 break;
97 case IOR_MODE_CACHED:
98 err = set_memory_wb(vaddr, nrpages);
99 break;
100 }
Thomas Gleixnere9332ca2008-01-30 13:34:05 +0100101
102 return err;
103}
104
105/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * Remap an arbitrary physical address space into the kernel virtual
107 * address space. Needed when the kernel wants to access high addresses
108 * directly.
109 *
110 * NOTE! We need to allow non-page-aligned mappings too: we will obviously
111 * have to convert them into an offset in a page-aligned mapping, but the
112 * caller shouldn't need to know that small detail.
113 */
Thomas Gleixner5f868152008-01-30 13:34:06 +0100114static void __iomem *__ioremap(unsigned long phys_addr, unsigned long size,
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100115 enum ioremap_mode mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Thomas Gleixnere66aadb2008-02-04 16:48:05 +0100117 unsigned long pfn, offset, last_addr, vaddr;
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100118 struct vm_struct *area;
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100119 pgprot_t prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 /* Don't allow wraparound or zero size */
122 last_addr = phys_addr + size - 1;
123 if (!size || last_addr < phys_addr)
124 return NULL;
125
126 /*
127 * Don't remap the low PCI/ISA area, it's always mapped..
128 */
129 if (phys_addr >= ISA_START_ADDRESS && last_addr < ISA_END_ADDRESS)
Thomas Gleixner4b40fce2008-01-30 13:34:05 +0100130 return (__force void __iomem *)phys_to_virt(phys_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 /*
133 * Don't allow anybody to remap normal RAM that we're using..
134 */
Ingo Molnar38cb47b2008-02-04 16:47:54 +0100135 for (pfn = phys_addr >> PAGE_SHIFT; pfn < max_pfn_mapped &&
136 (pfn << PAGE_SHIFT) < last_addr; pfn++) {
137 if (page_is_ram(pfn) && pfn_valid(pfn) &&
138 !PageReserved(pfn_to_page(pfn)))
Thomas Gleixner266b9f82008-01-30 13:34:06 +0100139 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
141
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100142 switch (mode) {
143 case IOR_MODE_UNCACHED:
144 default:
145 prot = PAGE_KERNEL_NOCACHE;
146 break;
147 case IOR_MODE_CACHED:
148 prot = PAGE_KERNEL;
149 break;
150 }
Haavard Skinnemoena148ecf2006-09-30 23:29:17 -0700151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 /*
153 * Mappings have to be page-aligned
154 */
155 offset = phys_addr & ~PAGE_MASK;
156 phys_addr &= PAGE_MASK;
157 size = PAGE_ALIGN(last_addr+1) - phys_addr;
158
159 /*
160 * Ok, go for it..
161 */
Thomas Gleixner74ff2852008-01-30 13:34:05 +0100162 area = get_vm_area(size, VM_IOREMAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 if (!area)
164 return NULL;
165 area->phys_addr = phys_addr;
Thomas Gleixnere66aadb2008-02-04 16:48:05 +0100166 vaddr = (unsigned long) area->addr;
167 if (ioremap_page_range(vaddr, vaddr + size, phys_addr, prot)) {
168 remove_vm_area((void *)(vaddr & PAGE_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return NULL;
170 }
Thomas Gleixnere9332ca2008-01-30 13:34:05 +0100171
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100172 if (ioremap_change_attr(phys_addr, size, mode) < 0) {
Thomas Gleixnere66aadb2008-02-04 16:48:05 +0100173 vunmap(area->addr);
Thomas Gleixnere9332ca2008-01-30 13:34:05 +0100174 return NULL;
175 }
176
Thomas Gleixnere66aadb2008-02-04 16:48:05 +0100177 return (void __iomem *) (vaddr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180/**
181 * ioremap_nocache - map bus memory into CPU space
182 * @offset: bus address of the memory
183 * @size: size of the resource to map
184 *
185 * ioremap_nocache performs a platform specific sequence of operations to
186 * make bus memory CPU accessible via the readb/readw/readl/writeb/
187 * writew/writel functions and the other mmio helpers. The returned
188 * address is not guaranteed to be usable directly as a virtual
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100189 * address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 *
191 * This version of ioremap ensures that the memory is marked uncachable
192 * on the CPU as well as honouring existing caching rules from things like
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100193 * the PCI bus. Note that there are other caches and buffers on many
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 * busses. In particular driver authors should read up on PCI writes
195 *
196 * It's useful if some control registers are in such an area and
197 * write combining or read caching is not desirable:
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100198 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 * Must be freed with iounmap.
200 */
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100201void __iomem *ioremap_nocache(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100203 return __ioremap(phys_addr, size, IOR_MODE_UNCACHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700205EXPORT_SYMBOL(ioremap_nocache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Thomas Gleixner5f868152008-01-30 13:34:06 +0100207void __iomem *ioremap_cache(unsigned long phys_addr, unsigned long size)
208{
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100209 return __ioremap(phys_addr, size, IOR_MODE_CACHED);
Thomas Gleixner5f868152008-01-30 13:34:06 +0100210}
211EXPORT_SYMBOL(ioremap_cache);
212
Andi Kleenbf5421c2005-12-12 22:17:09 -0800213/**
214 * iounmap - Free a IO remapping
215 * @addr: virtual address from ioremap_*
216 *
217 * Caller must ensure there is only one unmapping for the same pointer.
218 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219void iounmap(volatile void __iomem *addr)
220{
Andi Kleenbf5421c2005-12-12 22:17:09 -0800221 struct vm_struct *p, *o;
Andrew Mortonc23a4e962005-07-07 17:56:02 -0700222
223 if ((void __force *)addr <= high_memory)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return;
225
226 /*
227 * __ioremap special-cases the PCI/ISA range by not instantiating a
228 * vm_area and by simply returning an address into the kernel mapping
229 * of ISA space. So handle that here.
230 */
231 if (addr >= phys_to_virt(ISA_START_ADDRESS) &&
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100232 addr < phys_to_virt(ISA_END_ADDRESS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return;
234
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100235 addr = (volatile void __iomem *)
236 (PAGE_MASK & (unsigned long __force)addr);
Andi Kleenbf5421c2005-12-12 22:17:09 -0800237
238 /* Use the vm area unlocked, assuming the caller
239 ensures there isn't another iounmap for the same address
240 in parallel. Reuse of the virtual address is prevented by
241 leaving it in the global lists until we're done with it.
242 cpa takes care of the direct mappings. */
243 read_lock(&vmlist_lock);
244 for (p = vmlist; p; p = p->next) {
245 if (p->addr == addr)
246 break;
247 }
248 read_unlock(&vmlist_lock);
249
250 if (!p) {
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100251 printk(KERN_ERR "iounmap: bad address %p\n", addr);
Andrew Mortonc23a4e962005-07-07 17:56:02 -0700252 dump_stack();
Andi Kleenbf5421c2005-12-12 22:17:09 -0800253 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255
Andi Kleenbf5421c2005-12-12 22:17:09 -0800256 /* Reset the direct mapping. Can block */
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100257 ioremap_change_attr(p->phys_addr, p->size, IOR_MODE_CACHED);
Andi Kleenbf5421c2005-12-12 22:17:09 -0800258
259 /* Finally remove it */
260 o = remove_vm_area((void *)addr);
261 BUG_ON(p != o || o == NULL);
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100262 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700264EXPORT_SYMBOL(iounmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Thomas Gleixner240d3a72008-01-30 13:34:05 +0100266#ifdef CONFIG_X86_32
Ingo Molnard18d6d62008-01-30 13:33:45 +0100267
268int __initdata early_ioremap_debug;
269
270static int __init early_ioremap_debug_setup(char *str)
271{
272 early_ioremap_debug = 1;
273
Huang, Ying793b24a2008-01-30 13:33:45 +0100274 return 0;
Ingo Molnard18d6d62008-01-30 13:33:45 +0100275}
Huang, Ying793b24a2008-01-30 13:33:45 +0100276early_param("early_ioremap_debug", early_ioremap_debug_setup);
Ingo Molnard18d6d62008-01-30 13:33:45 +0100277
Huang, Ying0947b2f2008-01-30 13:33:44 +0100278static __initdata int after_paging_init;
279static __initdata unsigned long bm_pte[1024]
280 __attribute__((aligned(PAGE_SIZE)));
281
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100282static inline unsigned long * __init early_ioremap_pgd(unsigned long addr)
Huang, Ying0947b2f2008-01-30 13:33:44 +0100283{
284 return (unsigned long *)swapper_pg_dir + ((addr >> 22) & 1023);
285}
286
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100287static inline unsigned long * __init early_ioremap_pte(unsigned long addr)
Huang, Ying0947b2f2008-01-30 13:33:44 +0100288{
289 return bm_pte + ((addr >> PAGE_SHIFT) & 1023);
290}
291
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100292void __init early_ioremap_init(void)
Huang, Ying0947b2f2008-01-30 13:33:44 +0100293{
294 unsigned long *pgd;
295
Ingo Molnard18d6d62008-01-30 13:33:45 +0100296 if (early_ioremap_debug)
Ingo Molnaradafdf62008-01-30 13:34:08 +0100297 printk(KERN_INFO "early_ioremap_init()\n");
Ingo Molnard18d6d62008-01-30 13:33:45 +0100298
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100299 pgd = early_ioremap_pgd(fix_to_virt(FIX_BTMAP_BEGIN));
Huang, Ying0947b2f2008-01-30 13:33:44 +0100300 *pgd = __pa(bm_pte) | _PAGE_TABLE;
301 memset(bm_pte, 0, sizeof(bm_pte));
Ingo Molnar0e3a9542008-01-30 13:33:49 +0100302 /*
303 * The boot-ioremap range spans multiple pgds, for which
304 * we are not prepared:
305 */
306 if (pgd != early_ioremap_pgd(fix_to_virt(FIX_BTMAP_END))) {
307 WARN_ON(1);
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100308 printk(KERN_WARNING "pgd %p != %p\n",
309 pgd, early_ioremap_pgd(fix_to_virt(FIX_BTMAP_END)));
310 printk(KERN_WARNING "fix_to_virt(FIX_BTMAP_BEGIN): %08lx\n",
311 fix_to_virt(FIX_BTMAP_BEGIN));
312 printk(KERN_WARNING "fix_to_virt(FIX_BTMAP_END): %08lx\n",
313 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{
323 unsigned long *pgd;
324
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
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100328 pgd = early_ioremap_pgd(fix_to_virt(FIX_BTMAP_BEGIN));
Huang, Ying0947b2f2008-01-30 13:33:44 +0100329 *pgd = 0;
Jeremy Fitzhardingef6df72e2008-01-30 13:34:11 +0100330 paravirt_release_pt(__pa(pgd) >> 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;
337 unsigned long *pte, phys, addr;
338
339 after_paging_init = 1;
Huang, Ying64a8f852008-01-30 13:33:44 +0100340 for (idx = FIX_BTMAP_BEGIN; idx >= FIX_BTMAP_END; idx--) {
Huang, Ying0947b2f2008-01-30 13:33:44 +0100341 addr = fix_to_virt(idx);
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100342 pte = early_ioremap_pte(addr);
Huang, Ying1fd6a532008-01-31 22:05:45 +0100343 if (*pte & _PAGE_PRESENT) {
Huang, Ying0947b2f2008-01-30 13:33:44 +0100344 phys = *pte & PAGE_MASK;
345 set_fixmap(idx, phys);
346 }
347 }
348}
349
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100350static void __init __early_set_fixmap(enum fixed_addresses idx,
Huang, Ying0947b2f2008-01-30 13:33:44 +0100351 unsigned long phys, pgprot_t flags)
352{
353 unsigned long *pte, addr = __fix_to_virt(idx);
354
355 if (idx >= __end_of_fixed_addresses) {
356 BUG();
357 return;
358 }
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100359 pte = early_ioremap_pte(addr);
Huang, Ying0947b2f2008-01-30 13:33:44 +0100360 if (pgprot_val(flags))
361 *pte = (phys & PAGE_MASK) | pgprot_val(flags);
362 else
363 *pte = 0;
364 __flush_tlb_one(addr);
365}
366
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100367static inline void __init early_set_fixmap(enum fixed_addresses idx,
Huang, Ying0947b2f2008-01-30 13:33:44 +0100368 unsigned long phys)
369{
370 if (after_paging_init)
371 set_fixmap(idx, phys);
372 else
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100373 __early_set_fixmap(idx, phys, PAGE_KERNEL);
Huang, Ying0947b2f2008-01-30 13:33:44 +0100374}
375
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100376static inline void __init early_clear_fixmap(enum fixed_addresses idx)
Huang, Ying0947b2f2008-01-30 13:33:44 +0100377{
378 if (after_paging_init)
379 clear_fixmap(idx);
380 else
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100381 __early_set_fixmap(idx, 0, __pgprot(0));
Huang, Ying0947b2f2008-01-30 13:33:44 +0100382}
383
Ingo Molnar1b42f512008-01-30 13:33:45 +0100384
385int __initdata early_ioremap_nested;
386
Ingo Molnard690b2a2008-01-30 13:33:47 +0100387static int __init check_early_ioremap_leak(void)
388{
389 if (!early_ioremap_nested)
390 return 0;
391
392 printk(KERN_WARNING
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100393 "Debug warning: early ioremap leak of %d areas detected.\n",
394 early_ioremap_nested);
Ingo Molnard690b2a2008-01-30 13:33:47 +0100395 printk(KERN_WARNING
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100396 "please boot with early_ioremap_debug and report the dmesg.\n");
Ingo Molnard690b2a2008-01-30 13:33:47 +0100397 WARN_ON(1);
398
399 return 1;
400}
401late_initcall(check_early_ioremap_leak);
402
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100403void __init *early_ioremap(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
405 unsigned long offset, last_addr;
Ingo Molnar1b42f512008-01-30 13:33:45 +0100406 unsigned int nrpages, nesting;
407 enum fixed_addresses idx0, idx;
408
409 WARN_ON(system_state != SYSTEM_BOOTING);
410
411 nesting = early_ioremap_nested;
Ingo Molnard18d6d62008-01-30 13:33:45 +0100412 if (early_ioremap_debug) {
Ingo Molnaradafdf62008-01-30 13:34:08 +0100413 printk(KERN_INFO "early_ioremap(%08lx, %08lx) [%d] => ",
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100414 phys_addr, size, nesting);
Ingo Molnard18d6d62008-01-30 13:33:45 +0100415 dump_stack();
416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 /* Don't allow wraparound or zero size */
419 last_addr = phys_addr + size - 1;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100420 if (!size || last_addr < phys_addr) {
421 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return NULL;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100425 if (nesting >= FIX_BTMAPS_NESTING) {
426 WARN_ON(1);
Ingo Molnar1b42f512008-01-30 13:33:45 +0100427 return NULL;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100428 }
Ingo Molnar1b42f512008-01-30 13:33:45 +0100429 early_ioremap_nested++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 /*
431 * Mappings have to be page-aligned
432 */
433 offset = phys_addr & ~PAGE_MASK;
434 phys_addr &= PAGE_MASK;
435 size = PAGE_ALIGN(last_addr) - phys_addr;
436
437 /*
438 * Mappings have to fit in the FIX_BTMAP area.
439 */
440 nrpages = size >> PAGE_SHIFT;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100441 if (nrpages > NR_FIX_BTMAPS) {
442 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return NULL;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 /*
447 * Ok, go for it..
448 */
Ingo Molnar1b42f512008-01-30 13:33:45 +0100449 idx0 = FIX_BTMAP_BEGIN - NR_FIX_BTMAPS*nesting;
450 idx = idx0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 while (nrpages > 0) {
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100452 early_set_fixmap(idx, phys_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 phys_addr += PAGE_SIZE;
454 --idx;
455 --nrpages;
456 }
Ingo Molnard18d6d62008-01-30 13:33:45 +0100457 if (early_ioremap_debug)
458 printk(KERN_CONT "%08lx + %08lx\n", offset, fix_to_virt(idx0));
Ingo Molnar1b42f512008-01-30 13:33:45 +0100459
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100460 return (void *) (offset + fix_to_virt(idx0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
462
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100463void __init early_iounmap(void *addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
465 unsigned long virt_addr;
466 unsigned long offset;
467 unsigned int nrpages;
468 enum fixed_addresses idx;
Ingo Molnar1b42f512008-01-30 13:33:45 +0100469 unsigned int nesting;
470
471 nesting = --early_ioremap_nested;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100472 WARN_ON(nesting < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Ingo Molnard18d6d62008-01-30 13:33:45 +0100474 if (early_ioremap_debug) {
Ingo Molnaradafdf62008-01-30 13:34:08 +0100475 printk(KERN_INFO "early_iounmap(%p, %08lx) [%d]\n", addr,
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100476 size, nesting);
Ingo Molnard18d6d62008-01-30 13:33:45 +0100477 dump_stack();
478 }
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 virt_addr = (unsigned long)addr;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100481 if (virt_addr < fix_to_virt(FIX_BTMAP_BEGIN)) {
482 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 offset = virt_addr & ~PAGE_MASK;
486 nrpages = PAGE_ALIGN(offset + size - 1) >> PAGE_SHIFT;
487
Ingo Molnar1b42f512008-01-30 13:33:45 +0100488 idx = FIX_BTMAP_BEGIN - NR_FIX_BTMAPS*nesting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 while (nrpages > 0) {
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100490 early_clear_fixmap(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 --idx;
492 --nrpages;
493 }
494}
Ingo Molnar1b42f512008-01-30 13:33:45 +0100495
496void __this_fixmap_does_not_exist(void)
497{
498 WARN_ON(1);
499}
Thomas Gleixner240d3a72008-01-30 13:34:05 +0100500
501#endif /* CONFIG_X86_32 */