blob: a84572cdc438a242e14b4479bbda7df32c6651e3 [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_
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
Jérôme Glisse5042db42017-09-08 16:11:43 -070028/*
29 * Specialize ZONE_DEVICE memory into multiple types each having differents
30 * usage.
31 *
Jérôme Glisse5042db42017-09-08 16:11:43 -070032 * MEMORY_DEVICE_PRIVATE:
33 * Device memory that is not directly addressable by the CPU: CPU can neither
34 * read nor write private memory. In this case, we do still have struct pages
35 * backing the device memory. Doing so simplifies the implementation, but it is
36 * important to remember that there are certain points at which the struct page
37 * must be treated as an opaque object, rather than a "normal" struct page.
38 *
39 * A more complete discussion of unaddressable memory may be found in
Mike Rapoportad56b732018-03-21 21:22:47 +020040 * include/linux/hmm.h and Documentation/vm/hmm.rst.
Jérôme Glissedf6ad692017-09-08 16:12:24 -070041 *
42 * MEMORY_DEVICE_PUBLIC:
43 * Device memory that is cache coherent from device and CPU point of view. This
44 * is use on platform that have an advance system bus (like CAPI or CCIX). A
45 * driver can hotplug the device memory using ZONE_DEVICE and with that memory
46 * type. Any page of a process can be migrated to such memory. However no one
47 * should be allow to pin such memory so that it can always be evicted.
Dan Williamse76384882018-05-16 11:46:08 -070048 *
49 * MEMORY_DEVICE_FS_DAX:
50 * Host memory that has similar access semantics as System RAM i.e. DMA
51 * coherent and supports page pinning. In support of coordinating page
52 * pinning vs other operations MEMORY_DEVICE_FS_DAX arranges for a
53 * wakeup event whenever a page is unpinned and becomes idle. This
54 * wakeup is used to coordinate physical address space management (ex:
55 * fs truncate/hole punch) vs pinned pages (ex: device dma).
Jérôme Glisse5042db42017-09-08 16:11:43 -070056 */
57enum memory_type {
Dan Williamse76384882018-05-16 11:46:08 -070058 MEMORY_DEVICE_PRIVATE = 1,
Jérôme Glissedf6ad692017-09-08 16:12:24 -070059 MEMORY_DEVICE_PUBLIC,
Dan Williamse76384882018-05-16 11:46:08 -070060 MEMORY_DEVICE_FS_DAX,
Jérôme Glisse5042db42017-09-08 16:11:43 -070061};
62
63/*
64 * For MEMORY_DEVICE_PRIVATE we use ZONE_DEVICE and extend it with two
65 * callbacks:
66 * page_fault()
67 * page_free()
68 *
69 * Additional notes about MEMORY_DEVICE_PRIVATE may be found in
Mike Rapoportad56b732018-03-21 21:22:47 +020070 * include/linux/hmm.h and Documentation/vm/hmm.rst. There is also a brief
Jérôme Glisse5042db42017-09-08 16:11:43 -070071 * explanation in include/linux/memory_hotplug.h.
72 *
73 * The page_fault() callback must migrate page back, from device memory to
74 * system memory, so that the CPU can access it. This might fail for various
75 * reasons (device issues, device have been unplugged, ...). When such error
76 * conditions happen, the page_fault() callback must return VM_FAULT_SIGBUS and
77 * set the CPU page table entry to "poisoned".
78 *
79 * Note that because memory cgroup charges are transferred to the device memory,
80 * this should never fail due to memory restrictions. However, allocation
81 * of a regular system page might still fail because we are out of memory. If
82 * that happens, the page_fault() callback must return VM_FAULT_OOM.
83 *
84 * The page_fault() callback can also try to migrate back multiple pages in one
85 * chunk, as an optimization. It must, however, prioritize the faulting address
86 * over all the others.
87 *
88 *
89 * The page_free() callback is called once the page refcount reaches 1
90 * (ZONE_DEVICE pages never reach 0 refcount unless there is a refcount bug.
91 * This allows the device driver to implement its own memory management.)
Jérôme Glissedf6ad692017-09-08 16:12:24 -070092 *
93 * For MEMORY_DEVICE_PUBLIC only the page_free() callback matter.
Jérôme Glisse5042db42017-09-08 16:11:43 -070094 */
95typedef int (*dev_page_fault_t)(struct vm_area_struct *vma,
96 unsigned long addr,
97 const struct page *page,
98 unsigned int flags,
99 pmd_t *pmdp);
100typedef void (*dev_page_free_t)(struct page *page, void *data);
101
Dan Williams9476df72016-01-15 16:56:19 -0800102/**
103 * struct dev_pagemap - metadata for ZONE_DEVICE mappings
Jérôme Glisse5042db42017-09-08 16:11:43 -0700104 * @page_fault: callback when CPU fault on an unaddressable device page
105 * @page_free: free page callback when page refcount reaches 1
Dan Williams4b94ffd2016-01-15 16:56:22 -0800106 * @altmap: pre-allocated/reserved memory for vmemmap allocations
Dan Williams5c2c2582016-01-15 16:56:49 -0800107 * @res: physical address range covered by @ref
108 * @ref: reference count that pins the devm_memremap_pages() mapping
Dan Williamsec5471c2018-12-28 00:34:57 -0800109 * @kill: callback to transition @ref to the dead state
Dan Williams9476df72016-01-15 16:56:19 -0800110 * @dev: host device of the mapping for debug
Jérôme Glisse5042db42017-09-08 16:11:43 -0700111 * @data: private data pointer for page_free()
112 * @type: memory type: see MEMORY_* in memory_hotplug.h
Dan Williams9476df72016-01-15 16:56:19 -0800113 */
114struct dev_pagemap {
Jérôme Glisse5042db42017-09-08 16:11:43 -0700115 dev_page_fault_t page_fault;
116 dev_page_free_t page_free;
Logan Gunthorpee7744aa2017-12-29 08:54:04 +0100117 struct vmem_altmap altmap;
118 bool altmap_valid;
119 struct resource res;
Dan Williams5c2c2582016-01-15 16:56:49 -0800120 struct percpu_ref *ref;
Dan Williamsec5471c2018-12-28 00:34:57 -0800121 void (*kill)(struct percpu_ref *ref);
Dan Williams9476df72016-01-15 16:56:19 -0800122 struct device *dev;
Jérôme Glisse5042db42017-09-08 16:11:43 -0700123 void *data;
124 enum memory_type type;
Dan Williams9476df72016-01-15 16:56:19 -0800125};
126
127#ifdef CONFIG_ZONE_DEVICE
Christoph Hellwige8d51342017-12-29 08:54:05 +0100128void *devm_memremap_pages(struct device *dev, struct dev_pagemap *pgmap);
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100129struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
130 struct dev_pagemap *pgmap);
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700131
Christoph Hellwig8e37d002017-12-29 08:53:50 +0100132unsigned long vmem_altmap_offset(struct vmem_altmap *altmap);
133void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns);
Dan Williams9476df72016-01-15 16:56:19 -0800134#else
135static inline void *devm_memremap_pages(struct device *dev,
Christoph Hellwige8d51342017-12-29 08:54:05 +0100136 struct dev_pagemap *pgmap)
Dan Williams9476df72016-01-15 16:56:19 -0800137{
138 /*
139 * Fail attempts to call devm_memremap_pages() without
140 * ZONE_DEVICE support enabled, this requires callers to fall
141 * back to plain devm_memremap() based on config
142 */
143 WARN_ON_ONCE(1);
144 return ERR_PTR(-ENXIO);
145}
146
Christoph Hellwig0822acb2017-12-29 08:54:00 +0100147static inline struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
148 struct dev_pagemap *pgmap)
Dan Williams9476df72016-01-15 16:56:19 -0800149{
150 return NULL;
151}
Christoph Hellwig8e37d002017-12-29 08:53:50 +0100152
153static inline unsigned long vmem_altmap_offset(struct vmem_altmap *altmap)
154{
155 return 0;
156}
157
158static inline void vmem_altmap_free(struct vmem_altmap *altmap,
159 unsigned long nr_pfns)
160{
161}
162#endif /* CONFIG_ZONE_DEVICE */
Jérôme Glisse7b2d55d22017-09-08 16:11:46 -0700163
Dan Williams5c2c2582016-01-15 16:56:49 -0800164static inline void put_dev_pagemap(struct dev_pagemap *pgmap)
165{
166 if (pgmap)
167 percpu_ref_put(pgmap->ref);
168}
Dan Williams9476df72016-01-15 16:56:19 -0800169#endif /* _LINUX_MEMREMAP_H_ */