drivers/base/devres: introduce devm_release_action()
[linux-block.git] / include / linux / memremap.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
9476df7d
DW
2#ifndef _LINUX_MEMREMAP_H_
3#define _LINUX_MEMREMAP_H_
5c2c2587
DW
4#include <linux/ioport.h>
5#include <linux/percpu-refcount.h>
9476df7d
DW
6
7struct resource;
8struct device;
4b94ffdc
DW
9
10/**
11 * struct vmem_altmap - pre-allocated storage for vmemmap_populate
12 * @base_pfn: base of the entire dev_pagemap mapping
13 * @reserve: pages mapped, but reserved for driver use (relative to @base)
14 * @free: free pages set aside in the mapping for memmap storage
15 * @align: pages reserved to meet allocation alignments
16 * @alloc: track pages consumed, private to vmemmap_populate()
17 */
18struct vmem_altmap {
19 const unsigned long base_pfn;
20 const unsigned long reserve;
21 unsigned long free;
22 unsigned long align;
23 unsigned long alloc;
24};
25
5042db43
JG
26/*
27 * Specialize ZONE_DEVICE memory into multiple types each having differents
28 * usage.
29 *
5042db43
JG
30 * MEMORY_DEVICE_PRIVATE:
31 * Device memory that is not directly addressable by the CPU: CPU can neither
32 * read nor write private memory. In this case, we do still have struct pages
33 * backing the device memory. Doing so simplifies the implementation, but it is
34 * important to remember that there are certain points at which the struct page
35 * must be treated as an opaque object, rather than a "normal" struct page.
36 *
37 * A more complete discussion of unaddressable memory may be found in
ad56b738 38 * include/linux/hmm.h and Documentation/vm/hmm.rst.
df6ad698
JG
39 *
40 * MEMORY_DEVICE_PUBLIC:
41 * Device memory that is cache coherent from device and CPU point of view. This
42 * is use on platform that have an advance system bus (like CAPI or CCIX). A
43 * driver can hotplug the device memory using ZONE_DEVICE and with that memory
44 * type. Any page of a process can be migrated to such memory. However no one
45 * should be allow to pin such memory so that it can always be evicted.
e7638488
DW
46 *
47 * MEMORY_DEVICE_FS_DAX:
48 * Host memory that has similar access semantics as System RAM i.e. DMA
49 * coherent and supports page pinning. In support of coordinating page
50 * pinning vs other operations MEMORY_DEVICE_FS_DAX arranges for a
51 * wakeup event whenever a page is unpinned and becomes idle. This
52 * wakeup is used to coordinate physical address space management (ex:
53 * fs truncate/hole punch) vs pinned pages (ex: device dma).
52916982
LG
54 *
55 * MEMORY_DEVICE_PCI_P2PDMA:
56 * Device memory residing in a PCI BAR intended for use with Peer-to-Peer
57 * transactions.
5042db43
JG
58 */
59enum memory_type {
e7638488 60 MEMORY_DEVICE_PRIVATE = 1,
df6ad698 61 MEMORY_DEVICE_PUBLIC,
e7638488 62 MEMORY_DEVICE_FS_DAX,
52916982 63 MEMORY_DEVICE_PCI_P2PDMA,
5042db43
JG
64};
65
66/*
5042db43 67 * Additional notes about MEMORY_DEVICE_PRIVATE may be found in
ad56b738 68 * include/linux/hmm.h and Documentation/vm/hmm.rst. There is also a brief
5042db43
JG
69 * explanation in include/linux/memory_hotplug.h.
70 *
5042db43
JG
71 * The page_free() callback is called once the page refcount reaches 1
72 * (ZONE_DEVICE pages never reach 0 refcount unless there is a refcount bug.
73 * This allows the device driver to implement its own memory management.)
74 */
5042db43
JG
75typedef void (*dev_page_free_t)(struct page *page, void *data);
76
9476df7d
DW
77/**
78 * struct dev_pagemap - metadata for ZONE_DEVICE mappings
5042db43 79 * @page_free: free page callback when page refcount reaches 1
4b94ffdc 80 * @altmap: pre-allocated/reserved memory for vmemmap allocations
5c2c2587
DW
81 * @res: physical address range covered by @ref
82 * @ref: reference count that pins the devm_memremap_pages() mapping
a95c90f1 83 * @kill: callback to transition @ref to the dead state
9476df7d 84 * @dev: host device of the mapping for debug
5042db43
JG
85 * @data: private data pointer for page_free()
86 * @type: memory type: see MEMORY_* in memory_hotplug.h
9476df7d
DW
87 */
88struct dev_pagemap {
5042db43 89 dev_page_free_t page_free;
e7744aa2
LG
90 struct vmem_altmap altmap;
91 bool altmap_valid;
92 struct resource res;
5c2c2587 93 struct percpu_ref *ref;
a95c90f1 94 void (*kill)(struct percpu_ref *ref);
9476df7d 95 struct device *dev;
5042db43
JG
96 void *data;
97 enum memory_type type;
977196b8 98 u64 pci_p2pdma_bus_offset;
9476df7d
DW
99};
100
101#ifdef CONFIG_ZONE_DEVICE
e8d51348 102void *devm_memremap_pages(struct device *dev, struct dev_pagemap *pgmap);
0822acb8
CH
103struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
104 struct dev_pagemap *pgmap);
7b2d55d2 105
8e37d00a
CH
106unsigned long vmem_altmap_offset(struct vmem_altmap *altmap);
107void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns);
9476df7d
DW
108#else
109static inline void *devm_memremap_pages(struct device *dev,
e8d51348 110 struct dev_pagemap *pgmap)
9476df7d
DW
111{
112 /*
113 * Fail attempts to call devm_memremap_pages() without
114 * ZONE_DEVICE support enabled, this requires callers to fall
115 * back to plain devm_memremap() based on config
116 */
117 WARN_ON_ONCE(1);
118 return ERR_PTR(-ENXIO);
119}
120
0822acb8
CH
121static inline struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
122 struct dev_pagemap *pgmap)
9476df7d
DW
123{
124 return NULL;
125}
8e37d00a
CH
126
127static inline unsigned long vmem_altmap_offset(struct vmem_altmap *altmap)
128{
129 return 0;
130}
131
132static inline void vmem_altmap_free(struct vmem_altmap *altmap,
133 unsigned long nr_pfns)
134{
135}
136#endif /* CONFIG_ZONE_DEVICE */
7b2d55d2 137
5c2c2587
DW
138static inline void put_dev_pagemap(struct dev_pagemap *pgmap)
139{
140 if (pgmap)
141 percpu_ref_put(pgmap->ref);
142}
9476df7d 143#endif /* _LINUX_MEMREMAP_H_ */