1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_MEMREMAP_H_
3 #define _LINUX_MEMREMAP_H_
4 #include <linux/ioport.h>
5 #include <linux/percpu-refcount.h>
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()
19 const unsigned long base_pfn;
20 const unsigned long end_pfn;
21 const unsigned long reserve;
28 * Specialize ZONE_DEVICE memory into multiple types each having differents
31 * MEMORY_DEVICE_PRIVATE:
32 * Device memory that is not directly addressable by the CPU: CPU can neither
33 * read nor write private memory. In this case, we do still have struct pages
34 * backing the device memory. Doing so simplifies the implementation, but it is
35 * important to remember that there are certain points at which the struct page
36 * must be treated as an opaque object, rather than a "normal" struct page.
38 * A more complete discussion of unaddressable memory may be found in
39 * include/linux/hmm.h and Documentation/vm/hmm.rst.
41 * MEMORY_DEVICE_FS_DAX:
42 * Host memory that has similar access semantics as System RAM i.e. DMA
43 * coherent and supports page pinning. In support of coordinating page
44 * pinning vs other operations MEMORY_DEVICE_FS_DAX arranges for a
45 * wakeup event whenever a page is unpinned and becomes idle. This
46 * wakeup is used to coordinate physical address space management (ex:
47 * fs truncate/hole punch) vs pinned pages (ex: device dma).
49 * MEMORY_DEVICE_DEVDAX:
50 * Host memory that has similar access semantics as System RAM i.e. DMA
51 * coherent and supports page pinning. In contrast to
52 * MEMORY_DEVICE_FS_DAX, this memory is access via a device-dax
55 * MEMORY_DEVICE_PCI_P2PDMA:
56 * Device memory residing in a PCI BAR intended for use with Peer-to-Peer
60 /* 0 is reserved to catch uninitialized type fields */
61 MEMORY_DEVICE_PRIVATE = 1,
64 MEMORY_DEVICE_PCI_P2PDMA,
67 struct dev_pagemap_ops {
69 * Called once the page refcount reaches 1. (ZONE_DEVICE pages never
70 * reach 0 refcount unless there is a refcount bug. This allows the
71 * device driver to implement its own memory management.)
73 void (*page_free)(struct page *page);
76 * Transition the refcount in struct dev_pagemap to the dead state.
78 void (*kill)(struct dev_pagemap *pgmap);
81 * Wait for refcount in struct dev_pagemap to be idle and reap it.
83 void (*cleanup)(struct dev_pagemap *pgmap);
86 * Used for private (un-addressable) device memory only. Must migrate
87 * the page back to a CPU accessible page.
89 vm_fault_t (*migrate_to_ram)(struct vm_fault *vmf);
92 #define PGMAP_ALTMAP_VALID (1 << 0)
95 * struct dev_pagemap - metadata for ZONE_DEVICE mappings
96 * @altmap: pre-allocated/reserved memory for vmemmap allocations
97 * @res: physical address range covered by @ref
98 * @ref: reference count that pins the devm_memremap_pages() mapping
99 * @internal_ref: internal reference if @ref is not provided by the caller
100 * @done: completion for @internal_ref
101 * @dev: host device of the mapping for debug
102 * @data: private data pointer for page_free()
103 * @type: memory type: see MEMORY_* in memory_hotplug.h
104 * @flags: PGMAP_* flags to specify defailed behavior
108 struct vmem_altmap altmap;
110 struct percpu_ref *ref;
111 struct percpu_ref internal_ref;
112 struct completion done;
113 enum memory_type type;
115 const struct dev_pagemap_ops *ops;
118 static inline struct vmem_altmap *pgmap_altmap(struct dev_pagemap *pgmap)
120 if (pgmap->flags & PGMAP_ALTMAP_VALID)
121 return &pgmap->altmap;
125 #ifdef CONFIG_ZONE_DEVICE
126 void *memremap_pages(struct dev_pagemap *pgmap, int nid);
127 void memunmap_pages(struct dev_pagemap *pgmap);
128 void *devm_memremap_pages(struct device *dev, struct dev_pagemap *pgmap);
129 void devm_memunmap_pages(struct device *dev, struct dev_pagemap *pgmap);
130 struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
131 struct dev_pagemap *pgmap);
133 unsigned long vmem_altmap_offset(struct vmem_altmap *altmap);
134 void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns);
135 unsigned long memremap_compat_align(void);
137 static inline void *devm_memremap_pages(struct device *dev,
138 struct dev_pagemap *pgmap)
141 * Fail attempts to call devm_memremap_pages() without
142 * ZONE_DEVICE support enabled, this requires callers to fall
143 * back to plain devm_memremap() based on config
146 return ERR_PTR(-ENXIO);
149 static inline void devm_memunmap_pages(struct device *dev,
150 struct dev_pagemap *pgmap)
154 static inline struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
155 struct dev_pagemap *pgmap)
160 static inline unsigned long vmem_altmap_offset(struct vmem_altmap *altmap)
165 static inline void vmem_altmap_free(struct vmem_altmap *altmap,
166 unsigned long nr_pfns)
170 /* when memremap_pages() is disabled all archs can remap a single page */
171 static inline unsigned long memremap_compat_align(void)
175 #endif /* CONFIG_ZONE_DEVICE */
177 static inline void put_dev_pagemap(struct dev_pagemap *pgmap)
180 percpu_ref_put(pgmap->ref);
183 #endif /* _LINUX_MEMREMAP_H_ */