blob: 778191e3e8879e0ed1953a31d4708a61143f3b64 [file] [log] [blame]
Dan Williams92281dee2015-08-10 23:07:06 -04001/*
2 * Copyright(c) 2015 Intel Corporation. All rights reserved.
3 *
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.
7 *
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.
12 */
Dan Williams9476df72016-01-15 16:56:19 -080013#include <linux/radix-tree.h>
14#include <linux/memremap.h>
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -040015#include <linux/device.h>
Dan Williams92281dee2015-08-10 23:07:06 -040016#include <linux/types.h>
Dan Williams34c0fd52016-01-15 16:56:14 -080017#include <linux/pfn_t.h>
Dan Williams92281dee2015-08-10 23:07:06 -040018#include <linux/io.h>
19#include <linux/mm.h>
Christoph Hellwig41e94a82015-08-17 16:00:35 +020020#include <linux/memory_hotplug.h>
Dan Williams92281dee2015-08-10 23:07:06 -040021
22#ifndef ioremap_cache
23/* temporary while we convert existing ioremap_cache users to memremap */
24__weak void __iomem *ioremap_cache(resource_size_t offset, unsigned long size)
25{
26 return ioremap(offset, size);
27}
28#endif
29
Dan Williams182475b2015-10-26 16:55:56 -040030static void *try_ram_remap(resource_size_t offset, size_t size)
31{
32 struct page *page = pfn_to_page(offset >> PAGE_SHIFT);
33
34 /* In the simple case just return the existing linear address */
35 if (!PageHighMem(page))
36 return __va(offset);
37 return NULL; /* fallback to ioremap_cache */
38}
39
Dan Williams92281dee2015-08-10 23:07:06 -040040/**
41 * memremap() - remap an iomem_resource as cacheable memory
42 * @offset: iomem resource start address
43 * @size: size of remap
44 * @flags: either MEMREMAP_WB or MEMREMAP_WT
45 *
46 * memremap() is "ioremap" for cases where it is known that the resource
47 * being mapped does not have i/o side effects and the __iomem
48 * annotation is not applicable.
49 *
50 * MEMREMAP_WB - matches the default mapping for "System RAM" on
51 * the architecture. This is usually a read-allocate write-back cache.
52 * Morever, if MEMREMAP_WB is specified and the requested remap region is RAM
53 * memremap() will bypass establishing a new mapping and instead return
54 * a pointer into the direct map.
55 *
56 * MEMREMAP_WT - establish a mapping whereby writes either bypass the
57 * cache or are written through to memory and never exist in a
58 * cache-dirty state with respect to program visibility. Attempts to
59 * map "System RAM" with this mapping type will fail.
60 */
61void *memremap(resource_size_t offset, size_t size, unsigned long flags)
62{
63 int is_ram = region_intersects(offset, size, "System RAM");
64 void *addr = NULL;
65
66 if (is_ram == REGION_MIXED) {
67 WARN_ONCE(1, "memremap attempted on mixed range %pa size: %#lx\n",
68 &offset, (unsigned long) size);
69 return NULL;
70 }
71
72 /* Try all mapping types requested until one returns non-NULL */
73 if (flags & MEMREMAP_WB) {
74 flags &= ~MEMREMAP_WB;
75 /*
76 * MEMREMAP_WB is special in that it can be satisifed
77 * from the direct map. Some archs depend on the
78 * capability of memremap() to autodetect cases where
79 * the requested range is potentially in "System RAM"
80 */
81 if (is_ram == REGION_INTERSECTS)
Dan Williams182475b2015-10-26 16:55:56 -040082 addr = try_ram_remap(offset, size);
83 if (!addr)
Dan Williams92281dee2015-08-10 23:07:06 -040084 addr = ioremap_cache(offset, size);
85 }
86
87 /*
88 * If we don't have a mapping yet and more request flags are
89 * pending then we will be attempting to establish a new virtual
90 * address mapping. Enforce that this mapping is not aliasing
91 * "System RAM"
92 */
93 if (!addr && is_ram == REGION_INTERSECTS && flags) {
94 WARN_ONCE(1, "memremap attempted on ram %pa size: %#lx\n",
95 &offset, (unsigned long) size);
96 return NULL;
97 }
98
99 if (!addr && (flags & MEMREMAP_WT)) {
100 flags &= ~MEMREMAP_WT;
101 addr = ioremap_wt(offset, size);
102 }
103
104 return addr;
105}
106EXPORT_SYMBOL(memremap);
107
108void memunmap(void *addr)
109{
110 if (is_vmalloc_addr(addr))
111 iounmap((void __iomem *) addr);
112}
113EXPORT_SYMBOL(memunmap);
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400114
115static void devm_memremap_release(struct device *dev, void *res)
116{
Toshi Kani9273a8b2016-02-17 13:11:29 -0800117 memunmap(*(void **)res);
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400118}
119
120static int devm_memremap_match(struct device *dev, void *res, void *match_data)
121{
122 return *(void **)res == match_data;
123}
124
125void *devm_memremap(struct device *dev, resource_size_t offset,
126 size_t size, unsigned long flags)
127{
128 void **ptr, *addr;
129
Dan Williams538ea4a2015-10-05 20:35:56 -0400130 ptr = devres_alloc_node(devm_memremap_release, sizeof(*ptr), GFP_KERNEL,
131 dev_to_node(dev));
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400132 if (!ptr)
Dan Williamsb36f4762015-09-15 02:42:20 -0400133 return ERR_PTR(-ENOMEM);
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400134
135 addr = memremap(offset, size, flags);
136 if (addr) {
137 *ptr = addr;
138 devres_add(dev, ptr);
Toshi Kani93f834d2016-02-20 14:32:24 -0800139 } else {
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400140 devres_free(ptr);
Toshi Kani93f834d2016-02-20 14:32:24 -0800141 return ERR_PTR(-ENXIO);
142 }
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400143
144 return addr;
145}
146EXPORT_SYMBOL(devm_memremap);
147
148void devm_memunmap(struct device *dev, void *addr)
149{
Dan Williamsd7413142015-09-15 02:37:48 -0400150 WARN_ON(devres_release(dev, devm_memremap_release,
151 devm_memremap_match, addr));
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400152}
153EXPORT_SYMBOL(devm_memunmap);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200154
Dan Williamsdb78c222016-02-11 16:13:17 -0800155pfn_t phys_to_pfn_t(phys_addr_t addr, u64 flags)
Dan Williams34c0fd52016-01-15 16:56:14 -0800156{
157 return __pfn_to_pfn_t(addr >> PAGE_SHIFT, flags);
158}
159EXPORT_SYMBOL(phys_to_pfn_t);
160
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200161#ifdef CONFIG_ZONE_DEVICE
Dan Williams9476df72016-01-15 16:56:19 -0800162static DEFINE_MUTEX(pgmap_lock);
163static RADIX_TREE(pgmap_radix, GFP_KERNEL);
164#define SECTION_MASK ~((1UL << PA_SECTION_SHIFT) - 1)
165#define SECTION_SIZE (1UL << PA_SECTION_SHIFT)
166
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200167struct page_map {
168 struct resource res;
Dan Williams9476df72016-01-15 16:56:19 -0800169 struct percpu_ref *ref;
170 struct dev_pagemap pgmap;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800171 struct vmem_altmap altmap;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200172};
173
Dan Williams3565fce2016-01-15 16:56:55 -0800174void get_zone_device_page(struct page *page)
175{
176 percpu_ref_get(page->pgmap->ref);
177}
178EXPORT_SYMBOL(get_zone_device_page);
179
180void put_zone_device_page(struct page *page)
181{
182 put_dev_pagemap(page->pgmap);
183}
184EXPORT_SYMBOL(put_zone_device_page);
185
Dan Williams9476df72016-01-15 16:56:19 -0800186static void pgmap_radix_release(struct resource *res)
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200187{
Dan Williamseb7d78c2016-01-29 21:48:34 -0800188 resource_size_t key, align_start, align_size, align_end;
189
190 align_start = res->start & ~(SECTION_SIZE - 1);
191 align_size = ALIGN(resource_size(res), SECTION_SIZE);
192 align_end = align_start + align_size - 1;
Dan Williams9476df72016-01-15 16:56:19 -0800193
194 mutex_lock(&pgmap_lock);
195 for (key = res->start; key <= res->end; key += SECTION_SIZE)
196 radix_tree_delete(&pgmap_radix, key >> PA_SECTION_SHIFT);
197 mutex_unlock(&pgmap_lock);
198}
199
Dan Williams5c2c2582016-01-15 16:56:49 -0800200static unsigned long pfn_first(struct page_map *page_map)
201{
202 struct dev_pagemap *pgmap = &page_map->pgmap;
203 const struct resource *res = &page_map->res;
204 struct vmem_altmap *altmap = pgmap->altmap;
205 unsigned long pfn;
206
207 pfn = res->start >> PAGE_SHIFT;
208 if (altmap)
209 pfn += vmem_altmap_offset(altmap);
210 return pfn;
211}
212
213static unsigned long pfn_end(struct page_map *page_map)
214{
215 const struct resource *res = &page_map->res;
216
217 return (res->start + resource_size(res)) >> PAGE_SHIFT;
218}
219
220#define for_each_device_pfn(pfn, map) \
221 for (pfn = pfn_first(map); pfn < pfn_end(map); pfn++)
222
Dan Williams9476df72016-01-15 16:56:19 -0800223static void devm_memremap_pages_release(struct device *dev, void *data)
224{
225 struct page_map *page_map = data;
226 struct resource *res = &page_map->res;
227 resource_size_t align_start, align_size;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800228 struct dev_pagemap *pgmap = &page_map->pgmap;
Dan Williams9476df72016-01-15 16:56:19 -0800229
Dan Williams5c2c2582016-01-15 16:56:49 -0800230 if (percpu_ref_tryget_live(pgmap->ref)) {
231 dev_WARN(dev, "%s: page mapping is still live!\n", __func__);
232 percpu_ref_put(pgmap->ref);
233 }
234
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200235 /* pages are dead and unused, undo the arch mapping */
Dan Williams9476df72016-01-15 16:56:19 -0800236 align_start = res->start & ~(SECTION_SIZE - 1);
237 align_size = ALIGN(resource_size(res), SECTION_SIZE);
238 arch_remove_memory(align_start, align_size);
Dan Williamseb7d78c2016-01-29 21:48:34 -0800239 pgmap_radix_release(res);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800240 dev_WARN_ONCE(dev, pgmap->altmap && pgmap->altmap->alloc,
241 "%s: failed to free all reserved pages\n", __func__);
Dan Williams9476df72016-01-15 16:56:19 -0800242}
243
244/* assumes rcu_read_lock() held at entry */
245struct dev_pagemap *find_dev_pagemap(resource_size_t phys)
246{
247 struct page_map *page_map;
248
249 WARN_ON_ONCE(!rcu_read_lock_held());
250
251 page_map = radix_tree_lookup(&pgmap_radix, phys >> PA_SECTION_SHIFT);
252 return page_map ? &page_map->pgmap : NULL;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200253}
254
Dan Williams4b94ffd2016-01-15 16:56:22 -0800255/**
256 * devm_memremap_pages - remap and provide memmap backing for the given resource
257 * @dev: hosting device for @res
258 * @res: "host memory" address range
Dan Williams5c2c2582016-01-15 16:56:49 -0800259 * @ref: a live per-cpu reference count
Dan Williams4b94ffd2016-01-15 16:56:22 -0800260 * @altmap: optional descriptor for allocating the memmap from @res
261 *
Dan Williams5c2c2582016-01-15 16:56:49 -0800262 * Notes:
263 * 1/ @ref must be 'live' on entry and 'dead' before devm_memunmap_pages() time
264 * (or devm release event).
265 *
266 * 2/ @res is expected to be a host memory range that could feasibly be
267 * treated as a "System RAM" range, i.e. not a device mmio range, but
268 * this is not enforced.
Dan Williams4b94ffd2016-01-15 16:56:22 -0800269 */
270void *devm_memremap_pages(struct device *dev, struct resource *res,
Dan Williams5c2c2582016-01-15 16:56:49 -0800271 struct percpu_ref *ref, struct vmem_altmap *altmap)
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200272{
273 int is_ram = region_intersects(res->start, resource_size(res),
274 "System RAM");
Dan Williamseb7d78c2016-01-29 21:48:34 -0800275 resource_size_t key, align_start, align_size, align_end;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800276 struct dev_pagemap *pgmap;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200277 struct page_map *page_map;
Dan Williams5c2c2582016-01-15 16:56:49 -0800278 unsigned long pfn;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200279 int error, nid;
280
281 if (is_ram == REGION_MIXED) {
282 WARN_ONCE(1, "%s attempted on mixed region %pr\n",
283 __func__, res);
284 return ERR_PTR(-ENXIO);
285 }
286
287 if (is_ram == REGION_INTERSECTS)
288 return __va(res->start);
289
Dan Williams4b94ffd2016-01-15 16:56:22 -0800290 if (altmap && !IS_ENABLED(CONFIG_SPARSEMEM_VMEMMAP)) {
291 dev_err(dev, "%s: altmap requires CONFIG_SPARSEMEM_VMEMMAP=y\n",
292 __func__);
293 return ERR_PTR(-ENXIO);
294 }
295
Dan Williams5c2c2582016-01-15 16:56:49 -0800296 if (!ref)
297 return ERR_PTR(-EINVAL);
298
Dan Williams538ea4a2015-10-05 20:35:56 -0400299 page_map = devres_alloc_node(devm_memremap_pages_release,
300 sizeof(*page_map), GFP_KERNEL, dev_to_node(dev));
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200301 if (!page_map)
302 return ERR_PTR(-ENOMEM);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800303 pgmap = &page_map->pgmap;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200304
305 memcpy(&page_map->res, res, sizeof(*res));
306
Dan Williams4b94ffd2016-01-15 16:56:22 -0800307 pgmap->dev = dev;
308 if (altmap) {
309 memcpy(&page_map->altmap, altmap, sizeof(*altmap));
310 pgmap->altmap = &page_map->altmap;
311 }
Dan Williams5c2c2582016-01-15 16:56:49 -0800312 pgmap->ref = ref;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800313 pgmap->res = &page_map->res;
314
Dan Williams9476df72016-01-15 16:56:19 -0800315 mutex_lock(&pgmap_lock);
316 error = 0;
Dan Williamseb7d78c2016-01-29 21:48:34 -0800317 align_start = res->start & ~(SECTION_SIZE - 1);
318 align_size = ALIGN(resource_size(res), SECTION_SIZE);
319 align_end = align_start + align_size - 1;
320 for (key = align_start; key <= align_end; key += SECTION_SIZE) {
Dan Williams9476df72016-01-15 16:56:19 -0800321 struct dev_pagemap *dup;
322
323 rcu_read_lock();
324 dup = find_dev_pagemap(key);
325 rcu_read_unlock();
326 if (dup) {
327 dev_err(dev, "%s: %pr collides with mapping for %s\n",
328 __func__, res, dev_name(dup->dev));
329 error = -EBUSY;
330 break;
331 }
332 error = radix_tree_insert(&pgmap_radix, key >> PA_SECTION_SHIFT,
333 page_map);
334 if (error) {
335 dev_err(dev, "%s: failed: %d\n", __func__, error);
336 break;
337 }
338 }
339 mutex_unlock(&pgmap_lock);
340 if (error)
341 goto err_radix;
342
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200343 nid = dev_to_node(dev);
344 if (nid < 0)
Dan Williams7eff93b2015-10-05 20:35:55 -0400345 nid = numa_mem_id();
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200346
Dan Williams9476df72016-01-15 16:56:19 -0800347 error = arch_add_memory(nid, align_start, align_size, true);
348 if (error)
349 goto err_add_memory;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200350
Dan Williams5c2c2582016-01-15 16:56:49 -0800351 for_each_device_pfn(pfn, page_map) {
352 struct page *page = pfn_to_page(pfn);
353
Dan Williamsd77a1172016-03-09 14:08:10 -0800354 /*
355 * ZONE_DEVICE pages union ->lru with a ->pgmap back
356 * pointer. It is a bug if a ZONE_DEVICE page is ever
357 * freed or placed on a driver-private list. Seed the
358 * storage with LIST_POISON* values.
359 */
360 list_del(&page->lru);
Dan Williams5c2c2582016-01-15 16:56:49 -0800361 page->pgmap = pgmap;
362 }
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200363 devres_add(dev, page_map);
364 return __va(res->start);
Dan Williams9476df72016-01-15 16:56:19 -0800365
366 err_add_memory:
367 err_radix:
368 pgmap_radix_release(res);
369 devres_free(page_map);
370 return ERR_PTR(error);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200371}
372EXPORT_SYMBOL(devm_memremap_pages);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800373
374unsigned long vmem_altmap_offset(struct vmem_altmap *altmap)
375{
376 /* number of pfns from base where pfn_to_page() is valid */
377 return altmap->reserve + altmap->free;
378}
379
380void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns)
381{
382 altmap->alloc -= nr_pfns;
383}
384
385#ifdef CONFIG_SPARSEMEM_VMEMMAP
386struct vmem_altmap *to_vmem_altmap(unsigned long memmap_start)
387{
388 /*
389 * 'memmap_start' is the virtual address for the first "struct
390 * page" in this range of the vmemmap array. In the case of
391 * CONFIG_SPARSE_VMEMMAP a page_to_pfn conversion is simple
392 * pointer arithmetic, so we can perform this to_vmem_altmap()
393 * conversion without concern for the initialization state of
394 * the struct page fields.
395 */
396 struct page *page = (struct page *) memmap_start;
397 struct dev_pagemap *pgmap;
398
399 /*
400 * Uncoditionally retrieve a dev_pagemap associated with the
401 * given physical address, this is only for use in the
402 * arch_{add|remove}_memory() for setting up and tearing down
403 * the memmap.
404 */
405 rcu_read_lock();
406 pgmap = find_dev_pagemap(__pfn_to_phys(page_to_pfn(page)));
407 rcu_read_unlock();
408
409 return pgmap ? pgmap->altmap : NULL;
410}
411#endif /* CONFIG_SPARSEMEM_VMEMMAP */
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200412#endif /* CONFIG_ZONE_DEVICE */