2 * Copyright(c) 2015 Intel Corporation. All rights reserved.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 #include <linux/device.h>
14 #include <linux/types.h>
17 #include <linux/memory_hotplug.h>
20 /* temporary while we convert existing ioremap_cache users to memremap */
21 __weak
void __iomem
*ioremap_cache(resource_size_t offset
, unsigned long size
)
23 return ioremap(offset
, size
);
27 static void *try_ram_remap(resource_size_t offset
, size_t size
)
29 struct page
*page
= pfn_to_page(offset
>> PAGE_SHIFT
);
31 /* In the simple case just return the existing linear address */
32 if (!PageHighMem(page
))
34 return NULL
; /* fallback to ioremap_cache */
38 * memremap() - remap an iomem_resource as cacheable memory
39 * @offset: iomem resource start address
40 * @size: size of remap
41 * @flags: either MEMREMAP_WB or MEMREMAP_WT
43 * memremap() is "ioremap" for cases where it is known that the resource
44 * being mapped does not have i/o side effects and the __iomem
45 * annotation is not applicable.
47 * MEMREMAP_WB - matches the default mapping for "System RAM" on
48 * the architecture. This is usually a read-allocate write-back cache.
49 * Morever, if MEMREMAP_WB is specified and the requested remap region is RAM
50 * memremap() will bypass establishing a new mapping and instead return
51 * a pointer into the direct map.
53 * MEMREMAP_WT - establish a mapping whereby writes either bypass the
54 * cache or are written through to memory and never exist in a
55 * cache-dirty state with respect to program visibility. Attempts to
56 * map "System RAM" with this mapping type will fail.
58 void *memremap(resource_size_t offset
, size_t size
, unsigned long flags
)
60 int is_ram
= region_intersects(offset
, size
, "System RAM");
63 if (is_ram
== REGION_MIXED
) {
64 WARN_ONCE(1, "memremap attempted on mixed range %pa size: %#lx\n",
65 &offset
, (unsigned long) size
);
69 /* Try all mapping types requested until one returns non-NULL */
70 if (flags
& MEMREMAP_WB
) {
71 flags
&= ~MEMREMAP_WB
;
73 * MEMREMAP_WB is special in that it can be satisifed
74 * from the direct map. Some archs depend on the
75 * capability of memremap() to autodetect cases where
76 * the requested range is potentially in "System RAM"
78 if (is_ram
== REGION_INTERSECTS
)
79 addr
= try_ram_remap(offset
, size
);
81 addr
= ioremap_cache(offset
, size
);
85 * If we don't have a mapping yet and more request flags are
86 * pending then we will be attempting to establish a new virtual
87 * address mapping. Enforce that this mapping is not aliasing
90 if (!addr
&& is_ram
== REGION_INTERSECTS
&& flags
) {
91 WARN_ONCE(1, "memremap attempted on ram %pa size: %#lx\n",
92 &offset
, (unsigned long) size
);
96 if (!addr
&& (flags
& MEMREMAP_WT
)) {
97 flags
&= ~MEMREMAP_WT
;
98 addr
= ioremap_wt(offset
, size
);
103 EXPORT_SYMBOL(memremap
);
105 void memunmap(void *addr
)
107 if (is_vmalloc_addr(addr
))
108 iounmap((void __iomem
*) addr
);
110 EXPORT_SYMBOL(memunmap
);
112 static void devm_memremap_release(struct device
*dev
, void *res
)
117 static int devm_memremap_match(struct device
*dev
, void *res
, void *match_data
)
119 return *(void **)res
== match_data
;
122 void *devm_memremap(struct device
*dev
, resource_size_t offset
,
123 size_t size
, unsigned long flags
)
127 ptr
= devres_alloc_node(devm_memremap_release
, sizeof(*ptr
), GFP_KERNEL
,
130 return ERR_PTR(-ENOMEM
);
132 addr
= memremap(offset
, size
, flags
);
135 devres_add(dev
, ptr
);
141 EXPORT_SYMBOL(devm_memremap
);
143 void devm_memunmap(struct device
*dev
, void *addr
)
145 WARN_ON(devres_release(dev
, devm_memremap_release
,
146 devm_memremap_match
, addr
));
148 EXPORT_SYMBOL(devm_memunmap
);
150 #ifdef CONFIG_ZONE_DEVICE
155 static void devm_memremap_pages_release(struct device
*dev
, void *res
)
157 struct page_map
*page_map
= res
;
159 /* pages are dead and unused, undo the arch mapping */
160 arch_remove_memory(page_map
->res
.start
, resource_size(&page_map
->res
));
163 void *devm_memremap_pages(struct device
*dev
, struct resource
*res
)
165 int is_ram
= region_intersects(res
->start
, resource_size(res
),
167 struct page_map
*page_map
;
170 if (is_ram
== REGION_MIXED
) {
171 WARN_ONCE(1, "%s attempted on mixed region %pr\n",
173 return ERR_PTR(-ENXIO
);
176 if (is_ram
== REGION_INTERSECTS
)
177 return __va(res
->start
);
179 page_map
= devres_alloc_node(devm_memremap_pages_release
,
180 sizeof(*page_map
), GFP_KERNEL
, dev_to_node(dev
));
182 return ERR_PTR(-ENOMEM
);
184 memcpy(&page_map
->res
, res
, sizeof(*res
));
186 nid
= dev_to_node(dev
);
190 error
= arch_add_memory(nid
, res
->start
, resource_size(res
), true);
192 devres_free(page_map
);
193 return ERR_PTR(error
);
196 devres_add(dev
, page_map
);
197 return __va(res
->start
);
199 EXPORT_SYMBOL(devm_memremap_pages
);
200 #endif /* CONFIG_ZONE_DEVICE */