1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright(c) 2015 Intel Corporation. All rights reserved. */
3 #include <linux/device.h>
5 #include <linux/kasan.h>
6 #include <linux/memory_hotplug.h>
8 #include <linux/pfn_t.h>
9 #include <linux/swap.h>
10 #include <linux/swapops.h>
11 #include <linux/types.h>
12 #include <linux/wait_bit.h>
13 #include <linux/xarray.h>
15 static DEFINE_XARRAY(pgmap_array
);
16 #define SECTION_MASK ~((1UL << PA_SECTION_SHIFT) - 1)
17 #define SECTION_SIZE (1UL << PA_SECTION_SHIFT)
19 #ifdef CONFIG_DEV_PAGEMAP_OPS
20 DEFINE_STATIC_KEY_FALSE(devmap_managed_key
);
21 EXPORT_SYMBOL(devmap_managed_key
);
22 static atomic_t devmap_managed_enable
;
24 static void devmap_managed_enable_put(void *data
)
26 if (atomic_dec_and_test(&devmap_managed_enable
))
27 static_branch_disable(&devmap_managed_key
);
30 static int devmap_managed_enable_get(struct device
*dev
, struct dev_pagemap
*pgmap
)
32 if (!pgmap
->ops
|| !pgmap
->ops
->page_free
) {
33 WARN(1, "Missing page_free method\n");
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
);
42 static int devmap_managed_enable_get(struct device
*dev
, struct dev_pagemap
*pgmap
)
46 #endif /* CONFIG_DEV_PAGEMAP_OPS */
48 static void pgmap_array_delete(struct resource
*res
)
50 xa_store_range(&pgmap_array
, PHYS_PFN(res
->start
), PHYS_PFN(res
->end
),
55 static unsigned long pfn_first(struct dev_pagemap
*pgmap
)
57 return PHYS_PFN(pgmap
->res
.start
) +
58 vmem_altmap_offset(pgmap_altmap(pgmap
));
61 static unsigned long pfn_end(struct dev_pagemap
*pgmap
)
63 const struct resource
*res
= &pgmap
->res
;
65 return (res
->start
+ resource_size(res
)) >> PAGE_SHIFT
;
68 static unsigned long pfn_next(unsigned long pfn
)
75 #define for_each_device_pfn(pfn, map) \
76 for (pfn = pfn_first(map); pfn < pfn_end(map); pfn = pfn_next(pfn))
78 static void dev_pagemap_kill(struct dev_pagemap
*pgmap
)
80 if (pgmap
->ops
&& pgmap
->ops
->kill
)
81 pgmap
->ops
->kill(pgmap
);
83 percpu_ref_kill(pgmap
->ref
);
86 static void dev_pagemap_cleanup(struct dev_pagemap
*pgmap
)
88 if (pgmap
->ops
&& pgmap
->ops
->cleanup
) {
89 pgmap
->ops
->cleanup(pgmap
);
91 wait_for_completion(&pgmap
->done
);
92 percpu_ref_exit(pgmap
->ref
);
95 * Undo the pgmap ref assignment for the internal case as the
96 * caller may re-enable the same pgmap.
98 if (pgmap
->ref
== &pgmap
->internal_ref
)
102 static void devm_memremap_pages_release(void *data
)
104 struct dev_pagemap
*pgmap
= data
;
105 struct device
*dev
= pgmap
->dev
;
106 struct resource
*res
= &pgmap
->res
;
110 dev_pagemap_kill(pgmap
);
111 for_each_device_pfn(pfn
, pgmap
)
112 put_page(pfn_to_page(pfn
));
113 dev_pagemap_cleanup(pgmap
);
115 /* pages are dead and unused, undo the arch mapping */
116 nid
= page_to_nid(pfn_to_page(PHYS_PFN(res
->start
)));
119 if (pgmap
->type
== MEMORY_DEVICE_PRIVATE
) {
120 pfn
= PHYS_PFN(res
->start
);
121 __remove_pages(page_zone(pfn_to_page(pfn
)), pfn
,
122 PHYS_PFN(resource_size(res
)), NULL
);
124 arch_remove_memory(nid
, res
->start
, resource_size(res
),
125 pgmap_altmap(pgmap
));
126 kasan_remove_zero_shadow(__va(res
->start
), resource_size(res
));
130 untrack_pfn(NULL
, PHYS_PFN(res
->start
), resource_size(res
));
131 pgmap_array_delete(res
);
132 dev_WARN_ONCE(dev
, pgmap
->altmap
.alloc
,
133 "%s: failed to free all reserved pages\n", __func__
);
136 static void dev_pagemap_percpu_release(struct percpu_ref
*ref
)
138 struct dev_pagemap
*pgmap
=
139 container_of(ref
, struct dev_pagemap
, internal_ref
);
141 complete(&pgmap
->done
);
145 * devm_memremap_pages - remap and provide memmap backing for the given resource
146 * @dev: hosting device for @res
147 * @pgmap: pointer to a struct dev_pagemap
150 * 1/ At a minimum the res and type members of @pgmap must be initialized
151 * by the caller before passing it to this function
153 * 2/ The altmap field may optionally be initialized, in which case
154 * PGMAP_ALTMAP_VALID must be set in pgmap->flags.
156 * 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.
160 * 4/ res is expected to be a host memory range that could feasibly be
161 * treated as a "System RAM" range, i.e. not a device mmio range, but
162 * this is not enforced.
164 void *devm_memremap_pages(struct device
*dev
, struct dev_pagemap
*pgmap
)
166 struct resource
*res
= &pgmap
->res
;
167 struct dev_pagemap
*conflict_pgmap
;
168 struct mhp_restrictions restrictions
= {
170 * We do not want any optional features only our own memmap
172 .altmap
= pgmap_altmap(pgmap
),
174 pgprot_t pgprot
= PAGE_KERNEL
;
175 int error
, nid
, is_ram
;
176 bool need_devmap_managed
= true;
178 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
);
184 if (!pgmap
->ops
|| !pgmap
->ops
->migrate_to_ram
) {
185 WARN(1, "Missing migrate_to_ram method\n");
186 return ERR_PTR(-EINVAL
);
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
);
196 case MEMORY_DEVICE_DEVDAX
:
197 case MEMORY_DEVICE_PCI_P2PDMA
:
198 need_devmap_managed
= false;
201 WARN(1, "Invalid pgmap type %d\n", pgmap
->type
);
206 if (pgmap
->ops
&& (pgmap
->ops
->kill
|| pgmap
->ops
->cleanup
))
207 return ERR_PTR(-EINVAL
);
209 init_completion(&pgmap
->done
);
210 error
= percpu_ref_init(&pgmap
->internal_ref
,
211 dev_pagemap_percpu_release
, 0, GFP_KERNEL
);
213 return ERR_PTR(error
);
214 pgmap
->ref
= &pgmap
->internal_ref
;
216 if (!pgmap
->ops
|| !pgmap
->ops
->kill
|| !pgmap
->ops
->cleanup
) {
217 WARN(1, "Missing reference count teardown definition\n");
218 return ERR_PTR(-EINVAL
);
222 if (need_devmap_managed
) {
223 error
= devmap_managed_enable_get(dev
, pgmap
);
225 return ERR_PTR(error
);
228 conflict_pgmap
= get_dev_pagemap(PHYS_PFN(res
->start
), NULL
);
229 if (conflict_pgmap
) {
230 dev_WARN(dev
, "Conflicting mapping in same section\n");
231 put_dev_pagemap(conflict_pgmap
);
236 conflict_pgmap
= get_dev_pagemap(PHYS_PFN(res
->end
), NULL
);
237 if (conflict_pgmap
) {
238 dev_WARN(dev
, "Conflicting mapping in same section\n");
239 put_dev_pagemap(conflict_pgmap
);
244 is_ram
= region_intersects(res
->start
, resource_size(res
),
245 IORESOURCE_SYSTEM_RAM
, IORES_DESC_NONE
);
247 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
);
256 error
= xa_err(xa_store_range(&pgmap_array
, PHYS_PFN(res
->start
),
257 PHYS_PFN(res
->end
), pgmap
, GFP_KERNEL
));
261 nid
= dev_to_node(dev
);
265 error
= track_pfn_remap(NULL
, &pgprot
, PHYS_PFN(res
->start
), 0,
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()
279 * For all other device memory types, which are accessible by
280 * the CPU, we do want the linear mapping and thus use
283 if (pgmap
->type
== MEMORY_DEVICE_PRIVATE
) {
284 error
= add_pages(nid
, PHYS_PFN(res
->start
),
285 PHYS_PFN(resource_size(res
)), &restrictions
);
287 error
= kasan_add_zero_shadow(__va(res
->start
), resource_size(res
));
293 error
= arch_add_memory(nid
, res
->start
, resource_size(res
),
300 zone
= &NODE_DATA(nid
)->node_zones
[ZONE_DEVICE
];
301 move_pfn_range_to_zone(zone
, PHYS_PFN(res
->start
),
302 PHYS_PFN(resource_size(res
)), restrictions
.altmap
);
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.
313 memmap_init_zone_device(&NODE_DATA(nid
)->node_zones
[ZONE_DEVICE
],
314 PHYS_PFN(res
->start
),
315 PHYS_PFN(resource_size(res
)), pgmap
);
316 percpu_ref_get_many(pgmap
->ref
, pfn_end(pgmap
) - pfn_first(pgmap
));
318 error
= devm_add_action_or_reset(dev
, devm_memremap_pages_release
,
321 return ERR_PTR(error
);
323 return __va(res
->start
);
326 kasan_remove_zero_shadow(__va(res
->start
), resource_size(res
));
328 untrack_pfn(NULL
, PHYS_PFN(res
->start
), resource_size(res
));
330 pgmap_array_delete(res
);
332 dev_pagemap_kill(pgmap
);
333 dev_pagemap_cleanup(pgmap
);
334 return ERR_PTR(error
);
336 EXPORT_SYMBOL_GPL(devm_memremap_pages
);
338 void devm_memunmap_pages(struct device
*dev
, struct dev_pagemap
*pgmap
)
340 devm_release_action(dev
, devm_memremap_pages_release
, pgmap
);
342 EXPORT_SYMBOL_GPL(devm_memunmap_pages
);
344 unsigned long vmem_altmap_offset(struct vmem_altmap
*altmap
)
346 /* number of pfns from base where pfn_to_page() is valid */
348 return altmap
->reserve
+ altmap
->free
;
352 void vmem_altmap_free(struct vmem_altmap
*altmap
, unsigned long nr_pfns
)
354 altmap
->alloc
-= nr_pfns
;
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
362 * 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.
365 struct dev_pagemap
*get_dev_pagemap(unsigned long pfn
,
366 struct dev_pagemap
*pgmap
)
368 resource_size_t phys
= PFN_PHYS(pfn
);
371 * In the cached case we're already holding a live reference.
374 if (phys
>= pgmap
->res
.start
&& phys
<= pgmap
->res
.end
)
376 put_dev_pagemap(pgmap
);
379 /* fall back to slow path lookup */
381 pgmap
= xa_load(&pgmap_array
, PHYS_PFN(phys
));
382 if (pgmap
&& !percpu_ref_tryget_live(pgmap
->ref
))
388 EXPORT_SYMBOL_GPL(get_dev_pagemap
);
390 #ifdef CONFIG_DEV_PAGEMAP_OPS
391 void __put_devmap_managed_page(struct page
*page
)
393 int count
= page_ref_dec_return(page
);
396 * If refcount is 1 then page is freed and refcount is stable as nobody
397 * holds a reference on the page.
400 /* Clear Active bit in case of parallel mark_page_accessed */
401 __ClearPageActive(page
);
402 __ClearPageWaiters(page
);
404 mem_cgroup_uncharge(page
);
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.
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.
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.
427 if (is_device_private_page(page
))
428 page
->mapping
= NULL
;
430 page
->pgmap
->ops
->page_free(page
);
434 EXPORT_SYMBOL(__put_devmap_managed_page
);
435 #endif /* CONFIG_DEV_PAGEMAP_OPS */