blob: 50a99d9684f7d81214b56f1ebe73bb87ceb41156 [file] [log] [blame]
Christophe Leroyf381d572019-08-20 14:07:17 +00001// SPDX-License-Identifier: GPL-2.0-or-later
2
3#include <linux/io.h>
4#include <linux/slab.h>
5#include <linux/vmalloc.h>
6
Christophe Leroyf381d572019-08-20 14:07:17 +00007/**
8 * Low level function to establish the page tables for an IO mapping
9 */
10void __iomem *__ioremap_at(phys_addr_t pa, void *ea, unsigned long size, pgprot_t prot)
11{
Christophe Leroy163918f2019-08-20 14:07:20 +000012 int ret;
13 unsigned long va = (unsigned long)ea;
14
Christophe Leroyf381d572019-08-20 14:07:17 +000015 /* We don't support the 4K PFN hack with ioremap */
16 if (pgprot_val(prot) & H_PAGE_4K_PFN)
17 return NULL;
18
19 if ((ea + size) >= (void *)IOREMAP_END) {
20 pr_warn("Outside the supported range\n");
21 return NULL;
22 }
23
24 WARN_ON(pa & ~PAGE_MASK);
25 WARN_ON(((unsigned long)ea) & ~PAGE_MASK);
26 WARN_ON(size & ~PAGE_MASK);
27
Christophe Leroy163918f2019-08-20 14:07:20 +000028 if (slab_is_available()) {
29 ret = ioremap_page_range(va, va + size, pa, prot);
30 if (ret)
31 unmap_kernel_range(va, size);
32 } else {
33 ret = early_ioremap_range(va, pa, size, prot);
34 }
35
36 if (ret)
Christophe Leroyf381d572019-08-20 14:07:17 +000037 return NULL;
38
39 return (void __iomem *)ea;
40}
41EXPORT_SYMBOL(__ioremap_at);
42
43/**
44 * Low level function to tear down the page tables for an IO mapping. This is
45 * used for mappings that are manipulated manually, like partial unmapping of
46 * PCI IOs or ISA space.
47 */
48void __iounmap_at(void *ea, unsigned long size)
49{
50 WARN_ON(((unsigned long)ea) & ~PAGE_MASK);
51 WARN_ON(size & ~PAGE_MASK);
52
53 unmap_kernel_range((unsigned long)ea, size);
54}
55EXPORT_SYMBOL(__iounmap_at);
56
57void __iomem *__ioremap_caller(phys_addr_t addr, unsigned long size,
58 pgprot_t prot, void *caller)
59{
Christophe Leroy4a45b742019-08-20 14:07:19 +000060 phys_addr_t paligned, offset;
Christophe Leroyf381d572019-08-20 14:07:17 +000061 void __iomem *ret;
Christophe Leroy163918f2019-08-20 14:07:20 +000062 int err;
Christophe Leroyf381d572019-08-20 14:07:17 +000063
Christophe Leroy4a45b742019-08-20 14:07:19 +000064 /* We don't support the 4K PFN hack with ioremap */
65 if (pgprot_val(prot) & H_PAGE_4K_PFN)
66 return NULL;
67
Christophe Leroyf381d572019-08-20 14:07:17 +000068 /*
69 * Choose an address to map it to. Once the vmalloc system is running,
70 * we use it. Before that, we map using addresses going up from
71 * ioremap_bot. vmalloc will use the addresses from IOREMAP_BASE
72 * through ioremap_bot.
73 */
74 paligned = addr & PAGE_MASK;
Christophe Leroy4a45b742019-08-20 14:07:19 +000075 offset = addr & ~PAGE_MASK;
Christophe Leroyf381d572019-08-20 14:07:17 +000076 size = PAGE_ALIGN(addr + size) - paligned;
77
78 if (size == 0 || paligned == 0)
79 return NULL;
80
Christophe Leroy163918f2019-08-20 14:07:20 +000081 if (slab_is_available())
Christophe Leroy4a45b742019-08-20 14:07:19 +000082 return do_ioremap(paligned, offset, size, prot, caller);
Christophe Leroyf381d572019-08-20 14:07:17 +000083
Christophe Leroyd538aad2019-09-12 13:49:44 +000084 pr_warn("ioremap() called early from %pS. Use early_ioremap() instead\n", caller);
85
Christophe Leroy163918f2019-08-20 14:07:20 +000086 err = early_ioremap_range(ioremap_bot, paligned, size, prot);
87 if (err)
88 return NULL;
89
90 ret = (void __iomem *)ioremap_bot + offset;
91 ioremap_bot += size;
92
Christophe Leroyf381d572019-08-20 14:07:17 +000093 return ret;
94}
95
96/*
97 * Unmap an IO region and remove it from vmalloc'd list.
98 * Access to IO memory should be serialized by driver.
99 */
100void iounmap(volatile void __iomem *token)
101{
102 void *addr;
103
104 if (!slab_is_available())
105 return;
106
107 addr = (void *)((unsigned long __force)PCI_FIX_ADDR(token) & PAGE_MASK);
108
109 if ((unsigned long)addr < ioremap_bot) {
110 pr_warn("Attempt to iounmap early bolted mapping at 0x%p\n", addr);
111 return;
112 }
113 vunmap(addr);
114}
115EXPORT_SYMBOL(iounmap);