blob: bc167cde32379b314375684d444826f7c32c4e45 [file] [log] [blame]
Dan Williams59816902018-03-29 19:07:13 -07001/* SPDX-License-Identifier: GPL-2.0 */
2/* Copyright(c) 2015 Intel Corporation. All rights reserved. */
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -04003#include <linux/device.h>
Dan Williams92281dee2015-08-10 23:07:06 -04004#include <linux/io.h>
Andrey Ryabinin0207df42018-08-17 15:47:04 -07005#include <linux/kasan.h>
Christoph Hellwig41e94a82015-08-17 16:00:35 +02006#include <linux/memory_hotplug.h>
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -04007#include <linux/mm.h>
8#include <linux/pfn_t.h>
Jérôme Glisse5042db42017-09-08 16:11:43 -07009#include <linux/swap.h>
Dan Williams9ffc1d12020-01-30 12:06:07 -080010#include <linux/mmzone.h>
Jérôme Glisse5042db42017-09-08 16:11:43 -070011#include <linux/swapops.h>
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -040012#include <linux/types.h>
Dan Williamse76384882018-05-16 11:46:08 -070013#include <linux/wait_bit.h>
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -040014#include <linux/xarray.h>
Dan Williams92281dee2015-08-10 23:07:06 -040015
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -040016static DEFINE_XARRAY(pgmap_array);
Dan Williams9476df72016-01-15 16:56:19 -080017
Dan Williams9ffc1d12020-01-30 12:06:07 -080018/*
19 * The memremap() and memremap_pages() interfaces are alternately used
20 * to map persistent memory namespaces. These interfaces place different
21 * constraints on the alignment and size of the mapping (namespace).
22 * memremap() can map individual PAGE_SIZE pages. memremap_pages() can
23 * only map subsections (2MB), and at least one architecture (PowerPC)
24 * the minimum mapping granularity of memremap_pages() is 16MB.
25 *
26 * The role of memremap_compat_align() is to communicate the minimum
27 * arch supported alignment of a namespace such that it can freely
28 * switch modes without violating the arch constraint. Namely, do not
29 * allow a namespace to be PAGE_SIZE aligned since that namespace may be
30 * reconfigured into a mode that requires SUBSECTION_SIZE alignment.
31 */
32#ifndef CONFIG_ARCH_HAS_MEMREMAP_COMPAT_ALIGN
33unsigned long memremap_compat_align(void)
34{
35 return SUBSECTION_SIZE;
36}
37EXPORT_SYMBOL_GPL(memremap_compat_align);
38#endif
39
Christoph Hellwigf6a55e12019-06-26 14:27:10 +020040#ifdef CONFIG_DEV_PAGEMAP_OPS
41DEFINE_STATIC_KEY_FALSE(devmap_managed_key);
42EXPORT_SYMBOL(devmap_managed_key);
43static atomic_t devmap_managed_enable;
44
Christoph Hellwig6f421932019-08-18 11:05:56 +020045static void devmap_managed_enable_put(void)
Christoph Hellwigf6a55e12019-06-26 14:27:10 +020046{
47 if (atomic_dec_and_test(&devmap_managed_enable))
48 static_branch_disable(&devmap_managed_key);
49}
50
Christoph Hellwig6f421932019-08-18 11:05:56 +020051static int devmap_managed_enable_get(struct dev_pagemap *pgmap)
Christoph Hellwigf6a55e12019-06-26 14:27:10 +020052{
Dan Williams429589d2020-01-30 22:12:24 -080053 if (pgmap->type == MEMORY_DEVICE_PRIVATE &&
54 (!pgmap->ops || !pgmap->ops->page_free)) {
Christoph Hellwigf6a55e12019-06-26 14:27:10 +020055 WARN(1, "Missing page_free method\n");
56 return -EINVAL;
57 }
58
59 if (atomic_inc_return(&devmap_managed_enable) == 1)
60 static_branch_enable(&devmap_managed_key);
Christoph Hellwig6f421932019-08-18 11:05:56 +020061 return 0;
Christoph Hellwigf6a55e12019-06-26 14:27:10 +020062}
63#else
Christoph Hellwig6f421932019-08-18 11:05:56 +020064static int devmap_managed_enable_get(struct dev_pagemap *pgmap)
Christoph Hellwigf6a55e12019-06-26 14:27:10 +020065{
66 return -EINVAL;
67}
Christoph Hellwig6f421932019-08-18 11:05:56 +020068static void devmap_managed_enable_put(void)
69{
70}
Christoph Hellwigf6a55e12019-06-26 14:27:10 +020071#endif /* CONFIG_DEV_PAGEMAP_OPS */
72
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -040073static void pgmap_array_delete(struct resource *res)
Christoph Hellwig41e94a82015-08-17 16:00:35 +020074{
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -040075 xa_store_range(&pgmap_array, PHYS_PFN(res->start), PHYS_PFN(res->end),
76 NULL, GFP_KERNEL);
Dan Williamsab1b5972017-09-06 16:24:13 -070077 synchronize_rcu();
Dan Williams9476df72016-01-15 16:56:19 -080078}
79
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010080static unsigned long pfn_first(struct dev_pagemap *pgmap)
Dan Williams5c2c2582016-01-15 16:56:49 -080081{
Dan Williams7cc78672019-07-18 15:58:33 -070082 return PHYS_PFN(pgmap->res.start) +
Christoph Hellwig514caf22019-06-26 14:27:13 +020083 vmem_altmap_offset(pgmap_altmap(pgmap));
Dan Williams5c2c2582016-01-15 16:56:49 -080084}
85
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010086static unsigned long pfn_end(struct dev_pagemap *pgmap)
Dan Williams5c2c2582016-01-15 16:56:49 -080087{
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010088 const struct resource *res = &pgmap->res;
Dan Williams5c2c2582016-01-15 16:56:49 -080089
90 return (res->start + resource_size(res)) >> PAGE_SHIFT;
91}
92
Dan Williams949b93252018-02-06 19:34:11 -080093static unsigned long pfn_next(unsigned long pfn)
94{
95 if (pfn % 1024 == 0)
96 cond_resched();
97 return pfn + 1;
98}
99
Dan Williams5c2c2582016-01-15 16:56:49 -0800100#define for_each_device_pfn(pfn, map) \
Dan Williams949b93252018-02-06 19:34:11 -0800101 for (pfn = pfn_first(map); pfn < pfn_end(map); pfn = pfn_next(pfn))
Dan Williams5c2c2582016-01-15 16:56:49 -0800102
Christoph Hellwig24917f62019-06-26 14:27:14 +0200103static void dev_pagemap_kill(struct dev_pagemap *pgmap)
104{
105 if (pgmap->ops && pgmap->ops->kill)
106 pgmap->ops->kill(pgmap);
107 else
108 percpu_ref_kill(pgmap->ref);
109}
110
111static void dev_pagemap_cleanup(struct dev_pagemap *pgmap)
112{
113 if (pgmap->ops && pgmap->ops->cleanup) {
114 pgmap->ops->cleanup(pgmap);
115 } else {
116 wait_for_completion(&pgmap->done);
117 percpu_ref_exit(pgmap->ref);
118 }
Dan Williams062823732019-08-08 14:43:49 -0700119 /*
120 * Undo the pgmap ref assignment for the internal case as the
121 * caller may re-enable the same pgmap.
122 */
123 if (pgmap->ref == &pgmap->internal_ref)
124 pgmap->ref = NULL;
Christoph Hellwig24917f62019-06-26 14:27:14 +0200125}
126
Christoph Hellwig6869b7b22019-08-18 11:05:57 +0200127void memunmap_pages(struct dev_pagemap *pgmap)
Dan Williams9476df72016-01-15 16:56:19 -0800128{
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100129 struct resource *res = &pgmap->res;
Aneesh Kumar K.V77e080e2019-10-18 20:19:39 -0700130 struct page *first_page;
Dan Williams71389702017-04-28 10:23:37 -0700131 unsigned long pfn;
Oscar Salvador2c2a5af2018-12-28 00:36:22 -0800132 int nid;
Dan Williams71389702017-04-28 10:23:37 -0700133
Christoph Hellwig24917f62019-06-26 14:27:14 +0200134 dev_pagemap_kill(pgmap);
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100135 for_each_device_pfn(pfn, pgmap)
Dan Williams71389702017-04-28 10:23:37 -0700136 put_page(pfn_to_page(pfn));
Christoph Hellwig24917f62019-06-26 14:27:14 +0200137 dev_pagemap_cleanup(pgmap);
Dan Williams9476df72016-01-15 16:56:19 -0800138
Aneesh Kumar K.V77e080e2019-10-18 20:19:39 -0700139 /* make sure to access a memmap that was actually initialized */
140 first_page = pfn_to_page(pfn_first(pgmap));
141
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200142 /* pages are dead and unused, undo the arch mapping */
Aneesh Kumar K.V77e080e2019-10-18 20:19:39 -0700143 nid = page_to_nid(first_page);
Oscar Salvador2c2a5af2018-12-28 00:36:22 -0800144
Dan Williamsf931ab42017-01-10 16:57:36 -0800145 mem_hotplug_begin();
David Hildenbrandd33695b2020-02-03 17:34:09 -0800146 remove_pfn_range_from_zone(page_zone(first_page), PHYS_PFN(res->start),
147 PHYS_PFN(resource_size(res)));
Dan Williams69324b82018-12-28 00:35:01 -0800148 if (pgmap->type == MEMORY_DEVICE_PRIVATE) {
David Hildenbrandfeee6b22020-01-04 12:59:33 -0800149 __remove_pages(PHYS_PFN(res->start),
Aneesh Kumar K.V77e080e2019-10-18 20:19:39 -0700150 PHYS_PFN(resource_size(res)), NULL);
Dan Williams69324b82018-12-28 00:35:01 -0800151 } else {
Dan Williams7cc78672019-07-18 15:58:33 -0700152 arch_remove_memory(nid, res->start, resource_size(res),
Christoph Hellwig514caf22019-06-26 14:27:13 +0200153 pgmap_altmap(pgmap));
Dan Williams7cc78672019-07-18 15:58:33 -0700154 kasan_remove_zero_shadow(__va(res->start), resource_size(res));
Dan Williams69324b82018-12-28 00:35:01 -0800155 }
Dan Williamsf931ab42017-01-10 16:57:36 -0800156 mem_hotplug_done();
Dan Williamsb5d24fd2017-02-24 14:55:45 -0800157
Dan Williams7cc78672019-07-18 15:58:33 -0700158 untrack_pfn(NULL, PHYS_PFN(res->start), resource_size(res));
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400159 pgmap_array_delete(res);
Christoph Hellwigfdc029b2019-08-18 11:05:55 +0200160 WARN_ONCE(pgmap->altmap.alloc, "failed to free all reserved pages\n");
Christoph Hellwig6f421932019-08-18 11:05:56 +0200161 devmap_managed_enable_put();
Dan Williams9476df72016-01-15 16:56:19 -0800162}
Christoph Hellwig6869b7b22019-08-18 11:05:57 +0200163EXPORT_SYMBOL_GPL(memunmap_pages);
164
165static void devm_memremap_pages_release(void *data)
166{
167 memunmap_pages(data);
168}
Dan Williams9476df72016-01-15 16:56:19 -0800169
Christoph Hellwig24917f62019-06-26 14:27:14 +0200170static void dev_pagemap_percpu_release(struct percpu_ref *ref)
171{
172 struct dev_pagemap *pgmap =
173 container_of(ref, struct dev_pagemap, internal_ref);
174
175 complete(&pgmap->done);
176}
177
Christoph Hellwig6869b7b22019-08-18 11:05:57 +0200178/*
179 * Not device managed version of dev_memremap_pages, undone by
180 * memunmap_pages(). Please use dev_memremap_pages if you have a struct
181 * device available.
Dan Williams4b94ffd2016-01-15 16:56:22 -0800182 */
Christoph Hellwig6869b7b22019-08-18 11:05:57 +0200183void *memremap_pages(struct dev_pagemap *pgmap, int nid)
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200184{
Dan Williams949b93252018-02-06 19:34:11 -0800185 struct resource *res = &pgmap->res;
Dave Jiang15d36fe2018-07-26 16:37:15 -0700186 struct dev_pagemap *conflict_pgmap;
Logan Gunthorpef5637d32020-04-10 14:33:21 -0700187 struct mhp_params params = {
Michal Hocko940519f2019-05-13 17:21:26 -0700188 /*
189 * We do not want any optional features only our own memmap
Dan Williams7cc78672019-07-18 15:58:33 -0700190 */
Christoph Hellwig514caf22019-06-26 14:27:13 +0200191 .altmap = pgmap_altmap(pgmap),
Logan Gunthorpebfeb0222020-04-10 14:33:36 -0700192 .pgprot = PAGE_KERNEL,
Michal Hocko940519f2019-05-13 17:21:26 -0700193 };
Christoph Hellwig6869b7b22019-08-18 11:05:57 +0200194 int error, is_ram;
Christoph Hellwigf6a55e12019-06-26 14:27:10 +0200195 bool need_devmap_managed = true;
Dan Williams5f29a772016-03-09 14:08:13 -0800196
Christoph Hellwig3ed2dcd2019-06-26 14:27:07 +0200197 switch (pgmap->type) {
198 case MEMORY_DEVICE_PRIVATE:
199 if (!IS_ENABLED(CONFIG_DEVICE_PRIVATE)) {
200 WARN(1, "Device private memory not supported\n");
201 return ERR_PTR(-EINVAL);
202 }
Christoph Hellwig897e6362019-06-26 14:27:11 +0200203 if (!pgmap->ops || !pgmap->ops->migrate_to_ram) {
204 WARN(1, "Missing migrate_to_ram method\n");
205 return ERR_PTR(-EINVAL);
206 }
Christoph Hellwigf894ddd2020-03-16 20:32:13 +0100207 if (!pgmap->owner) {
208 WARN(1, "Missing owner\n");
209 return ERR_PTR(-EINVAL);
210 }
Christoph Hellwig3ed2dcd2019-06-26 14:27:07 +0200211 break;
212 case MEMORY_DEVICE_FS_DAX:
213 if (!IS_ENABLED(CONFIG_ZONE_DEVICE) ||
214 IS_ENABLED(CONFIG_FS_DAX_LIMITED)) {
215 WARN(1, "File system DAX not supported\n");
216 return ERR_PTR(-EINVAL);
217 }
218 break;
219 case MEMORY_DEVICE_DEVDAX:
220 case MEMORY_DEVICE_PCI_P2PDMA:
Christoph Hellwigf6a55e12019-06-26 14:27:10 +0200221 need_devmap_managed = false;
Christoph Hellwig3ed2dcd2019-06-26 14:27:07 +0200222 break;
223 default:
224 WARN(1, "Invalid pgmap type %d\n", pgmap->type);
225 break;
226 }
227
Christoph Hellwig24917f62019-06-26 14:27:14 +0200228 if (!pgmap->ref) {
229 if (pgmap->ops && (pgmap->ops->kill || pgmap->ops->cleanup))
230 return ERR_PTR(-EINVAL);
231
232 init_completion(&pgmap->done);
233 error = percpu_ref_init(&pgmap->internal_ref,
234 dev_pagemap_percpu_release, 0, GFP_KERNEL);
235 if (error)
236 return ERR_PTR(error);
237 pgmap->ref = &pgmap->internal_ref;
238 } else {
239 if (!pgmap->ops || !pgmap->ops->kill || !pgmap->ops->cleanup) {
240 WARN(1, "Missing reference count teardown definition\n");
241 return ERR_PTR(-EINVAL);
242 }
Dan Williams50f44ee2019-06-13 15:56:33 -0700243 }
Dan Williamsa95c90f2018-12-28 00:34:57 -0800244
Christoph Hellwigf6a55e12019-06-26 14:27:10 +0200245 if (need_devmap_managed) {
Christoph Hellwig6f421932019-08-18 11:05:56 +0200246 error = devmap_managed_enable_get(pgmap);
Christoph Hellwigf6a55e12019-06-26 14:27:10 +0200247 if (error)
248 return ERR_PTR(error);
249 }
250
Dan Williams7cc78672019-07-18 15:58:33 -0700251 conflict_pgmap = get_dev_pagemap(PHYS_PFN(res->start), NULL);
Dave Jiang15d36fe2018-07-26 16:37:15 -0700252 if (conflict_pgmap) {
Christoph Hellwig6869b7b22019-08-18 11:05:57 +0200253 WARN(1, "Conflicting mapping in same section\n");
Dave Jiang15d36fe2018-07-26 16:37:15 -0700254 put_dev_pagemap(conflict_pgmap);
Dan Williams50f44ee2019-06-13 15:56:33 -0700255 error = -ENOMEM;
256 goto err_array;
Dave Jiang15d36fe2018-07-26 16:37:15 -0700257 }
258
Dan Williams7cc78672019-07-18 15:58:33 -0700259 conflict_pgmap = get_dev_pagemap(PHYS_PFN(res->end), NULL);
Dave Jiang15d36fe2018-07-26 16:37:15 -0700260 if (conflict_pgmap) {
Christoph Hellwig6869b7b22019-08-18 11:05:57 +0200261 WARN(1, "Conflicting mapping in same section\n");
Dave Jiang15d36fe2018-07-26 16:37:15 -0700262 put_dev_pagemap(conflict_pgmap);
Dan Williams50f44ee2019-06-13 15:56:33 -0700263 error = -ENOMEM;
264 goto err_array;
Dave Jiang15d36fe2018-07-26 16:37:15 -0700265 }
266
Dan Williams7cc78672019-07-18 15:58:33 -0700267 is_ram = region_intersects(res->start, resource_size(res),
Linus Torvaldsd37a14bb2016-03-14 15:15:51 -0700268 IORESOURCE_SYSTEM_RAM, IORES_DESC_NONE);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200269
Dan Williams06489cf2018-12-28 00:34:54 -0800270 if (is_ram != REGION_DISJOINT) {
271 WARN_ONCE(1, "%s attempted on %s region %pr\n", __func__,
272 is_ram == REGION_MIXED ? "mixed" : "ram", res);
Dan Williamsa95c90f2018-12-28 00:34:57 -0800273 error = -ENXIO;
274 goto err_array;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200275 }
276
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400277 error = xa_err(xa_store_range(&pgmap_array, PHYS_PFN(res->start),
278 PHYS_PFN(res->end), pgmap, GFP_KERNEL));
Dan Williams9476df72016-01-15 16:56:19 -0800279 if (error)
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400280 goto err_array;
Dan Williams9476df72016-01-15 16:56:19 -0800281
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200282 if (nid < 0)
Dan Williams7eff93b2015-10-05 20:35:55 -0400283 nid = numa_mem_id();
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200284
Logan Gunthorpebfeb0222020-04-10 14:33:36 -0700285 error = track_pfn_remap(NULL, &params.pgprot, PHYS_PFN(res->start),
286 0, resource_size(res));
Dan Williams90497712016-09-07 08:51:21 -0700287 if (error)
288 goto err_pfn_remap;
289
Dan Williamsf931ab42017-01-10 16:57:36 -0800290 mem_hotplug_begin();
Dan Williams69324b82018-12-28 00:35:01 -0800291
292 /*
293 * For device private memory we call add_pages() as we only need to
294 * allocate and initialize struct page for the device memory. More-
295 * over the device memory is un-accessible thus we do not want to
296 * create a linear mapping for the memory like arch_add_memory()
297 * would do.
298 *
299 * For all other device memory types, which are accessible by
300 * the CPU, we do want the linear mapping and thus use
301 * arch_add_memory().
302 */
303 if (pgmap->type == MEMORY_DEVICE_PRIVATE) {
Dan Williams7cc78672019-07-18 15:58:33 -0700304 error = add_pages(nid, PHYS_PFN(res->start),
Logan Gunthorpef5637d32020-04-10 14:33:21 -0700305 PHYS_PFN(resource_size(res)), &params);
Dan Williams69324b82018-12-28 00:35:01 -0800306 } else {
Dan Williams7cc78672019-07-18 15:58:33 -0700307 error = kasan_add_zero_shadow(__va(res->start), resource_size(res));
Dan Williams69324b82018-12-28 00:35:01 -0800308 if (error) {
309 mem_hotplug_done();
310 goto err_kasan;
311 }
312
Dan Williams7cc78672019-07-18 15:58:33 -0700313 error = arch_add_memory(nid, res->start, resource_size(res),
Logan Gunthorpef5637d32020-04-10 14:33:21 -0700314 &params);
Andrey Ryabinin0207df42018-08-17 15:47:04 -0700315 }
316
Dan Williams69324b82018-12-28 00:35:01 -0800317 if (!error) {
318 struct zone *zone;
319
320 zone = &NODE_DATA(nid)->node_zones[ZONE_DEVICE];
Dan Williams7cc78672019-07-18 15:58:33 -0700321 move_pfn_range_to_zone(zone, PHYS_PFN(res->start),
Logan Gunthorpef5637d32020-04-10 14:33:21 -0700322 PHYS_PFN(resource_size(res)), params.altmap);
Dan Williams69324b82018-12-28 00:35:01 -0800323 }
324
Dan Williamsf931ab42017-01-10 16:57:36 -0800325 mem_hotplug_done();
Dan Williams9476df72016-01-15 16:56:19 -0800326 if (error)
327 goto err_add_memory;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200328
Alexander Duyck966cf442018-10-26 15:07:52 -0700329 /*
330 * Initialization of the pages has been deferred until now in order
331 * to allow us to do the work while not holding the hotplug lock.
332 */
333 memmap_init_zone_device(&NODE_DATA(nid)->node_zones[ZONE_DEVICE],
Dan Williams7cc78672019-07-18 15:58:33 -0700334 PHYS_PFN(res->start),
335 PHYS_PFN(resource_size(res)), pgmap);
Alexander Duyck966cf442018-10-26 15:07:52 -0700336 percpu_ref_get_many(pgmap->ref, pfn_end(pgmap) - pfn_first(pgmap));
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200337 return __va(res->start);
Dan Williams9476df72016-01-15 16:56:19 -0800338
339 err_add_memory:
Dan Williams7cc78672019-07-18 15:58:33 -0700340 kasan_remove_zero_shadow(__va(res->start), resource_size(res));
Andrey Ryabinin0207df42018-08-17 15:47:04 -0700341 err_kasan:
Dan Williams7cc78672019-07-18 15:58:33 -0700342 untrack_pfn(NULL, PHYS_PFN(res->start), resource_size(res));
Dan Williams90497712016-09-07 08:51:21 -0700343 err_pfn_remap:
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400344 pgmap_array_delete(res);
345 err_array:
Christoph Hellwig24917f62019-06-26 14:27:14 +0200346 dev_pagemap_kill(pgmap);
347 dev_pagemap_cleanup(pgmap);
Christoph Hellwig6f421932019-08-18 11:05:56 +0200348 devmap_managed_enable_put();
Dan Williams9476df72016-01-15 16:56:19 -0800349 return ERR_PTR(error);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200350}
Christoph Hellwig6869b7b22019-08-18 11:05:57 +0200351EXPORT_SYMBOL_GPL(memremap_pages);
352
353/**
354 * devm_memremap_pages - remap and provide memmap backing for the given resource
355 * @dev: hosting device for @res
356 * @pgmap: pointer to a struct dev_pagemap
357 *
358 * Notes:
359 * 1/ At a minimum the res and type members of @pgmap must be initialized
360 * by the caller before passing it to this function
361 *
362 * 2/ The altmap field may optionally be initialized, in which case
363 * PGMAP_ALTMAP_VALID must be set in pgmap->flags.
364 *
365 * 3/ The ref field may optionally be provided, in which pgmap->ref must be
366 * 'live' on entry and will be killed and reaped at
367 * devm_memremap_pages_release() time, or if this routine fails.
368 *
369 * 4/ res is expected to be a host memory range that could feasibly be
370 * treated as a "System RAM" range, i.e. not a device mmio range, but
371 * this is not enforced.
372 */
373void *devm_memremap_pages(struct device *dev, struct dev_pagemap *pgmap)
374{
375 int error;
376 void *ret;
377
378 ret = memremap_pages(pgmap, dev_to_node(dev));
379 if (IS_ERR(ret))
380 return ret;
381
382 error = devm_add_action_or_reset(dev, devm_memremap_pages_release,
383 pgmap);
384 if (error)
385 return ERR_PTR(error);
386 return ret;
387}
Dan Williams808153e2018-12-28 00:34:50 -0800388EXPORT_SYMBOL_GPL(devm_memremap_pages);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800389
Dan Williams2e3f1392019-06-13 15:56:21 -0700390void devm_memunmap_pages(struct device *dev, struct dev_pagemap *pgmap)
391{
392 devm_release_action(dev, devm_memremap_pages_release, pgmap);
393}
394EXPORT_SYMBOL_GPL(devm_memunmap_pages);
395
Dan Williams4b94ffd2016-01-15 16:56:22 -0800396unsigned long vmem_altmap_offset(struct vmem_altmap *altmap)
397{
398 /* number of pfns from base where pfn_to_page() is valid */
Christoph Hellwig514caf22019-06-26 14:27:13 +0200399 if (altmap)
400 return altmap->reserve + altmap->free;
401 return 0;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800402}
403
404void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns)
405{
406 altmap->alloc -= nr_pfns;
407}
408
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100409/**
410 * get_dev_pagemap() - take a new live reference on the dev_pagemap for @pfn
411 * @pfn: page frame number to lookup page_map
412 * @pgmap: optional known pgmap that already has a reference
413 *
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100414 * If @pgmap is non-NULL and covers @pfn it will be returned as-is. If @pgmap
415 * is non-NULL but does not cover @pfn the reference to it will be released.
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100416 */
417struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
418 struct dev_pagemap *pgmap)
419{
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100420 resource_size_t phys = PFN_PHYS(pfn);
421
422 /*
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100423 * In the cached case we're already holding a live reference.
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100424 */
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100425 if (pgmap) {
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100426 if (phys >= pgmap->res.start && phys <= pgmap->res.end)
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100427 return pgmap;
428 put_dev_pagemap(pgmap);
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100429 }
430
431 /* fall back to slow path lookup */
432 rcu_read_lock();
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400433 pgmap = xa_load(&pgmap_array, PHYS_PFN(phys));
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100434 if (pgmap && !percpu_ref_tryget_live(pgmap->ref))
435 pgmap = NULL;
436 rcu_read_unlock();
437
438 return pgmap;
439}
Dan Williamse76384882018-05-16 11:46:08 -0700440EXPORT_SYMBOL_GPL(get_dev_pagemap);
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700441
Dan Williamse76384882018-05-16 11:46:08 -0700442#ifdef CONFIG_DEV_PAGEMAP_OPS
John Hubbard07d80262020-01-30 22:12:28 -0800443void free_devmap_managed_page(struct page *page)
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700444{
Dan Williams429589d2020-01-30 22:12:24 -0800445 /* notify page idle for dax */
446 if (!is_device_private_page(page)) {
447 wake_up_var(&page->_refcount);
448 return;
449 }
450
451 /* Clear Active bit in case of parallel mark_page_accessed */
452 __ClearPageActive(page);
453 __ClearPageWaiters(page);
454
455 mem_cgroup_uncharge(page);
456
457 /*
458 * When a device_private page is freed, the page->mapping field
459 * may still contain a (stale) mapping value. For example, the
460 * lower bits of page->mapping may still identify the page as an
461 * anonymous page. Ultimately, this entire field is just stale
462 * and wrong, and it will cause errors if not cleared. One
463 * example is:
464 *
465 * migrate_vma_pages()
466 * migrate_vma_insert_page()
467 * page_add_new_anon_rmap()
468 * __page_set_anon_rmap()
469 * ...checks page->mapping, via PageAnon(page) call,
470 * and incorrectly concludes that the page is an
471 * anonymous page. Therefore, it incorrectly,
472 * silently fails to set up the new anon rmap.
473 *
474 * For other types of ZONE_DEVICE pages, migration is either
475 * handled differently or not done at all, so there is no need
476 * to clear page->mapping.
477 */
478 page->mapping = NULL;
479 page->pgmap->ops->page_free(page);
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700480}
Dan Williamse76384882018-05-16 11:46:08 -0700481#endif /* CONFIG_DEV_PAGEMAP_OPS */