net: be2net: reject unsupported coalescing params
[linux-2.6-block.git] / mm / memremap.c
CommitLineData
5981690d
DW
1/* SPDX-License-Identifier: GPL-2.0 */
2/* Copyright(c) 2015 Intel Corporation. All rights reserved. */
7d3dcf26 3#include <linux/device.h>
92281dee 4#include <linux/io.h>
0207df4f 5#include <linux/kasan.h>
41e94a85 6#include <linux/memory_hotplug.h>
bcfa4b72
MW
7#include <linux/mm.h>
8#include <linux/pfn_t.h>
5042db43
JG
9#include <linux/swap.h>
10#include <linux/swapops.h>
bcfa4b72 11#include <linux/types.h>
e7638488 12#include <linux/wait_bit.h>
bcfa4b72 13#include <linux/xarray.h>
92281dee 14
bcfa4b72 15static DEFINE_XARRAY(pgmap_array);
9476df7d 16
f6a55e1a
CH
17#ifdef CONFIG_DEV_PAGEMAP_OPS
18DEFINE_STATIC_KEY_FALSE(devmap_managed_key);
19EXPORT_SYMBOL(devmap_managed_key);
20static atomic_t devmap_managed_enable;
21
6f42193f 22static void devmap_managed_enable_put(void)
f6a55e1a
CH
23{
24 if (atomic_dec_and_test(&devmap_managed_enable))
25 static_branch_disable(&devmap_managed_key);
26}
27
6f42193f 28static int devmap_managed_enable_get(struct dev_pagemap *pgmap)
f6a55e1a 29{
429589d6
DW
30 if (pgmap->type == MEMORY_DEVICE_PRIVATE &&
31 (!pgmap->ops || !pgmap->ops->page_free)) {
f6a55e1a
CH
32 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);
6f42193f 38 return 0;
f6a55e1a
CH
39}
40#else
6f42193f 41static int devmap_managed_enable_get(struct dev_pagemap *pgmap)
f6a55e1a
CH
42{
43 return -EINVAL;
44}
6f42193f
CH
45static void devmap_managed_enable_put(void)
46{
47}
f6a55e1a
CH
48#endif /* CONFIG_DEV_PAGEMAP_OPS */
49
bcfa4b72 50static void pgmap_array_delete(struct resource *res)
ab1b597e 51{
bcfa4b72
MW
52 xa_store_range(&pgmap_array, PHYS_PFN(res->start), PHYS_PFN(res->end),
53 NULL, GFP_KERNEL);
ab1b597e 54 synchronize_rcu();
9476df7d
DW
55}
56
e7744aa2 57static unsigned long pfn_first(struct dev_pagemap *pgmap)
5c2c2587 58{
7cc7867f 59 return PHYS_PFN(pgmap->res.start) +
514caf23 60 vmem_altmap_offset(pgmap_altmap(pgmap));
5c2c2587
DW
61}
62
e7744aa2 63static unsigned long pfn_end(struct dev_pagemap *pgmap)
5c2c2587 64{
e7744aa2 65 const struct resource *res = &pgmap->res;
5c2c2587
DW
66
67 return (res->start + resource_size(res)) >> PAGE_SHIFT;
68}
69
949b9325
DW
70static unsigned long pfn_next(unsigned long pfn)
71{
72 if (pfn % 1024 == 0)
73 cond_resched();
74 return pfn + 1;
75}
76
5c2c2587 77#define for_each_device_pfn(pfn, map) \
949b9325 78 for (pfn = pfn_first(map); pfn < pfn_end(map); pfn = pfn_next(pfn))
5c2c2587 79
24917f6b
CH
80static 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 }
06282373
DW
96 /*
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;
24917f6b
CH
102}
103
6869b7b2 104void memunmap_pages(struct dev_pagemap *pgmap)
41e94a85 105{
e7744aa2 106 struct resource *res = &pgmap->res;
77e080e7 107 struct page *first_page;
71389703 108 unsigned long pfn;
2c2a5af6 109 int nid;
71389703 110
24917f6b 111 dev_pagemap_kill(pgmap);
e7744aa2 112 for_each_device_pfn(pfn, pgmap)
71389703 113 put_page(pfn_to_page(pfn));
24917f6b 114 dev_pagemap_cleanup(pgmap);
9476df7d 115
77e080e7
AK
116 /* make sure to access a memmap that was actually initialized */
117 first_page = pfn_to_page(pfn_first(pgmap));
118
41e94a85 119 /* pages are dead and unused, undo the arch mapping */
77e080e7 120 nid = page_to_nid(first_page);
2c2a5af6 121
f931ab47 122 mem_hotplug_begin();
d33695b1
DH
123 remove_pfn_range_from_zone(page_zone(first_page), PHYS_PFN(res->start),
124 PHYS_PFN(resource_size(res)));
69324b8f 125 if (pgmap->type == MEMORY_DEVICE_PRIVATE) {
feee6b29 126 __remove_pages(PHYS_PFN(res->start),
77e080e7 127 PHYS_PFN(resource_size(res)), NULL);
69324b8f 128 } else {
7cc7867f 129 arch_remove_memory(nid, res->start, resource_size(res),
514caf23 130 pgmap_altmap(pgmap));
7cc7867f 131 kasan_remove_zero_shadow(__va(res->start), resource_size(res));
69324b8f 132 }
f931ab47 133 mem_hotplug_done();
b5d24fda 134
7cc7867f 135 untrack_pfn(NULL, PHYS_PFN(res->start), resource_size(res));
bcfa4b72 136 pgmap_array_delete(res);
fdc029b1 137 WARN_ONCE(pgmap->altmap.alloc, "failed to free all reserved pages\n");
6f42193f 138 devmap_managed_enable_put();
9476df7d 139}
6869b7b2
CH
140EXPORT_SYMBOL_GPL(memunmap_pages);
141
142static void devm_memremap_pages_release(void *data)
143{
144 memunmap_pages(data);
145}
9476df7d 146
24917f6b
CH
147static 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
6869b7b2
CH
155/*
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.
4b94ffdc 159 */
6869b7b2 160void *memremap_pages(struct dev_pagemap *pgmap, int nid)
41e94a85 161{
949b9325 162 struct resource *res = &pgmap->res;
966cf44f 163 struct dev_pagemap *conflict_pgmap;
940519f0
MH
164 struct mhp_restrictions restrictions = {
165 /*
166 * We do not want any optional features only our own memmap
7cc7867f 167 */
514caf23 168 .altmap = pgmap_altmap(pgmap),
940519f0 169 };
9049771f 170 pgprot_t pgprot = PAGE_KERNEL;
6869b7b2 171 int error, is_ram;
f6a55e1a 172 bool need_devmap_managed = true;
5f29a77c 173
3ed2dcdf
CH
174 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 }
897e6365
CH
180 if (!pgmap->ops || !pgmap->ops->migrate_to_ram) {
181 WARN(1, "Missing migrate_to_ram method\n");
182 return ERR_PTR(-EINVAL);
183 }
3ed2dcdf
CH
184 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:
f6a55e1a 194 need_devmap_managed = false;
3ed2dcdf
CH
195 break;
196 default:
197 WARN(1, "Invalid pgmap type %d\n", pgmap->type);
198 break;
199 }
200
24917f6b
CH
201 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 }
50f44ee7 216 }
a95c90f1 217
f6a55e1a 218 if (need_devmap_managed) {
6f42193f 219 error = devmap_managed_enable_get(pgmap);
f6a55e1a
CH
220 if (error)
221 return ERR_PTR(error);
222 }
223
7cc7867f 224 conflict_pgmap = get_dev_pagemap(PHYS_PFN(res->start), NULL);
15d36fec 225 if (conflict_pgmap) {
6869b7b2 226 WARN(1, "Conflicting mapping in same section\n");
15d36fec 227 put_dev_pagemap(conflict_pgmap);
50f44ee7
DW
228 error = -ENOMEM;
229 goto err_array;
15d36fec
DJ
230 }
231
7cc7867f 232 conflict_pgmap = get_dev_pagemap(PHYS_PFN(res->end), NULL);
15d36fec 233 if (conflict_pgmap) {
6869b7b2 234 WARN(1, "Conflicting mapping in same section\n");
15d36fec 235 put_dev_pagemap(conflict_pgmap);
50f44ee7
DW
236 error = -ENOMEM;
237 goto err_array;
15d36fec
DJ
238 }
239
7cc7867f 240 is_ram = region_intersects(res->start, resource_size(res),
d37a14bb 241 IORESOURCE_SYSTEM_RAM, IORES_DESC_NONE);
41e94a85 242
06489cfb
DW
243 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);
a95c90f1
DW
246 error = -ENXIO;
247 goto err_array;
41e94a85
CH
248 }
249
bcfa4b72
MW
250 error = xa_err(xa_store_range(&pgmap_array, PHYS_PFN(res->start),
251 PHYS_PFN(res->end), pgmap, GFP_KERNEL));
9476df7d 252 if (error)
bcfa4b72 253 goto err_array;
9476df7d 254
41e94a85 255 if (nid < 0)
7eff93b7 256 nid = numa_mem_id();
41e94a85 257
7cc7867f
DW
258 error = track_pfn_remap(NULL, &pgprot, PHYS_PFN(res->start), 0,
259 resource_size(res));
9049771f
DW
260 if (error)
261 goto err_pfn_remap;
262
f931ab47 263 mem_hotplug_begin();
69324b8f
DW
264
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) {
7cc7867f
DW
277 error = add_pages(nid, PHYS_PFN(res->start),
278 PHYS_PFN(resource_size(res)), &restrictions);
69324b8f 279 } else {
7cc7867f 280 error = kasan_add_zero_shadow(__va(res->start), resource_size(res));
69324b8f
DW
281 if (error) {
282 mem_hotplug_done();
283 goto err_kasan;
284 }
285
7cc7867f 286 error = arch_add_memory(nid, res->start, resource_size(res),
940519f0 287 &restrictions);
69324b8f
DW
288 }
289
290 if (!error) {
291 struct zone *zone;
292
293 zone = &NODE_DATA(nid)->node_zones[ZONE_DEVICE];
7cc7867f
DW
294 move_pfn_range_to_zone(zone, PHYS_PFN(res->start),
295 PHYS_PFN(resource_size(res)), restrictions.altmap);
0207df4f
AR
296 }
297
f931ab47 298 mem_hotplug_done();
9476df7d
DW
299 if (error)
300 goto err_add_memory;
41e94a85 301
966cf44f
AD
302 /*
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],
7cc7867f
DW
307 PHYS_PFN(res->start),
308 PHYS_PFN(resource_size(res)), pgmap);
966cf44f 309 percpu_ref_get_many(pgmap->ref, pfn_end(pgmap) - pfn_first(pgmap));
41e94a85 310 return __va(res->start);
9476df7d
DW
311
312 err_add_memory:
7cc7867f 313 kasan_remove_zero_shadow(__va(res->start), resource_size(res));
0207df4f 314 err_kasan:
7cc7867f 315 untrack_pfn(NULL, PHYS_PFN(res->start), resource_size(res));
9049771f 316 err_pfn_remap:
bcfa4b72
MW
317 pgmap_array_delete(res);
318 err_array:
24917f6b
CH
319 dev_pagemap_kill(pgmap);
320 dev_pagemap_cleanup(pgmap);
6f42193f 321 devmap_managed_enable_put();
9476df7d 322 return ERR_PTR(error);
41e94a85 323}
6869b7b2
CH
324EXPORT_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}
808153e1 361EXPORT_SYMBOL_GPL(devm_memremap_pages);
4b94ffdc 362
2e3f139e
DW
363void 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
4b94ffdc
DW
369unsigned long vmem_altmap_offset(struct vmem_altmap *altmap)
370{
371 /* number of pfns from base where pfn_to_page() is valid */
514caf23
CH
372 if (altmap)
373 return altmap->reserve + altmap->free;
374 return 0;
4b94ffdc
DW
375}
376
377void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns)
378{
379 altmap->alloc -= nr_pfns;
380}
381
0822acb8
CH
382/**
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 *
832d7aa0
CH
387 * 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.
0822acb8
CH
389 */
390struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
391 struct dev_pagemap *pgmap)
392{
0822acb8
CH
393 resource_size_t phys = PFN_PHYS(pfn);
394
395 /*
832d7aa0 396 * In the cached case we're already holding a live reference.
0822acb8 397 */
832d7aa0 398 if (pgmap) {
e7744aa2 399 if (phys >= pgmap->res.start && phys <= pgmap->res.end)
832d7aa0
CH
400 return pgmap;
401 put_dev_pagemap(pgmap);
0822acb8
CH
402 }
403
404 /* fall back to slow path lookup */
405 rcu_read_lock();
bcfa4b72 406 pgmap = xa_load(&pgmap_array, PHYS_PFN(phys));
0822acb8
CH
407 if (pgmap && !percpu_ref_tryget_live(pgmap->ref))
408 pgmap = NULL;
409 rcu_read_unlock();
410
411 return pgmap;
412}
e7638488 413EXPORT_SYMBOL_GPL(get_dev_pagemap);
7b2d55d2 414
e7638488 415#ifdef CONFIG_DEV_PAGEMAP_OPS
07d80269 416void free_devmap_managed_page(struct page *page)
7b2d55d2 417{
429589d6
DW
418 /* notify page idle for dax */
419 if (!is_device_private_page(page)) {
420 wake_up_var(&page->_refcount);
421 return;
422 }
7ab0ad0e 423
429589d6
DW
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);
7b2d55d2 453}
e7638488 454#endif /* CONFIG_DEV_PAGEMAP_OPS */