]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - kernel/memremap.c
mm/ZONE_DEVICE: new type of ZONE_DEVICE for unaddressable memory
[mirror_ubuntu-bionic-kernel.git] / kernel / memremap.c
CommitLineData
92281dee
DW
1/*
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 */
9476df7d
DW
13#include <linux/radix-tree.h>
14#include <linux/memremap.h>
7d3dcf26 15#include <linux/device.h>
92281dee 16#include <linux/types.h>
34c0fd54 17#include <linux/pfn_t.h>
92281dee
DW
18#include <linux/io.h>
19#include <linux/mm.h>
41e94a85 20#include <linux/memory_hotplug.h>
5042db43
JG
21#include <linux/swap.h>
22#include <linux/swapops.h>
92281dee
DW
23
24#ifndef ioremap_cache
25/* temporary while we convert existing ioremap_cache users to memremap */
26__weak void __iomem *ioremap_cache(resource_size_t offset, unsigned long size)
27{
28 return ioremap(offset, size);
29}
30#endif
31
c269cba3
AB
32#ifndef arch_memremap_wb
33static void *arch_memremap_wb(resource_size_t offset, unsigned long size)
34{
35 return (__force void *)ioremap_cache(offset, size);
36}
37#endif
38
8f716c9b
TL
39#ifndef arch_memremap_can_ram_remap
40static bool arch_memremap_can_ram_remap(resource_size_t offset, size_t size,
41 unsigned long flags)
42{
43 return true;
44}
45#endif
46
47static void *try_ram_remap(resource_size_t offset, size_t size,
48 unsigned long flags)
182475b7 49{
ac343e88 50 unsigned long pfn = PHYS_PFN(offset);
182475b7
DW
51
52 /* In the simple case just return the existing linear address */
8f716c9b
TL
53 if (pfn_valid(pfn) && !PageHighMem(pfn_to_page(pfn)) &&
54 arch_memremap_can_ram_remap(offset, size, flags))
182475b7 55 return __va(offset);
8f716c9b 56
c269cba3 57 return NULL; /* fallback to arch_memremap_wb */
182475b7
DW
58}
59
92281dee
DW
60/**
61 * memremap() - remap an iomem_resource as cacheable memory
62 * @offset: iomem resource start address
63 * @size: size of remap
8f716c9b
TL
64 * @flags: any of MEMREMAP_WB, MEMREMAP_WT, MEMREMAP_WC,
65 * MEMREMAP_ENC, MEMREMAP_DEC
92281dee
DW
66 *
67 * memremap() is "ioremap" for cases where it is known that the resource
68 * being mapped does not have i/o side effects and the __iomem
c907e0eb
BS
69 * annotation is not applicable. In the case of multiple flags, the different
70 * mapping types will be attempted in the order listed below until one of
71 * them succeeds.
92281dee 72 *
1c29f25b 73 * MEMREMAP_WB - matches the default mapping for System RAM on
92281dee
DW
74 * the architecture. This is usually a read-allocate write-back cache.
75 * Morever, if MEMREMAP_WB is specified and the requested remap region is RAM
76 * memremap() will bypass establishing a new mapping and instead return
77 * a pointer into the direct map.
78 *
79 * MEMREMAP_WT - establish a mapping whereby writes either bypass the
80 * cache or are written through to memory and never exist in a
81 * cache-dirty state with respect to program visibility. Attempts to
1c29f25b 82 * map System RAM with this mapping type will fail.
c907e0eb
BS
83 *
84 * MEMREMAP_WC - establish a writecombine mapping, whereby writes may
85 * be coalesced together (e.g. in the CPU's write buffers), but is otherwise
86 * uncached. Attempts to map System RAM with this mapping type will fail.
92281dee
DW
87 */
88void *memremap(resource_size_t offset, size_t size, unsigned long flags)
89{
1c29f25b
TK
90 int is_ram = region_intersects(offset, size,
91 IORESOURCE_SYSTEM_RAM, IORES_DESC_NONE);
92281dee
DW
92 void *addr = NULL;
93
cf61e2a1
BS
94 if (!flags)
95 return NULL;
96
92281dee
DW
97 if (is_ram == REGION_MIXED) {
98 WARN_ONCE(1, "memremap attempted on mixed range %pa size: %#lx\n",
99 &offset, (unsigned long) size);
100 return NULL;
101 }
102
103 /* Try all mapping types requested until one returns non-NULL */
104 if (flags & MEMREMAP_WB) {
92281dee
DW
105 /*
106 * MEMREMAP_WB is special in that it can be satisifed
107 * from the direct map. Some archs depend on the
108 * capability of memremap() to autodetect cases where
1c29f25b 109 * the requested range is potentially in System RAM.
92281dee
DW
110 */
111 if (is_ram == REGION_INTERSECTS)
8f716c9b 112 addr = try_ram_remap(offset, size, flags);
182475b7 113 if (!addr)
c269cba3 114 addr = arch_memremap_wb(offset, size);
92281dee
DW
115 }
116
117 /*
cf61e2a1
BS
118 * If we don't have a mapping yet and other request flags are
119 * present then we will be attempting to establish a new virtual
92281dee 120 * address mapping. Enforce that this mapping is not aliasing
1c29f25b 121 * System RAM.
92281dee 122 */
cf61e2a1 123 if (!addr && is_ram == REGION_INTERSECTS && flags != MEMREMAP_WB) {
92281dee
DW
124 WARN_ONCE(1, "memremap attempted on ram %pa size: %#lx\n",
125 &offset, (unsigned long) size);
126 return NULL;
127 }
128
cf61e2a1 129 if (!addr && (flags & MEMREMAP_WT))
92281dee 130 addr = ioremap_wt(offset, size);
c907e0eb
BS
131
132 if (!addr && (flags & MEMREMAP_WC))
133 addr = ioremap_wc(offset, size);
92281dee
DW
134
135 return addr;
136}
137EXPORT_SYMBOL(memremap);
138
139void memunmap(void *addr)
140{
141 if (is_vmalloc_addr(addr))
142 iounmap((void __iomem *) addr);
143}
144EXPORT_SYMBOL(memunmap);
7d3dcf26
CH
145
146static void devm_memremap_release(struct device *dev, void *res)
147{
9273a8bb 148 memunmap(*(void **)res);
7d3dcf26
CH
149}
150
151static int devm_memremap_match(struct device *dev, void *res, void *match_data)
152{
153 return *(void **)res == match_data;
154}
155
156void *devm_memremap(struct device *dev, resource_size_t offset,
157 size_t size, unsigned long flags)
158{
159 void **ptr, *addr;
160
538ea4aa
DW
161 ptr = devres_alloc_node(devm_memremap_release, sizeof(*ptr), GFP_KERNEL,
162 dev_to_node(dev));
7d3dcf26 163 if (!ptr)
b36f4761 164 return ERR_PTR(-ENOMEM);
7d3dcf26
CH
165
166 addr = memremap(offset, size, flags);
167 if (addr) {
168 *ptr = addr;
169 devres_add(dev, ptr);
93f834df 170 } else {
7d3dcf26 171 devres_free(ptr);
93f834df
TK
172 return ERR_PTR(-ENXIO);
173 }
7d3dcf26
CH
174
175 return addr;
176}
177EXPORT_SYMBOL(devm_memremap);
178
179void devm_memunmap(struct device *dev, void *addr)
180{
d741314f
DW
181 WARN_ON(devres_release(dev, devm_memremap_release,
182 devm_memremap_match, addr));
7d3dcf26
CH
183}
184EXPORT_SYMBOL(devm_memunmap);
41e94a85
CH
185
186#ifdef CONFIG_ZONE_DEVICE
9476df7d
DW
187static DEFINE_MUTEX(pgmap_lock);
188static RADIX_TREE(pgmap_radix, GFP_KERNEL);
189#define SECTION_MASK ~((1UL << PA_SECTION_SHIFT) - 1)
190#define SECTION_SIZE (1UL << PA_SECTION_SHIFT)
191
41e94a85
CH
192struct page_map {
193 struct resource res;
9476df7d
DW
194 struct percpu_ref *ref;
195 struct dev_pagemap pgmap;
4b94ffdc 196 struct vmem_altmap altmap;
41e94a85
CH
197};
198
ab1b597e 199static unsigned long order_at(struct resource *res, unsigned long pgoff)
9476df7d 200{
ab1b597e
DW
201 unsigned long phys_pgoff = PHYS_PFN(res->start) + pgoff;
202 unsigned long nr_pages, mask;
eb7d78c9 203
ab1b597e
DW
204 nr_pages = PHYS_PFN(resource_size(res));
205 if (nr_pages == pgoff)
206 return ULONG_MAX;
207
208 /*
209 * What is the largest aligned power-of-2 range available from
210 * this resource pgoff to the end of the resource range,
211 * considering the alignment of the current pgoff?
212 */
213 mask = phys_pgoff | rounddown_pow_of_two(nr_pages - pgoff);
214 if (!mask)
215 return ULONG_MAX;
216
217 return find_first_bit(&mask, BITS_PER_LONG);
218}
219
220#define foreach_order_pgoff(res, order, pgoff) \
221 for (pgoff = 0, order = order_at((res), pgoff); order < ULONG_MAX; \
222 pgoff += 1UL << order, order = order_at((res), pgoff))
223
5042db43
JG
224#if IS_ENABLED(CONFIG_DEVICE_PRIVATE)
225int device_private_entry_fault(struct vm_area_struct *vma,
226 unsigned long addr,
227 swp_entry_t entry,
228 unsigned int flags,
229 pmd_t *pmdp)
230{
231 struct page *page = device_private_entry_to_page(entry);
232
233 /*
234 * The page_fault() callback must migrate page back to system memory
235 * so that CPU can access it. This might fail for various reasons
236 * (device issue, device was unsafely unplugged, ...). When such
237 * error conditions happen, the callback must return VM_FAULT_SIGBUS.
238 *
239 * Note that because memory cgroup charges are accounted to the device
240 * memory, this should never fail because of memory restrictions (but
241 * allocation of regular system page might still fail because we are
242 * out of memory).
243 *
244 * There is a more in-depth description of what that callback can and
245 * cannot do, in include/linux/memremap.h
246 */
247 return page->pgmap->page_fault(vma, addr, page, flags, pmdp);
248}
249EXPORT_SYMBOL(device_private_entry_fault);
250#endif /* CONFIG_DEVICE_PRIVATE */
251
ab1b597e
DW
252static void pgmap_radix_release(struct resource *res)
253{
254 unsigned long pgoff, order;
9476df7d
DW
255
256 mutex_lock(&pgmap_lock);
ab1b597e
DW
257 foreach_order_pgoff(res, order, pgoff)
258 radix_tree_delete(&pgmap_radix, PHYS_PFN(res->start) + pgoff);
9476df7d 259 mutex_unlock(&pgmap_lock);
ab1b597e
DW
260
261 synchronize_rcu();
9476df7d
DW
262}
263
5c2c2587
DW
264static unsigned long pfn_first(struct page_map *page_map)
265{
266 struct dev_pagemap *pgmap = &page_map->pgmap;
267 const struct resource *res = &page_map->res;
268 struct vmem_altmap *altmap = pgmap->altmap;
269 unsigned long pfn;
270
271 pfn = res->start >> PAGE_SHIFT;
272 if (altmap)
273 pfn += vmem_altmap_offset(altmap);
274 return pfn;
275}
276
277static unsigned long pfn_end(struct page_map *page_map)
278{
279 const struct resource *res = &page_map->res;
280
281 return (res->start + resource_size(res)) >> PAGE_SHIFT;
282}
283
284#define for_each_device_pfn(pfn, map) \
285 for (pfn = pfn_first(map); pfn < pfn_end(map); pfn++)
286
9476df7d 287static void devm_memremap_pages_release(struct device *dev, void *data)
41e94a85 288{
9476df7d
DW
289 struct page_map *page_map = data;
290 struct resource *res = &page_map->res;
291 resource_size_t align_start, align_size;
4b94ffdc 292 struct dev_pagemap *pgmap = &page_map->pgmap;
71389703
DW
293 unsigned long pfn;
294
295 for_each_device_pfn(pfn, page_map)
296 put_page(pfn_to_page(pfn));
9476df7d 297
5c2c2587
DW
298 if (percpu_ref_tryget_live(pgmap->ref)) {
299 dev_WARN(dev, "%s: page mapping is still live!\n", __func__);
300 percpu_ref_put(pgmap->ref);
301 }
302
41e94a85 303 /* pages are dead and unused, undo the arch mapping */
9476df7d
DW
304 align_start = res->start & ~(SECTION_SIZE - 1);
305 align_size = ALIGN(resource_size(res), SECTION_SIZE);
b5d24fda 306
f931ab47 307 mem_hotplug_begin();
9476df7d 308 arch_remove_memory(align_start, align_size);
f931ab47 309 mem_hotplug_done();
b5d24fda 310
9049771f 311 untrack_pfn(NULL, PHYS_PFN(align_start), align_size);
eb7d78c9 312 pgmap_radix_release(res);
4b94ffdc
DW
313 dev_WARN_ONCE(dev, pgmap->altmap && pgmap->altmap->alloc,
314 "%s: failed to free all reserved pages\n", __func__);
9476df7d
DW
315}
316
317/* assumes rcu_read_lock() held at entry */
318struct dev_pagemap *find_dev_pagemap(resource_size_t phys)
319{
320 struct page_map *page_map;
321
322 WARN_ON_ONCE(!rcu_read_lock_held());
323
ab1b597e 324 page_map = radix_tree_lookup(&pgmap_radix, PHYS_PFN(phys));
9476df7d 325 return page_map ? &page_map->pgmap : NULL;
41e94a85
CH
326}
327
4b94ffdc
DW
328/**
329 * devm_memremap_pages - remap and provide memmap backing for the given resource
330 * @dev: hosting device for @res
331 * @res: "host memory" address range
5c2c2587 332 * @ref: a live per-cpu reference count
4b94ffdc
DW
333 * @altmap: optional descriptor for allocating the memmap from @res
334 *
5c2c2587
DW
335 * Notes:
336 * 1/ @ref must be 'live' on entry and 'dead' before devm_memunmap_pages() time
71389703
DW
337 * (or devm release event). The expected order of events is that @ref has
338 * been through percpu_ref_kill() before devm_memremap_pages_release(). The
339 * wait for the completion of all references being dropped and
340 * percpu_ref_exit() must occur after devm_memremap_pages_release().
5c2c2587
DW
341 *
342 * 2/ @res is expected to be a host memory range that could feasibly be
343 * treated as a "System RAM" range, i.e. not a device mmio range, but
344 * this is not enforced.
4b94ffdc
DW
345 */
346void *devm_memremap_pages(struct device *dev, struct resource *res,
5c2c2587 347 struct percpu_ref *ref, struct vmem_altmap *altmap)
41e94a85 348{
ab1b597e
DW
349 resource_size_t align_start, align_size, align_end;
350 unsigned long pfn, pgoff, order;
9049771f 351 pgprot_t pgprot = PAGE_KERNEL;
4b94ffdc 352 struct dev_pagemap *pgmap;
41e94a85 353 struct page_map *page_map;
5f29a77c 354 int error, nid, is_ram;
5f29a77c
DW
355
356 align_start = res->start & ~(SECTION_SIZE - 1);
357 align_size = ALIGN(res->start + resource_size(res), SECTION_SIZE)
358 - align_start;
d37a14bb
LT
359 is_ram = region_intersects(align_start, align_size,
360 IORESOURCE_SYSTEM_RAM, IORES_DESC_NONE);
41e94a85
CH
361
362 if (is_ram == REGION_MIXED) {
363 WARN_ONCE(1, "%s attempted on mixed region %pr\n",
364 __func__, res);
365 return ERR_PTR(-ENXIO);
366 }
367
368 if (is_ram == REGION_INTERSECTS)
369 return __va(res->start);
370
5c2c2587
DW
371 if (!ref)
372 return ERR_PTR(-EINVAL);
373
538ea4aa
DW
374 page_map = devres_alloc_node(devm_memremap_pages_release,
375 sizeof(*page_map), GFP_KERNEL, dev_to_node(dev));
41e94a85
CH
376 if (!page_map)
377 return ERR_PTR(-ENOMEM);
4b94ffdc 378 pgmap = &page_map->pgmap;
41e94a85
CH
379
380 memcpy(&page_map->res, res, sizeof(*res));
381
4b94ffdc
DW
382 pgmap->dev = dev;
383 if (altmap) {
384 memcpy(&page_map->altmap, altmap, sizeof(*altmap));
385 pgmap->altmap = &page_map->altmap;
386 }
5c2c2587 387 pgmap->ref = ref;
4b94ffdc 388 pgmap->res = &page_map->res;
5042db43
JG
389 pgmap->type = MEMORY_DEVICE_HOST;
390 pgmap->page_fault = NULL;
391 pgmap->page_free = NULL;
392 pgmap->data = NULL;
4b94ffdc 393
9476df7d
DW
394 mutex_lock(&pgmap_lock);
395 error = 0;
eb7d78c9 396 align_end = align_start + align_size - 1;
ab1b597e
DW
397
398 foreach_order_pgoff(res, order, pgoff) {
9476df7d
DW
399 struct dev_pagemap *dup;
400
401 rcu_read_lock();
ab1b597e 402 dup = find_dev_pagemap(res->start + PFN_PHYS(pgoff));
9476df7d
DW
403 rcu_read_unlock();
404 if (dup) {
405 dev_err(dev, "%s: %pr collides with mapping for %s\n",
406 __func__, res, dev_name(dup->dev));
407 error = -EBUSY;
408 break;
409 }
ab1b597e
DW
410 error = __radix_tree_insert(&pgmap_radix,
411 PHYS_PFN(res->start) + pgoff, order, page_map);
9476df7d
DW
412 if (error) {
413 dev_err(dev, "%s: failed: %d\n", __func__, error);
414 break;
415 }
416 }
417 mutex_unlock(&pgmap_lock);
418 if (error)
419 goto err_radix;
420
41e94a85
CH
421 nid = dev_to_node(dev);
422 if (nid < 0)
7eff93b7 423 nid = numa_mem_id();
41e94a85 424
9049771f
DW
425 error = track_pfn_remap(NULL, &pgprot, PHYS_PFN(align_start), 0,
426 align_size);
427 if (error)
428 goto err_pfn_remap;
429
f931ab47 430 mem_hotplug_begin();
3d79a728 431 error = arch_add_memory(nid, align_start, align_size, false);
f1dd2cd1
MH
432 if (!error)
433 move_pfn_range_to_zone(&NODE_DATA(nid)->node_zones[ZONE_DEVICE],
434 align_start >> PAGE_SHIFT,
435 align_size >> PAGE_SHIFT);
f931ab47 436 mem_hotplug_done();
9476df7d
DW
437 if (error)
438 goto err_add_memory;
41e94a85 439
5c2c2587
DW
440 for_each_device_pfn(pfn, page_map) {
441 struct page *page = pfn_to_page(pfn);
442
d77a117e
DW
443 /*
444 * ZONE_DEVICE pages union ->lru with a ->pgmap back
445 * pointer. It is a bug if a ZONE_DEVICE page is ever
446 * freed or placed on a driver-private list. Seed the
447 * storage with LIST_POISON* values.
448 */
449 list_del(&page->lru);
5c2c2587 450 page->pgmap = pgmap;
71389703 451 percpu_ref_get(ref);
5c2c2587 452 }
41e94a85
CH
453 devres_add(dev, page_map);
454 return __va(res->start);
9476df7d
DW
455
456 err_add_memory:
9049771f
DW
457 untrack_pfn(NULL, PHYS_PFN(align_start), align_size);
458 err_pfn_remap:
9476df7d
DW
459 err_radix:
460 pgmap_radix_release(res);
461 devres_free(page_map);
462 return ERR_PTR(error);
41e94a85
CH
463}
464EXPORT_SYMBOL(devm_memremap_pages);
4b94ffdc
DW
465
466unsigned long vmem_altmap_offset(struct vmem_altmap *altmap)
467{
468 /* number of pfns from base where pfn_to_page() is valid */
469 return altmap->reserve + altmap->free;
470}
471
472void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns)
473{
474 altmap->alloc -= nr_pfns;
475}
476
4b94ffdc
DW
477struct vmem_altmap *to_vmem_altmap(unsigned long memmap_start)
478{
479 /*
480 * 'memmap_start' is the virtual address for the first "struct
481 * page" in this range of the vmemmap array. In the case of
07061aab 482 * CONFIG_SPARSEMEM_VMEMMAP a page_to_pfn conversion is simple
4b94ffdc
DW
483 * pointer arithmetic, so we can perform this to_vmem_altmap()
484 * conversion without concern for the initialization state of
485 * the struct page fields.
486 */
487 struct page *page = (struct page *) memmap_start;
488 struct dev_pagemap *pgmap;
489
490 /*
07061aab 491 * Unconditionally retrieve a dev_pagemap associated with the
4b94ffdc
DW
492 * given physical address, this is only for use in the
493 * arch_{add|remove}_memory() for setting up and tearing down
494 * the memmap.
495 */
496 rcu_read_lock();
497 pgmap = find_dev_pagemap(__pfn_to_phys(page_to_pfn(page)));
498 rcu_read_unlock();
499
500 return pgmap ? pgmap->altmap : NULL;
501}
41e94a85 502#endif /* CONFIG_ZONE_DEVICE */