blob: ed70c4e8e52a505f431fdeefaf209694a4b03093 [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#define SECTION_MASK ~((1UL << PA_SECTION_SHIFT) - 1)
17#define SECTION_SIZE (1UL << PA_SECTION_SHIFT)
18
Christoph Hellwigf6a55e12019-06-26 14:27:10 +020019#ifdef CONFIG_DEV_PAGEMAP_OPS
20DEFINE_STATIC_KEY_FALSE(devmap_managed_key);
21EXPORT_SYMBOL(devmap_managed_key);
22static atomic_t devmap_managed_enable;
23
24static void devmap_managed_enable_put(void *data)
25{
26 if (atomic_dec_and_test(&devmap_managed_enable))
27 static_branch_disable(&devmap_managed_key);
28}
29
30static int devmap_managed_enable_get(struct device *dev, struct dev_pagemap *pgmap)
31{
Christoph Hellwig24917f62019-06-26 14:27:14 +020032 if (!pgmap->ops || !pgmap->ops->page_free) {
Christoph Hellwigf6a55e12019-06-26 14:27:10 +020033 WARN(1, "Missing page_free method\n");
34 return -EINVAL;
35 }
36
37 if (atomic_inc_return(&devmap_managed_enable) == 1)
38 static_branch_enable(&devmap_managed_key);
39 return devm_add_action_or_reset(dev, devmap_managed_enable_put, NULL);
40}
41#else
42static int devmap_managed_enable_get(struct device *dev, struct dev_pagemap *pgmap)
43{
44 return -EINVAL;
45}
46#endif /* CONFIG_DEV_PAGEMAP_OPS */
47
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -040048static void pgmap_array_delete(struct resource *res)
Christoph Hellwig41e94a82015-08-17 16:00:35 +020049{
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -040050 xa_store_range(&pgmap_array, PHYS_PFN(res->start), PHYS_PFN(res->end),
51 NULL, GFP_KERNEL);
Dan Williamsab1b5972017-09-06 16:24:13 -070052 synchronize_rcu();
Dan Williams9476df72016-01-15 16:56:19 -080053}
54
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010055static unsigned long pfn_first(struct dev_pagemap *pgmap)
Dan Williams5c2c2582016-01-15 16:56:49 -080056{
Dan Williams7cc78672019-07-18 15:58:33 -070057 return PHYS_PFN(pgmap->res.start) +
Christoph Hellwig514caf22019-06-26 14:27:13 +020058 vmem_altmap_offset(pgmap_altmap(pgmap));
Dan Williams5c2c2582016-01-15 16:56:49 -080059}
60
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010061static unsigned long pfn_end(struct dev_pagemap *pgmap)
Dan Williams5c2c2582016-01-15 16:56:49 -080062{
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010063 const struct resource *res = &pgmap->res;
Dan Williams5c2c2582016-01-15 16:56:49 -080064
65 return (res->start + resource_size(res)) >> PAGE_SHIFT;
66}
67
Dan Williams949b93252018-02-06 19:34:11 -080068static unsigned long pfn_next(unsigned long pfn)
69{
70 if (pfn % 1024 == 0)
71 cond_resched();
72 return pfn + 1;
73}
74
Dan Williams5c2c2582016-01-15 16:56:49 -080075#define for_each_device_pfn(pfn, map) \
Dan Williams949b93252018-02-06 19:34:11 -080076 for (pfn = pfn_first(map); pfn < pfn_end(map); pfn = pfn_next(pfn))
Dan Williams5c2c2582016-01-15 16:56:49 -080077
Christoph Hellwig24917f62019-06-26 14:27:14 +020078static void dev_pagemap_kill(struct dev_pagemap *pgmap)
79{
80 if (pgmap->ops && pgmap->ops->kill)
81 pgmap->ops->kill(pgmap);
82 else
83 percpu_ref_kill(pgmap->ref);
84}
85
86static void dev_pagemap_cleanup(struct dev_pagemap *pgmap)
87{
88 if (pgmap->ops && pgmap->ops->cleanup) {
89 pgmap->ops->cleanup(pgmap);
90 } else {
91 wait_for_completion(&pgmap->done);
92 percpu_ref_exit(pgmap->ref);
93 }
Dan Williams062823732019-08-08 14:43:49 -070094 /*
95 * Undo the pgmap ref assignment for the internal case as the
96 * caller may re-enable the same pgmap.
97 */
98 if (pgmap->ref == &pgmap->internal_ref)
99 pgmap->ref = NULL;
Christoph Hellwig24917f62019-06-26 14:27:14 +0200100}
101
Christoph Hellwige8d51342017-12-29 08:54:05 +0100102static void devm_memremap_pages_release(void *data)
Dan Williams9476df72016-01-15 16:56:19 -0800103{
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100104 struct dev_pagemap *pgmap = data;
Christoph Hellwige8d51342017-12-29 08:54:05 +0100105 struct device *dev = pgmap->dev;
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100106 struct resource *res = &pgmap->res;
Dan Williams71389702017-04-28 10:23:37 -0700107 unsigned long pfn;
Oscar Salvador2c2a5af2018-12-28 00:36:22 -0800108 int nid;
Dan Williams71389702017-04-28 10:23:37 -0700109
Christoph Hellwig24917f62019-06-26 14:27:14 +0200110 dev_pagemap_kill(pgmap);
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100111 for_each_device_pfn(pfn, pgmap)
Dan Williams71389702017-04-28 10:23:37 -0700112 put_page(pfn_to_page(pfn));
Christoph Hellwig24917f62019-06-26 14:27:14 +0200113 dev_pagemap_cleanup(pgmap);
Dan Williams9476df72016-01-15 16:56:19 -0800114
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200115 /* pages are dead and unused, undo the arch mapping */
Dan Williams7cc78672019-07-18 15:58:33 -0700116 nid = page_to_nid(pfn_to_page(PHYS_PFN(res->start)));
Oscar Salvador2c2a5af2018-12-28 00:36:22 -0800117
Dan Williamsf931ab42017-01-10 16:57:36 -0800118 mem_hotplug_begin();
Dan Williams69324b82018-12-28 00:35:01 -0800119 if (pgmap->type == MEMORY_DEVICE_PRIVATE) {
Dan Williams7cc78672019-07-18 15:58:33 -0700120 pfn = PHYS_PFN(res->start);
Dan Williams69324b82018-12-28 00:35:01 -0800121 __remove_pages(page_zone(pfn_to_page(pfn)), pfn,
Dan Williams7cc78672019-07-18 15:58:33 -0700122 PHYS_PFN(resource_size(res)), NULL);
Dan Williams69324b82018-12-28 00:35:01 -0800123 } else {
Dan Williams7cc78672019-07-18 15:58:33 -0700124 arch_remove_memory(nid, res->start, resource_size(res),
Christoph Hellwig514caf22019-06-26 14:27:13 +0200125 pgmap_altmap(pgmap));
Dan Williams7cc78672019-07-18 15:58:33 -0700126 kasan_remove_zero_shadow(__va(res->start), resource_size(res));
Dan Williams69324b82018-12-28 00:35:01 -0800127 }
Dan Williamsf931ab42017-01-10 16:57:36 -0800128 mem_hotplug_done();
Dan Williamsb5d24fd2017-02-24 14:55:45 -0800129
Dan Williams7cc78672019-07-18 15:58:33 -0700130 untrack_pfn(NULL, PHYS_PFN(res->start), resource_size(res));
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400131 pgmap_array_delete(res);
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100132 dev_WARN_ONCE(dev, pgmap->altmap.alloc,
133 "%s: failed to free all reserved pages\n", __func__);
Dan Williams9476df72016-01-15 16:56:19 -0800134}
135
Christoph Hellwig24917f62019-06-26 14:27:14 +0200136static void dev_pagemap_percpu_release(struct percpu_ref *ref)
137{
138 struct dev_pagemap *pgmap =
139 container_of(ref, struct dev_pagemap, internal_ref);
140
141 complete(&pgmap->done);
142}
143
Dan Williams4b94ffd2016-01-15 16:56:22 -0800144/**
145 * devm_memremap_pages - remap and provide memmap backing for the given resource
146 * @dev: hosting device for @res
Dan Williamsa95c90f2018-12-28 00:34:57 -0800147 * @pgmap: pointer to a struct dev_pagemap
Dan Williams4b94ffd2016-01-15 16:56:22 -0800148 *
Dan Williams5c2c2582016-01-15 16:56:49 -0800149 * Notes:
Christoph Hellwig24917f62019-06-26 14:27:14 +0200150 * 1/ At a minimum the res and type members of @pgmap must be initialized
151 * by the caller before passing it to this function
Christoph Hellwige8d51342017-12-29 08:54:05 +0100152 *
Christoph Hellwig514caf22019-06-26 14:27:13 +0200153 * 2/ The altmap field may optionally be initialized, in which case
154 * PGMAP_ALTMAP_VALID must be set in pgmap->flags.
Christoph Hellwige8d51342017-12-29 08:54:05 +0100155 *
Christoph Hellwig24917f62019-06-26 14:27:14 +0200156 * 3/ The ref field may optionally be provided, in which pgmap->ref must be
157 * 'live' on entry and will be killed and reaped at
158 * devm_memremap_pages_release() time, or if this routine fails.
Dan Williams5c2c2582016-01-15 16:56:49 -0800159 *
Christoph Hellwige8d51342017-12-29 08:54:05 +0100160 * 4/ res is expected to be a host memory range that could feasibly be
Dan Williams5c2c2582016-01-15 16:56:49 -0800161 * treated as a "System RAM" range, i.e. not a device mmio range, but
162 * this is not enforced.
Dan Williams4b94ffd2016-01-15 16:56:22 -0800163 */
Christoph Hellwige8d51342017-12-29 08:54:05 +0100164void *devm_memremap_pages(struct device *dev, struct dev_pagemap *pgmap)
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200165{
Dan Williams949b93252018-02-06 19:34:11 -0800166 struct resource *res = &pgmap->res;
Dave Jiang15d36fe2018-07-26 16:37:15 -0700167 struct dev_pagemap *conflict_pgmap;
Michal Hocko940519f2019-05-13 17:21:26 -0700168 struct mhp_restrictions restrictions = {
169 /*
170 * We do not want any optional features only our own memmap
Dan Williams7cc78672019-07-18 15:58:33 -0700171 */
Christoph Hellwig514caf22019-06-26 14:27:13 +0200172 .altmap = pgmap_altmap(pgmap),
Michal Hocko940519f2019-05-13 17:21:26 -0700173 };
Alexander Duyck966cf442018-10-26 15:07:52 -0700174 pgprot_t pgprot = PAGE_KERNEL;
Alexander Duyck966cf442018-10-26 15:07:52 -0700175 int error, nid, is_ram;
Christoph Hellwigf6a55e12019-06-26 14:27:10 +0200176 bool need_devmap_managed = true;
Dan Williams5f29a772016-03-09 14:08:13 -0800177
Christoph Hellwig3ed2dcd2019-06-26 14:27:07 +0200178 switch (pgmap->type) {
179 case MEMORY_DEVICE_PRIVATE:
180 if (!IS_ENABLED(CONFIG_DEVICE_PRIVATE)) {
181 WARN(1, "Device private memory not supported\n");
182 return ERR_PTR(-EINVAL);
183 }
Christoph Hellwig897e6362019-06-26 14:27:11 +0200184 if (!pgmap->ops || !pgmap->ops->migrate_to_ram) {
185 WARN(1, "Missing migrate_to_ram method\n");
186 return ERR_PTR(-EINVAL);
187 }
Christoph Hellwig3ed2dcd2019-06-26 14:27:07 +0200188 break;
189 case MEMORY_DEVICE_FS_DAX:
190 if (!IS_ENABLED(CONFIG_ZONE_DEVICE) ||
191 IS_ENABLED(CONFIG_FS_DAX_LIMITED)) {
192 WARN(1, "File system DAX not supported\n");
193 return ERR_PTR(-EINVAL);
194 }
195 break;
196 case MEMORY_DEVICE_DEVDAX:
197 case MEMORY_DEVICE_PCI_P2PDMA:
Christoph Hellwigf6a55e12019-06-26 14:27:10 +0200198 need_devmap_managed = false;
Christoph Hellwig3ed2dcd2019-06-26 14:27:07 +0200199 break;
200 default:
201 WARN(1, "Invalid pgmap type %d\n", pgmap->type);
202 break;
203 }
204
Christoph Hellwig24917f62019-06-26 14:27:14 +0200205 if (!pgmap->ref) {
206 if (pgmap->ops && (pgmap->ops->kill || pgmap->ops->cleanup))
207 return ERR_PTR(-EINVAL);
208
209 init_completion(&pgmap->done);
210 error = percpu_ref_init(&pgmap->internal_ref,
211 dev_pagemap_percpu_release, 0, GFP_KERNEL);
212 if (error)
213 return ERR_PTR(error);
214 pgmap->ref = &pgmap->internal_ref;
215 } else {
216 if (!pgmap->ops || !pgmap->ops->kill || !pgmap->ops->cleanup) {
217 WARN(1, "Missing reference count teardown definition\n");
218 return ERR_PTR(-EINVAL);
219 }
Dan Williams50f44ee2019-06-13 15:56:33 -0700220 }
Dan Williamsa95c90f2018-12-28 00:34:57 -0800221
Christoph Hellwigf6a55e12019-06-26 14:27:10 +0200222 if (need_devmap_managed) {
223 error = devmap_managed_enable_get(dev, pgmap);
224 if (error)
225 return ERR_PTR(error);
226 }
227
Dan Williams7cc78672019-07-18 15:58:33 -0700228 conflict_pgmap = get_dev_pagemap(PHYS_PFN(res->start), NULL);
Dave Jiang15d36fe2018-07-26 16:37:15 -0700229 if (conflict_pgmap) {
230 dev_WARN(dev, "Conflicting mapping in same section\n");
231 put_dev_pagemap(conflict_pgmap);
Dan Williams50f44ee2019-06-13 15:56:33 -0700232 error = -ENOMEM;
233 goto err_array;
Dave Jiang15d36fe2018-07-26 16:37:15 -0700234 }
235
Dan Williams7cc78672019-07-18 15:58:33 -0700236 conflict_pgmap = get_dev_pagemap(PHYS_PFN(res->end), NULL);
Dave Jiang15d36fe2018-07-26 16:37:15 -0700237 if (conflict_pgmap) {
238 dev_WARN(dev, "Conflicting mapping in same section\n");
239 put_dev_pagemap(conflict_pgmap);
Dan Williams50f44ee2019-06-13 15:56:33 -0700240 error = -ENOMEM;
241 goto err_array;
Dave Jiang15d36fe2018-07-26 16:37:15 -0700242 }
243
Dan Williams7cc78672019-07-18 15:58:33 -0700244 is_ram = region_intersects(res->start, resource_size(res),
Linus Torvaldsd37a14bb2016-03-14 15:15:51 -0700245 IORESOURCE_SYSTEM_RAM, IORES_DESC_NONE);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200246
Dan Williams06489cf2018-12-28 00:34:54 -0800247 if (is_ram != REGION_DISJOINT) {
248 WARN_ONCE(1, "%s attempted on %s region %pr\n", __func__,
249 is_ram == REGION_MIXED ? "mixed" : "ram", res);
Dan Williamsa95c90f2018-12-28 00:34:57 -0800250 error = -ENXIO;
251 goto err_array;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200252 }
253
Dan Williams4b94ffd2016-01-15 16:56:22 -0800254 pgmap->dev = dev;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800255
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400256 error = xa_err(xa_store_range(&pgmap_array, PHYS_PFN(res->start),
257 PHYS_PFN(res->end), pgmap, GFP_KERNEL));
Dan Williams9476df72016-01-15 16:56:19 -0800258 if (error)
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400259 goto err_array;
Dan Williams9476df72016-01-15 16:56:19 -0800260
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200261 nid = dev_to_node(dev);
262 if (nid < 0)
Dan Williams7eff93b2015-10-05 20:35:55 -0400263 nid = numa_mem_id();
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200264
Dan Williams7cc78672019-07-18 15:58:33 -0700265 error = track_pfn_remap(NULL, &pgprot, PHYS_PFN(res->start), 0,
266 resource_size(res));
Dan Williams90497712016-09-07 08:51:21 -0700267 if (error)
268 goto err_pfn_remap;
269
Dan Williamsf931ab42017-01-10 16:57:36 -0800270 mem_hotplug_begin();
Dan Williams69324b82018-12-28 00:35:01 -0800271
272 /*
273 * For device private memory we call add_pages() as we only need to
274 * allocate and initialize struct page for the device memory. More-
275 * over the device memory is un-accessible thus we do not want to
276 * create a linear mapping for the memory like arch_add_memory()
277 * would do.
278 *
279 * For all other device memory types, which are accessible by
280 * the CPU, we do want the linear mapping and thus use
281 * arch_add_memory().
282 */
283 if (pgmap->type == MEMORY_DEVICE_PRIVATE) {
Dan Williams7cc78672019-07-18 15:58:33 -0700284 error = add_pages(nid, PHYS_PFN(res->start),
285 PHYS_PFN(resource_size(res)), &restrictions);
Dan Williams69324b82018-12-28 00:35:01 -0800286 } else {
Dan Williams7cc78672019-07-18 15:58:33 -0700287 error = kasan_add_zero_shadow(__va(res->start), resource_size(res));
Dan Williams69324b82018-12-28 00:35:01 -0800288 if (error) {
289 mem_hotplug_done();
290 goto err_kasan;
291 }
292
Dan Williams7cc78672019-07-18 15:58:33 -0700293 error = arch_add_memory(nid, res->start, resource_size(res),
Michal Hocko940519f2019-05-13 17:21:26 -0700294 &restrictions);
Andrey Ryabinin0207df42018-08-17 15:47:04 -0700295 }
296
Dan Williams69324b82018-12-28 00:35:01 -0800297 if (!error) {
298 struct zone *zone;
299
300 zone = &NODE_DATA(nid)->node_zones[ZONE_DEVICE];
Dan Williams7cc78672019-07-18 15:58:33 -0700301 move_pfn_range_to_zone(zone, PHYS_PFN(res->start),
302 PHYS_PFN(resource_size(res)), restrictions.altmap);
Dan Williams69324b82018-12-28 00:35:01 -0800303 }
304
Dan Williamsf931ab42017-01-10 16:57:36 -0800305 mem_hotplug_done();
Dan Williams9476df72016-01-15 16:56:19 -0800306 if (error)
307 goto err_add_memory;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200308
Alexander Duyck966cf442018-10-26 15:07:52 -0700309 /*
310 * Initialization of the pages has been deferred until now in order
311 * to allow us to do the work while not holding the hotplug lock.
312 */
313 memmap_init_zone_device(&NODE_DATA(nid)->node_zones[ZONE_DEVICE],
Dan Williams7cc78672019-07-18 15:58:33 -0700314 PHYS_PFN(res->start),
315 PHYS_PFN(resource_size(res)), pgmap);
Alexander Duyck966cf442018-10-26 15:07:52 -0700316 percpu_ref_get_many(pgmap->ref, pfn_end(pgmap) - pfn_first(pgmap));
Christoph Hellwige8d51342017-12-29 08:54:05 +0100317
Dan Williamsa95c90f2018-12-28 00:34:57 -0800318 error = devm_add_action_or_reset(dev, devm_memremap_pages_release,
319 pgmap);
320 if (error)
321 return ERR_PTR(error);
Christoph Hellwige8d51342017-12-29 08:54:05 +0100322
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200323 return __va(res->start);
Dan Williams9476df72016-01-15 16:56:19 -0800324
325 err_add_memory:
Dan Williams7cc78672019-07-18 15:58:33 -0700326 kasan_remove_zero_shadow(__va(res->start), resource_size(res));
Andrey Ryabinin0207df42018-08-17 15:47:04 -0700327 err_kasan:
Dan Williams7cc78672019-07-18 15:58:33 -0700328 untrack_pfn(NULL, PHYS_PFN(res->start), resource_size(res));
Dan Williams90497712016-09-07 08:51:21 -0700329 err_pfn_remap:
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400330 pgmap_array_delete(res);
331 err_array:
Christoph Hellwig24917f62019-06-26 14:27:14 +0200332 dev_pagemap_kill(pgmap);
333 dev_pagemap_cleanup(pgmap);
Dan Williams9476df72016-01-15 16:56:19 -0800334 return ERR_PTR(error);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200335}
Dan Williams808153e2018-12-28 00:34:50 -0800336EXPORT_SYMBOL_GPL(devm_memremap_pages);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800337
Dan Williams2e3f1392019-06-13 15:56:21 -0700338void devm_memunmap_pages(struct device *dev, struct dev_pagemap *pgmap)
339{
340 devm_release_action(dev, devm_memremap_pages_release, pgmap);
341}
342EXPORT_SYMBOL_GPL(devm_memunmap_pages);
343
Dan Williams4b94ffd2016-01-15 16:56:22 -0800344unsigned long vmem_altmap_offset(struct vmem_altmap *altmap)
345{
346 /* number of pfns from base where pfn_to_page() is valid */
Christoph Hellwig514caf22019-06-26 14:27:13 +0200347 if (altmap)
348 return altmap->reserve + altmap->free;
349 return 0;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800350}
351
352void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns)
353{
354 altmap->alloc -= nr_pfns;
355}
356
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100357/**
358 * get_dev_pagemap() - take a new live reference on the dev_pagemap for @pfn
359 * @pfn: page frame number to lookup page_map
360 * @pgmap: optional known pgmap that already has a reference
361 *
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100362 * If @pgmap is non-NULL and covers @pfn it will be returned as-is. If @pgmap
363 * is non-NULL but does not cover @pfn the reference to it will be released.
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100364 */
365struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
366 struct dev_pagemap *pgmap)
367{
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100368 resource_size_t phys = PFN_PHYS(pfn);
369
370 /*
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100371 * In the cached case we're already holding a live reference.
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100372 */
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100373 if (pgmap) {
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100374 if (phys >= pgmap->res.start && phys <= pgmap->res.end)
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100375 return pgmap;
376 put_dev_pagemap(pgmap);
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100377 }
378
379 /* fall back to slow path lookup */
380 rcu_read_lock();
Matthew Wilcoxbcfa4b72018-08-15 14:22:16 -0400381 pgmap = xa_load(&pgmap_array, PHYS_PFN(phys));
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100382 if (pgmap && !percpu_ref_tryget_live(pgmap->ref))
383 pgmap = NULL;
384 rcu_read_unlock();
385
386 return pgmap;
387}
Dan Williamse76384882018-05-16 11:46:08 -0700388EXPORT_SYMBOL_GPL(get_dev_pagemap);
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700389
Dan Williamse76384882018-05-16 11:46:08 -0700390#ifdef CONFIG_DEV_PAGEMAP_OPS
Dan Williamse76384882018-05-16 11:46:08 -0700391void __put_devmap_managed_page(struct page *page)
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700392{
393 int count = page_ref_dec_return(page);
394
395 /*
396 * If refcount is 1 then page is freed and refcount is stable as nobody
397 * holds a reference on the page.
398 */
399 if (count == 1) {
400 /* Clear Active bit in case of parallel mark_page_accessed */
401 __ClearPageActive(page);
402 __ClearPageWaiters(page);
403
Jérôme Glissec733a822017-09-08 16:11:54 -0700404 mem_cgroup_uncharge(page);
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700405
Ralph Campbell7ab0ad02019-08-13 15:37:07 -0700406 /*
407 * When a device_private page is freed, the page->mapping field
408 * may still contain a (stale) mapping value. For example, the
409 * lower bits of page->mapping may still identify the page as
410 * an anonymous page. Ultimately, this entire field is just
411 * stale and wrong, and it will cause errors if not cleared.
412 * One example is:
413 *
414 * migrate_vma_pages()
415 * migrate_vma_insert_page()
416 * page_add_new_anon_rmap()
417 * __page_set_anon_rmap()
418 * ...checks page->mapping, via PageAnon(page) call,
419 * and incorrectly concludes that the page is an
420 * anonymous page. Therefore, it incorrectly,
421 * silently fails to set up the new anon rmap.
422 *
423 * For other types of ZONE_DEVICE pages, migration is either
424 * handled differently or not done at all, so there is no need
425 * to clear page->mapping.
426 */
427 if (is_device_private_page(page))
428 page->mapping = NULL;
429
Christoph Hellwig80a72d02019-06-26 14:27:12 +0200430 page->pgmap->ops->page_free(page);
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700431 } else if (!count)
432 __put_page(page);
433}
Dan Williams31c5bda2018-07-26 16:37:22 -0700434EXPORT_SYMBOL(__put_devmap_managed_page);
Dan Williamse76384882018-05-16 11:46:08 -0700435#endif /* CONFIG_DEV_PAGEMAP_OPS */