blob: 2b136d4988f78a481566ac4ce37213517e2c60f8 [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>
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -040014#include <linux/device.h>
Dan Williams92281dee2015-08-10 23:07:06 -040015#include <linux/types.h>
Dan Williams34c0fd52016-01-15 16:56:14 -080016#include <linux/pfn_t.h>
Dan Williams92281dee2015-08-10 23:07:06 -040017#include <linux/io.h>
18#include <linux/mm.h>
Christoph Hellwig41e94a82015-08-17 16:00:35 +020019#include <linux/memory_hotplug.h>
Jérôme Glisse5042db42017-09-08 16:11:43 -070020#include <linux/swap.h>
21#include <linux/swapops.h>
Dan Williams92281dee2015-08-10 23:07:06 -040022
23#ifndef ioremap_cache
24/* temporary while we convert existing ioremap_cache users to memremap */
25__weak void __iomem *ioremap_cache(resource_size_t offset, unsigned long size)
26{
27 return ioremap(offset, size);
28}
29#endif
30
Ard Biesheuvelc269cba2016-02-22 15:02:07 +010031#ifndef arch_memremap_wb
32static void *arch_memremap_wb(resource_size_t offset, unsigned long size)
33{
34 return (__force void *)ioremap_cache(offset, size);
35}
36#endif
37
Tom Lendacky8f716c92017-07-17 16:10:16 -050038#ifndef arch_memremap_can_ram_remap
39static bool arch_memremap_can_ram_remap(resource_size_t offset, size_t size,
40 unsigned long flags)
41{
42 return true;
43}
44#endif
45
46static void *try_ram_remap(resource_size_t offset, size_t size,
47 unsigned long flags)
Dan Williams182475b2015-10-26 16:55:56 -040048{
Ard Biesheuvelac343e82016-03-09 14:08:32 -080049 unsigned long pfn = PHYS_PFN(offset);
Dan Williams182475b2015-10-26 16:55:56 -040050
51 /* In the simple case just return the existing linear address */
Tom Lendacky8f716c92017-07-17 16:10:16 -050052 if (pfn_valid(pfn) && !PageHighMem(pfn_to_page(pfn)) &&
53 arch_memremap_can_ram_remap(offset, size, flags))
Dan Williams182475b2015-10-26 16:55:56 -040054 return __va(offset);
Tom Lendacky8f716c92017-07-17 16:10:16 -050055
Ard Biesheuvelc269cba2016-02-22 15:02:07 +010056 return NULL; /* fallback to arch_memremap_wb */
Dan Williams182475b2015-10-26 16:55:56 -040057}
58
Dan Williams92281dee2015-08-10 23:07:06 -040059/**
60 * memremap() - remap an iomem_resource as cacheable memory
61 * @offset: iomem resource start address
62 * @size: size of remap
Tom Lendacky8f716c92017-07-17 16:10:16 -050063 * @flags: any of MEMREMAP_WB, MEMREMAP_WT, MEMREMAP_WC,
64 * MEMREMAP_ENC, MEMREMAP_DEC
Dan Williams92281dee2015-08-10 23:07:06 -040065 *
66 * memremap() is "ioremap" for cases where it is known that the resource
67 * being mapped does not have i/o side effects and the __iomem
Brian Starkeyc907e0e2016-03-22 14:28:00 -070068 * annotation is not applicable. In the case of multiple flags, the different
69 * mapping types will be attempted in the order listed below until one of
70 * them succeeds.
Dan Williams92281dee2015-08-10 23:07:06 -040071 *
Toshi Kani1c29f252016-01-26 21:57:28 +010072 * MEMREMAP_WB - matches the default mapping for System RAM on
Dan Williams92281dee2015-08-10 23:07:06 -040073 * the architecture. This is usually a read-allocate write-back cache.
74 * Morever, if MEMREMAP_WB is specified and the requested remap region is RAM
75 * memremap() will bypass establishing a new mapping and instead return
76 * a pointer into the direct map.
77 *
78 * MEMREMAP_WT - establish a mapping whereby writes either bypass the
79 * cache or are written through to memory and never exist in a
80 * cache-dirty state with respect to program visibility. Attempts to
Toshi Kani1c29f252016-01-26 21:57:28 +010081 * map System RAM with this mapping type will fail.
Brian Starkeyc907e0e2016-03-22 14:28:00 -070082 *
83 * MEMREMAP_WC - establish a writecombine mapping, whereby writes may
84 * be coalesced together (e.g. in the CPU's write buffers), but is otherwise
85 * uncached. Attempts to map System RAM with this mapping type will fail.
Dan Williams92281dee2015-08-10 23:07:06 -040086 */
87void *memremap(resource_size_t offset, size_t size, unsigned long flags)
88{
Toshi Kani1c29f252016-01-26 21:57:28 +010089 int is_ram = region_intersects(offset, size,
90 IORESOURCE_SYSTEM_RAM, IORES_DESC_NONE);
Dan Williams92281dee2015-08-10 23:07:06 -040091 void *addr = NULL;
92
Brian Starkeycf61e2a2016-03-22 14:27:57 -070093 if (!flags)
94 return NULL;
95
Dan Williams92281dee2015-08-10 23:07:06 -040096 if (is_ram == REGION_MIXED) {
97 WARN_ONCE(1, "memremap attempted on mixed range %pa size: %#lx\n",
98 &offset, (unsigned long) size);
99 return NULL;
100 }
101
102 /* Try all mapping types requested until one returns non-NULL */
103 if (flags & MEMREMAP_WB) {
Dan Williams92281dee2015-08-10 23:07:06 -0400104 /*
105 * MEMREMAP_WB is special in that it can be satisifed
106 * from the direct map. Some archs depend on the
107 * capability of memremap() to autodetect cases where
Toshi Kani1c29f252016-01-26 21:57:28 +0100108 * the requested range is potentially in System RAM.
Dan Williams92281dee2015-08-10 23:07:06 -0400109 */
110 if (is_ram == REGION_INTERSECTS)
Tom Lendacky8f716c92017-07-17 16:10:16 -0500111 addr = try_ram_remap(offset, size, flags);
Dan Williams182475b2015-10-26 16:55:56 -0400112 if (!addr)
Ard Biesheuvelc269cba2016-02-22 15:02:07 +0100113 addr = arch_memremap_wb(offset, size);
Dan Williams92281dee2015-08-10 23:07:06 -0400114 }
115
116 /*
Brian Starkeycf61e2a2016-03-22 14:27:57 -0700117 * If we don't have a mapping yet and other request flags are
118 * present then we will be attempting to establish a new virtual
Dan Williams92281dee2015-08-10 23:07:06 -0400119 * address mapping. Enforce that this mapping is not aliasing
Toshi Kani1c29f252016-01-26 21:57:28 +0100120 * System RAM.
Dan Williams92281dee2015-08-10 23:07:06 -0400121 */
Brian Starkeycf61e2a2016-03-22 14:27:57 -0700122 if (!addr && is_ram == REGION_INTERSECTS && flags != MEMREMAP_WB) {
Dan Williams92281dee2015-08-10 23:07:06 -0400123 WARN_ONCE(1, "memremap attempted on ram %pa size: %#lx\n",
124 &offset, (unsigned long) size);
125 return NULL;
126 }
127
Brian Starkeycf61e2a2016-03-22 14:27:57 -0700128 if (!addr && (flags & MEMREMAP_WT))
Dan Williams92281dee2015-08-10 23:07:06 -0400129 addr = ioremap_wt(offset, size);
Dan Williams92281dee2015-08-10 23:07:06 -0400130
Brian Starkeyc907e0e2016-03-22 14:28:00 -0700131 if (!addr && (flags & MEMREMAP_WC))
132 addr = ioremap_wc(offset, size);
133
Dan Williams92281dee2015-08-10 23:07:06 -0400134 return addr;
135}
136EXPORT_SYMBOL(memremap);
137
138void memunmap(void *addr)
139{
140 if (is_vmalloc_addr(addr))
141 iounmap((void __iomem *) addr);
142}
143EXPORT_SYMBOL(memunmap);
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400144
145static void devm_memremap_release(struct device *dev, void *res)
146{
Toshi Kani9273a8b2016-02-17 13:11:29 -0800147 memunmap(*(void **)res);
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400148}
149
150static int devm_memremap_match(struct device *dev, void *res, void *match_data)
151{
152 return *(void **)res == match_data;
153}
154
155void *devm_memremap(struct device *dev, resource_size_t offset,
156 size_t size, unsigned long flags)
157{
158 void **ptr, *addr;
159
Dan Williams538ea4a2015-10-05 20:35:56 -0400160 ptr = devres_alloc_node(devm_memremap_release, sizeof(*ptr), GFP_KERNEL,
161 dev_to_node(dev));
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400162 if (!ptr)
Dan Williamsb36f4762015-09-15 02:42:20 -0400163 return ERR_PTR(-ENOMEM);
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400164
165 addr = memremap(offset, size, flags);
166 if (addr) {
167 *ptr = addr;
168 devres_add(dev, ptr);
Toshi Kani93f834d2016-02-20 14:32:24 -0800169 } else {
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400170 devres_free(ptr);
Toshi Kani93f834d2016-02-20 14:32:24 -0800171 return ERR_PTR(-ENXIO);
172 }
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400173
174 return addr;
175}
176EXPORT_SYMBOL(devm_memremap);
177
178void devm_memunmap(struct device *dev, void *addr)
179{
Dan Williamsd7413142015-09-15 02:37:48 -0400180 WARN_ON(devres_release(dev, devm_memremap_release,
181 devm_memremap_match, addr));
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400182}
183EXPORT_SYMBOL(devm_memunmap);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200184
185#ifdef CONFIG_ZONE_DEVICE
Dan Williams9476df72016-01-15 16:56:19 -0800186static DEFINE_MUTEX(pgmap_lock);
187static RADIX_TREE(pgmap_radix, GFP_KERNEL);
188#define SECTION_MASK ~((1UL << PA_SECTION_SHIFT) - 1)
189#define SECTION_SIZE (1UL << PA_SECTION_SHIFT)
190
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200191struct page_map {
192 struct resource res;
Dan Williams9476df72016-01-15 16:56:19 -0800193 struct percpu_ref *ref;
194 struct dev_pagemap pgmap;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800195 struct vmem_altmap altmap;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200196};
197
Dan Williamsab1b5972017-09-06 16:24:13 -0700198static unsigned long order_at(struct resource *res, unsigned long pgoff)
199{
200 unsigned long phys_pgoff = PHYS_PFN(res->start) + pgoff;
201 unsigned long nr_pages, mask;
202
203 nr_pages = PHYS_PFN(resource_size(res));
204 if (nr_pages == pgoff)
205 return ULONG_MAX;
206
207 /*
208 * What is the largest aligned power-of-2 range available from
209 * this resource pgoff to the end of the resource range,
210 * considering the alignment of the current pgoff?
211 */
212 mask = phys_pgoff | rounddown_pow_of_two(nr_pages - pgoff);
213 if (!mask)
214 return ULONG_MAX;
215
216 return find_first_bit(&mask, BITS_PER_LONG);
217}
218
219#define foreach_order_pgoff(res, order, pgoff) \
220 for (pgoff = 0, order = order_at((res), pgoff); order < ULONG_MAX; \
221 pgoff += 1UL << order, order = order_at((res), pgoff))
222
Jérôme Glisse5042db42017-09-08 16:11:43 -0700223#if IS_ENABLED(CONFIG_DEVICE_PRIVATE)
224int device_private_entry_fault(struct vm_area_struct *vma,
225 unsigned long addr,
226 swp_entry_t entry,
227 unsigned int flags,
228 pmd_t *pmdp)
229{
230 struct page *page = device_private_entry_to_page(entry);
231
232 /*
233 * The page_fault() callback must migrate page back to system memory
234 * so that CPU can access it. This might fail for various reasons
235 * (device issue, device was unsafely unplugged, ...). When such
236 * error conditions happen, the callback must return VM_FAULT_SIGBUS.
237 *
238 * Note that because memory cgroup charges are accounted to the device
239 * memory, this should never fail because of memory restrictions (but
240 * allocation of regular system page might still fail because we are
241 * out of memory).
242 *
243 * There is a more in-depth description of what that callback can and
244 * cannot do, in include/linux/memremap.h
245 */
246 return page->pgmap->page_fault(vma, addr, page, flags, pmdp);
247}
248EXPORT_SYMBOL(device_private_entry_fault);
249#endif /* CONFIG_DEVICE_PRIVATE */
250
Jan H. Schönherr801fc192018-01-19 16:26:33 -0800251static void pgmap_radix_release(struct resource *res, unsigned long end_pgoff)
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200252{
Dan Williamsab1b5972017-09-06 16:24:13 -0700253 unsigned long pgoff, order;
Dan Williams9476df72016-01-15 16:56:19 -0800254
255 mutex_lock(&pgmap_lock);
Jan H. Schönherr801fc192018-01-19 16:26:33 -0800256 foreach_order_pgoff(res, order, pgoff) {
257 if (pgoff >= end_pgoff)
258 break;
Dan Williamsab1b5972017-09-06 16:24:13 -0700259 radix_tree_delete(&pgmap_radix, PHYS_PFN(res->start) + pgoff);
Jan H. Schönherr801fc192018-01-19 16:26:33 -0800260 }
Dan Williams9476df72016-01-15 16:56:19 -0800261 mutex_unlock(&pgmap_lock);
Dan Williamsab1b5972017-09-06 16:24:13 -0700262
263 synchronize_rcu();
Dan Williams9476df72016-01-15 16:56:19 -0800264}
265
Dan Williams5c2c2582016-01-15 16:56:49 -0800266static unsigned long pfn_first(struct page_map *page_map)
267{
268 struct dev_pagemap *pgmap = &page_map->pgmap;
269 const struct resource *res = &page_map->res;
270 struct vmem_altmap *altmap = pgmap->altmap;
271 unsigned long pfn;
272
273 pfn = res->start >> PAGE_SHIFT;
274 if (altmap)
275 pfn += vmem_altmap_offset(altmap);
276 return pfn;
277}
278
279static unsigned long pfn_end(struct page_map *page_map)
280{
281 const struct resource *res = &page_map->res;
282
283 return (res->start + resource_size(res)) >> PAGE_SHIFT;
284}
285
286#define for_each_device_pfn(pfn, map) \
287 for (pfn = pfn_first(map); pfn < pfn_end(map); pfn++)
288
Dan Williams9476df72016-01-15 16:56:19 -0800289static void devm_memremap_pages_release(struct device *dev, void *data)
290{
291 struct page_map *page_map = data;
292 struct resource *res = &page_map->res;
293 resource_size_t align_start, align_size;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800294 struct dev_pagemap *pgmap = &page_map->pgmap;
Dan Williams71389702017-04-28 10:23:37 -0700295 unsigned long pfn;
296
297 for_each_device_pfn(pfn, page_map)
298 put_page(pfn_to_page(pfn));
Dan Williams9476df72016-01-15 16:56:19 -0800299
Dan Williams5c2c2582016-01-15 16:56:49 -0800300 if (percpu_ref_tryget_live(pgmap->ref)) {
301 dev_WARN(dev, "%s: page mapping is still live!\n", __func__);
302 percpu_ref_put(pgmap->ref);
303 }
304
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200305 /* pages are dead and unused, undo the arch mapping */
Dan Williams9476df72016-01-15 16:56:19 -0800306 align_start = res->start & ~(SECTION_SIZE - 1);
Jan H. Schönherr1f21cd42018-01-19 16:27:54 -0800307 align_size = ALIGN(res->start + resource_size(res), SECTION_SIZE)
308 - align_start;
Dan Williamsb5d24fd2017-02-24 14:55:45 -0800309
Dan Williamsf931ab42017-01-10 16:57:36 -0800310 mem_hotplug_begin();
Dan Williams9476df72016-01-15 16:56:19 -0800311 arch_remove_memory(align_start, align_size);
Dan Williamsf931ab42017-01-10 16:57:36 -0800312 mem_hotplug_done();
Dan Williamsb5d24fd2017-02-24 14:55:45 -0800313
Dan Williams90497712016-09-07 08:51:21 -0700314 untrack_pfn(NULL, PHYS_PFN(align_start), align_size);
Jan H. Schönherr801fc192018-01-19 16:26:33 -0800315 pgmap_radix_release(res, -1);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800316 dev_WARN_ONCE(dev, pgmap->altmap && pgmap->altmap->alloc,
317 "%s: failed to free all reserved pages\n", __func__);
Dan Williams9476df72016-01-15 16:56:19 -0800318}
319
320/* assumes rcu_read_lock() held at entry */
321struct dev_pagemap *find_dev_pagemap(resource_size_t phys)
322{
323 struct page_map *page_map;
324
325 WARN_ON_ONCE(!rcu_read_lock_held());
326
Dan Williamsab1b5972017-09-06 16:24:13 -0700327 page_map = radix_tree_lookup(&pgmap_radix, PHYS_PFN(phys));
Dan Williams9476df72016-01-15 16:56:19 -0800328 return page_map ? &page_map->pgmap : NULL;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200329}
330
Dan Williams4b94ffd2016-01-15 16:56:22 -0800331/**
332 * devm_memremap_pages - remap and provide memmap backing for the given resource
333 * @dev: hosting device for @res
334 * @res: "host memory" address range
Dan Williams5c2c2582016-01-15 16:56:49 -0800335 * @ref: a live per-cpu reference count
Dan Williams4b94ffd2016-01-15 16:56:22 -0800336 * @altmap: optional descriptor for allocating the memmap from @res
337 *
Dan Williams5c2c2582016-01-15 16:56:49 -0800338 * Notes:
339 * 1/ @ref must be 'live' on entry and 'dead' before devm_memunmap_pages() time
Dan Williams71389702017-04-28 10:23:37 -0700340 * (or devm release event). The expected order of events is that @ref has
341 * been through percpu_ref_kill() before devm_memremap_pages_release(). The
342 * wait for the completion of all references being dropped and
343 * percpu_ref_exit() must occur after devm_memremap_pages_release().
Dan Williams5c2c2582016-01-15 16:56:49 -0800344 *
345 * 2/ @res is expected to be a host memory range that could feasibly be
346 * treated as a "System RAM" range, i.e. not a device mmio range, but
347 * this is not enforced.
Dan Williams4b94ffd2016-01-15 16:56:22 -0800348 */
349void *devm_memremap_pages(struct device *dev, struct resource *res,
Dan Williams5c2c2582016-01-15 16:56:49 -0800350 struct percpu_ref *ref, struct vmem_altmap *altmap)
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200351{
Dan Williamsab1b5972017-09-06 16:24:13 -0700352 resource_size_t align_start, align_size, align_end;
353 unsigned long pfn, pgoff, order;
Dan Williams90497712016-09-07 08:51:21 -0700354 pgprot_t pgprot = PAGE_KERNEL;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800355 struct dev_pagemap *pgmap;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200356 struct page_map *page_map;
Michal Hocko1fdcce62017-10-03 16:16:23 -0700357 int error, nid, is_ram, i = 0;
Dan Williams5f29a772016-03-09 14:08:13 -0800358
359 align_start = res->start & ~(SECTION_SIZE - 1);
360 align_size = ALIGN(res->start + resource_size(res), SECTION_SIZE)
361 - align_start;
Linus Torvaldsd37a14b2016-03-14 15:15:51 -0700362 is_ram = region_intersects(align_start, align_size,
363 IORESOURCE_SYSTEM_RAM, IORES_DESC_NONE);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200364
365 if (is_ram == REGION_MIXED) {
366 WARN_ONCE(1, "%s attempted on mixed region %pr\n",
367 __func__, res);
368 return ERR_PTR(-ENXIO);
369 }
370
371 if (is_ram == REGION_INTERSECTS)
372 return __va(res->start);
373
Dan Williams5c2c2582016-01-15 16:56:49 -0800374 if (!ref)
375 return ERR_PTR(-EINVAL);
376
Dan Williams538ea4a2015-10-05 20:35:56 -0400377 page_map = devres_alloc_node(devm_memremap_pages_release,
378 sizeof(*page_map), GFP_KERNEL, dev_to_node(dev));
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200379 if (!page_map)
380 return ERR_PTR(-ENOMEM);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800381 pgmap = &page_map->pgmap;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200382
383 memcpy(&page_map->res, res, sizeof(*res));
384
Dan Williams4b94ffd2016-01-15 16:56:22 -0800385 pgmap->dev = dev;
386 if (altmap) {
387 memcpy(&page_map->altmap, altmap, sizeof(*altmap));
388 pgmap->altmap = &page_map->altmap;
389 }
Dan Williams5c2c2582016-01-15 16:56:49 -0800390 pgmap->ref = ref;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800391 pgmap->res = &page_map->res;
Jérôme Glisse5042db42017-09-08 16:11:43 -0700392 pgmap->type = MEMORY_DEVICE_HOST;
393 pgmap->page_fault = NULL;
394 pgmap->page_free = NULL;
395 pgmap->data = NULL;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800396
Dan Williams9476df72016-01-15 16:56:19 -0800397 mutex_lock(&pgmap_lock);
398 error = 0;
Dan Williamseb7d78c2016-01-29 21:48:34 -0800399 align_end = align_start + align_size - 1;
Dan Williamsab1b5972017-09-06 16:24:13 -0700400
401 foreach_order_pgoff(res, order, pgoff) {
Dan Williams9476df72016-01-15 16:56:19 -0800402 struct dev_pagemap *dup;
403
404 rcu_read_lock();
Dan Williamsab1b5972017-09-06 16:24:13 -0700405 dup = find_dev_pagemap(res->start + PFN_PHYS(pgoff));
Dan Williams9476df72016-01-15 16:56:19 -0800406 rcu_read_unlock();
407 if (dup) {
408 dev_err(dev, "%s: %pr collides with mapping for %s\n",
409 __func__, res, dev_name(dup->dev));
410 error = -EBUSY;
411 break;
412 }
Dan Williamsab1b5972017-09-06 16:24:13 -0700413 error = __radix_tree_insert(&pgmap_radix,
414 PHYS_PFN(res->start) + pgoff, order, page_map);
Dan Williams9476df72016-01-15 16:56:19 -0800415 if (error) {
416 dev_err(dev, "%s: failed: %d\n", __func__, error);
417 break;
418 }
419 }
420 mutex_unlock(&pgmap_lock);
421 if (error)
422 goto err_radix;
423
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200424 nid = dev_to_node(dev);
425 if (nid < 0)
Dan Williams7eff93b2015-10-05 20:35:55 -0400426 nid = numa_mem_id();
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200427
Dan Williams90497712016-09-07 08:51:21 -0700428 error = track_pfn_remap(NULL, &pgprot, PHYS_PFN(align_start), 0,
429 align_size);
430 if (error)
431 goto err_pfn_remap;
432
Dan Williamsf931ab42017-01-10 16:57:36 -0800433 mem_hotplug_begin();
Michal Hocko3d79a722017-07-06 15:38:21 -0700434 error = arch_add_memory(nid, align_start, align_size, false);
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700435 if (!error)
436 move_pfn_range_to_zone(&NODE_DATA(nid)->node_zones[ZONE_DEVICE],
437 align_start >> PAGE_SHIFT,
438 align_size >> PAGE_SHIFT);
Dan Williamsf931ab42017-01-10 16:57:36 -0800439 mem_hotplug_done();
Dan Williams9476df72016-01-15 16:56:19 -0800440 if (error)
441 goto err_add_memory;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200442
Dan Williams5c2c2582016-01-15 16:56:49 -0800443 for_each_device_pfn(pfn, page_map) {
444 struct page *page = pfn_to_page(pfn);
445
Dan Williamsd77a1172016-03-09 14:08:10 -0800446 /*
447 * ZONE_DEVICE pages union ->lru with a ->pgmap back
448 * pointer. It is a bug if a ZONE_DEVICE page is ever
449 * freed or placed on a driver-private list. Seed the
450 * storage with LIST_POISON* values.
451 */
452 list_del(&page->lru);
Dan Williams5c2c2582016-01-15 16:56:49 -0800453 page->pgmap = pgmap;
Dan Williams71389702017-04-28 10:23:37 -0700454 percpu_ref_get(ref);
Michal Hocko1fdcce62017-10-03 16:16:23 -0700455 if (!(++i % 1024))
456 cond_resched();
Dan Williams5c2c2582016-01-15 16:56:49 -0800457 }
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200458 devres_add(dev, page_map);
459 return __va(res->start);
Dan Williams9476df72016-01-15 16:56:19 -0800460
461 err_add_memory:
Dan Williams90497712016-09-07 08:51:21 -0700462 untrack_pfn(NULL, PHYS_PFN(align_start), align_size);
463 err_pfn_remap:
Dan Williams9476df72016-01-15 16:56:19 -0800464 err_radix:
Jan H. Schönherr801fc192018-01-19 16:26:33 -0800465 pgmap_radix_release(res, pgoff);
Dan Williams9476df72016-01-15 16:56:19 -0800466 devres_free(page_map);
467 return ERR_PTR(error);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200468}
469EXPORT_SYMBOL(devm_memremap_pages);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800470
471unsigned long vmem_altmap_offset(struct vmem_altmap *altmap)
472{
473 /* number of pfns from base where pfn_to_page() is valid */
474 return altmap->reserve + altmap->free;
475}
476
477void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns)
478{
479 altmap->alloc -= nr_pfns;
480}
481
Dan Williams4b94ffd2016-01-15 16:56:22 -0800482struct vmem_altmap *to_vmem_altmap(unsigned long memmap_start)
483{
484 /*
485 * 'memmap_start' is the virtual address for the first "struct
486 * page" in this range of the vmemmap array. In the case of
Andreas Ziegler07061aa2016-03-15 14:55:33 -0700487 * CONFIG_SPARSEMEM_VMEMMAP a page_to_pfn conversion is simple
Dan Williams4b94ffd2016-01-15 16:56:22 -0800488 * pointer arithmetic, so we can perform this to_vmem_altmap()
489 * conversion without concern for the initialization state of
490 * the struct page fields.
491 */
492 struct page *page = (struct page *) memmap_start;
493 struct dev_pagemap *pgmap;
494
495 /*
Andreas Ziegler07061aa2016-03-15 14:55:33 -0700496 * Unconditionally retrieve a dev_pagemap associated with the
Dan Williams4b94ffd2016-01-15 16:56:22 -0800497 * given physical address, this is only for use in the
498 * arch_{add|remove}_memory() for setting up and tearing down
499 * the memmap.
500 */
501 rcu_read_lock();
502 pgmap = find_dev_pagemap(__pfn_to_phys(page_to_pfn(page)));
503 rcu_read_unlock();
504
505 return pgmap ? pgmap->altmap : NULL;
506}
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200507#endif /* CONFIG_ZONE_DEVICE */
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700508
509
Jérôme Glissedf6ad692017-09-08 16:12:24 -0700510#if IS_ENABLED(CONFIG_DEVICE_PRIVATE) || IS_ENABLED(CONFIG_DEVICE_PUBLIC)
511void put_zone_device_private_or_public_page(struct page *page)
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700512{
513 int count = page_ref_dec_return(page);
514
515 /*
516 * If refcount is 1 then page is freed and refcount is stable as nobody
517 * holds a reference on the page.
518 */
519 if (count == 1) {
520 /* Clear Active bit in case of parallel mark_page_accessed */
521 __ClearPageActive(page);
522 __ClearPageWaiters(page);
523
524 page->mapping = NULL;
Jérôme Glissec733a822017-09-08 16:11:54 -0700525 mem_cgroup_uncharge(page);
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700526
527 page->pgmap->page_free(page, page->pgmap->data);
528 } else if (!count)
529 __put_page(page);
530}
Jérôme Glissedf6ad692017-09-08 16:12:24 -0700531EXPORT_SYMBOL(put_zone_device_private_or_public_page);
532#endif /* CONFIG_DEVICE_PRIVATE || CONFIG_DEVICE_PUBLIC */