blob: 26e8aaba27d5e374e0d25b5bea3bb5d86ea37b96 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Dan Williams9476df72016-01-15 16:56:19 -08002#ifndef _LINUX_MEMREMAP_H_
3#define _LINUX_MEMREMAP_H_
4#include <linux/mm.h>
Dan Williams5c2c2582016-01-15 16:56:49 -08005#include <linux/ioport.h>
6#include <linux/percpu-refcount.h>
Dan Williams9476df72016-01-15 16:56:19 -08007
Jérôme Glisse5042db42017-09-08 16:11:43 -07008#include <asm/pgtable.h>
9
Dan Williams9476df72016-01-15 16:56:19 -080010struct resource;
11struct device;
Dan Williams4b94ffd2016-01-15 16:56:22 -080012
13/**
14 * struct vmem_altmap - pre-allocated storage for vmemmap_populate
15 * @base_pfn: base of the entire dev_pagemap mapping
16 * @reserve: pages mapped, but reserved for driver use (relative to @base)
17 * @free: free pages set aside in the mapping for memmap storage
18 * @align: pages reserved to meet allocation alignments
19 * @alloc: track pages consumed, private to vmemmap_populate()
20 */
21struct vmem_altmap {
22 const unsigned long base_pfn;
23 const unsigned long reserve;
24 unsigned long free;
25 unsigned long align;
26 unsigned long alloc;
27};
28
Dan Williams11db0482016-07-28 15:48:11 -070029#ifdef CONFIG_ZONE_DEVICE
Dan Williams4b94ffd2016-01-15 16:56:22 -080030struct vmem_altmap *to_vmem_altmap(unsigned long memmap_start);
31#else
32static inline struct vmem_altmap *to_vmem_altmap(unsigned long memmap_start)
33{
34 return NULL;
35}
36#endif
37
Jérôme Glisse5042db42017-09-08 16:11:43 -070038/*
39 * Specialize ZONE_DEVICE memory into multiple types each having differents
40 * usage.
41 *
42 * MEMORY_DEVICE_HOST:
43 * Persistent device memory (pmem): struct page might be allocated in different
44 * memory and architecture might want to perform special actions. It is similar
45 * to regular memory, in that the CPU can access it transparently. However,
46 * it is likely to have different bandwidth and latency than regular memory.
47 * See Documentation/nvdimm/nvdimm.txt for more information.
48 *
49 * MEMORY_DEVICE_PRIVATE:
50 * Device memory that is not directly addressable by the CPU: CPU can neither
51 * read nor write private memory. In this case, we do still have struct pages
52 * backing the device memory. Doing so simplifies the implementation, but it is
53 * important to remember that there are certain points at which the struct page
54 * must be treated as an opaque object, rather than a "normal" struct page.
55 *
56 * A more complete discussion of unaddressable memory may be found in
57 * include/linux/hmm.h and Documentation/vm/hmm.txt.
Jérôme Glissedf6ad692017-09-08 16:12:24 -070058 *
59 * MEMORY_DEVICE_PUBLIC:
60 * Device memory that is cache coherent from device and CPU point of view. This
61 * is use on platform that have an advance system bus (like CAPI or CCIX). A
62 * driver can hotplug the device memory using ZONE_DEVICE and with that memory
63 * type. Any page of a process can be migrated to such memory. However no one
64 * should be allow to pin such memory so that it can always be evicted.
Jérôme Glisse5042db42017-09-08 16:11:43 -070065 */
66enum memory_type {
67 MEMORY_DEVICE_HOST = 0,
68 MEMORY_DEVICE_PRIVATE,
Jérôme Glissedf6ad692017-09-08 16:12:24 -070069 MEMORY_DEVICE_PUBLIC,
Jérôme Glisse5042db42017-09-08 16:11:43 -070070};
71
72/*
73 * For MEMORY_DEVICE_PRIVATE we use ZONE_DEVICE and extend it with two
74 * callbacks:
75 * page_fault()
76 * page_free()
77 *
78 * Additional notes about MEMORY_DEVICE_PRIVATE may be found in
79 * include/linux/hmm.h and Documentation/vm/hmm.txt. There is also a brief
80 * explanation in include/linux/memory_hotplug.h.
81 *
82 * The page_fault() callback must migrate page back, from device memory to
83 * system memory, so that the CPU can access it. This might fail for various
84 * reasons (device issues, device have been unplugged, ...). When such error
85 * conditions happen, the page_fault() callback must return VM_FAULT_SIGBUS and
86 * set the CPU page table entry to "poisoned".
87 *
88 * Note that because memory cgroup charges are transferred to the device memory,
89 * this should never fail due to memory restrictions. However, allocation
90 * of a regular system page might still fail because we are out of memory. If
91 * that happens, the page_fault() callback must return VM_FAULT_OOM.
92 *
93 * The page_fault() callback can also try to migrate back multiple pages in one
94 * chunk, as an optimization. It must, however, prioritize the faulting address
95 * over all the others.
96 *
97 *
98 * The page_free() callback is called once the page refcount reaches 1
99 * (ZONE_DEVICE pages never reach 0 refcount unless there is a refcount bug.
100 * This allows the device driver to implement its own memory management.)
Jérôme Glissedf6ad692017-09-08 16:12:24 -0700101 *
102 * For MEMORY_DEVICE_PUBLIC only the page_free() callback matter.
Jérôme Glisse5042db42017-09-08 16:11:43 -0700103 */
104typedef int (*dev_page_fault_t)(struct vm_area_struct *vma,
105 unsigned long addr,
106 const struct page *page,
107 unsigned int flags,
108 pmd_t *pmdp);
109typedef void (*dev_page_free_t)(struct page *page, void *data);
110
Dan Williams9476df72016-01-15 16:56:19 -0800111/**
112 * struct dev_pagemap - metadata for ZONE_DEVICE mappings
Jérôme Glisse5042db42017-09-08 16:11:43 -0700113 * @page_fault: callback when CPU fault on an unaddressable device page
114 * @page_free: free page callback when page refcount reaches 1
Dan Williams4b94ffd2016-01-15 16:56:22 -0800115 * @altmap: pre-allocated/reserved memory for vmemmap allocations
Dan Williams5c2c2582016-01-15 16:56:49 -0800116 * @res: physical address range covered by @ref
117 * @ref: reference count that pins the devm_memremap_pages() mapping
Dan Williams9476df72016-01-15 16:56:19 -0800118 * @dev: host device of the mapping for debug
Jérôme Glisse5042db42017-09-08 16:11:43 -0700119 * @data: private data pointer for page_free()
120 * @type: memory type: see MEMORY_* in memory_hotplug.h
Dan Williams9476df72016-01-15 16:56:19 -0800121 */
122struct dev_pagemap {
Jérôme Glisse5042db42017-09-08 16:11:43 -0700123 dev_page_fault_t page_fault;
124 dev_page_free_t page_free;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800125 struct vmem_altmap *altmap;
126 const struct resource *res;
Dan Williams5c2c2582016-01-15 16:56:49 -0800127 struct percpu_ref *ref;
Dan Williams9476df72016-01-15 16:56:19 -0800128 struct device *dev;
Jérôme Glisse5042db42017-09-08 16:11:43 -0700129 void *data;
130 enum memory_type type;
Dan Williams9476df72016-01-15 16:56:19 -0800131};
132
133#ifdef CONFIG_ZONE_DEVICE
Dan Williams4b94ffd2016-01-15 16:56:22 -0800134void *devm_memremap_pages(struct device *dev, struct resource *res,
Dan Williams5c2c2582016-01-15 16:56:49 -0800135 struct percpu_ref *ref, struct vmem_altmap *altmap);
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100136struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
137 struct dev_pagemap *pgmap);
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700138
Christoph Hellwig8e37d002017-12-29 08:53:50 +0100139unsigned long vmem_altmap_offset(struct vmem_altmap *altmap);
140void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns);
141
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700142static inline bool is_zone_device_page(const struct page *page);
Dan Williams9476df72016-01-15 16:56:19 -0800143#else
144static inline void *devm_memremap_pages(struct device *dev,
Dan Williams5c2c2582016-01-15 16:56:49 -0800145 struct resource *res, struct percpu_ref *ref,
146 struct vmem_altmap *altmap)
Dan Williams9476df72016-01-15 16:56:19 -0800147{
148 /*
149 * Fail attempts to call devm_memremap_pages() without
150 * ZONE_DEVICE support enabled, this requires callers to fall
151 * back to plain devm_memremap() based on config
152 */
153 WARN_ON_ONCE(1);
154 return ERR_PTR(-ENXIO);
155}
156
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100157static inline struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
158 struct dev_pagemap *pgmap)
Dan Williams9476df72016-01-15 16:56:19 -0800159{
160 return NULL;
161}
Christoph Hellwig8e37d002017-12-29 08:53:50 +0100162
163static inline unsigned long vmem_altmap_offset(struct vmem_altmap *altmap)
164{
165 return 0;
166}
167
168static inline void vmem_altmap_free(struct vmem_altmap *altmap,
169 unsigned long nr_pfns)
170{
171}
172#endif /* CONFIG_ZONE_DEVICE */
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700173
Jérôme Glisse6b368cd2017-09-08 16:12:32 -0700174#if defined(CONFIG_DEVICE_PRIVATE) || defined(CONFIG_DEVICE_PUBLIC)
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700175static inline bool is_device_private_page(const struct page *page)
176{
Jérôme Glisse6b368cd2017-09-08 16:12:32 -0700177 return is_zone_device_page(page) &&
178 page->pgmap->type == MEMORY_DEVICE_PRIVATE;
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700179}
Jérôme Glissedf6ad692017-09-08 16:12:24 -0700180
181static inline bool is_device_public_page(const struct page *page)
182{
Jérôme Glisse6b368cd2017-09-08 16:12:32 -0700183 return is_zone_device_page(page) &&
184 page->pgmap->type == MEMORY_DEVICE_PUBLIC;
Jérôme Glissedf6ad692017-09-08 16:12:24 -0700185}
Jérôme Glisse6b368cd2017-09-08 16:12:32 -0700186#endif /* CONFIG_DEVICE_PRIVATE || CONFIG_DEVICE_PUBLIC */
Dan Williams5c2c2582016-01-15 16:56:49 -0800187
Dan Williams5c2c2582016-01-15 16:56:49 -0800188static inline void put_dev_pagemap(struct dev_pagemap *pgmap)
189{
190 if (pgmap)
191 percpu_ref_put(pgmap->ref);
192}
Dan Williams9476df72016-01-15 16:56:19 -0800193#endif /* _LINUX_MEMREMAP_H_ */