blob: 5b8600d39931964adcef966b9660aceac5918124 [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. */
Dan Williams9476df72016-01-15 16:56:19 -08003#include <linux/radix-tree.h>
Christoph Hellwig7d3dcf22015-08-10 23:07:07 -04004#include <linux/device.h>
Dan Williams92281dee2015-08-10 23:07:06 -04005#include <linux/types.h>
Dan Williams34c0fd52016-01-15 16:56:14 -08006#include <linux/pfn_t.h>
Dan Williams92281dee2015-08-10 23:07:06 -04007#include <linux/io.h>
Andrey Ryabinin0207df42018-08-17 15:47:04 -07008#include <linux/kasan.h>
Dan Williams92281dee2015-08-10 23:07:06 -04009#include <linux/mm.h>
Christoph Hellwig41e94a82015-08-17 16:00:35 +020010#include <linux/memory_hotplug.h>
Jérôme Glisse5042db42017-09-08 16:11:43 -070011#include <linux/swap.h>
12#include <linux/swapops.h>
Dan Williamse76384882018-05-16 11:46:08 -070013#include <linux/wait_bit.h>
Dan Williams92281dee2015-08-10 23:07:06 -040014
Dan Williams9476df72016-01-15 16:56:19 -080015static DEFINE_MUTEX(pgmap_lock);
16static RADIX_TREE(pgmap_radix, GFP_KERNEL);
17#define SECTION_MASK ~((1UL << PA_SECTION_SHIFT) - 1)
18#define SECTION_SIZE (1UL << PA_SECTION_SHIFT)
19
Dan Williamsab1b5972017-09-06 16:24:13 -070020static unsigned long order_at(struct resource *res, unsigned long pgoff)
21{
22 unsigned long phys_pgoff = PHYS_PFN(res->start) + pgoff;
23 unsigned long nr_pages, mask;
24
25 nr_pages = PHYS_PFN(resource_size(res));
26 if (nr_pages == pgoff)
27 return ULONG_MAX;
28
29 /*
30 * What is the largest aligned power-of-2 range available from
31 * this resource pgoff to the end of the resource range,
32 * considering the alignment of the current pgoff?
33 */
34 mask = phys_pgoff | rounddown_pow_of_two(nr_pages - pgoff);
35 if (!mask)
36 return ULONG_MAX;
37
38 return find_first_bit(&mask, BITS_PER_LONG);
39}
40
41#define foreach_order_pgoff(res, order, pgoff) \
42 for (pgoff = 0, order = order_at((res), pgoff); order < ULONG_MAX; \
43 pgoff += 1UL << order, order = order_at((res), pgoff))
44
Jérôme Glisse5042db42017-09-08 16:11:43 -070045#if IS_ENABLED(CONFIG_DEVICE_PRIVATE)
Souptick Joarder2b740302018-08-23 17:01:36 -070046vm_fault_t device_private_entry_fault(struct vm_area_struct *vma,
Jérôme Glisse5042db42017-09-08 16:11:43 -070047 unsigned long addr,
48 swp_entry_t entry,
49 unsigned int flags,
50 pmd_t *pmdp)
51{
52 struct page *page = device_private_entry_to_page(entry);
53
54 /*
55 * The page_fault() callback must migrate page back to system memory
56 * so that CPU can access it. This might fail for various reasons
57 * (device issue, device was unsafely unplugged, ...). When such
58 * error conditions happen, the callback must return VM_FAULT_SIGBUS.
59 *
60 * Note that because memory cgroup charges are accounted to the device
61 * memory, this should never fail because of memory restrictions (but
62 * allocation of regular system page might still fail because we are
63 * out of memory).
64 *
65 * There is a more in-depth description of what that callback can and
66 * cannot do, in include/linux/memremap.h
67 */
68 return page->pgmap->page_fault(vma, addr, page, flags, pmdp);
69}
70EXPORT_SYMBOL(device_private_entry_fault);
71#endif /* CONFIG_DEVICE_PRIVATE */
72
Jan H. Schönherr77dd66a2018-01-19 16:26:33 -080073static void pgmap_radix_release(struct resource *res, unsigned long end_pgoff)
Christoph Hellwig41e94a82015-08-17 16:00:35 +020074{
Dan Williamsab1b5972017-09-06 16:24:13 -070075 unsigned long pgoff, order;
Dan Williams9476df72016-01-15 16:56:19 -080076
77 mutex_lock(&pgmap_lock);
Jan H. Schönherr77dd66a2018-01-19 16:26:33 -080078 foreach_order_pgoff(res, order, pgoff) {
79 if (pgoff >= end_pgoff)
80 break;
Dan Williamsab1b5972017-09-06 16:24:13 -070081 radix_tree_delete(&pgmap_radix, PHYS_PFN(res->start) + pgoff);
Jan H. Schönherr77dd66a2018-01-19 16:26:33 -080082 }
Dan Williams9476df72016-01-15 16:56:19 -080083 mutex_unlock(&pgmap_lock);
Dan Williamsab1b5972017-09-06 16:24:13 -070084
85 synchronize_rcu();
Dan Williams9476df72016-01-15 16:56:19 -080086}
87
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010088static unsigned long pfn_first(struct dev_pagemap *pgmap)
Dan Williams5c2c2582016-01-15 16:56:49 -080089{
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010090 const struct resource *res = &pgmap->res;
91 struct vmem_altmap *altmap = &pgmap->altmap;
Dan Williams5c2c2582016-01-15 16:56:49 -080092 unsigned long pfn;
93
94 pfn = res->start >> PAGE_SHIFT;
Logan Gunthorpee7744aa2017-12-29 08:54:04 +010095 if (pgmap->altmap_valid)
Dan Williams5c2c2582016-01-15 16:56:49 -080096 pfn += vmem_altmap_offset(altmap);
97 return pfn;
98}
99
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100100static unsigned long pfn_end(struct dev_pagemap *pgmap)
Dan Williams5c2c2582016-01-15 16:56:49 -0800101{
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100102 const struct resource *res = &pgmap->res;
Dan Williams5c2c2582016-01-15 16:56:49 -0800103
104 return (res->start + resource_size(res)) >> PAGE_SHIFT;
105}
106
Dan Williams949b93252018-02-06 19:34:11 -0800107static unsigned long pfn_next(unsigned long pfn)
108{
109 if (pfn % 1024 == 0)
110 cond_resched();
111 return pfn + 1;
112}
113
Dan Williams5c2c2582016-01-15 16:56:49 -0800114#define for_each_device_pfn(pfn, map) \
Dan Williams949b93252018-02-06 19:34:11 -0800115 for (pfn = pfn_first(map); pfn < pfn_end(map); pfn = pfn_next(pfn))
Dan Williams5c2c2582016-01-15 16:56:49 -0800116
Christoph Hellwige8d51342017-12-29 08:54:05 +0100117static void devm_memremap_pages_release(void *data)
Dan Williams9476df72016-01-15 16:56:19 -0800118{
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100119 struct dev_pagemap *pgmap = data;
Christoph Hellwige8d51342017-12-29 08:54:05 +0100120 struct device *dev = pgmap->dev;
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100121 struct resource *res = &pgmap->res;
Dan Williams9476df72016-01-15 16:56:19 -0800122 resource_size_t align_start, align_size;
Dan Williams71389702017-04-28 10:23:37 -0700123 unsigned long pfn;
124
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100125 for_each_device_pfn(pfn, pgmap)
Dan Williams71389702017-04-28 10:23:37 -0700126 put_page(pfn_to_page(pfn));
Dan Williams9476df72016-01-15 16:56:19 -0800127
Dan Williams5c2c2582016-01-15 16:56:49 -0800128 if (percpu_ref_tryget_live(pgmap->ref)) {
129 dev_WARN(dev, "%s: page mapping is still live!\n", __func__);
130 percpu_ref_put(pgmap->ref);
131 }
132
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200133 /* pages are dead and unused, undo the arch mapping */
Dan Williams9476df72016-01-15 16:56:19 -0800134 align_start = res->start & ~(SECTION_SIZE - 1);
Jan H. Schönherr10a0cd62018-01-19 16:27:54 -0800135 align_size = ALIGN(res->start + resource_size(res), SECTION_SIZE)
136 - align_start;
Dan Williamsb5d24fd2017-02-24 14:55:45 -0800137
Dan Williamsf931ab42017-01-10 16:57:36 -0800138 mem_hotplug_begin();
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100139 arch_remove_memory(align_start, align_size, pgmap->altmap_valid ?
140 &pgmap->altmap : NULL);
Andrey Ryabinin0207df42018-08-17 15:47:04 -0700141 kasan_remove_zero_shadow(__va(align_start), align_size);
Dan Williamsf931ab42017-01-10 16:57:36 -0800142 mem_hotplug_done();
Dan Williamsb5d24fd2017-02-24 14:55:45 -0800143
Dan Williams90497712016-09-07 08:51:21 -0700144 untrack_pfn(NULL, PHYS_PFN(align_start), align_size);
Jan H. Schönherr77dd66a2018-01-19 16:26:33 -0800145 pgmap_radix_release(res, -1);
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100146 dev_WARN_ONCE(dev, pgmap->altmap.alloc,
147 "%s: failed to free all reserved pages\n", __func__);
Dan Williams9476df72016-01-15 16:56:19 -0800148}
149
Dan Williams4b94ffd2016-01-15 16:56:22 -0800150/**
151 * devm_memremap_pages - remap and provide memmap backing for the given resource
152 * @dev: hosting device for @res
Christoph Hellwige8d51342017-12-29 08:54:05 +0100153 * @pgmap: pointer to a struct dev_pgmap
Dan Williams4b94ffd2016-01-15 16:56:22 -0800154 *
Dan Williams5c2c2582016-01-15 16:56:49 -0800155 * Notes:
Christoph Hellwige8d51342017-12-29 08:54:05 +0100156 * 1/ At a minimum the res, ref and type members of @pgmap must be initialized
157 * by the caller before passing it to this function
158 *
159 * 2/ The altmap field may optionally be initialized, in which case altmap_valid
160 * must be set to true
161 *
162 * 3/ pgmap.ref must be 'live' on entry and 'dead' before devm_memunmap_pages()
163 * time (or devm release event). The expected order of events is that ref has
Dan Williams71389702017-04-28 10:23:37 -0700164 * been through percpu_ref_kill() before devm_memremap_pages_release(). The
165 * wait for the completion of all references being dropped and
166 * percpu_ref_exit() must occur after devm_memremap_pages_release().
Dan Williams5c2c2582016-01-15 16:56:49 -0800167 *
Christoph Hellwige8d51342017-12-29 08:54:05 +0100168 * 4/ res is expected to be a host memory range that could feasibly be
Dan Williams5c2c2582016-01-15 16:56:49 -0800169 * treated as a "System RAM" range, i.e. not a device mmio range, but
170 * this is not enforced.
Dan Williams4b94ffd2016-01-15 16:56:22 -0800171 */
Christoph Hellwige8d51342017-12-29 08:54:05 +0100172void *devm_memremap_pages(struct device *dev, struct dev_pagemap *pgmap)
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200173{
Dan Williamsab1b5972017-09-06 16:24:13 -0700174 resource_size_t align_start, align_size, align_end;
Christoph Hellwige8d51342017-12-29 08:54:05 +0100175 struct vmem_altmap *altmap = pgmap->altmap_valid ?
176 &pgmap->altmap : NULL;
Dan Williams949b93252018-02-06 19:34:11 -0800177 struct resource *res = &pgmap->res;
Dan Williamsab1b5972017-09-06 16:24:13 -0700178 unsigned long pfn, pgoff, order;
Dan Williams90497712016-09-07 08:51:21 -0700179 pgprot_t pgprot = PAGE_KERNEL;
Dan Williams949b93252018-02-06 19:34:11 -0800180 int error, nid, is_ram;
Dave Jiang15d36fe2018-07-26 16:37:15 -0700181 struct dev_pagemap *conflict_pgmap;
Dan Williams5f29a772016-03-09 14:08:13 -0800182
183 align_start = res->start & ~(SECTION_SIZE - 1);
184 align_size = ALIGN(res->start + resource_size(res), SECTION_SIZE)
185 - align_start;
Dave Jiang15d36fe2018-07-26 16:37:15 -0700186 align_end = align_start + align_size - 1;
187
188 conflict_pgmap = get_dev_pagemap(PHYS_PFN(align_start), NULL);
189 if (conflict_pgmap) {
190 dev_WARN(dev, "Conflicting mapping in same section\n");
191 put_dev_pagemap(conflict_pgmap);
192 return ERR_PTR(-ENOMEM);
193 }
194
195 conflict_pgmap = get_dev_pagemap(PHYS_PFN(align_end), NULL);
196 if (conflict_pgmap) {
197 dev_WARN(dev, "Conflicting mapping in same section\n");
198 put_dev_pagemap(conflict_pgmap);
199 return ERR_PTR(-ENOMEM);
200 }
201
Linus Torvaldsd37a14bb2016-03-14 15:15:51 -0700202 is_ram = region_intersects(align_start, align_size,
203 IORESOURCE_SYSTEM_RAM, IORES_DESC_NONE);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200204
205 if (is_ram == REGION_MIXED) {
206 WARN_ONCE(1, "%s attempted on mixed region %pr\n",
207 __func__, res);
208 return ERR_PTR(-ENXIO);
209 }
210
211 if (is_ram == REGION_INTERSECTS)
212 return __va(res->start);
213
Christoph Hellwige8d51342017-12-29 08:54:05 +0100214 if (!pgmap->ref)
Dan Williams5c2c2582016-01-15 16:56:49 -0800215 return ERR_PTR(-EINVAL);
216
Dan Williams4b94ffd2016-01-15 16:56:22 -0800217 pgmap->dev = dev;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800218
Dan Williams9476df72016-01-15 16:56:19 -0800219 mutex_lock(&pgmap_lock);
220 error = 0;
Dan Williamsab1b5972017-09-06 16:24:13 -0700221
222 foreach_order_pgoff(res, order, pgoff) {
Dan Williamsab1b5972017-09-06 16:24:13 -0700223 error = __radix_tree_insert(&pgmap_radix,
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100224 PHYS_PFN(res->start) + pgoff, order, pgmap);
Dan Williams9476df72016-01-15 16:56:19 -0800225 if (error) {
226 dev_err(dev, "%s: failed: %d\n", __func__, error);
227 break;
228 }
229 }
230 mutex_unlock(&pgmap_lock);
231 if (error)
232 goto err_radix;
233
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200234 nid = dev_to_node(dev);
235 if (nid < 0)
Dan Williams7eff93b2015-10-05 20:35:55 -0400236 nid = numa_mem_id();
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200237
Dan Williams90497712016-09-07 08:51:21 -0700238 error = track_pfn_remap(NULL, &pgprot, PHYS_PFN(align_start), 0,
239 align_size);
240 if (error)
241 goto err_pfn_remap;
242
Dan Williamsf931ab42017-01-10 16:57:36 -0800243 mem_hotplug_begin();
Andrey Ryabinin0207df42018-08-17 15:47:04 -0700244 error = kasan_add_zero_shadow(__va(align_start), align_size);
245 if (error) {
246 mem_hotplug_done();
247 goto err_kasan;
248 }
249
Christoph Hellwig24e6d5a2017-12-29 08:53:53 +0100250 error = arch_add_memory(nid, align_start, align_size, altmap, false);
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700251 if (!error)
252 move_pfn_range_to_zone(&NODE_DATA(nid)->node_zones[ZONE_DEVICE],
253 align_start >> PAGE_SHIFT,
Christoph Hellwiga99583e2017-12-29 08:53:57 +0100254 align_size >> PAGE_SHIFT, altmap);
Dan Williamsf931ab42017-01-10 16:57:36 -0800255 mem_hotplug_done();
Dan Williams9476df72016-01-15 16:56:19 -0800256 if (error)
257 goto err_add_memory;
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200258
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100259 for_each_device_pfn(pfn, pgmap) {
Dan Williams5c2c2582016-01-15 16:56:49 -0800260 struct page *page = pfn_to_page(pfn);
261
Dan Williamsd77a1172016-03-09 14:08:10 -0800262 /*
263 * ZONE_DEVICE pages union ->lru with a ->pgmap back
264 * pointer. It is a bug if a ZONE_DEVICE page is ever
265 * freed or placed on a driver-private list. Seed the
266 * storage with LIST_POISON* values.
267 */
268 list_del(&page->lru);
Dan Williams5c2c2582016-01-15 16:56:49 -0800269 page->pgmap = pgmap;
Christoph Hellwige8d51342017-12-29 08:54:05 +0100270 percpu_ref_get(pgmap->ref);
Dan Williams5c2c2582016-01-15 16:56:49 -0800271 }
Christoph Hellwige8d51342017-12-29 08:54:05 +0100272
273 devm_add_action(dev, devm_memremap_pages_release, pgmap);
274
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200275 return __va(res->start);
Dan Williams9476df72016-01-15 16:56:19 -0800276
277 err_add_memory:
Andrey Ryabinin0207df42018-08-17 15:47:04 -0700278 kasan_remove_zero_shadow(__va(align_start), align_size);
279 err_kasan:
Dan Williams90497712016-09-07 08:51:21 -0700280 untrack_pfn(NULL, PHYS_PFN(align_start), align_size);
281 err_pfn_remap:
Dan Williams9476df72016-01-15 16:56:19 -0800282 err_radix:
Jan H. Schönherr77dd66a2018-01-19 16:26:33 -0800283 pgmap_radix_release(res, pgoff);
Dan Williams9476df72016-01-15 16:56:19 -0800284 return ERR_PTR(error);
Christoph Hellwig41e94a82015-08-17 16:00:35 +0200285}
286EXPORT_SYMBOL(devm_memremap_pages);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800287
288unsigned long vmem_altmap_offset(struct vmem_altmap *altmap)
289{
290 /* number of pfns from base where pfn_to_page() is valid */
291 return altmap->reserve + altmap->free;
292}
293
294void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns)
295{
296 altmap->alloc -= nr_pfns;
297}
298
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100299/**
300 * get_dev_pagemap() - take a new live reference on the dev_pagemap for @pfn
301 * @pfn: page frame number to lookup page_map
302 * @pgmap: optional known pgmap that already has a reference
303 *
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100304 * If @pgmap is non-NULL and covers @pfn it will be returned as-is. If @pgmap
305 * is non-NULL but does not cover @pfn the reference to it will be released.
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100306 */
307struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
308 struct dev_pagemap *pgmap)
309{
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100310 resource_size_t phys = PFN_PHYS(pfn);
311
312 /*
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100313 * In the cached case we're already holding a live reference.
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100314 */
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100315 if (pgmap) {
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100316 if (phys >= pgmap->res.start && phys <= pgmap->res.end)
Christoph Hellwig832d7aa2017-12-29 08:54:01 +0100317 return pgmap;
318 put_dev_pagemap(pgmap);
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100319 }
320
321 /* fall back to slow path lookup */
322 rcu_read_lock();
Christoph Hellwige697c5b2017-12-29 08:54:06 +0100323 pgmap = radix_tree_lookup(&pgmap_radix, PHYS_PFN(phys));
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100324 if (pgmap && !percpu_ref_tryget_live(pgmap->ref))
325 pgmap = NULL;
326 rcu_read_unlock();
327
328 return pgmap;
329}
Dan Williamse76384882018-05-16 11:46:08 -0700330EXPORT_SYMBOL_GPL(get_dev_pagemap);
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700331
Dan Williamse76384882018-05-16 11:46:08 -0700332#ifdef CONFIG_DEV_PAGEMAP_OPS
333DEFINE_STATIC_KEY_FALSE(devmap_managed_key);
Dan Williams31c5bda2018-07-26 16:37:22 -0700334EXPORT_SYMBOL(devmap_managed_key);
Dan Williamse76384882018-05-16 11:46:08 -0700335static atomic_t devmap_enable;
336
337/*
338 * Toggle the static key for ->page_free() callbacks when dev_pagemap
339 * pages go idle.
340 */
341void dev_pagemap_get_ops(void)
342{
343 if (atomic_inc_return(&devmap_enable) == 1)
344 static_branch_enable(&devmap_managed_key);
345}
346EXPORT_SYMBOL_GPL(dev_pagemap_get_ops);
347
348void dev_pagemap_put_ops(void)
349{
350 if (atomic_dec_and_test(&devmap_enable))
351 static_branch_disable(&devmap_managed_key);
352}
353EXPORT_SYMBOL_GPL(dev_pagemap_put_ops);
354
355void __put_devmap_managed_page(struct page *page)
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700356{
357 int count = page_ref_dec_return(page);
358
359 /*
360 * If refcount is 1 then page is freed and refcount is stable as nobody
361 * holds a reference on the page.
362 */
363 if (count == 1) {
364 /* Clear Active bit in case of parallel mark_page_accessed */
365 __ClearPageActive(page);
366 __ClearPageWaiters(page);
367
Jérôme Glissec733a822017-09-08 16:11:54 -0700368 mem_cgroup_uncharge(page);
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700369
370 page->pgmap->page_free(page, page->pgmap->data);
371 } else if (!count)
372 __put_page(page);
373}
Dan Williams31c5bda2018-07-26 16:37:22 -0700374EXPORT_SYMBOL(__put_devmap_managed_page);
Dan Williamse76384882018-05-16 11:46:08 -0700375#endif /* CONFIG_DEV_PAGEMAP_OPS */