x86: fix ioremap pgprot inconsistency
[linux-2.6/mini2440.git] / arch / x86 / mm / ioremap_64.c
bloba37556124c86b9941f30bee0af1d93fdd211c10a
1 /*
2 * arch/x86_64/mm/ioremap.c
4 * Re-map IO memory to kernel address space so that we can access it.
5 * This is needed for high PCI addresses that aren't mapped in the
6 * 640k-1MB IO memory area on PC's
8 * (C) Copyright 1995 1996 Linus Torvalds
9 */
11 #include <linux/vmalloc.h>
12 #include <linux/init.h>
13 #include <linux/slab.h>
14 #include <linux/module.h>
15 #include <linux/io.h>
17 #include <asm/pgalloc.h>
18 #include <asm/fixmap.h>
19 #include <asm/tlbflush.h>
20 #include <asm/cacheflush.h>
21 #include <asm/proto.h>
22 #include <asm/e820.h>
24 unsigned long __phys_addr(unsigned long x)
26 if (x >= __START_KERNEL_map)
27 return x - __START_KERNEL_map + phys_base;
28 return x - PAGE_OFFSET;
30 EXPORT_SYMBOL(__phys_addr);
33 * Fix up the linear direct mapping of the kernel to avoid cache attribute
34 * conflicts.
36 static int
37 ioremap_change_attr(unsigned long phys_addr, unsigned long size,
38 unsigned long flags)
40 int err = 0;
41 if (phys_addr + size - 1 < (end_pfn_map << PAGE_SHIFT)) {
42 unsigned long npages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
43 unsigned long vaddr = (unsigned long) __va(phys_addr);
44 int level;
47 * If there is no identity map for this address,
48 * change_page_attr_addr is unnecessary
50 if (!lookup_address(vaddr, &level))
51 return err;
53 * Must use a address here and not struct page because the phys addr
54 * can be a in hole between nodes and not have an memmap entry.
56 err = change_page_attr_addr(vaddr,npages,MAKE_GLOBAL(__PAGE_KERNEL|flags));
57 if (!err)
58 global_flush_tlb();
60 return err;
64 * Generic mapping function
68 * Remap an arbitrary physical address space into the kernel virtual
69 * address space. Needed when the kernel wants to access high addresses
70 * directly.
72 * NOTE! We need to allow non-page-aligned mappings too: we will obviously
73 * have to convert them into an offset in a page-aligned mapping, but the
74 * caller shouldn't need to know that small detail.
76 void __iomem * __ioremap(unsigned long phys_addr, unsigned long size, unsigned long flags)
78 void * addr;
79 struct vm_struct * area;
80 unsigned long offset, last_addr;
81 pgprot_t pgprot;
83 /* Don't allow wraparound or zero size */
84 last_addr = phys_addr + size - 1;
85 if (!size || last_addr < phys_addr)
86 return NULL;
89 * Don't remap the low PCI/ISA area, it's always mapped..
91 if (phys_addr >= ISA_START_ADDRESS && last_addr < ISA_END_ADDRESS)
92 return (__force void __iomem *)phys_to_virt(phys_addr);
94 pgprot = MAKE_GLOBAL(__PAGE_KERNEL | flags);
96 * Mappings have to be page-aligned
98 offset = phys_addr & ~PAGE_MASK;
99 phys_addr &= PAGE_MASK;
100 size = PAGE_ALIGN(last_addr+1) - phys_addr;
103 * Ok, go for it..
105 area = get_vm_area(size, VM_IOREMAP | (flags << 20));
106 if (!area)
107 return NULL;
108 area->phys_addr = phys_addr;
109 addr = area->addr;
110 if (ioremap_page_range((unsigned long)addr, (unsigned long)addr + size,
111 phys_addr, pgprot)) {
112 remove_vm_area((void *)(PAGE_MASK & (unsigned long) addr));
113 return NULL;
115 if (flags && ioremap_change_attr(phys_addr, size, flags) < 0) {
116 area->flags &= 0xffffff;
117 vunmap(addr);
118 return NULL;
120 return (__force void __iomem *) (offset + (char *)addr);
122 EXPORT_SYMBOL(__ioremap);
125 * ioremap_nocache - map bus memory into CPU space
126 * @offset: bus address of the memory
127 * @size: size of the resource to map
129 * ioremap_nocache performs a platform specific sequence of operations to
130 * make bus memory CPU accessible via the readb/readw/readl/writeb/
131 * writew/writel functions and the other mmio helpers. The returned
132 * address is not guaranteed to be usable directly as a virtual
133 * address.
135 * This version of ioremap ensures that the memory is marked uncachable
136 * on the CPU as well as honouring existing caching rules from things like
137 * the PCI bus. Note that there are other caches and buffers on many
138 * busses. In particular driver authors should read up on PCI writes
140 * It's useful if some control registers are in such an area and
141 * write combining or read caching is not desirable:
143 * Must be freed with iounmap.
146 void __iomem *ioremap_nocache (unsigned long phys_addr, unsigned long size)
148 return __ioremap(phys_addr, size, _PAGE_PCD | _PAGE_PWT);
150 EXPORT_SYMBOL(ioremap_nocache);
153 * iounmap - Free a IO remapping
154 * @addr: virtual address from ioremap_*
156 * Caller must ensure there is only one unmapping for the same pointer.
158 void iounmap(volatile void __iomem *addr)
160 struct vm_struct *p, *o;
162 if (addr <= high_memory)
163 return;
164 if (addr >= phys_to_virt(ISA_START_ADDRESS) &&
165 addr < phys_to_virt(ISA_END_ADDRESS))
166 return;
168 addr = (volatile void __iomem *)(PAGE_MASK & (unsigned long __force)addr);
169 /* Use the vm area unlocked, assuming the caller
170 ensures there isn't another iounmap for the same address
171 in parallel. Reuse of the virtual address is prevented by
172 leaving it in the global lists until we're done with it.
173 cpa takes care of the direct mappings. */
174 read_lock(&vmlist_lock);
175 for (p = vmlist; p; p = p->next) {
176 if (p->addr == addr)
177 break;
179 read_unlock(&vmlist_lock);
181 if (!p) {
182 printk("iounmap: bad address %p\n", addr);
183 dump_stack();
184 return;
187 /* Reset the direct mapping. Can block */
188 if (p->flags >> 20)
189 ioremap_change_attr(p->phys_addr, p->size, 0);
191 /* Finally remove it */
192 o = remove_vm_area((void *)addr);
193 BUG_ON(p != o || o == NULL);
194 kfree(p);
196 EXPORT_SYMBOL(iounmap);