blob: 9afdc434fb490a3384d847bc50647fa3dd3ab16a [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
Ard Biesheuvelc269cba2016-02-22 15:02:07 +010030#ifndef arch_memremap_wb
31static void *arch_memremap_wb(resource_size_t offset, unsigned long size)
32{
33 return (__force void *)ioremap_cache(offset, size);
34}
35#endif
36
Tom Lendacky8f716c92017-07-17 16:10:16 -050037#ifndef arch_memremap_can_ram_remap
38static bool arch_memremap_can_ram_remap(resource_size_t offset, size_t size,
39 unsigned long flags)
40{
41 return true;
42}
43#endif
44
45static void *try_ram_remap(resource_size_t offset, size_t size,
46 unsigned long flags)
Dan Williams182475b2015-10-26 16:55:56 -040047{
Ard Biesheuvelac343e82016-03-09 14:08:32 -080048 unsigned long pfn = PHYS_PFN(offset);
Dan Williams182475b2015-10-26 16:55:56 -040049
50 /* In the simple case just return the existing linear address */
Tom Lendacky8f716c92017-07-17 16:10:16 -050051 if (pfn_valid(pfn) && !PageHighMem(pfn_to_page(pfn)) &&
52 arch_memremap_can_ram_remap(offset, size, flags))
Dan Williams182475b2015-10-26 16:55:56 -040053 return __va(offset);
Tom Lendacky8f716c92017-07-17 16:10:16 -050054
Ard Biesheuvelc269cba2016-02-22 15:02:07 +010055 return NULL; /* fallback to arch_memremap_wb */
Dan Williams182475b2015-10-26 16:55:56 -040056}
57
Dan Williams92281dee2015-08-10 23:07:06 -040058/**
59 * memremap() - remap an iomem_resource as cacheable memory
60 * @offset: iomem resource start address
61 * @size: size of remap
Tom Lendacky8f716c92017-07-17 16:10:16 -050062 * @flags: any of MEMREMAP_WB, MEMREMAP_WT, MEMREMAP_WC,
63 * MEMREMAP_ENC, MEMREMAP_DEC
Dan Williams92281dee2015-08-10 23:07:06 -040064 *
65 * memremap() is "ioremap" for cases where it is known that the resource
66 * being mapped does not have i/o side effects and the __iomem
Brian Starkeyc907e0e2016-03-22 14:28:00 -070067 * annotation is not applicable. In the case of multiple flags, the different
68 * mapping types will be attempted in the order listed below until one of
69 * them succeeds.
Dan Williams92281dee2015-08-10 23:07:06 -040070 *
Toshi Kani1c29f252016-01-26 21:57:28 +010071 * MEMREMAP_WB - matches the default mapping for System RAM on
Dan Williams92281dee2015-08-10 23:07:06 -040072 * the architecture. This is usually a read-allocate write-back cache.
73 * Morever, if MEMREMAP_WB is specified and the requested remap region is RAM
74 * memremap() will bypass establishing a new mapping and instead return
75 * a pointer into the direct map.
76 *
77 * MEMREMAP_WT - establish a mapping whereby writes either bypass the
78 * cache or are written through to memory and never exist in a
79 * cache-dirty state with respect to program visibility. Attempts to
Toshi Kani1c29f252016-01-26 21:57:28 +010080 * map System RAM with this mapping type will fail.
Brian Starkeyc907e0e2016-03-22 14:28:00 -070081 *
82 * MEMREMAP_WC - establish a writecombine mapping, whereby writes may
83 * be coalesced together (e.g. in the CPU's write buffers), but is otherwise
84 * uncached. Attempts to map System RAM with this mapping type will fail.
Dan Williams92281dee2015-08-10 23:07:06 -040085 */
86void *memremap(resource_size_t offset, size_t size, unsigned long flags)
87{
Toshi Kani1c29f252016-01-26 21:57:28 +010088 int is_ram = region_intersects(offset, size,
89 IORESOURCE_SYSTEM_RAM, IORES_DESC_NONE);
Dan Williams92281dee2015-08-10 23:07:06 -040090 void *addr = NULL;
91
Brian Starkeycf61e2a2016-03-22 14:27:57 -070092 if (!flags)
93 return NULL;
94
Dan Williams92281dee2015-08-10 23:07:06 -040095 if (is_ram == REGION_MIXED) {
96 WARN_ONCE(1, "memremap attempted on mixed range %pa size: %#lx\n",
97 &offset, (unsigned long) size);
98 return NULL;
99 }
100
101 /* Try all mapping types requested until one returns non-NULL */
102 if (flags & MEMREMAP_WB) {
Dan Williams92281dee2015-08-10 23:07:06 -0400103 /*
104 * MEMREMAP_WB is special in that it can be satisifed
105 * from the direct map. Some archs depend on the
106 * capability of memremap() to autodetect cases where
Toshi Kani1c29f252016-01-26 21:57:28 +0100107 * the requested range is potentially in System RAM.
Dan Williams92281dee2015-08-10 23:07:06 -0400108 */
109 if (is_ram == REGION_INTERSECTS)
Tom Lendacky8f716c92017-07-17 16:10:16 -0500110 addr = try_ram_remap(offset, size, flags);
Dan Williams182475b2015-10-26 16:55:56 -0400111 if (!addr)
Ard Biesheuvelc269cba2016-02-22 15:02:07 +0100112 addr = arch_memremap_wb(offset, size);
Dan Williams92281dee2015-08-10 23:07:06 -0400113 }
114
115 /*
Brian Starkeycf61e2a2016-03-22 14:27:57 -0700116 * If we don't have a mapping yet and other request flags are
117 * present then we will be attempting to establish a new virtual
Dan Williams92281dee2015-08-10 23:07:06 -0400118 * address mapping. Enforce that this mapping is not aliasing
Toshi Kani1c29f252016-01-26 21:57:28 +0100119 * System RAM.
Dan Williams92281dee2015-08-10 23:07:06 -0400120 */
Brian Starkeycf61e2a2016-03-22 14:27:57 -0700121 if (!addr && is_ram == REGION_INTERSECTS && flags != MEMREMAP_WB) {
Dan Williams92281dee2015-08-10 23:07:06 -0400122 WARN_ONCE(1, "memremap attempted on ram %pa size: %#lx\n",
123 &offset, (unsigned long) size);
124 return NULL;
125 }
126
Brian Starkeycf61e2a2016-03-22 14:27:57 -0700127 if (!addr && (flags & MEMREMAP_WT))
Dan Williams92281dee2015-08-10 23:07:06 -0400128 addr = ioremap_wt(offset, size);
Dan Williams92281dee2015-08-10 23:07:06 -0400129
Brian Starkeyc907e0e2016-03-22 14:28:00 -0700130 if (!addr && (flags & MEMREMAP_WC))
131 addr = ioremap_wc(offset, size);
132
Dan Williams92281dee2015-08-10 23:07:06 -0400133 return addr;
134}
135EXPORT_SYMBOL(memremap);
136
137void memunmap(void *addr)
138{
139 if (is_vmalloc_addr(addr))
140 iounmap((void __iomem *) addr);
141}
142EXPORT_SYMBOL(memunmap);
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400143
144static void devm_memremap_release(struct device *dev, void *res)
145{
Toshi Kani9273a8b2016-02-17 13:11:29 -0800146 memunmap(*(void **)res);
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400147}
148
149static int devm_memremap_match(struct device *dev, void *res, void *match_data)
150{
151 return *(void **)res == match_data;
152}
153
154void *devm_memremap(struct device *dev, resource_size_t offset,
155 size_t size, unsigned long flags)
156{
157 void **ptr, *addr;
158
Dan Williams538ea4a2015-10-05 20:35:56 -0400159 ptr = devres_alloc_node(devm_memremap_release, sizeof(*ptr), GFP_KERNEL,
160 dev_to_node(dev));
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400161 if (!ptr)
Dan Williamsb36f4762015-09-15 02:42:20 -0400162 return ERR_PTR(-ENOMEM);
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400163
164 addr = memremap(offset, size, flags);
165 if (addr) {
166 *ptr = addr;
167 devres_add(dev, ptr);
Toshi Kani93f834d2016-02-20 14:32:24 -0800168 } else {
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400169 devres_free(ptr);
Toshi Kani93f834d2016-02-20 14:32:24 -0800170 return ERR_PTR(-ENXIO);
171 }
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400172
173 return addr;
174}
175EXPORT_SYMBOL(devm_memremap);
176
177void devm_memunmap(struct device *dev, void *addr)
178{
Dan Williamsd7413142015-09-15 02:37:48 -0400179 WARN_ON(devres_release(dev, devm_memremap_release,
180 devm_memremap_match, addr));
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400181}
182EXPORT_SYMBOL(devm_memunmap);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200183
184#ifdef CONFIG_ZONE_DEVICE
Dan Williams9476df72016-01-15 16:56:19 -0800185static DEFINE_MUTEX(pgmap_lock);
186static RADIX_TREE(pgmap_radix, GFP_KERNEL);
187#define SECTION_MASK ~((1UL << PA_SECTION_SHIFT) - 1)
188#define SECTION_SIZE (1UL << PA_SECTION_SHIFT)
189
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200190struct page_map {
191 struct resource res;
Dan Williams9476df72016-01-15 16:56:19 -0800192 struct percpu_ref *ref;
193 struct dev_pagemap pgmap;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800194 struct vmem_altmap altmap;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200195};
196
Dan Williams9476df72016-01-15 16:56:19 -0800197static void pgmap_radix_release(struct resource *res)
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200198{
Dan Williamseb7d78c2016-01-29 21:48:34 -0800199 resource_size_t key, align_start, align_size, align_end;
200
201 align_start = res->start & ~(SECTION_SIZE - 1);
202 align_size = ALIGN(resource_size(res), SECTION_SIZE);
203 align_end = align_start + align_size - 1;
Dan Williams9476df72016-01-15 16:56:19 -0800204
205 mutex_lock(&pgmap_lock);
206 for (key = res->start; key <= res->end; key += SECTION_SIZE)
207 radix_tree_delete(&pgmap_radix, key >> PA_SECTION_SHIFT);
208 mutex_unlock(&pgmap_lock);
209}
210
Dan Williams5c2c2582016-01-15 16:56:49 -0800211static unsigned long pfn_first(struct page_map *page_map)
212{
213 struct dev_pagemap *pgmap = &page_map->pgmap;
214 const struct resource *res = &page_map->res;
215 struct vmem_altmap *altmap = pgmap->altmap;
216 unsigned long pfn;
217
218 pfn = res->start >> PAGE_SHIFT;
219 if (altmap)
220 pfn += vmem_altmap_offset(altmap);
221 return pfn;
222}
223
224static unsigned long pfn_end(struct page_map *page_map)
225{
226 const struct resource *res = &page_map->res;
227
228 return (res->start + resource_size(res)) >> PAGE_SHIFT;
229}
230
231#define for_each_device_pfn(pfn, map) \
232 for (pfn = pfn_first(map); pfn < pfn_end(map); pfn++)
233
Dan Williams9476df72016-01-15 16:56:19 -0800234static void devm_memremap_pages_release(struct device *dev, void *data)
235{
236 struct page_map *page_map = data;
237 struct resource *res = &page_map->res;
238 resource_size_t align_start, align_size;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800239 struct dev_pagemap *pgmap = &page_map->pgmap;
Dan Williams71389702017-04-28 10:23:37 -0700240 unsigned long pfn;
241
242 for_each_device_pfn(pfn, page_map)
243 put_page(pfn_to_page(pfn));
Dan Williams9476df72016-01-15 16:56:19 -0800244
Dan Williams5c2c2582016-01-15 16:56:49 -0800245 if (percpu_ref_tryget_live(pgmap->ref)) {
246 dev_WARN(dev, "%s: page mapping is still live!\n", __func__);
247 percpu_ref_put(pgmap->ref);
248 }
249
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200250 /* pages are dead and unused, undo the arch mapping */
Dan Williams9476df72016-01-15 16:56:19 -0800251 align_start = res->start & ~(SECTION_SIZE - 1);
252 align_size = ALIGN(resource_size(res), SECTION_SIZE);
Dan Williamsb5d24fd2017-02-24 14:55:45 -0800253
Dan Williamsf931ab42017-01-10 16:57:36 -0800254 mem_hotplug_begin();
Dan Williams9476df72016-01-15 16:56:19 -0800255 arch_remove_memory(align_start, align_size);
Dan Williamsf931ab42017-01-10 16:57:36 -0800256 mem_hotplug_done();
Dan Williamsb5d24fd2017-02-24 14:55:45 -0800257
Dan Williams90497712016-09-07 08:51:21 -0700258 untrack_pfn(NULL, PHYS_PFN(align_start), align_size);
Dan Williamseb7d78c2016-01-29 21:48:34 -0800259 pgmap_radix_release(res);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800260 dev_WARN_ONCE(dev, pgmap->altmap && pgmap->altmap->alloc,
261 "%s: failed to free all reserved pages\n", __func__);
Dan Williams9476df72016-01-15 16:56:19 -0800262}
263
264/* assumes rcu_read_lock() held at entry */
265struct dev_pagemap *find_dev_pagemap(resource_size_t phys)
266{
267 struct page_map *page_map;
268
269 WARN_ON_ONCE(!rcu_read_lock_held());
270
271 page_map = radix_tree_lookup(&pgmap_radix, phys >> PA_SECTION_SHIFT);
272 return page_map ? &page_map->pgmap : NULL;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200273}
274
Dan Williams4b94ffd2016-01-15 16:56:22 -0800275/**
276 * devm_memremap_pages - remap and provide memmap backing for the given resource
277 * @dev: hosting device for @res
278 * @res: "host memory" address range
Dan Williams5c2c2582016-01-15 16:56:49 -0800279 * @ref: a live per-cpu reference count
Dan Williams4b94ffd2016-01-15 16:56:22 -0800280 * @altmap: optional descriptor for allocating the memmap from @res
281 *
Dan Williams5c2c2582016-01-15 16:56:49 -0800282 * Notes:
283 * 1/ @ref must be 'live' on entry and 'dead' before devm_memunmap_pages() time
Dan Williams71389702017-04-28 10:23:37 -0700284 * (or devm release event). The expected order of events is that @ref has
285 * been through percpu_ref_kill() before devm_memremap_pages_release(). The
286 * wait for the completion of all references being dropped and
287 * percpu_ref_exit() must occur after devm_memremap_pages_release().
Dan Williams5c2c2582016-01-15 16:56:49 -0800288 *
289 * 2/ @res is expected to be a host memory range that could feasibly be
290 * treated as a "System RAM" range, i.e. not a device mmio range, but
291 * this is not enforced.
Dan Williams4b94ffd2016-01-15 16:56:22 -0800292 */
293void *devm_memremap_pages(struct device *dev, struct resource *res,
Dan Williams5c2c2582016-01-15 16:56:49 -0800294 struct percpu_ref *ref, struct vmem_altmap *altmap)
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200295{
Dan Williamseb7d78c2016-01-29 21:48:34 -0800296 resource_size_t key, align_start, align_size, align_end;
Dan Williams90497712016-09-07 08:51:21 -0700297 pgprot_t pgprot = PAGE_KERNEL;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800298 struct dev_pagemap *pgmap;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200299 struct page_map *page_map;
Dan Williams5f29a772016-03-09 14:08:13 -0800300 int error, nid, is_ram;
Dan Williams5c2c2582016-01-15 16:56:49 -0800301 unsigned long pfn;
Dan Williams5f29a772016-03-09 14:08:13 -0800302
303 align_start = res->start & ~(SECTION_SIZE - 1);
304 align_size = ALIGN(res->start + resource_size(res), SECTION_SIZE)
305 - align_start;
Linus Torvaldsd37a14bb2016-03-14 15:15:51 -0700306 is_ram = region_intersects(align_start, align_size,
307 IORESOURCE_SYSTEM_RAM, IORES_DESC_NONE);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200308
309 if (is_ram == REGION_MIXED) {
310 WARN_ONCE(1, "%s attempted on mixed region %pr\n",
311 __func__, res);
312 return ERR_PTR(-ENXIO);
313 }
314
315 if (is_ram == REGION_INTERSECTS)
316 return __va(res->start);
317
Dan Williams5c2c2582016-01-15 16:56:49 -0800318 if (!ref)
319 return ERR_PTR(-EINVAL);
320
Dan Williams538ea4a2015-10-05 20:35:56 -0400321 page_map = devres_alloc_node(devm_memremap_pages_release,
322 sizeof(*page_map), GFP_KERNEL, dev_to_node(dev));
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200323 if (!page_map)
324 return ERR_PTR(-ENOMEM);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800325 pgmap = &page_map->pgmap;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200326
327 memcpy(&page_map->res, res, sizeof(*res));
328
Dan Williams4b94ffd2016-01-15 16:56:22 -0800329 pgmap->dev = dev;
330 if (altmap) {
331 memcpy(&page_map->altmap, altmap, sizeof(*altmap));
332 pgmap->altmap = &page_map->altmap;
333 }
Dan Williams5c2c2582016-01-15 16:56:49 -0800334 pgmap->ref = ref;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800335 pgmap->res = &page_map->res;
336
Dan Williams9476df72016-01-15 16:56:19 -0800337 mutex_lock(&pgmap_lock);
338 error = 0;
Dan Williamseb7d78c2016-01-29 21:48:34 -0800339 align_end = align_start + align_size - 1;
340 for (key = align_start; key <= align_end; key += SECTION_SIZE) {
Dan Williams9476df72016-01-15 16:56:19 -0800341 struct dev_pagemap *dup;
342
343 rcu_read_lock();
344 dup = find_dev_pagemap(key);
345 rcu_read_unlock();
346 if (dup) {
347 dev_err(dev, "%s: %pr collides with mapping for %s\n",
348 __func__, res, dev_name(dup->dev));
349 error = -EBUSY;
350 break;
351 }
352 error = radix_tree_insert(&pgmap_radix, key >> PA_SECTION_SHIFT,
353 page_map);
354 if (error) {
355 dev_err(dev, "%s: failed: %d\n", __func__, error);
356 break;
357 }
358 }
359 mutex_unlock(&pgmap_lock);
360 if (error)
361 goto err_radix;
362
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200363 nid = dev_to_node(dev);
364 if (nid < 0)
Dan Williams7eff93b2015-10-05 20:35:55 -0400365 nid = numa_mem_id();
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200366
Dan Williams90497712016-09-07 08:51:21 -0700367 error = track_pfn_remap(NULL, &pgprot, PHYS_PFN(align_start), 0,
368 align_size);
369 if (error)
370 goto err_pfn_remap;
371
Dan Williamsf931ab42017-01-10 16:57:36 -0800372 mem_hotplug_begin();
Michal Hocko3d79a722017-07-06 15:38:21 -0700373 error = arch_add_memory(nid, align_start, align_size, false);
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700374 if (!error)
375 move_pfn_range_to_zone(&NODE_DATA(nid)->node_zones[ZONE_DEVICE],
376 align_start >> PAGE_SHIFT,
377 align_size >> PAGE_SHIFT);
Dan Williamsf931ab42017-01-10 16:57:36 -0800378 mem_hotplug_done();
Dan Williams9476df72016-01-15 16:56:19 -0800379 if (error)
380 goto err_add_memory;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200381
Dan Williams5c2c2582016-01-15 16:56:49 -0800382 for_each_device_pfn(pfn, page_map) {
383 struct page *page = pfn_to_page(pfn);
384
Dan Williamsd77a1172016-03-09 14:08:10 -0800385 /*
386 * ZONE_DEVICE pages union ->lru with a ->pgmap back
387 * pointer. It is a bug if a ZONE_DEVICE page is ever
388 * freed or placed on a driver-private list. Seed the
389 * storage with LIST_POISON* values.
390 */
391 list_del(&page->lru);
Dan Williams5c2c2582016-01-15 16:56:49 -0800392 page->pgmap = pgmap;
Dan Williams71389702017-04-28 10:23:37 -0700393 percpu_ref_get(ref);
Dan Williams5c2c2582016-01-15 16:56:49 -0800394 }
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200395 devres_add(dev, page_map);
396 return __va(res->start);
Dan Williams9476df72016-01-15 16:56:19 -0800397
398 err_add_memory:
Dan Williams90497712016-09-07 08:51:21 -0700399 untrack_pfn(NULL, PHYS_PFN(align_start), align_size);
400 err_pfn_remap:
Dan Williams9476df72016-01-15 16:56:19 -0800401 err_radix:
402 pgmap_radix_release(res);
403 devres_free(page_map);
404 return ERR_PTR(error);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200405}
406EXPORT_SYMBOL(devm_memremap_pages);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800407
408unsigned long vmem_altmap_offset(struct vmem_altmap *altmap)
409{
410 /* number of pfns from base where pfn_to_page() is valid */
411 return altmap->reserve + altmap->free;
412}
413
414void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns)
415{
416 altmap->alloc -= nr_pfns;
417}
418
Dan Williams4b94ffd2016-01-15 16:56:22 -0800419struct vmem_altmap *to_vmem_altmap(unsigned long memmap_start)
420{
421 /*
422 * 'memmap_start' is the virtual address for the first "struct
423 * page" in this range of the vmemmap array. In the case of
Andreas Ziegler07061aa2016-03-15 14:55:33 -0700424 * CONFIG_SPARSEMEM_VMEMMAP a page_to_pfn conversion is simple
Dan Williams4b94ffd2016-01-15 16:56:22 -0800425 * pointer arithmetic, so we can perform this to_vmem_altmap()
426 * conversion without concern for the initialization state of
427 * the struct page fields.
428 */
429 struct page *page = (struct page *) memmap_start;
430 struct dev_pagemap *pgmap;
431
432 /*
Andreas Ziegler07061aa2016-03-15 14:55:33 -0700433 * Unconditionally retrieve a dev_pagemap associated with the
Dan Williams4b94ffd2016-01-15 16:56:22 -0800434 * given physical address, this is only for use in the
435 * arch_{add|remove}_memory() for setting up and tearing down
436 * the memmap.
437 */
438 rcu_read_lock();
439 pgmap = find_dev_pagemap(__pfn_to_phys(page_to_pfn(page)));
440 rcu_read_unlock();
441
442 return pgmap ? pgmap->altmap : NULL;
443}
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200444#endif /* CONFIG_ZONE_DEVICE */