blob: 09b5b7adc7731b22076238ebd00ff1653d6d7f44 [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>
10#include <linux/swapops.h>
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -040011#include <linux/types.h>
Dan Williamse76384882018-05-16 11:46:08 -070012#include <linux/wait_bit.h>
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -040013#include <linux/xarray.h>
Dan Williams92281dee2015-08-10 23:07:06 -040014
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -040015static DEFINE_XARRAY(pgmap_array);
Dan Williams9476df72016-01-15 16:56:19 -080016
Christoph Hellwigf6a55e12019-06-26 14:27:10 +020017#ifdef CONFIG_DEV_PAGEMAP_OPS
18DEFINE_STATIC_KEY_FALSE(devmap_managed_key);
19EXPORT_SYMBOL(devmap_managed_key);
20static atomic_t devmap_managed_enable;
21
Christoph Hellwig6f421932019-08-18 11:05:56 +020022static void devmap_managed_enable_put(void)
Christoph Hellwigf6a55e12019-06-26 14:27:10 +020023{
24 if (atomic_dec_and_test(&devmap_managed_enable))
25 static_branch_disable(&devmap_managed_key);
26}
27
Christoph Hellwig6f421932019-08-18 11:05:56 +020028static int devmap_managed_enable_get(struct dev_pagemap *pgmap)
Christoph Hellwigf6a55e12019-06-26 14:27:10 +020029{
Dan Williams429589d2020-01-30 22:12:24 -080030 if (pgmap->type == MEMORY_DEVICE_PRIVATE &&
31 (!pgmap->ops || !pgmap->ops->page_free)) {
Christoph Hellwigf6a55e12019-06-26 14:27:10 +020032 WARN(1, "Missing page_free method\n");
33 return -EINVAL;
34 }
35
36 if (atomic_inc_return(&devmap_managed_enable) == 1)
37 static_branch_enable(&devmap_managed_key);
Christoph Hellwig6f421932019-08-18 11:05:56 +020038 return 0;
Christoph Hellwigf6a55e12019-06-26 14:27:10 +020039}
40#else
Christoph Hellwig6f421932019-08-18 11:05:56 +020041static int devmap_managed_enable_get(struct dev_pagemap *pgmap)
Christoph Hellwigf6a55e12019-06-26 14:27:10 +020042{
43 return -EINVAL;
44}
Christoph Hellwig6f421932019-08-18 11:05:56 +020045static void devmap_managed_enable_put(void)
46{
47}
Christoph Hellwigf6a55e12019-06-26 14:27:10 +020048#endif /* CONFIG_DEV_PAGEMAP_OPS */
49
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -040050static void pgmap_array_delete(struct resource *res)
Christoph Hellwig41e94a82015-08-17 16:00:35 +020051{
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -040052 xa_store_range(&pgmap_array, PHYS_PFN(res->start), PHYS_PFN(res->end),
53 NULL, GFP_KERNEL);
Dan Williamsab1b5972017-09-06 16:24:13 -070054 synchronize_rcu();
Dan Williams9476df72016-01-15 16:56:19 -080055}
56
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010057static unsigned long pfn_first(struct dev_pagemap *pgmap)
Dan Williams5c2c2582016-01-15 16:56:49 -080058{
Dan Williams7cc78672019-07-18 15:58:33 -070059 return PHYS_PFN(pgmap->res.start) +
Christoph Hellwig514caf22019-06-26 14:27:13 +020060 vmem_altmap_offset(pgmap_altmap(pgmap));
Dan Williams5c2c2582016-01-15 16:56:49 -080061}
62
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010063static unsigned long pfn_end(struct dev_pagemap *pgmap)
Dan Williams5c2c2582016-01-15 16:56:49 -080064{
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010065 const struct resource *res = &pgmap->res;
Dan Williams5c2c2582016-01-15 16:56:49 -080066
67 return (res->start + resource_size(res)) >> PAGE_SHIFT;
68}
69
Dan Williams949b93252018-02-06 19:34:11 -080070static unsigned long pfn_next(unsigned long pfn)
71{
72 if (pfn % 1024 == 0)
73 cond_resched();
74 return pfn + 1;
75}
76
Dan Williams5c2c2582016-01-15 16:56:49 -080077#define for_each_device_pfn(pfn, map) \
Dan Williams949b93252018-02-06 19:34:11 -080078 for (pfn = pfn_first(map); pfn < pfn_end(map); pfn = pfn_next(pfn))
Dan Williams5c2c2582016-01-15 16:56:49 -080079
Christoph Hellwig24917f62019-06-26 14:27:14 +020080static void dev_pagemap_kill(struct dev_pagemap *pgmap)
81{
82 if (pgmap->ops && pgmap->ops->kill)
83 pgmap->ops->kill(pgmap);
84 else
85 percpu_ref_kill(pgmap->ref);
86}
87
88static void dev_pagemap_cleanup(struct dev_pagemap *pgmap)
89{
90 if (pgmap->ops && pgmap->ops->cleanup) {
91 pgmap->ops->cleanup(pgmap);
92 } else {
93 wait_for_completion(&pgmap->done);
94 percpu_ref_exit(pgmap->ref);
95 }
Dan Williams062823732019-08-08 14:43:49 -070096 /*
97 * Undo the pgmap ref assignment for the internal case as the
98 * caller may re-enable the same pgmap.
99 */
100 if (pgmap->ref == &pgmap->internal_ref)
101 pgmap->ref = NULL;
Christoph Hellwig24917f62019-06-26 14:27:14 +0200102}
103
Christoph Hellwig6869b7b2019-08-18 11:05:57 +0200104void memunmap_pages(struct dev_pagemap *pgmap)
Dan Williams9476df72016-01-15 16:56:19 -0800105{
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100106 struct resource *res = &pgmap->res;
Aneesh Kumar K.V77e080e2019-10-18 20:19:39 -0700107 struct page *first_page;
Dan Williams71389702017-04-28 10:23:37 -0700108 unsigned long pfn;
Oscar Salvador2c2a5af2018-12-28 00:36:22 -0800109 int nid;
Dan Williams71389702017-04-28 10:23:37 -0700110
Christoph Hellwig24917f62019-06-26 14:27:14 +0200111 dev_pagemap_kill(pgmap);
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100112 for_each_device_pfn(pfn, pgmap)
Dan Williams71389702017-04-28 10:23:37 -0700113 put_page(pfn_to_page(pfn));
Christoph Hellwig24917f62019-06-26 14:27:14 +0200114 dev_pagemap_cleanup(pgmap);
Dan Williams9476df72016-01-15 16:56:19 -0800115
Aneesh Kumar K.V77e080e2019-10-18 20:19:39 -0700116 /* make sure to access a memmap that was actually initialized */
117 first_page = pfn_to_page(pfn_first(pgmap));
118
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200119 /* pages are dead and unused, undo the arch mapping */
Aneesh Kumar K.V77e080e2019-10-18 20:19:39 -0700120 nid = page_to_nid(first_page);
Oscar Salvador2c2a5af2018-12-28 00:36:22 -0800121
Dan Williamsf931ab42017-01-10 16:57:36 -0800122 mem_hotplug_begin();
David Hildenbrandd33695b2020-02-03 17:34:09 -0800123 remove_pfn_range_from_zone(page_zone(first_page), PHYS_PFN(res->start),
124 PHYS_PFN(resource_size(res)));
Dan Williams69324b82018-12-28 00:35:01 -0800125 if (pgmap->type == MEMORY_DEVICE_PRIVATE) {
David Hildenbrandfeee6b22020-01-04 12:59:33 -0800126 __remove_pages(PHYS_PFN(res->start),
Aneesh Kumar K.V77e080e2019-10-18 20:19:39 -0700127 PHYS_PFN(resource_size(res)), NULL);
Dan Williams69324b82018-12-28 00:35:01 -0800128 } else {
Dan Williams7cc78672019-07-18 15:58:33 -0700129 arch_remove_memory(nid, res->start, resource_size(res),
Christoph Hellwig514caf22019-06-26 14:27:13 +0200130 pgmap_altmap(pgmap));
Dan Williams7cc78672019-07-18 15:58:33 -0700131 kasan_remove_zero_shadow(__va(res->start), resource_size(res));
Dan Williams69324b82018-12-28 00:35:01 -0800132 }
Dan Williamsf931ab42017-01-10 16:57:36 -0800133 mem_hotplug_done();
Dan Williamsb5d24fd2017-02-24 14:55:45 -0800134
Dan Williams7cc78672019-07-18 15:58:33 -0700135 untrack_pfn(NULL, PHYS_PFN(res->start), resource_size(res));
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400136 pgmap_array_delete(res);
Christoph Hellwigfdc029b2019-08-18 11:05:55 +0200137 WARN_ONCE(pgmap->altmap.alloc, "failed to free all reserved pages\n");
Christoph Hellwig6f421932019-08-18 11:05:56 +0200138 devmap_managed_enable_put();
Dan Williams9476df72016-01-15 16:56:19 -0800139}
Christoph Hellwig6869b7b2019-08-18 11:05:57 +0200140EXPORT_SYMBOL_GPL(memunmap_pages);
141
142static void devm_memremap_pages_release(void *data)
143{
144 memunmap_pages(data);
145}
Dan Williams9476df72016-01-15 16:56:19 -0800146
Christoph Hellwig24917f62019-06-26 14:27:14 +0200147static void dev_pagemap_percpu_release(struct percpu_ref *ref)
148{
149 struct dev_pagemap *pgmap =
150 container_of(ref, struct dev_pagemap, internal_ref);
151
152 complete(&pgmap->done);
153}
154
Christoph Hellwig6869b7b2019-08-18 11:05:57 +0200155/*
156 * Not device managed version of dev_memremap_pages, undone by
157 * memunmap_pages(). Please use dev_memremap_pages if you have a struct
158 * device available.
Dan Williams4b94ffd2016-01-15 16:56:22 -0800159 */
Christoph Hellwig6869b7b2019-08-18 11:05:57 +0200160void *memremap_pages(struct dev_pagemap *pgmap, int nid)
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200161{
Dan Williams949b93252018-02-06 19:34:11 -0800162 struct resource *res = &pgmap->res;
Dave Jiang15d36fe2018-07-26 16:37:15 -0700163 struct dev_pagemap *conflict_pgmap;
Michal Hocko940519f2019-05-13 17:21:26 -0700164 struct mhp_restrictions restrictions = {
165 /*
166 * We do not want any optional features only our own memmap
Dan Williams7cc78672019-07-18 15:58:33 -0700167 */
Christoph Hellwig514caf22019-06-26 14:27:13 +0200168 .altmap = pgmap_altmap(pgmap),
Michal Hocko940519f2019-05-13 17:21:26 -0700169 };
Alexander Duyck966cf442018-10-26 15:07:52 -0700170 pgprot_t pgprot = PAGE_KERNEL;
Christoph Hellwig6869b7b2019-08-18 11:05:57 +0200171 int error, is_ram;
Christoph Hellwigf6a55e12019-06-26 14:27:10 +0200172 bool need_devmap_managed = true;
Dan Williams5f29a772016-03-09 14:08:13 -0800173
Christoph Hellwig3ed2dcd2019-06-26 14:27:07 +0200174 switch (pgmap->type) {
175 case MEMORY_DEVICE_PRIVATE:
176 if (!IS_ENABLED(CONFIG_DEVICE_PRIVATE)) {
177 WARN(1, "Device private memory not supported\n");
178 return ERR_PTR(-EINVAL);
179 }
Christoph Hellwig897e6362019-06-26 14:27:11 +0200180 if (!pgmap->ops || !pgmap->ops->migrate_to_ram) {
181 WARN(1, "Missing migrate_to_ram method\n");
182 return ERR_PTR(-EINVAL);
183 }
Christoph Hellwig3ed2dcd2019-06-26 14:27:07 +0200184 break;
185 case MEMORY_DEVICE_FS_DAX:
186 if (!IS_ENABLED(CONFIG_ZONE_DEVICE) ||
187 IS_ENABLED(CONFIG_FS_DAX_LIMITED)) {
188 WARN(1, "File system DAX not supported\n");
189 return ERR_PTR(-EINVAL);
190 }
191 break;
192 case MEMORY_DEVICE_DEVDAX:
193 case MEMORY_DEVICE_PCI_P2PDMA:
Christoph Hellwigf6a55e12019-06-26 14:27:10 +0200194 need_devmap_managed = false;
Christoph Hellwig3ed2dcd2019-06-26 14:27:07 +0200195 break;
196 default:
197 WARN(1, "Invalid pgmap type %d\n", pgmap->type);
198 break;
199 }
200
Christoph Hellwig24917f62019-06-26 14:27:14 +0200201 if (!pgmap->ref) {
202 if (pgmap->ops && (pgmap->ops->kill || pgmap->ops->cleanup))
203 return ERR_PTR(-EINVAL);
204
205 init_completion(&pgmap->done);
206 error = percpu_ref_init(&pgmap->internal_ref,
207 dev_pagemap_percpu_release, 0, GFP_KERNEL);
208 if (error)
209 return ERR_PTR(error);
210 pgmap->ref = &pgmap->internal_ref;
211 } else {
212 if (!pgmap->ops || !pgmap->ops->kill || !pgmap->ops->cleanup) {
213 WARN(1, "Missing reference count teardown definition\n");
214 return ERR_PTR(-EINVAL);
215 }
Dan Williams50f44ee2019-06-13 15:56:33 -0700216 }
Dan Williamsa95c90f2018-12-28 00:34:57 -0800217
Christoph Hellwigf6a55e12019-06-26 14:27:10 +0200218 if (need_devmap_managed) {
Christoph Hellwig6f421932019-08-18 11:05:56 +0200219 error = devmap_managed_enable_get(pgmap);
Christoph Hellwigf6a55e12019-06-26 14:27:10 +0200220 if (error)
221 return ERR_PTR(error);
222 }
223
Dan Williams7cc78672019-07-18 15:58:33 -0700224 conflict_pgmap = get_dev_pagemap(PHYS_PFN(res->start), NULL);
Dave Jiang15d36fe2018-07-26 16:37:15 -0700225 if (conflict_pgmap) {
Christoph Hellwig6869b7b2019-08-18 11:05:57 +0200226 WARN(1, "Conflicting mapping in same section\n");
Dave Jiang15d36fe2018-07-26 16:37:15 -0700227 put_dev_pagemap(conflict_pgmap);
Dan Williams50f44ee2019-06-13 15:56:33 -0700228 error = -ENOMEM;
229 goto err_array;
Dave Jiang15d36fe2018-07-26 16:37:15 -0700230 }
231
Dan Williams7cc78672019-07-18 15:58:33 -0700232 conflict_pgmap = get_dev_pagemap(PHYS_PFN(res->end), NULL);
Dave Jiang15d36fe2018-07-26 16:37:15 -0700233 if (conflict_pgmap) {
Christoph Hellwig6869b7b2019-08-18 11:05:57 +0200234 WARN(1, "Conflicting mapping in same section\n");
Dave Jiang15d36fe2018-07-26 16:37:15 -0700235 put_dev_pagemap(conflict_pgmap);
Dan Williams50f44ee2019-06-13 15:56:33 -0700236 error = -ENOMEM;
237 goto err_array;
Dave Jiang15d36fe2018-07-26 16:37:15 -0700238 }
239
Dan Williams7cc78672019-07-18 15:58:33 -0700240 is_ram = region_intersects(res->start, resource_size(res),
Linus Torvaldsd37a14bb2016-03-14 15:15:51 -0700241 IORESOURCE_SYSTEM_RAM, IORES_DESC_NONE);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200242
Dan Williams06489cf2018-12-28 00:34:54 -0800243 if (is_ram != REGION_DISJOINT) {
244 WARN_ONCE(1, "%s attempted on %s region %pr\n", __func__,
245 is_ram == REGION_MIXED ? "mixed" : "ram", res);
Dan Williamsa95c90f2018-12-28 00:34:57 -0800246 error = -ENXIO;
247 goto err_array;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200248 }
249
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400250 error = xa_err(xa_store_range(&pgmap_array, PHYS_PFN(res->start),
251 PHYS_PFN(res->end), pgmap, GFP_KERNEL));
Dan Williams9476df72016-01-15 16:56:19 -0800252 if (error)
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400253 goto err_array;
Dan Williams9476df72016-01-15 16:56:19 -0800254
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200255 if (nid < 0)
Dan Williams7eff93b2015-10-05 20:35:55 -0400256 nid = numa_mem_id();
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200257
Dan Williams7cc78672019-07-18 15:58:33 -0700258 error = track_pfn_remap(NULL, &pgprot, PHYS_PFN(res->start), 0,
259 resource_size(res));
Dan Williams90497712016-09-07 08:51:21 -0700260 if (error)
261 goto err_pfn_remap;
262
Dan Williamsf931ab42017-01-10 16:57:36 -0800263 mem_hotplug_begin();
Dan Williams69324b82018-12-28 00:35:01 -0800264
265 /*
266 * For device private memory we call add_pages() as we only need to
267 * allocate and initialize struct page for the device memory. More-
268 * over the device memory is un-accessible thus we do not want to
269 * create a linear mapping for the memory like arch_add_memory()
270 * would do.
271 *
272 * For all other device memory types, which are accessible by
273 * the CPU, we do want the linear mapping and thus use
274 * arch_add_memory().
275 */
276 if (pgmap->type == MEMORY_DEVICE_PRIVATE) {
Dan Williams7cc78672019-07-18 15:58:33 -0700277 error = add_pages(nid, PHYS_PFN(res->start),
278 PHYS_PFN(resource_size(res)), &restrictions);
Dan Williams69324b82018-12-28 00:35:01 -0800279 } else {
Dan Williams7cc78672019-07-18 15:58:33 -0700280 error = kasan_add_zero_shadow(__va(res->start), resource_size(res));
Dan Williams69324b82018-12-28 00:35:01 -0800281 if (error) {
282 mem_hotplug_done();
283 goto err_kasan;
284 }
285
Dan Williams7cc78672019-07-18 15:58:33 -0700286 error = arch_add_memory(nid, res->start, resource_size(res),
Michal Hocko940519f2019-05-13 17:21:26 -0700287 &restrictions);
Andrey Ryabinin0207df42018-08-17 15:47:04 -0700288 }
289
Dan Williams69324b82018-12-28 00:35:01 -0800290 if (!error) {
291 struct zone *zone;
292
293 zone = &NODE_DATA(nid)->node_zones[ZONE_DEVICE];
Dan Williams7cc78672019-07-18 15:58:33 -0700294 move_pfn_range_to_zone(zone, PHYS_PFN(res->start),
295 PHYS_PFN(resource_size(res)), restrictions.altmap);
Dan Williams69324b82018-12-28 00:35:01 -0800296 }
297
Dan Williamsf931ab42017-01-10 16:57:36 -0800298 mem_hotplug_done();
Dan Williams9476df72016-01-15 16:56:19 -0800299 if (error)
300 goto err_add_memory;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200301
Alexander Duyck966cf442018-10-26 15:07:52 -0700302 /*
303 * Initialization of the pages has been deferred until now in order
304 * to allow us to do the work while not holding the hotplug lock.
305 */
306 memmap_init_zone_device(&NODE_DATA(nid)->node_zones[ZONE_DEVICE],
Dan Williams7cc78672019-07-18 15:58:33 -0700307 PHYS_PFN(res->start),
308 PHYS_PFN(resource_size(res)), pgmap);
Alexander Duyck966cf442018-10-26 15:07:52 -0700309 percpu_ref_get_many(pgmap->ref, pfn_end(pgmap) - pfn_first(pgmap));
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200310 return __va(res->start);
Dan Williams9476df72016-01-15 16:56:19 -0800311
312 err_add_memory:
Dan Williams7cc78672019-07-18 15:58:33 -0700313 kasan_remove_zero_shadow(__va(res->start), resource_size(res));
Andrey Ryabinin0207df42018-08-17 15:47:04 -0700314 err_kasan:
Dan Williams7cc78672019-07-18 15:58:33 -0700315 untrack_pfn(NULL, PHYS_PFN(res->start), resource_size(res));
Dan Williams90497712016-09-07 08:51:21 -0700316 err_pfn_remap:
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400317 pgmap_array_delete(res);
318 err_array:
Christoph Hellwig24917f62019-06-26 14:27:14 +0200319 dev_pagemap_kill(pgmap);
320 dev_pagemap_cleanup(pgmap);
Christoph Hellwig6f421932019-08-18 11:05:56 +0200321 devmap_managed_enable_put();
Dan Williams9476df72016-01-15 16:56:19 -0800322 return ERR_PTR(error);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200323}
Christoph Hellwig6869b7b2019-08-18 11:05:57 +0200324EXPORT_SYMBOL_GPL(memremap_pages);
325
326/**
327 * devm_memremap_pages - remap and provide memmap backing for the given resource
328 * @dev: hosting device for @res
329 * @pgmap: pointer to a struct dev_pagemap
330 *
331 * Notes:
332 * 1/ At a minimum the res and type members of @pgmap must be initialized
333 * by the caller before passing it to this function
334 *
335 * 2/ The altmap field may optionally be initialized, in which case
336 * PGMAP_ALTMAP_VALID must be set in pgmap->flags.
337 *
338 * 3/ The ref field may optionally be provided, in which pgmap->ref must be
339 * 'live' on entry and will be killed and reaped at
340 * devm_memremap_pages_release() time, or if this routine fails.
341 *
342 * 4/ res is expected to be a host memory range that could feasibly be
343 * treated as a "System RAM" range, i.e. not a device mmio range, but
344 * this is not enforced.
345 */
346void *devm_memremap_pages(struct device *dev, struct dev_pagemap *pgmap)
347{
348 int error;
349 void *ret;
350
351 ret = memremap_pages(pgmap, dev_to_node(dev));
352 if (IS_ERR(ret))
353 return ret;
354
355 error = devm_add_action_or_reset(dev, devm_memremap_pages_release,
356 pgmap);
357 if (error)
358 return ERR_PTR(error);
359 return ret;
360}
Dan Williams808153e2018-12-28 00:34:50 -0800361EXPORT_SYMBOL_GPL(devm_memremap_pages);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800362
Dan Williams2e3f1392019-06-13 15:56:21 -0700363void devm_memunmap_pages(struct device *dev, struct dev_pagemap *pgmap)
364{
365 devm_release_action(dev, devm_memremap_pages_release, pgmap);
366}
367EXPORT_SYMBOL_GPL(devm_memunmap_pages);
368
Dan Williams4b94ffd2016-01-15 16:56:22 -0800369unsigned long vmem_altmap_offset(struct vmem_altmap *altmap)
370{
371 /* number of pfns from base where pfn_to_page() is valid */
Christoph Hellwig514caf22019-06-26 14:27:13 +0200372 if (altmap)
373 return altmap->reserve + altmap->free;
374 return 0;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800375}
376
377void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns)
378{
379 altmap->alloc -= nr_pfns;
380}
381
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100382/**
383 * get_dev_pagemap() - take a new live reference on the dev_pagemap for @pfn
384 * @pfn: page frame number to lookup page_map
385 * @pgmap: optional known pgmap that already has a reference
386 *
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100387 * If @pgmap is non-NULL and covers @pfn it will be returned as-is. If @pgmap
388 * is non-NULL but does not cover @pfn the reference to it will be released.
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100389 */
390struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
391 struct dev_pagemap *pgmap)
392{
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100393 resource_size_t phys = PFN_PHYS(pfn);
394
395 /*
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100396 * In the cached case we're already holding a live reference.
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100397 */
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100398 if (pgmap) {
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100399 if (phys >= pgmap->res.start && phys <= pgmap->res.end)
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100400 return pgmap;
401 put_dev_pagemap(pgmap);
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100402 }
403
404 /* fall back to slow path lookup */
405 rcu_read_lock();
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400406 pgmap = xa_load(&pgmap_array, PHYS_PFN(phys));
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100407 if (pgmap && !percpu_ref_tryget_live(pgmap->ref))
408 pgmap = NULL;
409 rcu_read_unlock();
410
411 return pgmap;
412}
Dan Williamse76384882018-05-16 11:46:08 -0700413EXPORT_SYMBOL_GPL(get_dev_pagemap);
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700414
Dan Williamse76384882018-05-16 11:46:08 -0700415#ifdef CONFIG_DEV_PAGEMAP_OPS
John Hubbard07d80262020-01-30 22:12:28 -0800416void free_devmap_managed_page(struct page *page)
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700417{
Dan Williams429589d2020-01-30 22:12:24 -0800418 /* notify page idle for dax */
419 if (!is_device_private_page(page)) {
420 wake_up_var(&page->_refcount);
421 return;
422 }
423
424 /* Clear Active bit in case of parallel mark_page_accessed */
425 __ClearPageActive(page);
426 __ClearPageWaiters(page);
427
428 mem_cgroup_uncharge(page);
429
430 /*
431 * When a device_private page is freed, the page->mapping field
432 * may still contain a (stale) mapping value. For example, the
433 * lower bits of page->mapping may still identify the page as an
434 * anonymous page. Ultimately, this entire field is just stale
435 * and wrong, and it will cause errors if not cleared. One
436 * example is:
437 *
438 * migrate_vma_pages()
439 * migrate_vma_insert_page()
440 * page_add_new_anon_rmap()
441 * __page_set_anon_rmap()
442 * ...checks page->mapping, via PageAnon(page) call,
443 * and incorrectly concludes that the page is an
444 * anonymous page. Therefore, it incorrectly,
445 * silently fails to set up the new anon rmap.
446 *
447 * For other types of ZONE_DEVICE pages, migration is either
448 * handled differently or not done at all, so there is no need
449 * to clear page->mapping.
450 */
451 page->mapping = NULL;
452 page->pgmap->ops->page_free(page);
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700453}
Dan Williamse76384882018-05-16 11:46:08 -0700454#endif /* CONFIG_DEV_PAGEMAP_OPS */