1 /**************************************************************************
3 * Copyright (c) 2006-2009 VMware, Inc., Palo Alto, CA., USA
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
28 * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com>
31 #ifndef _TTM_BO_API_H_
32 #define _TTM_BO_API_H_
34 #include <drm/drm_hashtab.h>
35 #include <drm/drm_vma_manager.h>
36 #include <linux/kref.h>
37 #include <linux/list.h>
38 #include <linux/wait.h>
39 #include <linux/mutex.h>
41 #include <linux/bitmap.h>
42 #include <linux/reservation.h>
54 struct ttm_lru_bulk_move
;
57 * struct ttm_bus_placement
59 * @addr: mapped virtual address
60 * @base: bus base address
61 * @is_iomem: is this io memory ?
63 * @offset: offset from the base address
64 * @io_reserved_vm: The VM system has a refcount in @io_reserved_count
65 * @io_reserved_count: Refcounting the numbers of callers to ttm_mem_io_reserve
67 * Structure indicating the bus placement of an object.
69 struct ttm_bus_placement
{
76 uint64_t io_reserved_count
;
83 * @mm_node: Memory manager node.
84 * @size: Requested size of memory region.
85 * @num_pages: Actual size of memory region in pages.
86 * @page_alignment: Page alignment.
87 * @placement: Placement flags.
88 * @bus: Placement on io bus accessible to the CPU
90 * Structure indicating the placement and space resources used by a
98 unsigned long num_pages
;
99 uint32_t page_alignment
;
102 struct ttm_bus_placement bus
;
108 * @ttm_bo_type_device: These are 'normal' buffers that can
109 * be mmapped by user space. Each of these bos occupy a slot in the
110 * device address space, that can be used for normal vm operations.
112 * @ttm_bo_type_kernel: These buffers are like ttm_bo_type_device buffers,
113 * but they cannot be accessed from user-space. For kernel-only use.
115 * @ttm_bo_type_sg: Buffer made from dmabuf sg table shared with another
128 * struct ttm_buffer_object
130 * @bdev: Pointer to the buffer object device structure.
131 * @type: The bo type.
132 * @destroy: Destruction function. If NULL, kfree is used.
133 * @num_pages: Actual number of pages.
134 * @acc_size: Accounted size for this object.
135 * @kref: Reference count of this buffer object. When this refcount reaches
136 * zero, the object is put on the delayed delete list.
137 * @list_kref: List reference count of this buffer object. This member is
138 * used to avoid destruction while the buffer object is still on a list.
139 * Lru lists may keep one refcount, the delayed delete list, and kref != 0
140 * keeps one refcount. When this refcount reaches zero,
141 * the object is destroyed.
142 * @mem: structure describing current placement.
143 * @persistent_swap_storage: Usually the swap storage is deleted for buffers
144 * pinned in physical memory. If this behaviour is not desired, this member
145 * holds a pointer to a persistent shmem object.
146 * @ttm: TTM structure holding system pages.
147 * @evicted: Whether the object was evicted without user-space knowing.
148 * @cpu_writes: For synchronization. Number of cpu writers.
149 * @lru: List head for the lru list.
150 * @ddestroy: List head for the delayed destroy list.
151 * @swap: List head for swap LRU list.
152 * @moving: Fence set when BO is moving
153 * @vma_node: Address space manager node.
154 * @offset: The current GPU offset, which can have different meanings
155 * depending on the memory type. For SYSTEM type memory, it should be 0.
156 * @cur_placement: Hint of current placement.
157 * @wu_mutex: Wait unreserved mutex.
159 * Base class for TTM buffer object, that deals with data placement and CPU
160 * mappings. GPU mappings are really up to the driver, but for simpler GPUs
161 * the driver can usually use the placement offset @offset directly as the
162 * GPU virtual address. For drivers implementing multiple
163 * GPU memory manager contexts, the driver should manage the address space
164 * in these contexts separately and use these objects to get the correct
165 * placement and caching for these GPU maps. This makes it possible to use
166 * these objects for even quite elaborate memory management schemes.
167 * The destroy member, the API visibility of this object makes it possible
168 * to derive driver specific types.
171 struct ttm_buffer_object
{
173 * Members constant at init.
176 struct ttm_bo_device
*bdev
;
177 enum ttm_bo_type type
;
178 void (*destroy
) (struct ttm_buffer_object
*);
179 unsigned long num_pages
;
183 * Members not needing protection.
187 struct kref list_kref
;
190 * Members protected by the bo::resv::reserved lock.
193 struct ttm_mem_reg mem
;
194 struct file
*persistent_swap_storage
;
199 * Members protected by the bo::reserved lock only when written to.
202 atomic_t cpu_writers
;
205 * Members protected by the bdev::lru_lock.
208 struct list_head lru
;
209 struct list_head ddestroy
;
210 struct list_head swap
;
211 struct list_head io_reserve_lru
;
214 * Members protected by a bo reservation.
217 struct dma_fence
*moving
;
219 struct drm_vma_offset_node vma_node
;
224 * Special members that are protected by the reserve lock
225 * and the bo::lock when written to. Can be read with
226 * either of these locks held.
229 uint64_t offset
; /* GPU address space is independent of CPU word size */
233 struct reservation_object
*resv
;
234 struct reservation_object ttm_resv
;
235 struct mutex wu_mutex
;
239 * struct ttm_bo_kmap_obj
241 * @virtual: The current kernel virtual address.
242 * @page: The page when kmap'ing a single page.
243 * @bo_kmap_type: Type of bo_kmap.
245 * Object describing a kernel mapping. Since a TTM bo may be located
246 * in various memory types with various caching policies, the
247 * mapping can either be an ioremap, a vmap, a kmap or part of a
251 #define TTM_BO_MAP_IOMEM_MASK 0x80
252 struct ttm_bo_kmap_obj
{
256 ttm_bo_map_iomap
= 1 | TTM_BO_MAP_IOMEM_MASK
,
259 ttm_bo_map_premapped
= 4 | TTM_BO_MAP_IOMEM_MASK
,
261 struct ttm_buffer_object
*bo
;
265 * struct ttm_operation_ctx
267 * @interruptible: Sleep interruptible if sleeping.
268 * @no_wait_gpu: Return immediately if the GPU is busy.
269 * @resv: Reservation object to allow reserved evictions with.
270 * @flags: Including the following flags
272 * Context for TTM operations like changing buffer placement or general memory
275 struct ttm_operation_ctx
{
278 struct reservation_object
*resv
;
279 uint64_t bytes_moved
;
283 /* Allow eviction of reserved BOs */
284 #define TTM_OPT_FLAG_ALLOW_RES_EVICT 0x1
285 /* when serving page fault or suspend, allow alloc anyway */
286 #define TTM_OPT_FLAG_FORCE_ALLOC 0x2
289 * ttm_bo_get - reference a struct ttm_buffer_object
291 * @bo: The buffer object.
293 static inline void ttm_bo_get(struct ttm_buffer_object
*bo
)
299 * ttm_bo_reference - reference a struct ttm_buffer_object
301 * @bo: The buffer object.
303 * Returns a refcounted pointer to a buffer object.
305 * This function is deprecated. Use @ttm_bo_get instead.
308 static inline struct ttm_buffer_object
*
309 ttm_bo_reference(struct ttm_buffer_object
*bo
)
316 * ttm_bo_get_unless_zero - reference a struct ttm_buffer_object unless
317 * its refcount has already reached zero.
318 * @bo: The buffer object.
320 * Used to reference a TTM buffer object in lookups where the object is removed
321 * from the lookup structure during the destructor and for RCU lookups.
323 * Returns: @bo if the referencing was successful, NULL otherwise.
325 static inline __must_check
struct ttm_buffer_object
*
326 ttm_bo_get_unless_zero(struct ttm_buffer_object
*bo
)
328 if (!kref_get_unless_zero(&bo
->kref
))
334 * ttm_bo_wait - wait for buffer idle.
336 * @bo: The buffer object.
337 * @interruptible: Use interruptible wait.
338 * @no_wait: Return immediately if buffer is busy.
340 * This function must be called with the bo::mutex held, and makes
341 * sure any previous rendering to the buffer is completed.
342 * Note: It might be necessary to block validations before the
343 * wait by reserving the buffer.
344 * Returns -EBUSY if no_wait is true and the buffer is busy.
345 * Returns -ERESTARTSYS if interrupted by a signal.
347 int ttm_bo_wait(struct ttm_buffer_object
*bo
, bool interruptible
, bool no_wait
);
350 * ttm_bo_mem_compat - Check if proposed placement is compatible with a bo
352 * @placement: Return immediately if buffer is busy.
353 * @mem: The struct ttm_mem_reg indicating the region where the bo resides
354 * @new_flags: Describes compatible placement found
356 * Returns true if the placement is compatible
358 bool ttm_bo_mem_compat(struct ttm_placement
*placement
, struct ttm_mem_reg
*mem
,
359 uint32_t *new_flags
);
364 * @bo: The buffer object.
365 * @placement: Proposed placement for the buffer object.
366 * @ctx: validation parameters.
368 * Changes placement and caching policy of the buffer object
369 * according proposed placement.
371 * -EINVAL on invalid proposed placement.
372 * -ENOMEM on out-of-memory condition.
373 * -EBUSY if no_wait is true and buffer busy.
374 * -ERESTARTSYS if interrupted by a signal.
376 int ttm_bo_validate(struct ttm_buffer_object
*bo
,
377 struct ttm_placement
*placement
,
378 struct ttm_operation_ctx
*ctx
);
383 * @bo: The buffer object.
385 * Unreference a buffer object.
387 void ttm_bo_put(struct ttm_buffer_object
*bo
);
392 * @bo: The buffer object.
394 * Unreference and clear a pointer to a buffer object.
396 * This function is deprecated. Use @ttm_bo_put instead.
398 void ttm_bo_unref(struct ttm_buffer_object
**bo
);
403 * @bo: The buffer object.
405 * Add this bo to the relevant mem type lru and, if it's backed by
406 * system pages (ttms) to the swap list.
407 * This function must be called with struct ttm_bo_global::lru_lock held, and
408 * is typically called immediately prior to unreserving a bo.
410 void ttm_bo_add_to_lru(struct ttm_buffer_object
*bo
);
413 * ttm_bo_del_from_lru
415 * @bo: The buffer object.
417 * Remove this bo from all lru lists used to lookup and reserve an object.
418 * This function must be called with struct ttm_bo_global::lru_lock held,
419 * and is usually called just immediately after the bo has been reserved to
420 * avoid recursive reservation from lru lists.
422 void ttm_bo_del_from_lru(struct ttm_buffer_object
*bo
);
425 * ttm_bo_move_to_lru_tail
427 * @bo: The buffer object.
428 * @bulk: optional bulk move structure to remember BO positions
430 * Move this BO to the tail of all lru lists used to lookup and reserve an
431 * object. This function must be called with struct ttm_bo_global::lru_lock
432 * held, and is used to make a BO less likely to be considered for eviction.
434 void ttm_bo_move_to_lru_tail(struct ttm_buffer_object
*bo
,
435 struct ttm_lru_bulk_move
*bulk
);
438 * ttm_bo_bulk_move_lru_tail
440 * @bulk: bulk move structure
442 * Bulk move BOs to the LRU tail, only valid to use when driver makes sure that
443 * BO order never changes. Should be called with ttm_bo_global::lru_lock held.
445 void ttm_bo_bulk_move_lru_tail(struct ttm_lru_bulk_move
*bulk
);
448 * ttm_bo_lock_delayed_workqueue
450 * Prevent the delayed workqueue from running.
452 * True if the workqueue was queued at the time
454 int ttm_bo_lock_delayed_workqueue(struct ttm_bo_device
*bdev
);
457 * ttm_bo_unlock_delayed_workqueue
459 * Allows the delayed workqueue to run.
461 void ttm_bo_unlock_delayed_workqueue(struct ttm_bo_device
*bdev
, int resched
);
464 * ttm_bo_eviction_valuable
466 * @bo: The buffer object to evict
467 * @place: the placement we need to make room for
469 * Check if it is valuable to evict the BO to make room for the given placement.
471 bool ttm_bo_eviction_valuable(struct ttm_buffer_object
*bo
,
472 const struct ttm_place
*place
);
475 * ttm_bo_synccpu_write_grab
477 * @bo: The buffer object:
478 * @no_wait: Return immediately if buffer is busy.
480 * Synchronizes a buffer object for CPU RW access. This means
481 * command submission that affects the buffer will return -EBUSY
482 * until ttm_bo_synccpu_write_release is called.
485 * -EBUSY if the buffer is busy and no_wait is true.
486 * -ERESTARTSYS if interrupted by a signal.
488 int ttm_bo_synccpu_write_grab(struct ttm_buffer_object
*bo
, bool no_wait
);
491 * ttm_bo_synccpu_write_release:
493 * @bo : The buffer object.
495 * Releases a synccpu lock.
497 void ttm_bo_synccpu_write_release(struct ttm_buffer_object
*bo
);
502 * @bdev: Pointer to a ttm_bo_device struct.
503 * @bo_size: size of the buffer object in byte.
504 * @struct_size: size of the structure holding buffer object datas
506 * Returns size to account for a buffer object
508 size_t ttm_bo_acc_size(struct ttm_bo_device
*bdev
,
509 unsigned long bo_size
,
510 unsigned struct_size
);
511 size_t ttm_bo_dma_acc_size(struct ttm_bo_device
*bdev
,
512 unsigned long bo_size
,
513 unsigned struct_size
);
516 * ttm_bo_init_reserved
518 * @bdev: Pointer to a ttm_bo_device struct.
519 * @bo: Pointer to a ttm_buffer_object to be initialized.
520 * @size: Requested size of buffer object.
521 * @type: Requested type of buffer object.
522 * @flags: Initial placement flags.
523 * @page_alignment: Data alignment in pages.
524 * @ctx: TTM operation context for memory allocation.
525 * @acc_size: Accounted size for this object.
526 * @resv: Pointer to a reservation_object, or NULL to let ttm allocate one.
527 * @destroy: Destroy function. Use NULL for kfree().
529 * This function initializes a pre-allocated struct ttm_buffer_object.
530 * As this object may be part of a larger structure, this function,
531 * together with the @destroy function,
532 * enables driver-specific objects derived from a ttm_buffer_object.
534 * On successful return, the caller owns an object kref to @bo. The kref and
535 * list_kref are usually set to 1, but note that in some situations, other
536 * tasks may already be holding references to @bo as well.
537 * Furthermore, if resv == NULL, the buffer's reservation lock will be held,
538 * and it is the caller's responsibility to call ttm_bo_unreserve.
540 * If a failure occurs, the function will call the @destroy function, or
541 * kfree() if @destroy is NULL. Thus, after a failure, dereferencing @bo is
542 * illegal and will likely cause memory corruption.
545 * -ENOMEM: Out of memory.
546 * -EINVAL: Invalid placement flags.
547 * -ERESTARTSYS: Interrupted by signal while sleeping waiting for resources.
550 int ttm_bo_init_reserved(struct ttm_bo_device
*bdev
,
551 struct ttm_buffer_object
*bo
,
553 enum ttm_bo_type type
,
554 struct ttm_placement
*placement
,
555 uint32_t page_alignment
,
556 struct ttm_operation_ctx
*ctx
,
559 struct reservation_object
*resv
,
560 void (*destroy
) (struct ttm_buffer_object
*));
565 * @bdev: Pointer to a ttm_bo_device struct.
566 * @bo: Pointer to a ttm_buffer_object to be initialized.
567 * @size: Requested size of buffer object.
568 * @type: Requested type of buffer object.
569 * @flags: Initial placement flags.
570 * @page_alignment: Data alignment in pages.
571 * @interruptible: If needing to sleep to wait for GPU resources,
572 * sleep interruptible.
573 * pinned in physical memory. If this behaviour is not desired, this member
574 * holds a pointer to a persistent shmem object. Typically, this would
575 * point to the shmem object backing a GEM object if TTM is used to back a
576 * GEM user interface.
577 * @acc_size: Accounted size for this object.
578 * @resv: Pointer to a reservation_object, or NULL to let ttm allocate one.
579 * @destroy: Destroy function. Use NULL for kfree().
581 * This function initializes a pre-allocated struct ttm_buffer_object.
582 * As this object may be part of a larger structure, this function,
583 * together with the @destroy function,
584 * enables driver-specific objects derived from a ttm_buffer_object.
586 * On successful return, the caller owns an object kref to @bo. The kref and
587 * list_kref are usually set to 1, but note that in some situations, other
588 * tasks may already be holding references to @bo as well.
590 * If a failure occurs, the function will call the @destroy function, or
591 * kfree() if @destroy is NULL. Thus, after a failure, dereferencing @bo is
592 * illegal and will likely cause memory corruption.
595 * -ENOMEM: Out of memory.
596 * -EINVAL: Invalid placement flags.
597 * -ERESTARTSYS: Interrupted by signal while sleeping waiting for resources.
599 int ttm_bo_init(struct ttm_bo_device
*bdev
, struct ttm_buffer_object
*bo
,
600 unsigned long size
, enum ttm_bo_type type
,
601 struct ttm_placement
*placement
,
602 uint32_t page_alignment
, bool interrubtible
, size_t acc_size
,
603 struct sg_table
*sg
, struct reservation_object
*resv
,
604 void (*destroy
) (struct ttm_buffer_object
*));
609 * @bdev: Pointer to a ttm_bo_device struct.
610 * @size: Requested size of buffer object.
611 * @type: Requested type of buffer object.
612 * @placement: Initial placement.
613 * @page_alignment: Data alignment in pages.
614 * @interruptible: If needing to sleep while waiting for GPU resources,
615 * sleep interruptible.
616 * @p_bo: On successful completion *p_bo points to the created object.
618 * This function allocates a ttm_buffer_object, and then calls ttm_bo_init
619 * on that object. The destroy function is set to kfree().
621 * -ENOMEM: Out of memory.
622 * -EINVAL: Invalid placement flags.
623 * -ERESTARTSYS: Interrupted by signal while waiting for resources.
625 int ttm_bo_create(struct ttm_bo_device
*bdev
, unsigned long size
,
626 enum ttm_bo_type type
, struct ttm_placement
*placement
,
627 uint32_t page_alignment
, bool interruptible
,
628 struct ttm_buffer_object
**p_bo
);
633 * @bdev: Pointer to a ttm_bo_device struct.
634 * @mem_type: The memory type.
635 * @p_size: size managed area in pages.
637 * Initialize a manager for a given memory type.
638 * Note: if part of driver firstopen, it must be protected from a
639 * potentially racing lastclose.
641 * -EINVAL: invalid size or memory type.
642 * -ENOMEM: Not enough memory.
643 * May also return driver-specified errors.
645 int ttm_bo_init_mm(struct ttm_bo_device
*bdev
, unsigned type
,
646 unsigned long p_size
);
651 * @bdev: Pointer to a ttm_bo_device struct.
652 * @mem_type: The memory type.
654 * Take down a manager for a given memory type after first walking
655 * the LRU list to evict any buffers left alive.
657 * Normally, this function is part of lastclose() or unload(), and at that
658 * point there shouldn't be any buffers left created by user-space, since
659 * there should've been removed by the file descriptor release() method.
660 * However, before this function is run, make sure to signal all sync objects,
661 * and verify that the delayed delete queue is empty. The driver must also
662 * make sure that there are no NO_EVICT buffers present in this memory type
663 * when the call is made.
665 * If this function is part of a VT switch, the caller must make sure that
666 * there are no appications currently validating buffers before this
667 * function is called. The caller can do that by first taking the
668 * struct ttm_bo_device::ttm_lock in write mode.
671 * -EINVAL: invalid or uninitialized memory type.
672 * -EBUSY: There are still buffers left in this memory type.
674 int ttm_bo_clean_mm(struct ttm_bo_device
*bdev
, unsigned mem_type
);
679 * @bdev: Pointer to a ttm_bo_device struct.
680 * @mem_type: The memory type.
682 * Evicts all buffers on the lru list of the memory type.
683 * This is normally part of a VT switch or an
684 * out-of-memory-space-due-to-fragmentation handler.
685 * The caller must make sure that there are no other processes
686 * currently validating buffers, and can do that by taking the
687 * struct ttm_bo_device::ttm_lock in write mode.
690 * -EINVAL: Invalid or uninitialized memory type.
691 * -ERESTARTSYS: The call was interrupted by a signal while waiting to
694 int ttm_bo_evict_mm(struct ttm_bo_device
*bdev
, unsigned mem_type
);
697 * ttm_kmap_obj_virtual
699 * @map: A struct ttm_bo_kmap_obj returned from ttm_bo_kmap.
700 * @is_iomem: Pointer to an integer that on return indicates 1 if the
701 * virtual map is io memory, 0 if normal memory.
703 * Returns the virtual address of a buffer object area mapped by ttm_bo_kmap.
704 * If *is_iomem is 1 on return, the virtual address points to an io memory area,
705 * that should strictly be accessed by the iowriteXX() and similar functions.
707 static inline void *ttm_kmap_obj_virtual(struct ttm_bo_kmap_obj
*map
,
710 *is_iomem
= !!(map
->bo_kmap_type
& TTM_BO_MAP_IOMEM_MASK
);
717 * @bo: The buffer object.
718 * @start_page: The first page to map.
719 * @num_pages: Number of pages to map.
720 * @map: pointer to a struct ttm_bo_kmap_obj representing the map.
722 * Sets up a kernel virtual mapping, using ioremap, vmap or kmap to the
723 * data in the buffer object. The ttm_kmap_obj_virtual function can then be
724 * used to obtain a virtual address to the data.
727 * -ENOMEM: Out of memory.
728 * -EINVAL: Invalid range.
730 int ttm_bo_kmap(struct ttm_buffer_object
*bo
, unsigned long start_page
,
731 unsigned long num_pages
, struct ttm_bo_kmap_obj
*map
);
736 * @map: Object describing the map to unmap.
738 * Unmaps a kernel map set up by ttm_bo_kmap.
740 void ttm_bo_kunmap(struct ttm_bo_kmap_obj
*map
);
743 * ttm_fbdev_mmap - mmap fbdev memory backed by a ttm buffer object.
745 * @vma: vma as input from the fbdev mmap method.
746 * @bo: The bo backing the address space. The address space will
747 * have the same size as the bo, and start at offset 0.
749 * This function is intended to be called by the fbdev mmap method
750 * if the fbdev address space is to be backed by a bo.
752 int ttm_fbdev_mmap(struct vm_area_struct
*vma
, struct ttm_buffer_object
*bo
);
755 * ttm_bo_mmap - mmap out of the ttm device address space.
757 * @filp: filp as input from the mmap method.
758 * @vma: vma as input from the mmap method.
759 * @bdev: Pointer to the ttm_bo_device with the address space manager.
761 * This function is intended to be called by the device mmap method.
762 * if the device address space is to be backed by the bo manager.
764 int ttm_bo_mmap(struct file
*filp
, struct vm_area_struct
*vma
,
765 struct ttm_bo_device
*bdev
);
767 void *ttm_kmap_atomic_prot(struct page
*page
, pgprot_t prot
);
769 void ttm_kunmap_atomic_prot(void *addr
, pgprot_t prot
);
774 * @bdev: Pointer to the struct ttm_bo_device.
775 * @filp: Pointer to the struct file attempting to read / write.
776 * @wbuf: User-space pointer to address of buffer to write. NULL on read.
777 * @rbuf: User-space pointer to address of buffer to read into.
779 * @count: Number of bytes to read / write.
780 * @f_pos: Pointer to current file position.
781 * @write: 1 for read, 0 for write.
783 * This function implements read / write into ttm buffer objects, and is
785 * be called from the fops::read and fops::write method.
787 * See man (2) write, man(2) read. In particular,
788 * the function may return -ERESTARTSYS if
789 * interrupted by a signal.
791 ssize_t
ttm_bo_io(struct ttm_bo_device
*bdev
, struct file
*filp
,
792 const char __user
*wbuf
, char __user
*rbuf
,
793 size_t count
, loff_t
*f_pos
, bool write
);
795 int ttm_bo_swapout(struct ttm_bo_global
*glob
,
796 struct ttm_operation_ctx
*ctx
);
797 void ttm_bo_swapout_all(struct ttm_bo_device
*bdev
);
798 int ttm_bo_wait_unreserved(struct ttm_buffer_object
*bo
);