blob: 03e38b7a38f1a434d5f63294c6675672d9eed227 [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:
Logan Gunthorpea50d8d92020-04-10 14:33:39 -0700220 need_devmap_managed = false;
221 break;
Christoph Hellwig3ed2dcd2019-06-26 14:27:07 +0200222 case MEMORY_DEVICE_PCI_P2PDMA:
Logan Gunthorpea50d8d92020-04-10 14:33:39 -0700223 params.pgprot = pgprot_noncached(params.pgprot);
Christoph Hellwigf6a55e12019-06-26 14:27:10 +0200224 need_devmap_managed = false;
Christoph Hellwig3ed2dcd2019-06-26 14:27:07 +0200225 break;
226 default:
227 WARN(1, "Invalid pgmap type %d\n", pgmap->type);
228 break;
229 }
230
Christoph Hellwig24917f62019-06-26 14:27:14 +0200231 if (!pgmap->ref) {
232 if (pgmap->ops && (pgmap->ops->kill || pgmap->ops->cleanup))
233 return ERR_PTR(-EINVAL);
234
235 init_completion(&pgmap->done);
236 error = percpu_ref_init(&pgmap->internal_ref,
237 dev_pagemap_percpu_release, 0, GFP_KERNEL);
238 if (error)
239 return ERR_PTR(error);
240 pgmap->ref = &pgmap->internal_ref;
241 } else {
242 if (!pgmap->ops || !pgmap->ops->kill || !pgmap->ops->cleanup) {
243 WARN(1, "Missing reference count teardown definition\n");
244 return ERR_PTR(-EINVAL);
245 }
Dan Williams50f44ee2019-06-13 15:56:33 -0700246 }
Dan Williamsa95c90f2018-12-28 00:34:57 -0800247
Christoph Hellwigf6a55e12019-06-26 14:27:10 +0200248 if (need_devmap_managed) {
Christoph Hellwig6f421932019-08-18 11:05:56 +0200249 error = devmap_managed_enable_get(pgmap);
Christoph Hellwigf6a55e12019-06-26 14:27:10 +0200250 if (error)
251 return ERR_PTR(error);
252 }
253
Dan Williams7cc78672019-07-18 15:58:33 -0700254 conflict_pgmap = get_dev_pagemap(PHYS_PFN(res->start), NULL);
Dave Jiang15d36fe2018-07-26 16:37:15 -0700255 if (conflict_pgmap) {
Christoph Hellwig6869b7b22019-08-18 11:05:57 +0200256 WARN(1, "Conflicting mapping in same section\n");
Dave Jiang15d36fe2018-07-26 16:37:15 -0700257 put_dev_pagemap(conflict_pgmap);
Dan Williams50f44ee2019-06-13 15:56:33 -0700258 error = -ENOMEM;
259 goto err_array;
Dave Jiang15d36fe2018-07-26 16:37:15 -0700260 }
261
Dan Williams7cc78672019-07-18 15:58:33 -0700262 conflict_pgmap = get_dev_pagemap(PHYS_PFN(res->end), NULL);
Dave Jiang15d36fe2018-07-26 16:37:15 -0700263 if (conflict_pgmap) {
Christoph Hellwig6869b7b22019-08-18 11:05:57 +0200264 WARN(1, "Conflicting mapping in same section\n");
Dave Jiang15d36fe2018-07-26 16:37:15 -0700265 put_dev_pagemap(conflict_pgmap);
Dan Williams50f44ee2019-06-13 15:56:33 -0700266 error = -ENOMEM;
267 goto err_array;
Dave Jiang15d36fe2018-07-26 16:37:15 -0700268 }
269
Dan Williams7cc78672019-07-18 15:58:33 -0700270 is_ram = region_intersects(res->start, resource_size(res),
Linus Torvaldsd37a14bb2016-03-14 15:15:51 -0700271 IORESOURCE_SYSTEM_RAM, IORES_DESC_NONE);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200272
Dan Williams06489cf2018-12-28 00:34:54 -0800273 if (is_ram != REGION_DISJOINT) {
274 WARN_ONCE(1, "%s attempted on %s region %pr\n", __func__,
275 is_ram == REGION_MIXED ? "mixed" : "ram", res);
Dan Williamsa95c90f2018-12-28 00:34:57 -0800276 error = -ENXIO;
277 goto err_array;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200278 }
279
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400280 error = xa_err(xa_store_range(&pgmap_array, PHYS_PFN(res->start),
281 PHYS_PFN(res->end), pgmap, GFP_KERNEL));
Dan Williams9476df72016-01-15 16:56:19 -0800282 if (error)
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400283 goto err_array;
Dan Williams9476df72016-01-15 16:56:19 -0800284
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200285 if (nid < 0)
Dan Williams7eff93b2015-10-05 20:35:55 -0400286 nid = numa_mem_id();
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200287
Logan Gunthorpebfeb0222020-04-10 14:33:36 -0700288 error = track_pfn_remap(NULL, &params.pgprot, PHYS_PFN(res->start),
289 0, resource_size(res));
Dan Williams90497712016-09-07 08:51:21 -0700290 if (error)
291 goto err_pfn_remap;
292
Dan Williamsf931ab42017-01-10 16:57:36 -0800293 mem_hotplug_begin();
Dan Williams69324b82018-12-28 00:35:01 -0800294
295 /*
296 * For device private memory we call add_pages() as we only need to
297 * allocate and initialize struct page for the device memory. More-
298 * over the device memory is un-accessible thus we do not want to
299 * create a linear mapping for the memory like arch_add_memory()
300 * would do.
301 *
302 * For all other device memory types, which are accessible by
303 * the CPU, we do want the linear mapping and thus use
304 * arch_add_memory().
305 */
306 if (pgmap->type == MEMORY_DEVICE_PRIVATE) {
Dan Williams7cc78672019-07-18 15:58:33 -0700307 error = add_pages(nid, PHYS_PFN(res->start),
Logan Gunthorpef5637d32020-04-10 14:33:21 -0700308 PHYS_PFN(resource_size(res)), &params);
Dan Williams69324b82018-12-28 00:35:01 -0800309 } else {
Dan Williams7cc78672019-07-18 15:58:33 -0700310 error = kasan_add_zero_shadow(__va(res->start), resource_size(res));
Dan Williams69324b82018-12-28 00:35:01 -0800311 if (error) {
312 mem_hotplug_done();
313 goto err_kasan;
314 }
315
Dan Williams7cc78672019-07-18 15:58:33 -0700316 error = arch_add_memory(nid, res->start, resource_size(res),
Logan Gunthorpef5637d32020-04-10 14:33:21 -0700317 &params);
Andrey Ryabinin0207df42018-08-17 15:47:04 -0700318 }
319
Dan Williams69324b82018-12-28 00:35:01 -0800320 if (!error) {
321 struct zone *zone;
322
323 zone = &NODE_DATA(nid)->node_zones[ZONE_DEVICE];
Dan Williams7cc78672019-07-18 15:58:33 -0700324 move_pfn_range_to_zone(zone, PHYS_PFN(res->start),
Logan Gunthorpef5637d32020-04-10 14:33:21 -0700325 PHYS_PFN(resource_size(res)), params.altmap);
Dan Williams69324b82018-12-28 00:35:01 -0800326 }
327
Dan Williamsf931ab42017-01-10 16:57:36 -0800328 mem_hotplug_done();
Dan Williams9476df72016-01-15 16:56:19 -0800329 if (error)
330 goto err_add_memory;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200331
Alexander Duyck966cf442018-10-26 15:07:52 -0700332 /*
333 * Initialization of the pages has been deferred until now in order
334 * to allow us to do the work while not holding the hotplug lock.
335 */
336 memmap_init_zone_device(&NODE_DATA(nid)->node_zones[ZONE_DEVICE],
Dan Williams7cc78672019-07-18 15:58:33 -0700337 PHYS_PFN(res->start),
338 PHYS_PFN(resource_size(res)), pgmap);
Alexander Duyck966cf442018-10-26 15:07:52 -0700339 percpu_ref_get_many(pgmap->ref, pfn_end(pgmap) - pfn_first(pgmap));
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200340 return __va(res->start);
Dan Williams9476df72016-01-15 16:56:19 -0800341
342 err_add_memory:
Dan Williams7cc78672019-07-18 15:58:33 -0700343 kasan_remove_zero_shadow(__va(res->start), resource_size(res));
Andrey Ryabinin0207df42018-08-17 15:47:04 -0700344 err_kasan:
Dan Williams7cc78672019-07-18 15:58:33 -0700345 untrack_pfn(NULL, PHYS_PFN(res->start), resource_size(res));
Dan Williams90497712016-09-07 08:51:21 -0700346 err_pfn_remap:
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400347 pgmap_array_delete(res);
348 err_array:
Christoph Hellwig24917f62019-06-26 14:27:14 +0200349 dev_pagemap_kill(pgmap);
350 dev_pagemap_cleanup(pgmap);
Christoph Hellwig6f421932019-08-18 11:05:56 +0200351 devmap_managed_enable_put();
Dan Williams9476df72016-01-15 16:56:19 -0800352 return ERR_PTR(error);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200353}
Christoph Hellwig6869b7b22019-08-18 11:05:57 +0200354EXPORT_SYMBOL_GPL(memremap_pages);
355
356/**
357 * devm_memremap_pages - remap and provide memmap backing for the given resource
358 * @dev: hosting device for @res
359 * @pgmap: pointer to a struct dev_pagemap
360 *
361 * Notes:
362 * 1/ At a minimum the res and type members of @pgmap must be initialized
363 * by the caller before passing it to this function
364 *
365 * 2/ The altmap field may optionally be initialized, in which case
366 * PGMAP_ALTMAP_VALID must be set in pgmap->flags.
367 *
368 * 3/ The ref field may optionally be provided, in which pgmap->ref must be
369 * 'live' on entry and will be killed and reaped at
370 * devm_memremap_pages_release() time, or if this routine fails.
371 *
372 * 4/ res is expected to be a host memory range that could feasibly be
373 * treated as a "System RAM" range, i.e. not a device mmio range, but
374 * this is not enforced.
375 */
376void *devm_memremap_pages(struct device *dev, struct dev_pagemap *pgmap)
377{
378 int error;
379 void *ret;
380
381 ret = memremap_pages(pgmap, dev_to_node(dev));
382 if (IS_ERR(ret))
383 return ret;
384
385 error = devm_add_action_or_reset(dev, devm_memremap_pages_release,
386 pgmap);
387 if (error)
388 return ERR_PTR(error);
389 return ret;
390}
Dan Williams808153e2018-12-28 00:34:50 -0800391EXPORT_SYMBOL_GPL(devm_memremap_pages);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800392
Dan Williams2e3f1392019-06-13 15:56:21 -0700393void devm_memunmap_pages(struct device *dev, struct dev_pagemap *pgmap)
394{
395 devm_release_action(dev, devm_memremap_pages_release, pgmap);
396}
397EXPORT_SYMBOL_GPL(devm_memunmap_pages);
398
Dan Williams4b94ffd2016-01-15 16:56:22 -0800399unsigned long vmem_altmap_offset(struct vmem_altmap *altmap)
400{
401 /* number of pfns from base where pfn_to_page() is valid */
Christoph Hellwig514caf22019-06-26 14:27:13 +0200402 if (altmap)
403 return altmap->reserve + altmap->free;
404 return 0;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800405}
406
407void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns)
408{
409 altmap->alloc -= nr_pfns;
410}
411
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100412/**
413 * get_dev_pagemap() - take a new live reference on the dev_pagemap for @pfn
414 * @pfn: page frame number to lookup page_map
415 * @pgmap: optional known pgmap that already has a reference
416 *
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100417 * If @pgmap is non-NULL and covers @pfn it will be returned as-is. If @pgmap
418 * is non-NULL but does not cover @pfn the reference to it will be released.
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100419 */
420struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
421 struct dev_pagemap *pgmap)
422{
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100423 resource_size_t phys = PFN_PHYS(pfn);
424
425 /*
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100426 * In the cached case we're already holding a live reference.
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100427 */
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100428 if (pgmap) {
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100429 if (phys >= pgmap->res.start && phys <= pgmap->res.end)
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100430 return pgmap;
431 put_dev_pagemap(pgmap);
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100432 }
433
434 /* fall back to slow path lookup */
435 rcu_read_lock();
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400436 pgmap = xa_load(&pgmap_array, PHYS_PFN(phys));
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100437 if (pgmap && !percpu_ref_tryget_live(pgmap->ref))
438 pgmap = NULL;
439 rcu_read_unlock();
440
441 return pgmap;
442}
Dan Williamse76384882018-05-16 11:46:08 -0700443EXPORT_SYMBOL_GPL(get_dev_pagemap);
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700444
Dan Williamse76384882018-05-16 11:46:08 -0700445#ifdef CONFIG_DEV_PAGEMAP_OPS
John Hubbard07d80262020-01-30 22:12:28 -0800446void free_devmap_managed_page(struct page *page)
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700447{
Dan Williams429589d2020-01-30 22:12:24 -0800448 /* notify page idle for dax */
449 if (!is_device_private_page(page)) {
450 wake_up_var(&page->_refcount);
451 return;
452 }
453
454 /* Clear Active bit in case of parallel mark_page_accessed */
455 __ClearPageActive(page);
456 __ClearPageWaiters(page);
457
458 mem_cgroup_uncharge(page);
459
460 /*
461 * When a device_private page is freed, the page->mapping field
462 * may still contain a (stale) mapping value. For example, the
463 * lower bits of page->mapping may still identify the page as an
464 * anonymous page. Ultimately, this entire field is just stale
465 * and wrong, and it will cause errors if not cleared. One
466 * example is:
467 *
468 * migrate_vma_pages()
469 * migrate_vma_insert_page()
470 * page_add_new_anon_rmap()
471 * __page_set_anon_rmap()
472 * ...checks page->mapping, via PageAnon(page) call,
473 * and incorrectly concludes that the page is an
474 * anonymous page. Therefore, it incorrectly,
475 * silently fails to set up the new anon rmap.
476 *
477 * For other types of ZONE_DEVICE pages, migration is either
478 * handled differently or not done at all, so there is no need
479 * to clear page->mapping.
480 */
481 page->mapping = NULL;
482 page->pgmap->ops->page_free(page);
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700483}
Dan Williamse76384882018-05-16 11:46:08 -0700484#endif /* CONFIG_DEV_PAGEMAP_OPS */