blob: 868bbde74698d2de574ab9558ab62542a08f30cb [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
Arjan van de Ven156fbc32008-02-18 09:58:45 -080053 /*
54 * Second special case: Some BIOSen report the PC BIOS
55 * area (640->1Mb) as ram even though it is not.
56 */
57 if (pagenr >= (BIOS_BEGIN >> PAGE_SHIFT) &&
58 pagenr < (BIOS_END >> PAGE_SHIFT))
59 return 0;
Arjan van de Vend8a9e6a2008-02-18 09:54:33 -080060
Thomas Gleixner5f5192b2008-01-30 13:34:06 +010061 for (i = 0; i < e820.nr_map; i++) {
62 /*
63 * Not usable memory:
64 */
65 if (e820.map[i].type != E820_RAM)
66 continue;
Thomas Gleixner5f5192b2008-01-30 13:34:06 +010067 addr = (e820.map[i].addr + PAGE_SIZE-1) >> PAGE_SHIFT;
68 end = (e820.map[i].addr + e820.map[i].size) >> PAGE_SHIFT;
Thomas Gleixner950f9d92008-01-30 13:34:06 +010069
Thomas Gleixner950f9d92008-01-30 13:34:06 +010070
Thomas Gleixner5f5192b2008-01-30 13:34:06 +010071 if ((pagenr >= addr) && (pagenr < end))
72 return 1;
73 }
74 return 0;
75}
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/*
Thomas Gleixnere9332ca2008-01-30 13:34:05 +010078 * Fix up the linear direct mapping of the kernel to avoid cache attribute
79 * conflicts.
80 */
Thomas Gleixner75ab43b2008-02-04 16:48:05 +010081static int ioremap_change_attr(unsigned long vaddr, unsigned long size,
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +010082 enum ioremap_mode mode)
Thomas Gleixnere9332ca2008-01-30 13:34:05 +010083{
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +010084 unsigned long nrpages = size >> PAGE_SHIFT;
Harvey Harrison93809be2008-02-01 17:49:43 +010085 int err;
Thomas Gleixnere9332ca2008-01-30 13:34:05 +010086
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +010087 switch (mode) {
88 case IOR_MODE_UNCACHED:
89 default:
90 err = set_memory_uc(vaddr, nrpages);
91 break;
92 case IOR_MODE_CACHED:
93 err = set_memory_wb(vaddr, nrpages);
94 break;
95 }
Thomas Gleixnere9332ca2008-01-30 13:34:05 +010096
97 return err;
98}
99
100/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 * Remap an arbitrary physical address space into the kernel virtual
102 * address space. Needed when the kernel wants to access high addresses
103 * directly.
104 *
105 * NOTE! We need to allow non-page-aligned mappings too: we will obviously
106 * have to convert them into an offset in a page-aligned mapping, but the
107 * caller shouldn't need to know that small detail.
108 */
Linus Torvaldsb9e76a02008-03-24 11:22:39 -0700109static void __iomem *__ioremap(resource_size_t phys_addr, unsigned long size,
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100110 enum ioremap_mode mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Thomas Gleixnere66aadb2008-02-04 16:48:05 +0100112 unsigned long pfn, offset, last_addr, vaddr;
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100113 struct vm_struct *area;
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100114 pgprot_t prot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 /* Don't allow wraparound or zero size */
117 last_addr = phys_addr + size - 1;
118 if (!size || last_addr < phys_addr)
119 return NULL;
120
121 /*
122 * Don't remap the low PCI/ISA area, it's always mapped..
123 */
124 if (phys_addr >= ISA_START_ADDRESS && last_addr < ISA_END_ADDRESS)
Thomas Gleixner4b40fce2008-01-30 13:34:05 +0100125 return (__force void __iomem *)phys_to_virt(phys_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 /*
128 * Don't allow anybody to remap normal RAM that we're using..
129 */
Ingo Molnar38cb47b2008-02-04 16:47:54 +0100130 for (pfn = phys_addr >> PAGE_SHIFT; pfn < max_pfn_mapped &&
131 (pfn << PAGE_SHIFT) < last_addr; pfn++) {
132 if (page_is_ram(pfn) && pfn_valid(pfn) &&
133 !PageReserved(pfn_to_page(pfn)))
Thomas Gleixner266b9f82008-01-30 13:34:06 +0100134 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100137 switch (mode) {
138 case IOR_MODE_UNCACHED:
139 default:
Suresh Siddhad546b67a2008-03-25 17:39:12 -0700140 /*
141 * FIXME: we will use UC MINUS for now, as video fb drivers
142 * depend on it. Upcoming ioremap_wc() will fix this behavior.
143 */
144 prot = PAGE_KERNEL_UC_MINUS;
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100145 break;
146 case IOR_MODE_CACHED:
147 prot = PAGE_KERNEL;
148 break;
149 }
Haavard Skinnemoena148ecf2006-09-30 23:29:17 -0700150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 /*
152 * Mappings have to be page-aligned
153 */
154 offset = phys_addr & ~PAGE_MASK;
155 phys_addr &= PAGE_MASK;
156 size = PAGE_ALIGN(last_addr+1) - phys_addr;
157
158 /*
159 * Ok, go for it..
160 */
Thomas Gleixner74ff2852008-01-30 13:34:05 +0100161 area = get_vm_area(size, VM_IOREMAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (!area)
163 return NULL;
164 area->phys_addr = phys_addr;
Thomas Gleixnere66aadb2008-02-04 16:48:05 +0100165 vaddr = (unsigned long) area->addr;
166 if (ioremap_page_range(vaddr, vaddr + size, phys_addr, prot)) {
Ingo Molnarb16bf712008-02-28 14:02:08 +0100167 free_vm_area(area);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return NULL;
169 }
Thomas Gleixnere9332ca2008-01-30 13:34:05 +0100170
Thomas Gleixner75ab43b2008-02-04 16:48:05 +0100171 if (ioremap_change_attr(vaddr, size, mode) < 0) {
Thomas Gleixnere66aadb2008-02-04 16:48:05 +0100172 vunmap(area->addr);
Thomas Gleixnere9332ca2008-01-30 13:34:05 +0100173 return NULL;
174 }
175
Thomas Gleixnere66aadb2008-02-04 16:48:05 +0100176 return (void __iomem *) (vaddr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179/**
180 * ioremap_nocache - map bus memory into CPU space
181 * @offset: bus address of the memory
182 * @size: size of the resource to map
183 *
184 * ioremap_nocache performs a platform specific sequence of operations to
185 * make bus memory CPU accessible via the readb/readw/readl/writeb/
186 * writew/writel functions and the other mmio helpers. The returned
187 * address is not guaranteed to be usable directly as a virtual
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100188 * address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 *
190 * This version of ioremap ensures that the memory is marked uncachable
191 * on the CPU as well as honouring existing caching rules from things like
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100192 * the PCI bus. Note that there are other caches and buffers on many
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 * busses. In particular driver authors should read up on PCI writes
194 *
195 * It's useful if some control registers are in such an area and
196 * write combining or read caching is not desirable:
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100197 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 * Must be freed with iounmap.
199 */
Linus Torvaldsb9e76a02008-03-24 11:22:39 -0700200void __iomem *ioremap_nocache(resource_size_t phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100202 return __ioremap(phys_addr, size, IOR_MODE_UNCACHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700204EXPORT_SYMBOL(ioremap_nocache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Linus Torvaldsb9e76a02008-03-24 11:22:39 -0700206void __iomem *ioremap_cache(resource_size_t phys_addr, unsigned long size)
Thomas Gleixner5f868152008-01-30 13:34:06 +0100207{
Thomas Gleixnerd806e5e2008-01-30 13:34:06 +0100208 return __ioremap(phys_addr, size, IOR_MODE_CACHED);
Thomas Gleixner5f868152008-01-30 13:34:06 +0100209}
210EXPORT_SYMBOL(ioremap_cache);
211
Andi Kleenbf5421c2005-12-12 22:17:09 -0800212/**
213 * iounmap - Free a IO remapping
214 * @addr: virtual address from ioremap_*
215 *
216 * Caller must ensure there is only one unmapping for the same pointer.
217 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218void iounmap(volatile void __iomem *addr)
219{
Andi Kleenbf5421c2005-12-12 22:17:09 -0800220 struct vm_struct *p, *o;
Andrew Mortonc23a4e962005-07-07 17:56:02 -0700221
222 if ((void __force *)addr <= high_memory)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return;
224
225 /*
226 * __ioremap special-cases the PCI/ISA range by not instantiating a
227 * vm_area and by simply returning an address into the kernel mapping
228 * of ISA space. So handle that here.
229 */
230 if (addr >= phys_to_virt(ISA_START_ADDRESS) &&
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100231 addr < phys_to_virt(ISA_END_ADDRESS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return;
233
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100234 addr = (volatile void __iomem *)
235 (PAGE_MASK & (unsigned long __force)addr);
Andi Kleenbf5421c2005-12-12 22:17:09 -0800236
237 /* Use the vm area unlocked, assuming the caller
238 ensures there isn't another iounmap for the same address
239 in parallel. Reuse of the virtual address is prevented by
240 leaving it in the global lists until we're done with it.
241 cpa takes care of the direct mappings. */
242 read_lock(&vmlist_lock);
243 for (p = vmlist; p; p = p->next) {
244 if (p->addr == addr)
245 break;
246 }
247 read_unlock(&vmlist_lock);
248
249 if (!p) {
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100250 printk(KERN_ERR "iounmap: bad address %p\n", addr);
Andrew Mortonc23a4e962005-07-07 17:56:02 -0700251 dump_stack();
Andi Kleenbf5421c2005-12-12 22:17:09 -0800252 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254
Andi Kleenbf5421c2005-12-12 22:17:09 -0800255 /* Finally remove it */
256 o = remove_vm_area((void *)addr);
257 BUG_ON(p != o || o == NULL);
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100258 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700260EXPORT_SYMBOL(iounmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Thomas Gleixner240d3a72008-01-30 13:34:05 +0100262#ifdef CONFIG_X86_32
Ingo Molnard18d6d62008-01-30 13:33:45 +0100263
264int __initdata early_ioremap_debug;
265
266static int __init early_ioremap_debug_setup(char *str)
267{
268 early_ioremap_debug = 1;
269
Huang, Ying793b24a2008-01-30 13:33:45 +0100270 return 0;
Ingo Molnard18d6d62008-01-30 13:33:45 +0100271}
Huang, Ying793b24a2008-01-30 13:33:45 +0100272early_param("early_ioremap_debug", early_ioremap_debug_setup);
Ingo Molnard18d6d62008-01-30 13:33:45 +0100273
Huang, Ying0947b2f2008-01-30 13:33:44 +0100274static __initdata int after_paging_init;
Ian Campbellc92a7a52008-02-17 19:09:42 +0000275static pte_t bm_pte[PAGE_SIZE/sizeof(pte_t)]
276 __section(.bss.page_aligned);
Huang, Ying0947b2f2008-01-30 13:33:44 +0100277
Ian Campbell551889a62008-02-09 23:24:09 +0100278static inline pmd_t * __init early_ioremap_pmd(unsigned long addr)
Huang, Ying0947b2f2008-01-30 13:33:44 +0100279{
Jeremy Fitzhardinge37cc8d72008-02-13 16:20:35 +0100280 /* Don't assume we're using swapper_pg_dir at this point */
281 pgd_t *base = __va(read_cr3());
282 pgd_t *pgd = &base[pgd_index(addr)];
Ian Campbell551889a62008-02-09 23:24:09 +0100283 pud_t *pud = pud_offset(pgd, addr);
284 pmd_t *pmd = pmd_offset(pud, addr);
285
286 return pmd;
Huang, Ying0947b2f2008-01-30 13:33:44 +0100287}
288
Ian Campbell551889a62008-02-09 23:24:09 +0100289static inline pte_t * __init early_ioremap_pte(unsigned long addr)
Huang, Ying0947b2f2008-01-30 13:33:44 +0100290{
Ian Campbell551889a62008-02-09 23:24:09 +0100291 return &bm_pte[pte_index(addr)];
Huang, Ying0947b2f2008-01-30 13:33:44 +0100292}
293
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100294void __init early_ioremap_init(void)
Huang, Ying0947b2f2008-01-30 13:33:44 +0100295{
Ian Campbell551889a62008-02-09 23:24:09 +0100296 pmd_t *pmd;
Huang, Ying0947b2f2008-01-30 13:33:44 +0100297
Ingo Molnard18d6d62008-01-30 13:33:45 +0100298 if (early_ioremap_debug)
Ingo Molnaradafdf62008-01-30 13:34:08 +0100299 printk(KERN_INFO "early_ioremap_init()\n");
Ingo Molnard18d6d62008-01-30 13:33:45 +0100300
Ian Campbell551889a62008-02-09 23:24:09 +0100301 pmd = early_ioremap_pmd(fix_to_virt(FIX_BTMAP_BEGIN));
Huang, Ying0947b2f2008-01-30 13:33:44 +0100302 memset(bm_pte, 0, sizeof(bm_pte));
Ian Campbellb6fbb662008-02-09 23:24:09 +0100303 pmd_populate_kernel(&init_mm, pmd, bm_pte);
Ian Campbell551889a62008-02-09 23:24:09 +0100304
Ingo Molnar0e3a9542008-01-30 13:33:49 +0100305 /*
Ian Campbell551889a62008-02-09 23:24:09 +0100306 * The boot-ioremap range spans multiple pmds, for which
Ingo Molnar0e3a9542008-01-30 13:33:49 +0100307 * we are not prepared:
308 */
Ian Campbell551889a62008-02-09 23:24:09 +0100309 if (pmd != early_ioremap_pmd(fix_to_virt(FIX_BTMAP_END))) {
Ingo Molnar0e3a9542008-01-30 13:33:49 +0100310 WARN_ON(1);
Ian Campbell551889a62008-02-09 23:24:09 +0100311 printk(KERN_WARNING "pmd %p != %p\n",
312 pmd, early_ioremap_pmd(fix_to_virt(FIX_BTMAP_END)));
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100313 printk(KERN_WARNING "fix_to_virt(FIX_BTMAP_BEGIN): %08lx\n",
Ian Campbell551889a62008-02-09 23:24:09 +0100314 fix_to_virt(FIX_BTMAP_BEGIN));
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100315 printk(KERN_WARNING "fix_to_virt(FIX_BTMAP_END): %08lx\n",
Ian Campbell551889a62008-02-09 23:24:09 +0100316 fix_to_virt(FIX_BTMAP_END));
Ingo Molnar0e3a9542008-01-30 13:33:49 +0100317
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100318 printk(KERN_WARNING "FIX_BTMAP_END: %d\n", FIX_BTMAP_END);
319 printk(KERN_WARNING "FIX_BTMAP_BEGIN: %d\n",
320 FIX_BTMAP_BEGIN);
Ingo Molnar0e3a9542008-01-30 13:33:49 +0100321 }
Huang, Ying0947b2f2008-01-30 13:33:44 +0100322}
323
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100324void __init early_ioremap_clear(void)
Huang, Ying0947b2f2008-01-30 13:33:44 +0100325{
Ian Campbell551889a62008-02-09 23:24:09 +0100326 pmd_t *pmd;
Huang, Ying0947b2f2008-01-30 13:33:44 +0100327
Ingo Molnard18d6d62008-01-30 13:33:45 +0100328 if (early_ioremap_debug)
Ingo Molnaradafdf62008-01-30 13:34:08 +0100329 printk(KERN_INFO "early_ioremap_clear()\n");
Ingo Molnard18d6d62008-01-30 13:33:45 +0100330
Ian Campbell551889a62008-02-09 23:24:09 +0100331 pmd = early_ioremap_pmd(fix_to_virt(FIX_BTMAP_BEGIN));
332 pmd_clear(pmd);
Ian Campbellb6fbb662008-02-09 23:24:09 +0100333 paravirt_release_pt(__pa(bm_pte) >> PAGE_SHIFT);
Huang, Ying0947b2f2008-01-30 13:33:44 +0100334 __flush_tlb_all();
335}
336
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100337void __init early_ioremap_reset(void)
Huang, Ying0947b2f2008-01-30 13:33:44 +0100338{
339 enum fixed_addresses idx;
Ian Campbell551889a62008-02-09 23:24:09 +0100340 unsigned long addr, phys;
341 pte_t *pte;
Huang, Ying0947b2f2008-01-30 13:33:44 +0100342
343 after_paging_init = 1;
Huang, Ying64a8f852008-01-30 13:33:44 +0100344 for (idx = FIX_BTMAP_BEGIN; idx >= FIX_BTMAP_END; idx--) {
Huang, Ying0947b2f2008-01-30 13:33:44 +0100345 addr = fix_to_virt(idx);
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100346 pte = early_ioremap_pte(addr);
Ian Campbell551889a62008-02-09 23:24:09 +0100347 if (pte_present(*pte)) {
348 phys = pte_val(*pte) & PAGE_MASK;
Huang, Ying0947b2f2008-01-30 13:33:44 +0100349 set_fixmap(idx, phys);
350 }
351 }
352}
353
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100354static void __init __early_set_fixmap(enum fixed_addresses idx,
Huang, Ying0947b2f2008-01-30 13:33:44 +0100355 unsigned long phys, pgprot_t flags)
356{
Ian Campbell551889a62008-02-09 23:24:09 +0100357 unsigned long addr = __fix_to_virt(idx);
358 pte_t *pte;
Huang, Ying0947b2f2008-01-30 13:33:44 +0100359
360 if (idx >= __end_of_fixed_addresses) {
361 BUG();
362 return;
363 }
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100364 pte = early_ioremap_pte(addr);
Huang, Ying0947b2f2008-01-30 13:33:44 +0100365 if (pgprot_val(flags))
Ian Campbell551889a62008-02-09 23:24:09 +0100366 set_pte(pte, pfn_pte(phys >> PAGE_SHIFT, flags));
Huang, Ying0947b2f2008-01-30 13:33:44 +0100367 else
Ian Campbell551889a62008-02-09 23:24:09 +0100368 pte_clear(NULL, addr, pte);
Huang, Ying0947b2f2008-01-30 13:33:44 +0100369 __flush_tlb_one(addr);
370}
371
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100372static inline void __init early_set_fixmap(enum fixed_addresses idx,
Huang, Ying0947b2f2008-01-30 13:33:44 +0100373 unsigned long phys)
374{
375 if (after_paging_init)
376 set_fixmap(idx, phys);
377 else
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100378 __early_set_fixmap(idx, phys, PAGE_KERNEL);
Huang, Ying0947b2f2008-01-30 13:33:44 +0100379}
380
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100381static inline void __init early_clear_fixmap(enum fixed_addresses idx)
Huang, Ying0947b2f2008-01-30 13:33:44 +0100382{
383 if (after_paging_init)
384 clear_fixmap(idx);
385 else
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100386 __early_set_fixmap(idx, 0, __pgprot(0));
Huang, Ying0947b2f2008-01-30 13:33:44 +0100387}
388
Ingo Molnar1b42f512008-01-30 13:33:45 +0100389
390int __initdata early_ioremap_nested;
391
Ingo Molnard690b2a2008-01-30 13:33:47 +0100392static int __init check_early_ioremap_leak(void)
393{
394 if (!early_ioremap_nested)
395 return 0;
396
397 printk(KERN_WARNING
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100398 "Debug warning: early ioremap leak of %d areas detected.\n",
399 early_ioremap_nested);
Ingo Molnard690b2a2008-01-30 13:33:47 +0100400 printk(KERN_WARNING
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100401 "please boot with early_ioremap_debug and report the dmesg.\n");
Ingo Molnard690b2a2008-01-30 13:33:47 +0100402 WARN_ON(1);
403
404 return 1;
405}
406late_initcall(check_early_ioremap_leak);
407
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100408void __init *early_ioremap(unsigned long phys_addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
410 unsigned long offset, last_addr;
Ingo Molnar1b42f512008-01-30 13:33:45 +0100411 unsigned int nrpages, nesting;
412 enum fixed_addresses idx0, idx;
413
414 WARN_ON(system_state != SYSTEM_BOOTING);
415
416 nesting = early_ioremap_nested;
Ingo Molnard18d6d62008-01-30 13:33:45 +0100417 if (early_ioremap_debug) {
Ingo Molnaradafdf62008-01-30 13:34:08 +0100418 printk(KERN_INFO "early_ioremap(%08lx, %08lx) [%d] => ",
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100419 phys_addr, size, nesting);
Ingo Molnard18d6d62008-01-30 13:33:45 +0100420 dump_stack();
421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 /* Don't allow wraparound or zero size */
424 last_addr = phys_addr + size - 1;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100425 if (!size || last_addr < phys_addr) {
426 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return NULL;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100430 if (nesting >= FIX_BTMAPS_NESTING) {
431 WARN_ON(1);
Ingo Molnar1b42f512008-01-30 13:33:45 +0100432 return NULL;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100433 }
Ingo Molnar1b42f512008-01-30 13:33:45 +0100434 early_ioremap_nested++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 /*
436 * Mappings have to be page-aligned
437 */
438 offset = phys_addr & ~PAGE_MASK;
439 phys_addr &= PAGE_MASK;
440 size = PAGE_ALIGN(last_addr) - phys_addr;
441
442 /*
443 * Mappings have to fit in the FIX_BTMAP area.
444 */
445 nrpages = size >> PAGE_SHIFT;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100446 if (nrpages > NR_FIX_BTMAPS) {
447 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return NULL;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 /*
452 * Ok, go for it..
453 */
Ingo Molnar1b42f512008-01-30 13:33:45 +0100454 idx0 = FIX_BTMAP_BEGIN - NR_FIX_BTMAPS*nesting;
455 idx = idx0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 while (nrpages > 0) {
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100457 early_set_fixmap(idx, phys_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 phys_addr += PAGE_SIZE;
459 --idx;
460 --nrpages;
461 }
Ingo Molnard18d6d62008-01-30 13:33:45 +0100462 if (early_ioremap_debug)
463 printk(KERN_CONT "%08lx + %08lx\n", offset, fix_to_virt(idx0));
Ingo Molnar1b42f512008-01-30 13:33:45 +0100464
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100465 return (void *) (offset + fix_to_virt(idx0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100468void __init early_iounmap(void *addr, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
470 unsigned long virt_addr;
471 unsigned long offset;
472 unsigned int nrpages;
473 enum fixed_addresses idx;
Ingo Molnar1b42f512008-01-30 13:33:45 +0100474 unsigned int nesting;
475
476 nesting = --early_ioremap_nested;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100477 WARN_ON(nesting < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Ingo Molnard18d6d62008-01-30 13:33:45 +0100479 if (early_ioremap_debug) {
Ingo Molnaradafdf62008-01-30 13:34:08 +0100480 printk(KERN_INFO "early_iounmap(%p, %08lx) [%d]\n", addr,
Thomas Gleixner91eebf42008-01-30 13:34:05 +0100481 size, nesting);
Ingo Molnard18d6d62008-01-30 13:33:45 +0100482 dump_stack();
483 }
484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 virt_addr = (unsigned long)addr;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100486 if (virt_addr < fix_to_virt(FIX_BTMAP_BEGIN)) {
487 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return;
Ingo Molnarbd796ed2008-01-30 13:33:45 +0100489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 offset = virt_addr & ~PAGE_MASK;
491 nrpages = PAGE_ALIGN(offset + size - 1) >> PAGE_SHIFT;
492
Ingo Molnar1b42f512008-01-30 13:33:45 +0100493 idx = FIX_BTMAP_BEGIN - NR_FIX_BTMAPS*nesting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 while (nrpages > 0) {
Huang, Yingbeacfaa2008-01-30 13:33:44 +0100495 early_clear_fixmap(idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 --idx;
497 --nrpages;
498 }
499}
Ingo Molnar1b42f512008-01-30 13:33:45 +0100500
501void __this_fixmap_does_not_exist(void)
502{
503 WARN_ON(1);
504}
Thomas Gleixner240d3a72008-01-30 13:34:05 +0100505
506#endif /* CONFIG_X86_32 */