mm/hmm: do not erase snapshot when a range is invalidated
[linux-block.git] / include / linux / hmm.h
CommitLineData
133ff0ea
JG
1/*
2 * Copyright 2013 Red Hat Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
f813f219 14 * Authors: Jérôme Glisse <jglisse@redhat.com>
133ff0ea
JG
15 */
16/*
17 * Heterogeneous Memory Management (HMM)
18 *
ad56b738 19 * See Documentation/vm/hmm.rst for reasons and overview of what HMM is and it
133ff0ea
JG
20 * is for. Here we focus on the HMM API description, with some explanation of
21 * the underlying implementation.
22 *
23 * Short description: HMM provides a set of helpers to share a virtual address
24 * space between CPU and a device, so that the device can access any valid
25 * address of the process (while still obeying memory protection). HMM also
26 * provides helpers to migrate process memory to device memory, and back. Each
27 * set of functionality (address space mirroring, and migration to and from
28 * device memory) can be used independently of the other.
29 *
30 *
31 * HMM address space mirroring API:
32 *
33 * Use HMM address space mirroring if you want to mirror range of the CPU page
34 * table of a process into a device page table. Here, "mirror" means "keep
35 * synchronized". Prerequisites: the device must provide the ability to write-
36 * protect its page tables (at PAGE_SIZE granularity), and must be able to
37 * recover from the resulting potential page faults.
38 *
39 * HMM guarantees that at any point in time, a given virtual address points to
40 * either the same memory in both CPU and device page tables (that is: CPU and
41 * device page tables each point to the same pages), or that one page table (CPU
42 * or device) points to no entry, while the other still points to the old page
43 * for the address. The latter case happens when the CPU page table update
44 * happens first, and then the update is mirrored over to the device page table.
45 * This does not cause any issue, because the CPU page table cannot start
46 * pointing to a new page until the device page table is invalidated.
47 *
48 * HMM uses mmu_notifiers to monitor the CPU page tables, and forwards any
49 * updates to each device driver that has registered a mirror. It also provides
50 * some API calls to help with taking a snapshot of the CPU page table, and to
51 * synchronize with any updates that might happen concurrently.
52 *
53 *
54 * HMM migration to and from device memory:
55 *
56 * HMM provides a set of helpers to hotplug device memory as ZONE_DEVICE, with
57 * a new MEMORY_DEVICE_PRIVATE type. This provides a struct page for each page
58 * of the device memory, and allows the device driver to manage its memory
59 * using those struct pages. Having struct pages for device memory makes
60 * migration easier. Because that memory is not addressable by the CPU it must
61 * never be pinned to the device; in other words, any CPU page fault can always
62 * cause the device memory to be migrated (copied/moved) back to regular memory.
63 *
64 * A new migrate helper (migrate_vma()) has been added (see mm/migrate.c) that
65 * allows use of a device DMA engine to perform the copy operation between
66 * regular system memory and device memory.
67 */
68#ifndef LINUX_HMM_H
69#define LINUX_HMM_H
70
71#include <linux/kconfig.h>
063a7d1d 72#include <asm/pgtable.h>
133ff0ea
JG
73
74#if IS_ENABLED(CONFIG_HMM)
75
858b54da 76#include <linux/device.h>
4ef589dc
JG
77#include <linux/migrate.h>
78#include <linux/memremap.h>
79#include <linux/completion.h>
80
c0b12405 81struct hmm;
133ff0ea
JG
82
83/*
f88a1e90
JG
84 * hmm_pfn_flag_e - HMM flag enums
85 *
133ff0ea 86 * Flags:
86586a41 87 * HMM_PFN_VALID: pfn is valid. It has, at least, read permission.
133ff0ea 88 * HMM_PFN_WRITE: CPU page table has write permission set
f88a1e90
JG
89 * HMM_PFN_DEVICE_PRIVATE: private device memory (ZONE_DEVICE)
90 *
91 * The driver provide a flags array, if driver valid bit for an entry is bit
92 * 3 ie (entry & (1 << 3)) is true if entry is valid then driver must provide
93 * an array in hmm_range.flags with hmm_range.flags[HMM_PFN_VALID] == 1 << 3.
94 * Same logic apply to all flags. This is same idea as vm_page_prot in vma
95 * except that this is per device driver rather than per architecture.
96 */
97enum hmm_pfn_flag_e {
98 HMM_PFN_VALID = 0,
99 HMM_PFN_WRITE,
100 HMM_PFN_DEVICE_PRIVATE,
101 HMM_PFN_FLAG_MAX
102};
103
104/*
105 * hmm_pfn_value_e - HMM pfn special value
106 *
107 * Flags:
da4c3c73 108 * HMM_PFN_ERROR: corresponding CPU page table entry points to poisoned memory
f88a1e90 109 * HMM_PFN_NONE: corresponding CPU page table entry is pte_none()
da4c3c73 110 * HMM_PFN_SPECIAL: corresponding CPU page table entry is special; i.e., the
67fa1666 111 * result of vmf_insert_pfn() or vm_insert_page(). Therefore, it should not
da4c3c73
JG
112 * be mirrored by a device, because the entry will never have HMM_PFN_VALID
113 * set and the pfn value is undefined.
f88a1e90
JG
114 *
115 * Driver provide entry value for none entry, error entry and special entry,
116 * driver can alias (ie use same value for error and special for instance). It
117 * should not alias none and error or special.
118 *
119 * HMM pfn value returned by hmm_vma_get_pfns() or hmm_vma_fault() will be:
120 * hmm_range.values[HMM_PFN_ERROR] if CPU page table entry is poisonous,
121 * hmm_range.values[HMM_PFN_NONE] if there is no CPU page table
122 * hmm_range.values[HMM_PFN_SPECIAL] if CPU page table entry is a special one
133ff0ea 123 */
f88a1e90
JG
124enum hmm_pfn_value_e {
125 HMM_PFN_ERROR,
126 HMM_PFN_NONE,
127 HMM_PFN_SPECIAL,
128 HMM_PFN_VALUE_MAX
129};
130
131/*
132 * struct hmm_range - track invalidation lock on virtual address range
133 *
704f3f2c 134 * @hmm: the core HMM structure this range is active against
f88a1e90
JG
135 * @vma: the vm area struct for the range
136 * @list: all range lock are on a list
137 * @start: range virtual start address (inclusive)
138 * @end: range virtual end address (exclusive)
139 * @pfns: array of pfns (big enough for the range)
140 * @flags: pfn flags to match device driver page table
141 * @values: pfn value for some special case (none, special, error, ...)
142 * @pfn_shifts: pfn shift value (should be <= PAGE_SHIFT)
143 * @valid: pfns array did not change since it has been fill by an HMM function
144 */
145struct hmm_range {
704f3f2c 146 struct hmm *hmm;
f88a1e90
JG
147 struct vm_area_struct *vma;
148 struct list_head list;
149 unsigned long start;
150 unsigned long end;
151 uint64_t *pfns;
152 const uint64_t *flags;
153 const uint64_t *values;
154 uint8_t pfn_shift;
155 bool valid;
156};
133ff0ea
JG
157
158/*
ff05c0c6 159 * hmm_pfn_to_page() - return struct page pointed to by a valid HMM pfn
f88a1e90 160 * @range: range use to decode HMM pfn value
ff05c0c6
JG
161 * @pfn: HMM pfn value to get corresponding struct page from
162 * Returns: struct page pointer if pfn is a valid HMM pfn, NULL otherwise
133ff0ea 163 *
ff05c0c6
JG
164 * If the HMM pfn is valid (ie valid flag set) then return the struct page
165 * matching the pfn value stored in the HMM pfn. Otherwise return NULL.
133ff0ea 166 */
f88a1e90
JG
167static inline struct page *hmm_pfn_to_page(const struct hmm_range *range,
168 uint64_t pfn)
133ff0ea 169{
f88a1e90
JG
170 if (pfn == range->values[HMM_PFN_NONE])
171 return NULL;
172 if (pfn == range->values[HMM_PFN_ERROR])
173 return NULL;
174 if (pfn == range->values[HMM_PFN_SPECIAL])
133ff0ea 175 return NULL;
f88a1e90
JG
176 if (!(pfn & range->flags[HMM_PFN_VALID]))
177 return NULL;
178 return pfn_to_page(pfn >> range->pfn_shift);
133ff0ea
JG
179}
180
181/*
ff05c0c6 182 * hmm_pfn_to_pfn() - return pfn value store in a HMM pfn
f88a1e90 183 * @range: range use to decode HMM pfn value
ff05c0c6
JG
184 * @pfn: HMM pfn value to extract pfn from
185 * Returns: pfn value if HMM pfn is valid, -1UL otherwise
133ff0ea 186 */
f88a1e90
JG
187static inline unsigned long hmm_pfn_to_pfn(const struct hmm_range *range,
188 uint64_t pfn)
133ff0ea 189{
f88a1e90
JG
190 if (pfn == range->values[HMM_PFN_NONE])
191 return -1UL;
192 if (pfn == range->values[HMM_PFN_ERROR])
193 return -1UL;
194 if (pfn == range->values[HMM_PFN_SPECIAL])
133ff0ea 195 return -1UL;
f88a1e90
JG
196 if (!(pfn & range->flags[HMM_PFN_VALID]))
197 return -1UL;
198 return (pfn >> range->pfn_shift);
133ff0ea
JG
199}
200
201/*
ff05c0c6 202 * hmm_pfn_from_page() - create a valid HMM pfn value from struct page
f88a1e90 203 * @range: range use to encode HMM pfn value
ff05c0c6
JG
204 * @page: struct page pointer for which to create the HMM pfn
205 * Returns: valid HMM pfn for the page
133ff0ea 206 */
f88a1e90
JG
207static inline uint64_t hmm_pfn_from_page(const struct hmm_range *range,
208 struct page *page)
133ff0ea 209{
f88a1e90
JG
210 return (page_to_pfn(page) << range->pfn_shift) |
211 range->flags[HMM_PFN_VALID];
133ff0ea
JG
212}
213
214/*
ff05c0c6 215 * hmm_pfn_from_pfn() - create a valid HMM pfn value from pfn
f88a1e90 216 * @range: range use to encode HMM pfn value
ff05c0c6
JG
217 * @pfn: pfn value for which to create the HMM pfn
218 * Returns: valid HMM pfn for the pfn
133ff0ea 219 */
f88a1e90
JG
220static inline uint64_t hmm_pfn_from_pfn(const struct hmm_range *range,
221 unsigned long pfn)
133ff0ea 222{
f88a1e90
JG
223 return (pfn << range->pfn_shift) |
224 range->flags[HMM_PFN_VALID];
133ff0ea
JG
225}
226
227
c0b12405
JG
228#if IS_ENABLED(CONFIG_HMM_MIRROR)
229/*
230 * Mirroring: how to synchronize device page table with CPU page table.
231 *
232 * A device driver that is participating in HMM mirroring must always
233 * synchronize with CPU page table updates. For this, device drivers can either
234 * directly use mmu_notifier APIs or they can use the hmm_mirror API. Device
235 * drivers can decide to register one mirror per device per process, or just
236 * one mirror per process for a group of devices. The pattern is:
237 *
238 * int device_bind_address_space(..., struct mm_struct *mm, ...)
239 * {
240 * struct device_address_space *das;
241 *
242 * // Device driver specific initialization, and allocation of das
243 * // which contains an hmm_mirror struct as one of its fields.
244 * ...
245 *
246 * ret = hmm_mirror_register(&das->mirror, mm, &device_mirror_ops);
247 * if (ret) {
248 * // Cleanup on error
249 * return ret;
250 * }
251 *
252 * // Other device driver specific initialization
253 * ...
254 * }
255 *
256 * Once an hmm_mirror is registered for an address space, the device driver
257 * will get callbacks through sync_cpu_device_pagetables() operation (see
258 * hmm_mirror_ops struct).
259 *
260 * Device driver must not free the struct containing the hmm_mirror struct
261 * before calling hmm_mirror_unregister(). The expected usage is to do that when
262 * the device driver is unbinding from an address space.
263 *
264 *
265 * void device_unbind_address_space(struct device_address_space *das)
266 * {
267 * // Device driver specific cleanup
268 * ...
269 *
270 * hmm_mirror_unregister(&das->mirror);
271 *
272 * // Other device driver specific cleanup, and now das can be freed
273 * ...
274 * }
275 */
276
277struct hmm_mirror;
278
279/*
44532d4c 280 * enum hmm_update_event - type of update
c0b12405
JG
281 * @HMM_UPDATE_INVALIDATE: invalidate range (no indication as to why)
282 */
44532d4c 283enum hmm_update_event {
c0b12405
JG
284 HMM_UPDATE_INVALIDATE,
285};
286
44532d4c
JG
287/*
288 * struct hmm_update - HMM update informations for callback
289 *
290 * @start: virtual start address of the range to update
291 * @end: virtual end address of the range to update
292 * @event: event triggering the update (what is happening)
293 * @blockable: can the callback block/sleep ?
294 */
295struct hmm_update {
296 unsigned long start;
297 unsigned long end;
298 enum hmm_update_event event;
299 bool blockable;
300};
301
c0b12405
JG
302/*
303 * struct hmm_mirror_ops - HMM mirror device operations callback
304 *
305 * @update: callback to update range on a device
306 */
307struct hmm_mirror_ops {
e1401513
RC
308 /* release() - release hmm_mirror
309 *
310 * @mirror: pointer to struct hmm_mirror
311 *
312 * This is called when the mm_struct is being released.
313 * The callback should make sure no references to the mirror occur
314 * after the callback returns.
315 */
316 void (*release)(struct hmm_mirror *mirror);
317
c0b12405
JG
318 /* sync_cpu_device_pagetables() - synchronize page tables
319 *
320 * @mirror: pointer to struct hmm_mirror
44532d4c
JG
321 * @update: update informations (see struct hmm_update)
322 * Returns: -EAGAIN if update.blockable false and callback need to
323 * block, 0 otherwise.
c0b12405
JG
324 *
325 * This callback ultimately originates from mmu_notifiers when the CPU
326 * page table is updated. The device driver must update its page table
327 * in response to this callback. The update argument tells what action
328 * to perform.
329 *
330 * The device driver must not return from this callback until the device
331 * page tables are completely updated (TLBs flushed, etc); this is a
332 * synchronous call.
333 */
44532d4c
JG
334 int (*sync_cpu_device_pagetables)(struct hmm_mirror *mirror,
335 const struct hmm_update *update);
c0b12405
JG
336};
337
338/*
339 * struct hmm_mirror - mirror struct for a device driver
340 *
341 * @hmm: pointer to struct hmm (which is unique per mm_struct)
342 * @ops: device driver callback for HMM mirror operations
343 * @list: for list of mirrors of a given mm
344 *
345 * Each address space (mm_struct) being mirrored by a device must register one
346 * instance of an hmm_mirror struct with HMM. HMM will track the list of all
347 * mirrors for each mm_struct.
348 */
349struct hmm_mirror {
350 struct hmm *hmm;
351 const struct hmm_mirror_ops *ops;
352 struct list_head list;
353};
354
355int hmm_mirror_register(struct hmm_mirror *mirror, struct mm_struct *mm);
356void hmm_mirror_unregister(struct hmm_mirror *mirror);
da4c3c73
JG
357
358
da4c3c73
JG
359/*
360 * To snapshot the CPU page table, call hmm_vma_get_pfns(), then take a device
361 * driver lock that serializes device page table updates, then call
362 * hmm_vma_range_done(), to check if the snapshot is still valid. The same
363 * device driver page table update lock must also be used in the
364 * hmm_mirror_ops.sync_cpu_device_pagetables() callback, so that CPU page
365 * table invalidation serializes on it.
366 *
367 * YOU MUST CALL hmm_vma_range_done() ONCE AND ONLY ONCE EACH TIME YOU CALL
368 * hmm_vma_get_pfns() WITHOUT ERROR !
369 *
370 * IF YOU DO NOT FOLLOW THE ABOVE RULE THE SNAPSHOT CONTENT MIGHT BE INVALID !
371 */
08232a45
JG
372int hmm_vma_get_pfns(struct hmm_range *range);
373bool hmm_vma_range_done(struct hmm_range *range);
74eee180
JG
374
375
376/*
377 * Fault memory on behalf of device driver. Unlike handle_mm_fault(), this will
ff05c0c6 378 * not migrate any device memory back to system memory. The HMM pfn array will
74eee180
JG
379 * be updated with the fault result and current snapshot of the CPU page table
380 * for the range.
381 *
382 * The mmap_sem must be taken in read mode before entering and it might be
383 * dropped by the function if the block argument is false. In that case, the
384 * function returns -EAGAIN.
385 *
386 * Return value does not reflect if the fault was successful for every single
ff05c0c6 387 * address or not. Therefore, the caller must to inspect the HMM pfn array to
74eee180
JG
388 * determine fault status for each address.
389 *
390 * Trying to fault inside an invalid vma will result in -EINVAL.
391 *
392 * See the function description in mm/hmm.c for further documentation.
393 */
2aee09d8 394int hmm_vma_fault(struct hmm_range *range, bool block);
c0b12405 395
9d8a463a
AB
396/* Below are for HMM internal use only! Not to be used by device driver! */
397void hmm_mm_destroy(struct mm_struct *mm);
398
399static inline void hmm_mm_init(struct mm_struct *mm)
400{
401 mm->hmm = NULL;
402}
403#else /* IS_ENABLED(CONFIG_HMM_MIRROR) */
404static inline void hmm_mm_destroy(struct mm_struct *mm) {}
405static inline void hmm_mm_init(struct mm_struct *mm) {}
406#endif /* IS_ENABLED(CONFIG_HMM_MIRROR) */
c0b12405 407
df6ad698 408#if IS_ENABLED(CONFIG_DEVICE_PRIVATE) || IS_ENABLED(CONFIG_DEVICE_PUBLIC)
4ef589dc
JG
409struct hmm_devmem;
410
411struct page *hmm_vma_alloc_locked_page(struct vm_area_struct *vma,
412 unsigned long addr);
413
414/*
415 * struct hmm_devmem_ops - callback for ZONE_DEVICE memory events
416 *
417 * @free: call when refcount on page reach 1 and thus is no longer use
418 * @fault: call when there is a page fault to unaddressable memory
419 *
420 * Both callback happens from page_free() and page_fault() callback of struct
421 * dev_pagemap respectively. See include/linux/memremap.h for more details on
422 * those.
423 *
424 * The hmm_devmem_ops callback are just here to provide a coherent and
425 * uniq API to device driver and device driver should not register their
426 * own page_free() or page_fault() but rely on the hmm_devmem_ops call-
427 * back.
428 */
429struct hmm_devmem_ops {
430 /*
431 * free() - free a device page
432 * @devmem: device memory structure (see struct hmm_devmem)
433 * @page: pointer to struct page being freed
434 *
435 * Call back occurs whenever a device page refcount reach 1 which
436 * means that no one is holding any reference on the page anymore
437 * (ZONE_DEVICE page have an elevated refcount of 1 as default so
438 * that they are not release to the general page allocator).
439 *
440 * Note that callback has exclusive ownership of the page (as no
441 * one is holding any reference).
442 */
443 void (*free)(struct hmm_devmem *devmem, struct page *page);
444 /*
445 * fault() - CPU page fault or get user page (GUP)
446 * @devmem: device memory structure (see struct hmm_devmem)
447 * @vma: virtual memory area containing the virtual address
448 * @addr: virtual address that faulted or for which there is a GUP
449 * @page: pointer to struct page backing virtual address (unreliable)
450 * @flags: FAULT_FLAG_* (see include/linux/mm.h)
451 * @pmdp: page middle directory
452 * Returns: VM_FAULT_MINOR/MAJOR on success or one of VM_FAULT_ERROR
453 * on error
454 *
455 * The callback occurs whenever there is a CPU page fault or GUP on a
456 * virtual address. This means that the device driver must migrate the
457 * page back to regular memory (CPU accessible).
458 *
459 * The device driver is free to migrate more than one page from the
460 * fault() callback as an optimization. However if device decide to
461 * migrate more than one page it must always priotirize the faulting
462 * address over the others.
463 *
464 * The struct page pointer is only given as an hint to allow quick
465 * lookup of internal device driver data. A concurrent migration
466 * might have already free that page and the virtual address might
467 * not longer be back by it. So it should not be modified by the
468 * callback.
469 *
470 * Note that mmap semaphore is held in read mode at least when this
471 * callback occurs, hence the vma is valid upon callback entry.
472 */
b57e622e 473 vm_fault_t (*fault)(struct hmm_devmem *devmem,
4ef589dc
JG
474 struct vm_area_struct *vma,
475 unsigned long addr,
476 const struct page *page,
477 unsigned int flags,
478 pmd_t *pmdp);
479};
480
481/*
482 * struct hmm_devmem - track device memory
483 *
484 * @completion: completion object for device memory
485 * @pfn_first: first pfn for this resource (set by hmm_devmem_add())
486 * @pfn_last: last pfn for this resource (set by hmm_devmem_add())
487 * @resource: IO resource reserved for this chunk of memory
488 * @pagemap: device page map for that chunk
489 * @device: device to bind resource to
490 * @ops: memory operations callback
491 * @ref: per CPU refcount
063a7d1d 492 * @page_fault: callback when CPU fault on an unaddressable device page
4ef589dc
JG
493 *
494 * This an helper structure for device drivers that do not wish to implement
495 * the gory details related to hotplugging new memoy and allocating struct
496 * pages.
497 *
498 * Device drivers can directly use ZONE_DEVICE memory on their own if they
499 * wish to do so.
063a7d1d
DW
500 *
501 * The page_fault() callback must migrate page back, from device memory to
502 * system memory, so that the CPU can access it. This might fail for various
503 * reasons (device issues, device have been unplugged, ...). When such error
504 * conditions happen, the page_fault() callback must return VM_FAULT_SIGBUS and
505 * set the CPU page table entry to "poisoned".
506 *
507 * Note that because memory cgroup charges are transferred to the device memory,
508 * this should never fail due to memory restrictions. However, allocation
509 * of a regular system page might still fail because we are out of memory. If
510 * that happens, the page_fault() callback must return VM_FAULT_OOM.
511 *
512 * The page_fault() callback can also try to migrate back multiple pages in one
513 * chunk, as an optimization. It must, however, prioritize the faulting address
514 * over all the others.
4ef589dc 515 */
b57e622e 516typedef vm_fault_t (*dev_page_fault_t)(struct vm_area_struct *vma,
063a7d1d
DW
517 unsigned long addr,
518 const struct page *page,
519 unsigned int flags,
520 pmd_t *pmdp);
521
4ef589dc
JG
522struct hmm_devmem {
523 struct completion completion;
524 unsigned long pfn_first;
525 unsigned long pfn_last;
526 struct resource *resource;
527 struct device *device;
528 struct dev_pagemap pagemap;
529 const struct hmm_devmem_ops *ops;
530 struct percpu_ref ref;
063a7d1d 531 dev_page_fault_t page_fault;
4ef589dc
JG
532};
533
534/*
535 * To add (hotplug) device memory, HMM assumes that there is no real resource
536 * that reserves a range in the physical address space (this is intended to be
537 * use by unaddressable device memory). It will reserve a physical range big
538 * enough and allocate struct page for it.
539 *
540 * The device driver can wrap the hmm_devmem struct inside a private device
58ef15b7 541 * driver struct.
4ef589dc
JG
542 */
543struct hmm_devmem *hmm_devmem_add(const struct hmm_devmem_ops *ops,
544 struct device *device,
545 unsigned long size);
d3df0a42
JG
546struct hmm_devmem *hmm_devmem_add_resource(const struct hmm_devmem_ops *ops,
547 struct device *device,
548 struct resource *res);
4ef589dc
JG
549
550/*
551 * hmm_devmem_page_set_drvdata - set per-page driver data field
552 *
553 * @page: pointer to struct page
554 * @data: driver data value to set
555 *
556 * Because page can not be on lru we have an unsigned long that driver can use
557 * to store a per page field. This just a simple helper to do that.
558 */
559static inline void hmm_devmem_page_set_drvdata(struct page *page,
560 unsigned long data)
561{
50e7fbc3 562 page->hmm_data = data;
4ef589dc
JG
563}
564
565/*
566 * hmm_devmem_page_get_drvdata - get per page driver data field
567 *
568 * @page: pointer to struct page
569 * Return: driver data value
570 */
0bea803e 571static inline unsigned long hmm_devmem_page_get_drvdata(const struct page *page)
4ef589dc 572{
50e7fbc3 573 return page->hmm_data;
4ef589dc 574}
858b54da
JG
575
576
577/*
578 * struct hmm_device - fake device to hang device memory onto
579 *
580 * @device: device struct
581 * @minor: device minor number
582 */
583struct hmm_device {
584 struct device device;
585 unsigned int minor;
586};
587
588/*
589 * A device driver that wants to handle multiple devices memory through a
590 * single fake device can use hmm_device to do so. This is purely a helper and
591 * it is not strictly needed, in order to make use of any HMM functionality.
592 */
593struct hmm_device *hmm_device_new(void *drvdata);
594void hmm_device_put(struct hmm_device *hmm_device);
df6ad698 595#endif /* CONFIG_DEVICE_PRIVATE || CONFIG_DEVICE_PUBLIC */
6b368cd4 596#else /* IS_ENABLED(CONFIG_HMM) */
133ff0ea
JG
597static inline void hmm_mm_destroy(struct mm_struct *mm) {}
598static inline void hmm_mm_init(struct mm_struct *mm) {}
b28b08de 599#endif /* IS_ENABLED(CONFIG_HMM) */
9d8a463a 600
133ff0ea 601#endif /* LINUX_HMM_H */