Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Dan Williams | 9476df7 | 2016-01-15 16:56:19 -0800 | [diff] [blame] | 2 | #ifndef _LINUX_MEMREMAP_H_ |
| 3 | #define _LINUX_MEMREMAP_H_ |
Dan Williams | 5c2c258 | 2016-01-15 16:56:49 -0800 | [diff] [blame] | 4 | #include <linux/ioport.h> |
| 5 | #include <linux/percpu-refcount.h> |
Dan Williams | 9476df7 | 2016-01-15 16:56:19 -0800 | [diff] [blame] | 6 | |
Jérôme Glisse | 5042db4 | 2017-09-08 16:11:43 -0700 | [diff] [blame] | 7 | #include <asm/pgtable.h> |
| 8 | |
Dan Williams | 9476df7 | 2016-01-15 16:56:19 -0800 | [diff] [blame] | 9 | struct resource; |
| 10 | struct device; |
Dan Williams | 4b94ffd | 2016-01-15 16:56:22 -0800 | [diff] [blame] | 11 | |
| 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 | */ |
| 20 | struct 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 Glisse | 5042db4 | 2017-09-08 16:11:43 -0700 | [diff] [blame] | 28 | /* |
| 29 | * Specialize ZONE_DEVICE memory into multiple types each having differents |
| 30 | * usage. |
| 31 | * |
Jérôme Glisse | 5042db4 | 2017-09-08 16:11:43 -0700 | [diff] [blame] | 32 | * 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 Rapoport | ad56b73 | 2018-03-21 21:22:47 +0200 | [diff] [blame] | 40 | * include/linux/hmm.h and Documentation/vm/hmm.rst. |
Jérôme Glisse | df6ad69 | 2017-09-08 16:12:24 -0700 | [diff] [blame] | 41 | * |
| 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 Williams | e7638488 | 2018-05-16 11:46:08 -0700 | [diff] [blame] | 48 | * |
| 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). |
Logan Gunthorpe | 5291698 | 2018-10-04 15:27:35 -0600 | [diff] [blame] | 56 | * |
| 57 | * MEMORY_DEVICE_PCI_P2PDMA: |
| 58 | * Device memory residing in a PCI BAR intended for use with Peer-to-Peer |
| 59 | * transactions. |
Jérôme Glisse | 5042db4 | 2017-09-08 16:11:43 -0700 | [diff] [blame] | 60 | */ |
| 61 | enum memory_type { |
Dan Williams | e7638488 | 2018-05-16 11:46:08 -0700 | [diff] [blame] | 62 | MEMORY_DEVICE_PRIVATE = 1, |
Jérôme Glisse | df6ad69 | 2017-09-08 16:12:24 -0700 | [diff] [blame] | 63 | MEMORY_DEVICE_PUBLIC, |
Dan Williams | e7638488 | 2018-05-16 11:46:08 -0700 | [diff] [blame] | 64 | MEMORY_DEVICE_FS_DAX, |
Logan Gunthorpe | 5291698 | 2018-10-04 15:27:35 -0600 | [diff] [blame] | 65 | MEMORY_DEVICE_PCI_P2PDMA, |
Jérôme Glisse | 5042db4 | 2017-09-08 16:11:43 -0700 | [diff] [blame] | 66 | }; |
| 67 | |
| 68 | /* |
| 69 | * For MEMORY_DEVICE_PRIVATE we use ZONE_DEVICE and extend it with two |
| 70 | * callbacks: |
| 71 | * page_fault() |
| 72 | * page_free() |
| 73 | * |
| 74 | * Additional notes about MEMORY_DEVICE_PRIVATE may be found in |
Mike Rapoport | ad56b73 | 2018-03-21 21:22:47 +0200 | [diff] [blame] | 75 | * include/linux/hmm.h and Documentation/vm/hmm.rst. There is also a brief |
Jérôme Glisse | 5042db4 | 2017-09-08 16:11:43 -0700 | [diff] [blame] | 76 | * explanation in include/linux/memory_hotplug.h. |
| 77 | * |
| 78 | * The page_fault() callback must migrate page back, from device memory to |
| 79 | * system memory, so that the CPU can access it. This might fail for various |
| 80 | * reasons (device issues, device have been unplugged, ...). When such error |
| 81 | * conditions happen, the page_fault() callback must return VM_FAULT_SIGBUS and |
| 82 | * set the CPU page table entry to "poisoned". |
| 83 | * |
| 84 | * Note that because memory cgroup charges are transferred to the device memory, |
| 85 | * this should never fail due to memory restrictions. However, allocation |
| 86 | * of a regular system page might still fail because we are out of memory. If |
| 87 | * that happens, the page_fault() callback must return VM_FAULT_OOM. |
| 88 | * |
| 89 | * The page_fault() callback can also try to migrate back multiple pages in one |
| 90 | * chunk, as an optimization. It must, however, prioritize the faulting address |
| 91 | * over all the others. |
| 92 | * |
| 93 | * |
| 94 | * The page_free() callback is called once the page refcount reaches 1 |
| 95 | * (ZONE_DEVICE pages never reach 0 refcount unless there is a refcount bug. |
| 96 | * This allows the device driver to implement its own memory management.) |
Jérôme Glisse | df6ad69 | 2017-09-08 16:12:24 -0700 | [diff] [blame] | 97 | * |
| 98 | * For MEMORY_DEVICE_PUBLIC only the page_free() callback matter. |
Jérôme Glisse | 5042db4 | 2017-09-08 16:11:43 -0700 | [diff] [blame] | 99 | */ |
| 100 | typedef int (*dev_page_fault_t)(struct vm_area_struct *vma, |
| 101 | unsigned long addr, |
| 102 | const struct page *page, |
| 103 | unsigned int flags, |
| 104 | pmd_t *pmdp); |
| 105 | typedef void (*dev_page_free_t)(struct page *page, void *data); |
| 106 | |
Dan Williams | 9476df7 | 2016-01-15 16:56:19 -0800 | [diff] [blame] | 107 | /** |
| 108 | * struct dev_pagemap - metadata for ZONE_DEVICE mappings |
Jérôme Glisse | 5042db4 | 2017-09-08 16:11:43 -0700 | [diff] [blame] | 109 | * @page_fault: callback when CPU fault on an unaddressable device page |
| 110 | * @page_free: free page callback when page refcount reaches 1 |
Dan Williams | 4b94ffd | 2016-01-15 16:56:22 -0800 | [diff] [blame] | 111 | * @altmap: pre-allocated/reserved memory for vmemmap allocations |
Dan Williams | 5c2c258 | 2016-01-15 16:56:49 -0800 | [diff] [blame] | 112 | * @res: physical address range covered by @ref |
| 113 | * @ref: reference count that pins the devm_memremap_pages() mapping |
Dan Williams | 9476df7 | 2016-01-15 16:56:19 -0800 | [diff] [blame] | 114 | * @dev: host device of the mapping for debug |
Jérôme Glisse | 5042db4 | 2017-09-08 16:11:43 -0700 | [diff] [blame] | 115 | * @data: private data pointer for page_free() |
| 116 | * @type: memory type: see MEMORY_* in memory_hotplug.h |
Dan Williams | 9476df7 | 2016-01-15 16:56:19 -0800 | [diff] [blame] | 117 | */ |
| 118 | struct dev_pagemap { |
Jérôme Glisse | 5042db4 | 2017-09-08 16:11:43 -0700 | [diff] [blame] | 119 | dev_page_fault_t page_fault; |
| 120 | dev_page_free_t page_free; |
Logan Gunthorpe | e7744aa | 2017-12-29 08:54:04 +0100 | [diff] [blame] | 121 | struct vmem_altmap altmap; |
| 122 | bool altmap_valid; |
| 123 | struct resource res; |
Dan Williams | 5c2c258 | 2016-01-15 16:56:49 -0800 | [diff] [blame] | 124 | struct percpu_ref *ref; |
Dan Williams | 9476df7 | 2016-01-15 16:56:19 -0800 | [diff] [blame] | 125 | struct device *dev; |
Jérôme Glisse | 5042db4 | 2017-09-08 16:11:43 -0700 | [diff] [blame] | 126 | void *data; |
| 127 | enum memory_type type; |
Logan Gunthorpe | 977196b | 2018-10-04 15:27:37 -0600 | [diff] [blame] | 128 | u64 pci_p2pdma_bus_offset; |
Dan Williams | 9476df7 | 2016-01-15 16:56:19 -0800 | [diff] [blame] | 129 | }; |
| 130 | |
| 131 | #ifdef CONFIG_ZONE_DEVICE |
Christoph Hellwig | e8d5134 | 2017-12-29 08:54:05 +0100 | [diff] [blame] | 132 | void *devm_memremap_pages(struct device *dev, struct dev_pagemap *pgmap); |
Christoph Hellwig | 0822acb | 2017-12-29 08:54:00 +0100 | [diff] [blame] | 133 | struct dev_pagemap *get_dev_pagemap(unsigned long pfn, |
| 134 | struct dev_pagemap *pgmap); |
Jérôme Glisse | 7b2d55d2 | 2017-09-08 16:11:46 -0700 | [diff] [blame] | 135 | |
Christoph Hellwig | 8e37d00 | 2017-12-29 08:53:50 +0100 | [diff] [blame] | 136 | unsigned long vmem_altmap_offset(struct vmem_altmap *altmap); |
| 137 | void vmem_altmap_free(struct vmem_altmap *altmap, unsigned long nr_pfns); |
Dan Williams | 9476df7 | 2016-01-15 16:56:19 -0800 | [diff] [blame] | 138 | #else |
| 139 | static inline void *devm_memremap_pages(struct device *dev, |
Christoph Hellwig | e8d5134 | 2017-12-29 08:54:05 +0100 | [diff] [blame] | 140 | struct dev_pagemap *pgmap) |
Dan Williams | 9476df7 | 2016-01-15 16:56:19 -0800 | [diff] [blame] | 141 | { |
| 142 | /* |
| 143 | * Fail attempts to call devm_memremap_pages() without |
| 144 | * ZONE_DEVICE support enabled, this requires callers to fall |
| 145 | * back to plain devm_memremap() based on config |
| 146 | */ |
| 147 | WARN_ON_ONCE(1); |
| 148 | return ERR_PTR(-ENXIO); |
| 149 | } |
| 150 | |
Christoph Hellwig | 0822acb | 2017-12-29 08:54:00 +0100 | [diff] [blame] | 151 | static inline struct dev_pagemap *get_dev_pagemap(unsigned long pfn, |
| 152 | struct dev_pagemap *pgmap) |
Dan Williams | 9476df7 | 2016-01-15 16:56:19 -0800 | [diff] [blame] | 153 | { |
| 154 | return NULL; |
| 155 | } |
Christoph Hellwig | 8e37d00 | 2017-12-29 08:53:50 +0100 | [diff] [blame] | 156 | |
| 157 | static inline unsigned long vmem_altmap_offset(struct vmem_altmap *altmap) |
| 158 | { |
| 159 | return 0; |
| 160 | } |
| 161 | |
| 162 | static inline void vmem_altmap_free(struct vmem_altmap *altmap, |
| 163 | unsigned long nr_pfns) |
| 164 | { |
| 165 | } |
| 166 | #endif /* CONFIG_ZONE_DEVICE */ |
Jérôme Glisse | 7b2d55d2 | 2017-09-08 16:11:46 -0700 | [diff] [blame] | 167 | |
Dan Williams | 5c2c258 | 2016-01-15 16:56:49 -0800 | [diff] [blame] | 168 | static inline void put_dev_pagemap(struct dev_pagemap *pgmap) |
| 169 | { |
| 170 | if (pgmap) |
| 171 | percpu_ref_put(pgmap->ref); |
| 172 | } |
Dan Williams | 9476df7 | 2016-01-15 16:56:19 -0800 | [diff] [blame] | 173 | #endif /* _LINUX_MEMREMAP_H_ */ |