blob: 6fefb09af7c34ddc550debf429e6769e77c2cd40 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* 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>
6
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00007struct resource;
8struct device;
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;
David Brazdil0f672f62019-12-10 10:32:29 +000020 const unsigned long end_pfn;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000021 const unsigned long reserve;
22 unsigned long free;
23 unsigned long align;
24 unsigned long alloc;
25};
26
27/*
28 * Specialize ZONE_DEVICE memory into multiple types each having differents
29 * usage.
30 *
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.
37 *
38 * A more complete discussion of unaddressable memory may be found in
39 * include/linux/hmm.h and Documentation/vm/hmm.rst.
40 *
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000041 * 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).
David Brazdil0f672f62019-12-10 10:32:29 +000048 *
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
53 * character device.
54 *
55 * MEMORY_DEVICE_PCI_P2PDMA:
56 * Device memory residing in a PCI BAR intended for use with Peer-to-Peer
57 * transactions.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000058 */
59enum memory_type {
David Brazdil0f672f62019-12-10 10:32:29 +000060 /* 0 is reserved to catch uninitialized type fields */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000061 MEMORY_DEVICE_PRIVATE = 1,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000062 MEMORY_DEVICE_FS_DAX,
David Brazdil0f672f62019-12-10 10:32:29 +000063 MEMORY_DEVICE_DEVDAX,
64 MEMORY_DEVICE_PCI_P2PDMA,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000065};
66
David Brazdil0f672f62019-12-10 10:32:29 +000067struct dev_pagemap_ops {
68 /*
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.)
72 */
73 void (*page_free)(struct page *page);
74
75 /*
76 * Transition the refcount in struct dev_pagemap to the dead state.
77 */
78 void (*kill)(struct dev_pagemap *pgmap);
79
80 /*
81 * Wait for refcount in struct dev_pagemap to be idle and reap it.
82 */
83 void (*cleanup)(struct dev_pagemap *pgmap);
84
85 /*
86 * Used for private (un-addressable) device memory only. Must migrate
87 * the page back to a CPU accessible page.
88 */
89 vm_fault_t (*migrate_to_ram)(struct vm_fault *vmf);
90};
91
92#define PGMAP_ALTMAP_VALID (1 << 0)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000093
94/**
95 * struct dev_pagemap - metadata for ZONE_DEVICE mappings
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000096 * @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
David Brazdil0f672f62019-12-10 10:32:29 +000099 * @internal_ref: internal reference if @ref is not provided by the caller
100 * @done: completion for @internal_ref
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000101 * @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
David Brazdil0f672f62019-12-10 10:32:29 +0000104 * @flags: PGMAP_* flags to specify defailed behavior
105 * @ops: method table
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000106 */
107struct dev_pagemap {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000108 struct vmem_altmap altmap;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000109 struct resource res;
110 struct percpu_ref *ref;
David Brazdil0f672f62019-12-10 10:32:29 +0000111 struct percpu_ref internal_ref;
112 struct completion done;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000113 enum memory_type type;
David Brazdil0f672f62019-12-10 10:32:29 +0000114 unsigned int flags;
115 const struct dev_pagemap_ops *ops;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000116};
117
David Brazdil0f672f62019-12-10 10:32:29 +0000118static inline struct vmem_altmap *pgmap_altmap(struct dev_pagemap *pgmap)
119{
120 if (pgmap->flags & PGMAP_ALTMAP_VALID)
121 return &pgmap->altmap;
122 return NULL;
123}
124
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000125#ifdef CONFIG_ZONE_DEVICE
David Brazdil0f672f62019-12-10 10:32:29 +0000126void *memremap_pages(struct dev_pagemap *pgmap, int nid);
127void memunmap_pages(struct dev_pagemap *pgmap);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000128void *devm_memremap_pages(struct device *dev, struct dev_pagemap *pgmap);
David Brazdil0f672f62019-12-10 10:32:29 +0000129void devm_memunmap_pages(struct device *dev, struct dev_pagemap *pgmap);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000130struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
131 struct dev_pagemap *pgmap);
132
133unsigned long vmem_altmap_offset(struct vmem_altmap *altmap);
134void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns);
135#else
136static inline void *devm_memremap_pages(struct device *dev,
137 struct dev_pagemap *pgmap)
138{
139 /*
140 * Fail attempts to call devm_memremap_pages() without
141 * ZONE_DEVICE support enabled, this requires callers to fall
142 * back to plain devm_memremap() based on config
143 */
144 WARN_ON_ONCE(1);
145 return ERR_PTR(-ENXIO);
146}
147
David Brazdil0f672f62019-12-10 10:32:29 +0000148static inline void devm_memunmap_pages(struct device *dev,
149 struct dev_pagemap *pgmap)
150{
151}
152
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000153static inline struct dev_pagemap *get_dev_pagemap(unsigned long pfn,
154 struct dev_pagemap *pgmap)
155{
156 return NULL;
157}
158
159static inline unsigned long vmem_altmap_offset(struct vmem_altmap *altmap)
160{
161 return 0;
162}
163
164static inline void vmem_altmap_free(struct vmem_altmap *altmap,
165 unsigned long nr_pfns)
166{
167}
168#endif /* CONFIG_ZONE_DEVICE */
169
170static inline void put_dev_pagemap(struct dev_pagemap *pgmap)
171{
172 if (pgmap)
173 percpu_ref_put(pgmap->ref);
174}
175#endif /* _LINUX_MEMREMAP_H_ */