blob: 79f8ba7c38940953182d05a59df970d06acc13fc [file] [log] [blame]
Dan Williams9476df72016-01-15 16:56:19 -08001#ifndef _LINUX_MEMREMAP_H_
2#define _LINUX_MEMREMAP_H_
3#include <linux/mm.h>
Dan Williams5c2c2582016-01-15 16:56:49 -08004#include <linux/ioport.h>
5#include <linux/percpu-refcount.h>
Dan Williams9476df72016-01-15 16:56:19 -08006
Jérôme Glisse5042db42017-09-08 16:11:43 -07007#include <asm/pgtable.h>
8
Dan Williams9476df72016-01-15 16:56:19 -08009struct resource;
10struct device;
Dan Williams4b94ffd2016-01-15 16:56:22 -080011
12/**
13 * struct vmem_altmap - pre-allocated storage for vmemmap_populate
14 * @base_pfn: base of the entire dev_pagemap mapping
15 * @reserve: pages mapped, but reserved for driver use (relative to @base)
16 * @free: free pages set aside in the mapping for memmap storage
17 * @align: pages reserved to meet allocation alignments
18 * @alloc: track pages consumed, private to vmemmap_populate()
19 */
20struct vmem_altmap {
21 const unsigned long base_pfn;
22 const unsigned long reserve;
23 unsigned long free;
24 unsigned long align;
25 unsigned long alloc;
26};
27
28unsigned long vmem_altmap_offset(struct vmem_altmap *altmap);
29void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns);
30
Dan Williams11db0482016-07-28 15:48:11 -070031#ifdef CONFIG_ZONE_DEVICE
Dan Williams4b94ffd2016-01-15 16:56:22 -080032struct vmem_altmap *to_vmem_altmap(unsigned long memmap_start);
33#else
34static inline struct vmem_altmap *to_vmem_altmap(unsigned long memmap_start)
35{
36 return NULL;
37}
38#endif
39
Jérôme Glisse5042db42017-09-08 16:11:43 -070040/*
41 * Specialize ZONE_DEVICE memory into multiple types each having differents
42 * usage.
43 *
44 * MEMORY_DEVICE_HOST:
45 * Persistent device memory (pmem): struct page might be allocated in different
46 * memory and architecture might want to perform special actions. It is similar
47 * to regular memory, in that the CPU can access it transparently. However,
48 * it is likely to have different bandwidth and latency than regular memory.
49 * See Documentation/nvdimm/nvdimm.txt for more information.
50 *
51 * MEMORY_DEVICE_PRIVATE:
52 * Device memory that is not directly addressable by the CPU: CPU can neither
53 * read nor write private memory. In this case, we do still have struct pages
54 * backing the device memory. Doing so simplifies the implementation, but it is
55 * important to remember that there are certain points at which the struct page
56 * must be treated as an opaque object, rather than a "normal" struct page.
57 *
58 * A more complete discussion of unaddressable memory may be found in
59 * include/linux/hmm.h and Documentation/vm/hmm.txt.
Jérôme Glissedf6ad692017-09-08 16:12:24 -070060 *
61 * MEMORY_DEVICE_PUBLIC:
62 * Device memory that is cache coherent from device and CPU point of view. This
63 * is use on platform that have an advance system bus (like CAPI or CCIX). A
64 * driver can hotplug the device memory using ZONE_DEVICE and with that memory
65 * type. Any page of a process can be migrated to such memory. However no one
66 * should be allow to pin such memory so that it can always be evicted.
Jérôme Glisse5042db42017-09-08 16:11:43 -070067 */
68enum memory_type {
69 MEMORY_DEVICE_HOST = 0,
70 MEMORY_DEVICE_PRIVATE,
Jérôme Glissedf6ad692017-09-08 16:12:24 -070071 MEMORY_DEVICE_PUBLIC,
Jérôme Glisse5042db42017-09-08 16:11:43 -070072};
73
74/*
75 * For MEMORY_DEVICE_PRIVATE we use ZONE_DEVICE and extend it with two
76 * callbacks:
77 * page_fault()
78 * page_free()
79 *
80 * Additional notes about MEMORY_DEVICE_PRIVATE may be found in
81 * include/linux/hmm.h and Documentation/vm/hmm.txt. There is also a brief
82 * explanation in include/linux/memory_hotplug.h.
83 *
84 * The page_fault() callback must migrate page back, from device memory to
85 * system memory, so that the CPU can access it. This might fail for various
86 * reasons (device issues, device have been unplugged, ...). When such error
87 * conditions happen, the page_fault() callback must return VM_FAULT_SIGBUS and
88 * set the CPU page table entry to "poisoned".
89 *
90 * Note that because memory cgroup charges are transferred to the device memory,
91 * this should never fail due to memory restrictions. However, allocation
92 * of a regular system page might still fail because we are out of memory. If
93 * that happens, the page_fault() callback must return VM_FAULT_OOM.
94 *
95 * The page_fault() callback can also try to migrate back multiple pages in one
96 * chunk, as an optimization. It must, however, prioritize the faulting address
97 * over all the others.
98 *
99 *
100 * The page_free() callback is called once the page refcount reaches 1
101 * (ZONE_DEVICE pages never reach 0 refcount unless there is a refcount bug.
102 * This allows the device driver to implement its own memory management.)
Jérôme Glissedf6ad692017-09-08 16:12:24 -0700103 *
104 * For MEMORY_DEVICE_PUBLIC only the page_free() callback matter.
Jérôme Glisse5042db42017-09-08 16:11:43 -0700105 */
106typedef int (*dev_page_fault_t)(struct vm_area_struct *vma,
107 unsigned long addr,
108 const struct page *page,
109 unsigned int flags,
110 pmd_t *pmdp);
111typedef void (*dev_page_free_t)(struct page *page, void *data);
112
Dan Williams9476df72016-01-15 16:56:19 -0800113/**
114 * struct dev_pagemap - metadata for ZONE_DEVICE mappings
Jérôme Glisse5042db42017-09-08 16:11:43 -0700115 * @page_fault: callback when CPU fault on an unaddressable device page
116 * @page_free: free page callback when page refcount reaches 1
Dan Williams4b94ffd2016-01-15 16:56:22 -0800117 * @altmap: pre-allocated/reserved memory for vmemmap allocations
Dan Williams5c2c2582016-01-15 16:56:49 -0800118 * @res: physical address range covered by @ref
119 * @ref: reference count that pins the devm_memremap_pages() mapping
Dan Williams9476df72016-01-15 16:56:19 -0800120 * @dev: host device of the mapping for debug
Jérôme Glisse5042db42017-09-08 16:11:43 -0700121 * @data: private data pointer for page_free()
122 * @type: memory type: see MEMORY_* in memory_hotplug.h
Dan Williams9476df72016-01-15 16:56:19 -0800123 */
124struct dev_pagemap {
Jérôme Glisse5042db42017-09-08 16:11:43 -0700125 dev_page_fault_t page_fault;
126 dev_page_free_t page_free;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800127 struct vmem_altmap *altmap;
128 const struct resource *res;
Dan Williams5c2c2582016-01-15 16:56:49 -0800129 struct percpu_ref *ref;
Dan Williams9476df72016-01-15 16:56:19 -0800130 struct device *dev;
Jérôme Glisse5042db42017-09-08 16:11:43 -0700131 void *data;
132 enum memory_type type;
Dan Williams9476df72016-01-15 16:56:19 -0800133};
134
135#ifdef CONFIG_ZONE_DEVICE
Dan Williams4b94ffd2016-01-15 16:56:22 -0800136void *devm_memremap_pages(struct device *dev, struct resource *res,
Dan Williams5c2c2582016-01-15 16:56:49 -0800137 struct percpu_ref *ref, struct vmem_altmap *altmap);
Dan Williams9476df72016-01-15 16:56:19 -0800138struct dev_pagemap *find_dev_pagemap(resource_size_t phys);
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700139
140static inline bool is_zone_device_page(const struct page *page);
Dan Williams9476df72016-01-15 16:56:19 -0800141#else
142static inline void *devm_memremap_pages(struct device *dev,
Dan Williams5c2c2582016-01-15 16:56:49 -0800143 struct resource *res, struct percpu_ref *ref,
144 struct vmem_altmap *altmap)
Dan Williams9476df72016-01-15 16:56:19 -0800145{
146 /*
147 * Fail attempts to call devm_memremap_pages() without
148 * ZONE_DEVICE support enabled, this requires callers to fall
149 * back to plain devm_memremap() based on config
150 */
151 WARN_ON_ONCE(1);
152 return ERR_PTR(-ENXIO);
153}
154
155static inline struct dev_pagemap *find_dev_pagemap(resource_size_t phys)
156{
157 return NULL;
158}
Jérôme Glisse6b368cd2017-09-08 16:12:32 -0700159#endif
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700160
Jérôme Glisse6b368cd2017-09-08 16:12:32 -0700161#if defined(CONFIG_DEVICE_PRIVATE) || defined(CONFIG_DEVICE_PUBLIC)
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700162static inline bool is_device_private_page(const struct page *page)
163{
Jérôme Glisse6b368cd2017-09-08 16:12:32 -0700164 return is_zone_device_page(page) &&
165 page->pgmap->type == MEMORY_DEVICE_PRIVATE;
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700166}
Jérôme Glissedf6ad692017-09-08 16:12:24 -0700167
168static inline bool is_device_public_page(const struct page *page)
169{
Jérôme Glisse6b368cd2017-09-08 16:12:32 -0700170 return is_zone_device_page(page) &&
171 page->pgmap->type == MEMORY_DEVICE_PUBLIC;
Jérôme Glissedf6ad692017-09-08 16:12:24 -0700172}
Jérôme Glisse6b368cd2017-09-08 16:12:32 -0700173#endif /* CONFIG_DEVICE_PRIVATE || CONFIG_DEVICE_PUBLIC */
Dan Williams5c2c2582016-01-15 16:56:49 -0800174
175/**
176 * get_dev_pagemap() - take a new live reference on the dev_pagemap for @pfn
177 * @pfn: page frame number to lookup page_map
178 * @pgmap: optional known pgmap that already has a reference
179 *
180 * @pgmap allows the overhead of a lookup to be bypassed when @pfn lands in the
181 * same mapping.
182 */
183static inline struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
184 struct dev_pagemap *pgmap)
185{
186 const struct resource *res = pgmap ? pgmap->res : NULL;
187 resource_size_t phys = PFN_PHYS(pfn);
188
189 /*
190 * In the cached case we're already holding a live reference so
191 * we can simply do a blind increment
192 */
193 if (res && phys >= res->start && phys <= res->end) {
194 percpu_ref_get(pgmap->ref);
195 return pgmap;
196 }
197
198 /* fall back to slow path lookup */
199 rcu_read_lock();
200 pgmap = find_dev_pagemap(phys);
201 if (pgmap && !percpu_ref_tryget_live(pgmap->ref))
202 pgmap = NULL;
203 rcu_read_unlock();
204
205 return pgmap;
206}
207
208static inline void put_dev_pagemap(struct dev_pagemap *pgmap)
209{
210 if (pgmap)
211 percpu_ref_put(pgmap->ref);
212}
Dan Williams9476df72016-01-15 16:56:19 -0800213#endif /* _LINUX_MEMREMAP_H_ */