blob: 1986e09fb457c55ba16e3cd19f56f65e2737cb54 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * (C) Copyright 1995 1996 Linus Torvalds
7 * (C) Copyright 2001, 2002 Ralf Baechle
8 */
Paul Gortmakerd9ba5772016-08-21 15:58:14 -04009#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <asm/addrspace.h>
11#include <asm/byteorder.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040012#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/vmalloc.h>
Ingo Molnar589ee622017-02-04 00:16:44 +010015#include <linux/mm_types.h>
Ralf Baechle5ce704f2007-02-21 09:37:44 +000016#include <asm/cacheflush.h>
17#include <asm/io.h>
18#include <asm/tlbflush.h>
19
20static inline void remap_area_pte(pte_t * pte, unsigned long address,
Ralf Baechle15d45cc2014-11-22 00:22:09 +010021 phys_addr_t size, phys_addr_t phys_addr, unsigned long flags)
Ralf Baechle5ce704f2007-02-21 09:37:44 +000022{
Ralf Baechle15d45cc2014-11-22 00:22:09 +010023 phys_addr_t end;
Ralf Baechle5ce704f2007-02-21 09:37:44 +000024 unsigned long pfn;
25 pgprot_t pgprot = __pgprot(_PAGE_GLOBAL | _PAGE_PRESENT | __READABLE
Ralf Baechle70342282013-01-22 12:59:30 +010026 | __WRITEABLE | flags);
Ralf Baechle5ce704f2007-02-21 09:37:44 +000027
28 address &= ~PMD_MASK;
29 end = address + size;
30 if (end > PMD_SIZE)
31 end = PMD_SIZE;
Ralf Baechleb72b7092009-03-30 14:49:44 +020032 BUG_ON(address >= end);
Ralf Baechle5ce704f2007-02-21 09:37:44 +000033 pfn = phys_addr >> PAGE_SHIFT;
34 do {
35 if (!pte_none(*pte)) {
36 printk("remap_area_pte: page already exists\n");
37 BUG();
38 }
39 set_pte(pte, pfn_pte(pfn, pgprot));
40 address += PAGE_SIZE;
41 pfn++;
42 pte++;
43 } while (address && (address < end));
44}
45
46static inline int remap_area_pmd(pmd_t * pmd, unsigned long address,
Ralf Baechle15d45cc2014-11-22 00:22:09 +010047 phys_addr_t size, phys_addr_t phys_addr, unsigned long flags)
Ralf Baechle5ce704f2007-02-21 09:37:44 +000048{
Ralf Baechle15d45cc2014-11-22 00:22:09 +010049 phys_addr_t end;
Ralf Baechle5ce704f2007-02-21 09:37:44 +000050
51 address &= ~PGDIR_MASK;
52 end = address + size;
53 if (end > PGDIR_SIZE)
54 end = PGDIR_SIZE;
55 phys_addr -= address;
Ralf Baechleb72b7092009-03-30 14:49:44 +020056 BUG_ON(address >= end);
Ralf Baechle5ce704f2007-02-21 09:37:44 +000057 do {
58 pte_t * pte = pte_alloc_kernel(pmd, address);
59 if (!pte)
60 return -ENOMEM;
61 remap_area_pte(pte, address, end - address, address + phys_addr, flags);
62 address = (address + PMD_SIZE) & PMD_MASK;
63 pmd++;
64 } while (address && (address < end));
65 return 0;
66}
67
Ralf Baechle15d45cc2014-11-22 00:22:09 +010068static int remap_area_pages(unsigned long address, phys_addr_t phys_addr,
69 phys_addr_t size, unsigned long flags)
Ralf Baechle5ce704f2007-02-21 09:37:44 +000070{
71 int error;
72 pgd_t * dir;
73 unsigned long end = address + size;
74
75 phys_addr -= address;
76 dir = pgd_offset(&init_mm, address);
77 flush_cache_all();
Ralf Baechleb72b7092009-03-30 14:49:44 +020078 BUG_ON(address >= end);
Ralf Baechle5ce704f2007-02-21 09:37:44 +000079 do {
80 pud_t *pud;
81 pmd_t *pmd;
82
83 error = -ENOMEM;
84 pud = pud_alloc(&init_mm, dir, address);
85 if (!pud)
86 break;
87 pmd = pmd_alloc(&init_mm, pud, address);
88 if (!pmd)
89 break;
90 if (remap_area_pmd(pmd, address, end - address,
91 phys_addr + address, flags))
92 break;
93 error = 0;
94 address = (address + PGDIR_SIZE) & PGDIR_MASK;
95 dir++;
96 } while (address && (address < end));
97 flush_tlb_all();
98 return error;
99}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 * Generic mapping function (not visible outside):
103 */
104
105/*
106 * 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 */
114
Ralf Baechle15d45cc2014-11-22 00:22:09 +0100115#define IS_LOW512(addr) (!((phys_addr_t)(addr) & (phys_addr_t) ~0x1fffffffULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Ralf Baechle15d45cc2014-11-22 00:22:09 +0100117void __iomem * __ioremap(phys_addr_t phys_addr, phys_addr_t size, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 struct vm_struct * area;
120 unsigned long offset;
Ralf Baechle15d45cc2014-11-22 00:22:09 +0100121 phys_addr_t last_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 void * addr;
123
124 phys_addr = fixup_bigphys_addr(phys_addr, size);
125
126 /* Don't allow wraparound or zero size */
127 last_addr = phys_addr + size - 1;
128 if (!size || last_addr < phys_addr)
129 return NULL;
130
131 /*
132 * Map uncached objects in the low 512mb of address space using KSEG1,
133 * otherwise map using page tables.
134 */
135 if (IS_LOW512(phys_addr) && IS_LOW512(last_addr) &&
136 flags == _CACHE_UNCACHED)
Maciej W. Rozyckic3455b02005-06-30 10:48:40 +0000137 return (void __iomem *) CKSEG1ADDR(phys_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 /*
140 * Don't allow anybody to remap normal RAM that we're using..
141 */
142 if (phys_addr < virt_to_phys(high_memory)) {
143 char *t_addr, *t_end;
144 struct page *page;
145
146 t_addr = __va(phys_addr);
147 t_end = t_addr + (size - 1);
148
149 for(page = virt_to_page(t_addr); page <= virt_to_page(t_end); page++)
150 if(!PageReserved(page))
151 return NULL;
152 }
153
154 /*
155 * Mappings have to be page-aligned
156 */
157 offset = phys_addr & ~PAGE_MASK;
158 phys_addr &= PAGE_MASK;
159 size = PAGE_ALIGN(last_addr + 1) - phys_addr;
160
161 /*
162 * Ok, go for it..
163 */
164 area = get_vm_area(size, VM_IOREMAP);
165 if (!area)
166 return NULL;
167 addr = area->addr;
Ralf Baechle5ce704f2007-02-21 09:37:44 +0000168 if (remap_area_pages((unsigned long) addr, phys_addr, size, flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 vunmap(addr);
170 return NULL;
171 }
172
Maciej W. Rozyckic3455b02005-06-30 10:48:40 +0000173 return (void __iomem *) (offset + (char *)addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000176#define IS_KSEG1(addr) (((unsigned long)(addr) & ~0x1fffffffUL) == CKSEG1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Ralf Baechled89e36d2006-10-19 14:21:47 +0100178void __iounmap(const volatile void __iomem *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 struct vm_struct *p;
181
182 if (IS_KSEG1(addr))
183 return;
184
185 p = remove_vm_area((void *) (PAGE_MASK & (unsigned long __force) addr));
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000186 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 printk(KERN_ERR "iounmap: bad address %p\n", addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Ralf Baechle70342282013-01-22 12:59:30 +0100189 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
192EXPORT_SYMBOL(__ioremap);
193EXPORT_SYMBOL(__iounmap);