blob: f61a8c387c3e05bacb2f0cf2d3454328744573ca [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
Dan Williams182475b2015-10-26 16:55:56 -040037static void *try_ram_remap(resource_size_t offset, size_t size)
38{
Ard Biesheuvelac343e82016-03-09 14:08:32 -080039 unsigned long pfn = PHYS_PFN(offset);
Dan Williams182475b2015-10-26 16:55:56 -040040
41 /* In the simple case just return the existing linear address */
Ard Biesheuvelac343e82016-03-09 14:08:32 -080042 if (pfn_valid(pfn) && !PageHighMem(pfn_to_page(pfn)))
Dan Williams182475b2015-10-26 16:55:56 -040043 return __va(offset);
Ard Biesheuvelc269cba2016-02-22 15:02:07 +010044 return NULL; /* fallback to arch_memremap_wb */
Dan Williams182475b2015-10-26 16:55:56 -040045}
46
Dan Williams92281dee2015-08-10 23:07:06 -040047/**
48 * memremap() - remap an iomem_resource as cacheable memory
49 * @offset: iomem resource start address
50 * @size: size of remap
Brian Starkeyc907e0e2016-03-22 14:28:00 -070051 * @flags: any of MEMREMAP_WB, MEMREMAP_WT and MEMREMAP_WC
Dan Williams92281dee2015-08-10 23:07:06 -040052 *
53 * memremap() is "ioremap" for cases where it is known that the resource
54 * being mapped does not have i/o side effects and the __iomem
Brian Starkeyc907e0e2016-03-22 14:28:00 -070055 * annotation is not applicable. In the case of multiple flags, the different
56 * mapping types will be attempted in the order listed below until one of
57 * them succeeds.
Dan Williams92281dee2015-08-10 23:07:06 -040058 *
Toshi Kani1c29f252016-01-26 21:57:28 +010059 * MEMREMAP_WB - matches the default mapping for System RAM on
Dan Williams92281dee2015-08-10 23:07:06 -040060 * the architecture. This is usually a read-allocate write-back cache.
61 * Morever, if MEMREMAP_WB is specified and the requested remap region is RAM
62 * memremap() will bypass establishing a new mapping and instead return
63 * a pointer into the direct map.
64 *
65 * MEMREMAP_WT - establish a mapping whereby writes either bypass the
66 * cache or are written through to memory and never exist in a
67 * cache-dirty state with respect to program visibility. Attempts to
Toshi Kani1c29f252016-01-26 21:57:28 +010068 * map System RAM with this mapping type will fail.
Brian Starkeyc907e0e2016-03-22 14:28:00 -070069 *
70 * MEMREMAP_WC - establish a writecombine mapping, whereby writes may
71 * be coalesced together (e.g. in the CPU's write buffers), but is otherwise
72 * uncached. Attempts to map System RAM with this mapping type will fail.
Dan Williams92281dee2015-08-10 23:07:06 -040073 */
74void *memremap(resource_size_t offset, size_t size, unsigned long flags)
75{
Toshi Kani1c29f252016-01-26 21:57:28 +010076 int is_ram = region_intersects(offset, size,
77 IORESOURCE_SYSTEM_RAM, IORES_DESC_NONE);
Dan Williams92281dee2015-08-10 23:07:06 -040078 void *addr = NULL;
79
Brian Starkeycf61e2a2016-03-22 14:27:57 -070080 if (!flags)
81 return NULL;
82
Dan Williams92281dee2015-08-10 23:07:06 -040083 if (is_ram == REGION_MIXED) {
84 WARN_ONCE(1, "memremap attempted on mixed range %pa size: %#lx\n",
85 &offset, (unsigned long) size);
86 return NULL;
87 }
88
89 /* Try all mapping types requested until one returns non-NULL */
90 if (flags & MEMREMAP_WB) {
Dan Williams92281dee2015-08-10 23:07:06 -040091 /*
92 * MEMREMAP_WB is special in that it can be satisifed
93 * from the direct map. Some archs depend on the
94 * capability of memremap() to autodetect cases where
Toshi Kani1c29f252016-01-26 21:57:28 +010095 * the requested range is potentially in System RAM.
Dan Williams92281dee2015-08-10 23:07:06 -040096 */
97 if (is_ram == REGION_INTERSECTS)
Dan Williams182475b2015-10-26 16:55:56 -040098 addr = try_ram_remap(offset, size);
99 if (!addr)
Ard Biesheuvelc269cba2016-02-22 15:02:07 +0100100 addr = arch_memremap_wb(offset, size);
Dan Williams92281dee2015-08-10 23:07:06 -0400101 }
102
103 /*
Brian Starkeycf61e2a2016-03-22 14:27:57 -0700104 * If we don't have a mapping yet and other request flags are
105 * present then we will be attempting to establish a new virtual
Dan Williams92281dee2015-08-10 23:07:06 -0400106 * address mapping. Enforce that this mapping is not aliasing
Toshi Kani1c29f252016-01-26 21:57:28 +0100107 * System RAM.
Dan Williams92281dee2015-08-10 23:07:06 -0400108 */
Brian Starkeycf61e2a2016-03-22 14:27:57 -0700109 if (!addr && is_ram == REGION_INTERSECTS && flags != MEMREMAP_WB) {
Dan Williams92281dee2015-08-10 23:07:06 -0400110 WARN_ONCE(1, "memremap attempted on ram %pa size: %#lx\n",
111 &offset, (unsigned long) size);
112 return NULL;
113 }
114
Brian Starkeycf61e2a2016-03-22 14:27:57 -0700115 if (!addr && (flags & MEMREMAP_WT))
Dan Williams92281dee2015-08-10 23:07:06 -0400116 addr = ioremap_wt(offset, size);
Dan Williams92281dee2015-08-10 23:07:06 -0400117
Brian Starkeyc907e0e2016-03-22 14:28:00 -0700118 if (!addr && (flags & MEMREMAP_WC))
119 addr = ioremap_wc(offset, size);
120
Dan Williams92281dee2015-08-10 23:07:06 -0400121 return addr;
122}
123EXPORT_SYMBOL(memremap);
124
125void memunmap(void *addr)
126{
127 if (is_vmalloc_addr(addr))
128 iounmap((void __iomem *) addr);
129}
130EXPORT_SYMBOL(memunmap);
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400131
132static void devm_memremap_release(struct device *dev, void *res)
133{
Toshi Kani9273a8b2016-02-17 13:11:29 -0800134 memunmap(*(void **)res);
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400135}
136
137static int devm_memremap_match(struct device *dev, void *res, void *match_data)
138{
139 return *(void **)res == match_data;
140}
141
142void *devm_memremap(struct device *dev, resource_size_t offset,
143 size_t size, unsigned long flags)
144{
145 void **ptr, *addr;
146
Dan Williams538ea4a2015-10-05 20:35:56 -0400147 ptr = devres_alloc_node(devm_memremap_release, sizeof(*ptr), GFP_KERNEL,
148 dev_to_node(dev));
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400149 if (!ptr)
Dan Williamsb36f4762015-09-15 02:42:20 -0400150 return ERR_PTR(-ENOMEM);
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400151
152 addr = memremap(offset, size, flags);
153 if (addr) {
154 *ptr = addr;
155 devres_add(dev, ptr);
Toshi Kani93f834d2016-02-20 14:32:24 -0800156 } else {
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400157 devres_free(ptr);
Toshi Kani93f834d2016-02-20 14:32:24 -0800158 return ERR_PTR(-ENXIO);
159 }
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400160
161 return addr;
162}
163EXPORT_SYMBOL(devm_memremap);
164
165void devm_memunmap(struct device *dev, void *addr)
166{
Dan Williamsd7413142015-09-15 02:37:48 -0400167 WARN_ON(devres_release(dev, devm_memremap_release,
168 devm_memremap_match, addr));
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -0400169}
170EXPORT_SYMBOL(devm_memunmap);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200171
172#ifdef CONFIG_ZONE_DEVICE
Dan Williams9476df72016-01-15 16:56:19 -0800173static DEFINE_MUTEX(pgmap_lock);
174static RADIX_TREE(pgmap_radix, GFP_KERNEL);
175#define SECTION_MASK ~((1UL << PA_SECTION_SHIFT) - 1)
176#define SECTION_SIZE (1UL << PA_SECTION_SHIFT)
177
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200178struct page_map {
179 struct resource res;
Dan Williams9476df72016-01-15 16:56:19 -0800180 struct percpu_ref *ref;
181 struct dev_pagemap pgmap;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800182 struct vmem_altmap altmap;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200183};
184
Dan Williams3565fce2016-01-15 16:56:55 -0800185void get_zone_device_page(struct page *page)
186{
187 percpu_ref_get(page->pgmap->ref);
188}
189EXPORT_SYMBOL(get_zone_device_page);
190
191void put_zone_device_page(struct page *page)
192{
193 put_dev_pagemap(page->pgmap);
194}
195EXPORT_SYMBOL(put_zone_device_page);
196
Jan H. Schönherr8f7cf88d2018-02-23 14:06:10 -0800197static void pgmap_radix_release(struct resource *res, resource_size_t end_key)
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);
Jan H. Schönherr8f7cf88d2018-02-23 14:06:10 -0800206 for (key = res->start; key <= res->end; key += SECTION_SIZE) {
207 if (key >= end_key)
208 break;
Dan Williams9476df72016-01-15 16:56:19 -0800209 radix_tree_delete(&pgmap_radix, key >> PA_SECTION_SHIFT);
Jan H. Schönherr8f7cf88d2018-02-23 14:06:10 -0800210 }
Dan Williams9476df72016-01-15 16:56:19 -0800211 mutex_unlock(&pgmap_lock);
212}
213
Dan Williams5c2c2582016-01-15 16:56:49 -0800214static unsigned long pfn_first(struct page_map *page_map)
215{
216 struct dev_pagemap *pgmap = &page_map->pgmap;
217 const struct resource *res = &page_map->res;
218 struct vmem_altmap *altmap = pgmap->altmap;
219 unsigned long pfn;
220
221 pfn = res->start >> PAGE_SHIFT;
222 if (altmap)
223 pfn += vmem_altmap_offset(altmap);
224 return pfn;
225}
226
227static unsigned long pfn_end(struct page_map *page_map)
228{
229 const struct resource *res = &page_map->res;
230
231 return (res->start + resource_size(res)) >> PAGE_SHIFT;
232}
233
234#define for_each_device_pfn(pfn, map) \
235 for (pfn = pfn_first(map); pfn < pfn_end(map); pfn++)
236
Dan Williams9476df72016-01-15 16:56:19 -0800237static void devm_memremap_pages_release(struct device *dev, void *data)
238{
239 struct page_map *page_map = data;
240 struct resource *res = &page_map->res;
241 resource_size_t align_start, align_size;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800242 struct dev_pagemap *pgmap = &page_map->pgmap;
Dan Williams9476df72016-01-15 16:56:19 -0800243
Dan Williams5c2c2582016-01-15 16:56:49 -0800244 if (percpu_ref_tryget_live(pgmap->ref)) {
245 dev_WARN(dev, "%s: page mapping is still live!\n", __func__);
246 percpu_ref_put(pgmap->ref);
247 }
248
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200249 /* pages are dead and unused, undo the arch mapping */
Dan Williams9476df72016-01-15 16:56:19 -0800250 align_start = res->start & ~(SECTION_SIZE - 1);
Jan H. Schönherrcbd0c0f2018-01-19 16:27:54 -0800251 align_size = ALIGN(res->start + resource_size(res), SECTION_SIZE)
252 - align_start;
Dan Williamsf1faaec2017-02-24 14:55:45 -0800253
254 lock_device_hotplug();
Dan Williams692755b2017-01-10 16:57:36 -0800255 mem_hotplug_begin();
Dan Williams9476df72016-01-15 16:56:19 -0800256 arch_remove_memory(align_start, align_size);
Dan Williams692755b2017-01-10 16:57:36 -0800257 mem_hotplug_done();
Dan Williamsf1faaec2017-02-24 14:55:45 -0800258 unlock_device_hotplug();
259
Dan Williams90497712016-09-07 08:51:21 -0700260 untrack_pfn(NULL, PHYS_PFN(align_start), align_size);
Jan H. Schönherr8f7cf88d2018-02-23 14:06:10 -0800261 pgmap_radix_release(res, -1);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800262 dev_WARN_ONCE(dev, pgmap->altmap && pgmap->altmap->alloc,
263 "%s: failed to free all reserved pages\n", __func__);
Dan Williams9476df72016-01-15 16:56:19 -0800264}
265
266/* assumes rcu_read_lock() held at entry */
267struct dev_pagemap *find_dev_pagemap(resource_size_t phys)
268{
269 struct page_map *page_map;
270
271 WARN_ON_ONCE(!rcu_read_lock_held());
272
273 page_map = radix_tree_lookup(&pgmap_radix, phys >> PA_SECTION_SHIFT);
274 return page_map ? &page_map->pgmap : NULL;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200275}
276
Dan Williams4b94ffd2016-01-15 16:56:22 -0800277/**
278 * devm_memremap_pages - remap and provide memmap backing for the given resource
279 * @dev: hosting device for @res
280 * @res: "host memory" address range
Dan Williams5c2c2582016-01-15 16:56:49 -0800281 * @ref: a live per-cpu reference count
Dan Williams4b94ffd2016-01-15 16:56:22 -0800282 * @altmap: optional descriptor for allocating the memmap from @res
283 *
Dan Williams5c2c2582016-01-15 16:56:49 -0800284 * Notes:
285 * 1/ @ref must be 'live' on entry and 'dead' before devm_memunmap_pages() time
286 * (or devm release event).
287 *
288 * 2/ @res is expected to be a host memory range that could feasibly be
289 * treated as a "System RAM" range, i.e. not a device mmio range, but
290 * this is not enforced.
Dan Williams4b94ffd2016-01-15 16:56:22 -0800291 */
292void *devm_memremap_pages(struct device *dev, struct resource *res,
Dan Williams5c2c2582016-01-15 16:56:49 -0800293 struct percpu_ref *ref, struct vmem_altmap *altmap)
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200294{
Jan H. Schönherr8f7cf88d2018-02-23 14:06:10 -0800295 resource_size_t key = 0, align_start, align_size, align_end;
Dan Williams90497712016-09-07 08:51:21 -0700296 pgprot_t pgprot = PAGE_KERNEL;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800297 struct dev_pagemap *pgmap;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200298 struct page_map *page_map;
Dan Williams5f29a772016-03-09 14:08:13 -0800299 int error, nid, is_ram;
Dan Williams5c2c2582016-01-15 16:56:49 -0800300 unsigned long pfn;
Dan Williams5f29a772016-03-09 14:08:13 -0800301
302 align_start = res->start & ~(SECTION_SIZE - 1);
303 align_size = ALIGN(res->start + resource_size(res), SECTION_SIZE)
304 - align_start;
Linus Torvaldsd37a14b2016-03-14 15:15:51 -0700305 is_ram = region_intersects(align_start, align_size,
306 IORESOURCE_SYSTEM_RAM, IORES_DESC_NONE);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200307
308 if (is_ram == REGION_MIXED) {
309 WARN_ONCE(1, "%s attempted on mixed region %pr\n",
310 __func__, res);
311 return ERR_PTR(-ENXIO);
312 }
313
314 if (is_ram == REGION_INTERSECTS)
315 return __va(res->start);
316
Dan Williams5c2c2582016-01-15 16:56:49 -0800317 if (!ref)
318 return ERR_PTR(-EINVAL);
319
Dan Williams538ea4a2015-10-05 20:35:56 -0400320 page_map = devres_alloc_node(devm_memremap_pages_release,
321 sizeof(*page_map), GFP_KERNEL, dev_to_node(dev));
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200322 if (!page_map)
323 return ERR_PTR(-ENOMEM);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800324 pgmap = &page_map->pgmap;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200325
326 memcpy(&page_map->res, res, sizeof(*res));
327
Dan Williams4b94ffd2016-01-15 16:56:22 -0800328 pgmap->dev = dev;
329 if (altmap) {
330 memcpy(&page_map->altmap, altmap, sizeof(*altmap));
331 pgmap->altmap = &page_map->altmap;
332 }
Dan Williams5c2c2582016-01-15 16:56:49 -0800333 pgmap->ref = ref;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800334 pgmap->res = &page_map->res;
335
Dan Williams9476df72016-01-15 16:56:19 -0800336 mutex_lock(&pgmap_lock);
337 error = 0;
Dan Williamseb7d78c2016-01-29 21:48:34 -0800338 align_end = align_start + align_size - 1;
339 for (key = align_start; key <= align_end; key += SECTION_SIZE) {
Dan Williams9476df72016-01-15 16:56:19 -0800340 struct dev_pagemap *dup;
341
342 rcu_read_lock();
343 dup = find_dev_pagemap(key);
344 rcu_read_unlock();
345 if (dup) {
346 dev_err(dev, "%s: %pr collides with mapping for %s\n",
347 __func__, res, dev_name(dup->dev));
348 error = -EBUSY;
349 break;
350 }
351 error = radix_tree_insert(&pgmap_radix, key >> PA_SECTION_SHIFT,
352 page_map);
353 if (error) {
354 dev_err(dev, "%s: failed: %d\n", __func__, error);
355 break;
356 }
357 }
358 mutex_unlock(&pgmap_lock);
359 if (error)
360 goto err_radix;
361
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200362 nid = dev_to_node(dev);
363 if (nid < 0)
Dan Williams7eff93b2015-10-05 20:35:55 -0400364 nid = numa_mem_id();
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200365
Dan Williams90497712016-09-07 08:51:21 -0700366 error = track_pfn_remap(NULL, &pgprot, PHYS_PFN(align_start), 0,
367 align_size);
368 if (error)
369 goto err_pfn_remap;
370
Dan Williamsf1faaec2017-02-24 14:55:45 -0800371 lock_device_hotplug();
Dan Williams692755b2017-01-10 16:57:36 -0800372 mem_hotplug_begin();
Dan Williams9476df72016-01-15 16:56:19 -0800373 error = arch_add_memory(nid, align_start, align_size, true);
Dan Williams692755b2017-01-10 16:57:36 -0800374 mem_hotplug_done();
Dan Williamsf1faaec2017-02-24 14:55:45 -0800375 unlock_device_hotplug();
Dan Williams9476df72016-01-15 16:56:19 -0800376 if (error)
377 goto err_add_memory;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200378
Dan Williams5c2c2582016-01-15 16:56:49 -0800379 for_each_device_pfn(pfn, page_map) {
380 struct page *page = pfn_to_page(pfn);
381
Dan Williamsd77a1172016-03-09 14:08:10 -0800382 /*
383 * ZONE_DEVICE pages union ->lru with a ->pgmap back
384 * pointer. It is a bug if a ZONE_DEVICE page is ever
385 * freed or placed on a driver-private list. Seed the
386 * storage with LIST_POISON* values.
387 */
388 list_del(&page->lru);
Dan Williams5c2c2582016-01-15 16:56:49 -0800389 page->pgmap = pgmap;
390 }
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200391 devres_add(dev, page_map);
392 return __va(res->start);
Dan Williams9476df72016-01-15 16:56:19 -0800393
394 err_add_memory:
Dan Williams90497712016-09-07 08:51:21 -0700395 untrack_pfn(NULL, PHYS_PFN(align_start), align_size);
396 err_pfn_remap:
Dan Williams9476df72016-01-15 16:56:19 -0800397 err_radix:
Jan H. Schönherr8f7cf88d2018-02-23 14:06:10 -0800398 pgmap_radix_release(res, key);
Dan Williams9476df72016-01-15 16:56:19 -0800399 devres_free(page_map);
400 return ERR_PTR(error);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200401}
402EXPORT_SYMBOL(devm_memremap_pages);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800403
404unsigned long vmem_altmap_offset(struct vmem_altmap *altmap)
405{
406 /* number of pfns from base where pfn_to_page() is valid */
407 return altmap->reserve + altmap->free;
408}
409
410void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns)
411{
412 altmap->alloc -= nr_pfns;
413}
414
Dan Williams4b94ffd2016-01-15 16:56:22 -0800415struct vmem_altmap *to_vmem_altmap(unsigned long memmap_start)
416{
417 /*
418 * 'memmap_start' is the virtual address for the first "struct
419 * page" in this range of the vmemmap array. In the case of
Andreas Ziegler07061aa2016-03-15 14:55:33 -0700420 * CONFIG_SPARSEMEM_VMEMMAP a page_to_pfn conversion is simple
Dan Williams4b94ffd2016-01-15 16:56:22 -0800421 * pointer arithmetic, so we can perform this to_vmem_altmap()
422 * conversion without concern for the initialization state of
423 * the struct page fields.
424 */
425 struct page *page = (struct page *) memmap_start;
426 struct dev_pagemap *pgmap;
427
428 /*
Andreas Ziegler07061aa2016-03-15 14:55:33 -0700429 * Unconditionally retrieve a dev_pagemap associated with the
Dan Williams4b94ffd2016-01-15 16:56:22 -0800430 * given physical address, this is only for use in the
431 * arch_{add|remove}_memory() for setting up and tearing down
432 * the memmap.
433 */
434 rcu_read_lock();
435 pgmap = find_dev_pagemap(__pfn_to_phys(page_to_pfn(page)));
436 rcu_read_unlock();
437
438 return pgmap ? pgmap->altmap : NULL;
439}
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200440#endif /* CONFIG_ZONE_DEVICE */